From 25ca7ab19652e757fb9349bd307a371e0e464a3a Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sat, 11 Oct 2025 21:37:25 +0200 Subject: [PATCH] Add OSM Track Harvesting Policy and demo database initialization script - Updated documentation to include OSM Track Harvesting Policy with details on railway types, service filters, usage filters, and geometry guardrails. - Introduced a new script `init_demo_db.py` to automate the database setup process, including environment checks, running migrations, and loading OSM fixtures for demo data. --- backend/app/core/osm_config.py | 44 +- backend/scripts/tracks_import.py | 31 +- backend/scripts/tracks_load.py | 37 +- backend/tests/test_tracks_import.py | 41 + backend/tests/test_tracks_load.py | 32 + data/osm_stations.json | 9782 + data/osm_tracks.json | 527625 +++++++++++++++++++++++++ docs/08_Concepts.md | 8 +- scripts/init_demo_db.py | 155 + 9 files changed, 537737 insertions(+), 18 deletions(-) create mode 100644 data/osm_stations.json create mode 100644 data/osm_tracks.json create mode 100644 scripts/init_demo_db.py diff --git a/backend/app/core/osm_config.py b/backend/app/core/osm_config.py index 9881c1e..e4adec6 100644 --- a/backend/app/core/osm_config.py +++ b/backend/app/core/osm_config.py @@ -76,17 +76,42 @@ STATION_TAG_FILTERS: Mapping[str, Tuple[str, ...]] = { # Tags that describe rail infrastructure usable for train routing. +TRACK_ALLOWED_RAILWAY_TYPES: Tuple[str, ...] = ( + "rail", + "light_rail", + "subway", + "tram", + "narrow_gauge", + "disused", + "construction", +) + + TRACK_TAG_FILTERS: Mapping[str, Tuple[str, ...]] = { - "railway": ( - "rail", - "light_rail", - "subway", - "tram", - "narrow_gauge", - ), + "railway": TRACK_ALLOWED_RAILWAY_TYPES, } +# Track ingestion policy +TRACK_EXCLUDED_SERVICE_TAGS: Tuple[str, ...] = ( + "yard", + "siding", + "spur", + "crossover", + "industrial", + "military", +) + +TRACK_EXCLUDED_USAGE_TAGS: Tuple[str, ...] = ( + "military", + "tourism", +) + +TRACK_MIN_LENGTH_METERS: float = 75.0 + +TRACK_STATION_SNAP_RADIUS_METERS: float = 350.0 + + def compile_overpass_filters(filters: Mapping[str, Iterable[str]]) -> str: """Build an Overpass boolean expression that matches the provided filters.""" @@ -101,6 +126,11 @@ __all__ = [ "BoundingBox", "DEFAULT_REGIONS", "STATION_TAG_FILTERS", + "TRACK_ALLOWED_RAILWAY_TYPES", "TRACK_TAG_FILTERS", + "TRACK_EXCLUDED_SERVICE_TAGS", + "TRACK_EXCLUDED_USAGE_TAGS", + "TRACK_MIN_LENGTH_METERS", + "TRACK_STATION_SNAP_RADIUS_METERS", "compile_overpass_filters", ] diff --git a/backend/scripts/tracks_import.py b/backend/scripts/tracks_import.py index 080d50b..5875047 100644 --- a/backend/scripts/tracks_import.py +++ b/backend/scripts/tracks_import.py @@ -8,11 +8,15 @@ import math import sys from dataclasses import asdict from pathlib import Path -from typing import Any, Iterable +from typing import Any, Iterable, Mapping from urllib.parse import quote_plus from backend.app.core.osm_config import ( DEFAULT_REGIONS, + TRACK_ALLOWED_RAILWAY_TYPES, + TRACK_EXCLUDED_SERVICE_TAGS, + TRACK_EXCLUDED_USAGE_TAGS, + TRACK_MIN_LENGTH_METERS, TRACK_TAG_FILTERS, compile_overpass_filters, ) @@ -104,13 +108,15 @@ def normalize_track_elements(elements: Iterable[dict[str, Any]]) -> list[dict[st continue tags: dict[str, Any] = element.get("tags", {}) + length_meters = _polyline_length(coordinates) + if not _should_include_track(tags, length_meters): + continue + name = tags.get("name") maxspeed = _parse_maxspeed(tags.get("maxspeed")) status = _derive_status(tags.get("railway")) is_bidirectional = not _is_oneway(tags.get("oneway")) - length_meters = _polyline_length(coordinates) - tracks.append( { "osmId": str(element.get("id")), @@ -156,6 +162,25 @@ def _derive_status(value: Any) -> str: return "operational" +def _should_include_track(tags: Mapping[str, Any], length_meters: float) -> bool: + railway = str(tags.get("railway", "")).lower() + if railway not in TRACK_ALLOWED_RAILWAY_TYPES: + return False + + if length_meters < TRACK_MIN_LENGTH_METERS: + return False + + service = str(tags.get("service", "")).lower() + if service and service in TRACK_EXCLUDED_SERVICE_TAGS: + return False + + usage = str(tags.get("usage", "")).lower() + if usage and usage in TRACK_EXCLUDED_USAGE_TAGS: + return False + + return True + + def _is_oneway(value: Any) -> bool: if value is None: return False diff --git a/backend/scripts/tracks_load.py b/backend/scripts/tracks_load.py index 11d37fc..c69080e 100644 --- a/backend/scripts/tracks_load.py +++ b/backend/scripts/tracks_load.py @@ -13,6 +13,7 @@ from typing import Any, Iterable, Mapping, Sequence from geoalchemy2.elements import WKBElement, WKTElement from geoalchemy2.shape import to_shape +from backend.app.core.osm_config import TRACK_STATION_SNAP_RADIUS_METERS from backend.app.db.session import SessionLocal from backend.app.models import TrackCreate from backend.app.repositories import StationRepository, TrackRepository @@ -133,26 +134,40 @@ def load_tracks(tracks: Iterable[ParsedTrack], commit: bool = True) -> int: for track_data in tracks: start_station = _nearest_station( - track_data.coordinates[0], station_index) + track_data.coordinates[0], + station_index, + TRACK_STATION_SNAP_RADIUS_METERS, + ) end_station = _nearest_station( - track_data.coordinates[-1], station_index) + track_data.coordinates[-1], + station_index, + TRACK_STATION_SNAP_RADIUS_METERS, + ) if not start_station or not end_station: continue + if start_station.id == end_station.id: + continue + pair = (start_station.id, end_station.id) if pair in existing_pairs: continue length = track_data.length_meters or _polyline_length( track_data.coordinates) + max_speed = ( + int(round(track_data.max_speed_kph)) + if track_data.max_speed_kph is not None + else None + ) create_schema = TrackCreate( name=track_data.name, start_station_id=start_station.id, end_station_id=end_station.id, coordinates=track_data.coordinates, length_meters=length, - max_speed_kph=track_data.max_speed_kph, + max_speed_kph=max_speed, status=track_data.status, is_bidirectional=track_data.is_bidirectional, ) @@ -170,7 +185,9 @@ def load_tracks(tracks: Iterable[ParsedTrack], commit: bool = True) -> int: def _nearest_station( - coordinate: tuple[float, float], stations: Sequence[StationRef] + coordinate: tuple[float, float], + stations: Sequence[StationRef], + max_distance_meters: float, ) -> StationRef | None: best_station: StationRef | None = None best_distance = math.inf @@ -180,7 +197,9 @@ def _nearest_station( if distance < best_distance: best_station = station best_distance = distance - return best_station + if best_distance <= max_distance_meters: + return best_station + return None def _build_station_index(stations: Iterable[Any]) -> list[StationRef]: @@ -192,11 +211,15 @@ def _build_station_index(stations: Iterable[Any]) -> list[StationRef]: point = _to_point(location) if point is None: continue + latitude = getattr(point, "y", None) + longitude = getattr(point, "x", None) + if latitude is None or longitude is None: + continue index.append( StationRef( id=str(station.id), - latitude=float(point.y), - longitude=float(point.x), + latitude=float(latitude), + longitude=float(longitude), ) ) return index diff --git a/backend/tests/test_tracks_import.py b/backend/tests/test_tracks_import.py index 85d7e32..ea5ea80 100644 --- a/backend/tests/test_tracks_import.py +++ b/backend/tests/test_tracks_import.py @@ -67,3 +67,44 @@ def test_normalize_track_elements_marks_oneway_and_status() -> None: track = tracks[0] assert track["status"] == "disused" assert track["isBidirectional"] is False + + +def test_normalize_track_elements_skips_service_tracks() -> None: + elements = [ + { + "type": "way", + "id": 77, + "geometry": [ + {"lat": 52.5000, "lon": 13.4000}, + {"lat": 52.5010, "lon": 13.4010}, + ], + "tags": { + "railway": "rail", + "service": "yard", + }, + } + ] + + tracks = tracks_import.normalize_track_elements(elements) + + assert tracks == [] + + +def test_normalize_track_elements_skips_short_tracks() -> None: + elements = [ + { + "type": "way", + "id": 81, + "geometry": [ + {"lat": 52.500000, "lon": 13.400000}, + {"lat": 52.500100, "lon": 13.400050}, + ], + "tags": { + "railway": "rail", + }, + } + ] + + tracks = tracks_import.normalize_track_elements(elements) + + assert tracks == [] diff --git a/backend/tests/test_tracks_load.py b/backend/tests/test_tracks_load.py index 7b5f7cf..0cb6db6 100644 --- a/backend/tests/test_tracks_load.py +++ b/backend/tests/test_tracks_load.py @@ -166,3 +166,35 @@ def test_load_tracks_skips_existing_pairs(monkeypatch: pytest.MonkeyPatch) -> No assert created == 0 assert session_instance.rolled_back is True assert not track_repo_instance.created + + +def test_load_tracks_skips_when_station_too_far(monkeypatch: pytest.MonkeyPatch) -> None: + session_instance = DummySession() + station_repo_instance = DummyStationRepository( + session_instance, + stations=[ + DummyStation(id="remote-station", location=_point(53.5, 14.5)), + ], + ) + track_repo_instance = DummyTrackRepository(session_instance) + + monkeypatch.setattr(tracks_load, "SessionLocal", lambda: session_instance) + monkeypatch.setattr(tracks_load, "StationRepository", + lambda session: station_repo_instance) + monkeypatch.setattr(tracks_load, "TrackRepository", + lambda session: track_repo_instance) + + parsed = tracks_load._parse_track_entries( + [ + { + "name": "Isolated Segment", + "coordinates": [[52.5, 13.4], [52.51, 13.41]], + } + ] + ) + + created = tracks_load.load_tracks(parsed, commit=True) + + assert created == 0 + assert session_instance.committed is True + assert not track_repo_instance.created diff --git a/data/osm_stations.json b/data/osm_stations.json new file mode 100644 index 0000000..bb59911 --- /dev/null +++ b/data/osm_stations.json @@ -0,0 +1,9782 @@ +{ + "metadata": { + "endpoint": "https://overpass-api.de/api/interpreter", + "region": "all", + "filters": { + "railway": [ + "station", + "halt", + "stop" + ], + "public_transport": [ + "station", + "stop_position", + "platform" + ], + "train": [ + "yes", + "regional", + "suburban" + ] + }, + "regions": [ + { + "name": "berlin_metropolitan", + "north": 52.6755, + "south": 52.3381, + "east": 13.7611, + "west": 13.0884, + "description": "Berlin and surrounding rapid transit network" + }, + { + "name": "hamburg_metropolitan", + "north": 53.7447, + "south": 53.395, + "east": 10.3253, + "west": 9.727, + "description": "Hamburg S-Bahn and harbor region" + }, + { + "name": "munich_metropolitan", + "north": 48.2485, + "south": 47.996, + "east": 11.7229, + "west": 11.36, + "description": "Munich S-Bahn core and airport corridor" + } + ], + "raw_count": 1083, + "station_count": 1081 + }, + "stations": [ + { + "osm_id": "8084473", + "name": "Neuwiedenthal", + "latitude": 53.4729547, + "longitude": 9.8774813, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "10691210", + "name": "Veddel (Ballin Stadt)", + "latitude": 53.52171, + "longitude": 10.0132971, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11206066", + "name": "Hammerbrook", + "latitude": 53.5466227, + "longitude": 10.0237395, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11218960", + "name": "Hackerbr\u00fccke", + "latitude": 48.1420273, + "longitude": 11.5485943, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "13568152", + "name": "Westkreuz", + "latitude": 48.1490102, + "longitude": 11.4437954, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "13568161", + "name": "Planegg", + "latitude": 48.1055203, + "longitude": 11.4135925, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "13803176", + "name": "Leienfelsstra\u00dfe", + "latitude": 48.1545246, + "longitude": 11.4284736, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "13803177", + "name": "Aubing", + "latitude": 48.1559132, + "longitude": 11.4132984, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "14342545", + "name": "Fasanerie", + "latitude": 48.1978025, + "longitude": 11.5258677, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "14342547", + "name": "Moosach", + "latitude": 48.1800697, + "longitude": 11.5059623, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "14342561", + "name": "Feldmoching", + "latitude": 48.2135945, + "longitude": 11.5411352, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "16797073", + "name": "Allach", + "latitude": 48.1900297, + "longitude": 11.4680674, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "19475890", + "name": "Marienplatz", + "latitude": 48.1371181, + "longitude": 11.5755711, + "code": "MMP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "20979606", + "name": "Gronsdorf", + "latitude": 48.1183995, + "longitude": 11.6988709, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21113537", + "name": "Sankt-Martin-Stra\u00dfe", + "latitude": 48.1186413, + "longitude": 11.5957153, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21134887", + "name": "Fasanenpark", + "latitude": 48.0795795, + "longitude": 11.6094884, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21134896", + "name": "Furth", + "latitude": 48.0353306, + "longitude": 11.5931295, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21302157", + "name": "Tiergarten", + "latitude": 52.5143746, + "longitude": 13.3364504, + "code": "BTGN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21385742", + "name": "Frankfurter Allee", + "latitude": 52.515661, + "longitude": 13.4742384, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21474012", + "name": "Quickborn S\u00fcd", + "latitude": 53.723036, + "longitude": 9.9075065, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "21503402", + "name": "Hamburg-Hasselbrook", + "latitude": 53.5643836, + "longitude": 10.0553898, + "code": "AHSF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "25081442", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5515459, + "longitude": 10.0077511, + "code": "6A-C", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "25082195", + "name": "Hamburg-Rahlstedt", + "latitude": 53.6049943, + "longitude": 10.1545392, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "25082197", + "name": "Hamburg-Tonndorf", + "latitude": 53.5863515, + "longitude": 10.1230161, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "25874621", + "name": "Heimeranplatz", + "latitude": 48.1330475, + "longitude": 11.5315412, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26124364", + "name": "Jungfernheide", + "latitude": 52.5304644, + "longitude": 13.2992617, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26124376", + "name": "Westend", + "latitude": 52.5180135, + "longitude": 13.2844201, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26124401", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5486588, + "longitude": 13.3894369, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26130448", + "name": "Nikolassee", + "latitude": 52.4320176, + "longitude": 13.1930501, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26510380", + "name": "Harthaus", + "latitude": 48.1334144, + "longitude": 11.3876944, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26510435", + "name": "Neuaubing", + "latitude": 48.1416762, + "longitude": 11.4220867, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26600948", + "name": "Heimfeld (TU Hamburg)", + "latitude": 53.4654068, + "longitude": 9.9629512, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26603219", + "name": "Wannsee", + "latitude": 52.4214071, + "longitude": 13.1798077, + "code": "BWSS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26906145", + "name": "Sundgauer Stra\u00dfe", + "latitude": 52.4364446, + "longitude": 13.2739864, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26906574", + "name": "Rathaus Steglitz", + "latitude": 52.4550524, + "longitude": 13.3217761, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "26908540", + "name": "Friedenau", + "latitude": 52.4703937, + "longitude": 13.3409812, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27120593", + "name": "Englschalking", + "latitude": 48.1567599, + "longitude": 11.6483816, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27120595", + "name": "Unterf\u00f6hring", + "latitude": 48.1900397, + "longitude": 11.6468537, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27176711", + "name": "Tegel", + "latitude": 52.5881388, + "longitude": 13.2898709, + "code": "BTG", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27186919", + "name": "Sch\u00f6neberg", + "latitude": 52.4789576, + "longitude": 13.3512735, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27199766", + "name": "Karl-Bonhoeffer-Nervenklinik", + "latitude": 52.5780444, + "longitude": 13.3291599, + "code": "BKBO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27199769", + "name": "Alt-Reinickendorf", + "latitude": 52.5778107, + "longitude": 13.3507735, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27231556", + "name": "Daglfing", + "latitude": 48.1496219, + "longitude": 11.6493634, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27237618", + "name": "Obermenzing", + "latitude": 48.1642102, + "longitude": 11.478102, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27238496", + "name": "Mittersendling", + "latitude": 48.1078322, + "longitude": 11.5363188, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27238497", + "name": "Harras", + "latitude": 48.1184054, + "longitude": 11.5364628, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27252307", + "name": "Mexikoplatz", + "latitude": 52.4368079, + "longitude": 13.2332646, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27252562", + "name": "Zehlendorf", + "latitude": 52.4309282, + "longitude": 13.257755, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27318370", + "name": "Griebnitzsee", + "latitude": 52.3944579, + "longitude": 13.1272716, + "code": "BGRI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27318402", + "name": "Babelsberg", + "latitude": 52.391449, + "longitude": 13.0927304, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27325589", + "name": "Bundesplatz", + "latitude": 52.4775925, + "longitude": 13.3294567, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27325925", + "name": "Innsbrucker Platz", + "latitude": 52.4780448, + "longitude": 13.3425243, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27374983", + "name": "Schlachtensee", + "latitude": 52.4400364, + "longitude": 13.2148203, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27396840", + "name": "Potsdam Medienstadt Babelsberg", + "latitude": 52.3825232, + "longitude": 13.1220475, + "code": "BDW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27411231", + "name": "Alexanderplatz", + "latitude": 52.5214176, + "longitude": 13.4113816, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27411240", + "name": "Hackescher Markt", + "latitude": 52.5226166, + "longitude": 13.4023469, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27412232", + "name": "Friedrichstra\u00dfe", + "latitude": 52.5203431, + "longitude": 13.3871988, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27412648", + "name": "Hauptbahnhof", + "latitude": 52.5251819, + "longitude": 13.37003, + "code": "15", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27424921", + "name": "Berlin Potsdamer Platz", + "latitude": 52.5093176, + "longitude": 13.3756363, + "code": "BPOF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27429866", + "name": "Priesterweg", + "latitude": 52.459942, + "longitude": 13.3560389, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27432374", + "name": "Botanischer Garten", + "latitude": 52.447952, + "longitude": 13.3069148, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27433551", + "name": "S\u00fcdende", + "latitude": 52.4482973, + "longitude": 13.3536687, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27466263", + "name": "Sch\u00f6nflie\u00df", + "latitude": 52.6648158, + "longitude": 13.3397541, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27466530", + "name": "Heiligensee", + "latitude": 52.6247157, + "longitude": 13.229256, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27491810", + "name": "Lichterfelde S\u00fcd", + "latitude": 52.4099655, + "longitude": 13.3084508, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27527830", + "name": "Westkreuz", + "latitude": 52.5004046, + "longitude": 13.2841063, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27540514", + "name": "Tempelhof", + "latitude": 52.4712316, + "longitude": 13.3835184, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27554979", + "name": "Hermannstra\u00dfe", + "latitude": 52.4676105, + "longitude": 13.4314548, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27556933", + "name": "Berlin Zoologischer Garten", + "latitude": 52.5074342, + "longitude": 13.3325608, + "code": "BZOO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27562310", + "name": "Deisenhofen", + "latitude": 48.0194561, + "longitude": 11.5835852, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "27563383", + "name": "Buchenhain", + "latitude": 48.0312639, + "longitude": 11.4974607, + "code": "MBHA", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28092581", + "name": "Yorckstra\u00dfe (Gro\u00dfg\u00f6rschenstra\u00dfe)", + "latitude": 52.4927721, + "longitude": 13.3683387, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28176433", + "name": "Trudering", + "latitude": 48.1260718, + "longitude": 11.6633796, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28179307", + "name": "H\u00f6henkirchen-Siegertsbrunn", + "latitude": 48.0186515, + "longitude": 11.7191285, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28179347", + "name": "Ottobrunn", + "latitude": 48.0633229, + "longitude": 11.6783645, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28212207", + "name": "Neugraben", + "latitude": 53.4741741, + "longitude": 9.8521882, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28469425", + "name": "Berlin-Spandau", + "latitude": 52.5348439, + "longitude": 13.1956022, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28830153", + "name": "Bernau (bei Berlin)", + "latitude": 52.6753854, + "longitude": 13.5919415, + "code": "BBRN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "28830281", + "name": "Karow", + "latitude": 52.6152148, + "longitude": 13.4694647, + "code": "BKRW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29046450", + "name": "Zoologischer Garten", + "latitude": 52.5058669, + "longitude": 13.3330236, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29361442", + "name": "Harburg", + "latitude": 53.4568986, + "longitude": 9.9911016, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29361459", + "name": "Wilhelmsburg", + "latitude": 53.4984645, + "longitude": 10.0069459, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29423020", + "name": "Pankow-Heinersdorf", + "latitude": 52.5783453, + "longitude": 13.4299064, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29629842", + "name": "Mahlow", + "latitude": 52.3602994, + "longitude": 13.4078583, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29803428", + "name": "Rummelsburg", + "latitude": 52.501288, + "longitude": 13.478367, + "code": "BRH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29805120", + "name": "Berlin Friedrichstra\u00dfe", + "latitude": 52.5200215, + "longitude": 13.3870305, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29805967", + "name": "Berlin-Lichtenberg", + "latitude": 52.5097832, + "longitude": 13.4961404, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29809225", + "name": "Karlshorst", + "latitude": 52.4808666, + "longitude": 13.526581, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29858596", + "name": "Marzahn", + "latitude": 52.5436548, + "longitude": 13.5413545, + "code": "BMAZ", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29881347", + "name": "Wuhletal", + "latitude": 52.5127794, + "longitude": 13.5740798, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29921532", + "name": "Oberspree", + "latitude": 52.4525491, + "longitude": 13.5384858, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29921550", + "name": "Sch\u00f6neweide", + "latitude": 52.4545591, + "longitude": 13.5099835, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "29925371", + "name": "K\u00f6llnische Heide", + "latitude": 52.4696597, + "longitude": 13.4677255, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30019971", + "name": "Feuerbachstra\u00dfe", + "latitude": 52.4637508, + "longitude": 13.33267, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30206148", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5485016, + "longitude": 13.3894409, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30206151", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5482964, + "longitude": 13.3894656, + "code": "10", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30206819", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5488704, + "longitude": 13.3894488, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30217208", + "name": "Berlin Alexanderplatz", + "latitude": 52.5214574, + "longitude": 13.4110794, + "code": "BALE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30230059", + "name": "Falkensee", + "latitude": 52.5597359, + "longitude": 13.0894796, + "code": "BFKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30244857", + "name": "Waidmannslust", + "latitude": 52.6063129, + "longitude": 13.3212837, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30244899", + "name": "Hermsdorf", + "latitude": 52.6173738, + "longitude": 13.3077471, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30245009", + "name": "Wittenau", + "latitude": 52.5970726, + "longitude": 13.3343741, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30245020", + "name": "Frohnau", + "latitude": 52.6323629, + "longitude": 13.2904226, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30325044", + "name": "Attilastra\u00dfe", + "latitude": 52.4474772, + "longitude": 13.3609467, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30352420", + "name": "Teltow Stadt", + "latitude": 52.3968181, + "longitude": 13.2764196, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30352438", + "name": "Lankwitz", + "latitude": 52.4388305, + "longitude": 13.3421759, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30353065", + "name": "Yorckstra\u00dfe", + "latitude": 52.4911246, + "longitude": 13.3719824, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30353079", + "name": "Potsdamer Platz", + "latitude": 52.5092642, + "longitude": 13.3763912, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30353449", + "name": "Oranienburger Stra\u00dfe", + "latitude": 52.5251817, + "longitude": 13.3928834, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30499115", + "name": "Adlershof", + "latitude": 52.4344971, + "longitude": 13.5417397, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30499135", + "name": "Johannisthal", + "latitude": 52.446382, + "longitude": 13.5244274, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30688290", + "name": "Hohensch\u00f6nhausen", + "latitude": 52.5662755, + "longitude": 13.5124988, + "code": "BHH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30688292", + "name": "Wartenberg", + "latitude": 52.572982, + "longitude": 13.5038322, + "code": "BWAB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30739613", + "name": "Marienfelde", + "latitude": 52.4242122, + "longitude": 13.3746844, + "code": "BMF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30740233", + "name": "Buckower Chaussee", + "latitude": 52.4103492, + "longitude": 13.3828973, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "30831795", + "name": "Berlin-Wilhelmsruher Damm", + "latitude": 52.5965954, + "longitude": 13.3672402, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "31076660", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.3913763, + "longitude": 13.5119895, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "31475937", + "name": "Langenfelde", + "latitude": 53.5796787, + "longitude": 9.9309548, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "33070435", + "name": "Barmbek", + "latitude": 53.5873864, + "longitude": 10.0449416, + "code": "ABAP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "33407678", + "name": "Perlach", + "latitude": 48.0933697, + "longitude": 11.6313948, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34402188", + "name": "Gr\u00e4felfing", + "latitude": 48.119663, + "longitude": 11.4254413, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34526850", + "name": "W\u00e4chterhof", + "latitude": 48.0338231, + "longitude": 11.7123464, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34646966", + "name": "Mahlow", + "latitude": 52.3615843, + "longitude": 13.4076171, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34654812", + "name": "Buckower Chaussee", + "latitude": 52.4103123, + "longitude": 13.3828599, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34663472", + "name": "Priesterweg", + "latitude": 52.4599172, + "longitude": 13.3562837, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34663477", + "name": "Priesterweg", + "latitude": 52.4598868, + "longitude": 13.356476, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "34663482", + "name": "Priesterweg", + "latitude": 52.4599134, + "longitude": 13.3562177, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "35201967", + "name": "Fasangarten", + "latitude": 48.0933162, + "longitude": 11.6057844, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "36432455", + "name": "Hamburg-Harburg", + "latitude": 53.4543955, + "longitude": 9.9918721, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "47115767", + "name": "Karlsfeld", + "latitude": 48.21122, + "longitude": 11.4596348, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "47140421", + "name": "Siemenswerke", + "latitude": 48.0943091, + "longitude": 11.5326999, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "47786602", + "name": "Westkreuz", + "latitude": 52.5006849, + "longitude": 13.2843853, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "48027954", + "name": "Baierbrunn", + "latitude": 48.0187042, + "longitude": 11.4799868, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "48032129", + "name": "H\u00f6llriegelskreuth", + "latitude": 48.0433173, + "longitude": 11.5095626, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "52104870", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5530638, + "longitude": 10.0060313, + "code": "13D-F", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "53139421", + "name": "Eidelstedt Zentrum", + "latitude": 53.6099521, + "longitude": 9.9011942, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "53139432", + "name": "H\u00f6rgensweg", + "latitude": 53.6175135, + "longitude": 9.9036981, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "58833375", + "name": "Gauting", + "latitude": 48.0707134, + "longitude": 11.3761886, + "code": "MGT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "59078606", + "name": "Sch\u00f6nerlinde", + "latitude": 52.6521857, + "longitude": 13.4286414, + "code": "BSL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "59143907", + "name": "Zeuthen", + "latitude": 52.3480904, + "longitude": 13.627824, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "59282120", + "name": "Hohen Neuendorf (b Berlin)", + "latitude": 52.66865, + "longitude": 13.2870408, + "code": "BHN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "60013075", + "name": "Isartor", + "latitude": 48.1342129, + "longitude": 11.5832438, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "60013076", + "name": "Rosenheimer Platz", + "latitude": 48.1292383, + "longitude": 11.5931428, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "60023416", + "name": "Berg am Laim", + "latitude": 48.1340189, + "longitude": 11.6335457, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "60303019", + "name": "Giesing", + "latitude": 48.1111394, + "longitude": 11.5961181, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "60480748", + "name": "Olympiastadion", + "latitude": 52.5113152, + "longitude": 13.2436148, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "78522462", + "name": "Pichelsberg", + "latitude": 52.5100318, + "longitude": 13.2277246, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "81462758", + "name": "Berlin-Spandau", + "latitude": 52.5348012, + "longitude": 13.1955887, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "81787408", + "name": "Ismaning", + "latitude": 48.2258051, + "longitude": 11.6793944, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "91611104", + "name": "Blankenburg", + "latitude": 52.5914927, + "longitude": 13.4436252, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "95951871", + "name": "Eichgestell", + "latitude": 52.4597726, + "longitude": 13.5528523, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "95956056", + "name": "Stadion", + "latitude": 52.4611172, + "longitude": 13.5429611, + "code": "Hfb", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "99185841", + "name": "Neuperlach S\u00fcd", + "latitude": 48.0888488, + "longitude": 11.6449733, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "100044072", + "name": "Bergedorf", + "latitude": 53.4902867, + "longitude": 10.2075631, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "110124633", + "name": "Halensee", + "latitude": 52.4959537, + "longitude": 13.2905054, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "128376788", + "name": "Messe Nord/ZOB", + "latitude": 52.5073154, + "longitude": 13.2830565, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "130582713", + "name": "Friedrichsgabe", + "latitude": 53.7289431, + "longitude": 9.9888413, + "code": "AFRG", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "141801940", + "name": "Berlin-Staaken", + "latitude": 52.5377544, + "longitude": 13.1413469, + "code": "BSTAB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "143788468", + "name": "Albrechtshof", + "latitude": 52.5493097, + "longitude": 13.1292803, + "code": "BAS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "158721845", + "name": "Fischbek", + "latitude": 53.4747772, + "longitude": 9.8192422, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "158721846", + "name": "Neu Wulmstorf", + "latitude": 53.4730472, + "longitude": 9.7881727, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "184087374", + "name": "Riem", + "latitude": 48.1439458, + "longitude": 11.6777794, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "201583321", + "name": "Ahrensburg", + "latitude": 53.6691957, + "longitude": 10.2359808, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "207028382", + "name": "Halstenbek", + "latitude": 53.6303641, + "longitude": 9.8390359, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "213519696", + "name": "Ostbahnhof", + "latitude": 48.1277234, + "longitude": 11.6052044, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "224886897", + "name": "B\u00f6nningstedt", + "latitude": 53.6633059, + "longitude": 9.91034, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "224889147", + "name": "Burgwedel", + "latitude": 53.647665, + "longitude": 9.9084998, + "code": "ABWD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "224890157", + "name": "Schnelsen", + "latitude": 53.6342106, + "longitude": 9.9065479, + "code": "ASLS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "235479513", + "name": "Hasloh", + "latitude": 53.6946951, + "longitude": 9.9199358, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "237620737", + "name": "Pasing", + "latitude": 48.1501148, + "longitude": 11.4617216, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "237680533", + "name": "M\u00fcnchen Hauptbahnhof (tief)", + "latitude": 48.1412644, + "longitude": 11.5602443, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "239599856", + "name": "Quickborn", + "latitude": 53.7310894, + "longitude": 9.9047667, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "247120025", + "name": "Eichwalde", + "latitude": 52.3707372, + "longitude": 13.6155861, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "248077800", + "name": "Wilhelmsruh", + "latitude": 52.5816602, + "longitude": 13.3621312, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "248086110", + "name": "Wuhlheide", + "latitude": 52.4690134, + "longitude": 13.5534889, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "248846609", + "name": "Stellingen", + "latitude": 53.5899319, + "longitude": 9.9181942, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "248847413", + "name": "Eidelstedt", + "latitude": 53.5956585, + "longitude": 9.9072743, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "249189069", + "name": "Humboldthain", + "latitude": 52.5447617, + "longitude": 13.3792576, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "249675195", + "name": "Hoheluftbr\u00fccke", + "latitude": 53.5774925, + "longitude": 9.976099, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "253450452", + "name": "Taufkirchen", + "latitude": 48.0514846, + "longitude": 11.6093343, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "253763451", + "name": "Potsdam-Rehbr\u00fccke", + "latitude": 52.3582619, + "longitude": 13.0981281, + "code": "BRC", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "254087661", + "name": "Berlin-Charlottenburg", + "latitude": 52.5043157, + "longitude": 13.3026447, + "code": "BCHB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "258576519", + "name": "Hauptbahnhof S\u00fcd", + "latitude": 53.5521608, + "longitude": 10.0093336, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "259974193", + "name": "Blumberg (b Berlin)", + "latitude": 52.6051162, + "longitude": 13.6114603, + "code": "BBLU", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "260552521", + "name": "Berliner Tor", + "latitude": 53.5525773, + "longitude": 10.0265681, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "260620359", + "name": "Lichterfelde Ost", + "latitude": 52.4297557, + "longitude": 13.3277975, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "260759770", + "name": "Berlin-Lichterfelde Ost", + "latitude": 52.4298584, + "longitude": 13.3291736, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "261744786", + "name": "Sch\u00f6neweide", + "latitude": 52.4553601, + "longitude": 13.5090923, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "261750068", + "name": "Treptower Park", + "latitude": 52.4942152, + "longitude": 13.4624123, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "261751113", + "name": "Pl\u00e4nterwald", + "latitude": 52.4780482, + "longitude": 13.473842, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "261855390", + "name": "Baumschulenweg", + "latitude": 52.4680326, + "longitude": 13.4891073, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "261941954", + "name": "Treptower Park", + "latitude": 52.4938491, + "longitude": 13.4618296, + "code": "BTP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "262322666", + "name": "Baumschulenweg", + "latitude": 52.4672014, + "longitude": 13.4900139, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "262993114", + "name": "Erkner", + "latitude": 52.4300187, + "longitude": 13.7504312, + "code": "31", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "265088027", + "name": "M\u00f6nckebergstra\u00dfe", + "latitude": 53.5512748, + "longitude": 10.0019036, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "266493948", + "name": "Bargteheide", + "latitude": 53.7289031, + "longitude": 10.2696222, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "267325625", + "name": "Hittfeld", + "latitude": 53.403626, + "longitude": 9.9743437, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "267379240", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4765716, + "longitude": 13.3660396, + "code": "BPAF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "269728222", + "name": "Hauptbahnhof", + "latitude": 52.4579649, + "longitude": 13.5433639, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "269728223", + "name": "Badesee", + "latitude": 52.4665252, + "longitude": 13.5483491, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "271920583", + "name": "Haslohfurth", + "latitude": 53.7446439, + "longitude": 9.9866973, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "271920817", + "name": "Quickborner Stra\u00dfe", + "latitude": 53.734336, + "longitude": 9.9898317, + "code": "AQBS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "276520242", + "name": "Charlottenburg", + "latitude": 52.504888, + "longitude": 13.303857, + "code": "BCHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "276690989", + "name": "Rosengarten", + "latitude": 52.4323099, + "longitude": 13.4121868, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "276691070", + "name": "Heidehof", + "latitude": 52.4289143, + "longitude": 13.4216389, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "279018516", + "name": "Mahlow", + "latitude": 52.3606346, + "longitude": 13.4078294, + "code": "BMAH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "280998653", + "name": "Stellingen", + "latitude": 53.5898287, + "longitude": 9.918076, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "282699912", + "name": "Nikolassee", + "latitude": 52.4318965, + "longitude": 13.1941445, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "289398627", + "name": "Harburg Rathaus", + "latitude": 53.4607036, + "longitude": 9.9804659, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "289398646", + "name": "Harburg Rathaus", + "latitude": 53.4605972, + "longitude": 9.9804351, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "289402377", + "name": "Harburg", + "latitude": 53.4570707, + "longitude": 9.9911458, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "289666280", + "name": "Berlin Gesundbrunnen", + "latitude": 52.548441, + "longitude": 13.3894684, + "code": "9", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "289666288", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5487211, + "longitude": 13.3894393, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "290175314", + "name": "Yorckstra\u00dfe", + "latitude": 52.4920449, + "longitude": 13.3722112, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "294299750", + "name": "Krupunder", + "latitude": 53.6158536, + "longitude": 9.8678247, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "296020395", + "name": "Zeuthen", + "latitude": 52.3490549, + "longitude": 13.6272681, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "296236567", + "name": "Moorbekhalle (Schulzentrum Nord)", + "latitude": 53.7169529, + "longitude": 9.991679, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "298071794", + "name": "Teltow", + "latitude": 52.3881049, + "longitude": 13.2995552, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300239796", + "name": "Sternschanze (Messe)", + "latitude": 53.5638884, + "longitude": 9.9678585, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300240508", + "name": "Holstenstra\u00dfe", + "latitude": 53.5617754, + "longitude": 9.9499389, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300242481", + "name": "Stadthausbr\u00fccke", + "latitude": 53.5495104, + "longitude": 9.984929, + "code": "ASHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300259347", + "name": "Julius-Leber-Br\u00fccke", + "latitude": 52.4864469, + "longitude": 13.3610584, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300809500", + "name": "Hamburg-Altona", + "latitude": 53.5518675, + "longitude": 9.9346568, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300809530", + "name": "Hamburg-Altona", + "latitude": 53.5518873, + "longitude": 9.9349856, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300811113", + "name": "K\u00f6nigstra\u00dfe", + "latitude": 53.54787, + "longitude": 9.944077, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "300814266", + "name": "Reeperbahn", + "latitude": 53.5496712, + "longitude": 9.9578448, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "301359593", + "name": "Me\u00dfberg", + "latitude": 53.5476433, + "longitude": 10.0008941, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "305430606", + "name": "Neugraben", + "latitude": 53.474243, + "longitude": 9.8521939, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "305430846", + "name": "Neugraben", + "latitude": 53.4741242, + "longitude": 9.8523474, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "305430874", + "name": "Neugraben", + "latitude": 53.4740249, + "longitude": 9.8522786, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "305430922", + "name": "Neugraben", + "latitude": 53.4739805, + "longitude": 9.8522717, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "305801671", + "name": "Feuerbachstra\u00dfe", + "latitude": 52.4639038, + "longitude": 13.333098, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "307881701", + "name": "Haus Natur und Umwelt", + "latitude": 52.4647401, + "longitude": 13.5410331, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "312586262", + "name": "\u00dcberseequartier", + "latitude": 53.5404236, + "longitude": 9.9984314, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "315220304", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5530362, + "longitude": 10.0058828, + "code": "14D-F", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "315230133", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5522111, + "longitude": 10.0081243, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "315501112", + "name": "Westhafen", + "latitude": 52.5362035, + "longitude": 13.3433069, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316775452", + "name": "Tempelhof", + "latitude": 52.4708272, + "longitude": 13.3847758, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316778068", + "name": "Neuk\u00f6lln", + "latitude": 52.4693782, + "longitude": 13.4423656, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316785822", + "name": "Prenzlauer Allee", + "latitude": 52.5446103, + "longitude": 13.4262424, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316786620", + "name": "Storkower Stra\u00dfe", + "latitude": 52.5235155, + "longitude": 13.4656543, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316787417", + "name": "Frankfurter Allee", + "latitude": 52.5145767, + "longitude": 13.4747039, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316920606", + "name": "Aubing", + "latitude": 48.1559942, + "longitude": 11.4133228, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316920607", + "name": "Leienfelsstra\u00dfe", + "latitude": 48.1545596, + "longitude": 11.4284822, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316922237", + "name": "Donnersbergerbr\u00fccke", + "latitude": 48.1426314, + "longitude": 11.536524, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "316922303", + "name": "Wannsee", + "latitude": 52.4212215, + "longitude": 13.1791072, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "318451279", + "name": "Seefeld (Mark)", + "latitude": 52.6182367, + "longitude": 13.6756972, + "code": "BSEE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "318701320", + "name": "Babelsberg", + "latitude": 52.3913225, + "longitude": 13.0927461, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "319241588", + "name": "K\u00f6penick", + "latitude": 52.4584666, + "longitude": 13.5822781, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "319242587", + "name": "Hirschgarten", + "latitude": 52.457806, + "longitude": 13.6043672, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "320498721", + "name": "Moosach", + "latitude": 48.1800919, + "longitude": 11.5059174, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "320929401", + "name": "Lichtenberg", + "latitude": 52.5098537, + "longitude": 13.4969968, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "320937177", + "name": "Gehrenseestra\u00dfe", + "latitude": 52.5571034, + "longitude": 13.5242312, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "320937184", + "name": "Gehrenseestra\u00dfe", + "latitude": 52.5558247, + "longitude": 13.5252544, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "320937195", + "name": "Wartenberg", + "latitude": 52.5729805, + "longitude": 13.5036989, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322633812", + "name": "Anhalter Bahnhof", + "latitude": 52.5034217, + "longitude": 13.3813987, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322633851", + "name": "Anhalter Bahnhof", + "latitude": 52.5033776, + "longitude": 13.3815853, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322640236", + "name": "S\u00fcdende", + "latitude": 52.4482526, + "longitude": 13.3538615, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322650439", + "name": "Lichterfelde S\u00fcd", + "latitude": 52.4103401, + "longitude": 13.3088263, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322796203", + "name": "Potsdamer Platz", + "latitude": 52.5098435, + "longitude": 13.3769097, + "code": "14", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322796388", + "name": "Brandenburger Tor", + "latitude": 52.5164463, + "longitude": 13.3827482, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322799089", + "name": "Nordbahnhof", + "latitude": 52.532639, + "longitude": 13.3875306, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322809308", + "name": "Bernau", + "latitude": 52.6750794, + "longitude": 13.5908507, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "322810794", + "name": "Bernau", + "latitude": 52.675156, + "longitude": 13.5907001, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "330412331", + "name": "Schichauweg", + "latitude": 52.3984322, + "longitude": 13.3894497, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "332219312", + "name": "Marienfelde", + "latitude": 52.4240092, + "longitude": 13.3746866, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "332219316", + "name": "Marienfelde", + "latitude": 52.4246235, + "longitude": 13.3745339, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "333926102", + "name": "Osdorfer Stra\u00dfe", + "latitude": 52.4189581, + "longitude": 13.3142073, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "340180942", + "name": "Heiligensee", + "latitude": 52.6245533, + "longitude": 13.2292253, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "340181309", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6388926, + "longitude": 13.2052516, + "code": "BHND", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "343316746", + "name": "Botanischer Garten", + "latitude": 52.4480928, + "longitude": 13.3077239, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "343860578", + "name": "Hamburg-Harburg", + "latitude": 53.4557216, + "longitude": 9.9921337, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "343860596", + "name": "Hamburg-Harburg", + "latitude": 53.4557149, + "longitude": 9.9920701, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "345160725", + "name": "Wannsee", + "latitude": 52.4210941, + "longitude": 13.1792705, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "345294491", + "name": "Wilhelmsburg", + "latitude": 53.498483, + "longitude": 10.0067581, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "348348641", + "name": "Friedrichshagen", + "latitude": 52.4573763, + "longitude": 13.6232934, + "code": "BFRH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "361215774", + "name": "Potsdam-Rehbr\u00fccke", + "latitude": 52.3582406, + "longitude": 13.0981435, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "362731701", + "name": "Ahrensfelde Nord", + "latitude": 52.5910942, + "longitude": 13.5822507, + "code": "BAFN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "366500581", + "name": "Berlin Friedrichstra\u00dfe", + "latitude": 52.5201373, + "longitude": 13.3870883, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "366500582", + "name": "Berlin Friedrichstra\u00dfe", + "latitude": 52.5201775, + "longitude": 13.3871074, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "370658080", + "name": "M\u00fcnchen Ost", + "latitude": 48.1274915, + "longitude": 11.6055585, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "401233251", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6374536, + "longitude": 13.2059265, + "code": "BHD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "401571856", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.637535, + "longitude": 13.2061664, + "code": "BHD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "412193168", + "name": "Berlin Ostbahnhof", + "latitude": 52.5104324, + "longitude": 13.4350534, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "412193321", + "name": "Ostbahnhof", + "latitude": 52.5107436, + "longitude": 13.4352229, + "code": "BOSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "417075321", + "name": "Leuchtenbergring", + "latitude": 48.1340175, + "longitude": 11.6154465, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "417075327", + "name": "Leuchtenbergring", + "latitude": 48.1344046, + "longitude": 11.6165299, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "427669897", + "name": "Berlin-Mahlsdorf", + "latitude": 52.51195, + "longitude": 13.6110087, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "430203857", + "name": "Jungfernstieg", + "latitude": 53.5520998, + "longitude": 9.9940377, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "433990252", + "name": "Raoul-Wallenberg-Stra\u00dfe", + "latitude": 52.550278, + "longitude": 13.5470665, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "452490016", + "name": "Sternschanze (Messe)", + "latitude": 53.5637766, + "longitude": 9.9678552, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "455501170", + "name": "Berlin-Wannsee", + "latitude": 52.421199, + "longitude": 13.1800603, + "code": "BWS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "459277140", + "name": "Berlin Gesundbrunnen", + "latitude": 52.5486453, + "longitude": 13.3902169, + "code": "BGS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "462107131", + "name": "Feldmoching", + "latitude": 48.2135805, + "longitude": 11.5413387, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "463183616", + "name": "Fasanerie", + "latitude": 48.1977523, + "longitude": 11.5258717, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "471766265", + "name": "Karlsfeld", + "latitude": 48.2111949, + "longitude": 11.4594573, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "474368351", + "name": "Friedrichstra\u00dfe", + "latitude": 52.5202346, + "longitude": 13.3858855, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "478521696", + "name": "Rosenheimer Platz", + "latitude": 48.1291453, + "longitude": 11.5930123, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "478521700", + "name": "M\u00fcnchen Hauptbahnhof (tief)", + "latitude": 48.1411708, + "longitude": 11.5602467, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "478521713", + "name": "Isartor", + "latitude": 48.1341389, + "longitude": 11.5831392, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "478521714", + "name": "Marienplatz", + "latitude": 48.1371026, + "longitude": 11.5755532, + "code": "MMP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "480267606", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1399645, + "longitude": 11.5531305, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "493346144", + "name": "Ahrensburg-Gartenholz", + "latitude": 53.6890465, + "longitude": 10.2519119, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "494089565", + "name": "Berg am Laim", + "latitude": 48.1339306, + "longitude": 11.6334803, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "494233348", + "name": "H\u00f6henkirchen-Siegertsbrunn", + "latitude": 48.0186541, + "longitude": 11.7192425, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "494233382", + "name": "Neubiberg", + "latitude": 48.0758905, + "longitude": 11.6602523, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "504929032", + "name": "Schmalenbeck", + "latitude": 53.6533879, + "longitude": 10.2601856, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "520170690", + "name": "Giesing", + "latitude": 48.1111647, + "longitude": 11.5962695, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "520170703", + "name": "Sankt-Martin-Stra\u00dfe", + "latitude": 48.1184485, + "longitude": 11.5958282, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "523045806", + "name": "Karlshorst", + "latitude": 52.4804671, + "longitude": 13.527279, + "code": "BKLH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "523045813", + "name": "K\u00f6penick", + "latitude": 52.458577, + "longitude": 13.5815192, + "code": "BKPK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "525847546", + "name": "Fasangarten", + "latitude": 48.0933065, + "longitude": 11.6057362, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "526026902", + "name": "Unterhaching", + "latitude": 48.0651502, + "longitude": 11.6124, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "526026903", + "name": "Unterhaching", + "latitude": 48.065148, + "longitude": 11.6123515, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "526026931", + "name": "Fasanenpark", + "latitude": 48.0795765, + "longitude": 11.60944, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "526060731", + "name": "Furth", + "latitude": 48.0353466, + "longitude": 11.5930606, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "526060782", + "name": "Taufkirchen", + "latitude": 48.0515116, + "longitude": 11.609225, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "527860811", + "name": "Beusselstra\u00dfe", + "latitude": 52.5342683, + "longitude": 13.328115, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "530812080", + "name": "Berlin Friedrichstra\u00dfe", + "latitude": 52.5201744, + "longitude": 13.3869884, + "code": "BFRI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "534744796", + "name": "Hammerbrook", + "latitude": 53.5465798, + "longitude": 10.0235734, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "534744842", + "name": "Berliner Tor", + "latitude": 53.5524512, + "longitude": 10.0265021, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "535951138", + "name": "Hamburg-Altona", + "latitude": 53.5518521, + "longitude": 9.9344026, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "535951140", + "name": "Hamburg-Altona", + "latitude": 53.5518722, + "longitude": 9.9347344, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "538255546", + "name": "Berlin-Hohensch\u00f6nhausen", + "latitude": 52.5661794, + "longitude": 13.5122261, + "code": "BHSH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "544750366", + "name": "Jungfernstieg", + "latitude": 53.5521795, + "longitude": 9.993884, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "567173974", + "name": "Lichterfelde West", + "latitude": 52.4432747, + "longitude": 13.2932719, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "567469911", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4775492, + "longitude": 13.366757, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "567469912", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4775576, + "longitude": 13.3668351, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "567469913", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.477468, + "longitude": 13.3670072, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "567469915", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4775965, + "longitude": 13.3665604, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "574265352", + "name": "Alexanderplatz", + "latitude": 52.5215799, + "longitude": 13.4113785, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "575131909", + "name": "Berlin-Hohensch\u00f6nhausen", + "latitude": 52.5652508, + "longitude": 13.5133724, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "582560378", + "name": "Griebnitzsee", + "latitude": 52.3941575, + "longitude": 13.1276613, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "595379284", + "name": "Blankenburg", + "latitude": 52.5912002, + "longitude": 13.443073, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "596414162", + "name": "K\u00f6llnische Heide", + "latitude": 52.4697705, + "longitude": 13.4693669, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "598711915", + "name": "Elbgaustra\u00dfe", + "latitude": 53.6027249, + "longitude": 9.8934664, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "598842953", + "name": "Langenfelde", + "latitude": 53.579638, + "longitude": 9.9307328, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "601524061", + "name": "Berlin Jungfernheide", + "latitude": 52.5302785, + "longitude": 13.2996666, + "code": "BJUF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "601733617", + "name": "Pasing", + "latitude": 48.1499721, + "longitude": 11.4616338, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "601733627", + "name": "Hackerbr\u00fccke", + "latitude": 48.1419058, + "longitude": 11.5485744, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "603097507", + "name": "Ismaning", + "latitude": 48.2257932, + "longitude": 11.6795099, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "604676232", + "name": "S\u00fcdkreuz", + "latitude": 52.4758197, + "longitude": 13.3648297, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "604676237", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4748552, + "longitude": 13.3646678, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "604676240", + "name": "Berlin S\u00fcdkreuz", + "latitude": 52.4747813, + "longitude": 13.3648372, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "606189323", + "name": "Erkner", + "latitude": 52.4288795, + "longitude": 13.7514652, + "code": "32", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "606196399", + "name": "Erkner", + "latitude": 52.4272087, + "longitude": 13.7524646, + "code": "BERK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "610195914", + "name": "Teltow Stadt", + "latitude": 52.3970951, + "longitude": 13.2772923, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "610780825", + "name": "Spandau", + "latitude": 52.534908, + "longitude": 13.1969431, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "610840995", + "name": "Eichborndamm", + "latitude": 52.5776678, + "longitude": 13.3165114, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "611634738", + "name": "Bernau (b Berlin)", + "latitude": 52.6748097, + "longitude": 13.5903211, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "611665527", + "name": "Altglienicke", + "latitude": 52.4067232, + "longitude": 13.5577314, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "614445865", + "name": "Wedding", + "latitude": 52.5427866, + "longitude": 13.3669996, + "code": "BWED", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "615421829", + "name": "Westkreuz", + "latitude": 48.1489707, + "longitude": 11.4439698, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "615422391", + "name": "Pasing", + "latitude": 48.1498685, + "longitude": 11.4615699, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "616836527", + "name": "Freiham", + "latitude": 48.1400248, + "longitude": 11.4100615, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "616836533", + "name": "Neuaubing", + "latitude": 48.1417119, + "longitude": 11.422076, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "616850017", + "name": "Harthaus", + "latitude": 48.1334606, + "longitude": 11.387699, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "617208749", + "name": "Germering-Unterpfaffenhofen", + "latitude": 48.1288691, + "longitude": 11.3640153, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "617262605", + "name": "Lochham", + "latitude": 48.1282896, + "longitude": 11.4307149, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "617264580", + "name": "Gr\u00e4felfing", + "latitude": 48.1196364, + "longitude": 11.425585, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "617275202", + "name": "Planegg", + "latitude": 48.1054612, + "longitude": 11.4137168, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "617284887", + "name": "Gauting", + "latitude": 48.0706116, + "longitude": 11.3761823, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "621239643", + "name": "Baumschulenweg", + "latitude": 52.4673254, + "longitude": 13.4900699, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "625291754", + "name": "Zepernick (bei Bernau)", + "latitude": 52.6595392, + "longitude": 13.5334481, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "625291755", + "name": "Zepernick (bei Bernau)", + "latitude": 52.659942, + "longitude": 13.534493, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "649431551", + "name": "Werneuchen", + "latitude": 52.6373445, + "longitude": 13.7377022, + "code": "BWER", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "650103868", + "name": "Johanneskirchen", + "latitude": 48.1676051, + "longitude": 11.6459355, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "668990366", + "name": "Parkb\u00fchne", + "latitude": 52.464331, + "longitude": 13.5466466, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "670704950", + "name": "Halensee", + "latitude": 52.4960247, + "longitude": 13.2905555, + "code": "BHAL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "670750126", + "name": "Erkner", + "latitude": 52.4294226, + "longitude": 13.7510608, + "code": "BE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "670801913", + "name": "Ostkreuz", + "latitude": 52.5031523, + "longitude": 13.4695776, + "code": "BOKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "670814566", + "name": "Sch\u00f6neberg", + "latitude": 52.4793551, + "longitude": 13.352434, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174131", + "name": "Mittersendling", + "latitude": 48.1078336, + "longitude": 11.5364506, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174132", + "name": "Donnersbergerbr\u00fccke", + "latitude": 48.142813, + "longitude": 11.5365181, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174134", + "name": "Gro\u00dfhesselohe Isartalbahnhof", + "latitude": 48.0711832, + "longitude": 11.530843, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174136", + "name": "Heimeranplatz", + "latitude": 48.1331046, + "longitude": 11.5316598, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174137", + "name": "Gro\u00dfhesselohe Isartalbahnhof", + "latitude": 48.0711591, + "longitude": 11.5309528, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174138", + "name": "Neubiberg", + "latitude": 48.0757941, + "longitude": 11.6602082, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174140", + "name": "Donnersbergerbr\u00fccke", + "latitude": 48.1427197, + "longitude": 11.536521, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174144", + "name": "Hohenbrunn", + "latitude": 48.0466073, + "longitude": 11.6988366, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174147", + "name": "Ostbahnhof", + "latitude": 48.1276364, + "longitude": 11.6053359, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174148", + "name": "Donnersbergerbr\u00fccke", + "latitude": 48.1425329, + "longitude": 11.5365269, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "737174149", + "name": "Siemenswerke", + "latitude": 48.0942988, + "longitude": 11.5327555, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "741740405", + "name": "Norderstedt Mitte", + "latitude": 53.7078846, + "longitude": 9.9923685, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "747855975", + "name": "Schnelsen S\u00fcd", + "latitude": 53.6238266, + "longitude": 9.9058025, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "751989475", + "name": "Heimeranplatz", + "latitude": 48.1329277, + "longitude": 11.5312674, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "754726023", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1418122, + "longitude": 11.5558711, + "code": "36", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "830128001", + "name": "Berlin Ostbahnhof", + "latitude": 52.5105704, + "longitude": 13.4350587, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "920114359", + "name": "Ahrensfelde Friedhof", + "latitude": 52.5804698, + "longitude": 13.5730651, + "code": "BAFR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "928259325", + "name": "Gr\u00fcnbergallee", + "latitude": 52.3991893, + "longitude": 13.5408626, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "951487090", + "name": "Sch\u00f6nefeld", + "latitude": 52.3910415, + "longitude": 13.5135287, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "951487093", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.3917239, + "longitude": 13.5131127, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "951487095", + "name": "Sch\u00f6nefeld", + "latitude": 52.3908014, + "longitude": 13.5126, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "951487100", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.3911849, + "longitude": 13.5123312, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "976776639", + "name": "Pinneberg", + "latitude": 53.6550342, + "longitude": 9.7976864, + "code": "AP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "982316995", + "name": "Hamburg-Hasselbrook", + "latitude": 53.564489, + "longitude": 10.0553106, + "code": "AHSF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078202", + "name": "S\u00fcdkreuz (Ringbahn)", + "latitude": 52.4759806, + "longitude": 13.3650726, + "code": "BSKR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078213", + "name": "Johannisthal", + "latitude": 52.4472414, + "longitude": 13.5232989, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078246", + "name": "Hermannstra\u00dfe", + "latitude": 52.4675681, + "longitude": 13.4303522, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078257", + "name": "S\u00fcdkreuz", + "latitude": 52.4761907, + "longitude": 13.3653304, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078266", + "name": "Eichwalde", + "latitude": 52.3719247, + "longitude": 13.6150652, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078277", + "name": "Sch\u00f6neweide", + "latitude": 52.4546545, + "longitude": 13.5101089, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078291", + "name": "Altglienicke", + "latitude": 52.4075134, + "longitude": 13.559258, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078302", + "name": "Neuk\u00f6lln", + "latitude": 52.4695483, + "longitude": 13.4443136, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078315", + "name": "Gr\u00fcnbergallee", + "latitude": 52.3994019, + "longitude": 13.5428049, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1095078318", + "name": "S\u00fcdkreuz", + "latitude": 52.4763351, + "longitude": 13.3653382, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283718", + "name": "Rummelsburg", + "latitude": 52.5014609, + "longitude": 13.4778948, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283740", + "name": "Sonnenallee", + "latitude": 52.473359, + "longitude": 13.456066, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283742", + "name": "Betriebsbahnhof Rummelsburg", + "latitude": 52.4934124, + "longitude": 13.4982904, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283745", + "name": "Friedrichshagen", + "latitude": 52.4574689, + "longitude": 13.62278, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283754", + "name": "K\u00f6penick", + "latitude": 52.4587496, + "longitude": 13.5803483, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283762", + "name": "Friedrichshagen", + "latitude": 52.4572614, + "longitude": 13.6246963, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283778", + "name": "Wilhelmshagen", + "latitude": 52.4379951, + "longitude": 13.722777, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283781", + "name": "Rahnsdorf", + "latitude": 52.4514493, + "longitude": 13.6909298, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283795", + "name": "Treptower Park", + "latitude": 52.493408, + "longitude": 13.4611736, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283806", + "name": "Sonnenallee", + "latitude": 52.4725382, + "longitude": 13.455168, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283807", + "name": "Berlin Ostkreuz", + "latitude": 52.5035893, + "longitude": 13.4691817, + "code": "BOKO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283819", + "name": "Spindlersfeld", + "latitude": 52.4469147, + "longitude": 13.5614712, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283849", + "name": "Treptower Park", + "latitude": 52.4933523, + "longitude": 13.46132, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283852", + "name": "Oberspree", + "latitude": 52.4522893, + "longitude": 13.5370264, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283867", + "name": "Pl\u00e4nterwald", + "latitude": 52.4789137, + "longitude": 13.4728764, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283879", + "name": "Karlshorst", + "latitude": 52.480171, + "longitude": 13.5277942, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283890", + "name": "Betriebsbahnhof Rummelsburg", + "latitude": 52.494368, + "longitude": 13.4969807, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283897", + "name": "Treptower Park", + "latitude": 52.4942839, + "longitude": 13.4622665, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1106283915", + "name": "Wuhlheide", + "latitude": 52.4682032, + "longitude": 13.5549774, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011600", + "name": "Springpfuhl", + "latitude": 52.5264147, + "longitude": 13.5366914, + "code": "20", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011604", + "name": "Kaulsdorf", + "latitude": 52.512051, + "longitude": 13.5911011, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011608", + "name": "Springpfuhl", + "latitude": 52.5277317, + "longitude": 13.5364043, + "code": "21", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011616", + "name": "Wuhletal", + "latitude": 52.512454, + "longitude": 13.576126, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011619", + "name": "Biesdorf", + "latitude": 52.5130346, + "longitude": 13.5570304, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011628", + "name": "Mahlsdorf", + "latitude": 52.5120294, + "longitude": 13.6094152, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011631", + "name": "Birkenstein", + "latitude": 52.5156381, + "longitude": 13.6466028, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011640", + "name": "Mahlsdorf", + "latitude": 52.5121488, + "longitude": 13.6093732, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011659", + "name": "Fredersdorf (bei Berlin)", + "latitude": 52.5261914, + "longitude": 13.7604296, + "code": "15", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011679", + "name": "Raoul-Wallenberg-Stra\u00dfe", + "latitude": 52.5510906, + "longitude": 13.5480076, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011690", + "name": "Mehrower Allee", + "latitude": 52.5581734, + "longitude": 13.5541133, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011702", + "name": "Kaulsdorf", + "latitude": 52.5121783, + "longitude": 13.5892643, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011705", + "name": "Marzahn", + "latitude": 52.5431633, + "longitude": 13.5408064, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011710", + "name": "Berlin-Hohensch\u00f6nhausen", + "latitude": 52.5664999, + "longitude": 13.5118646, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011722", + "name": "Hoppegarten (Mark)", + "latitude": 52.518196, + "longitude": 13.6749096, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011725", + "name": "Biesdorf", + "latitude": 52.5131322, + "longitude": 13.5551031, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011728", + "name": "Mahlsdorf", + "latitude": 52.5123289, + "longitude": 13.6114477, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011733", + "name": "Poelchaustra\u00dfe", + "latitude": 52.5348877, + "longitude": 13.5350668, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011738", + "name": "Ahrensfelde", + "latitude": 52.5707338, + "longitude": 13.5648509, + "code": "BAHR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011745", + "name": "Ahrensfelde", + "latitude": 52.5707588, + "longitude": 13.5651883, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011753", + "name": "N\u00f6ldnerplatz", + "latitude": 52.504142, + "longitude": 13.4862008, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011763", + "name": "Neuenhagen", + "latitude": 52.5208741, + "longitude": 13.7016949, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011767", + "name": "Fredersdorf (bei Berlin)", + "latitude": 52.5262949, + "longitude": 13.7604323, + "code": "16", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011785", + "name": "Marzahn", + "latitude": 52.5442953, + "longitude": 13.5420179, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011806", + "name": "Wartenberg", + "latitude": 52.5730239, + "longitude": 13.5039068, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011810", + "name": "Ahrensfelde", + "latitude": 52.5707845, + "longitude": 13.5651242, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011811", + "name": "Hoppegarten (Mark)", + "latitude": 52.5181921, + "longitude": 13.6729032, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011824", + "name": "Mehrower Allee", + "latitude": 52.5570451, + "longitude": 13.5529098, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011829", + "name": "Friedrichsfelde Ost", + "latitude": 52.5142039, + "longitude": 13.5188271, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011847", + "name": "Mahlsdorf", + "latitude": 52.5120569, + "longitude": 13.6115032, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011864", + "name": "Poelchaustra\u00dfe", + "latitude": 52.5365181, + "longitude": 13.5359382, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011865", + "name": "Ahrensfelde", + "latitude": 52.5718986, + "longitude": 13.5658545, + "code": "44", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011868", + "name": "Ahrensfelde", + "latitude": 52.571809, + "longitude": 13.5660154, + "code": "42", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011882", + "name": "Mahlsdorf", + "latitude": 52.511974, + "longitude": 13.6094299, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011896", + "name": "N\u00f6ldnerplatz", + "latitude": 52.5036017, + "longitude": 13.4845309, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011916", + "name": "Ahrensfelde", + "latitude": 52.5717942, + "longitude": 13.5660863, + "code": "41", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011926", + "name": "Neuenhagen", + "latitude": 52.5206623, + "longitude": 13.6994089, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1117011942", + "name": "Lichtenberg", + "latitude": 52.5107077, + "longitude": 13.4988547, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966939", + "name": "Gesundbrunnen", + "latitude": 52.5493068, + "longitude": 13.3890629, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966943", + "name": "Wedding", + "latitude": 52.5426864, + "longitude": 13.3666436, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966949", + "name": "Gesundbrunnen", + "latitude": 52.5490279, + "longitude": 13.3903152, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966950", + "name": "Pankow", + "latitude": 52.5658314, + "longitude": 13.4093955, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966954", + "name": "Prenzlauer Allee", + "latitude": 52.5452362, + "longitude": 13.4250691, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966977", + "name": "Sch\u00f6nhauser Allee", + "latitude": 52.5495307, + "longitude": 13.4140196, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966981", + "name": "Gesundbrunnen", + "latitude": 52.5491748, + "longitude": 13.3900758, + "code": "BGB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966988", + "name": "Bornholmer Stra\u00dfe", + "latitude": 52.5552778, + "longitude": 13.3977599, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966990", + "name": "Storkower Stra\u00dfe", + "latitude": 52.5240107, + "longitude": 13.4642021, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127966995", + "name": "Bornholmer Stra\u00dfe", + "latitude": 52.5542239, + "longitude": 13.3977372, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127967028", + "name": "Greifswalder Stra\u00dfe", + "latitude": 52.5398615, + "longitude": 13.4396585, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127967030", + "name": "Bornholmer Stra\u00dfe", + "latitude": 52.5552883, + "longitude": 13.397955, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127967031", + "name": "Wedding", + "latitude": 52.5433212, + "longitude": 13.3683388, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127967036", + "name": "Sch\u00f6nhauser Allee", + "latitude": 52.5489522, + "longitude": 13.4164114, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1127967045", + "name": "Bornholmer Stra\u00dfe", + "latitude": 52.5542364, + "longitude": 13.3979312, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363292", + "name": "Buch", + "latitude": 52.6362446, + "longitude": 13.4923019, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363347", + "name": "Bergfelde", + "latitude": 52.6704379, + "longitude": 13.3194759, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363355", + "name": "Buch", + "latitude": 52.6354994, + "longitude": 13.4910958, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363390", + "name": "M\u00fchlenbeck-M\u00f6nchm\u00fchle", + "latitude": 52.6548389, + "longitude": 13.3860512, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363477", + "name": "Bernau-Friedenstal", + "latitude": 52.6686269, + "longitude": 13.5657069, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363532", + "name": "Karow", + "latitude": 52.6150694, + "longitude": 13.4691881, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363615", + "name": "Hohen Neuendorf (b Berlin)", + "latitude": 52.6686566, + "longitude": 13.286948, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363796", + "name": "R\u00f6ntgental", + "latitude": 52.6486244, + "longitude": 13.5133191, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363868", + "name": "Bergfelde", + "latitude": 52.669823, + "longitude": 13.3212436, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363895", + "name": "Sch\u00f6nflie\u00df", + "latitude": 52.664527, + "longitude": 13.3405462, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363923", + "name": "Karow", + "latitude": 52.6153746, + "longitude": 13.4697585, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1151363944", + "name": "Bernau-Friedenstal", + "latitude": 52.6682515, + "longitude": 13.5641477, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1161821063", + "name": "Moorbekhalle (Schulzentrum Nord)", + "latitude": 53.7170278, + "longitude": 9.9917369, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1174229327", + "name": "Friedrichsgabe", + "latitude": 53.7288682, + "longitude": 9.9888883, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1180848793", + "name": "Leuchtenbergring", + "latitude": 48.1341151, + "longitude": 11.6153909, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1189144934", + "name": "Gro\u00dfbeeren", + "latitude": 52.3509765, + "longitude": 13.2847711, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1191166180", + "name": "Unterf\u00f6hring", + "latitude": 48.1900748, + "longitude": 11.6467247, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1197626211", + "name": "Wartenau", + "latitude": 53.5646508, + "longitude": 10.0354076, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1216281131", + "name": "Quickborner Stra\u00dfe", + "latitude": 53.7343115, + "longitude": 9.9899008, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1237726361", + "name": "Jungfernstieg", + "latitude": 53.5523145, + "longitude": 9.9937521, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1237726381", + "name": "Stadthausbr\u00fccke", + "latitude": 53.5495909, + "longitude": 9.9850038, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1238439077", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5517746, + "longitude": 10.007497, + "code": "7A-D", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1241995961", + "name": "Bergedorf", + "latitude": 53.4903607, + "longitude": 10.2074499, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1242061223", + "name": "Aum\u00fchle", + "latitude": 53.5300171, + "longitude": 10.3144837, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1244256109", + "name": "Hittfeld", + "latitude": 53.4035779, + "longitude": 9.9744845, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1283197478", + "name": "Landungsbr\u00fccken", + "latitude": 53.5461807, + "longitude": 9.9710297, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1284636797", + "name": "Teltow", + "latitude": 52.3879811, + "longitude": 13.2997931, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1302634121", + "name": "Pasing", + "latitude": 48.1500098, + "longitude": 11.4616573, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1328828561", + "name": "Neu Wulmstorf", + "latitude": 53.4730071, + "longitude": 9.78818, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1328835751", + "name": "Fischbek", + "latitude": 53.4747407, + "longitude": 9.8192403, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1329487159", + "name": "Neuwiedenthal", + "latitude": 53.4730519, + "longitude": 9.8774836, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1333910072", + "name": "Ahrensburg-Gartenholz", + "latitude": 53.6890401, + "longitude": 10.251972, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1334767620", + "name": "Hohen Neuendorf West", + "latitude": 52.6723028, + "longitude": 13.2706921, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1342275460", + "name": "Berlin Ostkreuz", + "latitude": 52.5031006, + "longitude": 13.4699795, + "code": "BOKN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1351158702", + "name": "Zoologischer Garten", + "latitude": 52.5071378, + "longitude": 13.331868, + "code": "BZOS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1354118500", + "name": "Berlin-Wannsee", + "latitude": 52.4216093, + "longitude": 13.1811995, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1359198009", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5522329, + "longitude": 10.0083178, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1374516268", + "name": "Escheburg", + "latitude": 53.4620904, + "longitude": 10.3140524, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1379781760", + "name": "Englschalking", + "latitude": 48.1567548, + "longitude": 11.6483286, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1412279567", + "name": "Veddel (Ballin Stadt)", + "latitude": 53.5217215, + "longitude": 10.0135235, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1412279568", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.552512, + "longitude": 10.0075634, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1412279569", + "name": "Dammtor (Messe/CCH)", + "latitude": 53.561127, + "longitude": 9.9892898, + "code": "ADST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1412279570", + "name": "Holstenstra\u00dfe", + "latitude": 53.561674, + "longitude": 9.949861, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1412837077", + "name": "Schnelsen S\u00fcd", + "latitude": 53.6238182, + "longitude": 9.9059477, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1416364870", + "name": "Falkensee", + "latitude": 52.5594864, + "longitude": 13.0901376, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1416364874", + "name": "Falkensee", + "latitude": 52.5599898, + "longitude": 13.0888268, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724464", + "name": "M\u00fcnchen Ost", + "latitude": 48.1271299, + "longitude": 11.6061093, + "code": "14", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724472", + "name": "M\u00fcnchen Ost", + "latitude": 48.1272095, + "longitude": 11.6059946, + "code": "13", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724475", + "name": "M\u00fcnchen Ost", + "latitude": 48.1272394, + "longitude": 11.60595, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724476", + "name": "M\u00fcnchen Ost", + "latitude": 48.1273204, + "longitude": 11.6058245, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724488", + "name": "M\u00fcnchen Ost", + "latitude": 48.1274092, + "longitude": 11.6056883, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724492", + "name": "M\u00fcnchen Ost", + "latitude": 48.1275185, + "longitude": 11.6055168, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724494", + "name": "Ostbahnhof", + "latitude": 48.1276066, + "longitude": 11.605381, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724502", + "name": "Ostbahnhof", + "latitude": 48.1277586, + "longitude": 11.6051517, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452724506", + "name": "Ostbahnhof", + "latitude": 48.1278335, + "longitude": 11.6050371, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452862956", + "name": "Feldmoching", + "latitude": 48.2135904, + "longitude": 11.5411952, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452862960", + "name": "Hirschgarten", + "latitude": 48.1434902, + "longitude": 11.5194229, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452862969", + "name": "Hirschgarten", + "latitude": 48.1436135, + "longitude": 11.5194844, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452862971", + "name": "Laim", + "latitude": 48.1443099, + "longitude": 11.5040719, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1452862973", + "name": "Laim", + "latitude": 48.144647, + "longitude": 11.5029582, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1459243934", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1401771, + "longitude": 11.5532439, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1459243940", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1402111, + "longitude": 11.5532621, + "code": "9", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1459244086", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1413149, + "longitude": 11.5557767, + "code": "28", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1459244089", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1413554, + "longitude": 11.5557816, + "code": "29", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1460254879", + "name": "Allach", + "latitude": 48.1900071, + "longitude": 11.4679269, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1460254910", + "name": "Obermenzing", + "latitude": 48.1642081, + "longitude": 11.4779449, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1460254934", + "name": "Riem", + "latitude": 48.1439915, + "longitude": 11.6777668, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1460254939", + "name": "Riem", + "latitude": 48.1440867, + "longitude": 11.6777405, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1460254943", + "name": "Untermenzing", + "latitude": 48.1777071, + "longitude": 11.4726165, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100840", + "name": "Deisenhofen", + "latitude": 48.0194705, + "longitude": 11.5836458, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100843", + "name": "Deisenhofen", + "latitude": 48.01949, + "longitude": 11.58376, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100863", + "name": "Gr\u00f6benzell", + "latitude": 48.1951529, + "longitude": 11.3735299, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100864", + "name": "Gr\u00f6benzell", + "latitude": 48.1951241, + "longitude": 11.3737741, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100875", + "name": "Laim", + "latitude": 48.1442261, + "longitude": 11.5040621, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100877", + "name": "Langwied", + "latitude": 48.1630327, + "longitude": 11.4323203, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100887", + "name": "Langwied", + "latitude": 48.1631153, + "longitude": 11.4324275, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100890", + "name": "Lochhausen", + "latitude": 48.1763343, + "longitude": 11.4080438, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468100893", + "name": "Lochhausen", + "latitude": 48.1764077, + "longitude": 11.4081536, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1468335003", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.1497025, + "longitude": 11.4614502, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1469098205", + "name": "Leuchtenbergring", + "latitude": 48.134493, + "longitude": 11.6164952, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1469875156", + "name": "Trudering", + "latitude": 48.1259895, + "longitude": 11.6633374, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1469907409", + "name": "Gronsdorf", + "latitude": 48.1183158, + "longitude": 11.6988082, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1470966669", + "name": "Lochham", + "latitude": 48.1282564, + "longitude": 11.4308549, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1471188001", + "name": "Baierbrunn", + "latitude": 48.0186736, + "longitude": 11.4800755, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1471188002", + "name": "Harras", + "latitude": 48.1183927, + "longitude": 11.5366043, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1501209653", + "name": "Daglfing", + "latitude": 48.1496149, + "longitude": 11.6492473, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1501209665", + "name": "Johanneskirchen", + "latitude": 48.1676243, + "longitude": 11.6460762, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1508604304", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5515845, + "longitude": 10.0078823, + "code": "5A-C", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1509744317", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1400866, + "longitude": 11.5531716, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1509744339", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1402966, + "longitude": 11.5533076, + "code": "10", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1550211300", + "name": "Germering-Unterpfaffenhofen", + "latitude": 48.1287835, + "longitude": 11.3640503, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1550211305", + "name": "Germering-Unterpfaffenhofen", + "latitude": 48.1289226, + "longitude": 11.3640007, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1562853769", + "name": "Karlsplatz (Stachus)", + "latitude": 48.1393929, + "longitude": 11.5656712, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1562853773", + "name": "Karlsplatz (Stachus)", + "latitude": 48.1395114, + "longitude": 11.5657861, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1586118346", + "name": "Messehallen", + "latitude": 53.5580721, + "longitude": 9.9767239, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1615315270", + "name": "Gro\u00dfbeeren", + "latitude": 52.3509862, + "longitude": 13.2847049, + "code": "BGSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1648288162", + "name": "Trabrennbahn", + "latitude": 53.598434, + "longitude": 10.1028727, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971118", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1398982, + "longitude": 11.5574067, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971124", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1399336, + "longitude": 11.557412, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971129", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.140041, + "longitude": 11.557428, + "code": "13", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971133", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1400791, + "longitude": 11.5574337, + "code": "14", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971140", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1401957, + "longitude": 11.5574512, + "code": "15", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971176", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1402325, + "longitude": 11.5574566, + "code": "16", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971179", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1403481, + "longitude": 11.557474, + "code": "17", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971183", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1403863, + "longitude": 11.5574797, + "code": "18", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971187", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1405106, + "longitude": 11.5574982, + "code": "19", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971190", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1405509, + "longitude": 11.5575043, + "code": "20", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971223", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1406627, + "longitude": 11.557521, + "code": "21", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971229", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1407033, + "longitude": 11.5575271, + "code": "22", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971239", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1408237, + "longitude": 11.5575451, + "code": "23", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971249", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1408641, + "longitude": 11.5575511, + "code": "24", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971286", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1409725, + "longitude": 11.5575674, + "code": "25", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971302", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1410084, + "longitude": 11.5575727, + "code": "26", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971354", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1412296, + "longitude": 11.5557613, + "code": "27", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971363", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1414366, + "longitude": 11.5557981, + "code": "30", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971370", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1414803, + "longitude": 11.5558058, + "code": "31", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971403", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1415631, + "longitude": 11.5558211, + "code": "32", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971412", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.141605, + "longitude": 11.5558336, + "code": "33", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971424", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1416897, + "longitude": 11.5558443, + "code": "34", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1654971434", + "name": "M\u00fcnchen Hbf Gleis 27-36", + "latitude": 48.1417296, + "longitude": 11.5558548, + "code": "35", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1676057413", + "name": "Humboldthain", + "latitude": 52.5452892, + "longitude": 13.3798353, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1680910488", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5531993, + "longitude": 10.0064364, + "code": "AH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686194219", + "name": "Solln", + "latitude": 48.0799345, + "longitude": 11.5269704, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686194222", + "name": "Solln", + "latitude": 48.0799414, + "longitude": 11.5268367, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686221620", + "name": "H\u00f6llriegelskreuth", + "latitude": 48.0432765, + "longitude": 11.5096586, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600807", + "name": "Hamburg-Altona", + "latitude": 53.5530698, + "longitude": 9.9354715, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600808", + "name": "Hamburg-Altona", + "latitude": 53.5530712, + "longitude": 9.9354096, + "code": "10", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600809", + "name": "Hamburg-Altona", + "latitude": 53.5530753, + "longitude": 9.9352345, + "code": "9", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600810", + "name": "Hamburg-Altona", + "latitude": 53.5530887, + "longitude": 9.9351647, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600811", + "name": "Hamburg-Altona", + "latitude": 53.5530818, + "longitude": 9.9349648, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600812", + "name": "Hamburg-Altona", + "latitude": 53.5530832, + "longitude": 9.9348983, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600813", + "name": "Hamburg-Altona", + "latitude": 53.5530888, + "longitude": 9.934707, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1686600814", + "name": "Hamburg-Altona", + "latitude": 53.5532195, + "longitude": 9.9356388, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1687916285", + "name": "Dammtor (Messe/CCH)", + "latitude": 53.5611925, + "longitude": 9.9894336, + "code": "ADST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1687916289", + "name": "Hamburg Dammtor / Universit\u00e4t", + "latitude": 53.5611501, + "longitude": 9.988944, + "code": "ADF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1687916295", + "name": "Hamburg Dammtor / Universit\u00e4t", + "latitude": 53.5612092, + "longitude": 9.9890896, + "code": "ADF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1698492592", + "name": "Untermenzing", + "latitude": 48.1777183, + "longitude": 11.4727584, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1699557692", + "name": "Pullach", + "latitude": 48.0589266, + "longitude": 11.5218423, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1699557702", + "name": "Pullach", + "latitude": 48.05894, + "longitude": 11.5217948, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1716964572", + "name": "Stockdorf", + "latitude": 48.0934019, + "longitude": 11.4008487, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1717055699", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.1502455, + "longitude": 11.4618452, + "code": "10", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1720998956", + "name": "Eidelstedt", + "latitude": 53.5957281, + "longitude": 9.9073896, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1731759740", + "name": "Schlachtensee", + "latitude": 52.440088, + "longitude": 13.2154373, + "code": "BSLS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1736057577", + "name": "Freiham", + "latitude": 48.139989, + "longitude": 11.410071, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1736633839", + "name": "Flughafen BER", + "latitude": 52.3639907, + "longitude": 13.5083312, + "code": "BFBI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745157971", + "name": "Hackescher Markt", + "latitude": 52.5226795, + "longitude": 13.4020708, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745157972", + "name": "Jannowitzbr\u00fccke", + "latitude": 52.5143973, + "longitude": 13.4191704, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745157973", + "name": "Ostbahnhof", + "latitude": 52.5106059, + "longitude": 13.4350936, + "code": "BOSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745174995", + "name": "Bellevue", + "latitude": 52.5200575, + "longitude": 13.3477818, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745174999", + "name": "Tiergarten", + "latitude": 52.5140458, + "longitude": 13.3361945, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745221431", + "name": "Savignyplatz", + "latitude": 52.5052233, + "longitude": 13.3190102, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745221443", + "name": "Westkreuz", + "latitude": 52.5008711, + "longitude": 13.2835094, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1745221448", + "name": "Zoologischer Garten", + "latitude": 52.5068696, + "longitude": 13.3315321, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1769645503", + "name": "Oranienburger Stra\u00dfe", + "latitude": 52.5256324, + "longitude": 13.3933046, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797163098", + "name": "Ostkreuz", + "latitude": 52.5027427, + "longitude": 13.4687755, + "code": "BOK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797163101", + "name": "Ostkreuz", + "latitude": 52.5036523, + "longitude": 13.4697774, + "code": "BOK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797240540", + "name": "Waidmannslust", + "latitude": 52.6062369, + "longitude": 13.3210671, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797240542", + "name": "Wittenau", + "latitude": 52.5970052, + "longitude": 13.3341609, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290853", + "name": "Friedenau", + "latitude": 52.4710952, + "longitude": 13.3420574, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290854", + "name": "Lichterfelde West", + "latitude": 52.4431657, + "longitude": 13.293408, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290855", + "name": "Mexikoplatz", + "latitude": 52.4365879, + "longitude": 13.233444, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290856", + "name": "Nikolassee", + "latitude": 52.432266, + "longitude": 13.1948452, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290857", + "name": "Schlachtensee", + "latitude": 52.4401605, + "longitude": 13.2160819, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290858", + "name": "Sch\u00f6neberg", + "latitude": 52.4796382, + "longitude": 13.3524409, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1797290859", + "name": "Sundgauer Stra\u00dfe", + "latitude": 52.4363446, + "longitude": 13.2741127, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004200", + "name": "Beusselstra\u00dfe", + "latitude": 52.5344182, + "longitude": 13.3300021, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004207", + "name": "Bundesplatz", + "latitude": 52.4777023, + "longitude": 13.3289611, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004214", + "name": "Halensee", + "latitude": 52.4960144, + "longitude": 13.2906869, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004216", + "name": "Heidelberger Platz", + "latitude": 52.4804521, + "longitude": 13.3113393, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004219", + "name": "Hohenzollerndamm", + "latitude": 52.4889341, + "longitude": 13.2999556, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004222", + "name": "Jungfernheide", + "latitude": 52.5304735, + "longitude": 13.3002882, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004223", + "name": "Messe Nord/ZOB", + "latitude": 52.50817, + "longitude": 13.283939, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004226", + "name": "Sch\u00f6neberg", + "latitude": 52.4792174, + "longitude": 13.3509197, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004228", + "name": "Westend", + "latitude": 52.5187699, + "longitude": 13.2843103, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004231", + "name": "Westhafen", + "latitude": 52.5362865, + "longitude": 13.3449438, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1806004234", + "name": "Westkreuz", + "latitude": 52.5013808, + "longitude": 13.2835436, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1832746710", + "name": "Festplatz", + "latitude": 52.4353786, + "longitude": 13.4142029, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1851988093", + "name": "Hirschgarten", + "latitude": 52.4579906, + "longitude": 13.602588, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1851988094", + "name": "Rahnsdorf", + "latitude": 52.4518069, + "longitude": 13.6890906, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1851988095", + "name": "Wilhelmshagen", + "latitude": 52.4390294, + "longitude": 13.7218932, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1855744014", + "name": "Birkenstein", + "latitude": 52.5156477, + "longitude": 13.6480865, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1870089918", + "name": "Buckower Damm", + "latitude": 52.4290685, + "longitude": 13.4299672, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1871614103", + "name": "Sch\u00f6nholz", + "latitude": 52.5712418, + "longitude": 13.38128, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1871614104", + "name": "Sch\u00f6nholz", + "latitude": 52.5713283, + "longitude": 13.381423, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1871614107", + "name": "Wollankstra\u00dfe", + "latitude": 52.5648374, + "longitude": 13.3927639, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1871614108", + "name": "Wollankstra\u00dfe", + "latitude": 52.5656684, + "longitude": 13.3916014, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1894165224", + "name": "Kalenderplatz", + "latitude": 52.4364067, + "longitude": 13.421715, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1920671945", + "name": "Charlottenburg", + "latitude": 52.505042, + "longitude": 13.3037874, + "code": "BCHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1920671950", + "name": "Charlottenburg", + "latitude": 52.5050577, + "longitude": 13.3052165, + "code": "BCHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1929586905", + "name": "Tegel", + "latitude": 52.5880882, + "longitude": 13.2896504, + "code": "BTG", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1930939368", + "name": "Friedrichstra\u00dfe", + "latitude": 52.5206238, + "longitude": 13.3866467, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1932503321", + "name": "Attilastra\u00dfe", + "latitude": 52.4485256, + "longitude": 13.3605969, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1947340096", + "name": "Nordbahnhof", + "latitude": 52.5322749, + "longitude": 13.3878392, + "code": "BNB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1949148093", + "name": "Hohenbrunn", + "latitude": 48.0465442, + "longitude": 11.698743, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1958754939", + "name": "Messe S\u00fcd (Eichkamp)", + "latitude": 52.4985687, + "longitude": 13.2703, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1958754994", + "name": "Messe S\u00fcd (Eichkamp)", + "latitude": 52.4986015, + "longitude": 13.2708238, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1959144945", + "name": "Olympiastadion", + "latitude": 52.5112475, + "longitude": 13.2423363, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "1959145344", + "name": "Olympiastadion", + "latitude": 52.5121157, + "longitude": 13.2432515, + "code": "10", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2074859447", + "name": "Halstenbek", + "latitude": 53.6304517, + "longitude": 9.8391544, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2093326267", + "name": "Anhalter Bahnhof", + "latitude": 52.5034307, + "longitude": 13.3813522, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2093326467", + "name": "Potsdamer Platz", + "latitude": 52.509786, + "longitude": 13.3766718, + "code": "13", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2101860869", + "name": "Pankow", + "latitude": 52.5659487, + "longitude": 13.4099179, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2108146647", + "name": "Westkreuz", + "latitude": 52.5005966, + "longitude": 13.2832135, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2108146652", + "name": "Westkreuz", + "latitude": 52.5010143, + "longitude": 13.2848777, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2118668062", + "name": "Yorckstra\u00dfe (Gro\u00dfg\u00f6rschenstra\u00dfe)", + "latitude": 52.4917071, + "longitude": 13.3672668, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2134525648", + "name": "Oranienburger Stra\u00dfe", + "latitude": 52.5252246, + "longitude": 13.3930145, + "code": "BORS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2393814846", + "name": "Nordbahnhof", + "latitude": 52.5322084, + "longitude": 13.3878733, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2393814847", + "name": "Nordbahnhof", + "latitude": 52.5326616, + "longitude": 13.3869051, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2393814848", + "name": "Nordbahnhof", + "latitude": 52.5322333, + "longitude": 13.3879171, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2400635511", + "name": "Berlin-Staaken", + "latitude": 52.5376551, + "longitude": 13.1413249, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2407120619", + "name": "Blumberg-Rehhahn", + "latitude": 52.5968317, + "longitude": 13.5922734, + "code": "BAHH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2411834909", + "name": "Sankt-Martin-Stra\u00dfe", + "latitude": 48.1185584, + "longitude": 11.5957783, + "code": "MMAR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2422607580", + "name": "Hohensch\u00f6nhausen", + "latitude": 52.5662962, + "longitude": 13.5126246, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2440453081", + "name": "Berlin-Lichtenberg", + "latitude": 52.5102376, + "longitude": 13.496918, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2440453083", + "name": "Berlin-Lichtenberg", + "latitude": 52.5101114, + "longitude": 13.4971093, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2451831547", + "name": "Potsdamer Platz", + "latitude": 52.5092768, + "longitude": 13.3766306, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2456043650", + "name": "Berlin Potsdamer Platz", + "latitude": 52.5093147, + "longitude": 13.3761562, + "code": "BPOF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2456043651", + "name": "Berlin Potsdamer Platz", + "latitude": 52.5093119, + "longitude": 13.3759409, + "code": "BPOF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2456043652", + "name": "Berlin Potsdamer Platz", + "latitude": 52.5093095, + "longitude": 13.3758485, + "code": "BPOF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2458015413", + "name": "Griebnitzsee", + "latitude": 52.3944905, + "longitude": 13.1271603, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2459919675", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5246361, + "longitude": 13.369861, + "code": "BL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2459919677", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5526959, + "longitude": 10.0075644, + "code": "AHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2460456045", + "name": "Anhalter Bahnhof", + "latitude": 52.503584, + "longitude": 13.3811828, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2465304880", + "name": "M\u00fcnchen Ost", + "latitude": 48.1277214, + "longitude": 11.6055187, + "code": "MOP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2468655152", + "name": "Lochhausen", + "latitude": 48.1760311, + "longitude": 11.4087172, + "code": "MLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2468831411", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.149737, + "longitude": 11.461472, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2468831429", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.1498324, + "longitude": 11.4615413, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2468831488", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.150152, + "longitude": 11.4617502, + "code": "9", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2468901141", + "name": "Laim", + "latitude": 48.1443523, + "longitude": 11.5038355, + "code": "ML", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2470092007", + "name": "Donnersbergerbr\u00fccke", + "latitude": 48.1426694, + "longitude": 11.5365226, + "code": "MMDN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2470201868", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1407253, + "longitude": 11.5569426, + "code": "MH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2470903095", + "name": "Berliner Tor", + "latitude": 53.5527185, + "longitude": 10.0249771, + "code": "ABTS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2471139654", + "name": "Nikolassee", + "latitude": 52.4324148, + "longitude": 13.1933817, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2473297785", + "name": "Karlsplatz (Stachus)", + "latitude": 48.1394857, + "longitude": 11.565622, + "code": "MKA", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2473495234", + "name": "Giesing", + "latitude": 48.1111299, + "longitude": 11.5960835, + "code": "MGI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2473495346", + "name": "Giesing", + "latitude": 48.111128, + "longitude": 11.5960535, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2476438979", + "name": "M\u00fcnchen-Pasing", + "latitude": 48.1499561, + "longitude": 11.4617667, + "code": "MP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2476467535", + "name": "Neuperlach S\u00fcd", + "latitude": 48.0888217, + "longitude": 11.6450199, + "code": "MNPS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2478915914", + "name": "Deisenhofen", + "latitude": 48.0194606, + "longitude": 11.5836136, + "code": "MDS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2478915919", + "name": "Deisenhofen", + "latitude": 48.0194337, + "longitude": 11.5834681, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2487884333", + "name": "Karlsfeld", + "latitude": 48.2112619, + "longitude": 11.4595228, + "code": "MKFS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2488012710", + "name": "Allach", + "latitude": 48.1900336, + "longitude": 11.4681053, + "code": "MMAL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2488012895", + "name": "Untermenzing", + "latitude": 48.1777125, + "longitude": 11.4726846, + "code": "MAUG", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2488173642", + "name": "Aubing", + "latitude": 48.1559713, + "longitude": 11.4131591, + "code": "MMAU", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2488177587", + "name": "Leienfelsstra\u00dfe", + "latitude": 48.1545345, + "longitude": 11.42858, + "code": "MLEF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2490859942", + "name": "Gesundbrunnen", + "latitude": 52.5491992, + "longitude": 13.390047, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2491219767", + "name": "Trudering", + "latitude": 48.1260355, + "longitude": 11.6633383, + "code": "MTR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2499284229", + "name": "Gauting", + "latitude": 48.0706597, + "longitude": 11.3760638, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2499552238", + "name": "Feldmoching", + "latitude": 48.2138224, + "longitude": 11.5412829, + "code": "MFE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2499632761", + "name": "Moosach", + "latitude": 48.1800399, + "longitude": 11.5060222, + "code": "MMCH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2499632809", + "name": "Moosach", + "latitude": 48.1800144, + "longitude": 11.5060735, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2500623009", + "name": "Mittersendling", + "latitude": 48.1077964, + "longitude": 11.536379, + "code": "MMT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2500671102", + "name": "Siemenswerke", + "latitude": 48.0943067, + "longitude": 11.5327302, + "code": "MSW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2500732468", + "name": "Solln", + "latitude": 48.0799367, + "longitude": 11.5269373, + "code": "MSN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2504796336", + "name": "Ismaning", + "latitude": 48.2257986, + "longitude": 11.679452, + "code": "MIS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2507006563", + "name": "Freiham", + "latitude": 48.1400082, + "longitude": 11.4100699, + "code": "MFHH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2513869313", + "name": "Griebnitzsee", + "latitude": 52.3943823, + "longitude": 13.1271851, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2513898321", + "name": "Babelsberg", + "latitude": 52.3914035, + "longitude": 13.0929636, + "code": "BBAB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2514084207", + "name": "Teltow Stadt", + "latitude": 52.396844, + "longitude": 13.2762483, + "code": "BTLS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2514399802", + "name": "H\u00f6llriegelskreuth", + "latitude": 48.0433039, + "longitude": 11.5096112, + "code": "MHRK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2515098593", + "name": "Gro\u00dfhesselohe Isartalbahnhof", + "latitude": 48.0711623, + "longitude": 11.5309003, + "code": "MGOI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2567991413", + "name": "Humboldthain", + "latitude": 52.5449517, + "longitude": 13.3794684, + "code": "BHUM", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2568010568", + "name": "Alt-Reinickendorf", + "latitude": 52.5777843, + "longitude": 13.3512427, + "code": "BARF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2597217964", + "name": "Sch\u00f6nerlinde", + "latitude": 52.65287, + "longitude": 13.4285363, + "code": "BSL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2603331683", + "name": "Berlin Friedrichstra\u00dfe", + "latitude": 52.5202843, + "longitude": 13.3871663, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2603331695", + "name": "Friedrichstra\u00dfe", + "latitude": 52.5204539, + "longitude": 13.3872713, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2613268560", + "name": "Buckower Chaussee", + "latitude": 52.4105417, + "longitude": 13.3827559, + "code": "BBCH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2622282234", + "name": "Lichterfelde Ost", + "latitude": 52.4305677, + "longitude": 13.3292394, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2622289345", + "name": "Berlin-Lichterfelde Ost", + "latitude": 52.429637, + "longitude": 13.3288225, + "code": "BLIH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2622289351", + "name": "Berlin-Lichterfelde Ost", + "latitude": 52.4295962, + "longitude": 13.3287065, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2633635518", + "name": "Schichauweg", + "latitude": 52.3993642, + "longitude": 13.3889201, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2634877184", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6386752, + "longitude": 13.2053008, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2634877185", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6388504, + "longitude": 13.2053231, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2634929378", + "name": "Heiligensee", + "latitude": 52.6246647, + "longitude": 13.229194, + "code": "BHLS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2634967358", + "name": "Schulzendorf", + "latitude": 52.6129562, + "longitude": 13.2460901, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2699799616", + "name": "Obermenzing", + "latitude": 48.1642173, + "longitude": 11.4780215, + "code": "MOZ", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2760023183", + "name": "Hamburg-Rahlstedt", + "latitude": 53.6049255, + "longitude": 10.1546663, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2776873647", + "name": "Berlin Alexanderplatz", + "latitude": 52.521321, + "longitude": 13.4111854, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2781518430", + "name": "Zoologischer Garten", + "latitude": 52.506942, + "longitude": 13.3318108, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2794465266", + "name": "Hamburg-Harburg", + "latitude": 53.4556741, + "longitude": 9.9915022, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2794465267", + "name": "Hamburg-Harburg", + "latitude": 53.455739, + "longitude": 9.9923612, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2802973934", + "name": "Teltow", + "latitude": 52.3882208, + "longitude": 13.2997399, + "code": "BTL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2804260613", + "name": "Betriebswerk", + "latitude": 52.4647148, + "longitude": 13.538224, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2808764192", + "name": "Zehlendorf", + "latitude": 52.4310765, + "longitude": 13.2588956, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070481", + "name": "Berlin Hauptbahnhof", + "latitude": 52.524742, + "longitude": 13.3695626, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070482", + "name": "Berlin Hauptbahnhof", + "latitude": 52.5249126, + "longitude": 13.3694603, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070483", + "name": "Berlin Hauptbahnhof", + "latitude": 52.5249394, + "longitude": 13.3694418, + "code": "13", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070484", + "name": "Berlin Hauptbahnhof", + "latitude": 52.5250952, + "longitude": 13.3693329, + "code": "14", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070486", + "name": "Hauptbahnhof", + "latitude": 52.525275, + "longitude": 13.3692007, + "code": "16", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070487", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5258834, + "longitude": 13.3682268, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070488", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.525925, + "longitude": 13.3684454, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070489", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5259398, + "longitude": 13.3685171, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070490", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5259949, + "longitude": 13.3687146, + "code": "BL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070491", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5260111, + "longitude": 13.3687959, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070492", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5260775, + "longitude": 13.3690803, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070493", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5260578, + "longitude": 13.3690013, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813070494", + "name": "Berlin Hauptbahnhof (tief)", + "latitude": 52.5261436, + "longitude": 13.3692707, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813143283", + "name": "Berlin-Wannsee", + "latitude": 52.4208664, + "longitude": 13.1795909, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813143284", + "name": "Berlin-Wannsee", + "latitude": 52.4209564, + "longitude": 13.1794611, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813143285", + "name": "Wannsee", + "latitude": 52.4209913, + "longitude": 13.1794108, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2813143286", + "name": "Wannsee", + "latitude": 52.4211255, + "longitude": 13.1792262, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556541", + "name": "Berlin Ostbahnhof", + "latitude": 52.5102219, + "longitude": 13.4346606, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556542", + "name": "Berlin Ostbahnhof", + "latitude": 52.5102566, + "longitude": 13.4347022, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556543", + "name": "Berlin Ostbahnhof", + "latitude": 52.5103096, + "longitude": 13.4349125, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556544", + "name": "Ostbahnhof", + "latitude": 52.5107014, + "longitude": 13.4351799, + "code": "BOSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556545", + "name": "Ostbahnhof", + "latitude": 52.5108252, + "longitude": 13.4353143, + "code": "BOSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2837556546", + "name": "Ostbahnhof", + "latitude": 52.5107448, + "longitude": 13.4351709, + "code": "BOSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2909563126", + "name": "Blankenburg", + "latitude": 52.5914655, + "longitude": 13.4434822, + "code": "BBLB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "2941687118", + "name": "Marienplatz", + "latitude": 48.1371436, + "longitude": 11.5753989, + "code": "MMP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3020817678", + "name": "Hammer Kirche", + "latitude": 53.5556085, + "longitude": 10.0555254, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3034089805", + "name": "Hallerstra\u00dfe", + "latitude": 53.5728163, + "longitude": 9.9890301, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3068973927", + "name": "Landwehr", + "latitude": 53.5611691, + "longitude": 10.0378965, + "code": "ALAN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3082186878", + "name": "Quickborn", + "latitude": 53.7310971, + "longitude": 9.9047002, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3082186881", + "name": "Quickborn", + "latitude": 53.7311574, + "longitude": 9.9047322, + "code": "AQB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3092221492", + "name": "Hohen Neuendorf (b Berlin)", + "latitude": 52.6686491, + "longitude": 13.2871503, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3092283378", + "name": "Frohnau", + "latitude": 52.6322807, + "longitude": 13.2902405, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3092283379", + "name": "Frohnau", + "latitude": 52.632409, + "longitude": 13.2902205, + "code": "BFOH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3092447211", + "name": "Waidmannslust", + "latitude": 52.6062718, + "longitude": 13.321194, + "code": "BWAI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3093738177", + "name": "Hermsdorf", + "latitude": 52.6173097, + "longitude": 13.30755, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3093801264", + "name": "Wilhelmsruh", + "latitude": 52.5817476, + "longitude": 13.3622878, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3101920258", + "name": "Berlin-Spandau", + "latitude": 52.5347067, + "longitude": 13.1955909, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3101920259", + "name": "Berlin-Spandau", + "latitude": 52.5347694, + "longitude": 13.1956287, + "code": "BSPD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3101920260", + "name": "Berlin-Spandau", + "latitude": 52.5349445, + "longitude": 13.1956548, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3129651718", + "name": "Sternschanze (Messe)", + "latitude": 53.5638296, + "longitude": 9.9677995, + "code": "ASST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3154117524", + "name": "Sch\u00f6nholz", + "latitude": 52.5715004, + "longitude": 13.3809904, + "code": "BSNH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3183012396", + "name": "Hauptbahnhof (tief)", + "latitude": 48.1412564, + "longitude": 11.560027, + "code": "MHT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3183841634", + "name": "Diebsteich", + "latitude": 53.5688861, + "longitude": 9.9342562, + "code": "ADT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3189921361", + "name": "Harras", + "latitude": 48.1183989, + "longitude": 11.5365352, + "code": "MHAR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3192902576", + "name": "M\u00fcnchen Hbf Gleis 27-36, Starnberger Bahnhof", + "latitude": 48.1415328, + "longitude": 11.5556199, + "code": "MH N", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3192904758", + "name": "M\u00fcnchen Hbf Gleis 5-10, Holzkirchner Bahnhof", + "latitude": 48.1401469, + "longitude": 11.5531625, + "code": "MH S", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3197892918", + "name": "Rauhes Haus", + "latitude": 53.5542084, + "longitude": 10.066125, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3204488807", + "name": "Hoppegarten (Mark)", + "latitude": 52.5182432, + "longitude": 13.6742567, + "code": "BHPG", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3205295000", + "name": "Ahrensburg", + "latitude": 53.6690745, + "longitude": 10.2361064, + "code": "AAHR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3234856203", + "name": "Attilastra\u00dfe", + "latitude": 52.4480308, + "longitude": 13.3607503, + "code": "BATS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3236186817", + "name": "Barmbek", + "latitude": 53.5871782, + "longitude": 10.0445885, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3239383462", + "name": "Hamburg-Rahlstedt", + "latitude": 53.604959, + "longitude": 10.154598, + "code": "ARAL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3255993297", + "name": "Hamburg Dammtor", + "latitude": 53.5611812, + "longitude": 9.9890232, + "code": "ADF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3321221939", + "name": "Buchenhain", + "latitude": 48.0312433, + "longitude": 11.4974794, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3357946758", + "name": "Hamburg-Altona", + "latitude": 53.5521527, + "longitude": 9.9345653, + "code": "AAS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372071087", + "name": "Hamburg-Tonndorf", + "latitude": 53.5864238, + "longitude": 10.1228969, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372093847", + "name": "Hamburg Hasselbrook", + "latitude": 53.5645687, + "longitude": 10.0559346, + "code": "AHSF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372126596", + "name": "Stadthausbr\u00fccke", + "latitude": 53.5494452, + "longitude": 9.9850654, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372142096", + "name": "Landungsbr\u00fccken", + "latitude": 53.5463058, + "longitude": 9.9710608, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372145519", + "name": "Klein Flottbek (Botanischer Garten)", + "latitude": 53.5581648, + "longitude": 9.8608825, + "code": "AFB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3372147544", + "name": "S\u00fclldorf", + "latitude": 53.5811262, + "longitude": 9.7974217, + "code": "ASDF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3377293658", + "name": "Eidelstedt", + "latitude": 53.5956752, + "longitude": 9.9073853, + "code": "AEST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3377293670", + "name": "Elbgaustra\u00dfe", + "latitude": 53.6026384, + "longitude": 9.8933409, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3386295732", + "name": "Moorbekhalle (Schulzentrum Nord)", + "latitude": 53.7171374, + "longitude": 9.991695, + "code": "AMBH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3391154047", + "name": "Elbbr\u00fccken", + "latitude": 53.5348122, + "longitude": 10.0232352, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3417780795", + "name": "Potsdam Medienstadt Babelsberg", + "latitude": 52.3825477, + "longitude": 13.1221196, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3417780796", + "name": "Potsdam Medienstadt Babelsberg", + "latitude": 52.3825766, + "longitude": 13.1220474, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3417780797", + "name": "Potsdam-Rehbr\u00fccke", + "latitude": 52.3582656, + "longitude": 13.0980856, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419608814", + "name": "Berlin-Charlottenburg", + "latitude": 52.5041211, + "longitude": 13.3023985, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419608815", + "name": "Berlin-Charlottenburg", + "latitude": 52.5042251, + "longitude": 13.3023229, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419608816", + "name": "Berlin-Charlottenburg", + "latitude": 52.5043703, + "longitude": 13.3027881, + "code": "BCHB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419608817", + "name": "Berlin-Charlottenburg", + "latitude": 52.5045157, + "longitude": 13.3029064, + "code": "BCHB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419623866", + "name": "Berlin Zoologischer Garten", + "latitude": 52.5073105, + "longitude": 13.332738, + "code": "BZOO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419623867", + "name": "Berlin Zoologischer Garten", + "latitude": 52.5073628, + "longitude": 13.3325425, + "code": "BZOO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419623868", + "name": "Berlin Zoologischer Garten", + "latitude": 52.5073807, + "longitude": 13.3324884, + "code": "BZOO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419623869", + "name": "Berlin Zoologischer Garten", + "latitude": 52.5074358, + "longitude": 13.3323257, + "code": "BZOO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419694885", + "name": "Berlin Alexanderplatz", + "latitude": 52.5214729, + "longitude": 13.4112036, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419894993", + "name": "Berlin Ostbahnhof", + "latitude": 52.5103817, + "longitude": 13.4349112, + "code": "BHF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3419922345", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.3914537, + "longitude": 13.5132856, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3421912087", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6386442, + "longitude": 13.2051881, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3421912088", + "name": "Hennigsdorf (bei Berlin)", + "latitude": 52.6389088, + "longitude": 13.2055647, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3423149134", + "name": "Griebnitzsee", + "latitude": 52.3942847, + "longitude": 13.128292, + "code": "BGBS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3442821854", + "name": "Quickborner Stra\u00dfe", + "latitude": 53.7342817, + "longitude": 9.9897571, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3442854094", + "name": "Friedrichsgabe", + "latitude": 53.7288732, + "longitude": 9.9888133, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3443830593", + "name": "Meckelfeld", + "latitude": 53.4247313, + "longitude": 10.0291866, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3443830594", + "name": "Meckelfeld", + "latitude": 53.424816, + "longitude": 10.0293709, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3455394914", + "name": "Quickborn S\u00fcd", + "latitude": 53.7228737, + "longitude": 9.9076198, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3455394915", + "name": "Quickborn S\u00fcd", + "latitude": 53.7231376, + "longitude": 9.9075006, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3480061011", + "name": "Reeperbahn", + "latitude": 53.5495442, + "longitude": 9.9579299, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3480114466", + "name": "K\u00f6nigstra\u00dfe", + "latitude": 53.5477884, + "longitude": 9.944222, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3493177833", + "name": "Berlin Potsdamer Platz", + "latitude": 52.5092044, + "longitude": 13.3759366, + "code": "BPOF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3508654672", + "name": "Berlin-Sch\u00f6neweide", + "latitude": 52.4547954, + "longitude": 13.5092306, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3508654673", + "name": "Berlin-Sch\u00f6neweide", + "latitude": 52.4548792, + "longitude": 13.5093931, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3508654676", + "name": "Altglienicke", + "latitude": 52.4069533, + "longitude": 13.5582554, + "code": "BAGL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3508654680", + "name": "Sch\u00f6neweide", + "latitude": 52.4549058, + "longitude": 13.5097653, + "code": "BSW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3515302614", + "name": "Neuk\u00f6lln", + "latitude": 52.4695134, + "longitude": 13.4437571, + "code": "BNK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3530748938", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5521495, + "longitude": 10.0063003, + "code": "14", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3540720029", + "name": "Berlin-Sch\u00f6neweide", + "latitude": 52.4548738, + "longitude": 13.5092508, + "code": "BSWP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3541526943", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.3909067, + "longitude": 13.5130469, + "code": "BFLH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583647086", + "name": "Hasloh", + "latitude": 53.6948098, + "longitude": 9.9198147, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583647087", + "name": "Hasloh", + "latitude": 53.6948297, + "longitude": 9.9199589, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583849097", + "name": "H\u00f6rgensweg", + "latitude": 53.6175203, + "longitude": 9.9036327, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583849098", + "name": "H\u00f6rgensweg", + "latitude": 53.6176318, + "longitude": 9.9037108, + "code": "ABWD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583854006", + "name": "B\u00f6nningstedt", + "latitude": 53.663251, + "longitude": 9.9102659, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3583854007", + "name": "B\u00f6nningstedt", + "latitude": 53.6632962, + "longitude": 9.9101835, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3591969905", + "name": "Maschen", + "latitude": 53.4031494, + "longitude": 10.0667214, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3591969906", + "name": "Maschen", + "latitude": 53.4030778, + "longitude": 10.0665931, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3595451434", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5511274, + "longitude": 10.0067919, + "code": "13A-C", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3629769340", + "name": "Hittfeld", + "latitude": 53.4034618, + "longitude": 9.9742872, + "code": "AHIF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3656889352", + "name": "Berlin Jungfernheide", + "latitude": 52.5302089, + "longitude": 13.299639, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3656889353", + "name": "Berlin Jungfernheide", + "latitude": 52.530316, + "longitude": 13.2995592, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303128", + "name": "Harburg Rathaus", + "latitude": 53.4607391, + "longitude": 9.9804762, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303130", + "name": "Heimfeld (TU Hamburg)", + "latitude": 53.4655317, + "longitude": 9.9630682, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303134", + "name": "Krupunder", + "latitude": 53.6157607, + "longitude": 9.8677207, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303136", + "name": "Pinneberg", + "latitude": 53.6547238, + "longitude": 9.798573, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303137", + "name": "Pinneberg", + "latitude": 53.6547453, + "longitude": 9.7986346, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303140", + "name": "Thesdorf", + "latitude": 53.6439063, + "longitude": 9.8144069, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3707303141", + "name": "Thesdorf", + "latitude": 53.6439751, + "longitude": 9.8145678, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3714150030", + "name": "Warschauer Stra\u00dfe", + "latitude": 52.505908, + "longitude": 13.4516857, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3737206790", + "name": "Perlach", + "latitude": 48.0934579, + "longitude": 11.6314018, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3738942416", + "name": "HafenCity Universit\u00e4t", + "latitude": 53.5405541, + "longitude": 10.0079629, + "code": "HCU", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3741659626", + "name": "Hauptbahnhof Nord", + "latitude": 53.5541197, + "longitude": 10.006127, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3748279695", + "name": "Hamburg-Harburg", + "latitude": 53.4544512, + "longitude": 9.9920986, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3749913074", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5521682, + "longitude": 10.0064619, + "code": "13", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3761260321", + "name": "Julius-Leber-Br\u00fccke", + "latitude": 52.4864272, + "longitude": 13.3611122, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3761260322", + "name": "Rathaus Steglitz", + "latitude": 52.4556352, + "longitude": 13.3228161, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3772836700", + "name": "Leopoldplatz", + "latitude": 52.5463833, + "longitude": 13.3591672, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3778075167", + "name": "Hermannstra\u00dfe", + "latitude": 52.4676341, + "longitude": 13.4312408, + "code": "BHER", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3782190380", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.551833, + "longitude": 10.0067252, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3782190381", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5518596, + "longitude": 10.0069453, + "code": "11", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3793888458", + "name": "Gro\u00dfbeeren", + "latitude": 52.3509138, + "longitude": 13.2847017, + "code": "BGSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3797550879", + "name": "Burgwedel", + "latitude": 53.6476503, + "longitude": 9.9085146, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3797550880", + "name": "Burgwedel", + "latitude": 53.6476725, + "longitude": 9.9084706, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3797550881", + "name": "Schnelsen", + "latitude": 53.634213, + "longitude": 9.9064853, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3797550882", + "name": "Schnelsen", + "latitude": 53.6342149, + "longitude": 9.906624, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3808290434", + "name": "Charlottenburg", + "latitude": 52.5050484, + "longitude": 13.3045162, + "code": "BCHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3808290435", + "name": "Charlottenburg", + "latitude": 52.5051909, + "longitude": 13.3051488, + "code": "BCHS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3842232853", + "name": "Schichauweg", + "latitude": 52.3985451, + "longitude": 13.3894102, + "code": "BSC", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3844467019", + "name": "Moritzplatz", + "latitude": 52.5036623, + "longitude": 13.4107479, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3846358177", + "name": "Lichterfelde Ost", + "latitude": 52.4298633, + "longitude": 13.3280815, + "code": "BLIO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3854590993", + "name": "S Anhalter Bahnhof", + "latitude": 52.5035788, + "longitude": 13.3814763, + "code": "BAHU", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3854590996", + "name": "Potsdamer Platz", + "latitude": 52.5094035, + "longitude": 13.3766399, + "code": "BPOP", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100095", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5247546, + "longitude": 13.3690176, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100096", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.524815, + "longitude": 13.3693073, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100097", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5248066, + "longitude": 13.3692298, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100098", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5248295, + "longitude": 13.3695311, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100099", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5248455, + "longitude": 13.369613, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100100", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.524876, + "longitude": 13.3698293, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100101", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5248933, + "longitude": 13.3699098, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100102", + "name": "Berlin Hauptbahnhof (Tief)", + "latitude": 52.5249157, + "longitude": 13.3701329, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3856100103", + "name": "Berlin Hauptbahnhof", + "latitude": 52.5249451, + "longitude": 13.3696614, + "code": "BLS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3858390219", + "name": "Lichtenrade", + "latitude": 52.3869393, + "longitude": 13.3964496, + "code": "BLRD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3866864060", + "name": "Kaulsdorf", + "latitude": 52.5121351, + "longitude": 13.5901922, + "code": "BKAD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3869306763", + "name": "S Friedrichstra\u00dfe", + "latitude": 52.5204967, + "longitude": 13.3868236, + "code": "BFST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3872632789", + "name": "Landsberger Allee", + "latitude": 52.529482, + "longitude": 13.4547803, + "code": "BLST", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3875882001", + "name": "G\u00f6rlitzer Bahnhof", + "latitude": 52.4992628, + "longitude": 13.4280355, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3876863066", + "name": "Greifswalder Stra\u00dfe", + "latitude": 52.540408, + "longitude": 13.4388028, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3876909305", + "name": "Westhafen", + "latitude": 52.5362768, + "longitude": 13.3444152, + "code": "BWH", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3877606472", + "name": "Berlin Ostkreuz", + "latitude": 52.5028915, + "longitude": 13.4686139, + "code": "BOKR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3896661775", + "name": "Vinetastra\u00dfe", + "latitude": 52.5593248, + "longitude": 13.413278, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3916325095", + "name": "Senefelderplatz", + "latitude": 52.5323899, + "longitude": 13.4126861, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362090", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5508644, + "longitude": 10.0069521, + "code": "12A-B", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362091", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5508704, + "longitude": 10.00714, + "code": "11A-C", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362092", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5511184, + "longitude": 10.0066262, + "code": "14A-C", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362094", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5524798, + "longitude": 10.0072738, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362095", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5524993, + "longitude": 10.0074458, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362096", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.552861, + "longitude": 10.0062608, + "code": "12C-F", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362097", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5528963, + "longitude": 10.0064517, + "code": "11D-F", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362098", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5531252, + "longitude": 10.0066395, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362099", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5531636, + "longitude": 10.0068345, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362100", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5534105, + "longitude": 10.0068116, + "code": "6D-E", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362101", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5534436, + "longitude": 10.0069802, + "code": "5D-E", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3934362102", + "name": "Hamburg Hauptbahnhof", + "latitude": 53.5543532, + "longitude": 10.0057168, + "code": "7E-I", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632574", + "name": "Ahrensfelde Friedhof", + "latitude": 52.580492, + "longitude": 13.573, + "code": "BAFR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632575", + "name": "Ahrensfelde Nord", + "latitude": 52.5906945, + "longitude": 13.5819437, + "code": "BAFN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632576", + "name": "Ahrensfelde", + "latitude": 52.5714452, + "longitude": 13.5653023, + "code": "BAHR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632578", + "name": "Berlin Ostkreuz", + "latitude": 52.5031586, + "longitude": 13.4696313, + "code": "BOKN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632579", + "name": "Berlin-Lichtenberg", + "latitude": 52.5104437, + "longitude": 13.4965907, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632581", + "name": "Blumberg (b Berlin)", + "latitude": 52.6051449, + "longitude": 13.6116227, + "code": "BBLU", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632939", + "name": "Ahrensfelde", + "latitude": 52.5713397, + "longitude": 13.5656581, + "code": "BAF", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632940", + "name": "Seefeld (Mark)", + "latitude": 52.6182439, + "longitude": 13.6756429, + "code": "BSEE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3936632941", + "name": "Werneuchen", + "latitude": 52.6373179, + "longitude": 13.7374233, + "code": "BWER", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3956510409", + "name": "Ahrensburg", + "latitude": 53.6689617, + "longitude": 10.2362195, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3996393390", + "name": "Grunewald", + "latitude": 52.488332, + "longitude": 13.2615577, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3996393391", + "name": "Grunewald", + "latitude": 52.488439, + "longitude": 13.2614188, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3996393392", + "name": "Grunewald", + "latitude": 52.4884718, + "longitude": 13.2613711, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3996393393", + "name": "Grunewald", + "latitude": 52.4885617, + "longitude": 13.2612684, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3998225896", + "name": "Savignyplatz", + "latitude": 52.5051098, + "longitude": 13.3189562, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "3999126247", + "name": "Aum\u00fchle", + "latitude": 53.5299317, + "longitude": 10.3155349, + "code": "3a", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4010276891", + "name": "Bergedorf", + "latitude": 53.4899751, + "longitude": 10.2063722, + "code": "ABG S", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4053206390", + "name": "Bargteheide", + "latitude": 53.72753, + "longitude": 10.2686433, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4053206391", + "name": "Bargteheide", + "latitude": 53.7281839, + "longitude": 10.269106, + "code": "ABAE", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4054571297", + "name": "Stockdorf", + "latitude": 48.0933472, + "longitude": 11.4009591, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4059463086", + "name": "Heerstra\u00dfe", + "latitude": 52.5074322, + "longitude": 13.2607839, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4063111596", + "name": "Langenhorn Markt", + "latitude": 53.6488888, + "longitude": 10.0172131, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4066653629", + "name": "Hohensch\u00f6nhausen", + "latitude": 52.5662395, + "longitude": 13.5124218, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4095970528", + "name": "Ostkreuz", + "latitude": 52.5031349, + "longitude": 13.4694841, + "code": "BOKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4095970537", + "name": "Ostkreuz", + "latitude": 52.5035042, + "longitude": 13.4678285, + "code": "BOKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4102358153", + "name": "Berliner Tor", + "latitude": 53.5534288, + "longitude": 10.0230852, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4127523989", + "name": "Blankenese", + "latitude": 53.5644641, + "longitude": 9.8152673, + "code": "AB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4128824965", + "name": "Hasselbrook", + "latitude": 53.5646689, + "longitude": 10.0556724, + "code": "AHSB", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4129931556", + "name": "Hamburg Airport (Flughafen)", + "latitude": 53.6326466, + "longitude": 10.0066778, + "code": "AAI", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4185592203", + "name": "Pasing Bahnhof", + "latitude": 48.1492089, + "longitude": 11.4611203, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4208739687", + "name": "Spandau", + "latitude": 52.5346326, + "longitude": 13.1978993, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4208739688", + "name": "Spandau", + "latitude": 52.5347721, + "longitude": 13.1974528, + "code": "S5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4208763233", + "name": "Seegefeld", + "latitude": 52.5522302, + "longitude": 13.1178121, + "code": "BSFD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4208763234", + "name": "Seegefeld", + "latitude": 52.5524848, + "longitude": 13.1168987, + "code": "BSFD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4208763235", + "name": "Seegefeld", + "latitude": 52.5527394, + "longitude": 13.1159853, + "code": "BSFD", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4229779983", + "name": "Garstedt", + "latitude": 53.6844739, + "longitude": 9.9860415, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4240997099", + "name": "Klosterstern", + "latitude": 53.5816736, + "longitude": 9.9882157, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4259429067", + "name": "Bergedorf S\u00fcd", + "latitude": 53.4831326, + "longitude": 10.2128017, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4264720740", + "name": "Gesundbrunnen", + "latitude": 52.5491593, + "longitude": 13.3899951, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4407022665", + "name": "Osdorfer Stra\u00dfe", + "latitude": 52.4189534, + "longitude": 13.3144178, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4439191866", + "name": "Ostkreuz", + "latitude": 52.5028203, + "longitude": 13.4701851, + "code": "BOKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4548108306", + "name": "Griebnitzsee", + "latitude": 52.3942101, + "longitude": 13.126482, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4571716132", + "name": "Pinneberg", + "latitude": 53.6552696, + "longitude": 9.7971959, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4571716133", + "name": "Pinneberg", + "latitude": 53.6553369, + "longitude": 9.79732, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4571727112", + "name": "Prisdorf", + "latitude": 53.6745756, + "longitude": 9.7617758, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4571727113", + "name": "Prisdorf", + "latitude": 53.6759929, + "longitude": 9.7586651, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4572217615", + "name": "Pinneberg", + "latitude": 53.6546789, + "longitude": 9.7983757, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4640236390", + "name": "Albrechtshof", + "latitude": 52.5491012, + "longitude": 13.1300179, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4640236392", + "name": "Albrechtshof", + "latitude": 52.5495741, + "longitude": 13.1283351, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4711883587", + "name": "Erkner", + "latitude": 52.4273539, + "longitude": 13.752366, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4711883588", + "name": "Erkner", + "latitude": 52.4270352, + "longitude": 13.7525718, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4725309875", + "name": "Hamburg-Harburg", + "latitude": 53.4557227, + "longitude": 9.9917669, + "code": "AHAR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4737427770", + "name": "Berlin-Lichtenberg", + "latitude": 52.5103309, + "longitude": 13.4968008, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4737427772", + "name": "Berlin-Lichtenberg", + "latitude": 52.5103636, + "longitude": 13.4967417, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4737427773", + "name": "Berlin-Lichtenberg", + "latitude": 52.5101996, + "longitude": 13.496989, + "code": "BLO", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4744165580", + "name": "Berlin Ostkreuz (Stadtbahn-F)", + "latitude": 52.5028181, + "longitude": 13.4694146, + "code": "BOKR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4746086763", + "name": "Berlin Ostkreuz (Ringbahn-F)", + "latitude": 52.5028779, + "longitude": 13.4696738, + "code": "BOKN", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4747965207", + "name": "Hohen Neuendorf West", + "latitude": 52.6723544, + "longitude": 13.2713208, + "code": "BHOW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946078136", + "name": "Westkreuz (Stadtbahn)", + "latitude": 52.5010288, + "longitude": 13.2847452, + "code": "BWKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539224", + "name": "Jannowitzbr\u00fccke", + "latitude": 52.5140767, + "longitude": 13.4197527, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539225", + "name": "Stresow", + "latitude": 52.5318929, + "longitude": 13.2093024, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539226", + "name": "Stresow", + "latitude": 52.5320425, + "longitude": 13.2089734, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539227", + "name": "Tiergarten", + "latitude": 52.5142085, + "longitude": 13.3364598, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539229", + "name": "Pichelsberg", + "latitude": 52.5102387, + "longitude": 13.2275633, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539230", + "name": "S\u00fcdkreuz", + "latitude": 52.4751745, + "longitude": 13.3654535, + "code": "12", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539231", + "name": "Westend", + "latitude": 52.5180074, + "longitude": 13.2843027, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539232", + "name": "Hohenzollerndamm", + "latitude": 52.4884065, + "longitude": 13.3004078, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539236", + "name": "Pankow-Heinersdorf", + "latitude": 52.577582, + "longitude": 13.4289179, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539237", + "name": "Brandenburger Tor", + "latitude": 52.5164367, + "longitude": 13.3809354, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539240", + "name": "Heidelberger Platz", + "latitude": 52.480078, + "longitude": 13.3116389, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539242", + "name": "Bellevue", + "latitude": 52.5199303, + "longitude": 13.3480101, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4946539243", + "name": "Heerstra\u00dfe", + "latitude": 52.5080375, + "longitude": 13.2595757, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719400", + "name": "Olympiastadion", + "latitude": 52.5119948, + "longitude": 13.2433216, + "code": "9", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719401", + "name": "Olympiastadion", + "latitude": 52.5119548, + "longitude": 13.2433317, + "code": "8", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719402", + "name": "Olympiastadion", + "latitude": 52.5118309, + "longitude": 13.2433844, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719403", + "name": "Olympiastadion", + "latitude": 52.5117921, + "longitude": 13.243403, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719404", + "name": "Olympiastadion", + "latitude": 52.5116701, + "longitude": 13.2434705, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719405", + "name": "Olympiastadion", + "latitude": 52.511631, + "longitude": 13.2434904, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4947719406", + "name": "Olympiastadion", + "latitude": 52.5115088, + "longitude": 13.2435503, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4949971070", + "name": "Pankow", + "latitude": 52.5662755, + "longitude": 13.4103397, + "code": "BPKW", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "4959163245", + "name": "Botanischer Garten", + "latitude": 52.4479557, + "longitude": 13.3071282, + "code": "BBGT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5032009260", + "name": "Warschauer Stra\u00dfe", + "latitude": 52.5060522, + "longitude": 13.4517158, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5046353031", + "name": "Rummelsburg", + "latitude": 52.5010234, + "longitude": 13.4790871, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5196118052", + "name": "Ahrensburg Ost", + "latitude": 53.6613671, + "longitude": 10.2422971, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5202316503", + "name": "Sch\u00f6nerlinde", + "latitude": 52.6525426, + "longitude": 13.42858, + "code": "BSL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5219721336", + "name": "Sch\u00f6nhauser Allee", + "latitude": 52.5494885, + "longitude": 13.4137114, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5219721339", + "name": "Wittenau", + "latitude": 52.5956412, + "longitude": 13.3347115, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5227886053", + "name": "Elbbr\u00fccken", + "latitude": 53.5349734, + "longitude": 10.0249295, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5227886054", + "name": "Elbbr\u00fccken", + "latitude": 53.5349876, + "longitude": 10.0248744, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5257886399", + "name": "Steinstra\u00dfe", + "latitude": 53.5492731, + "longitude": 10.0062431, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5257886400", + "name": "Lohm\u00fchlenstra\u00dfe", + "latitude": 53.5565393, + "longitude": 10.0188852, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5257886401", + "name": "G\u00e4nsemarkt (Oper)", + "latitude": 53.5556593, + "longitude": 9.9860402, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5257886402", + "name": "Baumwall (Elbphilharmonie)", + "latitude": 53.5442142, + "longitude": 9.9816291, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5257905676", + "name": "Christuskirche", + "latitude": 53.5695526, + "longitude": 9.962444, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5284961125", + "name": "Berlin Ostkreuz", + "latitude": 52.503028, + "longitude": 13.4686799, + "code": "BOKR", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5284961126", + "name": "Ostkreuz (Ringbahn)", + "latitude": 52.5029812, + "longitude": 13.4691195, + "code": "BOK", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5315601264", + "name": "Berlin-Mahlsdorf", + "latitude": 52.5118952, + "longitude": 13.6107967, + "code": "BMHL", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5316085165", + "name": "Berlin Ostkreuz", + "latitude": 52.5034063, + "longitude": 13.469934, + "code": "7", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5316085166", + "name": "Ostkreuz", + "latitude": 52.5037034, + "longitude": 13.4679271, + "code": "BOKS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5320311289", + "name": "S Friedrichstra\u00dfe", + "latitude": 52.520768, + "longitude": 13.3866879, + "code": "BFSTT", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5527648759", + "name": "Sengelmannstra\u00dfe (City Nord)", + "latitude": 53.6095171, + "longitude": 10.0218825, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5656833096", + "name": "Stra\u00dfburger Stra\u00dfe", + "latitude": 53.5820205, + "longitude": 10.0678807, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5718454109", + "name": "Alt-Tegel", + "latitude": 52.5894565, + "longitude": 13.2837514, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "5745901383", + "name": "Gr\u00f6benzell", + "latitude": 48.1953548, + "longitude": 11.3732569, + "code": "MGRZ", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6025928112", + "name": "M\u00fcnchen Hauptbahnhof", + "latitude": 48.1400555, + "longitude": 11.5531687, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6112727174", + "name": "Eidelstedt Zentrum", + "latitude": 53.6103343, + "longitude": 9.9014513, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6112727175", + "name": "Eidelstedt Zentrum", + "latitude": 53.6103442, + "longitude": 9.9013885, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6127606967", + "name": "Warschauer Stra\u00dfe", + "latitude": 52.5065998, + "longitude": 13.4498985, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6132735787", + "name": "Warschauer Stra\u00dfe", + "latitude": 52.5064825, + "longitude": 13.449778, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6233764950", + "name": "Ahrensburg West", + "latitude": 53.6646389, + "longitude": 10.219403, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6284717662", + "name": "Rathaus", + "latitude": 53.550371, + "longitude": 9.9940526, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6313068760", + "name": "Bargteheide", + "latitude": 53.7288827, + "longitude": 10.269717, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6771290002", + "name": "Hamburg-Bergedorf S\u00fcd", + "latitude": 53.4830962, + "longitude": 10.2127358, + "code": "ABDS", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6771569982", + "name": "Blumberg-Rehhahn", + "latitude": 52.5967808, + "longitude": 13.5922934, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790724134", + "name": "Flughafen BER", + "latitude": 52.3648022, + "longitude": 13.5125169, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790724135", + "name": "Flughafen BER", + "latitude": 52.3649307, + "longitude": 13.5124397, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790724136", + "name": "Flughafen BER", + "latitude": 52.3638359, + "longitude": 13.5075572, + "code": "3", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790724137", + "name": "Flughafen BER", + "latitude": 52.3639705, + "longitude": 13.507464, + "code": "4", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790749072", + "name": "Flughafen BER", + "latitude": 52.3646918, + "longitude": 13.5095956, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6790749073", + "name": "Flughafen BER", + "latitude": 52.3645333, + "longitude": 13.50971, + "code": "5", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6900614289", + "name": "Sternschanze (Messe)", + "latitude": 53.5644032, + "longitude": 9.9692184, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6900614290", + "name": "St. Pauli", + "latitude": 53.5507957, + "longitude": 9.9700752, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "6946321451", + "name": "Innsbrucker Platz", + "latitude": 52.478168, + "longitude": 13.3406589, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7103322725", + "name": "S\u00fcdkreuz (Nord-S\u00fcd)", + "latitude": 52.476214, + "longitude": 13.3651375, + "code": "BSKV", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7110179725", + "name": "Schildow", + "latitude": 52.6371579, + "longitude": 13.3727086, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590477122", + "name": "Eichgestell", + "latitude": 52.4597611, + "longitude": 13.552883, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590477149", + "name": "Betriebswerk", + "latitude": 52.4646569, + "longitude": 13.538218, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590477151", + "name": "Stadion", + "latitude": 52.4610929, + "longitude": 13.5428573, + "code": "Hfb", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590477180", + "name": "Badesee", + "latitude": 52.4664864, + "longitude": 13.5484166, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590477183", + "name": "Parkb\u00fchne", + "latitude": 52.4643313, + "longitude": 13.5466629, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7590482488", + "name": "Hauptbahnhof", + "latitude": 52.4579993, + "longitude": 13.5433115, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7867704094", + "name": "Haus Natur und Umwelt", + "latitude": 52.464726, + "longitude": 13.5410655, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7896839337", + "name": "Friedrichsfelde Ost", + "latitude": 52.514036, + "longitude": 13.5209515, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7966418195", + "name": "Wa\u00dfmannsdorf", + "latitude": 52.3684398, + "longitude": 13.4635452, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "7966418196", + "name": "Wa\u00dfmannsdorf", + "latitude": 52.3681248, + "longitude": 13.4633254, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "10870377979", + "name": "Lichtenrade", + "latitude": 52.3868303, + "longitude": 13.3964093, + "code": "1", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "10870377980", + "name": "Lichtenrade", + "latitude": 52.386832, + "longitude": 13.3965935, + "code": "2", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11128843047", + "name": "Schnelsen S\u00fcd", + "latitude": 53.6238251, + "longitude": 9.9058711, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11891045337", + "name": "Wuhlheide Parkeisenbahn", + "latitude": 52.4683699, + "longitude": 13.5540438, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11990766114", + "name": "B\u00f6rnsen", + "latitude": 53.469056, + "longitude": 10.2772652, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11990766139", + "name": "B\u00f6rnsen", + "latitude": 53.4690321, + "longitude": 10.277253, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "11990766140", + "name": "Escheburg", + "latitude": 53.4621048, + "longitude": 10.3140565, + "code": null, + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "12148418281", + "name": "Sch\u00f6neweide", + "latitude": 52.4554498, + "longitude": 13.5092403, + "code": "6", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "12662711367", + "name": "M\u00fcnchen S\u00fcd", + "latitude": 48.1213525, + "longitude": 11.5542926, + "code": "25", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "12714301221", + "name": "Erkner", + "latitude": 52.428857, + "longitude": 13.7513992, + "code": "34", + "elevation_m": null, + "is_active": true + }, + { + "osm_id": "13038171956", + "name": "Sch\u00f6nefeld (bei Berlin)", + "latitude": 52.391434, + "longitude": 13.5126842, + "code": "BFHS", + "elevation_m": null, + "is_active": true + } + ] +} \ No newline at end of file diff --git a/data/osm_tracks.json b/data/osm_tracks.json new file mode 100644 index 0000000..bb07026 --- /dev/null +++ b/data/osm_tracks.json @@ -0,0 +1,527625 @@ +{ + "metadata": { + "endpoint": "https://overpass-api.de/api/interpreter", + "region": "all", + "filters": { + "railway": [ + "rail", + "light_rail", + "subway", + "tram", + "narrow_gauge", + "disused", + "construction" + ] + }, + "regions": [ + { + "name": "berlin_metropolitan", + "north": 52.6755, + "south": 52.3381, + "east": 13.7611, + "west": 13.0884, + "description": "Berlin and surrounding rapid transit network" + }, + { + "name": "hamburg_metropolitan", + "north": 53.7447, + "south": 53.395, + "east": 10.3253, + "west": 9.727, + "description": "Hamburg S-Bahn and harbor region" + }, + { + "name": "munich_metropolitan", + "north": 48.2485, + "south": 47.996, + "east": 11.7229, + "west": 11.36, + "description": "Munich S-Bahn core and airport corridor" + } + ], + "raw_count": 204020, + "track_count": 8995 + }, + "tracks": [ + { + "osmId": "2588600", + "name": null, + "lengthMeters": 866.8452816494835, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4737818, + 9.8597715 + ], + [ + 53.4737202, + 9.8614236 + ], + [ + 53.4736622, + 9.8629778 + ], + [ + 53.4735945, + 9.8643051 + ], + [ + 53.47358, + 9.8646767 + ], + [ + 53.4734586, + 9.8677863 + ], + [ + 53.4733943, + 9.8688913 + ], + [ + 53.4732332, + 9.8716592 + ], + [ + 53.4731765, + 9.8728283 + ] + ] + }, + { + "osmId": "2703995", + "name": "Hafenbahn", + "lengthMeters": 742.469719762545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4723069, + 9.9035357 + ], + [ + 53.4723433, + 9.9025537 + ], + [ + 53.4723445, + 9.9025224 + ], + [ + 53.4723547, + 9.9023208 + ], + [ + 53.4723715, + 9.9020951 + ], + [ + 53.472392, + 9.9018895 + ], + [ + 53.4724229, + 9.9016522 + ], + [ + 53.4725023, + 9.901164 + ], + [ + 53.4726354, + 9.9006701 + ], + [ + 53.4727327, + 9.9003963 + ], + [ + 53.4729523, + 9.8998822 + ], + [ + 53.4731249, + 9.8995662 + ], + [ + 53.473392, + 9.8991678 + ], + [ + 53.4736071, + 9.8989235 + ], + [ + 53.4739299, + 9.898633 + ], + [ + 53.4742487, + 9.8984321 + ], + [ + 53.4745551, + 9.8982768 + ], + [ + 53.4748874, + 9.8981388 + ], + [ + 53.4753731, + 9.8979774 + ], + [ + 53.4758865, + 9.8978536 + ], + [ + 53.4762364, + 9.8978015 + ], + [ + 53.4765336, + 9.8977899 + ], + [ + 53.4769844, + 9.8978887 + ] + ] + }, + { + "osmId": "4006727", + "name": null, + "lengthMeters": 284.4515488389436, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1186413, + 11.5957153 + ], + [ + 48.1188765, + 11.5957727 + ], + [ + 48.1190932, + 11.5958257 + ], + [ + 48.1194569, + 11.5959078 + ], + [ + 48.1197442, + 11.5959748 + ], + [ + 48.1200142, + 11.5960342 + ], + [ + 48.1202233, + 11.5960847 + ], + [ + 48.1205982, + 11.5961837 + ], + [ + 48.1207904, + 11.5962503 + ], + [ + 48.1211548, + 11.5964066 + ] + ] + }, + { + "osmId": "4075102", + "name": null, + "lengthMeters": 250.3519768030402, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1206231, + 11.426073 + ], + [ + 48.1205129, + 11.4259958 + ], + [ + 48.1204016, + 11.4259203 + ], + [ + 48.1200925, + 11.4257166 + ], + [ + 48.1198842, + 11.4255838 + ], + [ + 48.1197789, + 11.425516 + ], + [ + 48.1197052, + 11.4254685 + ], + [ + 48.119663, + 11.4254413 + ], + [ + 48.1191415, + 11.4251463 + ], + [ + 48.1191372, + 11.4251439 + ], + [ + 48.1190983, + 11.4251219 + ], + [ + 48.1186177, + 11.4248567 + ], + [ + 48.118535, + 11.4248163 + ] + ] + }, + { + "osmId": "4088335", + "name": null, + "lengthMeters": 225.0205309478751, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1353757, + 11.6241315 + ], + [ + 48.1353148, + 11.6233518 + ], + [ + 48.1352596, + 11.6225043 + ], + [ + 48.135215, + 11.6218552 + ], + [ + 48.1351491, + 11.6211186 + ] + ] + }, + { + "osmId": "4090258", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 452.2070141443951, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0194561, + 11.5835852 + ], + [ + 48.0198797, + 11.5833864 + ], + [ + 48.0199506, + 11.5833532 + ], + [ + 48.0199618, + 11.5833479 + ], + [ + 48.0202257, + 11.583223 + ], + [ + 48.020747, + 11.5829762 + ], + [ + 48.0210134, + 11.5828507 + ], + [ + 48.0215978, + 11.5825754 + ], + [ + 48.0218108, + 11.5824699 + ], + [ + 48.0219735, + 11.5823894 + ], + [ + 48.0226286, + 11.5820882 + ], + [ + 48.0228919, + 11.5819625 + ], + [ + 48.0232519, + 11.5817926 + ], + [ + 48.0232942, + 11.5817716 + ], + [ + 48.0233336, + 11.5817521 + ] + ] + }, + { + "osmId": "4307725", + "name": null, + "lengthMeters": 843.0732119399204, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0284425, + 11.5853571 + ], + [ + 48.0285163, + 11.5854382 + ], + [ + 48.0291142, + 11.5861176 + ], + [ + 48.0297769, + 11.5868606 + ], + [ + 48.0301103, + 11.5872377 + ], + [ + 48.0305604, + 11.5877467 + ], + [ + 48.0311234, + 11.58838 + ], + [ + 48.0327927, + 11.5902769 + ], + [ + 48.0332456, + 11.5907917 + ], + [ + 48.0336873, + 11.5912936 + ], + [ + 48.0343974, + 11.5920786 + ], + [ + 48.0344947, + 11.5921862 + ] + ] + }, + { + "osmId": "4307729", + "name": null, + "lengthMeters": 470.44031797834134, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0546174, + 11.6108132 + ], + [ + 48.0557722, + 11.6113576 + ], + [ + 48.0559686, + 11.6114411 + ], + [ + 48.0563071, + 11.6115789 + ], + [ + 48.0565631, + 11.6116718 + ], + [ + 48.0568194, + 11.6117529 + ], + [ + 48.0571352, + 11.6118351 + ], + [ + 48.0573464, + 11.6118901 + ], + [ + 48.0577744, + 11.6119723 + ], + [ + 48.058065, + 11.6120155 + ], + [ + 48.0584095, + 11.6120443 + ], + [ + 48.0587451, + 11.6120723 + ] + ] + }, + { + "osmId": "4307731", + "name": null, + "lengthMeters": 947.4269219917173, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.046527, + 11.6057497 + ], + [ + 48.0470543, + 11.6063476 + ], + [ + 48.0472265, + 11.6065307 + ], + [ + 48.0474925, + 11.6068135 + ], + [ + 48.0479838, + 11.6072723 + ], + [ + 48.0482339, + 11.607484 + ], + [ + 48.0484923, + 11.6076939 + ], + [ + 48.0488695, + 11.6079642 + ], + [ + 48.0489534, + 11.6080244 + ], + [ + 48.0491653, + 11.6081561 + ], + [ + 48.0494665, + 11.6083432 + ], + [ + 48.0500639, + 11.6086561 + ], + [ + 48.0506699, + 11.6089467 + ], + [ + 48.0508362, + 11.6090249 + ], + [ + 48.0511072, + 11.6091524 + ], + [ + 48.0514846, + 11.6093343 + ], + [ + 48.0521146, + 11.6096299 + ], + [ + 48.0530296, + 11.6100592 + ], + [ + 48.0533534, + 11.6102125 + ], + [ + 48.0540795, + 11.6105561 + ], + [ + 48.0543169, + 11.6106685 + ] + ] + }, + { + "osmId": "4307733", + "name": null, + "lengthMeters": 706.8295821705618, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0412827, + 11.5998477 + ], + [ + 48.0414777, + 11.6000676 + ], + [ + 48.0417443, + 11.6003683 + ], + [ + 48.0417863, + 11.6004157 + ], + [ + 48.0422706, + 11.6009619 + ], + [ + 48.0432882, + 11.6021114 + ], + [ + 48.0447118, + 11.6037184 + ], + [ + 48.045716, + 11.604852 + ], + [ + 48.0458028, + 11.6049478 + ], + [ + 48.0463618, + 11.6055648 + ] + ] + }, + { + "osmId": "4307734", + "name": null, + "lengthMeters": 83.95498838512752, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0406786, + 11.5991703 + ], + [ + 48.0412827, + 11.5998477 + ] + ] + }, + { + "osmId": "4315430", + "name": "Berliner Stadtbahn", + "lengthMeters": 233.0217876390237, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5227794, + 13.3631869 + ], + [ + 52.5230465, + 13.3636981 + ], + [ + 52.5232741, + 13.3641019 + ], + [ + 52.523419, + 13.3643298 + ], + [ + 52.5236105, + 13.3646344 + ], + [ + 52.523807, + 13.3649536 + ], + [ + 52.5239038, + 13.3651233 + ], + [ + 52.5240247, + 13.3653514 + ], + [ + 52.5241049, + 13.3655088 + ], + [ + 52.5242031, + 13.3657099 + ] + ] + }, + { + "osmId": "4318932", + "name": null, + "lengthMeters": 431.33809590161917, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1034283, + 11.5996344 + ], + [ + 48.1049686, + 11.598941 + ], + [ + 48.1056351, + 11.5986417 + ], + [ + 48.1059875, + 11.5984845 + ], + [ + 48.1060576, + 11.5984532 + ], + [ + 48.1062024, + 11.5983886 + ], + [ + 48.1066017, + 11.5982117 + ], + [ + 48.107145, + 11.5979711 + ] + ] + }, + { + "osmId": "4318975", + "name": null, + "lengthMeters": 253.75285473837084, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0915123, + 11.6415473 + ], + [ + 48.0913356, + 11.6418552 + ], + [ + 48.0911401, + 11.6421941 + ], + [ + 48.0908962, + 11.642564 + ], + [ + 48.090646, + 11.6429116 + ], + [ + 48.0904241, + 11.6431922 + ], + [ + 48.0901966, + 11.6434556 + ], + [ + 48.0899147, + 11.6437813 + ], + [ + 48.0898441, + 11.6438628 + ] + ] + }, + { + "osmId": "4340712", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 2551.1743288019807, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0571418, + 11.3642275 + ], + [ + 48.0568383, + 11.364108 + ], + [ + 48.0564664, + 11.3639716 + ], + [ + 48.0535449, + 11.3628876 + ], + [ + 48.0506397, + 11.3618227 + ], + [ + 48.0478435, + 11.3607931 + ], + [ + 48.0459234, + 11.3600951 + ], + [ + 48.0455857, + 11.3599807 + ], + [ + 48.0452457, + 11.3598769 + ], + [ + 48.0448608, + 11.3597561 + ], + [ + 48.0444806, + 11.3596394 + ], + [ + 48.0437208, + 11.3594119 + ], + [ + 48.0429151, + 11.3591673 + ], + [ + 48.0421136, + 11.3589232 + ], + [ + 48.0409291, + 11.3585612 + ], + [ + 48.0381411, + 11.3577181 + ], + [ + 48.0368652, + 11.3573327 + ], + [ + 48.0355715, + 11.3569308 + ], + [ + 48.0347721, + 11.3566336 + ] + ] + }, + { + "osmId": "4357803", + "name": null, + "lengthMeters": 195.46572550774937, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1270685, + 11.5432694 + ], + [ + 48.1267963, + 11.5438345 + ], + [ + 48.1267933, + 11.5438406 + ], + [ + 48.1267335, + 11.5439606 + ], + [ + 48.1264572, + 11.5445145 + ], + [ + 48.1264387, + 11.5445518 + ], + [ + 48.1261944, + 11.5450534 + ], + [ + 48.1260292, + 11.5453933 + ] + ] + }, + { + "osmId": "4357804", + "name": null, + "lengthMeters": 1158.841617971848, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188511, + 11.5777653 + ], + [ + 48.1191798, + 11.5789894 + ], + [ + 48.1191944, + 11.5790446 + ], + [ + 48.1192724, + 11.5793574 + ], + [ + 48.1193872, + 11.5797945 + ], + [ + 48.1195264, + 11.5804157 + ], + [ + 48.1196286, + 11.5809513 + ], + [ + 48.1199082, + 11.5825986 + ], + [ + 48.1200689, + 11.5835478 + ], + [ + 48.1202062, + 11.5843736 + ], + [ + 48.1202889, + 11.5848963 + ], + [ + 48.1209892, + 11.5889049 + ], + [ + 48.1211093, + 11.5896197 + ], + [ + 48.1214002, + 11.5913437 + ], + [ + 48.1214619, + 11.5917144 + ], + [ + 48.1216409, + 11.5927901 + ] + ] + }, + { + "osmId": "4359673", + "name": null, + "lengthMeters": 632.4546591708134, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4395655, + 13.2266113 + ], + [ + 52.4397728, + 13.2261077 + ], + [ + 52.4399717, + 13.2256405 + ], + [ + 52.4401387, + 13.2252121 + ], + [ + 52.4402954, + 13.2247732 + ], + [ + 52.4404072, + 13.2244246 + ], + [ + 52.4405012, + 13.2240665 + ], + [ + 52.4406034, + 13.2236543 + ], + [ + 52.4406879, + 13.2232507 + ], + [ + 52.4407645, + 13.2227748 + ], + [ + 52.4408058, + 13.2224599 + ], + [ + 52.4408264, + 13.2223034 + ], + [ + 52.4408631, + 13.2218791 + ], + [ + 52.4408872, + 13.2214469 + ], + [ + 52.4409074, + 13.2208316 + ], + [ + 52.4409015, + 13.2202493 + ], + [ + 52.4408893, + 13.2199813 + ], + [ + 52.4408742, + 13.2197062 + ], + [ + 52.4408537, + 13.2194257 + ], + [ + 52.4408285, + 13.2191361 + ], + [ + 52.440791, + 13.2187867 + ], + [ + 52.4407497, + 13.2184579 + ], + [ + 52.4407057, + 13.2181543 + ], + [ + 52.4406554, + 13.2178427 + ] + ] + }, + { + "osmId": "4364671", + "name": null, + "lengthMeters": 107.75480327138254, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4337907, + 13.1937463 + ], + [ + 52.4336425, + 13.1936584 + ], + [ + 52.4334993, + 13.1935781 + ], + [ + 52.4333481, + 13.1935022 + ], + [ + 52.4331946, + 13.1934302 + ], + [ + 52.4330643, + 13.1933736 + ], + [ + 52.4329659, + 13.1933332 + ], + [ + 52.4328624, + 13.1932947 + ] + ] + }, + { + "osmId": "4364674", + "name": null, + "lengthMeters": 1054.64049974465, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690856, + 13.2374061 + ], + [ + 52.4688864, + 13.2371507 + ], + [ + 52.4678182, + 13.2358011 + ], + [ + 52.4670931, + 13.2348849 + ], + [ + 52.4664135, + 13.2340283 + ], + [ + 52.4662129, + 13.2337716 + ], + [ + 52.4646197, + 13.2317578 + ], + [ + 52.4635964, + 13.2304617 + ], + [ + 52.4629183, + 13.2296073 + ], + [ + 52.4626529, + 13.229272 + ], + [ + 52.4622398, + 13.2287502 + ], + [ + 52.4620675, + 13.2285322 + ], + [ + 52.4615721, + 13.2279052 + ] + ] + }, + { + "osmId": "4381161", + "name": "Berliner Stadtbahn", + "lengthMeters": 88.5206380603181, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5138057, + 13.3362523 + ], + [ + 52.513874, + 13.3362877 + ], + [ + 52.5140077, + 13.336357 + ], + [ + 52.514015, + 13.3363608 + ], + [ + 52.5142085, + 13.3364598 + ], + [ + 52.5145102, + 13.3366139 + ], + [ + 52.5145656, + 13.3366422 + ] + ] + }, + { + "osmId": "4389036", + "name": null, + "lengthMeters": 268.98767553175145, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1479006, + 11.4427604 + ], + [ + 48.1478211, + 11.4427011 + ], + [ + 48.1476713, + 11.4425921 + ], + [ + 48.1475528, + 11.4425066 + ], + [ + 48.1473923, + 11.4423909 + ], + [ + 48.1472216, + 11.4422722 + ], + [ + 48.1466636, + 11.4418744 + ], + [ + 48.1464067, + 11.4416796 + ], + [ + 48.1462807, + 11.441582 + ], + [ + 48.1461382, + 11.4414636 + ], + [ + 48.1459319, + 11.4412775 + ], + [ + 48.1457503, + 11.4411062 + ] + ] + }, + { + "osmId": "4389041", + "name": null, + "lengthMeters": 78.54234019307685, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1370591, + 11.3972218 + ], + [ + 48.1373509, + 11.3981857 + ] + ] + }, + { + "osmId": "4389117", + "name": "Hafenbahn", + "lengthMeters": 818.6723151546606, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4772764, + 9.8979762 + ], + [ + 53.4775167, + 9.8980527 + ], + [ + 53.4776521, + 9.8980964 + ], + [ + 53.4781359, + 9.8982572 + ], + [ + 53.4785097, + 9.898383 + ], + [ + 53.4787458, + 9.8984594 + ], + [ + 53.4788214, + 9.8984839 + ], + [ + 53.4796322, + 9.8987564 + ], + [ + 53.4816416, + 9.8994299 + ], + [ + 53.4821448, + 9.8995987 + ], + [ + 53.4821548, + 9.8996021 + ], + [ + 53.4829702, + 9.8999373 + ], + [ + 53.4835327, + 9.9002065 + ], + [ + 53.4839509, + 9.9004259 + ], + [ + 53.4844493, + 9.9007118 + ] + ] + }, + { + "osmId": "4389135", + "name": "Hafenbahn", + "lengthMeters": 1042.86569340443, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.48457, + 9.9007813 + ], + [ + 53.4873909, + 9.9024487 + ], + [ + 53.4874149, + 9.9024629 + ], + [ + 53.4893274, + 9.9035856 + ], + [ + 53.4898349, + 9.9038883 + ], + [ + 53.4902236, + 9.9041201 + ], + [ + 53.4905539, + 9.9043171 + ], + [ + 53.4913303, + 9.9047807 + ], + [ + 53.4916952, + 9.9049952 + ], + [ + 53.4917348, + 9.9050185 + ], + [ + 53.4919957, + 9.905172 + ], + [ + 53.4924944, + 9.9054714 + ], + [ + 53.4928773, + 9.9056925 + ], + [ + 53.4928948, + 9.9057028 + ], + [ + 53.4934174, + 9.9060114 + ] + ] + }, + { + "osmId": "4399353", + "name": null, + "lengthMeters": 315.90645651881783, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1330045, + 11.3867728 + ], + [ + 48.1332029, + 11.3872229 + ], + [ + 48.1334144, + 11.3876944 + ], + [ + 48.1337396, + 11.3884221 + ], + [ + 48.1340649, + 11.3891555 + ], + [ + 48.1342235, + 11.3895062 + ], + [ + 48.1343178, + 11.3897209 + ], + [ + 48.134339, + 11.3897693 + ], + [ + 48.1345791, + 11.390316 + ] + ] + }, + { + "osmId": "4402992", + "name": "U3", + "lengthMeters": 766.6973840243696, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4445163, + 13.2431672 + ], + [ + 52.445764, + 13.2452105 + ], + [ + 52.4467682, + 13.2466734 + ], + [ + 52.4475999, + 13.2479915 + ], + [ + 52.4480455, + 13.2487931 + ], + [ + 52.4483946, + 13.2494971 + ], + [ + 52.4487836, + 13.2502845 + ], + [ + 52.4490658, + 13.2509037 + ], + [ + 52.4492478, + 13.2513544 + ] + ] + }, + { + "osmId": "4403753", + "name": null, + "lengthMeters": 700.4366154133745, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4978306, + 13.2830188 + ], + [ + 52.4978772, + 13.2831715 + ], + [ + 52.4979124, + 13.2833245 + ], + [ + 52.4979387, + 13.2834452 + ], + [ + 52.4979655, + 13.2835681 + ], + [ + 52.4980067, + 13.2838048 + ], + [ + 52.4980416, + 13.284056 + ], + [ + 52.4980667, + 13.2842963 + ], + [ + 52.4980833, + 13.2845377 + ], + [ + 52.4980943, + 13.2848263 + ], + [ + 52.4980929, + 13.2851156 + ], + [ + 52.4980803, + 13.2853931 + ], + [ + 52.4980588, + 13.285679 + ], + [ + 52.4980457, + 13.2857825 + ], + [ + 52.4980085, + 13.2860491 + ], + [ + 52.4979744, + 13.2862525 + ], + [ + 52.4979329, + 13.2864546 + ], + [ + 52.4978777, + 13.2866932 + ], + [ + 52.4978452, + 13.2868235 + ], + [ + 52.4978083, + 13.2869503 + ], + [ + 52.4977712, + 13.2870781 + ], + [ + 52.4977498, + 13.2871426 + ], + [ + 52.4977284, + 13.287207 + ], + [ + 52.4976071, + 13.2875367 + ], + [ + 52.497563, + 13.2876434 + ], + [ + 52.4975175, + 13.2877459 + ], + [ + 52.4974236, + 13.2879463 + ], + [ + 52.4973458, + 13.2880946 + ], + [ + 52.4972654, + 13.2882407 + ], + [ + 52.4970913, + 13.2885231 + ], + [ + 52.4969012, + 13.2888008 + ], + [ + 52.4965762, + 13.2892685 + ], + [ + 52.4959484, + 13.2901739 + ], + [ + 52.4955711, + 13.2907181 + ], + [ + 52.4953845, + 13.2909973 + ], + [ + 52.495122, + 13.2913579 + ] + ] + }, + { + "osmId": "4405237", + "name": null, + "lengthMeters": 515.7395758619971, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5032218, + 13.2954085 + ], + [ + 52.5030024, + 13.2941178 + ], + [ + 52.5029986, + 13.2940956 + ], + [ + 52.5029648, + 13.2938938 + ], + [ + 52.5029367, + 13.2937315 + ], + [ + 52.5028315, + 13.2931343 + ], + [ + 52.5027329, + 13.2925215 + ], + [ + 52.5026653, + 13.2920564 + ], + [ + 52.5025952, + 13.2915556 + ], + [ + 52.5025512, + 13.2912408 + ], + [ + 52.5025455, + 13.2912002 + ], + [ + 52.5024741, + 13.2906889 + ], + [ + 52.5023986, + 13.2901266 + ], + [ + 52.502338, + 13.2896927 + ], + [ + 52.502317, + 13.2895363 + ], + [ + 52.5022697, + 13.2891696 + ], + [ + 52.5022167, + 13.2888144 + ], + [ + 52.5021704, + 13.2885735 + ], + [ + 52.5021521, + 13.288478 + ], + [ + 52.5021072, + 13.2882517 + ], + [ + 52.5020618, + 13.2880352 + ] + ] + }, + { + "osmId": "4407410", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 297.7312874234175, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4221602, + 13.5594394 + ], + [ + 52.4217513, + 13.5592003 + ], + [ + 52.4217116, + 13.5591771 + ], + [ + 52.4209366, + 13.558724 + ], + [ + 52.420498, + 13.5584215 + ], + [ + 52.4203134, + 13.5582942 + ], + [ + 52.4202345, + 13.5582398 + ], + [ + 52.4196755, + 13.5578122 + ] + ] + }, + { + "osmId": "4407773", + "name": null, + "lengthMeters": 257.17350299861084, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969403, + 13.2891718 + ], + [ + 52.4966367, + 13.2895807 + ], + [ + 52.496631, + 13.2895884 + ], + [ + 52.4964916, + 13.2897788 + ], + [ + 52.4963115, + 13.2900202 + ], + [ + 52.4959537, + 13.2905054 + ], + [ + 52.495311, + 13.2913664 + ], + [ + 52.4952381, + 13.291463 + ], + [ + 52.495151, + 13.2915788 + ] + ] + }, + { + "osmId": "4407774", + "name": null, + "lengthMeters": 257.9521118395602, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775779, + 13.3326485 + ], + [ + 52.4775441, + 13.3321155 + ], + [ + 52.477536, + 13.331661 + ], + [ + 52.4775564, + 13.328843 + ] + ] + }, + { + "osmId": "4407775", + "name": null, + "lengthMeters": 155.68518240889304, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993469, + 13.2852853 + ], + [ + 52.4995468, + 13.2849763 + ], + [ + 52.4997171, + 13.2847428 + ], + [ + 52.4998748, + 13.2845422 + ], + [ + 52.5000316, + 13.2843631 + ], + [ + 52.5001194, + 13.284267 + ], + [ + 52.5002478, + 13.2841379 + ], + [ + 52.5004719, + 13.2839302 + ] + ] + }, + { + "osmId": "4407776", + "name": "Berliner Ringbahn", + "lengthMeters": 341.05532941926543, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061624, + 13.282431 + ], + [ + 52.5064129, + 13.2825085 + ], + [ + 52.5067308, + 13.2826388 + ], + [ + 52.5072309, + 13.2829078 + ], + [ + 52.5074148, + 13.2830247 + ], + [ + 52.5078137, + 13.2833132 + ], + [ + 52.5082063, + 13.2836105 + ], + [ + 52.5085964, + 13.2839168 + ], + [ + 52.5090099, + 13.2842507 + ] + ] + }, + { + "osmId": "4407777", + "name": null, + "lengthMeters": 203.50528098482712, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5041603, + 13.2820992 + ], + [ + 52.5046526, + 13.282106 + ], + [ + 52.5047976, + 13.282117 + ], + [ + 52.5052333, + 13.282186 + ], + [ + 52.5054694, + 13.282244 + ], + [ + 52.505979, + 13.2823797 + ] + ] + }, + { + "osmId": "4411180", + "name": null, + "lengthMeters": 759.3796965775266, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1885863, + 11.5395715 + ], + [ + 48.1888731, + 11.5417375 + ], + [ + 48.1890115, + 11.542707 + ], + [ + 48.1890416, + 11.5429227 + ], + [ + 48.1892268, + 11.5441289 + ], + [ + 48.1892833, + 11.5445022 + ], + [ + 48.1893429, + 11.5448955 + ], + [ + 48.1894466, + 11.5456526 + ], + [ + 48.1896116, + 11.5468575 + ], + [ + 48.1899867, + 11.5495971 + ] + ] + }, + { + "osmId": "4411185", + "name": null, + "lengthMeters": 460.0936232231733, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1903524, + 11.5721814 + ], + [ + 48.1903258, + 11.5693713 + ], + [ + 48.1902991, + 11.5669778 + ], + [ + 48.1902925, + 11.5663895 + ], + [ + 48.1902904, + 11.5661994 + ], + [ + 48.1902879, + 11.5659755 + ] + ] + }, + { + "osmId": "4411191", + "name": null, + "lengthMeters": 155.59431079141308, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1905003, + 11.5865576 + ], + [ + 48.190503, + 11.5855038 + ], + [ + 48.1904952, + 11.5844587 + ] + ] + }, + { + "osmId": "4411192", + "name": null, + "lengthMeters": 821.8606172846363, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904879, + 11.5838111 + ], + [ + 48.1904247, + 11.5786991 + ], + [ + 48.1903583, + 11.5727405 + ], + [ + 48.1903581, + 11.5727259 + ] + ] + }, + { + "osmId": "4432838", + "name": null, + "lengthMeters": 596.8790273937974, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5949352, + 13.2850795 + ], + [ + 52.5954394, + 13.2847637 + ], + [ + 52.5956904, + 13.2845919 + ], + [ + 52.5959386, + 13.2844123 + ], + [ + 52.596342, + 13.2840968 + ], + [ + 52.5967284, + 13.2837588 + ], + [ + 52.5981449, + 13.2824734 + ], + [ + 52.5987718, + 13.2819002 + ], + [ + 52.5996193, + 13.2811253 + ], + [ + 52.5997053, + 13.2810502 + ] + ] + }, + { + "osmId": "4432862", + "name": "Kremmener Bahn", + "lengthMeters": 226.19652543014527, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5773761, + 13.3553449 + ], + [ + 52.5774821, + 13.3544055 + ], + [ + 52.5774967, + 13.3542453 + ], + [ + 52.5775157, + 13.3540044 + ], + [ + 52.5775331, + 13.3537623 + ], + [ + 52.5775677, + 13.3531879 + ], + [ + 52.5775874, + 13.352879 + ], + [ + 52.5775954, + 13.3527674 + ], + [ + 52.5776053, + 13.3526534 + ], + [ + 52.5776199, + 13.35249 + ], + [ + 52.5776306, + 13.3523771 + ], + [ + 52.5776421, + 13.3522606 + ], + [ + 52.5776666, + 13.3520336 + ] + ] + }, + { + "osmId": "4432923", + "name": null, + "lengthMeters": 216.50367951280202, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.551938, + 13.3988042 + ], + [ + 52.5521927, + 13.3987812 + ], + [ + 52.5526915, + 13.3986483 + ], + [ + 52.5527564, + 13.3986317 + ], + [ + 52.552876, + 13.398601 + ], + [ + 52.5533931, + 13.3984271 + ], + [ + 52.5536249, + 13.3983535 + ], + [ + 52.5538582, + 13.3982942 + ] + ] + }, + { + "osmId": "4434382", + "name": null, + "lengthMeters": 788.1315061314483, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4906937, + 13.2671465 + ], + [ + 52.4912939, + 13.2686 + ], + [ + 52.4914924, + 13.2690413 + ], + [ + 52.4915946, + 13.2692644 + ], + [ + 52.491767, + 13.2696206 + ], + [ + 52.4934047, + 13.2727654 + ], + [ + 52.4938306, + 13.2736066 + ], + [ + 52.4939449, + 13.2738384 + ], + [ + 52.4940502, + 13.2740806 + ], + [ + 52.4941581, + 13.2743619 + ], + [ + 52.4942595, + 13.2746276 + ], + [ + 52.4943525, + 13.2748927 + ], + [ + 52.4945606, + 13.2755171 + ], + [ + 52.4948846, + 13.2764913 + ] + ] + }, + { + "osmId": "4434429", + "name": null, + "lengthMeters": 117.98135528745203, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5047593, + 13.3279077 + ], + [ + 52.5047663, + 13.3279573 + ], + [ + 52.5047902, + 13.328126 + ], + [ + 52.5048296, + 13.3283361 + ], + [ + 52.5048935, + 13.3286328 + ], + [ + 52.504953, + 13.3288819 + ], + [ + 52.5050176, + 13.3291159 + ], + [ + 52.5050829, + 13.3293159 + ], + [ + 52.5051558, + 13.3295157 + ] + ] + }, + { + "osmId": "4434431", + "name": null, + "lengthMeters": 1413.5758132463286, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5019608, + 13.2655519 + ], + [ + 52.501971, + 13.2655482 + ], + [ + 52.5023372, + 13.2654135 + ], + [ + 52.5031742, + 13.2650817 + ], + [ + 52.5033945, + 13.2649943 + ], + [ + 52.5043443, + 13.2646231 + ], + [ + 52.5046693, + 13.2644812 + ], + [ + 52.5049435, + 13.2643404 + ], + [ + 52.505055, + 13.264283 + ], + [ + 52.5054022, + 13.2640574 + ], + [ + 52.5056418, + 13.2638822 + ], + [ + 52.5058677, + 13.2636848 + ], + [ + 52.5060676, + 13.2634923 + ], + [ + 52.5062632, + 13.2632741 + ], + [ + 52.5063522, + 13.263173 + ], + [ + 52.5064412, + 13.2630644 + ], + [ + 52.5066126, + 13.2628396 + ], + [ + 52.506868, + 13.2624547 + ], + [ + 52.5070803, + 13.262102 + ], + [ + 52.5072501, + 13.2617734 + ], + [ + 52.5074587, + 13.2613246 + ], + [ + 52.5075695, + 13.2610747 + ], + [ + 52.5078779, + 13.260298 + ], + [ + 52.5082042, + 13.2594832 + ], + [ + 52.5083158, + 13.2592104 + ], + [ + 52.5088047, + 13.2581415 + ], + [ + 52.5088942, + 13.2579699 + ], + [ + 52.5090383, + 13.2577068 + ], + [ + 52.5092947, + 13.2572823 + ], + [ + 52.5095685, + 13.2568911 + ], + [ + 52.5098254, + 13.2565713 + ], + [ + 52.5102098, + 13.2561582 + ], + [ + 52.5104122, + 13.2559691 + ], + [ + 52.5106481, + 13.2557653 + ], + [ + 52.5110578, + 13.2554783 + ], + [ + 52.5115492, + 13.2552154 + ], + [ + 52.5119867, + 13.2550317 + ], + [ + 52.5122932, + 13.2549282 + ], + [ + 52.5123151, + 13.2549208 + ] + ] + }, + { + "osmId": "4434511", + "name": "Berliner Ringbahn", + "lengthMeters": 1340.0186942286346, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127124, + 13.2858427 + ], + [ + 52.5127681, + 13.2858381 + ], + [ + 52.5131101, + 13.2858099 + ], + [ + 52.5135009, + 13.2857392 + ], + [ + 52.5139168, + 13.2856333 + ], + [ + 52.5143569, + 13.2855058 + ], + [ + 52.5146662, + 13.2853936 + ], + [ + 52.5148062, + 13.2853428 + ], + [ + 52.5152908, + 13.2851752 + ], + [ + 52.5157225, + 13.2850247 + ], + [ + 52.5160374, + 13.2849113 + ], + [ + 52.5161124, + 13.2848854 + ], + [ + 52.5165794, + 13.2847241 + ], + [ + 52.517019, + 13.284561 + ], + [ + 52.5174676, + 13.2843725 + ], + [ + 52.5179236, + 13.2841551 + ], + [ + 52.5182926, + 13.2839877 + ], + [ + 52.5183156, + 13.2839771 + ], + [ + 52.5188544, + 13.2837212 + ], + [ + 52.5192828, + 13.2835445 + ], + [ + 52.5196571, + 13.2834214 + ], + [ + 52.5197533, + 13.2833897 + ], + [ + 52.5202338, + 13.2832647 + ], + [ + 52.5207601, + 13.2831789 + ], + [ + 52.5208631, + 13.2831625 + ], + [ + 52.5214116, + 13.2830704 + ], + [ + 52.521929, + 13.2829779 + ], + [ + 52.522024, + 13.2829582 + ], + [ + 52.5229335, + 13.282809 + ], + [ + 52.5232221, + 13.2827641 + ], + [ + 52.5234094, + 13.2827352 + ], + [ + 52.5237307, + 13.2827051 + ], + [ + 52.5241168, + 13.2826864 + ], + [ + 52.5245718, + 13.2826814 + ] + ] + }, + { + "osmId": "4439735", + "name": null, + "lengthMeters": 419.25063044774026, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4458528, + 13.3012389 + ], + [ + 52.44554, + 13.3003421 + ], + [ + 52.4453867, + 13.2998889 + ], + [ + 52.4449546, + 13.2985074 + ], + [ + 52.4442632, + 13.2962601 + ], + [ + 52.4441081, + 13.2957566 + ] + ] + }, + { + "osmId": "4439736", + "name": "Wannseebahn", + "lengthMeters": 351.0832826629198, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4531795, + 13.3191666 + ], + [ + 52.453061, + 13.3189963 + ], + [ + 52.4527769, + 13.3185862 + ], + [ + 52.4523745, + 13.3179714 + ], + [ + 52.4519931, + 13.3173481 + ], + [ + 52.4517195, + 13.3168826 + ], + [ + 52.4515251, + 13.3165391 + ], + [ + 52.4514983, + 13.3164883 + ], + [ + 52.4511402, + 13.3157782 + ], + [ + 52.4509898, + 13.3154487 + ] + ] + }, + { + "osmId": "4440139", + "name": null, + "lengthMeters": 190.6824267971568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4002651, + 13.3883401 + ], + [ + 52.4001218, + 13.3884173 + ], + [ + 52.3998717, + 13.3885519 + ], + [ + 52.3997123, + 13.3886397 + ], + [ + 52.3995434, + 13.3887417 + ], + [ + 52.3994999, + 13.3887682 + ], + [ + 52.3991672, + 13.3889709 + ], + [ + 52.3990474, + 13.3890439 + ], + [ + 52.3989085, + 13.389136 + ], + [ + 52.3986789, + 13.3892884 + ], + [ + 52.3986549, + 13.3893043 + ] + ] + }, + { + "osmId": "4440336", + "name": null, + "lengthMeters": 432.8431967572346, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.523532, + 13.3705331 + ], + [ + 52.5248455, + 13.369613 + ], + [ + 52.5260111, + 13.3687959 + ], + [ + 52.5263109, + 13.3685867 + ], + [ + 52.5271134, + 13.3680262 + ] + ] + }, + { + "osmId": "4440358", + "name": null, + "lengthMeters": 1093.3150442671724, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4982831, + 13.3729256 + ], + [ + 52.4985706, + 13.3728931 + ], + [ + 52.4991783, + 13.3728244 + ], + [ + 52.4997602, + 13.3728119 + ], + [ + 52.5000387, + 13.372826 + ], + [ + 52.5003167, + 13.3728574 + ], + [ + 52.5006499, + 13.3729176 + ], + [ + 52.5009829, + 13.3730042 + ], + [ + 52.5012517, + 13.373085 + ], + [ + 52.5018823, + 13.3733381 + ], + [ + 52.5027673, + 13.3737228 + ], + [ + 52.503355, + 13.3739812 + ], + [ + 52.5039388, + 13.3742673 + ], + [ + 52.5051809, + 13.3749839 + ], + [ + 52.5057999, + 13.3753454 + ], + [ + 52.5064337, + 13.375667 + ], + [ + 52.5070748, + 13.3758945 + ], + [ + 52.507397, + 13.3759741 + ], + [ + 52.5077195, + 13.3760358 + ], + [ + 52.5078439, + 13.376054 + ] + ] + }, + { + "osmId": "4440364", + "name": null, + "lengthMeters": 632.5455280597726, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5346055, + 13.3604076 + ], + [ + 52.5350495, + 13.359929 + ], + [ + 52.5353373, + 13.3596786 + ], + [ + 52.5356138, + 13.3594871 + ], + [ + 52.5358055, + 13.359369 + ], + [ + 52.5359602, + 13.3592894 + ], + [ + 52.536177, + 13.359197 + ], + [ + 52.5363538, + 13.3591393 + ], + [ + 52.5365105, + 13.3591013 + ], + [ + 52.5366538, + 13.3590742 + ], + [ + 52.536749, + 13.3590613 + ], + [ + 52.536892, + 13.3590512 + ], + [ + 52.5371949, + 13.3590543 + ], + [ + 52.537404, + 13.3590789 + ], + [ + 52.5375986, + 13.3591168 + ], + [ + 52.5377515, + 13.3591736 + ], + [ + 52.5378987, + 13.3592283 + ], + [ + 52.5381906, + 13.3593709 + ], + [ + 52.538421, + 13.3595125 + ], + [ + 52.5386044, + 13.3596571 + ], + [ + 52.5388317, + 13.3598544 + ], + [ + 52.5389233, + 13.3599485 + ], + [ + 52.5390365, + 13.3600716 + ], + [ + 52.5391795, + 13.3602378 + ], + [ + 52.5393623, + 13.360468 + ], + [ + 52.5395326, + 13.3607109 + ], + [ + 52.5396425, + 13.3608878 + ], + [ + 52.5397488, + 13.3610748 + ], + [ + 52.5397546, + 13.3610852 + ] + ] + }, + { + "osmId": "4444472", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 1381.2679356128185, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377959, + 13.1766835 + ], + [ + 52.5378071, + 13.1766182 + ], + [ + 52.5378378, + 13.1764281 + ], + [ + 52.5380043, + 13.1753683 + ], + [ + 52.5381291, + 13.1745813 + ], + [ + 52.5382774, + 13.1736454 + ], + [ + 52.5386348, + 13.17139 + ], + [ + 52.538674, + 13.1711467 + ], + [ + 52.5387994, + 13.1701792 + ], + [ + 52.5388552, + 13.1696683 + ], + [ + 52.538903, + 13.1690847 + ], + [ + 52.5389595, + 13.1681296 + ], + [ + 52.5389704, + 13.1675475 + ], + [ + 52.5389635, + 13.1668531 + ], + [ + 52.5389495, + 13.1663435 + ], + [ + 52.5389125, + 13.1656376 + ], + [ + 52.5388616, + 13.1649895 + ], + [ + 52.5387989, + 13.1644308 + ], + [ + 52.5387326, + 13.1639673 + ], + [ + 52.5386606, + 13.1634698 + ], + [ + 52.5385937, + 13.1631111 + ], + [ + 52.5385032, + 13.1626673 + ], + [ + 52.5383726, + 13.1620997 + ], + [ + 52.5382146, + 13.1614574 + ], + [ + 52.5377226, + 13.1595672 + ], + [ + 52.5376775, + 13.1593913 + ], + [ + 52.5376199, + 13.1591664 + ], + [ + 52.5375551, + 13.1588999 + ], + [ + 52.5375024, + 13.1586784 + ], + [ + 52.5374246, + 13.1583292 + ], + [ + 52.5373521, + 13.1579771 + ], + [ + 52.5372819, + 13.1575945 + ], + [ + 52.5372202, + 13.1572099 + ], + [ + 52.5371868, + 13.1569761 + ] + ] + }, + { + "osmId": "4448448", + "name": null, + "lengthMeters": 183.2748493580086, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.39898, + 13.1428314 + ], + [ + 52.3988537, + 13.142666 + ], + [ + 52.3987281, + 13.1424984 + ], + [ + 52.3984796, + 13.1421588 + ], + [ + 52.3981115, + 13.1416319 + ], + [ + 52.397824, + 13.1412017 + ], + [ + 52.3977967, + 13.1411601 + ], + [ + 52.397734, + 13.1410643 + ] + ] + }, + { + "osmId": "4449242", + "name": null, + "lengthMeters": 165.92987110193621, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4798484, + 13.352427 + ], + [ + 52.4797154, + 13.3522402 + ], + [ + 52.4796473, + 13.3521431 + ], + [ + 52.4794761, + 13.3519156 + ], + [ + 52.4792684, + 13.3516472 + ], + [ + 52.4789576, + 13.3512735 + ], + [ + 52.4786862, + 13.3509692 + ], + [ + 52.4786628, + 13.3509422 + ] + ] + }, + { + "osmId": "4449244", + "name": "Stammbahn", + "lengthMeters": 280.58686575284196, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.483462, + 13.357454 + ], + [ + 52.4837767, + 13.357812 + ], + [ + 52.4840055, + 13.358043 + ], + [ + 52.4842971, + 13.3583374 + ], + [ + 52.4844496, + 13.35851 + ], + [ + 52.4855219, + 13.3598417 + ] + ] + }, + { + "osmId": "4453031", + "name": null, + "lengthMeters": 159.9982060780987, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5337365, + 13.2020574 + ], + [ + 52.5337953, + 13.2018637 + ], + [ + 52.5340504, + 13.2010224 + ], + [ + 52.5343523, + 13.19992 + ] + ] + }, + { + "osmId": "4463219", + "name": null, + "lengthMeters": 347.8033839985004, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.452986, + 13.3192656 + ], + [ + 52.4526504, + 13.3187802 + ], + [ + 52.4522635, + 13.3181538 + ], + [ + 52.4518965, + 13.3174912 + ], + [ + 52.4513884, + 13.3164982 + ], + [ + 52.4509022, + 13.3154534 + ] + ] + }, + { + "osmId": "4463513", + "name": null, + "lengthMeters": 153.26509165942795, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.431237, + 13.2589848 + ], + [ + 52.4311962, + 13.2588156 + ], + [ + 52.4311121, + 13.2584674 + ], + [ + 52.4309282, + 13.257755 + ], + [ + 52.430844, + 13.2574384 + ], + [ + 52.4307016, + 13.2569019 + ] + ] + }, + { + "osmId": "4463514", + "name": null, + "lengthMeters": 523.320714144346, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4335968, + 13.2406074 + ], + [ + 52.4339778, + 13.2397084 + ], + [ + 52.4354379, + 13.2362329 + ], + [ + 52.4358034, + 13.2354082 + ], + [ + 52.4363387, + 13.2343379 + ] + ] + }, + { + "osmId": "4463529", + "name": "Wannseebahn", + "lengthMeters": 395.7036819110738, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4562182, + 13.3233207 + ], + [ + 52.4561435, + 13.3232098 + ], + [ + 52.4559888, + 13.3229755 + ], + [ + 52.4558824, + 13.3228266 + ], + [ + 52.4555137, + 13.3223569 + ], + [ + 52.4552839, + 13.3220701 + ], + [ + 52.4550524, + 13.3217761 + ], + [ + 52.4548974, + 13.321575 + ], + [ + 52.4547621, + 13.3213906 + ], + [ + 52.4545793, + 13.321141 + ], + [ + 52.4543367, + 13.3208161 + ], + [ + 52.4534825, + 13.3195898 + ] + ] + }, + { + "osmId": "4463533", + "name": "Wannseebahn", + "lengthMeters": 214.12714876259253, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4578945, + 13.3255558 + ], + [ + 52.4571362, + 13.3246109 + ], + [ + 52.4568865, + 13.3242832 + ], + [ + 52.4566274, + 13.3239278 + ], + [ + 52.4563928, + 13.32358 + ] + ] + }, + { + "osmId": "4469435", + "name": null, + "lengthMeters": 224.28626829553264, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4290905, + 13.1924814 + ], + [ + 52.4289223, + 13.1924283 + ], + [ + 52.4288561, + 13.192407 + ], + [ + 52.4286658, + 13.1923391 + ], + [ + 52.428472, + 13.1922645 + ], + [ + 52.4282725, + 13.192177 + ], + [ + 52.4280558, + 13.1920639 + ], + [ + 52.4278529, + 13.1919444 + ], + [ + 52.4277028, + 13.1918434 + ], + [ + 52.4275605, + 13.1917388 + ], + [ + 52.4274617, + 13.1916638 + ], + [ + 52.427373, + 13.1915886 + ], + [ + 52.4271902, + 13.1914256 + ] + ] + }, + { + "osmId": "4469442", + "name": null, + "lengthMeters": 1043.0005362107095, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3945458, + 13.1286934 + ], + [ + 52.3948201, + 13.131206 + ], + [ + 52.3949243, + 13.1324741 + ], + [ + 52.3949954, + 13.133099 + ], + [ + 52.3950771, + 13.1336883 + ], + [ + 52.3951675, + 13.1341819 + ], + [ + 52.3952543, + 13.1345814 + ], + [ + 52.3953508, + 13.1350095 + ], + [ + 52.3954545, + 13.1353988 + ], + [ + 52.3955841, + 13.1358318 + ], + [ + 52.395737, + 13.1362906 + ], + [ + 52.3959103, + 13.1367498 + ], + [ + 52.3960727, + 13.1371485 + ], + [ + 52.3963907, + 13.1378472 + ], + [ + 52.3967431, + 13.1385065 + ], + [ + 52.3972641, + 13.1393012 + ], + [ + 52.3989957, + 13.141418 + ] + ] + }, + { + "osmId": "4469445", + "name": null, + "lengthMeters": 292.00493931774236, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4345671, + 13.1983956 + ], + [ + 52.4344419, + 13.1981474 + ], + [ + 52.4342882, + 13.197843 + ], + [ + 52.434125, + 13.1975322 + ], + [ + 52.4339082, + 13.1971416 + ], + [ + 52.4336838, + 13.1967477 + ], + [ + 52.4334737, + 13.196391 + ], + [ + 52.4332617, + 13.1960409 + ], + [ + 52.4331523, + 13.1958639 + ], + [ + 52.4330457, + 13.1956936 + ], + [ + 52.4329213, + 13.1954974 + ], + [ + 52.4328281, + 13.1953528 + ], + [ + 52.4327687, + 13.1952617 + ] + ] + }, + { + "osmId": "4469448", + "name": null, + "lengthMeters": 77.70636687641552, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4297695, + 13.1918305 + ], + [ + 52.4291892, + 13.1911919 + ] + ] + }, + { + "osmId": "4469631", + "name": null, + "lengthMeters": 145.4233791881677, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.397734, + 13.1410643 + ], + [ + 52.3973087, + 13.1403869 + ], + [ + 52.3968106, + 13.1395468 + ] + ] + }, + { + "osmId": "4471108", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 303.227273476248, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1284219, + 11.5374829 + ], + [ + 48.127679, + 11.5377023 + ], + [ + 48.12735, + 11.5378029 + ], + [ + 48.1270196, + 11.5378918 + ], + [ + 48.1267654, + 11.537959 + ], + [ + 48.126499, + 11.5380119 + ], + [ + 48.1261234, + 11.5380596 + ], + [ + 48.1259203, + 11.5380597 + ], + [ + 48.1257289, + 11.5380556 + ] + ] + }, + { + "osmId": "4471109", + "name": null, + "lengthMeters": 329.01008378310183, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1286636, + 11.5395427 + ], + [ + 48.1284788, + 11.540056 + ], + [ + 48.128313, + 11.5404942 + ], + [ + 48.1280876, + 11.5410842 + ], + [ + 48.127861, + 11.5416039 + ], + [ + 48.1275682, + 11.542234 + ], + [ + 48.1271364, + 11.5431286 + ], + [ + 48.1270685, + 11.5432694 + ] + ] + }, + { + "osmId": "4471817", + "name": "Berliner Stadtbahn", + "lengthMeters": 217.22344009366, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5223894, + 13.4004676 + ], + [ + 52.5223949, + 13.4006632 + ], + [ + 52.522401, + 13.4008209 + ], + [ + 52.5224056, + 13.4009144 + ], + [ + 52.5224067, + 13.4009365 + ], + [ + 52.5224195, + 13.4011105 + ], + [ + 52.5224435, + 13.4013522 + ], + [ + 52.5224555, + 13.4014447 + ], + [ + 52.5224759, + 13.4015843 + ], + [ + 52.5224901, + 13.4016815 + ], + [ + 52.5225181, + 13.4018445 + ], + [ + 52.522548, + 13.4020103 + ], + [ + 52.5226166, + 13.4023469 + ], + [ + 52.5226884, + 13.402662 + ], + [ + 52.5227894, + 13.4030594 + ], + [ + 52.5228536, + 13.4032885 + ], + [ + 52.5228754, + 13.4033701 + ], + [ + 52.5229188, + 13.4035319 + ] + ] + }, + { + "osmId": "4471819", + "name": "Berliner Stadtbahn", + "lengthMeters": 96.38270841034054, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520113, + 13.3886257 + ], + [ + 52.5200847, + 13.3889366 + ], + [ + 52.5200757, + 13.3890987 + ], + [ + 52.5200738, + 13.3893466 + ], + [ + 52.5200833, + 13.3897495 + ], + [ + 52.5200985, + 13.3900447 + ] + ] + }, + { + "osmId": "4471821", + "name": "Berliner Stadtbahn", + "lengthMeters": 138.6609679756878, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205753, + 13.3861365 + ], + [ + 52.5204714, + 13.3865613 + ], + [ + 52.5203721, + 13.387042 + ], + [ + 52.5203431, + 13.3871988 + ], + [ + 52.5202798, + 13.3875685 + ], + [ + 52.5202345, + 13.3878549 + ], + [ + 52.5202003, + 13.3880717 + ], + [ + 52.5201977, + 13.3880872 + ] + ] + }, + { + "osmId": "4471823", + "name": "Berliner Stadtbahn", + "lengthMeters": 284.62222687564787, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5213851, + 13.3807686 + ], + [ + 52.5213907, + 13.3811345 + ], + [ + 52.5214088, + 13.3816753 + ], + [ + 52.5214127, + 13.3820159 + ], + [ + 52.5214121, + 13.3821862 + ], + [ + 52.5214045, + 13.382394 + ], + [ + 52.5213921, + 13.3825981 + ], + [ + 52.5213653, + 13.3828484 + ], + [ + 52.5213296, + 13.3830946 + ], + [ + 52.5212982, + 13.3832696 + ], + [ + 52.5212909, + 13.3833103 + ], + [ + 52.5212428, + 13.3835392 + ], + [ + 52.5212154, + 13.3836526 + ], + [ + 52.5211352, + 13.3839644 + ], + [ + 52.5210226, + 13.3844076 + ], + [ + 52.520911, + 13.3848292 + ] + ] + }, + { + "osmId": "4471824", + "name": "Berliner Stadtbahn", + "lengthMeters": 230.69453093867602, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5221792, + 13.3777176 + ], + [ + 52.5220997, + 13.3778479 + ], + [ + 52.5220291, + 13.3779759 + ], + [ + 52.5219593, + 13.3781129 + ], + [ + 52.5218784, + 13.3782846 + ], + [ + 52.5218091, + 13.3784481 + ], + [ + 52.5217574, + 13.3785825 + ], + [ + 52.5217161, + 13.378697 + ], + [ + 52.5216576, + 13.3788774 + ], + [ + 52.5216134, + 13.3790297 + ], + [ + 52.5215679, + 13.3792105 + ], + [ + 52.5215197, + 13.3794196 + ], + [ + 52.521482, + 13.3796304 + ], + [ + 52.5214437, + 13.3798763 + ], + [ + 52.5214138, + 13.3801356 + ], + [ + 52.521401, + 13.3802946 + ], + [ + 52.5213953, + 13.3803907 + ], + [ + 52.5213911, + 13.3804605 + ], + [ + 52.5213851, + 13.3807686 + ] + ] + }, + { + "osmId": "4471971", + "name": null, + "lengthMeters": 663.8879579710765, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5359128, + 13.4482934 + ], + [ + 52.536051, + 13.4481579 + ], + [ + 52.53637, + 13.4478107 + ], + [ + 52.536489, + 13.447662 + ], + [ + 52.5366056, + 13.4475067 + ], + [ + 52.5367397, + 13.4473118 + ], + [ + 52.5368686, + 13.4471085 + ], + [ + 52.5370358, + 13.4468095 + ], + [ + 52.5371961, + 13.4464981 + ], + [ + 52.5374451, + 13.4459877 + ], + [ + 52.5376844, + 13.4454941 + ], + [ + 52.5377703, + 13.4453174 + ], + [ + 52.5379022, + 13.445029 + ], + [ + 52.5380364, + 13.4447102 + ], + [ + 52.538169, + 13.4443698 + ], + [ + 52.538524, + 13.4434059 + ], + [ + 52.5388362, + 13.4425389 + ], + [ + 52.5391513, + 13.4416604 + ], + [ + 52.5392906, + 13.441291 + ], + [ + 52.5394358, + 13.4409415 + ], + [ + 52.5395627, + 13.4406587 + ] + ] + }, + { + "osmId": "4471972", + "name": null, + "lengthMeters": 78.28338767808195, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5322437, + 13.3136712 + ], + [ + 52.532093, + 13.3125407 + ] + ] + }, + { + "osmId": "4471973", + "name": null, + "lengthMeters": 421.5180698460181, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532093, + 13.3125407 + ], + [ + 52.5315079, + 13.3081925 + ], + [ + 52.5315067, + 13.3081833 + ], + [ + 52.5312779, + 13.3064549 + ] + ] + }, + { + "osmId": "4474687", + "name": null, + "lengthMeters": 342.7950198864645, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4250831, + 13.1879321 + ], + [ + 52.424842, + 13.1874222 + ], + [ + 52.4247778, + 13.1872727 + ], + [ + 52.4247413, + 13.1871832 + ], + [ + 52.424663, + 13.1869981 + ], + [ + 52.4245793, + 13.186797 + ], + [ + 52.4243833, + 13.1863172 + ], + [ + 52.4241849, + 13.1858375 + ], + [ + 52.4240462, + 13.1855068 + ], + [ + 52.4239016, + 13.1851723 + ], + [ + 52.4237344, + 13.1848038 + ], + [ + 52.4235653, + 13.1844431 + ], + [ + 52.4234189, + 13.1841382 + ], + [ + 52.4232711, + 13.1838455 + ] + ] + }, + { + "osmId": "4474689", + "name": null, + "lengthMeters": 434.6693890836608, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4291892, + 13.1911919 + ], + [ + 52.4291675, + 13.1911674 + ], + [ + 52.4287344, + 13.1906794 + ], + [ + 52.4271885, + 13.1888791 + ], + [ + 52.4259971, + 13.1874916 + ] + ] + }, + { + "osmId": "4475792", + "name": null, + "lengthMeters": 638.1945291134052, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4982648, + 13.3724946 + ], + [ + 52.4980869, + 13.3725255 + ], + [ + 52.4974514, + 13.3726402 + ], + [ + 52.4972384, + 13.3726784 + ], + [ + 52.4971105, + 13.3726931 + ], + [ + 52.4966403, + 13.3727471 + ], + [ + 52.4960951, + 13.3727695 + ], + [ + 52.4953362, + 13.3727435 + ], + [ + 52.4925351, + 13.3725766 + ] + ] + }, + { + "osmId": "4475818", + "name": null, + "lengthMeters": 210.9508199506207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5047624, + 13.3038366 + ], + [ + 52.5047667, + 13.3038562 + ], + [ + 52.504859, + 13.3042768 + ], + [ + 52.5049081, + 13.3044971 + ], + [ + 52.5049547, + 13.3047172 + ], + [ + 52.5049809, + 13.3048414 + ], + [ + 52.5050069, + 13.3049671 + ], + [ + 52.5050509, + 13.305183 + ], + [ + 52.5050577, + 13.3052165 + ], + [ + 52.5050992, + 13.3054281 + ], + [ + 52.5051007, + 13.3054364 + ], + [ + 52.5051486, + 13.3057076 + ], + [ + 52.5051706, + 13.3058354 + ], + [ + 52.5052464, + 13.306277 + ], + [ + 52.5053244, + 13.3068108 + ] + ] + }, + { + "osmId": "4475846", + "name": null, + "lengthMeters": 80.79263431458399, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4741231, + 13.3640904 + ], + [ + 52.47386, + 13.3639683 + ], + [ + 52.4734264, + 13.363752 + ] + ] + }, + { + "osmId": "4475867", + "name": null, + "lengthMeters": 563.3805007371835, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4996779, + 13.2855002 + ], + [ + 52.4998984, + 13.2862712 + ], + [ + 52.5004464, + 13.2882038 + ], + [ + 52.5006408, + 13.2888952 + ], + [ + 52.5007905, + 13.2894199 + ], + [ + 52.5008337, + 13.2895746 + ], + [ + 52.501106, + 13.2905312 + ], + [ + 52.5014017, + 13.2915757 + ], + [ + 52.5014755, + 13.291842 + ], + [ + 52.5015169, + 13.291987 + ], + [ + 52.5018176, + 13.2930445 + ] + ] + }, + { + "osmId": "4475868", + "name": null, + "lengthMeters": 86.85564740600087, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983867, + 13.2810253 + ], + [ + 52.4984624, + 13.2813043 + ], + [ + 52.49872, + 13.2821856 + ] + ] + }, + { + "osmId": "4475871", + "name": null, + "lengthMeters": 304.8150811775565, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4957354, + 13.2785502 + ], + [ + 52.4962631, + 13.2796422 + ], + [ + 52.4966714, + 13.280482 + ], + [ + 52.4967997, + 13.2807459 + ], + [ + 52.4970288, + 13.2811715 + ], + [ + 52.4972002, + 13.2814397 + ], + [ + 52.4973304, + 13.2816114 + ], + [ + 52.4974647, + 13.2817745 + ], + [ + 52.4975251, + 13.2818387 + ], + [ + 52.4975638, + 13.2818732 + ] + ] + }, + { + "osmId": "4475872", + "name": null, + "lengthMeters": 98.51972099944777, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4975638, + 13.2818732 + ], + [ + 52.4978669, + 13.2821629 + ], + [ + 52.4981046, + 13.2823155 + ], + [ + 52.4983737, + 13.2824433 + ] + ] + }, + { + "osmId": "4475873", + "name": null, + "lengthMeters": 303.67676078619075, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4957354, + 13.2785502 + ], + [ + 52.4959237, + 13.2789705 + ], + [ + 52.4961267, + 13.2794714 + ], + [ + 52.4962199, + 13.2796921 + ], + [ + 52.4963574, + 13.2799842 + ], + [ + 52.4966594, + 13.2806094 + ], + [ + 52.496789, + 13.2808777 + ], + [ + 52.4969886, + 13.2812339 + ], + [ + 52.4972464, + 13.2816829 + ], + [ + 52.497255, + 13.2816985 + ], + [ + 52.4973486, + 13.281868 + ], + [ + 52.497441, + 13.2820444 + ] + ] + }, + { + "osmId": "4475874", + "name": null, + "lengthMeters": 79.09323882146754, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.497441, + 13.2820444 + ], + [ + 52.4976038, + 13.2823875 + ], + [ + 52.4977054, + 13.2826505 + ], + [ + 52.4977838, + 13.2828735 + ], + [ + 52.4978306, + 13.2830188 + ] + ] + }, + { + "osmId": "4477987", + "name": null, + "lengthMeters": 549.3194515864299, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.425896, + 13.1873732 + ], + [ + 52.4254107, + 13.186806 + ], + [ + 52.4252007, + 13.1865579 + ], + [ + 52.4250011, + 13.1863098 + ], + [ + 52.4248959, + 13.1861692 + ], + [ + 52.4248817, + 13.1861502 + ], + [ + 52.424787, + 13.1860202 + ], + [ + 52.4247019, + 13.1858971 + ], + [ + 52.4246154, + 13.185765 + ], + [ + 52.4245335, + 13.1856324 + ], + [ + 52.4244412, + 13.1854814 + ], + [ + 52.424355, + 13.1853287 + ], + [ + 52.4242189, + 13.185075 + ], + [ + 52.4240818, + 13.1848132 + ], + [ + 52.4236407, + 13.1839479 + ], + [ + 52.4231914, + 13.1830735 + ], + [ + 52.4225827, + 13.1819195 + ], + [ + 52.4224378, + 13.1816451 + ] + ] + }, + { + "osmId": "4480586", + "name": null, + "lengthMeters": 434.73252612107615, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4979754, + 13.2750735 + ], + [ + 52.4979982, + 13.2751506 + ], + [ + 52.4983234, + 13.2762503 + ], + [ + 52.498553, + 13.2770463 + ], + [ + 52.4988208, + 13.2780005 + ], + [ + 52.4989803, + 13.2784897 + ], + [ + 52.4994034, + 13.2797417 + ], + [ + 52.499734, + 13.2808066 + ] + ] + }, + { + "osmId": "4480588", + "name": null, + "lengthMeters": 1372.460526615649, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4857676, + 13.2570449 + ], + [ + 52.4854858, + 13.2566962 + ], + [ + 52.4849593, + 13.2560798 + ], + [ + 52.4843562, + 13.2553632 + ], + [ + 52.4839394, + 13.2548555 + ], + [ + 52.4834187, + 13.2542217 + ], + [ + 52.4825756, + 13.2531955 + ], + [ + 52.4821444, + 13.2526718 + ], + [ + 52.4805918, + 13.2507854 + ], + [ + 52.4804251, + 13.2505824 + ], + [ + 52.4797062, + 13.2497071 + ], + [ + 52.4793306, + 13.2492651 + ], + [ + 52.4789386, + 13.2488479 + ], + [ + 52.478523, + 13.2484454 + ], + [ + 52.4775541, + 13.2475069 + ], + [ + 52.4772093, + 13.2471757 + ], + [ + 52.4768284, + 13.2467973 + ], + [ + 52.4766608, + 13.2466233 + ], + [ + 52.4764576, + 13.2463989 + ], + [ + 52.4761989, + 13.2460953 + ], + [ + 52.4756627, + 13.2454371 + ] + ] + }, + { + "osmId": "4480602", + "name": null, + "lengthMeters": 319.0032022921084, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4856233, + 13.2573584 + ], + [ + 52.4854784, + 13.2571739 + ], + [ + 52.4853323, + 13.2569982 + ], + [ + 52.4850414, + 13.2566898 + ], + [ + 52.4849745, + 13.2566258 + ], + [ + 52.484824, + 13.2564906 + ], + [ + 52.4846545, + 13.2563422 + ], + [ + 52.4844785, + 13.2561887 + ], + [ + 52.4840017, + 13.2557771 + ], + [ + 52.4837768, + 13.2555806 + ], + [ + 52.4835503, + 13.2553702 + ], + [ + 52.4833552, + 13.2551871 + ], + [ + 52.483139, + 13.2550181 + ] + ] + }, + { + "osmId": "4484074", + "name": null, + "lengthMeters": 144.56539916738646, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5299757, + 13.2963888 + ], + [ + 52.5299115, + 13.2960568 + ], + [ + 52.5298535, + 13.2957247 + ], + [ + 52.5298043, + 13.2954174 + ], + [ + 52.5297531, + 13.2950603 + ], + [ + 52.5297078, + 13.2947426 + ], + [ + 52.5296557, + 13.2943189 + ] + ] + }, + { + "osmId": "4490167", + "name": null, + "lengthMeters": 171.4863728965129, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053846, + 13.3072848 + ], + [ + 52.505432, + 13.307718 + ], + [ + 52.5054697, + 13.3081004 + ], + [ + 52.5055033, + 13.3084828 + ], + [ + 52.5055248, + 13.3087817 + ], + [ + 52.5055406, + 13.3090182 + ], + [ + 52.5055518, + 13.3092546 + ], + [ + 52.5055559, + 13.3094196 + ], + [ + 52.5055621, + 13.3097981 + ] + ] + }, + { + "osmId": "4490196", + "name": null, + "lengthMeters": 158.7272669859618, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4988612, + 13.282651 + ], + [ + 52.4991768, + 13.2837358 + ], + [ + 52.4992636, + 13.2840372 + ], + [ + 52.4994724, + 13.28477 + ] + ] + }, + { + "osmId": "4490198", + "name": null, + "lengthMeters": 398.8200127950827, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995991, + 13.2852316 + ], + [ + 52.4995942, + 13.2852401 + ], + [ + 52.4993985, + 13.2855704 + ], + [ + 52.4991622, + 13.285982 + ], + [ + 52.4990351, + 13.2862047 + ], + [ + 52.4988274, + 13.2865597 + ], + [ + 52.4987787, + 13.2866395 + ], + [ + 52.4986234, + 13.286886 + ], + [ + 52.4984198, + 13.287187 + ], + [ + 52.4982881, + 13.2873718 + ], + [ + 52.4981637, + 13.2875368 + ], + [ + 52.4980305, + 13.2877156 + ], + [ + 52.4977538, + 13.2880872 + ], + [ + 52.4975919, + 13.288307 + ], + [ + 52.4975709, + 13.2883355 + ], + [ + 52.4973362, + 13.2886503 + ], + [ + 52.4972098, + 13.2888161 + ], + [ + 52.4969403, + 13.2891718 + ] + ] + }, + { + "osmId": "4490200", + "name": null, + "lengthMeters": 181.0803668232974, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5009544, + 13.2835251 + ], + [ + 52.501013, + 13.2834779 + ], + [ + 52.5016083, + 13.2829978 + ], + [ + 52.5018387, + 13.2828316 + ], + [ + 52.5020954, + 13.2826753 + ], + [ + 52.5022674, + 13.2825866 + ], + [ + 52.5024546, + 13.2825006 + ] + ] + }, + { + "osmId": "4490213", + "name": null, + "lengthMeters": 163.59515500902526, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4976985, + 13.2752162 + ], + [ + 52.4974255, + 13.2741407 + ], + [ + 52.4972908, + 13.2736025 + ], + [ + 52.4971178, + 13.2729963 + ] + ] + }, + { + "osmId": "4490239", + "name": null, + "lengthMeters": 82.96380356777755, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505281, + 13.3159294 + ], + [ + 52.5052788, + 13.3159673 + ], + [ + 52.5052119, + 13.3171499 + ] + ] + }, + { + "osmId": "4490243", + "name": null, + "lengthMeters": 130.51386313971696, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050451, + 13.3201258 + ], + [ + 52.5050429, + 13.3201643 + ], + [ + 52.5050368, + 13.3202676 + ], + [ + 52.504937, + 13.3220459 + ] + ] + }, + { + "osmId": "4490247", + "name": null, + "lengthMeters": 126.28708375248844, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5048498, + 13.3235676 + ], + [ + 52.5047458, + 13.3254256 + ] + ] + }, + { + "osmId": "4490249", + "name": null, + "lengthMeters": 120.61535889763226, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5047264, + 13.32579 + ], + [ + 52.5047241, + 13.3258208 + ], + [ + 52.5047237, + 13.3258275 + ], + [ + 52.5047188, + 13.3259246 + ], + [ + 52.5046876, + 13.3265427 + ], + [ + 52.5046856, + 13.3268533 + ], + [ + 52.5046928, + 13.3271648 + ], + [ + 52.5047216, + 13.3275663 + ] + ] + }, + { + "osmId": "4490254", + "name": null, + "lengthMeters": 85.68692943327729, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5062634, + 13.3312109 + ], + [ + 52.5066327, + 13.3315374 + ], + [ + 52.5069247, + 13.3317955 + ], + [ + 52.506942, + 13.3318108 + ] + ] + }, + { + "osmId": "4490256", + "name": null, + "lengthMeters": 270.4951701638292, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5089774, + 13.333476 + ], + [ + 52.5091369, + 13.3336144 + ], + [ + 52.5093765, + 13.333819 + ], + [ + 52.5096265, + 13.334014 + ], + [ + 52.5096794, + 13.3340523 + ], + [ + 52.5099089, + 13.3342159 + ], + [ + 52.5100366, + 13.3343039 + ], + [ + 52.5102219, + 13.3344192 + ], + [ + 52.5109363, + 13.3347955 + ], + [ + 52.5111744, + 13.3349161 + ], + [ + 52.5111862, + 13.3349221 + ], + [ + 52.5112331, + 13.3349463 + ] + ] + }, + { + "osmId": "4490257", + "name": "Berliner Stadtbahn", + "lengthMeters": 421.1418894290901, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5187262, + 13.3407588 + ], + [ + 52.5188772, + 13.3409596 + ], + [ + 52.5190138, + 13.3411636 + ], + [ + 52.5191033, + 13.3413129 + ], + [ + 52.5191946, + 13.3414779 + ], + [ + 52.5192974, + 13.3416714 + ], + [ + 52.5193855, + 13.3418538 + ], + [ + 52.5194777, + 13.3420519 + ], + [ + 52.5195299, + 13.3421797 + ], + [ + 52.5195519, + 13.3422336 + ], + [ + 52.5196263, + 13.3424382 + ], + [ + 52.5196931, + 13.3426326 + ], + [ + 52.5196994, + 13.3426501 + ], + [ + 52.5197695, + 13.342887 + ], + [ + 52.5198343, + 13.3431308 + ], + [ + 52.5198949, + 13.3433968 + ], + [ + 52.5199539, + 13.3436886 + ], + [ + 52.5199969, + 13.3439283 + ], + [ + 52.5200364, + 13.3441896 + ], + [ + 52.5200542, + 13.3443428 + ], + [ + 52.5200641, + 13.3444483 + ], + [ + 52.5200722, + 13.3445336 + ], + [ + 52.5200865, + 13.3446927 + ], + [ + 52.5200947, + 13.3448586 + ], + [ + 52.5200991, + 13.3451281 + ], + [ + 52.5200966, + 13.3454388 + ], + [ + 52.5200678, + 13.3460365 + ], + [ + 52.5200518, + 13.3462679 + ] + ] + }, + { + "osmId": "4490324", + "name": "Berliner Stadtbahn", + "lengthMeters": 107.78220437958637, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197808, + 13.3499143 + ], + [ + 52.5196714, + 13.3514971 + ] + ] + }, + { + "osmId": "4490393", + "name": null, + "lengthMeters": 176.88340732729398, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983737, + 13.2824433 + ], + [ + 52.4985044, + 13.282501 + ], + [ + 52.4987153, + 13.2825571 + ], + [ + 52.4988491, + 13.282583 + ], + [ + 52.4989601, + 13.2825979 + ], + [ + 52.4990725, + 13.2826113 + ], + [ + 52.4993604, + 13.282633 + ], + [ + 52.4995805, + 13.2826323 + ], + [ + 52.4997227, + 13.2826176 + ], + [ + 52.4999133, + 13.2826002 + ], + [ + 52.4999545, + 13.2825956 + ] + ] + }, + { + "osmId": "4490394", + "name": null, + "lengthMeters": 80.60466228113441, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4999545, + 13.2825956 + ], + [ + 52.5006772, + 13.282503 + ] + ] + }, + { + "osmId": "4495239", + "name": null, + "lengthMeters": 168.79647115761728, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4197474, + 13.1769111 + ], + [ + 52.4199473, + 13.1772757 + ], + [ + 52.4200192, + 13.1774113 + ], + [ + 52.4200854, + 13.1775443 + ], + [ + 52.4201622, + 13.177709 + ], + [ + 52.4202399, + 13.1778861 + ], + [ + 52.4203223, + 13.1780751 + ], + [ + 52.4203887, + 13.1782294 + ], + [ + 52.4204697, + 13.1784138 + ], + [ + 52.4205713, + 13.1786253 + ], + [ + 52.4206912, + 13.1788576 + ] + ] + }, + { + "osmId": "4495782", + "name": null, + "lengthMeters": 962.2920933002939, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5250945, + 13.2454676 + ], + [ + 52.5252934, + 13.2451487 + ], + [ + 52.5255513, + 13.2447213 + ], + [ + 52.5257674, + 13.2443547 + ], + [ + 52.5259732, + 13.2439804 + ], + [ + 52.5261851, + 13.2435637 + ], + [ + 52.5262981, + 13.2433416 + ], + [ + 52.5265153, + 13.2428538 + ], + [ + 52.5266429, + 13.2425471 + ], + [ + 52.5267658, + 13.2422314 + ], + [ + 52.5268388, + 13.2420351 + ], + [ + 52.5269555, + 13.2417226 + ], + [ + 52.5270649, + 13.2413987 + ], + [ + 52.5273258, + 13.2405903 + ], + [ + 52.5276978, + 13.2393598 + ], + [ + 52.5279891, + 13.2383815 + ], + [ + 52.5281932, + 13.2376309 + ], + [ + 52.5283688, + 13.2368994 + ], + [ + 52.5284005, + 13.2367645 + ], + [ + 52.5285424, + 13.236094 + ], + [ + 52.5286378, + 13.2355562 + ], + [ + 52.5287351, + 13.234976 + ], + [ + 52.5288551, + 13.234076 + ], + [ + 52.5288641, + 13.2340081 + ], + [ + 52.5289791, + 13.2330198 + ] + ] + }, + { + "osmId": "4497137", + "name": null, + "lengthMeters": 403.8544373753866, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4374376, + 13.2318011 + ], + [ + 52.4375281, + 13.2315886 + ], + [ + 52.4380833, + 13.2300634 + ], + [ + 52.4394603, + 13.226857 + ] + ] + }, + { + "osmId": "4497139", + "name": null, + "lengthMeters": 659.9884415662348, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.439901, + 13.2141777 + ], + [ + 52.4398008, + 13.2137105 + ], + [ + 52.4395853, + 13.2126223 + ], + [ + 52.4394317, + 13.2118532 + ], + [ + 52.4393356, + 13.2113979 + ], + [ + 52.4391151, + 13.210327 + ], + [ + 52.4388764, + 13.2092683 + ], + [ + 52.4386728, + 13.2085816 + ], + [ + 52.4385574, + 13.2082382 + ], + [ + 52.4384071, + 13.2078324 + ], + [ + 52.4376097, + 13.205874 + ], + [ + 52.4374197, + 13.2054074 + ] + ] + }, + { + "osmId": "4498111", + "name": null, + "lengthMeters": 146.2037727053361, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243839, + 13.2445833 + ], + [ + 52.5245028, + 13.2444685 + ], + [ + 52.5246401, + 13.244291 + ], + [ + 52.5247162, + 13.2441786 + ], + [ + 52.5247923, + 13.2440581 + ], + [ + 52.5248774, + 13.2438982 + ], + [ + 52.5249564, + 13.2437369 + ], + [ + 52.5250377, + 13.2435321 + ], + [ + 52.5250982, + 13.2433588 + ], + [ + 52.5252174, + 13.242963 + ] + ] + }, + { + "osmId": "4500165", + "name": null, + "lengthMeters": 235.08007839824904, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4783046, + 13.3480552 + ], + [ + 52.4784719, + 13.3487472 + ], + [ + 52.4786782, + 13.3496203 + ], + [ + 52.4789306, + 13.3507098 + ], + [ + 52.4790451, + 13.3513053 + ] + ] + }, + { + "osmId": "4500168", + "name": null, + "lengthMeters": 314.4410834602335, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4797886, + 13.3555712 + ], + [ + 52.4798074, + 13.3559025 + ], + [ + 52.4798216, + 13.3561852 + ], + [ + 52.4798303, + 13.3563908 + ], + [ + 52.4798358, + 13.3565695 + ], + [ + 52.4798392, + 13.3567972 + ], + [ + 52.4798358, + 13.3570309 + ], + [ + 52.4798263, + 13.35727 + ], + [ + 52.479812, + 13.3574974 + ], + [ + 52.4797908, + 13.3577293 + ], + [ + 52.4797666, + 13.3579359 + ], + [ + 52.4797392, + 13.3581319 + ], + [ + 52.4796993, + 13.3583737 + ], + [ + 52.4796563, + 13.358601 + ], + [ + 52.4796009, + 13.3588493 + ], + [ + 52.47954, + 13.3590992 + ], + [ + 52.4794585, + 13.3594023 + ], + [ + 52.4793846, + 13.3596575 + ], + [ + 52.4792689, + 13.3600215 + ], + [ + 52.4792638, + 13.3600389 + ] + ] + }, + { + "osmId": "4515576", + "name": null, + "lengthMeters": 1005.001364864986, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5272431, + 13.2607634 + ], + [ + 52.5273414, + 13.262286 + ], + [ + 52.5274228, + 13.2635452 + ], + [ + 52.5275511, + 13.265466 + ], + [ + 52.5276962, + 13.2679426 + ], + [ + 52.5277225, + 13.2683576 + ], + [ + 52.5278639, + 13.2709517 + ], + [ + 52.5280005, + 13.2733154 + ], + [ + 52.5280264, + 13.2737831 + ], + [ + 52.5281389, + 13.2755461 + ] + ] + }, + { + "osmId": "4517399", + "name": null, + "lengthMeters": 455.33565271148274, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4758011, + 13.3476666 + ], + [ + 52.4756996, + 13.3475451 + ], + [ + 52.4755362, + 13.3473494 + ], + [ + 52.4740714, + 13.3455693 + ], + [ + 52.4726156, + 13.3437754 + ], + [ + 52.4725172, + 13.3436506 + ] + ] + }, + { + "osmId": "4525884", + "name": null, + "lengthMeters": 122.31023106568843, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4809101, + 13.353943 + ], + [ + 52.4807061, + 13.3536791 + ], + [ + 52.4801397, + 13.352852 + ], + [ + 52.4801264, + 13.3528325 + ], + [ + 52.4800788, + 13.3527612 + ] + ] + }, + { + "osmId": "4525887", + "name": "Stammbahn", + "lengthMeters": 360.30523306738326, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4760618, + 13.3483424 + ], + [ + 52.4771109, + 13.3496413 + ], + [ + 52.4781601, + 13.350943 + ], + [ + 52.4782795, + 13.3510798 + ], + [ + 52.4786792, + 13.3514721 + ] + ] + }, + { + "osmId": "4525935", + "name": null, + "lengthMeters": 463.2348669718581, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.477641, + 13.3328705 + ], + [ + 52.4777344, + 13.3341909 + ], + [ + 52.4778279, + 13.3355082 + ], + [ + 52.4778302, + 13.3355392 + ], + [ + 52.4778508, + 13.3358376 + ], + [ + 52.477996, + 13.3378749 + ], + [ + 52.4780245, + 13.3383715 + ], + [ + 52.4780353, + 13.3386915 + ], + [ + 52.4780402, + 13.3390387 + ], + [ + 52.4780399, + 13.3396738 + ] + ] + }, + { + "osmId": "4525936", + "name": null, + "lengthMeters": 186.7066827830395, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4780474, + 13.3431326 + ], + [ + 52.4780495, + 13.3437127 + ], + [ + 52.4780638, + 13.3458893 + ] + ] + }, + { + "osmId": "4525939", + "name": null, + "lengthMeters": 251.1739338515278, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4790415, + 13.3603434 + ], + [ + 52.4789356, + 13.3606587 + ], + [ + 52.4788574, + 13.3608754 + ], + [ + 52.4787704, + 13.3611111 + ], + [ + 52.4786806, + 13.3613435 + ], + [ + 52.4785663, + 13.3616183 + ], + [ + 52.4783851, + 13.3620338 + ], + [ + 52.4783248, + 13.3621665 + ], + [ + 52.4781744, + 13.3624772 + ], + [ + 52.4780926, + 13.3626319 + ], + [ + 52.4780041, + 13.3627908 + ], + [ + 52.4778914, + 13.3629789 + ], + [ + 52.4777578, + 13.3631867 + ], + [ + 52.4776873, + 13.3632876 + ] + ] + }, + { + "osmId": "4525941", + "name": null, + "lengthMeters": 131.89555806284125, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4780638, + 13.3458893 + ], + [ + 52.4780748, + 13.3461236 + ], + [ + 52.4780888, + 13.3463485 + ], + [ + 52.478114, + 13.3466093 + ], + [ + 52.478143, + 13.3468384 + ], + [ + 52.4782154, + 13.3472972 + ], + [ + 52.4783192, + 13.3477826 + ] + ] + }, + { + "osmId": "4525944", + "name": null, + "lengthMeters": 693.792413716564, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.478007, + 13.3430777 + ], + [ + 52.4780066, + 13.3427965 + ], + [ + 52.4779994, + 13.3407223 + ], + [ + 52.4779952, + 13.3395671 + ], + [ + 52.4779931, + 13.3389723 + ], + [ + 52.4779875, + 13.3386817 + ], + [ + 52.4779774, + 13.3384122 + ], + [ + 52.4779638, + 13.3381345 + ], + [ + 52.4779491, + 13.3378783 + ], + [ + 52.4779319, + 13.3376433 + ], + [ + 52.47786, + 13.3366053 + ], + [ + 52.4775948, + 13.3328699 + ] + ] + }, + { + "osmId": "4525945", + "name": null, + "lengthMeters": 192.33078082616413, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4780191, + 13.3459175 + ], + [ + 52.4780096, + 13.3441497 + ], + [ + 52.478007, + 13.3430777 + ] + ] + }, + { + "osmId": "4526024", + "name": null, + "lengthMeters": 3187.374592498408, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1596509, + 11.5477158 + ], + [ + 48.1596419, + 11.5476997 + ], + [ + 48.1596183, + 11.5476546 + ], + [ + 48.1595909, + 11.5476022 + ], + [ + 48.1595464, + 11.547519 + ], + [ + 48.1595309, + 11.5474894 + ], + [ + 48.1595291, + 11.547486 + ], + [ + 48.1594857, + 11.5474047 + ], + [ + 48.1594688, + 11.5473736 + ], + [ + 48.1594093, + 11.5472705 + ], + [ + 48.1593609, + 11.547179 + ], + [ + 48.1593243, + 11.5471109 + ], + [ + 48.1589798, + 11.54647 + ], + [ + 48.15804, + 11.5447541 + ], + [ + 48.1574679, + 11.5437166 + ], + [ + 48.1574346, + 11.5436596 + ], + [ + 48.1573576, + 11.5435055 + ], + [ + 48.1572865, + 11.5433724 + ], + [ + 48.1572182, + 11.543244 + ], + [ + 48.1564755, + 11.5418854 + ], + [ + 48.1557079, + 11.5404938 + ], + [ + 48.155584, + 11.5402561 + ], + [ + 48.1554967, + 11.5400595 + ], + [ + 48.1553934, + 11.5398125 + ], + [ + 48.1553428, + 11.5396879 + ], + [ + 48.1553271, + 11.5396494 + ], + [ + 48.1542937, + 11.5377708 + ], + [ + 48.1541845, + 11.5375732 + ], + [ + 48.154101, + 11.5374221 + ], + [ + 48.1540213, + 11.5372665 + ], + [ + 48.1538732, + 11.5369992 + ], + [ + 48.1538251, + 11.5369071 + ], + [ + 48.1538133, + 11.5368805 + ], + [ + 48.1537889, + 11.5368255 + ], + [ + 48.15377, + 11.5367693 + ], + [ + 48.1536931, + 11.5365193 + ], + [ + 48.1536644, + 11.5364159 + ], + [ + 48.1536419, + 11.5363268 + ], + [ + 48.1536378, + 11.5363107 + ], + [ + 48.153484, + 11.5355815 + ], + [ + 48.153422, + 11.5352746 + ], + [ + 48.1531116, + 11.5337572 + ], + [ + 48.1530957, + 11.5336733 + ], + [ + 48.1530906, + 11.5336231 + ], + [ + 48.1530896, + 11.5335847 + ], + [ + 48.1530918, + 11.5335413 + ], + [ + 48.1530925, + 11.5335264 + ], + [ + 48.1531014, + 11.5334727 + ], + [ + 48.1531112, + 11.5334364 + ], + [ + 48.1531207, + 11.5334065 + ], + [ + 48.1531346, + 11.5333756 + ], + [ + 48.1531876, + 11.5333261 + ], + [ + 48.1532278, + 11.5332966 + ], + [ + 48.1532873, + 11.5332668 + ], + [ + 48.1533556, + 11.5332454 + ], + [ + 48.1539616, + 11.5330852 + ], + [ + 48.1543745, + 11.5329573 + ], + [ + 48.1544874, + 11.5329242 + ], + [ + 48.1547829, + 11.532847 + ], + [ + 48.1548207, + 11.5328323 + ], + [ + 48.1549096, + 11.5327978 + ], + [ + 48.1549697, + 11.5327757 + ], + [ + 48.1549979, + 11.5327596 + ], + [ + 48.1550419, + 11.5327344 + ], + [ + 48.1551917, + 11.5326391 + ], + [ + 48.1552887, + 11.5325646 + ], + [ + 48.1554582, + 11.5324211 + ], + [ + 48.1556328, + 11.5322892 + ], + [ + 48.155816, + 11.5321604 + ], + [ + 48.1560383, + 11.5319569 + ], + [ + 48.1561222, + 11.5318657 + ], + [ + 48.1561994, + 11.5317527 + ], + [ + 48.1563568, + 11.5314702 + ], + [ + 48.1564293, + 11.531329 + ], + [ + 48.156512, + 11.5311724 + ], + [ + 48.1565537, + 11.5310936 + ], + [ + 48.156601, + 11.5310057 + ], + [ + 48.1566275, + 11.5309576 + ], + [ + 48.1566429, + 11.5309296 + ], + [ + 48.1568249, + 11.5305798 + ], + [ + 48.1568459, + 11.5305414 + ], + [ + 48.157023, + 11.5302176 + ], + [ + 48.1570945, + 11.5300889 + ], + [ + 48.1571858, + 11.5298974 + ], + [ + 48.1571992, + 11.5298464 + ], + [ + 48.1572081, + 11.5297854 + ], + [ + 48.157204, + 11.5297025 + ], + [ + 48.1572, + 11.5296495 + ], + [ + 48.1571925, + 11.5296018 + ], + [ + 48.1570401, + 11.5287736 + ], + [ + 48.1568339, + 11.5276532 + ], + [ + 48.1568145, + 11.5275597 + ], + [ + 48.1567986, + 11.5274969 + ], + [ + 48.1567708, + 11.5273842 + ], + [ + 48.1567358, + 11.5272348 + ], + [ + 48.1567168, + 11.5271297 + ], + [ + 48.1566578, + 11.5267408 + ], + [ + 48.1566483, + 11.5266759 + ], + [ + 48.1566319, + 11.5265648 + ], + [ + 48.1566207, + 11.5264873 + ], + [ + 48.1565287, + 11.5258531 + ], + [ + 48.1561291, + 11.5230967 + ], + [ + 48.1561156, + 11.5230065 + ], + [ + 48.1561025, + 11.5228932 + ], + [ + 48.156098, + 11.5228542 + ], + [ + 48.1560819, + 11.5227194 + ], + [ + 48.1560697, + 11.5225746 + ], + [ + 48.1560586, + 11.5224313 + ], + [ + 48.1560493, + 11.5223178 + ], + [ + 48.1560449, + 11.5222203 + ], + [ + 48.1560411, + 11.5221255 + ], + [ + 48.1559711, + 11.5201243 + ], + [ + 48.1559675, + 11.5200485 + ], + [ + 48.1559627, + 11.5199149 + ], + [ + 48.155958, + 11.5197826 + ], + [ + 48.1559235, + 11.5188166 + ], + [ + 48.1558912, + 11.5178095 + ], + [ + 48.1558532, + 11.5167311 + ], + [ + 48.1557788, + 11.5145515 + ], + [ + 48.155725, + 11.5130518 + ], + [ + 48.1557175, + 11.5127647 + ], + [ + 48.1557078, + 11.5124704 + ], + [ + 48.1557017, + 11.5123079 + ], + [ + 48.1556979, + 11.5122069 + ], + [ + 48.1556964, + 11.5121072 + ] + ] + }, + { + "osmId": "4526351", + "name": null, + "lengthMeters": 222.2590480848994, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4731357, + 13.3671256 + ], + [ + 52.4730401, + 13.3672419 + ], + [ + 52.4729235, + 13.3673946 + ], + [ + 52.4727632, + 13.3676158 + ], + [ + 52.4726382, + 13.3678047 + ], + [ + 52.4725328, + 13.3679728 + ], + [ + 52.4724227, + 13.3681562 + ], + [ + 52.4722532, + 13.3684654 + ], + [ + 52.4721454, + 13.3686756 + ], + [ + 52.4720474, + 13.3688852 + ], + [ + 52.471905, + 13.3692143 + ], + [ + 52.4717916, + 13.3695237 + ] + ] + }, + { + "osmId": "4534357", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 986.8289401944453, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2006843, + 11.530283 + ], + [ + 48.1986181, + 11.5271195 + ], + [ + 48.1978025, + 11.5258677 + ], + [ + 48.1972581, + 11.5250339 + ], + [ + 48.1972266, + 11.5249856 + ], + [ + 48.196945, + 11.5245544 + ], + [ + 48.1969123, + 11.5245044 + ], + [ + 48.1968825, + 11.524458 + ], + [ + 48.1968761, + 11.5244482 + ], + [ + 48.1967217, + 11.5242134 + ], + [ + 48.1965037, + 11.523893 + ], + [ + 48.1962209, + 11.5234942 + ], + [ + 48.1960313, + 11.5232362 + ], + [ + 48.1958441, + 11.5229937 + ], + [ + 48.1957644, + 11.5228945 + ], + [ + 48.1956332, + 11.5227313 + ], + [ + 48.1954164, + 11.5224789 + ], + [ + 48.1950167, + 11.5220343 + ], + [ + 48.1947667, + 11.5217563 + ], + [ + 48.1942323, + 11.5211806 + ] + ] + }, + { + "osmId": "4534358", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 298.22891832379696, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.166154, + 11.48835 + ], + [ + 48.1666451, + 11.4891511 + ], + [ + 48.1671133, + 11.4899129 + ], + [ + 48.1679714, + 11.4913073 + ] + ] + }, + { + "osmId": "4537015", + "name": null, + "lengthMeters": 144.734158409976, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5295268, + 13.294357 + ], + [ + 52.5297165, + 13.2957857 + ], + [ + 52.5298046, + 13.2964473 + ] + ] + }, + { + "osmId": "4537016", + "name": null, + "lengthMeters": 421.2629548518666, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5311567, + 13.3065018 + ], + [ + 52.531439, + 13.308601 + ], + [ + 52.531946, + 13.3124081 + ], + [ + 52.531951, + 13.3124461 + ], + [ + 52.5319702, + 13.3125843 + ] + ] + }, + { + "osmId": "4537018", + "name": null, + "lengthMeters": 659.2295255411581, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5298046, + 13.2964473 + ], + [ + 52.5299204, + 13.2973589 + ], + [ + 52.5299429, + 13.2975363 + ], + [ + 52.5299933, + 13.2979407 + ], + [ + 52.5300361, + 13.2983077 + ], + [ + 52.5301067, + 13.2988607 + ], + [ + 52.5301605, + 13.2992814 + ], + [ + 52.5302089, + 13.299639 + ], + [ + 52.5302977, + 13.3002985 + ], + [ + 52.5303269, + 13.3005177 + ], + [ + 52.5304601, + 13.3014986 + ], + [ + 52.530482, + 13.3016667 + ], + [ + 52.5305073, + 13.301844 + ], + [ + 52.5306782, + 13.3030596 + ], + [ + 52.5310556, + 13.3057434 + ], + [ + 52.5310863, + 13.3059618 + ] + ] + }, + { + "osmId": "4537020", + "name": null, + "lengthMeters": 78.2841368864393, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5319702, + 13.3125843 + ], + [ + 52.5321212, + 13.3137147 + ] + ] + }, + { + "osmId": "4537049", + "name": null, + "lengthMeters": 102.99707095247749, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5694612, + 13.3052108 + ], + [ + 52.5687834, + 13.3062495 + ] + ] + }, + { + "osmId": "4537051", + "name": null, + "lengthMeters": 83.74167761551493, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5687834, + 13.3062495 + ], + [ + 52.5682738, + 13.3071618 + ] + ] + }, + { + "osmId": "4537052", + "name": null, + "lengthMeters": 148.33003336437235, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.567854, + 13.308162 + ], + [ + 52.5677089, + 13.3085909 + ], + [ + 52.5675672, + 13.3090706 + ], + [ + 52.5674325, + 13.3095601 + ], + [ + 52.5673037, + 13.3101567 + ] + ] + }, + { + "osmId": "4538173", + "name": "Kremmener Bahn", + "lengthMeters": 161.45486282378172, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.577887, + 13.3501119 + ], + [ + 52.5779089, + 13.3499292 + ], + [ + 52.5779334, + 13.3497464 + ], + [ + 52.5779942, + 13.3493304 + ], + [ + 52.5780139, + 13.3492028 + ], + [ + 52.5780456, + 13.3489918 + ], + [ + 52.5780779, + 13.3487615 + ], + [ + 52.578112, + 13.348477 + ], + [ + 52.5781367, + 13.3482224 + ], + [ + 52.5781564, + 13.3479656 + ], + [ + 52.578168, + 13.3477704 + ] + ] + }, + { + "osmId": "4538174", + "name": "Kremmener Bahn", + "lengthMeters": 870.7041423978716, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5781886, + 13.3472648 + ], + [ + 52.5782143, + 13.3465908 + ], + [ + 52.578217, + 13.3465047 + ], + [ + 52.5782183, + 13.3464638 + ], + [ + 52.5782534, + 13.3453499 + ], + [ + 52.5782904, + 13.3433254 + ], + [ + 52.5782986, + 13.3428757 + ], + [ + 52.578301, + 13.342731 + ], + [ + 52.5783464, + 13.3400073 + ], + [ + 52.5783337, + 13.3390068 + ], + [ + 52.5783003, + 13.3378758 + ], + [ + 52.5782051, + 13.3346457 + ], + [ + 52.5781975, + 13.3343898 + ] + ] + }, + { + "osmId": "4538181", + "name": "Kremmener Bahn", + "lengthMeters": 342.90361614394163, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5767711, + 13.3606162 + ], + [ + 52.5769436, + 13.3591049 + ], + [ + 52.5773115, + 13.3559014 + ], + [ + 52.5773426, + 13.3556295 + ] + ] + }, + { + "osmId": "4539087", + "name": null, + "lengthMeters": 1335.4349179075227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1670761, + 11.5748565 + ], + [ + 48.1670224, + 11.5751087 + ], + [ + 48.1669747, + 11.5754197 + ], + [ + 48.1667482, + 11.5773195 + ], + [ + 48.1666323, + 11.578235 + ], + [ + 48.1665507, + 11.5789066 + ], + [ + 48.1662495, + 11.5811425 + ], + [ + 48.1661921, + 11.5814879 + ], + [ + 48.1656969, + 11.5836767 + ], + [ + 48.1655627, + 11.584182 + ], + [ + 48.1654206, + 11.5845828 + ], + [ + 48.1652229, + 11.5850276 + ], + [ + 48.165056, + 11.585341 + ], + [ + 48.1649126, + 11.5855635 + ], + [ + 48.164762, + 11.585765 + ], + [ + 48.1646003, + 11.585946 + ], + [ + 48.1644314, + 11.5861015 + ], + [ + 48.1642188, + 11.5862557 + ], + [ + 48.1639743, + 11.5863825 + ], + [ + 48.1636968, + 11.5864688 + ], + [ + 48.1633741, + 11.5864992 + ], + [ + 48.163136, + 11.5864823 + ], + [ + 48.1622245, + 11.5862375 + ], + [ + 48.1614999, + 11.5860613 + ], + [ + 48.1610772, + 11.5859577 + ], + [ + 48.16066, + 11.5858019 + ] + ] + }, + { + "osmId": "4539965", + "name": null, + "lengthMeters": 574.3064679297642, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5638836, + 13.3248995 + ], + [ + 52.5641697, + 13.3237969 + ], + [ + 52.5645712, + 13.3222383 + ], + [ + 52.5648069, + 13.3211824 + ], + [ + 52.5649753, + 13.3205291 + ], + [ + 52.565223, + 13.3195916 + ], + [ + 52.5653357, + 13.3191155 + ], + [ + 52.5654328, + 13.3186364 + ], + [ + 52.5655891, + 13.3178207 + ], + [ + 52.5657483, + 13.3169835 + ] + ] + }, + { + "osmId": "4540095", + "name": "Kremmener Bahn", + "lengthMeters": 977.1715270480257, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5776215, + 13.3148545 + ], + [ + 52.5775273, + 13.3117706 + ], + [ + 52.5774983, + 13.3105486 + ], + [ + 52.5774837, + 13.3100907 + ], + [ + 52.5774767, + 13.3098831 + ], + [ + 52.5774769, + 13.3096149 + ], + [ + 52.5774961, + 13.3091061 + ], + [ + 52.5775318, + 13.3086294 + ], + [ + 52.577552, + 13.3084345 + ], + [ + 52.5775833, + 13.3081667 + ], + [ + 52.5776445, + 13.3077858 + ], + [ + 52.5777208, + 13.3073852 + ], + [ + 52.5778663, + 13.306769 + ], + [ + 52.5780092, + 13.3062906 + ], + [ + 52.5787674, + 13.3040043 + ], + [ + 52.5796823, + 13.3012454 + ] + ] + }, + { + "osmId": "4543383", + "name": null, + "lengthMeters": 202.3523451907327, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4990409, + 13.2684772 + ], + [ + 52.4989565, + 13.2686856 + ], + [ + 52.4988543, + 13.2689503 + ], + [ + 52.4987556, + 13.2692374 + ], + [ + 52.4987461, + 13.2692682 + ], + [ + 52.498704, + 13.2694053 + ], + [ + 52.4986812, + 13.2694793 + ], + [ + 52.4985994, + 13.2697733 + ], + [ + 52.4985258, + 13.2700794 + ], + [ + 52.4984917, + 13.2702399 + ], + [ + 52.4984605, + 13.2703863 + ], + [ + 52.4983761, + 13.2708177 + ], + [ + 52.4983108, + 13.271197 + ] + ] + }, + { + "osmId": "4543951", + "name": null, + "lengthMeters": 173.6459032350991, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5345973, + 13.3304378 + ], + [ + 52.534537, + 13.3299458 + ], + [ + 52.5344851, + 13.3295245 + ], + [ + 52.5344393, + 13.3291751 + ], + [ + 52.5343531, + 13.3286238 + ], + [ + 52.5343212, + 13.3284182 + ], + [ + 52.5342683, + 13.328115 + ], + [ + 52.534259, + 13.3280625 + ], + [ + 52.5342382, + 13.3279406 + ] + ] + }, + { + "osmId": "4544117", + "name": null, + "lengthMeters": 523.6972524372396, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5675659, + 13.3881883 + ], + [ + 52.5677123, + 13.3879267 + ], + [ + 52.5686624, + 13.3862186 + ], + [ + 52.5692211, + 13.3852141 + ], + [ + 52.5699204, + 13.3839555 + ], + [ + 52.5705767, + 13.3827742 + ], + [ + 52.5706617, + 13.3826212 + ], + [ + 52.5707236, + 13.3825117 + ], + [ + 52.5707458, + 13.3824724 + ] + ] + }, + { + "osmId": "4553845", + "name": null, + "lengthMeters": 354.7752722711549, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51171, + 13.2247913 + ], + [ + 52.5119785, + 13.2243554 + ], + [ + 52.5123801, + 13.2237047 + ], + [ + 52.5126425, + 13.2232787 + ], + [ + 52.5127809, + 13.2230499 + ], + [ + 52.5129807, + 13.222726 + ], + [ + 52.5131956, + 13.2223798 + ], + [ + 52.5134165, + 13.2220399 + ], + [ + 52.5135596, + 13.2218349 + ], + [ + 52.5137147, + 13.2216337 + ], + [ + 52.5138805, + 13.221437 + ], + [ + 52.5140523, + 13.2212452 + ] + ] + }, + { + "osmId": "4553846", + "name": null, + "lengthMeters": 103.48496521386097, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291778, + 13.2222519 + ], + [ + 52.5293426, + 13.2220929 + ], + [ + 52.5294582, + 13.2219655 + ], + [ + 52.5295709, + 13.2218366 + ], + [ + 52.5296701, + 13.2217045 + ], + [ + 52.5297787, + 13.2215459 + ], + [ + 52.5299161, + 13.2213298 + ] + ] + }, + { + "osmId": "4553847", + "name": null, + "lengthMeters": 84.4819467222778, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5284768, + 13.2227242 + ], + [ + 52.5285774, + 13.2226718 + ], + [ + 52.5286506, + 13.2226335 + ], + [ + 52.5287351, + 13.2225891 + ], + [ + 52.528845, + 13.2225187 + ], + [ + 52.5289215, + 13.2224674 + ], + [ + 52.5289965, + 13.2224107 + ], + [ + 52.5290854, + 13.2223396 + ], + [ + 52.5291354, + 13.222294 + ], + [ + 52.5291778, + 13.2222519 + ] + ] + }, + { + "osmId": "4553976", + "name": null, + "lengthMeters": 124.5148766052946, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5332223, + 13.2036927 + ], + [ + 52.5337365, + 13.2020574 + ] + ] + }, + { + "osmId": "4569936", + "name": null, + "lengthMeters": 498.04215335167885, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5586739, + 13.3982577 + ], + [ + 52.5589202, + 13.398444 + ], + [ + 52.5591816, + 13.3986778 + ], + [ + 52.5593406, + 13.3988395 + ], + [ + 52.5595057, + 13.3990201 + ], + [ + 52.5596365, + 13.399179 + ], + [ + 52.5597568, + 13.3993359 + ], + [ + 52.5598564, + 13.3994725 + ], + [ + 52.5599828, + 13.3996559 + ], + [ + 52.5601181, + 13.3998646 + ], + [ + 52.5603438, + 13.400234 + ], + [ + 52.5608756, + 13.4011557 + ], + [ + 52.5611512, + 13.4016358 + ], + [ + 52.5611698, + 13.4016683 + ], + [ + 52.5612059, + 13.4017312 + ], + [ + 52.5613768, + 13.4020299 + ], + [ + 52.5616913, + 13.4025783 + ], + [ + 52.5619974, + 13.403111 + ] + ] + }, + { + "osmId": "4571580", + "name": null, + "lengthMeters": 247.90936961370238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5936973, + 10.0809082 + ], + [ + 53.5935883, + 10.0803649 + ], + [ + 53.5935206, + 10.079987 + ], + [ + 53.5934174, + 10.0793387 + ], + [ + 53.5933429, + 10.0789103 + ], + [ + 53.593028, + 10.0773262 + ] + ] + }, + { + "osmId": "4575438", + "name": null, + "lengthMeters": 1050.5096913072548, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4691067, + 13.2372546 + ], + [ + 52.4690635, + 13.2371999 + ], + [ + 52.4663877, + 13.2338125 + ], + [ + 52.4637162, + 13.2304352 + ], + [ + 52.4629975, + 13.2295254 + ], + [ + 52.462319, + 13.2286656 + ], + [ + 52.4616244, + 13.2277871 + ] + ] + }, + { + "osmId": "4575505", + "name": null, + "lengthMeters": 259.4005718575076, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1297505, + 11.5364502 + ], + [ + 48.129592, + 11.5368814 + ], + [ + 48.1286636, + 11.5395427 + ] + ] + }, + { + "osmId": "4585099", + "name": "Tempelhofer Kurve", + "lengthMeters": 89.59135354727158, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.471183, + 13.3726979 + ], + [ + 52.4711914, + 13.3729739 + ], + [ + 52.4712015, + 13.3731285 + ], + [ + 52.4712092, + 13.3732646 + ], + [ + 52.4712205, + 13.373433 + ], + [ + 52.4712555, + 13.3740149 + ] + ] + }, + { + "osmId": "4585100", + "name": "Tempelhofer Kurve", + "lengthMeters": 127.21076087608199, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4710974, + 13.3685183 + ], + [ + 52.4711706, + 13.3703925 + ] + ] + }, + { + "osmId": "4586338", + "name": null, + "lengthMeters": 508.74195208971804, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.453185, + 13.3566178 + ], + [ + 52.4529701, + 13.3565766 + ], + [ + 52.4527986, + 13.3565292 + ], + [ + 52.4524177, + 13.3564137 + ], + [ + 52.451898, + 13.356197 + ], + [ + 52.4516557, + 13.3560784 + ], + [ + 52.4514126, + 13.3559464 + ], + [ + 52.4511722, + 13.355807 + ], + [ + 52.4506922, + 13.3555148 + ], + [ + 52.4496991, + 13.3548896 + ], + [ + 52.4495286, + 13.3547693 + ], + [ + 52.4493561, + 13.3546317 + ], + [ + 52.4491856, + 13.3544813 + ], + [ + 52.4490256, + 13.3543418 + ], + [ + 52.4488867, + 13.3541819 + ] + ] + }, + { + "osmId": "4588806", + "name": "Siemensbahn", + "lengthMeters": 124.53714518956323, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5387896, + 13.2704077 + ], + [ + 52.5387725, + 13.2713076 + ], + [ + 52.538765, + 13.2715398 + ], + [ + 52.5387519, + 13.271779 + ], + [ + 52.5387339, + 13.2719913 + ], + [ + 52.5387052, + 13.2722409 + ] + ] + }, + { + "osmId": "4591321", + "name": null, + "lengthMeters": 107.66225391705086, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5305929, + 13.2197136 + ], + [ + 52.5306258, + 13.219584 + ], + [ + 52.5306672, + 13.2194053 + ], + [ + 52.5307128, + 13.2191621 + ], + [ + 52.5307614, + 13.2189064 + ], + [ + 52.5308035, + 13.2186276 + ], + [ + 52.530836, + 13.2183814 + ], + [ + 52.5308565, + 13.2181859 + ] + ] + }, + { + "osmId": "4592186", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 526.3058376735584, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.132773, + 11.5321468 + ], + [ + 48.1331046, + 11.5316598 + ], + [ + 48.1332805, + 11.5314015 + ], + [ + 48.1333324, + 11.5313253 + ], + [ + 48.1337586, + 11.5306912 + ], + [ + 48.134249, + 11.5299482 + ], + [ + 48.1344933, + 11.529587 + ], + [ + 48.1345892, + 11.5294353 + ], + [ + 48.1346016, + 11.5294163 + ], + [ + 48.1350104, + 11.5287978 + ], + [ + 48.1351635, + 11.5285538 + ], + [ + 48.1352386, + 11.5284478 + ], + [ + 48.1356835, + 11.5278196 + ], + [ + 48.1359187, + 11.5275326 + ], + [ + 48.1361884, + 11.5272497 + ] + ] + }, + { + "osmId": "4596888", + "name": "U6", + "lengthMeters": 406.16549011722503, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5572407, + 13.3400009 + ], + [ + 52.5577221, + 13.3390223 + ], + [ + 52.5586313, + 13.3374107 + ], + [ + 52.5588025, + 13.3371085 + ], + [ + 52.5591378, + 13.3365167 + ], + [ + 52.5592154, + 13.3363939 + ], + [ + 52.5593365, + 13.3362133 + ], + [ + 52.5595642, + 13.3358887 + ], + [ + 52.5597325, + 13.335618 + ] + ] + }, + { + "osmId": "4603315", + "name": null, + "lengthMeters": 291.02760825057015, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5350538, + 13.3833043 + ], + [ + 52.5349252, + 13.3835097 + ], + [ + 52.5337955, + 13.3852833 + ], + [ + 52.533568, + 13.3856412 + ], + [ + 52.5333325, + 13.3859805 + ], + [ + 52.533139, + 13.3862351 + ] + ] + }, + { + "osmId": "4603707", + "name": null, + "lengthMeters": 85.23674043765473, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290252, + 13.2315263 + ], + [ + 52.5290194, + 13.2315802 + ], + [ + 52.529013, + 13.2316405 + ], + [ + 52.5289011, + 13.2327697 + ] + ] + }, + { + "osmId": "4614657", + "name": null, + "lengthMeters": 405.5664683263127, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4561262, + 13.3235284 + ], + [ + 52.455268, + 13.3224686 + ], + [ + 52.4549914, + 13.3221178 + ], + [ + 52.4548319, + 13.3219056 + ], + [ + 52.4545843, + 13.3215589 + ], + [ + 52.4533039, + 13.3197416 + ] + ] + }, + { + "osmId": "4615230", + "name": null, + "lengthMeters": 803.9037124203747, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5407818, + 13.437844 + ], + [ + 52.5408347, + 13.4377015 + ], + [ + 52.540847, + 13.4376683 + ], + [ + 52.5413512, + 13.4363089 + ], + [ + 52.5418541, + 13.4349531 + ], + [ + 52.5418677, + 13.4349164 + ], + [ + 52.5419838, + 13.4346059 + ], + [ + 52.5422075, + 13.4340044 + ], + [ + 52.5424866, + 13.4332229 + ], + [ + 52.5426126, + 13.4328131 + ], + [ + 52.5426881, + 13.4325436 + ], + [ + 52.5428467, + 13.4319444 + ], + [ + 52.542985, + 13.4314147 + ], + [ + 52.5433235, + 13.4301351 + ], + [ + 52.5435113, + 13.4295114 + ], + [ + 52.5436687, + 13.4290523 + ], + [ + 52.5436725, + 13.4290417 + ], + [ + 52.5438037, + 13.4286782 + ], + [ + 52.5441059, + 13.4279057 + ], + [ + 52.5442788, + 13.4274645 + ] + ] + }, + { + "osmId": "4617306", + "name": null, + "lengthMeters": 457.6298757183212, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.457275, + 13.3560352 + ], + [ + 52.4569366, + 13.3560607 + ], + [ + 52.4567674, + 13.3560759 + ], + [ + 52.4565972, + 13.3560964 + ], + [ + 52.4563452, + 13.3561392 + ], + [ + 52.4561762, + 13.3561738 + ], + [ + 52.4558899, + 13.3562423 + ], + [ + 52.4556025, + 13.3563159 + ], + [ + 52.4551007, + 13.3564492 + ], + [ + 52.4547636, + 13.356535 + ], + [ + 52.4545947, + 13.3565698 + ], + [ + 52.4544247, + 13.3566045 + ], + [ + 52.4542972, + 13.3566245 + ], + [ + 52.4541697, + 13.3566411 + ], + [ + 52.4540431, + 13.356653 + ], + [ + 52.4539154, + 13.3566597 + ], + [ + 52.4537455, + 13.3566631 + ], + [ + 52.4535746, + 13.3566588 + ], + [ + 52.4534772, + 13.3566522 + ], + [ + 52.4533798, + 13.356643 + ], + [ + 52.453185, + 13.3566178 + ] + ] + }, + { + "osmId": "4622823", + "name": null, + "lengthMeters": 1160.0949341228038, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4660553, + 9.9615791 + ], + [ + 53.4654068, + 9.9629512 + ], + [ + 53.4650448, + 9.9637045 + ], + [ + 53.4648068, + 9.964242 + ], + [ + 53.4647148, + 9.9644502 + ], + [ + 53.4645807, + 9.9648052 + ], + [ + 53.4644856, + 9.9650939 + ], + [ + 53.4644078, + 9.9653747 + ], + [ + 53.4643329, + 9.965762 + ], + [ + 53.464269, + 9.9661262 + ], + [ + 53.4641962, + 9.9666857 + ], + [ + 53.4640778, + 9.9675621 + ], + [ + 53.4639329, + 9.9686168 + ], + [ + 53.4635787, + 9.9712372 + ], + [ + 53.4635604, + 9.9713713 + ], + [ + 53.4635436, + 9.9714652 + ], + [ + 53.4635282, + 9.9715395 + ], + [ + 53.4633457, + 9.972325 + ], + [ + 53.4633013, + 9.9724714 + ], + [ + 53.4632727, + 9.9725769 + ], + [ + 53.4632003, + 9.9728144 + ], + [ + 53.4631484, + 9.9729579 + ], + [ + 53.4630743, + 9.9731366 + ], + [ + 53.4628843, + 9.9736192 + ], + [ + 53.4626727, + 9.974082 + ], + [ + 53.462234, + 9.9750047 + ], + [ + 53.4613392, + 9.9768169 + ] + ] + }, + { + "osmId": "4622825", + "name": null, + "lengthMeters": 172.06514760040596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4761443, + 10.0003321 + ], + [ + 53.4750485, + 9.9997643 + ], + [ + 53.4746656, + 9.9995659 + ] + ] + }, + { + "osmId": "4631624", + "name": null, + "lengthMeters": 170.4574846619766, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5498158, + 13.4010994 + ], + [ + 52.549909, + 13.4008135 + ], + [ + 52.5500022, + 13.4005733 + ], + [ + 52.5501016, + 13.4003546 + ], + [ + 52.5502701, + 13.4000176 + ], + [ + 52.5504152, + 13.3997832 + ], + [ + 52.5504872, + 13.3996786 + ], + [ + 52.5505304, + 13.3996235 + ], + [ + 52.550684, + 13.3994412 + ], + [ + 52.5508452, + 13.3992835 + ] + ] + }, + { + "osmId": "4638597", + "name": null, + "lengthMeters": 138.58296341270457, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5585745, + 13.4134625 + ], + [ + 52.5590403, + 13.4133768 + ], + [ + 52.5594557, + 13.4133419 + ], + [ + 52.5598158, + 13.4132867 + ] + ] + }, + { + "osmId": "4673750", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 406.39100540030876, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1322519, + 11.5327154 + ], + [ + 48.13203, + 11.5330758 + ], + [ + 48.1317939, + 11.5335107 + ], + [ + 48.1316328, + 11.5338391 + ], + [ + 48.1315204, + 11.5340742 + ], + [ + 48.1314284, + 11.5342664 + ], + [ + 48.1310818, + 11.5349915 + ], + [ + 48.1309187, + 11.5353198 + ], + [ + 48.1307939, + 11.535549 + ], + [ + 48.1306696, + 11.5357662 + ], + [ + 48.1305223, + 11.5359979 + ], + [ + 48.1303629, + 11.5362155 + ], + [ + 48.1302699, + 11.5363295 + ], + [ + 48.1301738, + 11.5364382 + ], + [ + 48.1300425, + 11.5365783 + ], + [ + 48.1298373, + 11.5367724 + ] + ] + }, + { + "osmId": "4673759", + "name": null, + "lengthMeters": 467.4495216668509, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1321821, + 11.5326072 + ], + [ + 48.1309697, + 11.5344187 + ], + [ + 48.1305531, + 11.5350411 + ], + [ + 48.1303528, + 11.5353885 + ], + [ + 48.1301612, + 11.5357586 + ], + [ + 48.1299911, + 11.5361357 + ], + [ + 48.1298349, + 11.5365192 + ], + [ + 48.1296756, + 11.5369386 + ], + [ + 48.1295093, + 11.5374146 + ] + ] + }, + { + "osmId": "4674972", + "name": "U8", + "lengthMeters": 1273.817006750907, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5610359, + 13.3681112 + ], + [ + 52.5597973, + 13.3696742 + ], + [ + 52.5581558, + 13.3718178 + ], + [ + 52.5578871, + 13.3721637 + ], + [ + 52.5575369, + 13.3726217 + ], + [ + 52.5571054, + 13.3731835 + ], + [ + 52.5565441, + 13.3739154 + ], + [ + 52.5561113, + 13.3744004 + ], + [ + 52.5541791, + 13.3766124 + ], + [ + 52.5538927, + 13.3769867 + ], + [ + 52.5537207, + 13.3772474 + ], + [ + 52.553571, + 13.3775169 + ], + [ + 52.5534318, + 13.3777877 + ], + [ + 52.5533124, + 13.3780589 + ], + [ + 52.5531441, + 13.3785006 + ], + [ + 52.5529838, + 13.3789877 + ], + [ + 52.5525731, + 13.3804349 + ] + ] + }, + { + "osmId": "4677633", + "name": null, + "lengthMeters": 1032.1630973180588, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5357429, + 13.3414443 + ], + [ + 52.5355992, + 13.3401074 + ], + [ + 52.5353123, + 13.3377542 + ], + [ + 52.535293, + 13.3375956 + ], + [ + 52.5352891, + 13.3375639 + ], + [ + 52.5349101, + 13.3344548 + ], + [ + 52.5346989, + 13.3327481 + ], + [ + 52.53429, + 13.3294433 + ], + [ + 52.5341943, + 13.3286694 + ], + [ + 52.53405, + 13.3275796 + ], + [ + 52.5338932, + 13.3264913 + ] + ] + }, + { + "osmId": "4677634", + "name": null, + "lengthMeters": 127.42526383834692, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5365936, + 13.3498077 + ], + [ + 52.5365258, + 13.3490985 + ], + [ + 52.5364158, + 13.3479465 + ] + ] + }, + { + "osmId": "4677636", + "name": null, + "lengthMeters": 796.8012506067138, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363634, + 13.3455324 + ], + [ + 52.5364112, + 13.3459379 + ], + [ + 52.5364578, + 13.3464177 + ], + [ + 52.5365343, + 13.3473681 + ], + [ + 52.5365877, + 13.347919 + ], + [ + 52.5366481, + 13.3483838 + ], + [ + 52.5367131, + 13.3487886 + ], + [ + 52.5367535, + 13.3490156 + ], + [ + 52.5367754, + 13.3491352 + ], + [ + 52.5368453, + 13.3495501 + ], + [ + 52.5369234, + 13.3500182 + ], + [ + 52.536992, + 13.3504783 + ], + [ + 52.5370432, + 13.3509076 + ], + [ + 52.5370833, + 13.3513826 + ], + [ + 52.5371586, + 13.3522985 + ], + [ + 52.5372128, + 13.3529843 + ], + [ + 52.5372542, + 13.3535026 + ], + [ + 52.5372678, + 13.3536485 + ], + [ + 52.5372859, + 13.353819 + ], + [ + 52.5373067, + 13.3539952 + ], + [ + 52.5373494, + 13.3542958 + ], + [ + 52.5373851, + 13.3544951 + ], + [ + 52.5374257, + 13.3546946 + ], + [ + 52.5375077, + 13.3550614 + ], + [ + 52.53763, + 13.3554526 + ], + [ + 52.5377202, + 13.3557099 + ], + [ + 52.5378175, + 13.3559529 + ], + [ + 52.5378588, + 13.3560469 + ], + [ + 52.5381807, + 13.3567792 + ] + ] + }, + { + "osmId": "4677637", + "name": null, + "lengthMeters": 162.09640336150048, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381807, + 13.3567792 + ], + [ + 52.5390353, + 13.3587209 + ] + ] + }, + { + "osmId": "4677643", + "name": "Berliner Ringbahn", + "lengthMeters": 156.82615416393338, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381374, + 13.356925 + ], + [ + 52.5383681, + 13.3574527 + ], + [ + 52.5389073, + 13.3586661 + ], + [ + 52.5389648, + 13.3588028 + ] + ] + }, + { + "osmId": "4682635", + "name": "Stettiner Bahn", + "lengthMeters": 411.205358373315, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6745275, + 13.5895413 + ], + [ + 52.6742391, + 13.5887039 + ], + [ + 52.6739168, + 13.5876488 + ], + [ + 52.6734739, + 13.5859854 + ], + [ + 52.6730519, + 13.5843041 + ], + [ + 52.6729781, + 13.5840103 + ] + ] + }, + { + "osmId": "4685666", + "name": null, + "lengthMeters": 596.945891041994, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5190458, + 13.4546177 + ], + [ + 52.5192823, + 13.4554022 + ], + [ + 52.5192951, + 13.4554533 + ], + [ + 52.5193039, + 13.4555031 + ], + [ + 52.5193097, + 13.4555587 + ], + [ + 52.5193371, + 13.4559166 + ], + [ + 52.5193669, + 13.4562992 + ], + [ + 52.5194399, + 13.4572396 + ], + [ + 52.5194537, + 13.457414 + ], + [ + 52.5194851, + 13.4578401 + ], + [ + 52.5194924, + 13.4579114 + ], + [ + 52.5194948, + 13.4579283 + ], + [ + 52.5194984, + 13.4579531 + ], + [ + 52.5195067, + 13.4579955 + ], + [ + 52.5195183, + 13.4580376 + ], + [ + 52.5195323, + 13.4580787 + ], + [ + 52.5195523, + 13.458124 + ], + [ + 52.5195766, + 13.4581605 + ], + [ + 52.5195972, + 13.4581885 + ], + [ + 52.5196078, + 13.4582006 + ], + [ + 52.5196198, + 13.4582111 + ], + [ + 52.5196452, + 13.4582327 + ], + [ + 52.5196706, + 13.4582511 + ], + [ + 52.5201985, + 13.4585731 + ], + [ + 52.5203109, + 13.4586453 + ], + [ + 52.5203428, + 13.4586665 + ], + [ + 52.5203815, + 13.4587011 + ], + [ + 52.520397, + 13.4587196 + ], + [ + 52.5204103, + 13.4587427 + ], + [ + 52.5204251, + 13.4587693 + ], + [ + 52.5204398, + 13.458807 + ], + [ + 52.5204495, + 13.4588375 + ], + [ + 52.5204592, + 13.4588767 + ], + [ + 52.5204658, + 13.4589166 + ], + [ + 52.520469, + 13.4589588 + ], + [ + 52.520468, + 13.4590304 + ], + [ + 52.5204606, + 13.459102 + ], + [ + 52.5203385, + 13.459767 + ], + [ + 52.5203028, + 13.4599615 + ], + [ + 52.5202876, + 13.4600449 + ], + [ + 52.5201911, + 13.460572 + ], + [ + 52.520103, + 13.4610537 + ], + [ + 52.519896, + 13.4622055 + ] + ] + }, + { + "osmId": "4685957", + "name": null, + "lengthMeters": 104.18107968935543, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953569, + 13.4632692 + ], + [ + 52.4952597, + 13.4631169 + ], + [ + 52.4950752, + 13.4628698 + ], + [ + 52.4949067, + 13.4626611 + ], + [ + 52.4947503, + 13.4624785 + ], + [ + 52.4947265, + 13.4624526 + ], + [ + 52.4946153, + 13.4623326 + ] + ] + }, + { + "osmId": "4686020", + "name": null, + "lengthMeters": 226.84478155437327, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995902, + 13.4677552 + ], + [ + 52.4995338, + 13.4677324 + ], + [ + 52.4992835, + 13.4676312 + ], + [ + 52.4989483, + 13.4674917 + ], + [ + 52.4987079, + 13.4673828 + ], + [ + 52.498465, + 13.4672429 + ], + [ + 52.4982281, + 13.4670629 + ], + [ + 52.4981017, + 13.466954 + ], + [ + 52.4979149, + 13.4667692 + ], + [ + 52.4977982, + 13.4666425 + ], + [ + 52.4977078, + 13.4665397 + ] + ] + }, + { + "osmId": "4688761", + "name": null, + "lengthMeters": 101.71570718706889, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006459, + 13.4840669 + ], + [ + 52.5003617, + 13.484205 + ], + [ + 52.5002048, + 13.484285 + ], + [ + 52.499985, + 13.4844098 + ], + [ + 52.4997749, + 13.4845252 + ] + ] + }, + { + "osmId": "4688763", + "name": null, + "lengthMeters": 126.29600708596222, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020753, + 13.4834889 + ], + [ + 52.5009716, + 13.4839294 + ] + ] + }, + { + "osmId": "4688765", + "name": null, + "lengthMeters": 100.70720118578195, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992556, + 13.4848672 + ], + [ + 52.4984659, + 13.4855956 + ] + ] + }, + { + "osmId": "4689021", + "name": null, + "lengthMeters": 1736.3724878914613, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.481685, + 13.5246675 + ], + [ + 52.482166, + 13.5235005 + ], + [ + 52.4823093, + 13.5231644 + ], + [ + 52.4824185, + 13.5229106 + ], + [ + 52.4827345, + 13.5221909 + ], + [ + 52.4837194, + 13.5199499 + ], + [ + 52.4841061, + 13.5190796 + ], + [ + 52.4843264, + 13.5185838 + ], + [ + 52.4843825, + 13.5184575 + ], + [ + 52.4846485, + 13.5178873 + ], + [ + 52.4850463, + 13.5170348 + ], + [ + 52.4851296, + 13.5168624 + ], + [ + 52.4852465, + 13.5166221 + ], + [ + 52.4853062, + 13.5165087 + ], + [ + 52.4854549, + 13.5162258 + ], + [ + 52.4855979, + 13.5159784 + ], + [ + 52.485831, + 13.5156087 + ], + [ + 52.4862151, + 13.5150186 + ], + [ + 52.4867166, + 13.5142694 + ], + [ + 52.4869736, + 13.5138955 + ], + [ + 52.4878261, + 13.5126551 + ], + [ + 52.4878442, + 13.5126288 + ], + [ + 52.4879314, + 13.5125019 + ], + [ + 52.4880375, + 13.5123475 + ], + [ + 52.4883871, + 13.5117999 + ], + [ + 52.4885567, + 13.5115171 + ], + [ + 52.4887169, + 13.5112346 + ], + [ + 52.4887386, + 13.5111931 + ], + [ + 52.4888727, + 13.5109368 + ], + [ + 52.489022, + 13.510635 + ], + [ + 52.4891736, + 13.5103088 + ], + [ + 52.4893594, + 13.5098974 + ], + [ + 52.4902259, + 13.5079791 + ], + [ + 52.4906725, + 13.5069104 + ], + [ + 52.4906781, + 13.5068969 + ], + [ + 52.4909111, + 13.5063343 + ], + [ + 52.4910948, + 13.5058469 + ], + [ + 52.4911092, + 13.5058086 + ], + [ + 52.4912855, + 13.5053153 + ], + [ + 52.4914269, + 13.5047936 + ] + ] + }, + { + "osmId": "4689387", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 153.73964096247843, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5154309, + 13.5389267 + ], + [ + 52.5167321, + 13.5387554 + ], + [ + 52.5168091, + 13.5387453 + ] + ] + }, + { + "osmId": "4689389", + "name": null, + "lengthMeters": 715.9469533692547, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.513132, + 13.5532584 + ], + [ + 52.5131754, + 13.5525767 + ], + [ + 52.5131905, + 13.5522054 + ], + [ + 52.5132487, + 13.550606 + ], + [ + 52.5133099, + 13.5497477 + ], + [ + 52.5134041, + 13.5489105 + ], + [ + 52.5134679, + 13.5484293 + ], + [ + 52.5135417, + 13.5478722 + ], + [ + 52.5138953, + 13.5453094 + ], + [ + 52.5140496, + 13.5441787 + ], + [ + 52.5141544, + 13.5434164 + ], + [ + 52.5142358, + 13.5428584 + ] + ] + }, + { + "osmId": "4689391", + "name": null, + "lengthMeters": 1197.612781979428, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5152802, + 13.5424504 + ], + [ + 52.5152893, + 13.542351 + ], + [ + 52.5152935, + 13.5423044 + ], + [ + 52.5153072, + 13.5421524 + ], + [ + 52.5153182, + 13.5420084 + ], + [ + 52.5153317, + 13.541812 + ], + [ + 52.5153423, + 13.5416104 + ], + [ + 52.5153516, + 13.5413408 + ], + [ + 52.5153554, + 13.5410157 + ], + [ + 52.5153504, + 13.5406906 + ], + [ + 52.5153397, + 13.5404016 + ], + [ + 52.5153231, + 13.5401095 + ], + [ + 52.5152889, + 13.5397174 + ], + [ + 52.5152511, + 13.5394017 + ], + [ + 52.5152076, + 13.5390933 + ], + [ + 52.5151272, + 13.5386283 + ], + [ + 52.5150182, + 13.5381193 + ], + [ + 52.5149742, + 13.5379347 + ], + [ + 52.5148895, + 13.5375964 + ], + [ + 52.5147186, + 13.5369657 + ], + [ + 52.5145437, + 13.5363353 + ], + [ + 52.5144616, + 13.5360252 + ], + [ + 52.5143896, + 13.5357531 + ], + [ + 52.5143046, + 13.5354026 + ], + [ + 52.5142501, + 13.5351607 + ], + [ + 52.5141852, + 13.5348431 + ], + [ + 52.5141266, + 13.5345156 + ], + [ + 52.514077, + 13.5341883 + ], + [ + 52.5140303, + 13.5337957 + ], + [ + 52.5140025, + 13.5334871 + ], + [ + 52.5139805, + 13.5331704 + ], + [ + 52.5139659, + 13.5328335 + ], + [ + 52.5139609, + 13.5323618 + ], + [ + 52.5139714, + 13.5317598 + ], + [ + 52.5140293, + 13.5304743 + ], + [ + 52.5140573, + 13.5298405 + ], + [ + 52.5140789, + 13.5290625 + ], + [ + 52.5140791, + 13.5290546 + ], + [ + 52.5141026, + 13.5278953 + ], + [ + 52.5141308, + 13.5265786 + ], + [ + 52.5141373, + 13.5263271 + ], + [ + 52.5141614, + 13.5251508 + ] + ] + }, + { + "osmId": "4689400", + "name": null, + "lengthMeters": 1045.9034308710293, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255358, + 13.5370166 + ], + [ + 52.5253739, + 13.5370871 + ], + [ + 52.5252006, + 13.5371657 + ], + [ + 52.5250151, + 13.5372541 + ], + [ + 52.5248438, + 13.5373427 + ], + [ + 52.5245705, + 13.5374945 + ], + [ + 52.5245316, + 13.5375171 + ], + [ + 52.524223, + 13.5377066 + ], + [ + 52.5238749, + 13.5379383 + ], + [ + 52.5236105, + 13.5381323 + ], + [ + 52.5234101, + 13.5382889 + ], + [ + 52.5232283, + 13.5384385 + ], + [ + 52.522838, + 13.5387727 + ], + [ + 52.5225014, + 13.539057 + ], + [ + 52.5223363, + 13.5391876 + ], + [ + 52.5221453, + 13.5393329 + ], + [ + 52.5219856, + 13.539445 + ], + [ + 52.521824, + 13.5395518 + ], + [ + 52.5216865, + 13.5396258 + ], + [ + 52.5215147, + 13.5397193 + ], + [ + 52.521291, + 13.5398277 + ], + [ + 52.5210491, + 13.5399231 + ], + [ + 52.5208912, + 13.539975 + ], + [ + 52.5207413, + 13.540017 + ], + [ + 52.5206133, + 13.5400466 + ], + [ + 52.5204866, + 13.5400701 + ], + [ + 52.5203414, + 13.540092 + ], + [ + 52.5201957, + 13.540106 + ], + [ + 52.5200465, + 13.5401172 + ], + [ + 52.5199012, + 13.5401189 + ], + [ + 52.5197567, + 13.5401113 + ], + [ + 52.5196266, + 13.5401051 + ], + [ + 52.5194924, + 13.5400896 + ], + [ + 52.5193625, + 13.54007 + ], + [ + 52.5192088, + 13.540035 + ], + [ + 52.518994, + 13.5399871 + ], + [ + 52.5186754, + 13.5398754 + ], + [ + 52.5183923, + 13.539744 + ], + [ + 52.5181469, + 13.5396247 + ], + [ + 52.5178867, + 13.5394688 + ], + [ + 52.5176768, + 13.5393181 + ], + [ + 52.5174001, + 13.5391007 + ], + [ + 52.5171042, + 13.5388131 + ], + [ + 52.5167162, + 13.5383814 + ] + ] + }, + { + "osmId": "4689401", + "name": null, + "lengthMeters": 163.5269824830383, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5155441, + 13.5396784 + ], + [ + 52.5157708, + 13.5394616 + ], + [ + 52.5160168, + 13.5392592 + ], + [ + 52.5162278, + 13.5391151 + ], + [ + 52.5164572, + 13.5389956 + ], + [ + 52.5166531, + 13.5389175 + ], + [ + 52.5169111, + 13.538838 + ] + ] + }, + { + "osmId": "4689403", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 547.0533335257916, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5101189, + 13.5395665 + ], + [ + 52.5105161, + 13.5395218 + ], + [ + 52.5108535, + 13.5394639 + ], + [ + 52.5114834, + 13.5393678 + ], + [ + 52.5114924, + 13.5393667 + ], + [ + 52.5122039, + 13.5392777 + ], + [ + 52.5140927, + 13.5390604 + ], + [ + 52.514407, + 13.5390242 + ], + [ + 52.5145596, + 13.5390035 + ], + [ + 52.5150247, + 13.5389682 + ] + ] + }, + { + "osmId": "4689405", + "name": null, + "lengthMeters": 144.78220152047368, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5166345, + 13.5386005 + ], + [ + 52.5162874, + 13.5386111 + ], + [ + 52.515927, + 13.5385885 + ], + [ + 52.5155935, + 13.5385231 + ], + [ + 52.515339, + 13.5384499 + ] + ] + }, + { + "osmId": "4689410", + "name": null, + "lengthMeters": 166.41421055317954, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5098949, + 13.5378818 + ], + [ + 52.5098137, + 13.5378714 + ], + [ + 52.5096579, + 13.5378515 + ], + [ + 52.5092001, + 13.5378649 + ], + [ + 52.5090329, + 13.5378946 + ], + [ + 52.5089068, + 13.5379275 + ], + [ + 52.5087221, + 13.5379866 + ], + [ + 52.5084159, + 13.5381213 + ] + ] + }, + { + "osmId": "4689522", + "name": null, + "lengthMeters": 833.4496903300105, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4929125, + 13.5190157 + ], + [ + 52.4927641, + 13.5184171 + ], + [ + 52.4926069, + 13.5177936 + ], + [ + 52.4921693, + 13.5160448 + ], + [ + 52.4918688, + 13.5147681 + ], + [ + 52.4917497, + 13.5142928 + ], + [ + 52.4916859, + 13.5140385 + ], + [ + 52.4915144, + 13.5133577 + ], + [ + 52.4913838, + 13.5126968 + ], + [ + 52.4912845, + 13.5120788 + ], + [ + 52.4912009, + 13.5114094 + ], + [ + 52.4911538, + 13.5108171 + ], + [ + 52.4911225, + 13.5102592 + ], + [ + 52.4911068, + 13.5095726 + ], + [ + 52.491112, + 13.5089288 + ], + [ + 52.4911434, + 13.5082594 + ], + [ + 52.4911852, + 13.5076414 + ], + [ + 52.491234, + 13.5072447 + ] + ] + }, + { + "osmId": "4693040", + "name": null, + "lengthMeters": 800.0672724030661, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4302872, + 13.2565551 + ], + [ + 52.43009, + 13.2557335 + ], + [ + 52.4299855, + 13.255142 + ], + [ + 52.4299154, + 13.2547833 + ], + [ + 52.4298433, + 13.2543481 + ], + [ + 52.4297369, + 13.2536717 + ], + [ + 52.4296711, + 13.2530897 + ], + [ + 52.4296226, + 13.2522788 + ], + [ + 52.4296173, + 13.2516404 + ], + [ + 52.4296391, + 13.2510525 + ], + [ + 52.4296982, + 13.2503444 + ], + [ + 52.4297922, + 13.2496641 + ], + [ + 52.4298905, + 13.2491444 + ], + [ + 52.4299952, + 13.2486474 + ], + [ + 52.4301219, + 13.2481955 + ], + [ + 52.4302699, + 13.2477798 + ], + [ + 52.4304465, + 13.2473969 + ], + [ + 52.4306376, + 13.2470386 + ], + [ + 52.4308414, + 13.2466762 + ], + [ + 52.4312906, + 13.2456896 + ] + ] + }, + { + "osmId": "4695983", + "name": null, + "lengthMeters": 795.362829739286, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4945665, + 13.5259027 + ], + [ + 52.4948581, + 13.5270195 + ], + [ + 52.4949556, + 13.52737 + ], + [ + 52.4952509, + 13.5284455 + ], + [ + 52.4953662, + 13.528883 + ], + [ + 52.4956184, + 13.5298842 + ], + [ + 52.4958423, + 13.5308188 + ], + [ + 52.4959711, + 13.5313538 + ], + [ + 52.4972425, + 13.5364012 + ], + [ + 52.4973293, + 13.5367385 + ] + ] + }, + { + "osmId": "4696033", + "name": null, + "lengthMeters": 427.45575586744076, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293683, + 13.5359141 + ], + [ + 52.5296059, + 13.5358727 + ], + [ + 52.5298352, + 13.5358464 + ], + [ + 52.5300202, + 13.535831 + ], + [ + 52.5300559, + 13.5358284 + ], + [ + 52.5303322, + 13.535808 + ], + [ + 52.5306339, + 13.5357822 + ], + [ + 52.5308276, + 13.5357594 + ], + [ + 52.531112, + 13.5357204 + ], + [ + 52.5313214, + 13.5356923 + ], + [ + 52.5317242, + 13.5356348 + ], + [ + 52.531961, + 13.5355958 + ], + [ + 52.5321845, + 13.5355472 + ], + [ + 52.5324193, + 13.5354737 + ], + [ + 52.5326738, + 13.535382 + ], + [ + 52.5329132, + 13.5352673 + ], + [ + 52.5331707, + 13.5351371 + ] + ] + }, + { + "osmId": "4696034", + "name": null, + "lengthMeters": 116.39550489036799, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5331707, + 13.5351371 + ], + [ + 52.5341555, + 13.5345538 + ] + ] + }, + { + "osmId": "4696035", + "name": null, + "lengthMeters": 242.16786721198127, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5341555, + 13.5345538 + ], + [ + 52.5341726, + 13.5345436 + ], + [ + 52.5350119, + 13.5340427 + ], + [ + 52.535266, + 13.5338938 + ], + [ + 52.5355081, + 13.5337633 + ], + [ + 52.5355355, + 13.533749 + ], + [ + 52.5356496, + 13.5336894 + ], + [ + 52.5357742, + 13.5336221 + ], + [ + 52.5359163, + 13.5335636 + ], + [ + 52.5362232, + 13.5334389 + ] + ] + }, + { + "osmId": "4696116", + "name": null, + "lengthMeters": 112.41179774912763, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317429, + 13.5346709 + ], + [ + 52.5319748, + 13.5346007 + ], + [ + 52.5322201, + 13.5345411 + ], + [ + 52.5323961, + 13.5345066 + ], + [ + 52.5325858, + 13.5344816 + ], + [ + 52.5327452, + 13.5344677 + ] + ] + }, + { + "osmId": "4699068", + "name": null, + "lengthMeters": 156.11817391847802, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5090663, + 13.551276 + ], + [ + 52.5087603, + 13.5511249 + ], + [ + 52.5084443, + 13.5509544 + ], + [ + 52.5081076, + 13.5507119 + ], + [ + 52.507771, + 13.5504074 + ] + ] + }, + { + "osmId": "4699210", + "name": null, + "lengthMeters": 352.4157248866533, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191234, + 13.4087705 + ], + [ + 52.5194708, + 13.4095472 + ], + [ + 52.5197855, + 13.410239 + ], + [ + 52.5198815, + 13.4104517 + ], + [ + 52.5198965, + 13.4104849 + ], + [ + 52.5205582, + 13.4118343 + ], + [ + 52.5207037, + 13.4121242 + ], + [ + 52.5207984, + 13.4123164 + ], + [ + 52.521072, + 13.4128769 + ] + ] + }, + { + "osmId": "4699270", + "name": null, + "lengthMeters": 3148.674410540005, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469823, + 13.3888836 + ], + [ + 52.4697822, + 13.3890597 + ], + [ + 52.4697798, + 13.3890696 + ], + [ + 52.4696846, + 13.3894652 + ], + [ + 52.469476, + 13.3902606 + ], + [ + 52.4693234, + 13.390757 + ], + [ + 52.4692259, + 13.3910545 + ], + [ + 52.469085, + 13.391432 + ], + [ + 52.4690067, + 13.3916364 + ], + [ + 52.46882, + 13.3920917 + ], + [ + 52.4683288, + 13.3932181 + ], + [ + 52.4681063, + 13.3937171 + ], + [ + 52.467554, + 13.3949803 + ], + [ + 52.4672933, + 13.3955746 + ], + [ + 52.4672809, + 13.3956033 + ], + [ + 52.4670455, + 13.3961682 + ], + [ + 52.4668206, + 13.3967419 + ], + [ + 52.4665019, + 13.3976299 + ], + [ + 52.4663445, + 13.3981098 + ], + [ + 52.4661511, + 13.3987351 + ], + [ + 52.4655846, + 13.4007803 + ], + [ + 52.4654225, + 13.4013882 + ], + [ + 52.465267, + 13.4020164 + ], + [ + 52.4651598, + 13.4025337 + ], + [ + 52.4650589, + 13.4031487 + ], + [ + 52.4649962, + 13.4035516 + ], + [ + 52.4649186, + 13.4043008 + ], + [ + 52.4648636, + 13.4048832 + ], + [ + 52.4648332, + 13.4054438 + ], + [ + 52.4648209, + 13.4058483 + ], + [ + 52.464818, + 13.4064832 + ], + [ + 52.464833, + 13.4072489 + ], + [ + 52.4648665, + 13.4078815 + ], + [ + 52.4649908, + 13.4094081 + ], + [ + 52.46524, + 13.4123249 + ], + [ + 52.4652998, + 13.413008 + ], + [ + 52.4654936, + 13.4152258 + ], + [ + 52.4657656, + 13.4181358 + ], + [ + 52.4658363, + 13.4188923 + ], + [ + 52.4659109, + 13.4196636 + ], + [ + 52.4659989, + 13.420347 + ], + [ + 52.4661082, + 13.421024 + ], + [ + 52.4663111, + 13.4221787 + ], + [ + 52.4664415, + 13.4230656 + ], + [ + 52.4665393, + 13.4238804 + ], + [ + 52.4668908, + 13.4267645 + ], + [ + 52.467154, + 13.4289231 + ], + [ + 52.4672564, + 13.429655 + ], + [ + 52.4676879, + 13.4325151 + ], + [ + 52.4677265, + 13.4327697 + ] + ] + }, + { + "osmId": "4699426", + "name": null, + "lengthMeters": 1170.7517988946313, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5150679, + 13.5380301 + ], + [ + 52.5151762, + 13.5385938 + ], + [ + 52.5152588, + 13.5391247 + ], + [ + 52.5153245, + 13.5396026 + ], + [ + 52.5153719, + 13.5400886 + ], + [ + 52.5154094, + 13.5405869 + ], + [ + 52.5154283, + 13.54107 + ], + [ + 52.5154331, + 13.5415816 + ], + [ + 52.5154225, + 13.5419637 + ], + [ + 52.5154041, + 13.5422833 + ], + [ + 52.5153626, + 13.5428908 + ], + [ + 52.5153158, + 13.543425 + ], + [ + 52.5152253, + 13.5441904 + ], + [ + 52.5150786, + 13.5453031 + ], + [ + 52.5149203, + 13.5462056 + ], + [ + 52.5147078, + 13.5472753 + ], + [ + 52.5143969, + 13.5484656 + ], + [ + 52.5139831, + 13.5496192 + ], + [ + 52.5137043, + 13.5505664 + ], + [ + 52.5135087, + 13.5513088 + ], + [ + 52.5133522, + 13.5520852 + ], + [ + 52.5132415, + 13.5528004 + ], + [ + 52.5131737, + 13.553458 + ], + [ + 52.5131446, + 13.5538576 + ], + [ + 52.5131148, + 13.5545079 + ], + [ + 52.5131126, + 13.5545797 + ] + ] + }, + { + "osmId": "4702525", + "name": "Ostbahn", + "lengthMeters": 539.7531137454177, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121392, + 13.6125552 + ], + [ + 52.5121724, + 13.6128221 + ], + [ + 52.512298, + 13.6138306 + ], + [ + 52.5124633, + 13.6152078 + ], + [ + 52.5126239, + 13.6166385 + ], + [ + 52.5127992, + 13.6182109 + ], + [ + 52.5129861, + 13.6203359 + ], + [ + 52.5129922, + 13.6204052 + ] + ] + }, + { + "osmId": "4702587", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 436.2166208307115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569179, + 13.5570843 + ], + [ + 52.4572178, + 13.556936 + ], + [ + 52.45738, + 13.5568558 + ], + [ + 52.4573965, + 13.5568476 + ], + [ + 52.4577819, + 13.5566247 + ], + [ + 52.4581125, + 13.5564097 + ], + [ + 52.4584791, + 13.5561288 + ], + [ + 52.4586431, + 13.5560032 + ], + [ + 52.4586861, + 13.5559633 + ], + [ + 52.4590774, + 13.5556003 + ], + [ + 52.4602139, + 13.5544233 + ], + [ + 52.4604091, + 13.5542219 + ] + ] + }, + { + "osmId": "4702589", + "name": null, + "lengthMeters": 315.5616423795363, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690597, + 13.5523883 + ], + [ + 52.4689618, + 13.5523306 + ], + [ + 52.468866, + 13.5522776 + ], + [ + 52.4687881, + 13.5522386 + ], + [ + 52.4686787, + 13.5521889 + ], + [ + 52.4685643, + 13.5521409 + ], + [ + 52.4684451, + 13.5521024 + ], + [ + 52.46838, + 13.5520847 + ], + [ + 52.4683374, + 13.5520731 + ], + [ + 52.4682071, + 13.5520487 + ], + [ + 52.4680905, + 13.5520378 + ], + [ + 52.467959, + 13.5520343 + ], + [ + 52.4678071, + 13.5520434 + ], + [ + 52.4676187, + 13.5520769 + ], + [ + 52.4673152, + 13.5521653 + ], + [ + 52.4670544, + 13.552295 + ], + [ + 52.4668074, + 13.5524785 + ], + [ + 52.4666907, + 13.5525743 + ], + [ + 52.4666087, + 13.5526416 + ], + [ + 52.4664593, + 13.5527993 + ], + [ + 52.4663637, + 13.5529086 + ] + ] + }, + { + "osmId": "4702591", + "name": null, + "lengthMeters": 217.30124766651645, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4662849, + 13.5530091 + ], + [ + 52.4660923, + 13.5532935 + ], + [ + 52.4659331, + 13.5535622 + ], + [ + 52.4658082, + 13.5538285 + ], + [ + 52.4657987, + 13.5538488 + ], + [ + 52.4657518, + 13.5539622 + ], + [ + 52.4657333, + 13.5540072 + ], + [ + 52.4656414, + 13.5542296 + ], + [ + 52.4655131, + 13.5546303 + ], + [ + 52.4654111, + 13.5550402 + ], + [ + 52.4652958, + 13.5557042 + ] + ] + }, + { + "osmId": "4702711", + "name": null, + "lengthMeters": 198.9152990029219, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4588304, + 13.5793937 + ], + [ + 52.4588456, + 13.5792609 + ], + [ + 52.4588426, + 13.5792565 + ], + [ + 52.4588746, + 13.5789929 + ], + [ + 52.4589337, + 13.5785571 + ], + [ + 52.4589814, + 13.5782787 + ], + [ + 52.459033, + 13.5779968 + ], + [ + 52.4591061, + 13.5776495 + ], + [ + 52.4591564, + 13.5774259 + ], + [ + 52.4593372, + 13.5766686 + ], + [ + 52.4593558, + 13.5765988 + ] + ] + }, + { + "osmId": "4702712", + "name": null, + "lengthMeters": 191.07402931945802, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4979187, + 13.4862019 + ], + [ + 52.4977257, + 13.4864871 + ], + [ + 52.4975975, + 13.4866881 + ], + [ + 52.4973507, + 13.4871285 + ], + [ + 52.497196, + 13.4874525 + ], + [ + 52.4971776, + 13.487498 + ], + [ + 52.497098, + 13.4876946 + ], + [ + 52.4970625, + 13.4877842 + ], + [ + 52.4970532, + 13.4878088 + ], + [ + 52.4970093, + 13.487925 + ], + [ + 52.4969492, + 13.4881053 + ], + [ + 52.4968573, + 13.488394 + ] + ] + }, + { + "osmId": "4702713", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 883.5048602315833, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4639841, + 13.5511767 + ], + [ + 52.4629463, + 13.5519507 + ], + [ + 52.4629266, + 13.5519663 + ], + [ + 52.4627839, + 13.5520729 + ], + [ + 52.4620528, + 13.5526132 + ], + [ + 52.4617602, + 13.5528424 + ], + [ + 52.461558, + 13.5530136 + ], + [ + 52.4613659, + 13.5531809 + ], + [ + 52.460928, + 13.5536005 + ], + [ + 52.4607397, + 13.5537953 + ], + [ + 52.4590529, + 13.5555403 + ], + [ + 52.4586646, + 13.5558976 + ], + [ + 52.4586218, + 13.555937 + ], + [ + 52.4580911, + 13.556341 + ], + [ + 52.4577655, + 13.55655 + ], + [ + 52.4573774, + 13.5567671 + ], + [ + 52.4573167, + 13.5567971 + ], + [ + 52.4573089, + 13.556801 + ], + [ + 52.4572054, + 13.5568522 + ], + [ + 52.4569048, + 13.5570001 + ] + ] + }, + { + "osmId": "4702714", + "name": null, + "lengthMeters": 120.03846901248767, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627242, + 13.5671285 + ], + [ + 52.4626088, + 13.5673751 + ], + [ + 52.4620578, + 13.5685224 + ] + ] + }, + { + "osmId": "4702716", + "name": null, + "lengthMeters": 164.31472392974692, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4309984, + 13.7485154 + ], + [ + 52.4308059, + 13.7489303 + ], + [ + 52.4306607, + 13.7492076 + ], + [ + 52.4304762, + 13.7495195 + ], + [ + 52.4300547, + 13.7501348 + ], + [ + 52.4299742, + 13.7502522 + ] + ] + }, + { + "osmId": "4702718", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 228.26923680375617, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4586181, + 13.5795672 + ], + [ + 52.4586074, + 13.5796572 + ], + [ + 52.4585399, + 13.5802231 + ], + [ + 52.4585071, + 13.5805328 + ], + [ + 52.4585045, + 13.5805575 + ], + [ + 52.4584947, + 13.580665 + ], + [ + 52.458473, + 13.580904 + ], + [ + 52.4584438, + 13.5812286 + ], + [ + 52.4584192, + 13.5815831 + ], + [ + 52.4583852, + 13.5822646 + ], + [ + 52.4583769, + 13.5825113 + ], + [ + 52.4583716, + 13.5826681 + ], + [ + 52.4583638, + 13.5829059 + ] + ] + }, + { + "osmId": "4702865", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 127.3654698964221, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4555361, + 13.5574793 + ], + [ + 52.4554825, + 13.5574946 + ], + [ + 52.4549209, + 13.5576029 + ], + [ + 52.4543962, + 13.5576521 + ] + ] + }, + { + "osmId": "4702866", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 149.0818048308448, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4543962, + 13.5576521 + ], + [ + 52.453057, + 13.557757 + ] + ] + }, + { + "osmId": "4702869", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 284.1442960164986, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.44663, + 13.5584375 + ], + [ + 52.4463471, + 13.5584635 + ], + [ + 52.4461874, + 13.5584792 + ], + [ + 52.4457877, + 13.558529 + ], + [ + 52.4449227, + 13.5586549 + ], + [ + 52.4443412, + 13.5587103 + ], + [ + 52.4440815, + 13.5587396 + ] + ] + }, + { + "osmId": "4702870", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 363.5214695487211, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4501575, + 13.557983 + ], + [ + 52.4493733, + 13.5580652 + ], + [ + 52.4488177, + 13.5581454 + ], + [ + 52.4482622, + 13.5582405 + ], + [ + 52.4480855, + 13.558272 + ], + [ + 52.4475862, + 13.5583415 + ], + [ + 52.4471599, + 13.5583964 + ], + [ + 52.4468993, + 13.5584095 + ] + ] + }, + { + "osmId": "4702872", + "name": "Zweigbahn Sch\u00f6neweide\u2013Spindlersfeld", + "lengthMeters": 1553.475512481733, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4487996, + 13.5598193 + ], + [ + 52.449066, + 13.5595866 + ], + [ + 52.4491239, + 13.5595366 + ], + [ + 52.4493119, + 13.5593662 + ], + [ + 52.4495408, + 13.5591419 + ], + [ + 52.4498016, + 13.5588222 + ], + [ + 52.4500358, + 13.5584619 + ], + [ + 52.4502078, + 13.5581421 + ], + [ + 52.4503509, + 13.5578278 + ], + [ + 52.4504523, + 13.5575725 + ], + [ + 52.4505557, + 13.5572602 + ], + [ + 52.4506268, + 13.5570182 + ], + [ + 52.4506886, + 13.5567784 + ], + [ + 52.4508276, + 13.556194 + ], + [ + 52.450973, + 13.5554905 + ], + [ + 52.4509871, + 13.5554272 + ], + [ + 52.4510799, + 13.5550124 + ], + [ + 52.4510856, + 13.5549796 + ], + [ + 52.4511055, + 13.5548875 + ], + [ + 52.4511338, + 13.5547544 + ], + [ + 52.4532236, + 13.5453248 + ], + [ + 52.4533375, + 13.5446601 + ], + [ + 52.4533691, + 13.5443231 + ], + [ + 52.4533894, + 13.5438879 + ], + [ + 52.4533804, + 13.543501 + ], + [ + 52.4533567, + 13.5431084 + ], + [ + 52.4533138, + 13.5427288 + ], + [ + 52.4532473, + 13.5423344 + ], + [ + 52.453122, + 13.5416571 + ], + [ + 52.4526825, + 13.539238 + ] + ] + }, + { + "osmId": "4702873", + "name": null, + "lengthMeters": 619.3805814847397, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4496891, + 13.5193574 + ], + [ + 52.4497221, + 13.5191152 + ], + [ + 52.4497569, + 13.518885 + ], + [ + 52.4497957, + 13.5186804 + ], + [ + 52.4498332, + 13.5185183 + ], + [ + 52.449838, + 13.5184966 + ], + [ + 52.4498907, + 13.5182912 + ], + [ + 52.4499288, + 13.5181641 + ], + [ + 52.44997, + 13.5180442 + ], + [ + 52.4500322, + 13.517872 + ], + [ + 52.4501021, + 13.5177 + ], + [ + 52.4502162, + 13.5174482 + ], + [ + 52.4503571, + 13.5171699 + ], + [ + 52.4506554, + 13.516584 + ], + [ + 52.4509565, + 13.5160012 + ], + [ + 52.4511907, + 13.5155851 + ], + [ + 52.4513982, + 13.5152359 + ], + [ + 52.4515868, + 13.5149412 + ], + [ + 52.4522146, + 13.5139714 + ], + [ + 52.4522274, + 13.5139512 + ], + [ + 52.452278, + 13.5138725 + ], + [ + 52.4529342, + 13.5128591 + ], + [ + 52.4532066, + 13.5124392 + ] + ] + }, + { + "osmId": "4703292", + "name": null, + "lengthMeters": 117.48813252547859, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4859618, + 13.4588042 + ], + [ + 52.4864874, + 13.4589235 + ], + [ + 52.4870078, + 13.4590492 + ] + ] + }, + { + "osmId": "4703294", + "name": null, + "lengthMeters": 360.0841172658047, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4873845, + 13.459929 + ], + [ + 52.4875453, + 13.4597397 + ], + [ + 52.4877076, + 13.4595759 + ], + [ + 52.4878655, + 13.4594279 + ], + [ + 52.4880031, + 13.4593225 + ], + [ + 52.4881458, + 13.4592281 + ], + [ + 52.4882505, + 13.4591654 + ], + [ + 52.4883645, + 13.4591077 + ], + [ + 52.4884816, + 13.4590544 + ], + [ + 52.4886134, + 13.4590023 + ], + [ + 52.4887455, + 13.4589635 + ], + [ + 52.4889153, + 13.4589271 + ], + [ + 52.4890235, + 13.4589098 + ], + [ + 52.4891246, + 13.4589021 + ], + [ + 52.489256, + 13.4588972 + ], + [ + 52.4894361, + 13.4589085 + ], + [ + 52.489584, + 13.4589304 + ], + [ + 52.4897259, + 13.4589619 + ], + [ + 52.4898622, + 13.4590016 + ], + [ + 52.4899903, + 13.4590553 + ], + [ + 52.4901446, + 13.4591233 + ], + [ + 52.490278, + 13.4591995 + ], + [ + 52.4903816, + 13.4592617 + ], + [ + 52.4904506, + 13.4593057 + ] + ] + }, + { + "osmId": "4703297", + "name": null, + "lengthMeters": 244.7516048800866, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4709421, + 13.4532893 + ], + [ + 52.4709453, + 13.4533698 + ], + [ + 52.4709463, + 13.4534287 + ], + [ + 52.4709499, + 13.4536453 + ], + [ + 52.4709471, + 13.4538554 + ], + [ + 52.4709197, + 13.4543021 + ], + [ + 52.4708543, + 13.4548726 + ], + [ + 52.470747, + 13.4554368 + ], + [ + 52.470679, + 13.4557343 + ], + [ + 52.4706036, + 13.4560216 + ], + [ + 52.4703995, + 13.4567434 + ] + ] + }, + { + "osmId": "4720893", + "name": null, + "lengthMeters": 113.9118629565241, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3381888, + 13.2554895 + ], + [ + 52.3378203, + 13.2554126 + ], + [ + 52.3375051, + 13.25537 + ], + [ + 52.3373434, + 13.2553576 + ], + [ + 52.3371686, + 13.2553581 + ] + ] + }, + { + "osmId": "4720894", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 637.277537873496, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3507343, + 13.4116375 + ], + [ + 52.3506119, + 13.4110992 + ], + [ + 52.3504572, + 13.4103515 + ], + [ + 52.3501021, + 13.4088201 + ], + [ + 52.3496426, + 13.406767 + ], + [ + 52.3494823, + 13.4060616 + ], + [ + 52.3494612, + 13.4059721 + ], + [ + 52.349204, + 13.4048171 + ], + [ + 52.3488707, + 13.4033393 + ], + [ + 52.3487569, + 13.4028316 + ] + ] + }, + { + "osmId": "4732182", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1034.013239469595, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3386869, + 13.3003736 + ], + [ + 52.3387292, + 13.3007111 + ], + [ + 52.3387647, + 13.3010548 + ], + [ + 52.338815, + 13.3015656 + ], + [ + 52.3388631, + 13.3021265 + ], + [ + 52.3388985, + 13.3026272 + ], + [ + 52.3389615, + 13.3036509 + ], + [ + 52.3390317, + 13.3049798 + ], + [ + 52.339177, + 13.3077225 + ], + [ + 52.3392528, + 13.3090812 + ], + [ + 52.3393522, + 13.3109593 + ], + [ + 52.3394154, + 13.3121106 + ], + [ + 52.3395271, + 13.3142113 + ], + [ + 52.3395984, + 13.3155152 + ] + ] + }, + { + "osmId": "4732184", + "name": "Neue Verbindungskurve", + "lengthMeters": 845.1920024836094, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3442665, + 13.271699 + ], + [ + 52.3441933, + 13.2722247 + ], + [ + 52.3441115, + 13.2727445 + ], + [ + 52.3440524, + 13.2730803 + ], + [ + 52.3439942, + 13.2734062 + ], + [ + 52.3438662, + 13.2740724 + ], + [ + 52.3437413, + 13.2747259 + ], + [ + 52.3436495, + 13.2752729 + ], + [ + 52.3436141, + 13.2755493 + ], + [ + 52.3435796, + 13.2758453 + ], + [ + 52.3435535, + 13.2761407 + ], + [ + 52.343539, + 13.2764596 + ], + [ + 52.3435305, + 13.2768139 + ], + [ + 52.3435373, + 13.277208 + ], + [ + 52.3435464, + 13.2773813 + ], + [ + 52.3435617, + 13.2776213 + ], + [ + 52.3435873, + 13.2778878 + ], + [ + 52.3436313, + 13.2782274 + ], + [ + 52.3436922, + 13.2785987 + ], + [ + 52.3437394, + 13.2788266 + ], + [ + 52.3437434, + 13.278843 + ], + [ + 52.3438422, + 13.2792544 + ], + [ + 52.3439246, + 13.2795471 + ], + [ + 52.3440312, + 13.2798684 + ], + [ + 52.3440839, + 13.280011 + ], + [ + 52.3441376, + 13.2801492 + ], + [ + 52.3441962, + 13.2802937 + ], + [ + 52.3442557, + 13.2804295 + ], + [ + 52.3443361, + 13.2806001 + ], + [ + 52.3444231, + 13.280773 + ], + [ + 52.3444832, + 13.280885 + ], + [ + 52.3445432, + 13.2809912 + ], + [ + 52.3446541, + 13.2811757 + ], + [ + 52.3447416, + 13.2813107 + ], + [ + 52.3448425, + 13.2814573 + ], + [ + 52.3449553, + 13.2816083 + ], + [ + 52.345053, + 13.2817294 + ], + [ + 52.3451564, + 13.2818491 + ], + [ + 52.3452579, + 13.2819585 + ], + [ + 52.3453616, + 13.2820628 + ], + [ + 52.3454573, + 13.282152 + ], + [ + 52.3455667, + 13.2822463 + ], + [ + 52.3456759, + 13.2823326 + ], + [ + 52.345823, + 13.282442 + ] + ] + }, + { + "osmId": "4740732", + "name": null, + "lengthMeters": 847.6460671992021, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4398586, + 13.2148408 + ], + [ + 52.4402644, + 13.2167922 + ], + [ + 52.4404852, + 13.2178541 + ], + [ + 52.4406188, + 13.2185127 + ], + [ + 52.4407173, + 13.2191802 + ], + [ + 52.4407745, + 13.2197214 + ], + [ + 52.4408062, + 13.2202388 + ], + [ + 52.4408199, + 13.2208416 + ], + [ + 52.4408048, + 13.2214451 + ], + [ + 52.4407786, + 13.2218577 + ], + [ + 52.4407392, + 13.2222698 + ], + [ + 52.4406811, + 13.2227435 + ], + [ + 52.4406097, + 13.2232061 + ], + [ + 52.4405327, + 13.2236213 + ], + [ + 52.4404334, + 13.2240167 + ], + [ + 52.4403373, + 13.2243692 + ], + [ + 52.4402281, + 13.2247152 + ], + [ + 52.4400776, + 13.2251554 + ], + [ + 52.4399009, + 13.2255738 + ], + [ + 52.4397045, + 13.2260378 + ], + [ + 52.4394749, + 13.2265746 + ] + ] + }, + { + "osmId": "4740750", + "name": null, + "lengthMeters": 151.1282570583453, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5430574, + 13.3674736 + ], + [ + 52.5426864, + 13.3666436 + ], + [ + 52.5426102, + 13.3664707 + ], + [ + 52.5426033, + 13.3664551 + ], + [ + 52.5425499, + 13.3663344 + ], + [ + 52.5422563, + 13.3656683 + ] + ] + }, + { + "osmId": "4740751", + "name": null, + "lengthMeters": 473.8926576372353, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483391, + 13.3822655 + ], + [ + 52.5483076, + 13.3819253 + ], + [ + 52.5482845, + 13.3817505 + ], + [ + 52.5482059, + 13.3811554 + ], + [ + 52.5481205, + 13.3806658 + ], + [ + 52.5480534, + 13.3803461 + ], + [ + 52.5480123, + 13.3801599 + ], + [ + 52.5480066, + 13.3801362 + ], + [ + 52.5479778, + 13.3800138 + ], + [ + 52.5477267, + 13.3790069 + ], + [ + 52.5474625, + 13.3780614 + ], + [ + 52.5473872, + 13.3778213 + ], + [ + 52.5473254, + 13.3776333 + ], + [ + 52.5472177, + 13.3773285 + ], + [ + 52.547086, + 13.3769789 + ], + [ + 52.5466388, + 13.3759098 + ] + ] + }, + { + "osmId": "4740767", + "name": "Berliner Ringbahn", + "lengthMeters": 305.37557138914264, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495345, + 13.4073233 + ], + [ + 52.5495646, + 13.4078673 + ], + [ + 52.5495827, + 13.4083215 + ], + [ + 52.5495985, + 13.4087735 + ], + [ + 52.5496016, + 13.4093802 + ], + [ + 52.549592, + 13.4099916 + ], + [ + 52.5494795, + 13.4118262 + ] + ] + }, + { + "osmId": "4740769", + "name": "Stettiner Bahn", + "lengthMeters": 312.0124356571289, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482846, + 13.3833295 + ], + [ + 52.5483056, + 13.3847143 + ], + [ + 52.5483083, + 13.3852354 + ], + [ + 52.5483047, + 13.3858175 + ], + [ + 52.5482992, + 13.386053 + ], + [ + 52.5482893, + 13.3864905 + ], + [ + 52.5482883, + 13.3865326 + ], + [ + 52.5482768, + 13.3869002 + ], + [ + 52.5482749, + 13.3870171 + ], + [ + 52.5482685, + 13.387338 + ], + [ + 52.5482599, + 13.3877401 + ], + [ + 52.5482594, + 13.3877965 + ], + [ + 52.5482565, + 13.3879419 + ] + ] + }, + { + "osmId": "4740770", + "name": "Berliner Ringbahn", + "lengthMeters": 192.38160794178899, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485822, + 13.3882547 + ], + [ + 52.548542, + 13.3877397 + ], + [ + 52.5485225, + 13.3873825 + ], + [ + 52.5485093, + 13.3870753 + ], + [ + 52.5484518, + 13.3859945 + ], + [ + 52.548446, + 13.3858676 + ], + [ + 52.5484225, + 13.3854221 + ] + ] + }, + { + "osmId": "4740779", + "name": null, + "lengthMeters": 109.75262240448703, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495775, + 13.4042489 + ], + [ + 52.5494958, + 13.4027157 + ], + [ + 52.5494913, + 13.4026319 + ] + ] + }, + { + "osmId": "4740784", + "name": null, + "lengthMeters": 266.9453429375734, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494318, + 13.3979813 + ], + [ + 52.5494346, + 13.3976386 + ], + [ + 52.5494342, + 13.3969675 + ], + [ + 52.5494204, + 13.3960448 + ], + [ + 52.5494128, + 13.3956945 + ], + [ + 52.5493882, + 13.3948707 + ], + [ + 52.5493633, + 13.3941026 + ], + [ + 52.5493611, + 13.394036 + ] + ] + }, + { + "osmId": "4740799", + "name": null, + "lengthMeters": 139.4970104903506, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5508452, + 13.3992835 + ], + [ + 52.55097, + 13.3991822 + ], + [ + 52.5511561, + 13.3990482 + ], + [ + 52.5513328, + 13.3989442 + ], + [ + 52.5520425, + 13.3987044 + ] + ] + }, + { + "osmId": "4740800", + "name": null, + "lengthMeters": 156.77443882272266, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495775, + 13.4042489 + ], + [ + 52.5495602, + 13.4037984 + ], + [ + 52.5495545, + 13.4033377 + ], + [ + 52.5495601, + 13.4028744 + ], + [ + 52.5495754, + 13.4025401 + ], + [ + 52.5496005, + 13.4022301 + ], + [ + 52.5496349, + 13.4019405 + ] + ] + }, + { + "osmId": "4740803", + "name": null, + "lengthMeters": 108.3920764250892, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538898, + 13.3978419 + ], + [ + 52.5533787, + 13.3980609 + ], + [ + 52.5532244, + 13.3981185 + ], + [ + 52.5532065, + 13.3981246 + ], + [ + 52.5530961, + 13.3981624 + ], + [ + 52.5529413, + 13.3982089 + ] + ] + }, + { + "osmId": "4740804", + "name": null, + "lengthMeters": 227.24893228138254, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5506871, + 13.3992339 + ], + [ + 52.5506503, + 13.3992715 + ], + [ + 52.5505559, + 13.3993761 + ], + [ + 52.5504036, + 13.3995539 + ], + [ + 52.5502518, + 13.3997717 + ], + [ + 52.5501058, + 13.4000051 + ], + [ + 52.5499778, + 13.4002666 + ], + [ + 52.5498582, + 13.4005667 + ], + [ + 52.5497657, + 13.4008527 + ], + [ + 52.5496747, + 13.4011686 + ], + [ + 52.5495986, + 13.4015219 + ], + [ + 52.5495291, + 13.401891 + ] + ] + }, + { + "osmId": "4740806", + "name": null, + "lengthMeters": 130.63016029269303, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5526924, + 13.3985296 + ], + [ + 52.5529271, + 13.3984768 + ], + [ + 52.5530427, + 13.3984454 + ], + [ + 52.5533706, + 13.3983862 + ], + [ + 52.5536147, + 13.3983468 + ], + [ + 52.5538582, + 13.3982942 + ] + ] + }, + { + "osmId": "4740807", + "name": null, + "lengthMeters": 140.2285678990676, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.556685, + 13.3975558 + ], + [ + 52.556694, + 13.3975572 + ], + [ + 52.5572447, + 13.3976406 + ], + [ + 52.5575379, + 13.3977091 + ], + [ + 52.5576982, + 13.3977486 + ], + [ + 52.557933, + 13.3978365 + ] + ] + }, + { + "osmId": "4740817", + "name": null, + "lengthMeters": 272.7714127554726, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494623, + 13.4020147 + ], + [ + 52.5494485, + 13.4015744 + ], + [ + 52.5494404, + 13.4010365 + ], + [ + 52.5494354, + 13.3994577 + ], + [ + 52.5494351, + 13.3993204 + ], + [ + 52.5494349, + 13.3992343 + ], + [ + 52.5494318, + 13.3979813 + ] + ] + }, + { + "osmId": "4740854", + "name": "Berliner Ringbahn", + "lengthMeters": 113.45926822696478, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5490357, + 13.3959993 + ], + [ + 52.5491293, + 13.396577 + ], + [ + 52.5492095, + 13.3971542 + ], + [ + 52.5492496, + 13.3976378 + ] + ] + }, + { + "osmId": "4740858", + "name": null, + "lengthMeters": 551.8249268878144, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5632995, + 13.3949461 + ], + [ + 52.5629384, + 13.3952795 + ], + [ + 52.5627204, + 13.3954685 + ], + [ + 52.5625162, + 13.3956445 + ], + [ + 52.5622112, + 13.3959058 + ], + [ + 52.5619222, + 13.3961405 + ], + [ + 52.5616867, + 13.3963127 + ], + [ + 52.5614449, + 13.3964723 + ], + [ + 52.5611745, + 13.396631 + ], + [ + 52.5609046, + 13.3967667 + ], + [ + 52.5606943, + 13.3968565 + ], + [ + 52.5604825, + 13.3969356 + ], + [ + 52.5602487, + 13.3970141 + ], + [ + 52.5600015, + 13.3970864 + ], + [ + 52.5590351, + 13.3973341 + ], + [ + 52.5590164, + 13.3973389 + ], + [ + 52.5590094, + 13.3973407 + ], + [ + 52.5586244, + 13.3974394 + ] + ] + }, + { + "osmId": "4740906", + "name": "Stettiner Bahn", + "lengthMeters": 93.78749071563182, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5545331, + 13.3984077 + ], + [ + 52.5536995, + 13.3986191 + ] + ] + }, + { + "osmId": "4740907", + "name": null, + "lengthMeters": 514.2877367613584, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485933, + 13.3945881 + ], + [ + 52.548677, + 13.3954748 + ], + [ + 52.5487576, + 13.396299 + ], + [ + 52.5488601, + 13.3971147 + ], + [ + 52.5489508, + 13.3978278 + ], + [ + 52.5490628, + 13.3988064 + ], + [ + 52.5491288, + 13.3995999 + ], + [ + 52.5491778, + 13.4005489 + ], + [ + 52.5492587, + 13.4021066 + ] + ] + }, + { + "osmId": "4740908", + "name": null, + "lengthMeters": 799.5122194117506, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494205, + 13.4067712 + ], + [ + 52.5493142, + 13.4051601 + ], + [ + 52.5492705, + 13.4042509 + ], + [ + 52.5492679, + 13.4040109 + ], + [ + 52.5492689, + 13.4038527 + ], + [ + 52.5492757, + 13.4036863 + ], + [ + 52.5492875, + 13.4034866 + ], + [ + 52.5493081, + 13.4032555 + ], + [ + 52.5493494, + 13.4029455 + ], + [ + 52.5493976, + 13.4026635 + ], + [ + 52.549503, + 13.4022106 + ], + [ + 52.5496213, + 13.4018333 + ], + [ + 52.5497371, + 13.4015106 + ], + [ + 52.5497964, + 13.4013756 + ], + [ + 52.5498387, + 13.4012791 + ], + [ + 52.5498533, + 13.4012458 + ], + [ + 52.5500412, + 13.4009174 + ], + [ + 52.5502439, + 13.4006146 + ], + [ + 52.5504066, + 13.4004153 + ], + [ + 52.5505682, + 13.4002355 + ], + [ + 52.5507514, + 13.4000852 + ], + [ + 52.5509076, + 13.3999529 + ], + [ + 52.5512665, + 13.3997476 + ], + [ + 52.5518474, + 13.3994874 + ], + [ + 52.5523138, + 13.3992806 + ], + [ + 52.5525041, + 13.3991967 + ], + [ + 52.5527363, + 13.3991046 + ], + [ + 52.5531926, + 13.3989607 + ] + ] + }, + { + "osmId": "4740910", + "name": null, + "lengthMeters": 369.6807511998334, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5545852, + 13.3985146 + ], + [ + 52.5548519, + 13.398443 + ], + [ + 52.555109, + 13.3983755 + ], + [ + 52.5551983, + 13.3983558 + ], + [ + 52.5553676, + 13.3983135 + ], + [ + 52.5554939, + 13.3982819 + ], + [ + 52.5561255, + 13.3981241 + ], + [ + 52.5564202, + 13.3980506 + ], + [ + 52.5566684, + 13.3979899 + ], + [ + 52.5572532, + 13.397844 + ], + [ + 52.5578512, + 13.3976927 + ], + [ + 52.5578716, + 13.3976883 + ] + ] + }, + { + "osmId": "4740912", + "name": "Berliner Ringbahn", + "lengthMeters": 277.0850431639179, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5492631, + 13.3980098 + ], + [ + 52.5492669, + 13.3982331 + ], + [ + 52.5492674, + 13.398572 + ], + [ + 52.5492619, + 13.3988646 + ], + [ + 52.549254, + 13.3991337 + ], + [ + 52.5492452, + 13.3995052 + ], + [ + 52.5492399, + 13.3999012 + ], + [ + 52.5492424, + 13.4003478 + ], + [ + 52.5492459, + 13.4007622 + ], + [ + 52.5492484, + 13.4010248 + ], + [ + 52.5492501, + 13.401399 + ], + [ + 52.5492587, + 13.4021066 + ] + ] + }, + { + "osmId": "4740914", + "name": "Stettiner Bahn", + "lengthMeters": 106.85296484133471, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5573666, + 13.3979252 + ], + [ + 52.5572169, + 13.3979041 + ], + [ + 52.5569635, + 13.3978938 + ], + [ + 52.5565516, + 13.3979286 + ], + [ + 52.5564075, + 13.3979517 + ] + ] + }, + { + "osmId": "4741015", + "name": "Stettiner Bahn", + "lengthMeters": 151.08420184005183, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.560996, + 13.4015934 + ], + [ + 52.5612454, + 13.402025 + ], + [ + 52.5613074, + 13.4021323 + ], + [ + 52.5619263, + 13.4032224 + ] + ] + }, + { + "osmId": "4741025", + "name": null, + "lengthMeters": 196.38797698600985, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5721872, + 13.3798879 + ], + [ + 52.5724628, + 13.379403 + ], + [ + 52.5731055, + 13.3782724 + ], + [ + 52.5731987, + 13.3781163 + ], + [ + 52.5734032, + 13.3777807 + ] + ] + }, + { + "osmId": "4741158", + "name": "Berliner Ringbahn", + "lengthMeters": 363.38488045540345, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5376178, + 13.4450811 + ], + [ + 52.5377966, + 13.4445998 + ], + [ + 52.5381387, + 13.4436784 + ], + [ + 52.5385791, + 13.4424935 + ], + [ + 52.5389458, + 13.4415047 + ], + [ + 52.539042, + 13.4412595 + ], + [ + 52.539139, + 13.4410228 + ], + [ + 52.5392859, + 13.4406875 + ], + [ + 52.5393555, + 13.4405329 + ] + ] + }, + { + "osmId": "4741205", + "name": "Berliner Ringbahn", + "lengthMeters": 199.1313355516935, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140412, + 13.4752662 + ], + [ + 52.5140711, + 13.4752592 + ], + [ + 52.5143925, + 13.47517 + ], + [ + 52.5146348, + 13.4750763 + ], + [ + 52.5148358, + 13.4749816 + ], + [ + 52.5152515, + 13.4747483 + ], + [ + 52.5157595, + 13.4744603 + ] + ] + }, + { + "osmId": "4741206", + "name": "Berliner Ringbahn", + "lengthMeters": 289.2992240450833, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5375679, + 13.4450793 + ], + [ + 52.5374505, + 13.4454028 + ], + [ + 52.5373765, + 13.4455929 + ], + [ + 52.5372949, + 13.4457834 + ], + [ + 52.5372034, + 13.4459861 + ], + [ + 52.5370234, + 13.4463679 + ], + [ + 52.5368101, + 13.4468198 + ], + [ + 52.5366767, + 13.4470836 + ], + [ + 52.5365579, + 13.4472917 + ], + [ + 52.5364279, + 13.4474911 + ], + [ + 52.5362949, + 13.4476685 + ], + [ + 52.5359612, + 13.4480319 + ], + [ + 52.5358176, + 13.4481712 + ] + ] + }, + { + "osmId": "4741219", + "name": null, + "lengthMeters": 242.72625059803917, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253356, + 13.4599023 + ], + [ + 52.5253389, + 13.4598926 + ], + [ + 52.5254048, + 13.4597141 + ], + [ + 52.5254771, + 13.4595402 + ], + [ + 52.5255812, + 13.4593049 + ], + [ + 52.5256903, + 13.4590779 + ], + [ + 52.5257893, + 13.4588847 + ], + [ + 52.5258665, + 13.4587491 + ], + [ + 52.5260573, + 13.458447 + ], + [ + 52.5262045, + 13.4582371 + ], + [ + 52.5263545, + 13.4580436 + ], + [ + 52.5265056, + 13.4578656 + ], + [ + 52.5267063, + 13.457648 + ], + [ + 52.5268994, + 13.4574599 + ] + ] + }, + { + "osmId": "4741459", + "name": null, + "lengthMeters": 440.8064742677195, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118245, + 13.475708 + ], + [ + 52.5115094, + 13.4757694 + ], + [ + 52.5113572, + 13.4757799 + ], + [ + 52.5111475, + 13.4757879 + ], + [ + 52.5110706, + 13.4757896 + ], + [ + 52.5109066, + 13.475769 + ], + [ + 52.510756, + 13.4757453 + ], + [ + 52.5105952, + 13.4757087 + ], + [ + 52.5104418, + 13.4756621 + ], + [ + 52.5102257, + 13.4755745 + ], + [ + 52.5100228, + 13.4754668 + ], + [ + 52.5098774, + 13.4753738 + ], + [ + 52.5097364, + 13.4752727 + ], + [ + 52.5097126, + 13.4752531 + ], + [ + 52.5094923, + 13.4750604 + ], + [ + 52.5088314, + 13.474435 + ], + [ + 52.5081491, + 13.473783 + ] + ] + }, + { + "osmId": "4741607", + "name": null, + "lengthMeters": 315.34730352375635, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5066197, + 13.4482819 + ], + [ + 52.5066859, + 13.4480027 + ], + [ + 52.5068329, + 13.4472964 + ], + [ + 52.507136, + 13.4456556 + ], + [ + 52.5074289, + 13.4440705 + ], + [ + 52.5074717, + 13.4438389 + ] + ] + }, + { + "osmId": "4741924", + "name": null, + "lengthMeters": 866.9828560577657, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5074931, + 13.4429952 + ], + [ + 52.5074011, + 13.4433258 + ], + [ + 52.5072838, + 13.443779 + ], + [ + 52.5071748, + 13.4442479 + ], + [ + 52.5070867, + 13.4446763 + ], + [ + 52.5069844, + 13.4452531 + ], + [ + 52.5068444, + 13.4461245 + ], + [ + 52.5067574, + 13.4466682 + ], + [ + 52.5066964, + 13.447026 + ], + [ + 52.5065808, + 13.447623 + ], + [ + 52.5065268, + 13.4478803 + ], + [ + 52.50645, + 13.4482264 + ], + [ + 52.5062771, + 13.4490005 + ], + [ + 52.5061626, + 13.4495303 + ], + [ + 52.5061218, + 13.4497372 + ], + [ + 52.5060704, + 13.4499973 + ], + [ + 52.5059891, + 13.4504136 + ], + [ + 52.5059082, + 13.4508545 + ], + [ + 52.5057829, + 13.4515925 + ], + [ + 52.5057285, + 13.451946 + ], + [ + 52.5056789, + 13.4522773 + ], + [ + 52.5056339, + 13.4526074 + ], + [ + 52.5056167, + 13.4527387 + ], + [ + 52.5055627, + 13.4531928 + ], + [ + 52.5055179, + 13.453596 + ], + [ + 52.5054415, + 13.4542313 + ], + [ + 52.5053488, + 13.454924 + ], + [ + 52.505299, + 13.4552617 + ] + ] + }, + { + "osmId": "4741932", + "name": null, + "lengthMeters": 90.74583033650194, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119531, + 13.4274868 + ], + [ + 52.5117549, + 13.4287876 + ] + ] + }, + { + "osmId": "4741935", + "name": null, + "lengthMeters": 609.8908537935627, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.506577, + 13.4482569 + ], + [ + 52.5064984, + 13.4485908 + ], + [ + 52.5063463, + 13.4491847 + ], + [ + 52.5062264, + 13.4496752 + ], + [ + 52.506075, + 13.4503079 + ], + [ + 52.5060689, + 13.4503373 + ], + [ + 52.5059848, + 13.4507505 + ], + [ + 52.5059105, + 13.4511495 + ], + [ + 52.5058204, + 13.4516978 + ], + [ + 52.5057215, + 13.4523564 + ], + [ + 52.5056847, + 13.4526263 + ], + [ + 52.5056334, + 13.4530278 + ], + [ + 52.5055167, + 13.4540598 + ], + [ + 52.505459, + 13.4545133 + ], + [ + 52.5054267, + 13.4547532 + ], + [ + 52.5054001, + 13.4549442 + ], + [ + 52.5053437, + 13.455319 + ], + [ + 52.5052754, + 13.4557607 + ], + [ + 52.5052081, + 13.4561668 + ], + [ + 52.5051699, + 13.4563852 + ], + [ + 52.5050778, + 13.4569022 + ] + ] + }, + { + "osmId": "4741937", + "name": null, + "lengthMeters": 80.87063589074664, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096974, + 13.4379759 + ], + [ + 52.5097039, + 13.4379602 + ], + [ + 52.509748, + 13.4378552 + ], + [ + 52.5097537, + 13.4378395 + ], + [ + 52.5097878, + 13.4377566 + ], + [ + 52.5099368, + 13.4374067 + ], + [ + 52.5101107, + 13.4369927 + ] + ] + }, + { + "osmId": "4742390", + "name": null, + "lengthMeters": 93.78726465814304, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4978775, + 13.4870678 + ], + [ + 52.4981199, + 13.4865426 + ], + [ + 52.4983854, + 13.4859617 + ] + ] + }, + { + "osmId": "4742394", + "name": null, + "lengthMeters": 200.16637331381378, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4962687, + 13.4887503 + ], + [ + 52.4952057, + 13.4911365 + ] + ] + }, + { + "osmId": "4742451", + "name": null, + "lengthMeters": 681.26279376627, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4762675, + 13.5367396 + ], + [ + 52.4767863, + 13.5355695 + ], + [ + 52.477261, + 13.5345066 + ], + [ + 52.4776541, + 13.5336823 + ], + [ + 52.4779679, + 13.5330508 + ], + [ + 52.4782728, + 13.5324343 + ], + [ + 52.4785643, + 13.5318132 + ], + [ + 52.4788496, + 13.5311733 + ], + [ + 52.4793867, + 13.529954 + ], + [ + 52.4799417, + 13.5286928 + ] + ] + }, + { + "osmId": "4742560", + "name": null, + "lengthMeters": 348.2811751105961, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321212, + 13.3137147 + ], + [ + 52.5322354, + 13.3145254 + ], + [ + 52.5325493, + 13.3168308 + ], + [ + 52.5326436, + 13.3175389 + ], + [ + 52.5326514, + 13.3175999 + ], + [ + 52.5326727, + 13.3177669 + ], + [ + 52.5328039, + 13.3187398 + ] + ] + }, + { + "osmId": "4745488", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 9351.969374387305, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6075043, + 13.0738734 + ], + [ + 52.6077585, + 13.0743497 + ], + [ + 52.6091175, + 13.0768965 + ], + [ + 52.6095098, + 13.077661 + ], + [ + 52.6106751, + 13.0799321 + ], + [ + 52.6119907, + 13.0826212 + ], + [ + 52.6121351, + 13.0829313 + ], + [ + 52.6131068, + 13.0850172 + ], + [ + 52.6132603, + 13.0853468 + ], + [ + 52.6138012, + 13.0865554 + ], + [ + 52.6148975, + 13.0890054 + ], + [ + 52.6162258, + 13.0919993 + ], + [ + 52.6191032, + 13.0985377 + ], + [ + 52.6191542, + 13.0986535 + ], + [ + 52.619224, + 13.0988112 + ], + [ + 52.6214236, + 13.1037807 + ], + [ + 52.6241847, + 13.1100194 + ], + [ + 52.6244355, + 13.110586 + ], + [ + 52.6254569, + 13.112894 + ], + [ + 52.6265146, + 13.1152839 + ], + [ + 52.6265507, + 13.1153656 + ], + [ + 52.6275892, + 13.1177122 + ], + [ + 52.6277557, + 13.1180885 + ], + [ + 52.6278925, + 13.1183976 + ], + [ + 52.6284985, + 13.119768 + ], + [ + 52.6289135, + 13.1207063 + ], + [ + 52.6289531, + 13.1207943 + ], + [ + 52.6289964, + 13.1208933 + ], + [ + 52.629236, + 13.1214333 + ], + [ + 52.6294502, + 13.1219184 + ], + [ + 52.6294877, + 13.1220031 + ], + [ + 52.63327, + 13.1305674 + ], + [ + 52.6343628, + 13.1330206 + ], + [ + 52.6348714, + 13.1341703 + ], + [ + 52.6349124, + 13.1342632 + ], + [ + 52.6372565, + 13.1395624 + ], + [ + 52.6412279, + 13.1485694 + ], + [ + 52.6412642, + 13.1486513 + ], + [ + 52.6439253, + 13.1546516 + ], + [ + 52.6451545, + 13.1574718 + ], + [ + 52.6531035, + 13.1754221 + ], + [ + 52.6532394, + 13.1757337 + ], + [ + 52.653946, + 13.1773268 + ], + [ + 52.6547605, + 13.1792819 + ], + [ + 52.6553488, + 13.1808589 + ], + [ + 52.655924, + 13.1825064 + ], + [ + 52.6563686, + 13.1840042 + ], + [ + 52.6564105, + 13.1841454 + ], + [ + 52.6564698, + 13.1843521 + ], + [ + 52.6568915, + 13.1858958 + ] + ] + }, + { + "osmId": "4745505", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 483.51060226547355, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6569956, + 13.1863046 + ], + [ + 52.6573997, + 13.187952 + ], + [ + 52.6575797, + 13.1888314 + ], + [ + 52.6577088, + 13.1894621 + ], + [ + 52.6580319, + 13.1912239 + ], + [ + 52.6580976, + 13.1915973 + ], + [ + 52.6583629, + 13.1931036 + ] + ] + }, + { + "osmId": "4745506", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 625.8149328158747, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6636442, + 13.2232004 + ], + [ + 52.6642708, + 13.2268476 + ], + [ + 52.664446, + 13.2278596 + ], + [ + 52.664632, + 13.2289229 + ], + [ + 52.6651906, + 13.2321231 + ] + ] + }, + { + "osmId": "4745509", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 410.8444732972454, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6602605, + 13.2039332 + ], + [ + 52.6602687, + 13.2039802 + ], + [ + 52.6606627, + 13.2062292 + ], + [ + 52.6612857, + 13.2097857 + ] + ] + }, + { + "osmId": "4745511", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 297.5040595555054, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6619276, + 13.2134411 + ], + [ + 52.6621506, + 13.2147327 + ], + [ + 52.6622149, + 13.2151136 + ], + [ + 52.6626651, + 13.2176815 + ] + ] + }, + { + "osmId": "4745513", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 194.00771861782061, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.66282, + 13.2185533 + ], + [ + 52.66283, + 13.2186086 + ], + [ + 52.6628517, + 13.218729 + ], + [ + 52.6633151, + 13.2213118 + ] + ] + }, + { + "osmId": "4745514", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 132.51850697125045, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6633151, + 13.2213118 + ], + [ + 52.6636442, + 13.2232004 + ] + ] + }, + { + "osmId": "4745516", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1067.844033385683, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6666281, + 13.2403439 + ], + [ + 52.6680504, + 13.2485083 + ], + [ + 52.6688001, + 13.2527638 + ], + [ + 52.6688142, + 13.2528438 + ], + [ + 52.6690784, + 13.2543433 + ], + [ + 52.6692332, + 13.2552292 + ], + [ + 52.6692387, + 13.2552605 + ], + [ + 52.6692908, + 13.2555588 + ] + ] + }, + { + "osmId": "4745520", + "name": null, + "lengthMeters": 3603.2671365384927, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6541752, + 13.2035083 + ], + [ + 52.6550372, + 13.2034659 + ], + [ + 52.6557212, + 13.2034474 + ], + [ + 52.6564803, + 13.2034467 + ], + [ + 52.6569773, + 13.2034461 + ], + [ + 52.6594758, + 13.2033532 + ], + [ + 52.6598736, + 13.2033297 + ], + [ + 52.6606582, + 13.2032972 + ], + [ + 52.6609229, + 13.2032862 + ], + [ + 52.6611708, + 13.2032759 + ], + [ + 52.6617097, + 13.2032519 + ], + [ + 52.6620151, + 13.203235 + ], + [ + 52.662326, + 13.2032041 + ], + [ + 52.6626293, + 13.2031504 + ], + [ + 52.6629937, + 13.2030544 + ], + [ + 52.6631819, + 13.2029867 + ], + [ + 52.6633693, + 13.2029069 + ], + [ + 52.6636258, + 13.2027766 + ], + [ + 52.663873, + 13.2026327 + ], + [ + 52.6641433, + 13.2024438 + ], + [ + 52.6643986, + 13.2022441 + ], + [ + 52.6647831, + 13.2018867 + ], + [ + 52.6651235, + 13.2015087 + ], + [ + 52.6652763, + 13.2013094 + ], + [ + 52.6653367, + 13.2012305 + ], + [ + 52.6656462, + 13.2008035 + ], + [ + 52.6660797, + 13.2001374 + ], + [ + 52.666469, + 13.1995285 + ], + [ + 52.6668699, + 13.1989195 + ], + [ + 52.6669499, + 13.1987979 + ], + [ + 52.6669812, + 13.1987504 + ], + [ + 52.6690462, + 13.1956771 + ], + [ + 52.6703842, + 13.1936817 + ], + [ + 52.6715904, + 13.1919927 + ], + [ + 52.672094, + 13.1912537 + ], + [ + 52.6747422, + 13.1873085 + ], + [ + 52.6758408, + 13.1856455 + ], + [ + 52.6759492, + 13.1854872 + ], + [ + 52.6760752, + 13.1852997 + ], + [ + 52.6778976, + 13.182562 + ], + [ + 52.6782368, + 13.182049 + ], + [ + 52.679602, + 13.180013 + ], + [ + 52.6805335, + 13.1786237 + ], + [ + 52.6805923, + 13.1785348 + ], + [ + 52.680898, + 13.1780747 + ] + ] + }, + { + "osmId": "4745586", + "name": null, + "lengthMeters": 2281.877102675624, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6716535, + 13.3156276 + ], + [ + 52.6718559, + 13.3149637 + ], + [ + 52.6720706, + 13.3143105 + ], + [ + 52.6720745, + 13.3142985 + ], + [ + 52.6724106, + 13.3132402 + ], + [ + 52.672659, + 13.3123814 + ], + [ + 52.6729007, + 13.3115505 + ], + [ + 52.6737744, + 13.3085471 + ], + [ + 52.6746146, + 13.3057575 + ], + [ + 52.6748045, + 13.3051262 + ], + [ + 52.6752517, + 13.3036045 + ], + [ + 52.6759223, + 13.3013358 + ], + [ + 52.676024, + 13.3010038 + ], + [ + 52.6761292, + 13.3006601 + ], + [ + 52.6764777, + 13.2995223 + ], + [ + 52.6766645, + 13.2990104 + ], + [ + 52.6769336, + 13.298359 + ], + [ + 52.6769515, + 13.2983158 + ], + [ + 52.6776144, + 13.2969023 + ], + [ + 52.6782727, + 13.2956783 + ], + [ + 52.678692, + 13.2949628 + ], + [ + 52.6792851, + 13.2940373 + ], + [ + 52.6797949, + 13.2932987 + ], + [ + 52.6803325, + 13.2925811 + ], + [ + 52.6808313, + 13.2919724 + ], + [ + 52.6813952, + 13.2913251 + ], + [ + 52.6819068, + 13.2908108 + ], + [ + 52.6824968, + 13.2902527 + ], + [ + 52.6826477, + 13.2901241 + ], + [ + 52.6827439, + 13.2900421 + ], + [ + 52.6830149, + 13.2898394 + ], + [ + 52.6833196, + 13.2896445 + ], + [ + 52.6836999, + 13.2894295 + ] + ] + }, + { + "osmId": "4745589", + "name": null, + "lengthMeters": 990.0590868195172, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6686762, + 13.3039533 + ], + [ + 52.6688074, + 13.304004 + ], + [ + 52.6689355, + 13.3040582 + ], + [ + 52.6690636, + 13.3041163 + ], + [ + 52.6691909, + 13.3041811 + ], + [ + 52.6693161, + 13.3042505 + ], + [ + 52.6694405, + 13.3043269 + ], + [ + 52.6695625, + 13.3044077 + ], + [ + 52.6696838, + 13.3044944 + ], + [ + 52.669804, + 13.3045903 + ], + [ + 52.6699222, + 13.3046898 + ], + [ + 52.6700387, + 13.3047955 + ], + [ + 52.6701524, + 13.3049051 + ], + [ + 52.6702645, + 13.305021 + ], + [ + 52.6703743, + 13.3051428 + ], + [ + 52.6704829, + 13.3052688 + ], + [ + 52.6705884, + 13.305401 + ], + [ + 52.670691, + 13.3055381 + ], + [ + 52.6707916, + 13.3056796 + ], + [ + 52.67089, + 13.3058273 + ], + [ + 52.6709859, + 13.3059801 + ], + [ + 52.6710786, + 13.3061353 + ], + [ + 52.6711685, + 13.3062962 + ], + [ + 52.6712562, + 13.3064609 + ], + [ + 52.67134, + 13.3066292 + ], + [ + 52.6714216, + 13.3068017 + ], + [ + 52.6714996, + 13.3069791 + ], + [ + 52.6715749, + 13.3071584 + ], + [ + 52.6716332, + 13.3073065 + ], + [ + 52.6717141, + 13.3075297 + ], + [ + 52.6717792, + 13.3077203 + ], + [ + 52.671841, + 13.3079129 + ], + [ + 52.671899, + 13.3081084 + ], + [ + 52.6719536, + 13.3083074 + ], + [ + 52.6720049, + 13.3085086 + ], + [ + 52.6720527, + 13.3087108 + ], + [ + 52.6720966, + 13.3089153 + ], + [ + 52.6721381, + 13.3091247 + ], + [ + 52.6721738, + 13.309334 + ], + [ + 52.6722073, + 13.3095447 + ], + [ + 52.6722362, + 13.3097571 + ], + [ + 52.6722617, + 13.3099726 + ], + [ + 52.672282, + 13.3101886 + ], + [ + 52.6723, + 13.3104051 + ], + [ + 52.6723143, + 13.3106212 + ], + [ + 52.6723237, + 13.3108398 + ], + [ + 52.6723289, + 13.3110763 + ], + [ + 52.6723304, + 13.3112751 + ], + [ + 52.6723298, + 13.3114925 + ], + [ + 52.6723252, + 13.3117124 + ], + [ + 52.6723152, + 13.3119306 + ], + [ + 52.6723016, + 13.3121471 + ], + [ + 52.6722837, + 13.3123639 + ], + [ + 52.6722627, + 13.3125814 + ], + [ + 52.6722373, + 13.3127987 + ], + [ + 52.6722087, + 13.3130115 + ], + [ + 52.6721767, + 13.3132244 + ], + [ + 52.6721403, + 13.3134354 + ], + [ + 52.6721007, + 13.3136446 + ], + [ + 52.6720916, + 13.31369 + ], + [ + 52.6720591, + 13.3138507 + ], + [ + 52.6720147, + 13.3140581 + ], + [ + 52.6719692, + 13.3142608 + ], + [ + 52.6719235, + 13.3144614 + ], + [ + 52.6718746, + 13.3146618 + ], + [ + 52.6718219, + 13.314861 + ], + [ + 52.6716454, + 13.3155022 + ] + ] + }, + { + "osmId": "4745597", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 111.87403256950945, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6732086, + 13.2755764 + ], + [ + 52.6731754, + 13.2753913 + ], + [ + 52.6729028, + 13.2739957 + ] + ] + }, + { + "osmId": "4745660", + "name": null, + "lengthMeters": 690.8027911851964, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5982269, + 13.3322455 + ], + [ + 52.598438, + 13.3318578 + ], + [ + 52.5988691, + 13.3310758 + ], + [ + 52.5997059, + 13.329557 + ], + [ + 52.599841, + 13.3293183 + ], + [ + 52.6000275, + 13.3289898 + ], + [ + 52.600194, + 13.3287066 + ], + [ + 52.6003523, + 13.328449 + ], + [ + 52.6005165, + 13.3281972 + ], + [ + 52.6006845, + 13.3279492 + ], + [ + 52.6008576, + 13.3277118 + ], + [ + 52.6010036, + 13.3275189 + ], + [ + 52.6011278, + 13.3273651 + ], + [ + 52.6014213, + 13.3270067 + ], + [ + 52.6024352, + 13.3258183 + ], + [ + 52.6024819, + 13.3257635 + ], + [ + 52.6027998, + 13.3253891 + ] + ] + }, + { + "osmId": "4746409", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 4421.441805314346, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6570462, + 13.3765279 + ], + [ + 52.6579754, + 13.3722505 + ], + [ + 52.6581035, + 13.3716579 + ], + [ + 52.6583681, + 13.3704334 + ], + [ + 52.6597012, + 13.3642699 + ], + [ + 52.6607182, + 13.3595612 + ], + [ + 52.6610247, + 13.3581455 + ], + [ + 52.6611079, + 13.3577616 + ], + [ + 52.6611726, + 13.3574628 + ], + [ + 52.6617286, + 13.354895 + ], + [ + 52.6618322, + 13.3544167 + ], + [ + 52.6621918, + 13.352757 + ], + [ + 52.6626751, + 13.3505227 + ], + [ + 52.6628684, + 13.3496289 + ], + [ + 52.6629557, + 13.3492254 + ], + [ + 52.6636662, + 13.3459409 + ], + [ + 52.6639679, + 13.3445479 + ], + [ + 52.6648397, + 13.3405181 + ], + [ + 52.6649117, + 13.3401854 + ], + [ + 52.6651795, + 13.3389371 + ], + [ + 52.6655144, + 13.3373867 + ], + [ + 52.6656094, + 13.3369534 + ], + [ + 52.6657087, + 13.3365243 + ], + [ + 52.6658072, + 13.3360948 + ], + [ + 52.6659133, + 13.3356564 + ], + [ + 52.6660234, + 13.3352128 + ], + [ + 52.6660576, + 13.3350775 + ], + [ + 52.6660871, + 13.3349608 + ], + [ + 52.6662157, + 13.3344686 + ], + [ + 52.6663504, + 13.3339688 + ], + [ + 52.6664888, + 13.33347 + ], + [ + 52.6666306, + 13.3329736 + ], + [ + 52.6673556, + 13.3304702 + ], + [ + 52.6678211, + 13.3288629 + ], + [ + 52.6681665, + 13.3276703 + ], + [ + 52.6689597, + 13.324931 + ], + [ + 52.6693108, + 13.3237185 + ], + [ + 52.6697405, + 13.3222346 + ], + [ + 52.6698691, + 13.3217903 + ], + [ + 52.6703372, + 13.3201738 + ], + [ + 52.6706914, + 13.3189505 + ], + [ + 52.6710772, + 13.3176178 + ], + [ + 52.6715169, + 13.3160994 + ], + [ + 52.6716535, + 13.3156276 + ] + ] + }, + { + "osmId": "4751005", + "name": null, + "lengthMeters": 749.8692968875704, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.555501, + 13.3892067 + ], + [ + 52.5555538, + 13.3885397 + ], + [ + 52.5556279, + 13.3876233 + ], + [ + 52.5558777, + 13.3844864 + ], + [ + 52.5558828, + 13.3844207 + ], + [ + 52.5558904, + 13.3843238 + ], + [ + 52.5559036, + 13.3841541 + ], + [ + 52.5559094, + 13.3840801 + ], + [ + 52.5559136, + 13.3840269 + ], + [ + 52.5559762, + 13.383244 + ], + [ + 52.5560003, + 13.3829426 + ], + [ + 52.5561037, + 13.38165 + ], + [ + 52.5561064, + 13.3816156 + ], + [ + 52.5561098, + 13.3815707 + ], + [ + 52.5561149, + 13.3815053 + ], + [ + 52.5561218, + 13.3814152 + ], + [ + 52.556126, + 13.3813602 + ], + [ + 52.5561288, + 13.3813241 + ], + [ + 52.5563196, + 13.3788833 + ], + [ + 52.5563264, + 13.3787988 + ], + [ + 52.5563734, + 13.378208 + ] + ] + }, + { + "osmId": "4751222", + "name": null, + "lengthMeters": 316.33681031321606, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5581054, + 13.4136429 + ], + [ + 52.557825, + 13.4137909 + ], + [ + 52.5577534, + 13.4138323 + ], + [ + 52.557669, + 13.4138798 + ], + [ + 52.5576048, + 13.4139204 + ], + [ + 52.5575744, + 13.4139381 + ], + [ + 52.5572636, + 13.4141109 + ], + [ + 52.5571004, + 13.4141787 + ], + [ + 52.5569242, + 13.4142388 + ], + [ + 52.5553231, + 13.4144822 + ] + ] + }, + { + "osmId": "4751277", + "name": null, + "lengthMeters": 119.56263505431687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5408177, + 13.4121066 + ], + [ + 52.5408468, + 13.4121313 + ], + [ + 52.5409011, + 13.4121772 + ], + [ + 52.5409353, + 13.412201 + ], + [ + 52.5409456, + 13.4122093 + ], + [ + 52.5409742, + 13.4122246 + ], + [ + 52.5409937, + 13.4122354 + ], + [ + 52.5409989, + 13.4122375 + ], + [ + 52.5410132, + 13.4122442 + ], + [ + 52.5410355, + 13.4122506 + ], + [ + 52.5410529, + 13.4122548 + ], + [ + 52.5410814, + 13.4122603 + ], + [ + 52.5411211, + 13.4122654 + ], + [ + 52.5411237, + 13.4122658 + ], + [ + 52.5411463, + 13.4122676 + ], + [ + 52.5411635, + 13.412268 + ], + [ + 52.5412017, + 13.412269 + ], + [ + 52.5412426, + 13.4122718 + ], + [ + 52.5418735, + 13.4123222 + ] + ] + }, + { + "osmId": "4751307", + "name": null, + "lengthMeters": 255.341623003368, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5525644, + 13.425191 + ], + [ + 52.5525559, + 13.4252684 + ], + [ + 52.5524422, + 13.4263051 + ], + [ + 52.5524226, + 13.4264854 + ], + [ + 52.552401, + 13.4266586 + ], + [ + 52.5523855, + 13.4267638 + ], + [ + 52.5523657, + 13.4268749 + ], + [ + 52.5523423, + 13.4269949 + ], + [ + 52.5523276, + 13.4270596 + ], + [ + 52.552291, + 13.4272101 + ], + [ + 52.5522495, + 13.4273535 + ], + [ + 52.552234, + 13.4274017 + ], + [ + 52.5521926, + 13.4275253 + ], + [ + 52.5521509, + 13.4276376 + ], + [ + 52.5517476, + 13.4286584 + ] + ] + }, + { + "osmId": "4752792", + "name": null, + "lengthMeters": 195.53436665345205, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4468954, + 13.3612848 + ], + [ + 52.4465281, + 13.3615154 + ], + [ + 52.4460638, + 13.3617601 + ], + [ + 52.4455185, + 13.3620724 + ], + [ + 52.4452365, + 13.3622402 + ] + ] + }, + { + "osmId": "4752796", + "name": null, + "lengthMeters": 551.2579045600348, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4534455, + 13.3574048 + ], + [ + 52.4529705, + 13.3576832 + ], + [ + 52.4527281, + 13.3578251 + ], + [ + 52.4520397, + 13.358232 + ], + [ + 52.4519258, + 13.3583 + ], + [ + 52.4515752, + 13.3585091 + ], + [ + 52.4507891, + 13.3589984 + ], + [ + 52.4507106, + 13.3590483 + ], + [ + 52.449463, + 13.359833 + ], + [ + 52.4494477, + 13.3598429 + ], + [ + 52.449017, + 13.3601052 + ], + [ + 52.4487988, + 13.3602391 + ] + ] + }, + { + "osmId": "4752990", + "name": null, + "lengthMeters": 880.7979411702471, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4182346, + 13.3136486 + ], + [ + 52.4171422, + 13.3128081 + ], + [ + 52.4161312, + 13.3120454 + ], + [ + 52.4157036, + 13.3117303 + ], + [ + 52.414951, + 13.3112204 + ], + [ + 52.4145722, + 13.3109867 + ], + [ + 52.4143223, + 13.3108326 + ], + [ + 52.4136902, + 13.3104624 + ], + [ + 52.4125817, + 13.3097692 + ], + [ + 52.4124075, + 13.3096603 + ], + [ + 52.4121506, + 13.3095095 + ], + [ + 52.4119029, + 13.3093699 + ], + [ + 52.4112519, + 13.3090577 + ], + [ + 52.4108778, + 13.3088792 + ] + ] + }, + { + "osmId": "4752992", + "name": null, + "lengthMeters": 208.6356455204488, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4278543, + 13.3257498 + ], + [ + 52.4272819, + 13.3250153 + ], + [ + 52.4268299, + 13.3243075 + ], + [ + 52.4267572, + 13.3241838 + ], + [ + 52.4264659, + 13.3236881 + ] + ] + }, + { + "osmId": "4753113", + "name": null, + "lengthMeters": 280.58257451499344, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4572518, + 13.3561876 + ], + [ + 52.4568075, + 13.3562331 + ], + [ + 52.4566123, + 13.3562554 + ], + [ + 52.456467, + 13.356276 + ], + [ + 52.4564238, + 13.3562821 + ], + [ + 52.4563425, + 13.3562941 + ], + [ + 52.4560973, + 13.3563383 + ], + [ + 52.4558664, + 13.3563835 + ], + [ + 52.4556355, + 13.3564359 + ], + [ + 52.4552125, + 13.3565473 + ], + [ + 52.4550184, + 13.3566082 + ], + [ + 52.4549999, + 13.356614 + ], + [ + 52.4548758, + 13.3566585 + ], + [ + 52.4547516, + 13.3567056 + ] + ] + }, + { + "osmId": "4756202", + "name": null, + "lengthMeters": 440.63647887952203, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4089596, + 13.3079688 + ], + [ + 52.4066782, + 13.3068861 + ], + [ + 52.4061975, + 13.3066844 + ], + [ + 52.4056559, + 13.3064781 + ], + [ + 52.4053962, + 13.3063761 + ], + [ + 52.4051364, + 13.3062658 + ] + ] + }, + { + "osmId": "4756281", + "name": null, + "lengthMeters": 141.14859199823997, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776573, + 13.363525 + ], + [ + 52.4775933, + 13.363608 + ], + [ + 52.4775263, + 13.3636923 + ], + [ + 52.4774313, + 13.3638054 + ], + [ + 52.4773152, + 13.3639343 + ], + [ + 52.4772348, + 13.364016 + ], + [ + 52.4771381, + 13.3641101 + ], + [ + 52.4770448, + 13.3641962 + ], + [ + 52.4769436, + 13.3642828 + ], + [ + 52.4768596, + 13.3643518 + ], + [ + 52.476756, + 13.3644304 + ], + [ + 52.4765637, + 13.3645679 + ] + ] + }, + { + "osmId": "4756283", + "name": null, + "lengthMeters": 200.45228751832838, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.477521, + 13.3635084 + ], + [ + 52.4774378, + 13.363609 + ], + [ + 52.4773539, + 13.3637059 + ], + [ + 52.4772394, + 13.3638309 + ], + [ + 52.4771224, + 13.3639467 + ], + [ + 52.4770635, + 13.3640041 + ], + [ + 52.4770039, + 13.3640589 + ], + [ + 52.4769063, + 13.3641436 + ], + [ + 52.4768266, + 13.3642084 + ], + [ + 52.4767128, + 13.364297 + ], + [ + 52.4765017, + 13.3644452 + ], + [ + 52.475912, + 13.3648139 + ] + ] + }, + { + "osmId": "4756286", + "name": null, + "lengthMeters": 211.15967393019372, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4922924, + 13.3720975 + ], + [ + 52.4922248, + 13.3720942 + ], + [ + 52.4920665, + 13.3720811 + ], + [ + 52.4920512, + 13.3720797 + ], + [ + 52.4912742, + 13.3719974 + ], + [ + 52.4911246, + 13.3719824 + ], + [ + 52.4909741, + 13.3719722 + ], + [ + 52.4907271, + 13.3719638 + ], + [ + 52.4905571, + 13.3719558 + ], + [ + 52.4903958, + 13.3719534 + ] + ] + }, + { + "osmId": "4756290", + "name": null, + "lengthMeters": 892.8123821116848, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4876922, + 13.371984 + ], + [ + 52.4864725, + 13.3715799 + ], + [ + 52.4861061, + 13.3714443 + ], + [ + 52.4857105, + 13.3712785 + ], + [ + 52.4853448, + 13.3711181 + ], + [ + 52.4847926, + 13.3708646 + ], + [ + 52.4845537, + 13.3707404 + ], + [ + 52.4838761, + 13.370388 + ], + [ + 52.4833639, + 13.370101 + ], + [ + 52.4827546, + 13.3697371 + ], + [ + 52.4822764, + 13.3694541 + ], + [ + 52.4816425, + 13.3690518 + ], + [ + 52.4808912, + 13.368525 + ], + [ + 52.480638, + 13.3683375 + ], + [ + 52.4801874, + 13.3680026 + ], + [ + 52.4800766, + 13.3679224 + ] + ] + }, + { + "osmId": "4756357", + "name": null, + "lengthMeters": 212.7061931195273, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4932634, + 13.3686844 + ], + [ + 52.4935957, + 13.3689467 + ], + [ + 52.4937352, + 13.3691168 + ], + [ + 52.4938734, + 13.3693036 + ], + [ + 52.4940603, + 13.3696118 + ], + [ + 52.4942134, + 13.3698824 + ], + [ + 52.4944287, + 13.370279 + ], + [ + 52.4945312, + 13.3704612 + ], + [ + 52.494702, + 13.3707073 + ] + ] + }, + { + "osmId": "4756358", + "name": null, + "lengthMeters": 582.9086755132753, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4955859, + 13.3718873 + ], + [ + 52.4971813, + 13.373882 + ], + [ + 52.4974132, + 13.3741569 + ], + [ + 52.4976317, + 13.3744598 + ], + [ + 52.4980091, + 13.375042 + ], + [ + 52.4981897, + 13.3753771 + ], + [ + 52.4983612, + 13.3757399 + ], + [ + 52.4988035, + 13.3768384 + ], + [ + 52.4992483, + 13.3779182 + ] + ] + }, + { + "osmId": "4756366", + "name": "Dresdner Bahn", + "lengthMeters": 1270.9582320982327, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.468261, + 13.3621794 + ], + [ + 52.4671618, + 13.3617837 + ], + [ + 52.4667229, + 13.3616286 + ], + [ + 52.4633095, + 13.3604138 + ], + [ + 52.463192, + 13.3603724 + ], + [ + 52.4596592, + 13.3591129 + ], + [ + 52.459122, + 13.3589172 + ], + [ + 52.4570919, + 13.3581941 + ] + ] + }, + { + "osmId": "4756367", + "name": "Dresdner Bahn", + "lengthMeters": 1073.5264228752403, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4570184, + 13.3586688 + ], + [ + 52.4577358, + 13.3589253 + ], + [ + 52.4587786, + 13.3592963 + ], + [ + 52.4589768, + 13.359368 + ], + [ + 52.4594942, + 13.3595488 + ], + [ + 52.4604846, + 13.3598833 + ], + [ + 52.4611864, + 13.3601149 + ], + [ + 52.4619871, + 13.3603953 + ], + [ + 52.4632594, + 13.3608519 + ], + [ + 52.4656866, + 13.3617252 + ], + [ + 52.4664584, + 13.3619888 + ] + ] + }, + { + "osmId": "4756368", + "name": "Dresdner Bahn", + "lengthMeters": 237.79174036482974, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4562779, + 13.3579473 + ], + [ + 52.456076, + 13.3579 + ], + [ + 52.4558556, + 13.3578582 + ], + [ + 52.4556441, + 13.3578277 + ], + [ + 52.45543, + 13.3578116 + ], + [ + 52.455183, + 13.3578014 + ], + [ + 52.4548545, + 13.3578123 + ], + [ + 52.4546765, + 13.3578265 + ], + [ + 52.4544118, + 13.3578652 + ], + [ + 52.4541472, + 13.3579167 + ] + ] + }, + { + "osmId": "4756369", + "name": "Dresdner Bahn", + "lengthMeters": 802.0688185475946, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4541472, + 13.3579167 + ], + [ + 52.453981, + 13.3579541 + ], + [ + 52.453767, + 13.3580269 + ], + [ + 52.4535418, + 13.3581055 + ], + [ + 52.4533052, + 13.3581937 + ], + [ + 52.4530791, + 13.3582962 + ], + [ + 52.4529004, + 13.3583847 + ], + [ + 52.4527474, + 13.3584576 + ], + [ + 52.4525401, + 13.358567 + ], + [ + 52.4522989, + 13.3586928 + ], + [ + 52.4516329, + 13.3590524 + ], + [ + 52.4510142, + 13.3593884 + ], + [ + 52.4507174, + 13.359534 + ], + [ + 52.4503701, + 13.3597075 + ], + [ + 52.4499546, + 13.3599507 + ], + [ + 52.4497916, + 13.3600393 + ], + [ + 52.4495136, + 13.3601862 + ], + [ + 52.4492069, + 13.3603462 + ], + [ + 52.4488353, + 13.3605564 + ], + [ + 52.4474794, + 13.3612823 + ], + [ + 52.4472598, + 13.3613993 + ] + ] + }, + { + "osmId": "4763152", + "name": null, + "lengthMeters": 296.41513979268694, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2053722, + 11.4638814 + ], + [ + 48.2053569, + 11.4640607 + ], + [ + 48.2053322, + 11.4642823 + ], + [ + 48.2052823, + 11.4646397 + ], + [ + 48.2052129, + 11.4650114 + ], + [ + 48.2051685, + 11.465208 + ], + [ + 48.2051262, + 11.4653795 + ], + [ + 48.2050525, + 11.4656504 + ], + [ + 48.2049685, + 11.4659303 + ], + [ + 48.2049245, + 11.4660682 + ], + [ + 48.2049111, + 11.4661104 + ], + [ + 48.2044078, + 11.4675814 + ] + ] + }, + { + "osmId": "4766529", + "name": null, + "lengthMeters": 511.99428399207716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6079144, + 10.0170871 + ], + [ + 53.6080131, + 10.0174419 + ], + [ + 53.608639, + 10.0196642 + ], + [ + 53.6087421, + 10.0199752 + ], + [ + 53.6088487, + 10.0201986 + ], + [ + 53.6090392, + 10.0205746 + ], + [ + 53.6091246, + 10.0207776 + ], + [ + 53.6091809, + 10.0209455 + ], + [ + 53.6092398, + 10.0211404 + ], + [ + 53.6094662, + 10.0219131 + ], + [ + 53.6096478, + 10.0225768 + ], + [ + 53.6097154, + 10.0228301 + ], + [ + 53.6098229, + 10.0232059 + ], + [ + 53.6100547, + 10.0239309 + ] + ] + }, + { + "osmId": "4766532", + "name": null, + "lengthMeters": 102.18935618000307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6066595, + 10.0126115 + ], + [ + 53.607047, + 10.014016 + ] + ] + }, + { + "osmId": "4766534", + "name": null, + "lengthMeters": 190.7624117537716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6051525, + 10.0068962 + ], + [ + 53.6054097, + 10.0079743 + ], + [ + 53.6058192, + 10.00956 + ] + ] + }, + { + "osmId": "4776237", + "name": null, + "lengthMeters": 170.01809303962855, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5694115, + 13.4036385 + ], + [ + 52.5694141, + 13.4036613 + ], + [ + 52.5695222, + 13.4044677 + ], + [ + 52.5695371, + 13.4045701 + ], + [ + 52.5695632, + 13.4047644 + ], + [ + 52.5695739, + 13.4048492 + ], + [ + 52.5695831, + 13.404915 + ], + [ + 52.5695928, + 13.4049745 + ], + [ + 52.5696018, + 13.4050251 + ], + [ + 52.569623, + 13.4051429 + ], + [ + 52.5696385, + 13.4052171 + ], + [ + 52.5696537, + 13.4052833 + ], + [ + 52.5696777, + 13.4053834 + ], + [ + 52.5697455, + 13.4056508 + ], + [ + 52.5698477, + 13.4060406 + ] + ] + }, + { + "osmId": "4777580", + "name": null, + "lengthMeters": 237.88549546855563, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3919506, + 13.0999923 + ], + [ + 52.3916433, + 13.096523 + ] + ] + }, + { + "osmId": "4782367", + "name": null, + "lengthMeters": 809.6495850847582, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4342102, + 13.5421517 + ], + [ + 52.4331759, + 13.5435445 + ], + [ + 52.4328142, + 13.5440268 + ], + [ + 52.4325085, + 13.5444469 + ], + [ + 52.4321491, + 13.544956 + ], + [ + 52.4315546, + 13.5458309 + ], + [ + 52.4311683, + 13.5464012 + ], + [ + 52.4301562, + 13.547902 + ], + [ + 52.4299324, + 13.5482442 + ], + [ + 52.4287408, + 13.5500305 + ] + ] + }, + { + "osmId": "4782400", + "name": "Stettiner Bahn", + "lengthMeters": 641.532165255941, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5781125, + 13.4298566 + ], + [ + 52.5786299, + 13.4303434 + ], + [ + 52.5789426, + 13.4306142 + ], + [ + 52.5792001, + 13.430838 + ], + [ + 52.5795542, + 13.4311579 + ], + [ + 52.5799708, + 13.43155 + ], + [ + 52.5803946, + 13.4319812 + ], + [ + 52.580822, + 13.4324395 + ], + [ + 52.5822022, + 13.433957 + ], + [ + 52.5830275, + 13.4348168 + ] + ] + }, + { + "osmId": "4783077", + "name": null, + "lengthMeters": 396.338229821466, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3726278, + 13.1134588 + ], + [ + 52.3723038, + 13.1143599 + ], + [ + 52.3722424, + 13.1145352 + ], + [ + 52.3721161, + 13.1149215 + ], + [ + 52.3720178, + 13.115304 + ], + [ + 52.3719636, + 13.1156076 + ], + [ + 52.3719289, + 13.1159325 + ], + [ + 52.3719162, + 13.1162573 + ], + [ + 52.3719268, + 13.1166129 + ], + [ + 52.3719608, + 13.116943 + ], + [ + 52.3720076, + 13.1172204 + ], + [ + 52.3720298, + 13.1173211 + ], + [ + 52.3720536, + 13.1174205 + ], + [ + 52.372088, + 13.1175482 + ], + [ + 52.3721122, + 13.1176298 + ], + [ + 52.3721377, + 13.1177095 + ], + [ + 52.3721941, + 13.1178668 + ], + [ + 52.3722206, + 13.117934 + ], + [ + 52.3722481, + 13.1179999 + ], + [ + 52.3723051, + 13.1181249 + ], + [ + 52.3723234, + 13.118162 + ], + [ + 52.3723592, + 13.1182323 + ], + [ + 52.3724235, + 13.118346 + ], + [ + 52.3724698, + 13.118423 + ], + [ + 52.3725447, + 13.1185373 + ], + [ + 52.3725658, + 13.1185678 + ], + [ + 52.3725971, + 13.1186118 + ], + [ + 52.3726297, + 13.1186584 + ] + ] + }, + { + "osmId": "4783081", + "name": null, + "lengthMeters": 227.12943711983036, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3740427, + 13.1070753 + ], + [ + 52.3741025, + 13.1073427 + ], + [ + 52.3741541, + 13.1076616 + ], + [ + 52.3741637, + 13.1077327 + ], + [ + 52.3741815, + 13.1079179 + ], + [ + 52.3741906, + 13.1080719 + ], + [ + 52.3741944, + 13.1082496 + ], + [ + 52.374192, + 13.1084551 + ], + [ + 52.3741807, + 13.1086615 + ], + [ + 52.3741632, + 13.1088459 + ], + [ + 52.3741408, + 13.1090076 + ], + [ + 52.3741163, + 13.1091457 + ], + [ + 52.3740626, + 13.1093915 + ], + [ + 52.374017, + 13.1095617 + ], + [ + 52.3739447, + 13.1097934 + ], + [ + 52.3738916, + 13.1099566 + ], + [ + 52.3737952, + 13.1102283 + ], + [ + 52.3737879, + 13.1102479 + ] + ] + }, + { + "osmId": "4783085", + "name": null, + "lengthMeters": 145.23639154681132, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3732944, + 13.111619 + ], + [ + 52.3726278, + 13.1134588 + ] + ] + }, + { + "osmId": "4783146", + "name": null, + "lengthMeters": 4690.150274255104, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3703443, + 13.1099822 + ], + [ + 52.3691526, + 13.1088065 + ], + [ + 52.3685911, + 13.1082521 + ], + [ + 52.3683851, + 13.1080533 + ], + [ + 52.3677397, + 13.1074079 + ], + [ + 52.3673456, + 13.1070283 + ], + [ + 52.3667454, + 13.1064321 + ], + [ + 52.3665097, + 13.106198 + ], + [ + 52.3646971, + 13.1044058 + ], + [ + 52.3643998, + 13.1041167 + ], + [ + 52.3603669, + 13.1001379 + ], + [ + 52.3589384, + 13.0987398 + ], + [ + 52.3588789, + 13.0986813 + ], + [ + 52.3588168, + 13.0986198 + ], + [ + 52.3585515, + 13.09836 + ], + [ + 52.3582656, + 13.0980856 + ], + [ + 52.357426, + 13.097255 + ], + [ + 52.3569007, + 13.0967313 + ], + [ + 52.3558285, + 13.0956625 + ], + [ + 52.3553999, + 13.0952353 + ], + [ + 52.3552721, + 13.0951079 + ], + [ + 52.353899, + 13.0937617 + ], + [ + 52.3518959, + 13.091798 + ], + [ + 52.3508269, + 13.0907466 + ], + [ + 52.3506639, + 13.0905867 + ], + [ + 52.3492945, + 13.0892433 + ], + [ + 52.3492078, + 13.0891583 + ], + [ + 52.3477299, + 13.0877048 + ], + [ + 52.3458074, + 13.0858082 + ], + [ + 52.3442208, + 13.0842407 + ], + [ + 52.3432391, + 13.0832815 + ], + [ + 52.3427438, + 13.0827945 + ], + [ + 52.3426684, + 13.0827204 + ], + [ + 52.3412617, + 13.0813381 + ], + [ + 52.3409956, + 13.0810766 + ], + [ + 52.3402236, + 13.0803146 + ], + [ + 52.3401086, + 13.0802004 + ], + [ + 52.3397216, + 13.079801 + ], + [ + 52.3393797, + 13.0794383 + ], + [ + 52.3389762, + 13.0789806 + ], + [ + 52.3380735, + 13.0778829 + ], + [ + 52.3366163, + 13.0760615 + ], + [ + 52.3358031, + 13.0750446 + ], + [ + 52.3352693, + 13.0743925 + ], + [ + 52.3350025, + 13.0740562 + ], + [ + 52.3347454, + 13.0737162 + ], + [ + 52.3345732, + 13.0734841 + ] + ] + }, + { + "osmId": "4783168", + "name": null, + "lengthMeters": 269.94648599069825, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3731063, + 13.1192442 + ], + [ + 52.3732767, + 13.1194596 + ], + [ + 52.3733447, + 13.1195487 + ], + [ + 52.373406, + 13.1196354 + ], + [ + 52.3734775, + 13.1197461 + ], + [ + 52.3735318, + 13.1198341 + ], + [ + 52.3735849, + 13.1199344 + ], + [ + 52.373593, + 13.1199502 + ], + [ + 52.3736232, + 13.1200112 + ], + [ + 52.3736484, + 13.1200634 + ], + [ + 52.3736682, + 13.1201059 + ], + [ + 52.3736909, + 13.1201569 + ], + [ + 52.3737065, + 13.1201937 + ], + [ + 52.3737374, + 13.1202684 + ], + [ + 52.3737507, + 13.120302 + ], + [ + 52.3737757, + 13.1203673 + ], + [ + 52.3738074, + 13.1204542 + ], + [ + 52.3738337, + 13.1205294 + ], + [ + 52.3738559, + 13.1205944 + ], + [ + 52.3739153, + 13.1207763 + ], + [ + 52.3739304, + 13.1208238 + ], + [ + 52.3739549, + 13.1209017 + ], + [ + 52.3742642, + 13.1218977 + ], + [ + 52.3744487, + 13.1224933 + ] + ] + }, + { + "osmId": "4783277", + "name": null, + "lengthMeters": 2088.013512324542, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.376193, + 13.0847799 + ], + [ + 52.3759159, + 13.0851984 + ], + [ + 52.375794, + 13.0853731 + ], + [ + 52.3755282, + 13.0857675 + ], + [ + 52.3750435, + 13.0864869 + ], + [ + 52.3746667, + 13.0870116 + ], + [ + 52.3745245, + 13.0871485 + ], + [ + 52.3743478, + 13.0873108 + ], + [ + 52.3740973, + 13.0874755 + ], + [ + 52.3737014, + 13.0877277 + ], + [ + 52.3735445, + 13.08782 + ], + [ + 52.3734526, + 13.0878736 + ], + [ + 52.3734047, + 13.0879022 + ], + [ + 52.3733475, + 13.0879342 + ], + [ + 52.373086, + 13.0881025 + ], + [ + 52.3727419, + 13.0883062 + ], + [ + 52.3727342, + 13.0883108 + ], + [ + 52.3719743, + 13.088771 + ], + [ + 52.3716719, + 13.0889796 + ], + [ + 52.3708506, + 13.0896243 + ], + [ + 52.3696789, + 13.0905506 + ], + [ + 52.3691352, + 13.0910213 + ], + [ + 52.3688384, + 13.0912542 + ], + [ + 52.3686073, + 13.0914345 + ], + [ + 52.3685403, + 13.0914867 + ], + [ + 52.3684597, + 13.0915449 + ], + [ + 52.3681965, + 13.091735 + ], + [ + 52.3676524, + 13.0921473 + ], + [ + 52.36617, + 13.0932679 + ], + [ + 52.3661155, + 13.0933091 + ], + [ + 52.3660573, + 13.0933516 + ], + [ + 52.3658201, + 13.0935246 + ], + [ + 52.3655951, + 13.0936961 + ], + [ + 52.3654802, + 13.0937783 + ], + [ + 52.3650072, + 13.0940887 + ], + [ + 52.363764, + 13.0948138 + ], + [ + 52.3637448, + 13.0948251 + ], + [ + 52.3636739, + 13.0948667 + ], + [ + 52.3636257, + 13.0948948 + ], + [ + 52.3632088, + 13.0951376 + ], + [ + 52.3624334, + 13.0956446 + ], + [ + 52.3616992, + 13.0962226 + ], + [ + 52.361649, + 13.0962635 + ], + [ + 52.3604055, + 13.0972762 + ], + [ + 52.3603647, + 13.0973094 + ], + [ + 52.3602875, + 13.0973615 + ], + [ + 52.3601541, + 13.097424 + ], + [ + 52.3600336, + 13.0974673 + ], + [ + 52.3599084, + 13.0974978 + ], + [ + 52.3597838, + 13.0975078 + ], + [ + 52.3597611, + 13.0975086 + ], + [ + 52.359294, + 13.0974061 + ] + ] + }, + { + "osmId": "4783353", + "name": null, + "lengthMeters": 271.5430394726977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5534644, + 13.4737156 + ], + [ + 52.5535558, + 13.4721127 + ], + [ + 52.5536576, + 13.4705925 + ], + [ + 52.553666, + 13.4704704 + ], + [ + 52.553678, + 13.4702956 + ], + [ + 52.5536883, + 13.4701482 + ], + [ + 52.5537176, + 13.469721 + ] + ] + }, + { + "osmId": "4783354", + "name": null, + "lengthMeters": 159.89845674474782, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5509212, + 13.4663206 + ], + [ + 52.5510513, + 13.4662546 + ], + [ + 52.5511282, + 13.4662047 + ], + [ + 52.551205, + 13.466147 + ], + [ + 52.551354, + 13.4660298 + ], + [ + 52.5515946, + 13.465843 + ], + [ + 52.5516964, + 13.4657578 + ], + [ + 52.5517318, + 13.4657137 + ], + [ + 52.5517518, + 13.4656873 + ], + [ + 52.5517714, + 13.4656534 + ], + [ + 52.5517835, + 13.465629 + ], + [ + 52.5517988, + 13.465595 + ], + [ + 52.5518106, + 13.4655604 + ], + [ + 52.551823, + 13.4655197 + ], + [ + 52.5518371, + 13.4654535 + ], + [ + 52.5518436, + 13.4653974 + ], + [ + 52.551849, + 13.4653189 + ], + [ + 52.5518457, + 13.465246 + ], + [ + 52.5518375, + 13.4651795 + ], + [ + 52.5518259, + 13.4651198 + ], + [ + 52.5518103, + 13.4650691 + ], + [ + 52.5517521, + 13.4649149 + ] + ] + }, + { + "osmId": "4783356", + "name": null, + "lengthMeters": 92.78488242144735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5516776, + 13.4657244 + ], + [ + 52.5516526, + 13.4657467 + ], + [ + 52.5513367, + 13.4660001 + ], + [ + 52.5511905, + 13.4661122 + ], + [ + 52.5511147, + 13.4661635 + ], + [ + 52.5510395, + 13.4662079 + ], + [ + 52.5509143, + 13.4662732 + ] + ] + }, + { + "osmId": "4787491", + "name": null, + "lengthMeters": 81.68052860411584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362599, + 13.473968 + ], + [ + 52.5363276, + 13.4742011 + ], + [ + 52.5364373, + 13.4745736 + ], + [ + 52.5364828, + 13.4747282 + ], + [ + 52.5365849, + 13.4750509 + ] + ] + }, + { + "osmId": "4788120", + "name": null, + "lengthMeters": 952.488776668895, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5509231, + 13.5255087 + ], + [ + 52.5507651, + 13.5255404 + ], + [ + 52.5506971, + 13.5255576 + ], + [ + 52.5505979, + 13.5255858 + ], + [ + 52.5494396, + 13.5260094 + ], + [ + 52.5436419, + 13.5281296 + ], + [ + 52.5434179, + 13.5282115 + ], + [ + 52.5433227, + 13.5282484 + ], + [ + 52.5432323, + 13.528289 + ], + [ + 52.5431223, + 13.52834 + ], + [ + 52.5430123, + 13.5283974 + ], + [ + 52.5428859, + 13.5284662 + ], + [ + 52.542768, + 13.5285207 + ], + [ + 52.5425686, + 13.5285994 + ] + ] + }, + { + "osmId": "4788559", + "name": null, + "lengthMeters": 84.13377260347774, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5657534, + 13.5118502 + ], + [ + 52.5661569, + 13.5129032 + ] + ] + }, + { + "osmId": "4788591", + "name": null, + "lengthMeters": 92.18609317503902, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5661569, + 13.5129032 + ], + [ + 52.5661819, + 13.5129682 + ], + [ + 52.56633, + 13.5133539 + ], + [ + 52.5664692, + 13.5137141 + ], + [ + 52.5665389, + 13.5138941 + ], + [ + 52.5666029, + 13.5140529 + ] + ] + }, + { + "osmId": "4788982", + "name": null, + "lengthMeters": 329.75030742400423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5398703, + 13.5375618 + ], + [ + 52.5398169, + 13.5372315 + ], + [ + 52.5397581, + 13.5369007 + ], + [ + 52.5396929, + 13.5365624 + ], + [ + 52.5396497, + 13.5363575 + ], + [ + 52.5395086, + 13.5357689 + ], + [ + 52.5392798, + 13.5349251 + ], + [ + 52.539217, + 13.5346752 + ], + [ + 52.5391623, + 13.534417 + ], + [ + 52.5390995, + 13.5341226 + ], + [ + 52.5390735, + 13.5339975 + ], + [ + 52.5388613, + 13.5329827 + ] + ] + }, + { + "osmId": "4788983", + "name": null, + "lengthMeters": 158.5853042965845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388613, + 13.5329827 + ], + [ + 52.5383843, + 13.5307729 + ] + ] + }, + { + "osmId": "4788986", + "name": null, + "lengthMeters": 101.2999358146351, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5323396, + 13.6134036 + ], + [ + 52.5321952, + 13.614093 + ], + [ + 52.5321759, + 13.6141856 + ], + [ + 52.5320437, + 13.61482 + ] + ] + }, + { + "osmId": "4788988", + "name": null, + "lengthMeters": 166.51111981901246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5446352, + 13.5652459 + ], + [ + 52.5446735, + 13.565686 + ], + [ + 52.5447027, + 13.5659478 + ], + [ + 52.5447466, + 13.5662109 + ], + [ + 52.5447932, + 13.566471 + ], + [ + 52.5448506, + 13.566759 + ], + [ + 52.5449117, + 13.5670439 + ], + [ + 52.5450473, + 13.5676036 + ] + ] + }, + { + "osmId": "4788989", + "name": null, + "lengthMeters": 112.96711129744193, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5432772, + 13.5645102 + ], + [ + 52.5434664, + 13.5645647 + ], + [ + 52.5436564, + 13.5646095 + ], + [ + 52.5438305, + 13.5646344 + ], + [ + 52.5440054, + 13.5646497 + ], + [ + 52.5440895, + 13.5646514 + ], + [ + 52.5442874, + 13.5646528 + ] + ] + }, + { + "osmId": "4789068", + "name": null, + "lengthMeters": 107.16585710492139, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549073, + 13.5828739 + ], + [ + 52.549102, + 13.5829827 + ], + [ + 52.5491333, + 13.5831025 + ], + [ + 52.5491664, + 13.5832296 + ], + [ + 52.5492124, + 13.5834063 + ], + [ + 52.5492654, + 13.5836099 + ], + [ + 52.5493216, + 13.5838232 + ], + [ + 52.5494044, + 13.5841467 + ], + [ + 52.5494443, + 13.584336 + ] + ] + }, + { + "osmId": "4789124", + "name": null, + "lengthMeters": 83.48458480942065, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491455, + 13.5085367 + ], + [ + 52.5491168, + 13.5085332 + ], + [ + 52.5488291, + 13.5084892 + ], + [ + 52.5487918, + 13.5084772 + ], + [ + 52.5487552, + 13.5084601 + ], + [ + 52.5487198, + 13.508436 + ], + [ + 52.5486842, + 13.5083965 + ], + [ + 52.5486515, + 13.50835 + ], + [ + 52.5486319, + 13.5083174 + ], + [ + 52.5486174, + 13.5082809 + ], + [ + 52.5486005, + 13.5082264 + ], + [ + 52.5485888, + 13.5081721 + ], + [ + 52.5485791, + 13.5080929 + ], + [ + 52.5485756, + 13.5079997 + ] + ] + }, + { + "osmId": "4789125", + "name": null, + "lengthMeters": 291.6952241879393, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5488886, + 13.5037404 + ], + [ + 52.5488806, + 13.5040514 + ], + [ + 52.5488602, + 13.5043609 + ], + [ + 52.5488033, + 13.5051916 + ], + [ + 52.5487935, + 13.5053155 + ], + [ + 52.5487831, + 13.5054731 + ], + [ + 52.5487772, + 13.5055619 + ], + [ + 52.5487519, + 13.5057919 + ], + [ + 52.54872, + 13.5060141 + ], + [ + 52.5486829, + 13.5062591 + ], + [ + 52.5486106, + 13.5067321 + ], + [ + 52.5485929, + 13.5068722 + ], + [ + 52.5485767, + 13.5070351 + ], + [ + 52.5485665, + 13.5072063 + ], + [ + 52.5485457, + 13.5080058 + ] + ] + }, + { + "osmId": "4789145", + "name": null, + "lengthMeters": 159.78693327708922, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291936, + 13.4590554 + ], + [ + 52.5292419, + 13.4593385 + ], + [ + 52.5292634, + 13.4594789 + ], + [ + 52.5292855, + 13.4596182 + ], + [ + 52.5292993, + 13.4596957 + ], + [ + 52.5293642, + 13.4599959 + ], + [ + 52.5294547, + 13.4604164 + ], + [ + 52.5294925, + 13.4605868 + ], + [ + 52.5295014, + 13.4606462 + ], + [ + 52.5295064, + 13.4606935 + ], + [ + 52.5295093, + 13.4607366 + ], + [ + 52.52951, + 13.4608002 + ], + [ + 52.5295074, + 13.4608498 + ], + [ + 52.5295038, + 13.4608985 + ], + [ + 52.5294955, + 13.4609631 + ], + [ + 52.5294862, + 13.4610269 + ], + [ + 52.5294493, + 13.4612426 + ], + [ + 52.5294364, + 13.4613217 + ] + ] + }, + { + "osmId": "4789146", + "name": null, + "lengthMeters": 94.62192847409625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5264307, + 13.4797602 + ], + [ + 52.5260075, + 13.4797007 + ], + [ + 52.5255823, + 13.4796525 + ] + ] + }, + { + "osmId": "4789160", + "name": null, + "lengthMeters": 130.13436015118214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5251001, + 13.4434279 + ], + [ + 52.5251658, + 13.4436934 + ], + [ + 52.5252039, + 13.4438375 + ], + [ + 52.5252613, + 13.4440547 + ], + [ + 52.5253064, + 13.4442041 + ], + [ + 52.5254282, + 13.4445986 + ], + [ + 52.5255478, + 13.4449867 + ], + [ + 52.5256023, + 13.4451642 + ] + ] + }, + { + "osmId": "4790804", + "name": null, + "lengthMeters": 84.56930543931428, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286693, + 13.4098798 + ], + [ + 52.5286354, + 13.4100775 + ], + [ + 52.528607, + 13.4102586 + ], + [ + 52.528517, + 13.4108348 + ], + [ + 52.5284768, + 13.4110892 + ] + ] + }, + { + "osmId": "4790912", + "name": null, + "lengthMeters": 346.0164963052773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5413528, + 13.4087267 + ], + [ + 52.5413804, + 13.4084476 + ], + [ + 52.5413921, + 13.4083521 + ], + [ + 52.5414131, + 13.4082541 + ], + [ + 52.5414386, + 13.4081644 + ], + [ + 52.5414476, + 13.4081357 + ], + [ + 52.5414948, + 13.4079851 + ], + [ + 52.5415078, + 13.4079472 + ], + [ + 52.5415501, + 13.407824 + ], + [ + 52.5415747, + 13.4077515 + ], + [ + 52.5415868, + 13.4076569 + ], + [ + 52.5415907, + 13.4075777 + ], + [ + 52.5415767, + 13.4074559 + ], + [ + 52.5415745, + 13.4074369 + ], + [ + 52.5413588, + 13.4063047 + ], + [ + 52.5413207, + 13.4061081 + ], + [ + 52.5413089, + 13.4060381 + ], + [ + 52.5412963, + 13.4058873 + ], + [ + 52.5412977, + 13.405844 + ], + [ + 52.5413034, + 13.4057805 + ], + [ + 52.541318, + 13.4057051 + ], + [ + 52.5413333, + 13.405641 + ], + [ + 52.5413425, + 13.4055745 + ], + [ + 52.5413475, + 13.4055171 + ], + [ + 52.5413485, + 13.4055052 + ], + [ + 52.5413502, + 13.4054163 + ], + [ + 52.5413399, + 13.4053319 + ], + [ + 52.5413303, + 13.4052803 + ], + [ + 52.5413153, + 13.4052331 + ], + [ + 52.5413009, + 13.4051945 + ], + [ + 52.5412858, + 13.405163 + ], + [ + 52.5412578, + 13.405117 + ], + [ + 52.5412298, + 13.4050821 + ], + [ + 52.5412021, + 13.4050533 + ], + [ + 52.5411741, + 13.4050335 + ], + [ + 52.5411413, + 13.4050158 + ], + [ + 52.541121, + 13.4050083 + ], + [ + 52.5411026, + 13.4050071 + ], + [ + 52.5410689, + 13.4050038 + ], + [ + 52.5410346, + 13.4050094 + ], + [ + 52.540993, + 13.4050279 + ], + [ + 52.5409537, + 13.4050534 + ], + [ + 52.540921, + 13.4050857 + ], + [ + 52.5408931, + 13.4051238 + ], + [ + 52.5408811, + 13.4051409 + ], + [ + 52.5408694, + 13.405164 + ], + [ + 52.5408638, + 13.4051769 + ], + [ + 52.5408531, + 13.4052018 + ], + [ + 52.5408332, + 13.4052494 + ], + [ + 52.5408228, + 13.4052933 + ], + [ + 52.5408156, + 13.405338 + ], + [ + 52.5408068, + 13.4054242 + ], + [ + 52.5408065, + 13.4054541 + ], + [ + 52.5408059, + 13.4055129 + ], + [ + 52.540812, + 13.405609 + ], + [ + 52.5408297, + 13.4057212 + ] + ] + }, + { + "osmId": "4791000", + "name": null, + "lengthMeters": 240.43903528605688, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5228663, + 13.4103898 + ], + [ + 52.5230437, + 13.4106717 + ], + [ + 52.5232378, + 13.4109728 + ], + [ + 52.5234101, + 13.4112397 + ], + [ + 52.5236013, + 13.4115412 + ], + [ + 52.5236711, + 13.4116514 + ], + [ + 52.5237652, + 13.4117894 + ], + [ + 52.5238288, + 13.4118755 + ], + [ + 52.5238936, + 13.4119624 + ], + [ + 52.5239322, + 13.4120116 + ], + [ + 52.5239543, + 13.4120352 + ], + [ + 52.5240509, + 13.412158 + ], + [ + 52.5241885, + 13.4123286 + ], + [ + 52.5244969, + 13.4127164 + ] + ] + }, + { + "osmId": "4791001", + "name": null, + "lengthMeters": 456.09262971541597, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5401807, + 13.4248308 + ], + [ + 52.540957, + 13.4252865 + ], + [ + 52.5410298, + 13.4253272 + ], + [ + 52.5413465, + 13.425513 + ], + [ + 52.5419298, + 13.4258552 + ], + [ + 52.5420462, + 13.4259234 + ], + [ + 52.5426083, + 13.4262519 + ], + [ + 52.5428686, + 13.4264038 + ], + [ + 52.5429078, + 13.4264288 + ], + [ + 52.5429641, + 13.4264622 + ], + [ + 52.5430272, + 13.4264996 + ], + [ + 52.5430731, + 13.4265269 + ], + [ + 52.5436549, + 13.4268641 + ], + [ + 52.543754, + 13.4269312 + ], + [ + 52.5440412, + 13.4271087 + ] + ] + }, + { + "osmId": "4791591", + "name": null, + "lengthMeters": 478.61912440048036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554098, + 13.4294431 + ], + [ + 52.5561885, + 13.429237 + ], + [ + 52.5562387, + 13.4292249 + ], + [ + 52.5562814, + 13.4292194 + ], + [ + 52.5563146, + 13.4292228 + ], + [ + 52.5563469, + 13.4292316 + ], + [ + 52.5563774, + 13.4292435 + ], + [ + 52.5563948, + 13.4292543 + ], + [ + 52.5564107, + 13.4292671 + ], + [ + 52.5564333, + 13.429306 + ], + [ + 52.5564452, + 13.4293273 + ], + [ + 52.5564631, + 13.4293656 + ], + [ + 52.5566797, + 13.4299757 + ], + [ + 52.5567266, + 13.4301182 + ], + [ + 52.5567979, + 13.4303192 + ], + [ + 52.5575032, + 13.4322468 + ], + [ + 52.5576062, + 13.4325236 + ], + [ + 52.5576827, + 13.4327321 + ], + [ + 52.5576961, + 13.4327687 + ], + [ + 52.5577746, + 13.4329418 + ], + [ + 52.5578348, + 13.4330181 + ], + [ + 52.557912, + 13.4330926 + ], + [ + 52.5579677, + 13.4331278 + ], + [ + 52.5580699, + 13.4331709 + ], + [ + 52.5583984, + 13.4333024 + ] + ] + }, + { + "osmId": "4791629", + "name": null, + "lengthMeters": 126.79446872147595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5335739, + 13.4384687 + ], + [ + 52.5335514, + 13.4385382 + ], + [ + 52.5335417, + 13.438581 + ], + [ + 52.5335338, + 13.4386274 + ], + [ + 52.5335312, + 13.4386568 + ], + [ + 52.5335297, + 13.4387069 + ], + [ + 52.533531, + 13.4387723 + ], + [ + 52.5335362, + 13.4388227 + ], + [ + 52.5335438, + 13.438863 + ], + [ + 52.5335486, + 13.4388827 + ], + [ + 52.5335657, + 13.4389302 + ], + [ + 52.5335867, + 13.4389809 + ], + [ + 52.5336061, + 13.4390206 + ], + [ + 52.5336118, + 13.4390314 + ], + [ + 52.5336271, + 13.43906 + ], + [ + 52.5341439, + 13.4397523 + ], + [ + 52.5342035, + 13.4398321 + ] + ] + }, + { + "osmId": "4791641", + "name": null, + "lengthMeters": 793.9055019570557, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.513496, + 13.455605 + ], + [ + 52.5134945, + 13.455609 + ], + [ + 52.5134486, + 13.4557451 + ], + [ + 52.5132606, + 13.4563008 + ], + [ + 52.5131458, + 13.4566399 + ], + [ + 52.5130893, + 13.4568068 + ], + [ + 52.5130715, + 13.4568594 + ], + [ + 52.5129045, + 13.4573531 + ], + [ + 52.5128125, + 13.4576505 + ], + [ + 52.5127733, + 13.4577773 + ], + [ + 52.5127408, + 13.4579626 + ], + [ + 52.5124963, + 13.4593571 + ], + [ + 52.5124802, + 13.4594439 + ], + [ + 52.5122624, + 13.4606148 + ], + [ + 52.5121717, + 13.4611026 + ], + [ + 52.5121166, + 13.4613987 + ], + [ + 52.5120963, + 13.4615078 + ], + [ + 52.5120555, + 13.461609 + ], + [ + 52.5115818, + 13.4627822 + ], + [ + 52.5115741, + 13.4628012 + ], + [ + 52.5115223, + 13.4628989 + ], + [ + 52.5114883, + 13.4629544 + ], + [ + 52.511449, + 13.4630016 + ], + [ + 52.5113893, + 13.463058 + ], + [ + 52.5113682, + 13.4630779 + ], + [ + 52.5113045, + 13.4631387 + ], + [ + 52.5112163, + 13.4632228 + ], + [ + 52.510986, + 13.4634444 + ], + [ + 52.5108185, + 13.4636064 + ], + [ + 52.5107289, + 13.46369 + ], + [ + 52.51066, + 13.4637564 + ], + [ + 52.5099514, + 13.4644526 + ], + [ + 52.5099494, + 13.4644573 + ], + [ + 52.5098366, + 13.4645925 + ], + [ + 52.5096351, + 13.4648674 + ] + ] + }, + { + "osmId": "4792331", + "name": "Tempelhofer Kurve", + "lengthMeters": 636.2220842582263, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4661091, + 13.3620247 + ], + [ + 52.4660705, + 13.3620185 + ], + [ + 52.4656376, + 13.3619481 + ], + [ + 52.4647894, + 13.3618008 + ], + [ + 52.4646939, + 13.3617838 + ], + [ + 52.4645977, + 13.3617695 + ], + [ + 52.464521, + 13.3617596 + ], + [ + 52.4644393, + 13.3617513 + ], + [ + 52.4643413, + 13.3617462 + ], + [ + 52.464289, + 13.3617459 + ], + [ + 52.4642226, + 13.3617469 + ], + [ + 52.4640587, + 13.3617444 + ], + [ + 52.4632915, + 13.3617596 + ], + [ + 52.4632015, + 13.3617605 + ], + [ + 52.4631116, + 13.36176 + ], + [ + 52.4630038, + 13.3617516 + ], + [ + 52.462896, + 13.3617355 + ], + [ + 52.4628052, + 13.3617136 + ], + [ + 52.4627136, + 13.3616865 + ], + [ + 52.4622126, + 13.361505 + ], + [ + 52.4604511, + 13.3608846 + ] + ] + }, + { + "osmId": "4795765", + "name": null, + "lengthMeters": 491.30861953885324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6584244, + 13.2045048 + ], + [ + 52.6586132, + 13.204656 + ], + [ + 52.6587737, + 13.2047973 + ], + [ + 52.6588563, + 13.2048721 + ], + [ + 52.6588933, + 13.2049056 + ], + [ + 52.6591266, + 13.2051451 + ], + [ + 52.6593979, + 13.205453 + ], + [ + 52.6597147, + 13.2058858 + ], + [ + 52.6599501, + 13.2062353 + ], + [ + 52.6601208, + 13.2065314 + ], + [ + 52.660208, + 13.2066827 + ], + [ + 52.6603286, + 13.2069207 + ], + [ + 52.6605138, + 13.2073087 + ], + [ + 52.6607151, + 13.2078054 + ], + [ + 52.6609271, + 13.2083922 + ], + [ + 52.6610729, + 13.2088733 + ], + [ + 52.6610861, + 13.2089272 + ], + [ + 52.6611812, + 13.2093139 + ], + [ + 52.6612857, + 13.2097857 + ] + ] + }, + { + "osmId": "4795766", + "name": null, + "lengthMeters": 428.21801333328716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6542378, + 13.2035686 + ], + [ + 52.6548141, + 13.2035458 + ], + [ + 52.6553486, + 13.2035844 + ], + [ + 52.6558834, + 13.2036383 + ], + [ + 52.6563399, + 13.2036886 + ], + [ + 52.656789, + 13.2037577 + ], + [ + 52.6572268, + 13.2038718 + ], + [ + 52.6573458, + 13.2039181 + ], + [ + 52.6576728, + 13.2040454 + ], + [ + 52.6580455, + 13.2042546 + ] + ] + }, + { + "osmId": "4796097", + "name": null, + "lengthMeters": 389.2710481224065, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5879273, + 10.0400833 + ], + [ + 53.5879884, + 10.0397634 + ], + [ + 53.5880767, + 10.0394042 + ], + [ + 53.5881118, + 10.0392611 + ], + [ + 53.5883615, + 10.038245 + ], + [ + 53.5884618, + 10.0377884 + ], + [ + 53.5885451, + 10.0373408 + ], + [ + 53.5886254, + 10.0368482 + ], + [ + 53.5887018, + 10.0362617 + ], + [ + 53.5887674, + 10.0356504 + ], + [ + 53.5887877, + 10.0354619 + ], + [ + 53.5888038, + 10.035312 + ], + [ + 53.5888995, + 10.0344408 + ] + ] + }, + { + "osmId": "4801739", + "name": null, + "lengthMeters": 290.21441363865955, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5736102, + 13.2988735 + ], + [ + 52.5716962, + 13.3017931 + ] + ] + }, + { + "osmId": "4818011", + "name": null, + "lengthMeters": 336.68498818329704, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4338228, + 13.1940517 + ], + [ + 52.4336546, + 13.1939681 + ], + [ + 52.4334886, + 13.1938887 + ], + [ + 52.4333162, + 13.1938102 + ], + [ + 52.4331971, + 13.1937607 + ], + [ + 52.4330707, + 13.1937113 + ], + [ + 52.4328509, + 13.1936297 + ], + [ + 52.4326607, + 13.1935642 + ], + [ + 52.4324637, + 13.1935004 + ], + [ + 52.4323127, + 13.1934531 + ], + [ + 52.4321398, + 13.1934019 + ], + [ + 52.4318892, + 13.193326 + ], + [ + 52.4316128, + 13.1932417 + ], + [ + 52.4313236, + 13.1931555 + ], + [ + 52.4308636, + 13.1930174 + ] + ] + }, + { + "osmId": "4826445", + "name": null, + "lengthMeters": 248.55623978980535, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1475233, + 11.4885455 + ], + [ + 48.1477806, + 11.4879941 + ], + [ + 48.1480164, + 11.4875022 + ], + [ + 48.1482453, + 11.4870036 + ], + [ + 48.1485375, + 11.4863951 + ], + [ + 48.1487307, + 11.4860275 + ], + [ + 48.1488362, + 11.4858354 + ] + ] + }, + { + "osmId": "4830124", + "name": null, + "lengthMeters": 475.3859122598334, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4253149, + 13.3739951 + ], + [ + 52.4252228, + 13.3740471 + ], + [ + 52.4250945, + 13.374117 + ], + [ + 52.4248526, + 13.3742425 + ], + [ + 52.4248299, + 13.3742543 + ], + [ + 52.4247077, + 13.3743137 + ], + [ + 52.424604, + 13.3743642 + ], + [ + 52.4244853, + 13.3744233 + ], + [ + 52.4243541, + 13.3744943 + ], + [ + 52.4241607, + 13.3745989 + ], + [ + 52.4240092, + 13.3746866 + ], + [ + 52.4238217, + 13.3748073 + ], + [ + 52.4236928, + 13.3748958 + ], + [ + 52.4234174, + 13.3750848 + ], + [ + 52.4233843, + 13.3751075 + ], + [ + 52.4229933, + 13.3753841 + ], + [ + 52.4227834, + 13.3755197 + ], + [ + 52.4225601, + 13.3756563 + ], + [ + 52.4220996, + 13.3759294 + ], + [ + 52.4220028, + 13.3759868 + ], + [ + 52.4213011, + 13.3763971 + ] + ] + }, + { + "osmId": "4839097", + "name": null, + "lengthMeters": 1121.6765872297537, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2037108, + 11.4412737 + ], + [ + 48.2037239, + 11.440351 + ], + [ + 48.20374, + 11.4395625 + ], + [ + 48.2037623, + 11.4388061 + ], + [ + 48.2037883, + 11.4380667 + ], + [ + 48.2038338, + 11.437123 + ], + [ + 48.2038835, + 11.4362037 + ], + [ + 48.2044566, + 11.4261829 + ] + ] + }, + { + "osmId": "4839098", + "name": null, + "lengthMeters": 107.34185118644358, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2037093, + 11.4427221 + ], + [ + 48.2037078, + 11.4419074 + ], + [ + 48.2037108, + 11.4412737 + ] + ] + }, + { + "osmId": "4839935", + "name": null, + "lengthMeters": 505.4121095671777, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1366574, + 11.5262245 + ], + [ + 48.1387738, + 11.5233694 + ], + [ + 48.1400185, + 11.5216396 + ] + ] + }, + { + "osmId": "4841093", + "name": "Verbindungsbahn", + "lengthMeters": 388.707793880814, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5612857, + 9.9544371 + ], + [ + 53.5612491, + 9.9541586 + ], + [ + 53.5612058, + 9.9535811 + ], + [ + 53.5612033, + 9.9532293 + ], + [ + 53.5612168, + 9.952879 + ], + [ + 53.5612417, + 9.9525529 + ], + [ + 53.5612891, + 9.952203 + ], + [ + 53.5613369, + 9.9519495 + ], + [ + 53.5613823, + 9.9517004 + ], + [ + 53.5614138, + 9.9515292 + ], + [ + 53.5615206, + 9.9510601 + ], + [ + 53.5615486, + 9.9509412 + ], + [ + 53.5617513, + 9.9500467 + ], + [ + 53.5617608, + 9.950004 + ], + [ + 53.5617754, + 9.9499389 + ], + [ + 53.5618566, + 9.9495801 + ], + [ + 53.5619536, + 9.9491518 + ], + [ + 53.5619901, + 9.9489973 + ], + [ + 53.5620346, + 9.9488007 + ] + ] + }, + { + "osmId": "4841094", + "name": "Verbindungsbahn", + "lengthMeters": 132.98979332081456, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5615784, + 9.9563888 + ], + [ + 53.5615214, + 9.956085 + ], + [ + 53.5612911, + 9.9544716 + ], + [ + 53.5612857, + 9.9544371 + ] + ] + }, + { + "osmId": "4841532", + "name": "Verbindungsbahn", + "lengthMeters": 346.2225209573011, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530832, + 9.9348983 + ], + [ + 53.5531763, + 9.9349 + ], + [ + 53.5535046, + 9.9349135 + ], + [ + 53.5536882, + 9.9349213 + ], + [ + 53.5537698, + 9.9349247 + ], + [ + 53.5550164, + 9.9349783 + ], + [ + 53.5550231, + 9.9349787 + ], + [ + 53.5550361, + 9.9349793 + ], + [ + 53.5554354, + 9.9349993 + ], + [ + 53.5555806, + 9.9350081 + ], + [ + 53.5557217, + 9.9350101 + ], + [ + 53.5559534, + 9.9350194 + ], + [ + 53.5559987, + 9.9350206 + ], + [ + 53.5560207, + 9.9350205 + ], + [ + 53.5561959, + 9.9350225 + ] + ] + }, + { + "osmId": "4863604", + "name": null, + "lengthMeters": 217.3329733661867, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3936337, + 13.1192669 + ], + [ + 52.3939068, + 13.1224384 + ] + ] + }, + { + "osmId": "4863606", + "name": null, + "lengthMeters": 131.13483133878177, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3938643, + 13.122449 + ], + [ + 52.3936994, + 13.1205354 + ] + ] + }, + { + "osmId": "4863609", + "name": null, + "lengthMeters": 119.72361984888317, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4200831, + 13.1774232 + ], + [ + 52.4208041, + 13.1787344 + ] + ] + }, + { + "osmId": "4863611", + "name": null, + "lengthMeters": 660.554411446848, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4373906, + 13.2054412 + ], + [ + 52.4383735, + 13.2078731 + ], + [ + 52.4385168, + 13.2082773 + ], + [ + 52.4386182, + 13.2086305 + ], + [ + 52.4387994, + 13.2093142 + ], + [ + 52.438972, + 13.2101408 + ], + [ + 52.4391516, + 13.2110725 + ], + [ + 52.4392141, + 13.2113903 + ], + [ + 52.4392889, + 13.2117707 + ], + [ + 52.4393983, + 13.2123457 + ], + [ + 52.439473, + 13.2127348 + ], + [ + 52.4396142, + 13.2134461 + ], + [ + 52.4396921, + 13.2138564 + ], + [ + 52.4397886, + 13.2142785 + ] + ] + }, + { + "osmId": "4863636", + "name": null, + "lengthMeters": 361.69734866281857, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4313484, + 13.245542 + ], + [ + 52.4323373, + 13.2432967 + ], + [ + 52.4328277, + 13.2421648 + ], + [ + 52.4332313, + 13.2412096 + ], + [ + 52.4332364, + 13.2411977 + ] + ] + }, + { + "osmId": "4863638", + "name": null, + "lengthMeters": 374.5341453641961, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4313914, + 13.2456862 + ], + [ + 52.433344, + 13.2411847 + ] + ] + }, + { + "osmId": "4874562", + "name": "City-S-Bahn", + "lengthMeters": 412.8497022012301, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5623104, + 9.9335829 + ], + [ + 53.5619532, + 9.9331349 + ], + [ + 53.5617654, + 9.932915 + ], + [ + 53.5616022, + 9.9327365 + ], + [ + 53.5614288, + 9.9325767 + ], + [ + 53.5613705, + 9.932523 + ], + [ + 53.5611086, + 9.9323402 + ], + [ + 53.5608867, + 9.9322185 + ], + [ + 53.5606385, + 9.9321264 + ], + [ + 53.5604156, + 9.9320785 + ], + [ + 53.5602154, + 9.9320591 + ], + [ + 53.5599986, + 9.9320717 + ], + [ + 53.5597268, + 9.932122 + ], + [ + 53.5594743, + 9.932201 + ], + [ + 53.5591831, + 9.9323337 + ], + [ + 53.558866, + 9.9325144 + ] + ] + }, + { + "osmId": "4906397", + "name": null, + "lengthMeters": 222.88557287137354, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3922291, + 13.1036881 + ], + [ + 52.3920689, + 13.1018378 + ], + [ + 52.391946, + 13.1004364 + ] + ] + }, + { + "osmId": "4906399", + "name": null, + "lengthMeters": 223.493268206693, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3922729, + 13.1036791 + ], + [ + 52.3919866, + 13.1004191 + ] + ] + }, + { + "osmId": "4914193", + "name": null, + "lengthMeters": 225.503179590868, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.411423, + 13.57516 + ], + [ + 52.4116753, + 13.574806 + ], + [ + 52.4118715, + 13.574511 + ], + [ + 52.4119807, + 13.5743516 + ], + [ + 52.4121395, + 13.5741274 + ], + [ + 52.4123103, + 13.573897 + ], + [ + 52.4129765, + 13.5730244 + ] + ] + }, + { + "osmId": "4974599", + "name": null, + "lengthMeters": 119.84131048737196, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4566485, + 9.990743 + ], + [ + 53.4569936, + 9.9906093 + ], + [ + 53.4571696, + 9.9905197 + ], + [ + 53.4571891, + 9.9905076 + ], + [ + 53.4572048, + 9.9904978 + ], + [ + 53.4573712, + 9.9903905 + ], + [ + 53.4575028, + 9.9902873 + ], + [ + 53.4576629, + 9.9901541 + ] + ] + }, + { + "osmId": "4984627", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 360.081024834719, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371725, + 13.1565374 + ], + [ + 52.5371571, + 13.1563896 + ], + [ + 52.5371264, + 13.1560637 + ], + [ + 52.5370994, + 13.1557377 + ], + [ + 52.5370809, + 13.1554574 + ], + [ + 52.5370677, + 13.1551784 + ], + [ + 52.5370582, + 13.1549249 + ], + [ + 52.5370517, + 13.1544998 + ], + [ + 52.5370513, + 13.1541899 + ], + [ + 52.5370557, + 13.1539349 + ], + [ + 52.5370639, + 13.153635 + ], + [ + 52.537074, + 13.1533776 + ], + [ + 52.5370857, + 13.1531204 + ], + [ + 52.5371023, + 13.1528175 + ], + [ + 52.5371169, + 13.1525706 + ], + [ + 52.5371959, + 13.1512801 + ], + [ + 52.5371987, + 13.1512364 + ] + ] + }, + { + "osmId": "5000113", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1339.762735411077, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5380434, + 13.1763325 + ], + [ + 52.5380606, + 13.1762307 + ], + [ + 52.5381961, + 13.1754281 + ], + [ + 52.5382872, + 13.1748682 + ], + [ + 52.5385216, + 13.1734279 + ], + [ + 52.5386185, + 13.1728317 + ], + [ + 52.5387489, + 13.1720193 + ], + [ + 52.5388282, + 13.1715255 + ], + [ + 52.5390388, + 13.1702568 + ], + [ + 52.5390876, + 13.1699533 + ], + [ + 52.5391729, + 13.1694667 + ], + [ + 52.5393606, + 13.1684735 + ], + [ + 52.5395856, + 13.1674037 + ], + [ + 52.5395937, + 13.1673663 + ], + [ + 52.5396705, + 13.1670224 + ], + [ + 52.5397541, + 13.1666733 + ], + [ + 52.5401577, + 13.1649665 + ], + [ + 52.5407483, + 13.1625174 + ], + [ + 52.5414104, + 13.1597959 + ], + [ + 52.5416119, + 13.1590114 + ], + [ + 52.5418072, + 13.1582505 + ], + [ + 52.5419657, + 13.1576334 + ] + ] + }, + { + "osmId": "5000341", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 247.38365820939958, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371401, + 13.180816 + ], + [ + 52.5371635, + 13.1806676 + ], + [ + 52.5373631, + 13.1794102 + ], + [ + 52.537474, + 13.178723 + ], + [ + 52.5377018, + 13.1772768 + ] + ] + }, + { + "osmId": "5000355", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 147.19394792056045, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371593, + 13.1815978 + ], + [ + 52.5371645, + 13.1815654 + ], + [ + 52.5373813, + 13.1802361 + ], + [ + 52.5375021, + 13.1794957 + ] + ] + }, + { + "osmId": "5000359", + "name": "B\u00f6tzowbahn", + "lengthMeters": 3875.1349706735277, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354875, + 13.1805442 + ], + [ + 52.5355309, + 13.180299 + ], + [ + 52.5355753, + 13.1801022 + ], + [ + 52.5356559, + 13.1798272 + ], + [ + 52.5357387, + 13.1796059 + ], + [ + 52.5357905, + 13.1794883 + ], + [ + 52.5358405, + 13.179383 + ], + [ + 52.5359713, + 13.1791451 + ], + [ + 52.5361033, + 13.1789508 + ], + [ + 52.5362502, + 13.1787704 + ], + [ + 52.5370826, + 13.1777889 + ], + [ + 52.5379958, + 13.1766509 + ], + [ + 52.5380897, + 13.176506 + ], + [ + 52.5381815, + 13.1763527 + ], + [ + 52.5382664, + 13.1761545 + ], + [ + 52.5383411, + 13.1759674 + ], + [ + 52.5384139, + 13.175714 + ], + [ + 52.5384507, + 13.1755755 + ], + [ + 52.5384976, + 13.1753941 + ], + [ + 52.538572, + 13.1750064 + ], + [ + 52.5387086, + 13.174215 + ], + [ + 52.5389871, + 13.1726959 + ], + [ + 52.5392312, + 13.1713263 + ], + [ + 52.5394668, + 13.1700394 + ], + [ + 52.5395016, + 13.1698752 + ], + [ + 52.5395443, + 13.1697142 + ], + [ + 52.5396329, + 13.1694275 + ], + [ + 52.5397879, + 13.1690632 + ], + [ + 52.5399756, + 13.1687067 + ], + [ + 52.5402234, + 13.1684197 + ], + [ + 52.540488, + 13.1681803 + ], + [ + 52.5408003, + 13.1679997 + ], + [ + 52.5410934, + 13.1678949 + ], + [ + 52.5413858, + 13.1678772 + ], + [ + 52.5416086, + 13.1679048 + ], + [ + 52.5416918, + 13.1679151 + ], + [ + 52.5417799, + 13.1679307 + ], + [ + 52.5442467, + 13.1684754 + ], + [ + 52.550165, + 13.1697584 + ], + [ + 52.5502023, + 13.1697673 + ], + [ + 52.5502764, + 13.1697811 + ], + [ + 52.5503852, + 13.169812 + ], + [ + 52.5504628, + 13.1698282 + ], + [ + 52.5505022, + 13.1698384 + ], + [ + 52.5552164, + 13.1708871 + ], + [ + 52.5552604, + 13.1708969 + ], + [ + 52.5607472, + 13.1720628 + ], + [ + 52.5607573, + 13.1720656 + ], + [ + 52.5608187, + 13.1720826 + ], + [ + 52.5628593, + 13.1725617 + ], + [ + 52.5633552, + 13.1728608 + ], + [ + 52.5635347, + 13.1730057 + ], + [ + 52.5637061, + 13.1731799 + ], + [ + 52.5638951, + 13.1734145 + ], + [ + 52.5640652, + 13.173657 + ], + [ + 52.5642365, + 13.1739521 + ], + [ + 52.5643782, + 13.1742515 + ], + [ + 52.5645, + 13.174537 + ], + [ + 52.5646119, + 13.1748611 + ], + [ + 52.5646697, + 13.1750692 + ], + [ + 52.5647212, + 13.1752549 + ], + [ + 52.5648075, + 13.1756859 + ] + ] + }, + { + "osmId": "5000491", + "name": null, + "lengthMeters": 646.1448439795166, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297719, + 13.2255998 + ], + [ + 52.5299876, + 13.2237548 + ], + [ + 52.5300228, + 13.2234639 + ], + [ + 52.5301132, + 13.222775 + ], + [ + 52.5301727, + 13.222322 + ], + [ + 52.5302249, + 13.2219237 + ], + [ + 52.5303335, + 13.2210964 + ], + [ + 52.530702, + 13.21815 + ], + [ + 52.5307758, + 13.2175596 + ], + [ + 52.5309303, + 13.2163382 + ], + [ + 52.5309421, + 13.2162437 + ] + ] + }, + { + "osmId": "5000500", + "name": null, + "lengthMeters": 1688.7482245503836, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367163, + 13.1567773 + ], + [ + 52.5366683, + 13.1575433 + ], + [ + 52.5366166, + 13.1583844 + ], + [ + 52.5365253, + 13.1598664 + ], + [ + 52.5364262, + 13.1614618 + ], + [ + 52.5363908, + 13.1620318 + ], + [ + 52.5362601, + 13.1641335 + ], + [ + 52.5361859, + 13.1653192 + ], + [ + 52.5361688, + 13.1655998 + ], + [ + 52.5361292, + 13.16625 + ], + [ + 52.5361222, + 13.1663652 + ], + [ + 52.5360655, + 13.1672697 + ], + [ + 52.5358993, + 13.1699337 + ], + [ + 52.5358252, + 13.1711237 + ], + [ + 52.5357089, + 13.1730162 + ], + [ + 52.5356087, + 13.174857 + ], + [ + 52.535564, + 13.175804 + ], + [ + 52.5354814, + 13.177698 + ], + [ + 52.5354321, + 13.1788914 + ], + [ + 52.5354147, + 13.1795225 + ], + [ + 52.5354022, + 13.1801521 + ], + [ + 52.5353902, + 13.1807922 + ], + [ + 52.5353723, + 13.1814001 + ], + [ + 52.5353691, + 13.1815039 + ], + [ + 52.5353649, + 13.1816412 + ] + ] + }, + { + "osmId": "5000772", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 9234.330853042378, + "maxSpeedKph": 250.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5396207, + 13.1157047 + ], + [ + 52.5397061, + 13.114508 + ], + [ + 52.5398114, + 13.1129823 + ], + [ + 52.5398663, + 13.1122489 + ], + [ + 52.5400191, + 13.1100008 + ], + [ + 52.5401782, + 13.1077956 + ], + [ + 52.5404161, + 13.1044154 + ], + [ + 52.5405278, + 13.1026935 + ], + [ + 52.5406695, + 13.1007874 + ], + [ + 52.5408231, + 13.098592 + ], + [ + 52.5410431, + 13.0954648 + ], + [ + 52.5412407, + 13.0925876 + ], + [ + 52.5413128, + 13.0915536 + ], + [ + 52.5414612, + 13.0896529 + ], + [ + 52.5417068, + 13.0865073 + ], + [ + 52.5419311, + 13.0835729 + ], + [ + 52.5421775, + 13.0803594 + ], + [ + 52.5423156, + 13.0785017 + ], + [ + 52.5423863, + 13.0776571 + ], + [ + 52.542586, + 13.0750472 + ], + [ + 52.5425908, + 13.0749861 + ], + [ + 52.5427096, + 13.0734542 + ], + [ + 52.542775, + 13.0725677 + ], + [ + 52.5428267, + 13.0718381 + ], + [ + 52.5430416, + 13.0687015 + ], + [ + 52.5432254, + 13.0660904 + ], + [ + 52.543454, + 13.0628435 + ], + [ + 52.5436341, + 13.0602316 + ], + [ + 52.5438402, + 13.0572248 + ], + [ + 52.5438459, + 13.05712 + ], + [ + 52.544034, + 13.0539452 + ], + [ + 52.5442011, + 13.0512206 + ], + [ + 52.5443844, + 13.0484699 + ], + [ + 52.544578, + 13.0457186 + ], + [ + 52.5447968, + 13.0426376 + ], + [ + 52.5449049, + 13.0410771 + ], + [ + 52.544992, + 13.039699 + ], + [ + 52.5452034, + 13.0366466 + ], + [ + 52.5453843, + 13.0340477 + ], + [ + 52.5455737, + 13.0313297 + ], + [ + 52.5457849, + 13.028235 + ], + [ + 52.5459488, + 13.0258913 + ], + [ + 52.546011, + 13.024991 + ], + [ + 52.5462025, + 13.0222201 + ], + [ + 52.5463936, + 13.0194543 + ], + [ + 52.5465846, + 13.016688 + ], + [ + 52.5466964, + 13.0150845 + ], + [ + 52.5467972, + 13.0136056 + ], + [ + 52.546847, + 13.0128896 + ], + [ + 52.5470242, + 13.0103447 + ], + [ + 52.5472147, + 13.0075838 + ], + [ + 52.547404, + 13.0048121 + ], + [ + 52.5476433, + 13.0014243 + ], + [ + 52.5477976, + 12.9991422 + ], + [ + 52.548011, + 12.9963722 + ], + [ + 52.5480971, + 12.9954716 + ], + [ + 52.5481847, + 12.9945552 + ], + [ + 52.5482921, + 12.993528 + ], + [ + 52.5483625, + 12.992919 + ], + [ + 52.5483859, + 12.992717 + ], + [ + 52.5486934, + 12.9900603 + ], + [ + 52.5490531, + 12.9870482 + ], + [ + 52.5493255, + 12.9847727 + ], + [ + 52.5494287, + 12.9838286 + ], + [ + 52.5494934, + 12.9832363 + ], + [ + 52.5496431, + 12.9818231 + ], + [ + 52.5497059, + 12.9810639 + ], + [ + 52.5497767, + 12.9802072 + ] + ] + }, + { + "osmId": "5000788", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 316.32022271024596, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5361843, + 13.1866701 + ], + [ + 52.5363035, + 13.1859183 + ], + [ + 52.536477, + 13.1848792 + ], + [ + 52.5368617, + 13.1825338 + ], + [ + 52.5369096, + 13.1822124 + ], + [ + 52.5369192, + 13.1821521 + ] + ] + }, + { + "osmId": "5000790", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 327.3688401794652, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363047, + 13.186846 + ], + [ + 52.5364335, + 13.1860602 + ], + [ + 52.5367293, + 13.1842552 + ], + [ + 52.5369167, + 13.1830969 + ], + [ + 52.5370665, + 13.1821706 + ] + ] + }, + { + "osmId": "5005011", + "name": null, + "lengthMeters": 75.35254525225956, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0534502, + 11.6915891 + ], + [ + 48.0528975, + 11.6921757 + ] + ] + }, + { + "osmId": "5008731", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 477.3593819107954, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5454547, + 13.1440918 + ], + [ + 52.5449603, + 13.1459817 + ], + [ + 52.5442804, + 13.1486 + ], + [ + 52.5437653, + 13.1505814 + ] + ] + }, + { + "osmId": "5008815", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1089.4617229719795, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5496161, + 13.1280167 + ], + [ + 52.5493335, + 13.1291153 + ], + [ + 52.5491012, + 13.1300179 + ], + [ + 52.5488916, + 13.1308238 + ], + [ + 52.5484318, + 13.1326022 + ], + [ + 52.5480475, + 13.1340946 + ], + [ + 52.5479297, + 13.1345475 + ], + [ + 52.5471728, + 13.1374709 + ], + [ + 52.5469309, + 13.1384138 + ], + [ + 52.5464297, + 13.1403515 + ], + [ + 52.5457802, + 13.1428426 + ] + ] + }, + { + "osmId": "5009060", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 484.4278465449688, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5514514, + 13.1208712 + ], + [ + 52.5514433, + 13.1209038 + ], + [ + 52.551427, + 13.1209691 + ], + [ + 52.5511522, + 13.1220328 + ], + [ + 52.5505125, + 13.1245234 + ], + [ + 52.549826, + 13.1272048 + ], + [ + 52.5497566, + 13.1274715 + ] + ] + }, + { + "osmId": "5014856", + "name": null, + "lengthMeters": 196.24922153148378, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0528975, + 11.6921757 + ], + [ + 48.0523837, + 11.6927195 + ], + [ + 48.0519641, + 11.6931607 + ], + [ + 48.0515431, + 11.6936093 + ], + [ + 48.0514556, + 11.6936982 + ] + ] + }, + { + "osmId": "5015392", + "name": null, + "lengthMeters": 187.04305587979056, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0898441, + 11.6438628 + ], + [ + 48.0898215, + 11.6438885 + ], + [ + 48.0894275, + 11.6443302 + ], + [ + 48.0888488, + 11.6449733 + ], + [ + 48.0886982, + 11.6451396 + ], + [ + 48.0884943, + 11.6453655 + ] + ] + }, + { + "osmId": "5051507", + "name": "Wriezener Bahn", + "lengthMeters": 9512.322484710916, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6024019, + 13.605189 + ], + [ + 52.6027152, + 13.6058941 + ], + [ + 52.6032267, + 13.6070985 + ], + [ + 52.6037635, + 13.6083316 + ], + [ + 52.6038037, + 13.6084252 + ], + [ + 52.6038799, + 13.6085965 + ], + [ + 52.6040265, + 13.6089317 + ], + [ + 52.6040534, + 13.608995 + ], + [ + 52.6044598, + 13.6099267 + ], + [ + 52.6045434, + 13.6101199 + ], + [ + 52.6047147, + 13.6105156 + ], + [ + 52.6051162, + 13.6114603 + ], + [ + 52.6052825, + 13.6118421 + ], + [ + 52.6062398, + 13.6140804 + ], + [ + 52.6067014, + 13.6151345 + ], + [ + 52.6071234, + 13.6161046 + ], + [ + 52.6074537, + 13.6168872 + ], + [ + 52.6078662, + 13.617846 + ], + [ + 52.6082922, + 13.6188206 + ], + [ + 52.6096683, + 13.6220033 + ], + [ + 52.6099857, + 13.6227483 + ], + [ + 52.6103678, + 13.6236591 + ], + [ + 52.6105416, + 13.6240963 + ], + [ + 52.6106907, + 13.624474 + ], + [ + 52.6108542, + 13.6249695 + ], + [ + 52.6110283, + 13.6255393 + ], + [ + 52.6111623, + 13.6260334 + ], + [ + 52.6112663, + 13.6264616 + ], + [ + 52.6113826, + 13.6269817 + ], + [ + 52.6114818, + 13.627483 + ], + [ + 52.6115867, + 13.6280919 + ], + [ + 52.6116843, + 13.6287663 + ], + [ + 52.6117436, + 13.6292511 + ], + [ + 52.6117989, + 13.6298549 + ], + [ + 52.6118486, + 13.6305807 + ], + [ + 52.6118701, + 13.6311164 + ], + [ + 52.6118798, + 13.6316929 + ], + [ + 52.6118781, + 13.6321581 + ], + [ + 52.6118609, + 13.6328898 + ], + [ + 52.6117071, + 13.6375744 + ], + [ + 52.6116754, + 13.6385149 + ], + [ + 52.6114036, + 13.6471458 + ], + [ + 52.6112823, + 13.6509995 + ], + [ + 52.6112783, + 13.6511568 + ], + [ + 52.611267, + 13.6516452 + ], + [ + 52.6112754, + 13.6521364 + ], + [ + 52.6112984, + 13.6526114 + ], + [ + 52.6113297, + 13.6530675 + ], + [ + 52.6113767, + 13.6534739 + ], + [ + 52.6114544, + 13.6540178 + ], + [ + 52.6115385, + 13.6544923 + ], + [ + 52.6116462, + 13.6549755 + ], + [ + 52.6117427, + 13.6553531 + ], + [ + 52.6118351, + 13.655677 + ], + [ + 52.6128819, + 13.6589453 + ], + [ + 52.613388, + 13.6605444 + ], + [ + 52.6151135, + 13.6659368 + ], + [ + 52.6182367, + 13.6756972 + ], + [ + 52.6183106, + 13.6759333 + ], + [ + 52.6184811, + 13.67646 + ], + [ + 52.6191137, + 13.6784392 + ], + [ + 52.6191221, + 13.6784655 + ], + [ + 52.6208977, + 13.6840145 + ], + [ + 52.6220089, + 13.6874889 + ], + [ + 52.6220645, + 13.6876786 + ], + [ + 52.6227387, + 13.6897841 + ], + [ + 52.6260043, + 13.7000014 + ], + [ + 52.6280809, + 13.7064951 + ], + [ + 52.6284282, + 13.7075718 + ], + [ + 52.6287009, + 13.7083276 + ], + [ + 52.6342231, + 13.7231186 + ], + [ + 52.6345807, + 13.7240806 + ], + [ + 52.6347823, + 13.7246381 + ], + [ + 52.634957, + 13.725177 + ], + [ + 52.6351094, + 13.7256805 + ], + [ + 52.635201, + 13.7260191 + ], + [ + 52.635327, + 13.7265135 + ], + [ + 52.6354546, + 13.7270897 + ], + [ + 52.6355635, + 13.7276505 + ], + [ + 52.6361583, + 13.7309504 + ], + [ + 52.636179, + 13.7310659 + ], + [ + 52.6361856, + 13.7311047 + ], + [ + 52.6361862, + 13.7311062 + ] + ] + }, + { + "osmId": "5052078", + "name": "Wriezener Bahn", + "lengthMeters": 4096.1839723696485, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5740789, + 13.5675387 + ], + [ + 52.5747176, + 13.5680896 + ], + [ + 52.5754381, + 13.5687028 + ], + [ + 52.5755363, + 13.568788 + ], + [ + 52.5785482, + 13.5714031 + ], + [ + 52.5791329, + 13.5719107 + ], + [ + 52.579185, + 13.571956 + ], + [ + 52.5792469, + 13.5720095 + ], + [ + 52.5793288, + 13.5720802 + ], + [ + 52.5793771, + 13.5721219 + ], + [ + 52.5804698, + 13.5730651 + ], + [ + 52.5814619, + 13.5739269 + ], + [ + 52.582277, + 13.5746258 + ], + [ + 52.5832538, + 13.5754745 + ], + [ + 52.585531, + 13.5774392 + ], + [ + 52.5874563, + 13.5791003 + ], + [ + 52.5910942, + 13.5822507 + ], + [ + 52.5916411, + 13.5827281 + ], + [ + 52.5918151, + 13.5828925 + ], + [ + 52.5921731, + 13.5832612 + ], + [ + 52.5923409, + 13.5834467 + ], + [ + 52.5925154, + 13.5836529 + ], + [ + 52.592792, + 13.5839972 + ], + [ + 52.5929908, + 13.5842596 + ], + [ + 52.5932512, + 13.5846188 + ], + [ + 52.5934396, + 13.5849007 + ], + [ + 52.5936389, + 13.5852191 + ], + [ + 52.5938696, + 13.5856012 + ], + [ + 52.5940723, + 13.5859904 + ], + [ + 52.5943297, + 13.5865106 + ], + [ + 52.594563, + 13.5870219 + ], + [ + 52.5958869, + 13.5901086 + ], + [ + 52.5965478, + 13.5916111 + ], + [ + 52.5968317, + 13.5922734 + ], + [ + 52.6007547, + 13.6013622 + ], + [ + 52.6021208, + 13.604537 + ] + ] + }, + { + "osmId": "5057535", + "name": null, + "lengthMeters": 555.8382031833725, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4252089, + 13.754153 + ], + [ + 52.4237626, + 13.7554249 + ], + [ + 52.4237376, + 13.7554467 + ], + [ + 52.4234361, + 13.7557105 + ], + [ + 52.4219594, + 13.7570022 + ], + [ + 52.4208001, + 13.7580162 + ] + ] + }, + { + "osmId": "5060090", + "name": null, + "lengthMeters": 2490.488636207406, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4206206, + 13.7581744 + ], + [ + 52.4168873, + 13.7614325 + ], + [ + 52.4167961, + 13.7615121 + ], + [ + 52.4162374, + 13.7619997 + ], + [ + 52.4160149, + 13.7621939 + ], + [ + 52.41598, + 13.7622252 + ], + [ + 52.4158674, + 13.762326 + ], + [ + 52.4154782, + 13.7626746 + ], + [ + 52.4153874, + 13.7627617 + ], + [ + 52.4151412, + 13.7629978 + ], + [ + 52.4148128, + 13.7633248 + ], + [ + 52.4142922, + 13.7638964 + ], + [ + 52.4139412, + 13.7643135 + ], + [ + 52.413781, + 13.7645172 + ], + [ + 52.4137496, + 13.7645571 + ], + [ + 52.413604, + 13.7647422 + ], + [ + 52.4133956, + 13.7650189 + ], + [ + 52.4130087, + 13.7655728 + ], + [ + 52.4126216, + 13.7661594 + ], + [ + 52.4123444, + 13.7666161 + ], + [ + 52.4120733, + 13.7670846 + ], + [ + 52.4116702, + 13.7678484 + ], + [ + 52.4112609, + 13.7686843 + ], + [ + 52.4108841, + 13.7695506 + ], + [ + 52.4105365, + 13.77043 + ], + [ + 52.4102116, + 13.7713417 + ], + [ + 52.4099103, + 13.7722853 + ], + [ + 52.409773, + 13.7727634 + ], + [ + 52.4096374, + 13.7732649 + ], + [ + 52.4093978, + 13.7742311 + ], + [ + 52.4091841, + 13.775229 + ], + [ + 52.409016, + 13.776145 + ], + [ + 52.4089967, + 13.7762707 + ], + [ + 52.4088897, + 13.7769681 + ], + [ + 52.4087623, + 13.777938 + ], + [ + 52.4087147, + 13.7783857 + ], + [ + 52.4086664, + 13.7788752 + ], + [ + 52.4085972, + 13.779785 + ], + [ + 52.4085605, + 13.7804671 + ], + [ + 52.4085494, + 13.7806723 + ], + [ + 52.4085308, + 13.7810752 + ], + [ + 52.4084857, + 13.7820486 + ], + [ + 52.4083289, + 13.7856294 + ] + ] + }, + { + "osmId": "5060092", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 2486.3914861432136, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4083635, + 13.7856337 + ], + [ + 52.4084166, + 13.7844397 + ], + [ + 52.4084613, + 13.7834368 + ], + [ + 52.4085041, + 13.7824913 + ], + [ + 52.4085416, + 13.7816191 + ], + [ + 52.4085685, + 13.7810234 + ], + [ + 52.4085844, + 13.7806726 + ], + [ + 52.4085959, + 13.7804671 + ], + [ + 52.4086341, + 13.7797811 + ], + [ + 52.4087028, + 13.7788979 + ], + [ + 52.4087482, + 13.7784085 + ], + [ + 52.4087973, + 13.7779614 + ], + [ + 52.4089203, + 13.7770049 + ], + [ + 52.4090494, + 13.7761667 + ], + [ + 52.4092202, + 13.7752519 + ], + [ + 52.4094316, + 13.7742637 + ], + [ + 52.4096715, + 13.7732808 + ], + [ + 52.4098061, + 13.7727873 + ], + [ + 52.4099455, + 13.7723059 + ], + [ + 52.4102431, + 13.7713703 + ], + [ + 52.4105674, + 13.7704572 + ], + [ + 52.4109173, + 13.7695784 + ], + [ + 52.4112929, + 13.7687204 + ], + [ + 52.4116965, + 13.7678912 + ], + [ + 52.4120735, + 13.7671738 + ], + [ + 52.4120982, + 13.7671268 + ], + [ + 52.4123731, + 13.766655 + ], + [ + 52.412651, + 13.7662008 + ], + [ + 52.4130259, + 13.7656264 + ], + [ + 52.4134103, + 13.7650756 + ], + [ + 52.4136266, + 13.764791 + ], + [ + 52.4137695, + 13.7646082 + ], + [ + 52.4139674, + 13.764355 + ], + [ + 52.4143077, + 13.7639452 + ], + [ + 52.4148309, + 13.7633768 + ], + [ + 52.4151576, + 13.7630515 + ], + [ + 52.4154025, + 13.7628172 + ], + [ + 52.4154924, + 13.7627311 + ], + [ + 52.4158844, + 13.7623783 + ], + [ + 52.4159948, + 13.762279 + ], + [ + 52.4160311, + 13.7622463 + ], + [ + 52.4162512, + 13.7620544 + ], + [ + 52.4168145, + 13.7615633 + ], + [ + 52.4169093, + 13.7614806 + ], + [ + 52.4179312, + 13.7605895 + ], + [ + 52.4181455, + 13.7604028 + ], + [ + 52.4184469, + 13.7601354 + ], + [ + 52.4206375, + 13.7582268 + ] + ] + }, + { + "osmId": "5086048", + "name": null, + "lengthMeters": 196.44143069027388, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3655362, + 13.4062312 + ], + [ + 52.3651376, + 13.4063707 + ], + [ + 52.364762, + 13.4065047 + ], + [ + 52.3645646, + 13.4065621 + ], + [ + 52.3641851, + 13.4066764 + ], + [ + 52.3638019, + 13.4067789 + ] + ] + }, + { + "osmId": "5086051", + "name": "Potsdamer Kurve", + "lengthMeters": 651.735434679084, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3438743, + 13.4132401 + ], + [ + 52.3441753, + 13.4130699 + ], + [ + 52.3445073, + 13.4129066 + ], + [ + 52.3446485, + 13.4128463 + ], + [ + 52.3447984, + 13.4127884 + ], + [ + 52.3452827, + 13.4126339 + ], + [ + 52.3461985, + 13.4123593 + ], + [ + 52.3472296, + 13.4120463 + ], + [ + 52.3474258, + 13.4119793 + ], + [ + 52.3475647, + 13.4119235 + ], + [ + 52.3477015, + 13.4118565 + ], + [ + 52.3479134, + 13.4117343 + ], + [ + 52.3480239, + 13.4116557 + ], + [ + 52.3481342, + 13.4115637 + ], + [ + 52.3482632, + 13.4114601 + ], + [ + 52.3483377, + 13.4113845 + ], + [ + 52.3484548, + 13.4112423 + ], + [ + 52.3485545, + 13.4111201 + ], + [ + 52.3486598, + 13.4109771 + ], + [ + 52.34876, + 13.4108277 + ], + [ + 52.3488553, + 13.4106693 + ], + [ + 52.3489429, + 13.4105045 + ], + [ + 52.3490381, + 13.4103151 + ], + [ + 52.3491269, + 13.4101098 + ], + [ + 52.3491933, + 13.4099441 + ] + ] + }, + { + "osmId": "5086072", + "name": null, + "lengthMeters": 188.97120667656154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3409005, + 13.4147974 + ], + [ + 52.3394059, + 13.4153058 + ], + [ + 52.3392374, + 13.4153694 + ] + ] + }, + { + "osmId": "5086378", + "name": null, + "lengthMeters": 311.8099563542561, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3585622, + 13.4086767 + ], + [ + 52.3581973, + 13.4087962 + ], + [ + 52.3580214, + 13.4088517 + ], + [ + 52.3577688, + 13.4089188 + ], + [ + 52.3569236, + 13.409145 + ], + [ + 52.356836, + 13.4091683 + ], + [ + 52.3564336, + 13.4092856 + ], + [ + 52.3561642, + 13.409366 + ], + [ + 52.3559365, + 13.4094371 + ], + [ + 52.3558018, + 13.4094821 + ] + ] + }, + { + "osmId": "5086818", + "name": null, + "lengthMeters": 840.5791177821703, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.402086, + 13.3873843 + ], + [ + 52.4021949, + 13.3873127 + ], + [ + 52.4025162, + 13.3871412 + ], + [ + 52.4033684, + 13.3867051 + ], + [ + 52.4035789, + 13.3865847 + ], + [ + 52.4037566, + 13.3864921 + ], + [ + 52.4041925, + 13.3862486 + ], + [ + 52.4042099, + 13.3862373 + ], + [ + 52.4047103, + 13.3859477 + ], + [ + 52.4050576, + 13.3857465 + ], + [ + 52.4055392, + 13.3854668 + ], + [ + 52.4058642, + 13.3852684 + ], + [ + 52.4066761, + 13.3848069 + ], + [ + 52.4073502, + 13.3844455 + ], + [ + 52.4075901, + 13.3843289 + ], + [ + 52.4092624, + 13.3834988 + ] + ] + }, + { + "osmId": "5086823", + "name": null, + "lengthMeters": 150.98284844669845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4017927, + 13.3874736 + ], + [ + 52.4017078, + 13.3875248 + ], + [ + 52.4016228, + 13.3875761 + ], + [ + 52.4015171, + 13.3876315 + ], + [ + 52.4015116, + 13.3876355 + ], + [ + 52.4014992, + 13.3876421 + ], + [ + 52.4014373, + 13.3876775 + ], + [ + 52.4005097, + 13.3882017 + ] + ] + }, + { + "osmId": "5086825", + "name": null, + "lengthMeters": 154.07778720049672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4005095, + 13.3882606 + ], + [ + 52.4009606, + 13.3880089 + ], + [ + 52.4015147, + 13.3876924 + ], + [ + 52.4018206, + 13.3875258 + ] + ] + }, + { + "osmId": "5087057", + "name": null, + "lengthMeters": 302.30810691688794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4442996, + 13.3498831 + ], + [ + 52.4446933, + 13.3503607 + ], + [ + 52.4449224, + 13.3506287 + ], + [ + 52.4451363, + 13.3508737 + ], + [ + 52.4453508, + 13.3511132 + ], + [ + 52.4457911, + 13.3515925 + ], + [ + 52.4461023, + 13.3519146 + ], + [ + 52.4463293, + 13.3521428 + ], + [ + 52.4465563, + 13.3523665 + ] + ] + }, + { + "osmId": "5087058", + "name": null, + "lengthMeters": 243.4834861180491, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627277, + 13.3576097 + ], + [ + 52.4626853, + 13.3575851 + ], + [ + 52.4618312, + 13.3570887 + ], + [ + 52.4617051, + 13.357018 + ], + [ + 52.4614311, + 13.3568691 + ], + [ + 52.4612562, + 13.3567734 + ], + [ + 52.4612123, + 13.3567494 + ], + [ + 52.4611107, + 13.3566964 + ], + [ + 52.4610061, + 13.3566402 + ], + [ + 52.4608184, + 13.3565469 + ], + [ + 52.4606513, + 13.3564712 + ] + ] + }, + { + "osmId": "5087060", + "name": null, + "lengthMeters": 198.29634273529913, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4573914, + 13.3562418 + ], + [ + 52.4580647, + 13.3561892 + ], + [ + 52.4582186, + 13.3561772 + ], + [ + 52.4582282, + 13.3561756 + ], + [ + 52.4583168, + 13.3561696 + ], + [ + 52.4583764, + 13.3561625 + ], + [ + 52.4586304, + 13.3561494 + ], + [ + 52.4588385, + 13.3561449 + ], + [ + 52.4590213, + 13.3561463 + ], + [ + 52.4591732, + 13.3561577 + ] + ] + }, + { + "osmId": "5087062", + "name": null, + "lengthMeters": 200.97906701152326, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4573644, + 13.3564141 + ], + [ + 52.4577866, + 13.3563462 + ], + [ + 52.4581964, + 13.3563113 + ], + [ + 52.4587501, + 13.3563068 + ], + [ + 52.4590174, + 13.3563231 + ], + [ + 52.4591688, + 13.3563383 + ] + ] + }, + { + "osmId": "5087068", + "name": null, + "lengthMeters": 264.78835320809037, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4548795, + 13.3567222 + ], + [ + 52.455029, + 13.3566693 + ], + [ + 52.4552198, + 13.3566121 + ], + [ + 52.4556417, + 13.3565014 + ], + [ + 52.455873, + 13.3564501 + ], + [ + 52.4560994, + 13.3564069 + ], + [ + 52.4563457, + 13.3563612 + ], + [ + 52.4564261, + 13.3563495 + ], + [ + 52.4564704, + 13.3563432 + ], + [ + 52.4566158, + 13.3563223 + ], + [ + 52.4568074, + 13.3562975 + ], + [ + 52.4572413, + 13.3562566 + ] + ] + }, + { + "osmId": "5087456", + "name": "Anhalter Bahn", + "lengthMeters": 141.12968603620033, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4440288, + 13.3497533 + ], + [ + 52.444249, + 13.3500241 + ], + [ + 52.4447048, + 13.3505725 + ], + [ + 52.4449124, + 13.3508177 + ], + [ + 52.445054, + 13.3509807 + ] + ] + }, + { + "osmId": "5088626", + "name": null, + "lengthMeters": 110.8801836952112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5748083, + 10.0576017 + ], + [ + 53.5749844, + 10.0575709 + ], + [ + 53.575292, + 10.0575395 + ], + [ + 53.5757295, + 10.05753 + ], + [ + 53.5757364, + 10.0575302 + ], + [ + 53.5758039, + 10.0575274 + ] + ] + }, + { + "osmId": "5116493", + "name": null, + "lengthMeters": 276.7043047837107, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.415458, + 13.5685425 + ], + [ + 52.4150745, + 13.5694582 + ], + [ + 52.4148152, + 13.569972 + ], + [ + 52.4146718, + 13.5702562 + ], + [ + 52.4143419, + 13.5708517 + ], + [ + 52.414243, + 13.5710294 + ], + [ + 52.4138663, + 13.5716679 + ] + ] + }, + { + "osmId": "5116494", + "name": null, + "lengthMeters": 316.78875207290747, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4263076, + 13.5618311 + ], + [ + 52.4259873, + 13.5616181 + ], + [ + 52.4257919, + 13.561471 + ], + [ + 52.4257535, + 13.561435 + ], + [ + 52.4256206, + 13.5613105 + ], + [ + 52.4254333, + 13.5610875 + ], + [ + 52.4252232, + 13.5608139 + ], + [ + 52.4247541, + 13.5601174 + ], + [ + 52.4240047, + 13.5591375 + ] + ] + }, + { + "osmId": "5116495", + "name": null, + "lengthMeters": 115.58117436692822, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4240047, + 13.5591375 + ], + [ + 52.4231891, + 13.5580808 + ] + ] + }, + { + "osmId": "5116497", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 121.5175544328781, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4232008, + 13.5599868 + ], + [ + 52.4221602, + 13.5594394 + ] + ] + }, + { + "osmId": "5116499", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 81.17944466807113, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4271414, + 13.5622453 + ], + [ + 52.4264428, + 13.5618976 + ] + ] + }, + { + "osmId": "5132482", + "name": null, + "lengthMeters": 250.37308700682476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.639902, + 10.0166353 + ], + [ + 53.6397819, + 10.0166212 + ], + [ + 53.6392312, + 10.0165825 + ], + [ + 53.6387054, + 10.0165892 + ], + [ + 53.6385051, + 10.0166042 + ], + [ + 53.6381886, + 10.0166279 + ], + [ + 53.6380587, + 10.0166358 + ], + [ + 53.6379244, + 10.0166449 + ], + [ + 53.6376531, + 10.0166893 + ] + ] + }, + { + "osmId": "5132483", + "name": null, + "lengthMeters": 138.70721872876015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6298225, + 10.0312743 + ], + [ + 53.6308509, + 10.0300837 + ] + ] + }, + { + "osmId": "5132494", + "name": null, + "lengthMeters": 367.3902731046227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6273056, + 10.0335312 + ], + [ + 53.6271624, + 10.0335535 + ], + [ + 53.6270285, + 10.0335679 + ], + [ + 53.6269134, + 10.0335715 + ], + [ + 53.6268263, + 10.0335675 + ], + [ + 53.6267305, + 10.0335582 + ], + [ + 53.6265797, + 10.0335273 + ], + [ + 53.6263666, + 10.0334602 + ], + [ + 53.6258152, + 10.0332365 + ], + [ + 53.6252666, + 10.0330105 + ], + [ + 53.6244351, + 10.0326812 + ], + [ + 53.6240789, + 10.0324938 + ] + ] + }, + { + "osmId": "5156217", + "name": null, + "lengthMeters": 157.44979458703256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1733107, + 11.5870941 + ], + [ + 48.1732088, + 11.5870575 + ], + [ + 48.1730379, + 11.5869961 + ], + [ + 48.1729982, + 11.5869807 + ], + [ + 48.1729643, + 11.5869675 + ], + [ + 48.1729186, + 11.5869448 + ], + [ + 48.1728892, + 11.5869258 + ], + [ + 48.1728816, + 11.5869203 + ], + [ + 48.1728641, + 11.5869074 + ], + [ + 48.172849, + 11.5868885 + ], + [ + 48.1728355, + 11.5868705 + ], + [ + 48.1728196, + 11.5868462 + ], + [ + 48.1728047, + 11.586821 + ], + [ + 48.1727916, + 11.5867917 + ], + [ + 48.1727781, + 11.5867592 + ], + [ + 48.1727693, + 11.5867333 + ], + [ + 48.1727602, + 11.5867041 + ], + [ + 48.1727495, + 11.5866584 + ], + [ + 48.172742, + 11.5866055 + ], + [ + 48.1727297, + 11.5863244 + ], + [ + 48.1727227, + 11.5862135 + ], + [ + 48.1727162, + 11.5861662 + ], + [ + 48.1727089, + 11.5861369 + ], + [ + 48.1727072, + 11.5861319 + ], + [ + 48.172694, + 11.5860918 + ], + [ + 48.1726868, + 11.5860727 + ], + [ + 48.1726707, + 11.5860354 + ], + [ + 48.1726636, + 11.5860214 + ], + [ + 48.1726543, + 11.5860057 + ], + [ + 48.1726462, + 11.5859914 + ], + [ + 48.1726368, + 11.5859771 + ], + [ + 48.1726261, + 11.5859611 + ], + [ + 48.1725945, + 11.585926 + ], + [ + 48.1725719, + 11.5859051 + ], + [ + 48.1725542, + 11.5858892 + ], + [ + 48.1725445, + 11.5858818 + ], + [ + 48.1725347, + 11.5858751 + ], + [ + 48.1725168, + 11.5858656 + ], + [ + 48.1724989, + 11.5858568 + ], + [ + 48.1724832, + 11.5858507 + ], + [ + 48.1724671, + 11.5858454 + ], + [ + 48.1724546, + 11.5858423 + ], + [ + 48.1724243, + 11.5858369 + ], + [ + 48.1724101, + 11.5858351 + ], + [ + 48.1723959, + 11.5858342 + ] + ] + }, + { + "osmId": "5172283", + "name": null, + "lengthMeters": 93.04065957108972, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5842052, + 10.0462827 + ], + [ + 53.5837692, + 10.0458626 + ], + [ + 53.5834866, + 10.0455613 + ] + ] + }, + { + "osmId": "5180468", + "name": null, + "lengthMeters": 1323.7002343568593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1828268, + 11.5302954 + ], + [ + 48.1822028, + 11.5297114 + ], + [ + 48.182004, + 11.529528 + ], + [ + 48.1818281, + 11.5293707 + ], + [ + 48.1816623, + 11.5292489 + ], + [ + 48.181518, + 11.529161 + ], + [ + 48.181342, + 11.5290747 + ], + [ + 48.1811695, + 11.5290138 + ], + [ + 48.1809306, + 11.5289722 + ], + [ + 48.180283, + 11.5289343 + ], + [ + 48.1792378, + 11.5289689 + ], + [ + 48.1783163, + 11.5289435 + ], + [ + 48.1772611, + 11.5289794 + ], + [ + 48.1766595, + 11.529001 + ], + [ + 48.1765374, + 11.5289935 + ], + [ + 48.1760617, + 11.5290281 + ], + [ + 48.1759001, + 11.5290121 + ], + [ + 48.1756824, + 11.5289698 + ], + [ + 48.1741848, + 11.5285122 + ], + [ + 48.173924, + 11.5284759 + ], + [ + 48.1728414, + 11.528502 + ], + [ + 48.1725862, + 11.5284793 + ], + [ + 48.1718505, + 11.5283644 + ], + [ + 48.1714778, + 11.5283026 + ], + [ + 48.1713443, + 11.5282764 + ], + [ + 48.1711874, + 11.5282844 + ] + ] + }, + { + "osmId": "5181716", + "name": null, + "lengthMeters": 595.0158402871867, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6331569, + 13.2157286 + ], + [ + 52.6331914, + 13.2154705 + ], + [ + 52.6332515, + 13.2150546 + ], + [ + 52.6333964, + 13.2140462 + ], + [ + 52.6334371, + 13.2137789 + ], + [ + 52.6334878, + 13.2134332 + ], + [ + 52.6335596, + 13.2129671 + ], + [ + 52.6336227, + 13.212586 + ], + [ + 52.6336493, + 13.2124323 + ], + [ + 52.6336755, + 13.2122927 + ], + [ + 52.6337401, + 13.2119639 + ], + [ + 52.6338161, + 13.2116404 + ], + [ + 52.6338604, + 13.2114549 + ], + [ + 52.6339218, + 13.2112299 + ], + [ + 52.6340165, + 13.2109038 + ], + [ + 52.6341133, + 13.2105965 + ], + [ + 52.634401, + 13.2098113 + ], + [ + 52.6347509, + 13.2090528 + ], + [ + 52.6349873, + 13.2086132 + ], + [ + 52.6350651, + 13.2084686 + ], + [ + 52.6354127, + 13.2079405 + ] + ] + }, + { + "osmId": "5181717", + "name": null, + "lengthMeters": 85.97185819703505, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6329756, + 13.216967 + ], + [ + 52.6331569, + 13.2157286 + ] + ] + }, + { + "osmId": "5200860", + "name": "Anhalter Bahn", + "lengthMeters": 1561.984473928924, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4047142, + 13.3066749 + ], + [ + 52.4053458, + 13.3069377 + ], + [ + 52.4061718, + 13.3072814 + ], + [ + 52.4080161, + 13.3080502 + ], + [ + 52.4086265, + 13.3083049 + ], + [ + 52.4092539, + 13.3085692 + ], + [ + 52.4095357, + 13.3086927 + ], + [ + 52.4098174, + 13.3088187 + ], + [ + 52.4104226, + 13.3091015 + ], + [ + 52.4110433, + 13.3093962 + ], + [ + 52.4116479, + 13.3096843 + ], + [ + 52.4120915, + 13.3099031 + ], + [ + 52.4122654, + 13.3099904 + ], + [ + 52.4128641, + 13.3103056 + ], + [ + 52.4134582, + 13.3106404 + ], + [ + 52.4137329, + 13.3108027 + ], + [ + 52.4140073, + 13.3109677 + ], + [ + 52.4143945, + 13.3112115 + ], + [ + 52.4145108, + 13.3112847 + ], + [ + 52.4150506, + 13.3116399 + ], + [ + 52.4156314, + 13.3120413 + ], + [ + 52.4159271, + 13.3122569 + ], + [ + 52.4162217, + 13.3124752 + ], + [ + 52.4167588, + 13.312883 + ], + [ + 52.4178726, + 13.3137397 + ], + [ + 52.4180242, + 13.3138552 + ] + ] + }, + { + "osmId": "5208614", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 306.9891107373137, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4461213, + 10.0038344 + ], + [ + 53.4459233, + 10.0041376 + ], + [ + 53.4456631, + 10.004536 + ], + [ + 53.4449373, + 10.005666 + ], + [ + 53.4445819, + 10.0061904 + ], + [ + 53.4440672, + 10.0069307 + ] + ] + }, + { + "osmId": "5208615", + "name": "Niederelbebahn", + "lengthMeters": 172.65990380927983, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4562488, + 9.9912187 + ], + [ + 53.4564603, + 9.9911001 + ], + [ + 53.4565563, + 9.9910322 + ], + [ + 53.4566667, + 9.9909542 + ], + [ + 53.4567788, + 9.9908754 + ], + [ + 53.456915, + 9.99078 + ], + [ + 53.4570496, + 9.9906744 + ], + [ + 53.457101, + 9.9906416 + ], + [ + 53.457203, + 9.990564 + ], + [ + 53.4572176, + 9.9905529 + ], + [ + 53.4572302, + 9.9905433 + ], + [ + 53.4573655, + 9.9904347 + ], + [ + 53.4575043, + 9.9903174 + ], + [ + 53.4576443, + 9.9901732 + ], + [ + 53.4576629, + 9.9901541 + ] + ] + }, + { + "osmId": "5216825", + "name": null, + "lengthMeters": 1927.2416541265598, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1879475, + 11.6121523 + ], + [ + 48.1880812, + 11.6112227 + ], + [ + 48.1881132, + 11.6109983 + ], + [ + 48.1881768, + 11.6105525 + ], + [ + 48.1883128, + 11.6096591 + ], + [ + 48.1884555, + 11.6087377 + ], + [ + 48.1893337, + 11.6027888 + ], + [ + 48.1895159, + 11.6015738 + ], + [ + 48.1896825, + 11.6004496 + ], + [ + 48.1897016, + 11.6003191 + ], + [ + 48.1899702, + 11.598508 + ], + [ + 48.1901422, + 11.5972693 + ], + [ + 48.1902644, + 11.5963956 + ], + [ + 48.1903799, + 11.5952959 + ], + [ + 48.1905007, + 11.593534 + ], + [ + 48.1905228, + 11.5929109 + ], + [ + 48.1905396, + 11.5917904 + ], + [ + 48.1905268, + 11.5907028 + ], + [ + 48.1905032, + 11.5882907 + ], + [ + 48.1905003, + 11.5865576 + ] + ] + }, + { + "osmId": "5319648", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 325.2183450583054, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3377978, + 13.2954746 + ], + [ + 52.338047, + 13.2966375 + ], + [ + 52.338158, + 13.2971633 + ], + [ + 52.338224, + 13.2974761 + ], + [ + 52.3383938, + 13.2983919 + ], + [ + 52.3384344, + 13.2986299 + ], + [ + 52.3385709, + 13.2994947 + ], + [ + 52.3386447, + 13.3000517 + ] + ] + }, + { + "osmId": "5363300", + "name": null, + "lengthMeters": 123.97822033630902, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533099, + 13.203517 + ], + [ + 52.5336069, + 13.2018853 + ] + ] + }, + { + "osmId": "5363301", + "name": null, + "lengthMeters": 160.23392382122884, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5336069, + 13.2018853 + ], + [ + 52.5336451, + 13.2017455 + ], + [ + 52.5338275, + 13.2010602 + ], + [ + 52.5339781, + 13.2004371 + ], + [ + 52.5341436, + 13.1997141 + ], + [ + 52.5341489, + 13.199691 + ] + ] + }, + { + "osmId": "5363305", + "name": null, + "lengthMeters": 206.5631498432637, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321016, + 13.2072686 + ], + [ + 52.5322194, + 13.2066903 + ], + [ + 52.532341, + 13.2061551 + ], + [ + 52.5325605, + 13.2052968 + ], + [ + 52.5327059, + 13.2047912 + ], + [ + 52.532807, + 13.2044469 + ] + ] + }, + { + "osmId": "5363307", + "name": null, + "lengthMeters": 416.34375221849143, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531249, + 13.2134842 + ], + [ + 52.5312762, + 13.213271 + ], + [ + 52.5316191, + 13.2105886 + ], + [ + 52.5318473, + 13.2088077 + ], + [ + 52.5318715, + 13.2086452 + ], + [ + 52.5319397, + 13.2081946 + ], + [ + 52.5320229, + 13.2076904 + ], + [ + 52.5320614, + 13.2074774 + ] + ] + }, + { + "osmId": "5363309", + "name": null, + "lengthMeters": 211.3438830980653, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5313916, + 13.213536 + ], + [ + 52.5314705, + 13.2129264 + ], + [ + 52.5315232, + 13.2125759 + ], + [ + 52.5315341, + 13.2125031 + ], + [ + 52.5315858, + 13.2121923 + ], + [ + 52.5315889, + 13.2121737 + ], + [ + 52.5316229, + 13.2119674 + ], + [ + 52.5317169, + 13.211398 + ], + [ + 52.5317927, + 13.2108891 + ], + [ + 52.5318432, + 13.2105019 + ] + ] + }, + { + "osmId": "5363312", + "name": null, + "lengthMeters": 139.72175929552972, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5309614, + 13.2157273 + ], + [ + 52.5312213, + 13.2137064 + ] + ] + }, + { + "osmId": "5363313", + "name": null, + "lengthMeters": 141.16648725273342, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5311098, + 13.2157991 + ], + [ + 52.531186, + 13.2151881 + ], + [ + 52.5312821, + 13.2144175 + ], + [ + 52.5313648, + 13.2137547 + ] + ] + }, + { + "osmId": "5363317", + "name": null, + "lengthMeters": 133.44831518991185, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5299161, + 13.2213298 + ], + [ + 52.5300518, + 13.2210977 + ], + [ + 52.5301717, + 13.220863 + ], + [ + 52.5302497, + 13.2206801 + ], + [ + 52.5303381, + 13.2204728 + ], + [ + 52.5304597, + 13.2201469 + ], + [ + 52.530547, + 13.219872 + ], + [ + 52.5305929, + 13.2197136 + ] + ] + }, + { + "osmId": "5363318", + "name": null, + "lengthMeters": 156.45260274675192, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289998, + 13.2328013 + ], + [ + 52.5290294, + 13.2324448 + ], + [ + 52.5290404, + 13.2323438 + ], + [ + 52.5292302, + 13.2305199 + ] + ] + }, + { + "osmId": "5542589", + "name": null, + "lengthMeters": 93.49302021386785, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6227883, + 10.0324705 + ], + [ + 53.6236065, + 10.032797 + ] + ] + }, + { + "osmId": "5542590", + "name": null, + "lengthMeters": 133.75338806086933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6195602, + 10.0315265 + ], + [ + 53.6196118, + 10.0315504 + ], + [ + 53.6198055, + 10.0316403 + ], + [ + 53.6201005, + 10.0317459 + ], + [ + 53.620265, + 10.0317919 + ], + [ + 53.6203873, + 10.0318261 + ], + [ + 53.6206338, + 10.0318951 + ], + [ + 53.6207388, + 10.0319229 + ] + ] + }, + { + "osmId": "5542595", + "name": null, + "lengthMeters": 112.73297734101108, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6293515, + 10.039331 + ], + [ + 53.6292048, + 10.03867 + ], + [ + 53.629148, + 10.0384427 + ], + [ + 53.6290763, + 10.0381824 + ], + [ + 53.6289912, + 10.0378944 + ], + [ + 53.6289496, + 10.0377636 + ] + ] + }, + { + "osmId": "5542601", + "name": null, + "lengthMeters": 200.23969016394884, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6325816, + 10.0550905 + ], + [ + 53.6331747, + 10.0577776 + ], + [ + 53.6332098, + 10.0579367 + ] + ] + }, + { + "osmId": "5542605", + "name": null, + "lengthMeters": 523.8656803776131, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6350226, + 10.0655757 + ], + [ + 53.6340584, + 10.061467 + ], + [ + 53.6338616, + 10.0606286 + ], + [ + 53.6333027, + 10.0581786 + ] + ] + }, + { + "osmId": "5542606", + "name": null, + "lengthMeters": 524.2617592884255, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6332676, + 10.0581948 + ], + [ + 53.6337858, + 10.0604681 + ], + [ + 53.6338901, + 10.0609255 + ], + [ + 53.634985, + 10.0656 + ] + ] + }, + { + "osmId": "5542610", + "name": null, + "lengthMeters": 164.27479174939813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6350574, + 10.0659367 + ], + [ + 53.63509, + 10.0660969 + ], + [ + 53.6351505, + 10.066394 + ], + [ + 53.6352537, + 10.0669024 + ], + [ + 53.6354471, + 10.0677533 + ], + [ + 53.6355658, + 10.0682348 + ], + [ + 53.6355745, + 10.0682699 + ] + ] + }, + { + "osmId": "5542612", + "name": null, + "lengthMeters": 646.3995034979052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6356055, + 10.068396 + ], + [ + 53.6357737, + 10.0690686 + ], + [ + 53.6361654, + 10.0706347 + ], + [ + 53.6368493, + 10.073511 + ], + [ + 53.6371258, + 10.0745317 + ], + [ + 53.6371654, + 10.0746521 + ], + [ + 53.637172, + 10.0746722 + ], + [ + 53.6374569, + 10.0755379 + ], + [ + 53.6377538, + 10.0763361 + ], + [ + 53.6380466, + 10.0769854 + ], + [ + 53.6381345, + 10.0771804 + ] + ] + }, + { + "osmId": "5880627", + "name": null, + "lengthMeters": 568.8069771671743, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006795, + 13.2884789 + ], + [ + 52.5010384, + 13.2888441 + ], + [ + 52.5012993, + 13.28913 + ], + [ + 52.5015162, + 13.2893758 + ], + [ + 52.5017329, + 13.2896967 + ], + [ + 52.5019011, + 13.2899576 + ], + [ + 52.5020762, + 13.2903294 + ], + [ + 52.5022276, + 13.290712 + ], + [ + 52.5023557, + 13.291166 + ], + [ + 52.5024642, + 13.2916709 + ], + [ + 52.5026127, + 13.2926577 + ], + [ + 52.5028181, + 13.2940895 + ], + [ + 52.5030039, + 13.2953958 + ], + [ + 52.5030194, + 13.2955041 + ] + ] + }, + { + "osmId": "5883641", + "name": null, + "lengthMeters": 87.12487474380313, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4988168, + 13.2820992 + ], + [ + 52.498738, + 13.2817959 + ], + [ + 52.4986383, + 13.2813095 + ], + [ + 52.4985667, + 13.2808813 + ] + ] + }, + { + "osmId": "5895762", + "name": null, + "lengthMeters": 423.69119504819906, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1455623, + 11.44092 + ], + [ + 48.1450529, + 11.4404069 + ], + [ + 48.1447658, + 11.4401145 + ], + [ + 48.144561, + 11.4398993 + ], + [ + 48.1444285, + 11.4397497 + ], + [ + 48.1442497, + 11.439517 + ], + [ + 48.1441033, + 11.4393033 + ], + [ + 48.1439788, + 11.439095 + ], + [ + 48.1438505, + 11.4388577 + ], + [ + 48.1437316, + 11.4386129 + ], + [ + 48.14367, + 11.4384715 + ], + [ + 48.1436134, + 11.4383263 + ], + [ + 48.143563, + 11.4381974 + ], + [ + 48.1435191, + 11.4380653 + ], + [ + 48.1434738, + 11.4379291 + ], + [ + 48.1434268, + 11.4377671 + ], + [ + 48.1433912, + 11.4376442 + ], + [ + 48.1433518, + 11.4374939 + ], + [ + 48.1433139, + 11.4373331 + ], + [ + 48.1432818, + 11.437174 + ], + [ + 48.1432287, + 11.4368771 + ], + [ + 48.1432033, + 11.4366854 + ] + ] + }, + { + "osmId": "6074658", + "name": null, + "lengthMeters": 4976.473511403948, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3603191, + 13.6208415 + ], + [ + 52.3599288, + 13.6210187 + ], + [ + 52.3596941, + 13.6211273 + ], + [ + 52.3593174, + 13.6213016 + ], + [ + 52.3590274, + 13.6214317 + ], + [ + 52.3580817, + 13.6218848 + ], + [ + 52.3572928, + 13.6222671 + ], + [ + 52.3572708, + 13.6222775 + ], + [ + 52.3569288, + 13.6224385 + ], + [ + 52.356871, + 13.6224667 + ], + [ + 52.3568056, + 13.6224987 + ], + [ + 52.3567322, + 13.6225284 + ], + [ + 52.3566667, + 13.6225577 + ], + [ + 52.3562704, + 13.6227349 + ], + [ + 52.355974, + 13.6228719 + ], + [ + 52.3556472, + 13.6230211 + ], + [ + 52.3545168, + 13.623543 + ], + [ + 52.3543116, + 13.6236377 + ], + [ + 52.3527995, + 13.6243358 + ], + [ + 52.3525335, + 13.6244597 + ], + [ + 52.3521114, + 13.6246762 + ], + [ + 52.3516957, + 13.624914 + ], + [ + 52.3513008, + 13.6251572 + ], + [ + 52.350909, + 13.6254241 + ], + [ + 52.3507523, + 13.6255297 + ], + [ + 52.3502905, + 13.6258727 + ], + [ + 52.3497995, + 13.6262688 + ], + [ + 52.3493944, + 13.6266023 + ], + [ + 52.3492182, + 13.6267458 + ], + [ + 52.3490115, + 13.6269142 + ], + [ + 52.3488394, + 13.6270522 + ], + [ + 52.3477293, + 13.6279576 + ], + [ + 52.3477224, + 13.6279619 + ], + [ + 52.3475797, + 13.6280766 + ], + [ + 52.3474902, + 13.6281473 + ], + [ + 52.3473273, + 13.6282652 + ], + [ + 52.3472639, + 13.6283164 + ], + [ + 52.347084, + 13.6284471 + ], + [ + 52.346297, + 13.629019 + ], + [ + 52.3461419, + 13.6291205 + ], + [ + 52.3450503, + 13.6298349 + ], + [ + 52.3443967, + 13.6302627 + ], + [ + 52.3439005, + 13.6305803 + ], + [ + 52.3425873, + 13.6314444 + ], + [ + 52.3419501, + 13.63186 + ], + [ + 52.3409314, + 13.632495 + ], + [ + 52.3399323, + 13.6331455 + ], + [ + 52.3394079, + 13.6334821 + ], + [ + 52.3389929, + 13.6337468 + ], + [ + 52.3388851, + 13.6338156 + ], + [ + 52.3388721, + 13.6338218 + ], + [ + 52.3388102, + 13.6338511 + ], + [ + 52.3387415, + 13.6338955 + ], + [ + 52.3386201, + 13.633974 + ], + [ + 52.3383144, + 13.6341716 + ], + [ + 52.3383021, + 13.6341796 + ], + [ + 52.3378913, + 13.6344441 + ], + [ + 52.3362553, + 13.6354998 + ], + [ + 52.3356598, + 13.6358841 + ], + [ + 52.3346433, + 13.636494 + ], + [ + 52.3336791, + 13.6369606 + ], + [ + 52.3327796, + 13.637288 + ], + [ + 52.3318831, + 13.6374784 + ], + [ + 52.3307236, + 13.6375718 + ], + [ + 52.3297096, + 13.6375509 + ], + [ + 52.3291925, + 13.6374589 + ], + [ + 52.3285032, + 13.6373363 + ], + [ + 52.3274612, + 13.6370111 + ], + [ + 52.3274541, + 13.6370084 + ], + [ + 52.3272661, + 13.6369377 + ], + [ + 52.3271646, + 13.6368932 + ], + [ + 52.326991, + 13.6368192 + ], + [ + 52.3269314, + 13.6367926 + ], + [ + 52.3268731, + 13.636769 + ], + [ + 52.3267702, + 13.6367272 + ], + [ + 52.3261986, + 13.6364951 + ], + [ + 52.3255239, + 13.6361971 + ], + [ + 52.3251203, + 13.6360188 + ], + [ + 52.3240377, + 13.6355435 + ], + [ + 52.3236176, + 13.6353645 + ], + [ + 52.3225823, + 13.6349233 + ], + [ + 52.3219492, + 13.6346361 + ], + [ + 52.3213064, + 13.6343584 + ], + [ + 52.3202522, + 13.633897 + ], + [ + 52.3198325, + 13.6337282 + ], + [ + 52.31958, + 13.6336073 + ], + [ + 52.3190066, + 13.6333858 + ], + [ + 52.3184064, + 13.633143 + ], + [ + 52.3177584, + 13.6328903 + ] + ] + }, + { + "osmId": "6074788", + "name": null, + "lengthMeters": 606.1312662149862, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5338932, + 13.3264913 + ], + [ + 52.5335068, + 13.3236951 + ], + [ + 52.5331403, + 13.3209449 + ], + [ + 52.5331232, + 13.3208181 + ], + [ + 52.5327082, + 13.3177445 + ] + ] + }, + { + "osmId": "6134784", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 348.35564118383434, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.120136, + 11.5368545 + ], + [ + 48.1195243, + 11.5367185 + ], + [ + 48.1193123, + 11.5366714 + ], + [ + 48.1184054, + 11.5364628 + ], + [ + 48.1175601, + 11.5362874 + ], + [ + 48.1172845, + 11.5362353 + ], + [ + 48.1170348, + 11.5361912 + ] + ] + }, + { + "osmId": "6135048", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 969.3924608206173, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1089563, + 11.5362878 + ], + [ + 48.1078322, + 11.5363188 + ], + [ + 48.107088, + 11.5363394 + ], + [ + 48.1068758, + 11.5363442 + ], + [ + 48.1063961, + 11.5363553 + ], + [ + 48.1062532, + 11.536359 + ], + [ + 48.1052296, + 11.5363826 + ], + [ + 48.1048242, + 11.5363706 + ], + [ + 48.1044518, + 11.5363376 + ], + [ + 48.1041742, + 11.5363107 + ], + [ + 48.1037972, + 11.5362661 + ], + [ + 48.103667, + 11.5362426 + ], + [ + 48.1034022, + 11.5361956 + ], + [ + 48.1031314, + 11.5361373 + ], + [ + 48.1029032, + 11.5360821 + ], + [ + 48.102622, + 11.5360077 + ], + [ + 48.1022561, + 11.5359075 + ], + [ + 48.1021096, + 11.5358649 + ], + [ + 48.1018689, + 11.5357894 + ], + [ + 48.1016928, + 11.5357222 + ], + [ + 48.1016145, + 11.5356923 + ], + [ + 48.1015365, + 11.5356638 + ], + [ + 48.1008037, + 11.5353853 + ], + [ + 48.1006717, + 11.5353301 + ], + [ + 48.1003965, + 11.5352151 + ], + [ + 48.1003201, + 11.5351851 + ] + ] + }, + { + "osmId": "6138684", + "name": null, + "lengthMeters": 332.45144403155746, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5532195, + 9.9356388 + ], + [ + 53.5534972, + 9.9356506 + ], + [ + 53.5537543, + 9.9356632 + ], + [ + 53.554845, + 9.9357119 + ], + [ + 53.555291, + 9.9357318 + ], + [ + 53.5553864, + 9.935735 + ], + [ + 53.5559504, + 9.9357537 + ], + [ + 53.555967, + 9.9357516 + ], + [ + 53.5561835, + 9.9357232 + ], + [ + 53.5562077, + 9.9357209 + ] + ] + }, + { + "osmId": "6139080", + "name": null, + "lengthMeters": 1239.8281912569732, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1705588, + 11.5943412 + ], + [ + 48.1727717, + 11.5965805 + ], + [ + 48.1731431, + 11.5969722 + ], + [ + 48.1781883, + 11.6022706 + ], + [ + 48.1785212, + 11.6026286 + ], + [ + 48.1786222, + 11.6027373 + ], + [ + 48.1790834, + 11.6032274 + ], + [ + 48.1793553, + 11.6035164 + ], + [ + 48.1797098, + 11.6038931 + ] + ] + }, + { + "osmId": "6141454", + "name": null, + "lengthMeters": 1269.284502433543, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5379784, + 13.5246055 + ], + [ + 52.5380168, + 13.5244707 + ], + [ + 52.5380647, + 13.5243276 + ], + [ + 52.5381806, + 13.5239998 + ], + [ + 52.5383575, + 13.5235072 + ], + [ + 52.5384425, + 13.5232849 + ], + [ + 52.5385191, + 13.523105 + ], + [ + 52.5386054, + 13.5229104 + ], + [ + 52.5387086, + 13.5227039 + ], + [ + 52.5392248, + 13.5217063 + ], + [ + 52.5394783, + 13.5212124 + ], + [ + 52.5395813, + 13.5210023 + ], + [ + 52.5396696, + 13.5208065 + ], + [ + 52.539758, + 13.5205959 + ], + [ + 52.5398316, + 13.5204091 + ], + [ + 52.5399235, + 13.5201653 + ], + [ + 52.5400615, + 13.5197792 + ], + [ + 52.5406153, + 13.5182724 + ], + [ + 52.54136, + 13.5162234 + ], + [ + 52.5413894, + 13.5161424 + ], + [ + 52.5414249, + 13.5160454 + ], + [ + 52.5421712, + 13.5140069 + ], + [ + 52.5422517, + 13.5137749 + ], + [ + 52.5423279, + 13.513541 + ], + [ + 52.5423967, + 13.5133191 + ], + [ + 52.5424604, + 13.5130946 + ], + [ + 52.5425098, + 13.5129053 + ], + [ + 52.5425676, + 13.5126658 + ], + [ + 52.5426164, + 13.5124318 + ], + [ + 52.542657, + 13.5122116 + ], + [ + 52.5426927, + 13.5119848 + ], + [ + 52.5427197, + 13.5118035 + ], + [ + 52.5427502, + 13.5115649 + ], + [ + 52.5427873, + 13.5112591 + ], + [ + 52.5430492, + 13.5086218 + ], + [ + 52.5430551, + 13.508563 + ], + [ + 52.543065, + 13.5084631 + ], + [ + 52.5430743, + 13.5083695 + ], + [ + 52.5430801, + 13.5083106 + ], + [ + 52.5430849, + 13.5082727 + ], + [ + 52.543096, + 13.5081495 + ] + ] + }, + { + "osmId": "6146877", + "name": null, + "lengthMeters": 103.9364692055618, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5415303, + 13.4074397 + ], + [ + 52.5412864, + 13.4061512 + ], + [ + 52.5412843, + 13.4061317 + ], + [ + 52.5412763, + 13.4060595 + ], + [ + 52.5412746, + 13.4059653 + ] + ] + }, + { + "osmId": "6229966", + "name": "Pinneberger S-Bahn", + "lengthMeters": 86.68355794425047, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5630205, + 9.9429615 + ], + [ + 53.5630659, + 9.9426356 + ], + [ + 53.5631115, + 9.9423232 + ], + [ + 53.5631571, + 9.941958 + ], + [ + 53.563179, + 9.9416775 + ] + ] + }, + { + "osmId": "6230032", + "name": "Verbindungsbahn", + "lengthMeters": 401.1245500273367, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5618534, + 9.9485972 + ], + [ + 53.5617869, + 9.9488857 + ], + [ + 53.5615467, + 9.9499547 + ], + [ + 53.5613497, + 9.9509304 + ], + [ + 53.561243, + 9.9515981 + ], + [ + 53.5612144, + 9.9518178 + ], + [ + 53.5611729, + 9.9521359 + ], + [ + 53.5611456, + 9.9524422 + ], + [ + 53.5611398, + 9.9525091 + ], + [ + 53.5611146, + 9.9528688 + ], + [ + 53.5611054, + 9.9530552 + ], + [ + 53.5611015, + 9.9535897 + ], + [ + 53.5611056, + 9.953685 + ], + [ + 53.561143, + 9.954195 + ], + [ + 53.5611761, + 9.9544673 + ] + ] + }, + { + "osmId": "6236665", + "name": "Verbindungsbahn", + "lengthMeters": 133.0974566604566, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5611761, + 9.9544673 + ], + [ + 53.5611801, + 9.9544979 + ], + [ + 53.5613899, + 9.956002 + ], + [ + 53.5614688, + 9.9564203 + ] + ] + }, + { + "osmId": "6244027", + "name": null, + "lengthMeters": 306.58448358231874, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5317279, + 10.0215142 + ], + [ + 53.5341506, + 10.0237288 + ] + ] + }, + { + "osmId": "6270508", + "name": null, + "lengthMeters": 206.84966491461978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5646467, + 9.9337709 + ], + [ + 53.5646981, + 9.9337634 + ], + [ + 53.564728, + 9.9337589 + ], + [ + 53.5653318, + 9.9336828 + ], + [ + 53.5662107, + 9.9335749 + ], + [ + 53.5665014, + 9.9335302 + ] + ] + }, + { + "osmId": "6270944", + "name": "Verbindungsbahn", + "lengthMeters": 368.78166349364693, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530698, + 9.9354715 + ], + [ + 53.5531705, + 9.9354775 + ], + [ + 53.5534988, + 9.935491 + ], + [ + 53.5537591, + 9.935504 + ], + [ + 53.5543216, + 9.9355301 + ], + [ + 53.5543818, + 9.9355329 + ], + [ + 53.5553991, + 9.9355659 + ], + [ + 53.5559687, + 9.9355843 + ], + [ + 53.5563852, + 9.9356121 + ] + ] + }, + { + "osmId": "6273974", + "name": "Verbindungsbahn", + "lengthMeters": 118.37646794020398, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5626064, + 9.934893 + ], + [ + 53.5627065, + 9.9352426 + ], + [ + 53.5627936, + 9.9355984 + ], + [ + 53.5628551, + 9.9358962 + ], + [ + 53.5629131, + 9.9362503 + ], + [ + 53.5629547, + 9.9365798 + ] + ] + }, + { + "osmId": "6274007", + "name": "Verbindungsbahn", + "lengthMeters": 116.11249675309702, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628616, + 9.9366121 + ], + [ + 53.5628184, + 9.9362776 + ], + [ + 53.5627662, + 9.93595 + ], + [ + 53.5626972, + 9.9356441 + ], + [ + 53.5626056, + 9.9353248 + ], + [ + 53.5624859, + 9.9349853 + ] + ] + }, + { + "osmId": "6274224", + "name": "Verbindungsbahn", + "lengthMeters": 291.03087522675924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629547, + 9.9365798 + ], + [ + 53.5629994, + 9.937058 + ], + [ + 53.5630035, + 9.9371016 + ], + [ + 53.5630443, + 9.9377606 + ], + [ + 53.5631432, + 9.9390055 + ], + [ + 53.5631861, + 9.9395743 + ], + [ + 53.5632045, + 9.9399232 + ], + [ + 53.5632082, + 9.9402663 + ], + [ + 53.5631838, + 9.9409582 + ] + ] + }, + { + "osmId": "6274683", + "name": null, + "lengthMeters": 163.4038160431856, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6054784, + 9.8981154 + ], + [ + 53.6058874, + 9.8980218 + ], + [ + 53.6061597, + 9.8980071 + ], + [ + 53.6064328, + 9.8980478 + ], + [ + 53.6067164, + 9.8981337 + ], + [ + 53.6069294, + 9.8982393 + ] + ] + }, + { + "osmId": "6274857", + "name": null, + "lengthMeters": 376.887854927664, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5986354, + 9.9014622 + ], + [ + 53.5988687, + 9.9009955 + ], + [ + 53.5992613, + 9.9002245 + ], + [ + 53.5994824, + 9.8998768 + ], + [ + 53.5996705, + 9.8996516 + ], + [ + 53.5998821, + 9.8994202 + ], + [ + 53.6001274, + 9.8992206 + ], + [ + 53.6003246, + 9.8991005 + ], + [ + 53.6005247, + 9.8989991 + ], + [ + 53.6007972, + 9.8989013 + ], + [ + 53.6011439, + 9.8988607 + ], + [ + 53.6014633, + 9.8988674 + ], + [ + 53.6014657, + 9.8988675 + ] + ] + }, + { + "osmId": "6399064", + "name": null, + "lengthMeters": 369.594925204078, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5982597, + 9.9009114 + ], + [ + 53.5976662, + 9.9024914 + ], + [ + 53.5974503, + 9.9030255 + ], + [ + 53.5973453, + 9.9032852 + ], + [ + 53.5969789, + 9.9041441 + ], + [ + 53.5967762, + 9.9045885 + ], + [ + 53.5963434, + 9.9054805 + ] + ] + }, + { + "osmId": "7273273", + "name": null, + "lengthMeters": 854.717744961978, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5822745, + 13.3612807 + ], + [ + 52.5823289, + 13.3611761 + ], + [ + 52.582996, + 13.3599148 + ], + [ + 52.5832868, + 13.3593827 + ], + [ + 52.5836919, + 13.3586346 + ], + [ + 52.5838959, + 13.3582662 + ], + [ + 52.5840279, + 13.3580345 + ], + [ + 52.5841292, + 13.3578567 + ], + [ + 52.5846725, + 13.3569304 + ], + [ + 52.5853221, + 13.3557578 + ], + [ + 52.5858936, + 13.3547269 + ], + [ + 52.5864619, + 13.3536906 + ], + [ + 52.5867311, + 13.3532011 + ], + [ + 52.5874395, + 13.3519128 + ] + ] + }, + { + "osmId": "7273287", + "name": null, + "lengthMeters": 348.6474201454457, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.595961, + 13.3364019 + ], + [ + 52.5960879, + 13.3361726 + ], + [ + 52.5960919, + 13.3361655 + ], + [ + 52.5961737, + 13.3360208 + ], + [ + 52.596216, + 13.335946 + ], + [ + 52.5963049, + 13.3357842 + ], + [ + 52.5965539, + 13.3353314 + ], + [ + 52.5968363, + 13.3348163 + ], + [ + 52.5969063, + 13.3346886 + ], + [ + 52.5970187, + 13.334476 + ], + [ + 52.5970252, + 13.3344637 + ], + [ + 52.5970726, + 13.3343741 + ], + [ + 52.5971748, + 13.3341842 + ], + [ + 52.5972912, + 13.3339699 + ], + [ + 52.5973084, + 13.3339381 + ], + [ + 52.5973886, + 13.333791 + ], + [ + 52.5974978, + 13.3335953 + ], + [ + 52.5976703, + 13.3332834 + ], + [ + 52.5977555, + 13.3331228 + ], + [ + 52.5980571, + 13.3325632 + ] + ] + }, + { + "osmId": "7273325", + "name": null, + "lengthMeters": 806.137224519345, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5761775, + 13.3727374 + ], + [ + 52.5763066, + 13.3724643 + ], + [ + 52.5763656, + 13.3723431 + ], + [ + 52.5764918, + 13.3720895 + ], + [ + 52.5767198, + 13.3716571 + ], + [ + 52.5773041, + 13.3705857 + ], + [ + 52.5780441, + 13.3692395 + ], + [ + 52.5780668, + 13.3691983 + ], + [ + 52.5785611, + 13.368301 + ], + [ + 52.5785647, + 13.3682945 + ], + [ + 52.5790509, + 13.3673983 + ], + [ + 52.5804904, + 13.3646667 + ], + [ + 52.5809588, + 13.3637715 + ] + ] + }, + { + "osmId": "7273342", + "name": null, + "lengthMeters": 1512.94172449197, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6201954, + 13.304902 + ], + [ + 52.6207255, + 13.3042864 + ], + [ + 52.6219929, + 13.3028197 + ], + [ + 52.622837, + 13.3018843 + ], + [ + 52.6233499, + 13.3013106 + ], + [ + 52.6239469, + 13.3006127 + ], + [ + 52.6244418, + 13.3000092 + ], + [ + 52.6258199, + 13.298327 + ], + [ + 52.6258801, + 13.2982535 + ], + [ + 52.6259641, + 13.2981553 + ], + [ + 52.6271155, + 13.2966715 + ], + [ + 52.6279624, + 13.2956401 + ], + [ + 52.6291973, + 13.2941715 + ], + [ + 52.6294723, + 13.2938445 + ], + [ + 52.6295318, + 13.2937713 + ], + [ + 52.6301088, + 13.2930854 + ], + [ + 52.630178, + 13.2930005 + ], + [ + 52.630239, + 13.2929255 + ], + [ + 52.6312155, + 13.2917618 + ] + ] + }, + { + "osmId": "7273367", + "name": null, + "lengthMeters": 349.86695545372226, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6030081, + 13.3251461 + ], + [ + 52.6035656, + 13.3244808 + ], + [ + 52.6036867, + 13.3243363 + ], + [ + 52.6040911, + 13.323852 + ], + [ + 52.6041063, + 13.3238335 + ], + [ + 52.6041852, + 13.3237373 + ], + [ + 52.6045288, + 13.3233287 + ], + [ + 52.6055645, + 13.3221259 + ] + ] + }, + { + "osmId": "7626150", + "name": null, + "lengthMeters": 140.7243154523348, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995168, + 13.2845403 + ], + [ + 52.4993523, + 13.2839706 + ], + [ + 52.4992655, + 13.2836612 + ], + [ + 52.4989746, + 13.2826619 + ] + ] + }, + { + "osmId": "7626674", + "name": null, + "lengthMeters": 301.4173633241629, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984815, + 13.2801749 + ], + [ + 52.4984323, + 13.2796628 + ], + [ + 52.4983537, + 13.2787933 + ], + [ + 52.4982735, + 13.2780414 + ], + [ + 52.4982558, + 13.2779014 + ], + [ + 52.4981672, + 13.2772927 + ], + [ + 52.4980235, + 13.2765631 + ], + [ + 52.4978679, + 13.2759049 + ], + [ + 52.4978563, + 13.2758586 + ] + ] + }, + { + "osmId": "7628614", + "name": null, + "lengthMeters": 84.15351899662566, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5016324, + 13.2656087 + ], + [ + 52.5013457, + 13.2657349 + ], + [ + 52.5011027, + 13.2658768 + ], + [ + 52.500913, + 13.2659913 + ] + ] + }, + { + "osmId": "7729025", + "name": null, + "lengthMeters": 745.4634423067162, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6411325, + 13.2841551 + ], + [ + 52.6411902, + 13.2841611 + ], + [ + 52.6413045, + 13.2841729 + ], + [ + 52.6445338, + 13.2845076 + ], + [ + 52.6453544, + 13.2845974 + ], + [ + 52.645918, + 13.2846548 + ], + [ + 52.6473725, + 13.2848042 + ], + [ + 52.6475804, + 13.284827 + ], + [ + 52.6478232, + 13.2848535 + ] + ] + }, + { + "osmId": "7729032", + "name": null, + "lengthMeters": 746.6786335888582, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6553711, + 13.2858167 + ], + [ + 52.6566623, + 13.285956 + ], + [ + 52.656799, + 13.2859697 + ], + [ + 52.6573282, + 13.2860228 + ], + [ + 52.6582686, + 13.2861067 + ], + [ + 52.6591739, + 13.2861454 + ], + [ + 52.6592305, + 13.2861494 + ], + [ + 52.660406, + 13.2862207 + ], + [ + 52.6604417, + 13.2862226 + ], + [ + 52.6619998, + 13.2863728 + ], + [ + 52.6620768, + 13.2863805 + ] + ] + }, + { + "osmId": "7925007", + "name": null, + "lengthMeters": 1701.7754406725933, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.145521, + 11.4413676 + ], + [ + 48.1450606, + 11.4410865 + ], + [ + 48.1445397, + 11.4407627 + ], + [ + 48.131354, + 11.4326916 + ] + ] + }, + { + "osmId": "7925167", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 276.8553501937758, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0946766, + 11.4025324 + ], + [ + 48.0946383, + 11.4024816 + ], + [ + 48.0943115, + 11.4020437 + ], + [ + 48.0939533, + 11.4015566 + ], + [ + 48.0937724, + 11.4013204 + ], + [ + 48.0935886, + 11.4010836 + ], + [ + 48.0934019, + 11.4008487 + ], + [ + 48.0932204, + 11.4006179 + ], + [ + 48.0928481, + 11.4001594 + ], + [ + 48.0927929, + 11.4000959 + ] + ] + }, + { + "osmId": "7947350", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 456.023614525981, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.665341, + 13.2329812 + ], + [ + 52.6654934, + 13.2338473 + ], + [ + 52.6658221, + 13.2357327 + ], + [ + 52.665829, + 13.2357719 + ], + [ + 52.6664765, + 13.2394792 + ] + ] + }, + { + "osmId": "7953304", + "name": null, + "lengthMeters": 136.0552937799983, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5740435, + 13.3765945 + ], + [ + 52.5739163, + 13.3768126 + ], + [ + 52.5739131, + 13.376818 + ], + [ + 52.5737702, + 13.3770518 + ], + [ + 52.5737081, + 13.3771535 + ], + [ + 52.5736086, + 13.3773118 + ], + [ + 52.5733918, + 13.3776456 + ], + [ + 52.5733234, + 13.3777554 + ], + [ + 52.5731772, + 13.3780154 + ] + ] + }, + { + "osmId": "7972726", + "name": null, + "lengthMeters": 230.9258623447539, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637571, + 10.0640386 + ], + [ + 53.5638801, + 10.0639829 + ], + [ + 53.5640656, + 10.0639137 + ], + [ + 53.5642707, + 10.0638607 + ], + [ + 53.5645312, + 10.0638297 + ], + [ + 53.5647857, + 10.063839 + ], + [ + 53.5649912, + 10.0638739 + ], + [ + 53.5651471, + 10.0639177 + ], + [ + 53.5652933, + 10.063972 + ], + [ + 53.5654836, + 10.0640623 + ], + [ + 53.5656179, + 10.064145 + ], + [ + 53.5656994, + 10.0642047 + ], + [ + 53.5657844, + 10.0642652 + ] + ] + }, + { + "osmId": "7979353", + "name": "Verbindungsbahn", + "lengthMeters": 396.53182071329286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5619498, + 9.9486613 + ], + [ + 53.5619421, + 9.9486941 + ], + [ + 53.5619239, + 9.948773 + ], + [ + 53.5618902, + 9.9489186 + ], + [ + 53.5618531, + 9.9490773 + ], + [ + 53.5616769, + 9.9498498 + ], + [ + 53.561674, + 9.949861 + ], + [ + 53.5616695, + 9.9498828 + ], + [ + 53.5614825, + 9.950731 + ], + [ + 53.5614301, + 9.9509897 + ], + [ + 53.5613437, + 9.9515072 + ], + [ + 53.5613187, + 9.9516712 + ], + [ + 53.5612543, + 9.9521838 + ], + [ + 53.5612086, + 9.9525427 + ], + [ + 53.56119, + 9.9527935 + ], + [ + 53.5611749, + 9.953071 + ], + [ + 53.5611712, + 9.9535831 + ], + [ + 53.561219, + 9.9541697 + ], + [ + 53.5612554, + 9.9544458 + ] + ] + }, + { + "osmId": "7997568", + "name": null, + "lengthMeters": 249.01060332542735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4729331, + 13.5962163 + ], + [ + 52.4732352, + 13.5972448 + ], + [ + 52.4733394, + 13.5975396 + ], + [ + 52.47343, + 13.5977686 + ], + [ + 52.4736963, + 13.5982396 + ], + [ + 52.4738782, + 13.5985499 + ], + [ + 52.4740266, + 13.598835 + ], + [ + 52.4741654, + 13.5991347 + ], + [ + 52.4742007, + 13.5992111 + ] + ] + }, + { + "osmId": "7998962", + "name": "Verbindungsbahn", + "lengthMeters": 147.81115940523824, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5619868, + 9.9481877 + ], + [ + 53.5621807, + 9.9473329 + ], + [ + 53.5622238, + 9.9471294 + ], + [ + 53.5622615, + 9.946942 + ], + [ + 53.5623094, + 9.9466911 + ], + [ + 53.5623518, + 9.9464559 + ], + [ + 53.5623663, + 9.9463716 + ], + [ + 53.5624145, + 9.9460703 + ] + ] + }, + { + "osmId": "8003040", + "name": null, + "lengthMeters": 687.3269937674443, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5105999, + 13.2384455 + ], + [ + 52.510446, + 13.2375825 + ], + [ + 52.5103616, + 13.2370628 + ], + [ + 52.5101899, + 13.235956 + ], + [ + 52.5099993, + 13.2347269 + ], + [ + 52.5099272, + 13.2342312 + ], + [ + 52.5099024, + 13.2340605 + ], + [ + 52.5098214, + 13.2334204 + ], + [ + 52.5097173, + 13.2325739 + ], + [ + 52.5096303, + 13.2318658 + ], + [ + 52.5096217, + 13.2317759 + ], + [ + 52.5095941, + 13.2314764 + ], + [ + 52.509573, + 13.2310945 + ], + [ + 52.5095667, + 13.2307557 + ], + [ + 52.5095741, + 13.2304955 + ], + [ + 52.5095903, + 13.2302479 + ], + [ + 52.5096125, + 13.2300016 + ], + [ + 52.5096478, + 13.2297405 + ], + [ + 52.5096592, + 13.2296652 + ], + [ + 52.5097513, + 13.2291677 + ], + [ + 52.5098245, + 13.2288663 + ], + [ + 52.5099014, + 13.2285733 + ] + ] + }, + { + "osmId": "8023791", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 426.6962237639391, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5435978, + 13.1512202 + ], + [ + 52.5435611, + 13.1513547 + ], + [ + 52.5428746, + 13.1539972 + ], + [ + 52.5428469, + 13.1540968 + ], + [ + 52.5421325, + 13.1568413 + ], + [ + 52.5420862, + 13.1570197 + ] + ] + }, + { + "osmId": "8033181", + "name": null, + "lengthMeters": 1489.5035122353775, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0881697, + 11.645731 + ], + [ + 48.0877922, + 11.6461505 + ], + [ + 48.0875003, + 11.6464753 + ], + [ + 48.0872942, + 11.6467047 + ], + [ + 48.086978, + 11.6470565 + ], + [ + 48.0858161, + 11.6484053 + ], + [ + 48.0853729, + 11.6489155 + ], + [ + 48.0851917, + 11.6491143 + ], + [ + 48.0851223, + 11.6491904 + ], + [ + 48.0849763, + 11.6493536 + ], + [ + 48.0841443, + 11.6502835 + ], + [ + 48.0828976, + 11.6516726 + ], + [ + 48.0827438, + 11.6518439 + ], + [ + 48.0824624, + 11.6521577 + ], + [ + 48.0813587, + 11.6533886 + ], + [ + 48.0799657, + 11.654942 + ], + [ + 48.0798306, + 11.6550922 + ], + [ + 48.0787356, + 11.6563094 + ], + [ + 48.0783461, + 11.6567433 + ], + [ + 48.077995, + 11.6571412 + ], + [ + 48.077707, + 11.6574913 + ], + [ + 48.077471, + 11.6577939 + ] + ] + }, + { + "osmId": "8039916", + "name": "Siemensbahn", + "lengthMeters": 233.72167419699326, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5372419, + 13.2753344 + ], + [ + 52.536986, + 13.2755284 + ], + [ + 52.5368608, + 13.2756193 + ], + [ + 52.5367329, + 13.2757055 + ], + [ + 52.5363136, + 13.2759173 + ], + [ + 52.5360214, + 13.2760171 + ], + [ + 52.5357341, + 13.2760546 + ], + [ + 52.5352145, + 13.2760354 + ] + ] + }, + { + "osmId": "8039917", + "name": "Siemensbahn", + "lengthMeters": 149.8073055243343, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5352145, + 13.2760354 + ], + [ + 52.5343082, + 13.2759542 + ], + [ + 52.5340481, + 13.2759388 + ], + [ + 52.5338688, + 13.2759329 + ] + ] + }, + { + "osmId": "8049478", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 420.8040445393833, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.537313, + 13.1487528 + ], + [ + 52.5373561, + 13.1480593 + ], + [ + 52.537419, + 13.1470386 + ], + [ + 52.5374205, + 13.1470147 + ], + [ + 52.5374507, + 13.1465336 + ], + [ + 52.5375095, + 13.1456496 + ], + [ + 52.5375578, + 13.1449513 + ], + [ + 52.5376178, + 13.144088 + ], + [ + 52.5377268, + 13.1425684 + ] + ] + }, + { + "osmId": "8069270", + "name": null, + "lengthMeters": 752.7508929696781, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1083022, + 11.597454 + ], + [ + 48.1083102, + 11.5974505 + ], + [ + 48.1090844, + 11.5971124 + ], + [ + 48.1099734, + 11.5966779 + ], + [ + 48.1100404, + 11.5966452 + ], + [ + 48.1105871, + 11.5963769 + ], + [ + 48.1108167, + 11.5962662 + ], + [ + 48.1111394, + 11.5961181 + ], + [ + 48.1115588, + 11.5959292 + ], + [ + 48.111852, + 11.5958218 + ], + [ + 48.1119807, + 11.5957653 + ], + [ + 48.1122561, + 11.5956717 + ], + [ + 48.1124493, + 11.5956061 + ], + [ + 48.1129763, + 11.5954526 + ], + [ + 48.1134467, + 11.5953353 + ], + [ + 48.1135505, + 11.5953149 + ], + [ + 48.1137642, + 11.5952728 + ], + [ + 48.11442, + 11.5951595 + ], + [ + 48.1146538, + 11.5951337 + ], + [ + 48.1148655, + 11.5951104 + ] + ] + }, + { + "osmId": "8069276", + "name": null, + "lengthMeters": 275.8307607618111, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1151163, + 11.5950935 + ], + [ + 48.1152205, + 11.5950897 + ], + [ + 48.1154706, + 11.5950981 + ], + [ + 48.1157659, + 11.595116 + ], + [ + 48.1159261, + 11.5951277 + ], + [ + 48.1160862, + 11.5951524 + ], + [ + 48.1163082, + 11.595188 + ], + [ + 48.1165326, + 11.5952339 + ], + [ + 48.1170362, + 11.5953435 + ], + [ + 48.1174738, + 11.5954453 + ], + [ + 48.1175804, + 11.5954698 + ] + ] + }, + { + "osmId": "8069298", + "name": null, + "lengthMeters": 542.6197181550699, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1211548, + 11.5964066 + ], + [ + 48.1213527, + 11.5965188 + ], + [ + 48.1215466, + 11.5966487 + ], + [ + 48.1219224, + 11.5969641 + ], + [ + 48.1222743, + 11.597321 + ], + [ + 48.1226245, + 11.5977555 + ], + [ + 48.1229851, + 11.59823 + ], + [ + 48.1231141, + 11.5984035 + ], + [ + 48.1234237, + 11.5988197 + ], + [ + 48.1239013, + 11.599451 + ], + [ + 48.1244343, + 11.6001598 + ], + [ + 48.124979, + 11.60088 + ] + ] + }, + { + "osmId": "8069421", + "name": null, + "lengthMeters": 143.5068762909241, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6622768, + 13.2864021 + ], + [ + 52.6635308, + 13.2865333 + ], + [ + 52.6635648, + 13.2865368 + ] + ] + }, + { + "osmId": "8071477", + "name": null, + "lengthMeters": 865.7861539825551, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2062877, + 11.3940902 + ], + [ + 48.2066898, + 11.3869952 + ], + [ + 48.2067301, + 11.3862861 + ], + [ + 48.2067798, + 11.3854189 + ], + [ + 48.2069486, + 11.3824492 + ] + ] + }, + { + "osmId": "8080209", + "name": null, + "lengthMeters": 216.91138311049633, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120235, + 13.2475709 + ], + [ + 52.5120255, + 13.2475823 + ], + [ + 52.5120459, + 13.2477032 + ], + [ + 52.5120741, + 13.2479084 + ], + [ + 52.5120907, + 13.2480518 + ], + [ + 52.512112, + 13.2482195 + ], + [ + 52.5121343, + 13.2484303 + ], + [ + 52.5121509, + 13.2486043 + ], + [ + 52.5121643, + 13.2488482 + ], + [ + 52.5121701, + 13.2490008 + ], + [ + 52.5121744, + 13.2491698 + ], + [ + 52.5121761, + 13.2492651 + ], + [ + 52.5121771, + 13.2493713 + ], + [ + 52.5121782, + 13.2495409 + ], + [ + 52.5121735, + 13.2497789 + ], + [ + 52.5121276, + 13.25075 + ] + ] + }, + { + "osmId": "8080213", + "name": null, + "lengthMeters": 119.38031606281747, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121027, + 13.2512037 + ], + [ + 52.5120691, + 13.2517933 + ], + [ + 52.5120514, + 13.2520115 + ], + [ + 52.5120377, + 13.2521465 + ], + [ + 52.5120118, + 13.2523498 + ], + [ + 52.5119904, + 13.2525082 + ], + [ + 52.5119619, + 13.2526608 + ], + [ + 52.5119072, + 13.2529316 + ] + ] + }, + { + "osmId": "8083965", + "name": null, + "lengthMeters": 83.83535981878421, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5596615, + 9.8987535 + ], + [ + 53.5596202, + 9.8974861 + ] + ] + }, + { + "osmId": "8083966", + "name": null, + "lengthMeters": 102.58783633561549, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.559712, + 9.9003044 + ], + [ + 53.5596615, + 9.8987535 + ] + ] + }, + { + "osmId": "8084185", + "name": "Niederelbebahn", + "lengthMeters": 2875.1877679519675, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717477, + 9.9166415 + ], + [ + 53.471772, + 9.9137991 + ], + [ + 53.4717838, + 9.9130016 + ], + [ + 53.4717971, + 9.9123104 + ], + [ + 53.4718252, + 9.9114384 + ], + [ + 53.4720511, + 9.9057459 + ], + [ + 53.4720791, + 9.9050671 + ], + [ + 53.4721635, + 9.9029156 + ], + [ + 53.472197, + 9.902062 + ], + [ + 53.4722901, + 9.8997643 + ], + [ + 53.4724457, + 9.8961229 + ], + [ + 53.4725035, + 9.8946266 + ], + [ + 53.4725072, + 9.894533 + ], + [ + 53.4728092, + 9.8867641 + ], + [ + 53.472903, + 9.8840342 + ], + [ + 53.4729532, + 9.8826108 + ], + [ + 53.4729841, + 9.8817742 + ], + [ + 53.4730171, + 9.8809276 + ], + [ + 53.4731063, + 9.8786276 + ], + [ + 53.4732459, + 9.8750389 + ], + [ + 53.4733178, + 9.873284 + ] + ] + }, + { + "osmId": "8084186", + "name": "Niederelbebahn", + "lengthMeters": 1018.0127595035418, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4739568, + 9.8574997 + ], + [ + 53.4739548, + 9.8575531 + ], + [ + 53.4738646, + 9.8597659 + ], + [ + 53.4737408, + 9.8630193 + ], + [ + 53.4736826, + 9.864472 + ], + [ + 53.4736588, + 9.8650653 + ], + [ + 53.4735483, + 9.8678216 + ], + [ + 53.473327, + 9.8719415 + ], + [ + 53.4732881, + 9.8728397 + ] + ] + }, + { + "osmId": "8094153", + "name": null, + "lengthMeters": 77.33904287811994, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112331, + 13.3349463 + ], + [ + 52.511897, + 13.335287 + ] + ] + }, + { + "osmId": "8096473", + "name": null, + "lengthMeters": 120.96188988554329, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5123433, + 13.4756348 + ], + [ + 52.5125771, + 13.475582 + ], + [ + 52.5129984, + 13.4754902 + ], + [ + 52.5134218, + 13.4754012 + ] + ] + }, + { + "osmId": "8096476", + "name": null, + "lengthMeters": 179.53980326746245, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144721, + 13.4749476 + ], + [ + 52.5144995, + 13.4749361 + ], + [ + 52.5145862, + 13.4748978 + ], + [ + 52.5146959, + 13.4748367 + ], + [ + 52.5149283, + 13.4747072 + ], + [ + 52.5151072, + 13.4746031 + ], + [ + 52.5152933, + 13.4744949 + ], + [ + 52.5153172, + 13.4744782 + ], + [ + 52.5153316, + 13.4744682 + ], + [ + 52.5156101, + 13.4742739 + ], + [ + 52.515661, + 13.4742384 + ], + [ + 52.5159114, + 13.4740661 + ], + [ + 52.5159821, + 13.474015 + ] + ] + }, + { + "osmId": "8096479", + "name": null, + "lengthMeters": 126.75159024645566, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122482, + 13.4755423 + ], + [ + 52.5132049, + 13.4753098 + ], + [ + 52.513376, + 13.4752701 + ] + ] + }, + { + "osmId": "8096518", + "name": null, + "lengthMeters": 674.3134230456413, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4604675, + 13.5010125 + ], + [ + 52.4613624, + 13.4996373 + ], + [ + 52.4616554, + 13.4991997 + ], + [ + 52.4622283, + 13.4983563 + ], + [ + 52.462362, + 13.4981547 + ], + [ + 52.4624815, + 13.497971 + ], + [ + 52.4625999, + 13.4977826 + ], + [ + 52.4627158, + 13.4975894 + ], + [ + 52.4628217, + 13.4974063 + ], + [ + 52.4629272, + 13.4972183 + ], + [ + 52.4631077, + 13.4968817 + ], + [ + 52.4637365, + 13.4957034 + ], + [ + 52.4639878, + 13.49524 + ], + [ + 52.4642435, + 13.4947838 + ], + [ + 52.46443, + 13.4944591 + ], + [ + 52.4646153, + 13.4941424 + ], + [ + 52.4647322, + 13.4939512 + ] + ] + }, + { + "osmId": "8096522", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 277.12138280881874, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4709975, + 13.4833566 + ], + [ + 52.4711226, + 13.482921 + ], + [ + 52.4711967, + 13.482579 + ], + [ + 52.4712338, + 13.4823643 + ], + [ + 52.4712644, + 13.4821413 + ], + [ + 52.4712867, + 13.4819312 + ], + [ + 52.4713023, + 13.4817266 + ], + [ + 52.4713144, + 13.4814926 + ], + [ + 52.4713171, + 13.4812666 + ], + [ + 52.4713148, + 13.4811122 + ], + [ + 52.471309, + 13.4809128 + ], + [ + 52.4712969, + 13.4807223 + ], + [ + 52.4712736, + 13.480464 + ], + [ + 52.4712449, + 13.480204 + ], + [ + 52.4711359, + 13.4793796 + ] + ] + }, + { + "osmId": "8096553", + "name": null, + "lengthMeters": 213.42251439215397, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469076, + 13.487437 + ], + [ + 52.4692878, + 13.4871072 + ], + [ + 52.4694863, + 13.4867571 + ], + [ + 52.4696934, + 13.4864111 + ], + [ + 52.4699089, + 13.4860673 + ], + [ + 52.4701409, + 13.4857018 + ], + [ + 52.4703155, + 13.4854233 + ], + [ + 52.4704415, + 13.4852238 + ] + ] + }, + { + "osmId": "8107960", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 479.2687559616538, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0999496, + 11.5350301 + ], + [ + 48.0974935, + 11.5340178 + ], + [ + 48.0973189, + 11.5339458 + ], + [ + 48.095794, + 11.5333173 + ] + ] + }, + { + "osmId": "8108151", + "name": null, + "lengthMeters": 670.2526370947334, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0975406, + 11.6034203 + ], + [ + 48.0975766, + 11.603397 + ], + [ + 48.0981443, + 11.6030295 + ], + [ + 48.098373, + 11.6028854 + ], + [ + 48.099707, + 11.6019667 + ], + [ + 48.0997214, + 11.6019568 + ], + [ + 48.1000639, + 11.6017209 + ], + [ + 48.100399, + 11.6014958 + ], + [ + 48.1006902, + 11.601302 + ], + [ + 48.101307, + 11.6008916 + ], + [ + 48.101651, + 11.6006618 + ], + [ + 48.1019734, + 11.6004538 + ], + [ + 48.102175, + 11.6003236 + ], + [ + 48.102426, + 11.6001729 + ], + [ + 48.1026767, + 11.6000243 + ], + [ + 48.1029209, + 11.5998904 + ], + [ + 48.1030647, + 11.5998146 + ] + ] + }, + { + "osmId": "8108248", + "name": null, + "lengthMeters": 1092.954020689695, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0942189, + 11.6153231 + ], + [ + 48.0940766, + 11.6188894 + ], + [ + 48.0940394, + 11.6198212 + ], + [ + 48.0940056, + 11.620668 + ], + [ + 48.0940006, + 11.6207795 + ], + [ + 48.0939771, + 11.6213701 + ], + [ + 48.0939273, + 11.6226084 + ], + [ + 48.0939267, + 11.6226228 + ], + [ + 48.093841, + 11.6247529 + ], + [ + 48.093831, + 11.6250232 + ], + [ + 48.0938272, + 11.625093 + ], + [ + 48.0938217, + 11.6252149 + ], + [ + 48.093786, + 11.6260003 + ], + [ + 48.093746, + 11.6269302 + ], + [ + 48.093712, + 11.6274043 + ], + [ + 48.0936898, + 11.6277165 + ], + [ + 48.0936773, + 11.6278688 + ], + [ + 48.0936538, + 11.6281622 + ], + [ + 48.0936471, + 11.628245 + ], + [ + 48.0936407, + 11.6283249 + ], + [ + 48.0936343, + 11.6284055 + ], + [ + 48.0935811, + 11.6290242 + ], + [ + 48.0935397, + 11.6294505 + ], + [ + 48.0935256, + 11.6295941 + ], + [ + 48.0935143, + 11.6297085 + ], + [ + 48.0934891, + 11.6299934 + ] + ] + }, + { + "osmId": "8108341", + "name": null, + "lengthMeters": 136.8887091616924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0899039, + 11.6439826 + ], + [ + 48.089363, + 11.6445874 + ], + [ + 48.0889165, + 11.6450833 + ] + ] + }, + { + "osmId": "8108342", + "name": null, + "lengthMeters": 111.75941569565593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0907104, + 11.6430847 + ], + [ + 48.0904402, + 11.6433821 + ], + [ + 48.0901912, + 11.6436587 + ], + [ + 48.0899367, + 11.643946 + ], + [ + 48.0899039, + 11.6439826 + ] + ] + }, + { + "osmId": "8108347", + "name": null, + "lengthMeters": 3072.8776512583677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1011652, + 11.6462771 + ], + [ + 48.1016854, + 11.6464818 + ], + [ + 48.1020848, + 11.6466138 + ], + [ + 48.1024982, + 11.6466808 + ], + [ + 48.1029595, + 11.646712 + ], + [ + 48.1068441, + 11.6467375 + ], + [ + 48.1073224, + 11.6467406 + ], + [ + 48.1075674, + 11.6467312 + ], + [ + 48.1081105, + 11.6467379 + ], + [ + 48.1087052, + 11.6467452 + ], + [ + 48.1089306, + 11.6467393 + ], + [ + 48.1094975, + 11.6467135 + ], + [ + 48.1098679, + 11.6467169 + ], + [ + 48.1101232, + 11.6466611 + ], + [ + 48.1104642, + 11.6465004 + ], + [ + 48.1107963, + 11.6462924 + ], + [ + 48.1110775, + 11.6460708 + ], + [ + 48.1113033, + 11.6458374 + ], + [ + 48.1115264, + 11.6455515 + ], + [ + 48.1164432, + 11.6381719 + ], + [ + 48.1166177, + 11.6378658 + ], + [ + 48.116769, + 11.6375342 + ], + [ + 48.1169068, + 11.6371638 + ], + [ + 48.1170671, + 11.6366513 + ], + [ + 48.1174928, + 11.6349751 + ], + [ + 48.1179852, + 11.6333429 + ], + [ + 48.1184163, + 11.6318256 + ], + [ + 48.1188772, + 11.6301851 + ], + [ + 48.1189698, + 11.6298011 + ], + [ + 48.1192103, + 11.6286865 + ], + [ + 48.1195039, + 11.627352 + ], + [ + 48.1196879, + 11.6264555 + ], + [ + 48.1200718, + 11.6246626 + ], + [ + 48.1201181, + 11.6244207 + ], + [ + 48.1201528, + 11.6241923 + ] + ] + }, + { + "osmId": "8108436", + "name": null, + "lengthMeters": 1692.9880203481835, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.047517, + 11.697875 + ], + [ + 48.0474256, + 11.6979717 + ], + [ + 48.0472312, + 11.698178 + ], + [ + 48.0466073, + 11.6988366 + ], + [ + 48.0458987, + 11.6995881 + ], + [ + 48.0456121, + 11.6998921 + ], + [ + 48.0454631, + 11.7000478 + ], + [ + 48.0449976, + 11.7005342 + ], + [ + 48.0448664, + 11.7006752 + ], + [ + 48.0446812, + 11.7008713 + ], + [ + 48.0446614, + 11.7008921 + ], + [ + 48.0434741, + 11.7021488 + ], + [ + 48.0429643, + 11.7026883 + ], + [ + 48.0419158, + 11.703798 + ], + [ + 48.0416693, + 11.7040589 + ], + [ + 48.0401874, + 11.7056272 + ], + [ + 48.0398295, + 11.7060021 + ], + [ + 48.039783, + 11.7060512 + ], + [ + 48.0384673, + 11.7074412 + ], + [ + 48.0373332, + 11.7086396 + ], + [ + 48.0356199, + 11.7104499 + ], + [ + 48.035083, + 11.7110172 + ] + ] + }, + { + "osmId": "8108549", + "name": null, + "lengthMeters": 819.4728598930467, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0347976, + 11.5925279 + ], + [ + 48.0350382, + 11.5928007 + ], + [ + 48.0353306, + 11.5931295 + ], + [ + 48.0365469, + 11.5945049 + ], + [ + 48.036681, + 11.5946535 + ], + [ + 48.0367774, + 11.5947629 + ], + [ + 48.0372783, + 11.5953317 + ], + [ + 48.0380283, + 11.5961835 + ], + [ + 48.0389618, + 11.597228 + ], + [ + 48.0393553, + 11.5976723 + ], + [ + 48.0400824, + 11.5984954 + ], + [ + 48.0406786, + 11.5991703 + ] + ] + }, + { + "osmId": "8152562", + "name": null, + "lengthMeters": 638.6437243959288, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6025503, + 9.9978828 + ], + [ + 53.6027877, + 9.9987316 + ], + [ + 53.6029584, + 9.999361 + ], + [ + 53.603142, + 9.9999995 + ], + [ + 53.6031769, + 10.0001152 + ], + [ + 53.6032891, + 10.0004866 + ], + [ + 53.6034107, + 10.0008862 + ], + [ + 53.6035941, + 10.0014503 + ], + [ + 53.6037293, + 10.0017748 + ], + [ + 53.6038699, + 10.0021264 + ], + [ + 53.6040383, + 10.0026356 + ], + [ + 53.6041151, + 10.0028711 + ], + [ + 53.6042037, + 10.0031528 + ], + [ + 53.6042532, + 10.0033331 + ], + [ + 53.6043309, + 10.0036105 + ], + [ + 53.60448, + 10.0041992 + ], + [ + 53.6047784, + 10.0053807 + ], + [ + 53.6048959, + 10.0058594 + ], + [ + 53.6050696, + 10.006563 + ] + ] + }, + { + "osmId": "8153647", + "name": null, + "lengthMeters": 128.73998558688703, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5624614, + 9.9340666 + ], + [ + 53.5625408, + 9.9340688 + ], + [ + 53.5627699, + 9.9340753 + ], + [ + 53.5630168, + 9.9340509 + ], + [ + 53.5632805, + 9.934015 + ], + [ + 53.5636166, + 9.933966 + ] + ] + }, + { + "osmId": "8166846", + "name": null, + "lengthMeters": 240.65717754011493, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1293591, + 11.431389 + ], + [ + 48.128566, + 11.4308857 + ], + [ + 48.1285597, + 11.4308817 + ], + [ + 48.1282896, + 11.4307149 + ], + [ + 48.1278402, + 11.4304493 + ], + [ + 48.1273502, + 11.4301846 + ] + ] + }, + { + "osmId": "8548095", + "name": null, + "lengthMeters": 411.17582050428416, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6408602, + 10.0819499 + ], + [ + 53.6403037, + 10.0810247 + ], + [ + 53.6395489, + 10.0796959 + ], + [ + 53.6387037, + 10.0782639 + ], + [ + 53.6386248, + 10.078108 + ], + [ + 53.6384571, + 10.0777763 + ], + [ + 53.6382965, + 10.0774588 + ] + ] + }, + { + "osmId": "8789622", + "name": null, + "lengthMeters": 331.6096939076529, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.483028, + 13.2550035 + ], + [ + 52.4832463, + 13.2551567 + ], + [ + 52.4835503, + 13.2553702 + ], + [ + 52.4839325, + 13.2556404 + ], + [ + 52.4843767, + 13.2559817 + ], + [ + 52.4845528, + 13.2561347 + ], + [ + 52.4847829, + 13.2563379 + ], + [ + 52.4850645, + 13.2566222 + ], + [ + 52.4853522, + 13.2569413 + ], + [ + 52.4855, + 13.2571207 + ], + [ + 52.4856474, + 13.257306 + ] + ] + }, + { + "osmId": "8789626", + "name": null, + "lengthMeters": 563.4587647405122, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4970839, + 13.2730468 + ], + [ + 52.4972491, + 13.2736396 + ], + [ + 52.4973857, + 13.2742463 + ], + [ + 52.497473, + 13.2747604 + ], + [ + 52.497532, + 13.2751858 + ], + [ + 52.4976108, + 13.2759158 + ], + [ + 52.497701, + 13.2769153 + ], + [ + 52.4978488, + 13.2784486 + ], + [ + 52.4979361, + 13.2792133 + ], + [ + 52.4980573, + 13.2799133 + ], + [ + 52.498214, + 13.2806163 + ], + [ + 52.4982699, + 13.280842 + ], + [ + 52.4983318, + 13.281073 + ] + ] + }, + { + "osmId": "8789628", + "name": null, + "lengthMeters": 1360.963718926585, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953211, + 13.2699749 + ], + [ + 52.4953169, + 13.2699693 + ], + [ + 52.49416, + 13.2684504 + ], + [ + 52.4941022, + 13.2683764 + ], + [ + 52.4938818, + 13.2681208 + ], + [ + 52.493613, + 13.2678204 + ], + [ + 52.4930188, + 13.2672395 + ], + [ + 52.4929011, + 13.2671292 + ], + [ + 52.4907664, + 13.2651294 + ], + [ + 52.4903359, + 13.2646899 + ], + [ + 52.4900082, + 13.2643114 + ], + [ + 52.4897209, + 13.2639493 + ], + [ + 52.4894556, + 13.2635887 + ], + [ + 52.4892871, + 13.2633303 + ], + [ + 52.4891538, + 13.2631258 + ], + [ + 52.4889024, + 13.2627154 + ], + [ + 52.4886529, + 13.2622785 + ], + [ + 52.4882764, + 13.261556 + ], + [ + 52.4876139, + 13.2602782 + ], + [ + 52.4872459, + 13.2595817 + ], + [ + 52.4869447, + 13.2590631 + ], + [ + 52.4865284, + 13.2584401 + ], + [ + 52.4864873, + 13.2583785 + ], + [ + 52.4861209, + 13.2578658 + ], + [ + 52.4858467, + 13.257496 + ] + ] + }, + { + "osmId": "8789630", + "name": null, + "lengthMeters": 201.82195114695003, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4968502, + 13.2717593 + ], + [ + 52.4970276, + 13.2720936 + ], + [ + 52.4971866, + 13.2724687 + ], + [ + 52.4973434, + 13.2729176 + ], + [ + 52.4973614, + 13.272969 + ], + [ + 52.4974692, + 13.2733203 + ], + [ + 52.4976889, + 13.2740521 + ], + [ + 52.4977501, + 13.2742643 + ], + [ + 52.4977644, + 13.2743193 + ] + ] + }, + { + "osmId": "8790429", + "name": null, + "lengthMeters": 187.23779143038604, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4977929, + 13.2740184 + ], + [ + 52.4977834, + 13.2739772 + ], + [ + 52.4975639, + 13.27326 + ], + [ + 52.4974365, + 13.2728751 + ], + [ + 52.4973193, + 13.2725705 + ], + [ + 52.4973164, + 13.2725646 + ], + [ + 52.497063, + 13.272054 + ], + [ + 52.4968751, + 13.2717206 + ] + ] + }, + { + "osmId": "8790430", + "name": null, + "lengthMeters": 682.687912943386, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4961367, + 13.2706958 + ], + [ + 52.4961218, + 13.270677 + ], + [ + 52.495321, + 13.2696676 + ], + [ + 52.4946543, + 13.2688273 + ], + [ + 52.4940691, + 13.2680897 + ], + [ + 52.4937272, + 13.2676588 + ], + [ + 52.4933918, + 13.2673203 + ], + [ + 52.4930234, + 13.2669881 + ], + [ + 52.4923006, + 13.2663262 + ], + [ + 52.4910233, + 13.2651618 + ] + ] + }, + { + "osmId": "9345684", + "name": null, + "lengthMeters": 286.1216211019643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5831457, + 9.7583265 + ], + [ + 53.5831987, + 9.7577942 + ], + [ + 53.5832569, + 9.7571166 + ], + [ + 53.5833432, + 9.7561677 + ], + [ + 53.5833444, + 9.7561541 + ], + [ + 53.5834175, + 9.7551575 + ], + [ + 53.5834786, + 9.7543923 + ], + [ + 53.5835233, + 9.7540402 + ] + ] + }, + { + "osmId": "9543967", + "name": null, + "lengthMeters": 3013.8248791929113, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188884, + 11.5768358 + ], + [ + 48.1185715, + 11.5768355 + ], + [ + 48.1181204, + 11.5767873 + ], + [ + 48.1177335, + 11.5766972 + ], + [ + 48.1174594, + 11.5765997 + ], + [ + 48.1172843, + 11.5765033 + ], + [ + 48.1170757, + 11.576359 + ], + [ + 48.1168718, + 11.5761733 + ], + [ + 48.1166283, + 11.575913 + ], + [ + 48.1164499, + 11.5756846 + ], + [ + 48.1162669, + 11.5754056 + ], + [ + 48.1161122, + 11.5751113 + ], + [ + 48.115979, + 11.5747865 + ], + [ + 48.1156108, + 11.5737784 + ], + [ + 48.1155058, + 11.573545 + ], + [ + 48.1153714, + 11.5732947 + ], + [ + 48.1152495, + 11.5731052 + ], + [ + 48.1150835, + 11.5728854 + ], + [ + 48.1148904, + 11.5726638 + ], + [ + 48.1147255, + 11.5725116 + ], + [ + 48.1145347, + 11.5723576 + ], + [ + 48.114259, + 11.5721706 + ], + [ + 48.1138932, + 11.5719686 + ], + [ + 48.1130623, + 11.5715614 + ], + [ + 48.1124669, + 11.5712718 + ], + [ + 48.1122406, + 11.5711778 + ], + [ + 48.1120005, + 11.5711043 + ], + [ + 48.1117754, + 11.57109 + ], + [ + 48.1115906, + 11.5710857 + ], + [ + 48.1113802, + 11.5711097 + ], + [ + 48.1111699, + 11.5711534 + ], + [ + 48.1109687, + 11.5712433 + ], + [ + 48.1107617, + 11.5713567 + ], + [ + 48.1105331, + 11.5715084 + ], + [ + 48.1102135, + 11.5717403 + ], + [ + 48.1100073, + 11.5719314 + ], + [ + 48.1098503, + 11.5720819 + ], + [ + 48.1096865, + 11.572268 + ], + [ + 48.109516, + 11.5725302 + ], + [ + 48.1093971, + 11.5727597 + ], + [ + 48.1091757, + 11.573264 + ], + [ + 48.1087522, + 11.5743898 + ], + [ + 48.1085389, + 11.5749037 + ], + [ + 48.1081784, + 11.5757062 + ], + [ + 48.1079082, + 11.5763084 + ], + [ + 48.1075696, + 11.5770302 + ], + [ + 48.1074938, + 11.5771917 + ], + [ + 48.1071879, + 11.577924 + ], + [ + 48.1070336, + 11.5782699 + ], + [ + 48.1068969, + 11.5785253 + ], + [ + 48.1067467, + 11.5787587 + ], + [ + 48.1065784, + 11.5789719 + ], + [ + 48.1064341, + 11.5791519 + ], + [ + 48.1054259, + 11.5802808 + ], + [ + 48.1052276, + 11.580506 + ], + [ + 48.105082, + 11.5806606 + ], + [ + 48.1043961, + 11.5813355 + ], + [ + 48.1042348, + 11.5814954 + ], + [ + 48.1040915, + 11.5816196 + ], + [ + 48.1039389, + 11.5817305 + ], + [ + 48.1035311, + 11.5819707 + ], + [ + 48.1033899, + 11.5820367 + ], + [ + 48.1032702, + 11.5820654 + ], + [ + 48.1031347, + 11.5820688 + ], + [ + 48.1003903, + 11.5817613 + ], + [ + 48.0988163, + 11.581585 + ], + [ + 48.0986579, + 11.5815569 + ], + [ + 48.098499, + 11.5814964 + ], + [ + 48.0983567, + 11.5814098 + ], + [ + 48.0982132, + 11.5812975 + ], + [ + 48.0980844, + 11.5811656 + ], + [ + 48.0979861, + 11.5810404 + ], + [ + 48.097863, + 11.5808426 + ], + [ + 48.0977715, + 11.5806683 + ], + [ + 48.0976881, + 11.5804825 + ], + [ + 48.0971291, + 11.5791654 + ] + ] + }, + { + "osmId": "9708463", + "name": "Stettiner Bahn", + "lengthMeters": 1663.4979027100162, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6723069, + 13.5813193 + ], + [ + 52.672292, + 13.5812574 + ], + [ + 52.6717472, + 13.5789923 + ], + [ + 52.6711564, + 13.5765154 + ], + [ + 52.6701624, + 13.5723485 + ], + [ + 52.6699063, + 13.571275 + ], + [ + 52.6690954, + 13.5678622 + ], + [ + 52.6685129, + 13.5654069 + ], + [ + 52.6678244, + 13.5625409 + ], + [ + 52.666829, + 13.5583626 + ] + ] + }, + { + "osmId": "9708477", + "name": null, + "lengthMeters": 1284.9409232360879, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6687211, + 13.5661059 + ], + [ + 52.6691444, + 13.5678293 + ], + [ + 52.6697371, + 13.5703489 + ], + [ + 52.6700879, + 13.5718066 + ], + [ + 52.6703404, + 13.5728634 + ], + [ + 52.6717973, + 13.578961 + ], + [ + 52.6723267, + 13.5811388 + ], + [ + 52.6724684, + 13.5816946 + ], + [ + 52.6726823, + 13.5825091 + ], + [ + 52.6728771, + 13.5832428 + ], + [ + 52.6729307, + 13.583446 + ], + [ + 52.6730178, + 13.5837948 + ] + ] + }, + { + "osmId": "9709435", + "name": "Stettiner Bahn", + "lengthMeters": 534.3828518307671, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6401853, + 13.498282 + ], + [ + 52.6397411, + 13.4974847 + ], + [ + 52.6393376, + 13.4968227 + ], + [ + 52.6388344, + 13.4960446 + ], + [ + 52.6383783, + 13.4953644 + ], + [ + 52.638171, + 13.4950595 + ], + [ + 52.6378826, + 13.4946354 + ], + [ + 52.6373155, + 13.4938045 + ], + [ + 52.6366544, + 13.492921 + ] + ] + }, + { + "osmId": "9709445", + "name": null, + "lengthMeters": 225.25429858402686, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6349354, + 13.4907095 + ], + [ + 52.6351444, + 13.4909358 + ], + [ + 52.6352492, + 13.4910483 + ], + [ + 52.6353409, + 13.4911467 + ], + [ + 52.6354578, + 13.4912821 + ], + [ + 52.6355419, + 13.4913795 + ], + [ + 52.6356947, + 13.4915759 + ], + [ + 52.6358466, + 13.4917758 + ], + [ + 52.6360374, + 13.4920238 + ], + [ + 52.6360893, + 13.4920935 + ], + [ + 52.6362446, + 13.4923019 + ], + [ + 52.636268, + 13.4923348 + ], + [ + 52.6363191, + 13.4924066 + ], + [ + 52.6364209, + 13.4925395 + ], + [ + 52.6365535, + 13.4927128 + ] + ] + }, + { + "osmId": "9709446", + "name": null, + "lengthMeters": 483.84640514769643, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6366836, + 13.4928789 + ], + [ + 52.6367661, + 13.4929848 + ], + [ + 52.637336, + 13.4937467 + ], + [ + 52.6377973, + 13.4943941 + ], + [ + 52.63841, + 13.4953187 + ], + [ + 52.6388614, + 13.4959874 + ], + [ + 52.6388901, + 13.4960301 + ], + [ + 52.6393087, + 13.4966531 + ], + [ + 52.6396337, + 13.4971551 + ], + [ + 52.6399309, + 13.4976465 + ] + ] + }, + { + "osmId": "9713768", + "name": null, + "lengthMeters": 195.11286780672577, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5646768, + 13.3934107 + ], + [ + 52.5647389, + 13.3933236 + ], + [ + 52.5649891, + 13.3929442 + ], + [ + 52.5652817, + 13.3924641 + ], + [ + 52.5659196, + 13.3913745 + ] + ] + }, + { + "osmId": "9810231", + "name": null, + "lengthMeters": 371.510128563578, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6263128, + 13.2270387 + ], + [ + 52.6267438, + 13.2264839 + ], + [ + 52.6270834, + 13.2260468 + ], + [ + 52.6271775, + 13.2259361 + ], + [ + 52.6273859, + 13.2257188 + ], + [ + 52.6278114, + 13.2253268 + ], + [ + 52.6286629, + 13.2246481 + ], + [ + 52.6291737, + 13.2242409 + ] + ] + }, + { + "osmId": "9827386", + "name": null, + "lengthMeters": 100.66721122441393, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119989, + 13.2526763 + ], + [ + 52.512046, + 13.2523602 + ], + [ + 52.5120815, + 13.2520423 + ], + [ + 52.5121015, + 13.2517989 + ], + [ + 52.5121276, + 13.2513546 + ], + [ + 52.5121293, + 13.2513266 + ], + [ + 52.5121366, + 13.2512084 + ] + ] + }, + { + "osmId": "9827388", + "name": null, + "lengthMeters": 365.7407061319185, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118202, + 13.2532759 + ], + [ + 52.5117635, + 13.2534733 + ], + [ + 52.5117307, + 13.2535714 + ], + [ + 52.5116922, + 13.2536823 + ], + [ + 52.5116439, + 13.2538098 + ], + [ + 52.511573, + 13.2539789 + ], + [ + 52.5115225, + 13.2540926 + ], + [ + 52.5114529, + 13.2542381 + ], + [ + 52.5113571, + 13.2544205 + ], + [ + 52.5112931, + 13.2545285 + ], + [ + 52.511231, + 13.2546298 + ], + [ + 52.5111628, + 13.2547294 + ], + [ + 52.5110657, + 13.2548612 + ], + [ + 52.5109831, + 13.2549696 + ], + [ + 52.5109071, + 13.2550603 + ], + [ + 52.5108178, + 13.2551595 + ], + [ + 52.5104863, + 13.2554729 + ], + [ + 52.5102869, + 13.2556479 + ], + [ + 52.5101004, + 13.2558188 + ], + [ + 52.5099893, + 13.2559302 + ], + [ + 52.509868, + 13.2560581 + ], + [ + 52.5097633, + 13.2561741 + ], + [ + 52.5096042, + 13.2563588 + ], + [ + 52.5093527, + 13.2567045 + ] + ] + }, + { + "osmId": "9828297", + "name": null, + "lengthMeters": 413.8639094489904, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4979491, + 13.2751542 + ], + [ + 52.4979775, + 13.2754082 + ], + [ + 52.4980173, + 13.2756634 + ], + [ + 52.4980373, + 13.2757709 + ], + [ + 52.4980634, + 13.2759127 + ], + [ + 52.498071, + 13.2759541 + ], + [ + 52.4981302, + 13.2761845 + ], + [ + 52.4981847, + 13.2764056 + ], + [ + 52.4982565, + 13.2766316 + ], + [ + 52.4983373, + 13.276906 + ], + [ + 52.4984149, + 13.2771521 + ], + [ + 52.4986518, + 13.277911 + ], + [ + 52.4987029, + 13.2780738 + ], + [ + 52.4987879, + 13.2783445 + ], + [ + 52.498964, + 13.2789057 + ], + [ + 52.4993505, + 13.2801356 + ], + [ + 52.4994142, + 13.2803385 + ], + [ + 52.4994762, + 13.280515 + ], + [ + 52.4995272, + 13.2806683 + ] + ] + }, + { + "osmId": "9887645", + "name": null, + "lengthMeters": 165.98259296287478, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6547238, + 9.798573 + ], + [ + 53.6544139, + 9.7990206 + ], + [ + 53.6539692, + 9.7996069 + ], + [ + 53.6535709, + 9.8001062 + ], + [ + 53.6535509, + 9.8001293 + ] + ] + }, + { + "osmId": "9927431", + "name": null, + "lengthMeters": 83.33138931993622, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291594, + 13.2222 + ], + [ + 52.5289949, + 13.2223424 + ], + [ + 52.5289149, + 13.2224037 + ], + [ + 52.5288332, + 13.2224597 + ], + [ + 52.5287513, + 13.2225118 + ], + [ + 52.5286649, + 13.2225658 + ], + [ + 52.5285386, + 13.2226309 + ], + [ + 52.5284677, + 13.2226663 + ] + ] + }, + { + "osmId": "9927432", + "name": null, + "lengthMeters": 1368.9295360433985, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259267, + 13.2222186 + ], + [ + 52.5259174, + 13.2222137 + ], + [ + 52.5258963, + 13.2222004 + ], + [ + 52.5253831, + 13.2218671 + ], + [ + 52.5250189, + 13.2216397 + ], + [ + 52.524748, + 13.2214659 + ], + [ + 52.5244944, + 13.2213069 + ], + [ + 52.5241369, + 13.2210786 + ], + [ + 52.5238186, + 13.22088 + ], + [ + 52.5235281, + 13.220697 + ], + [ + 52.5232105, + 13.2204944 + ], + [ + 52.5228436, + 13.220263 + ], + [ + 52.5226242, + 13.2201263 + ], + [ + 52.522595, + 13.2201095 + ], + [ + 52.5225017, + 13.2200572 + ], + [ + 52.5224144, + 13.2200097 + ], + [ + 52.522278, + 13.2199401 + ], + [ + 52.5221686, + 13.2198928 + ], + [ + 52.5220343, + 13.2198373 + ], + [ + 52.5219131, + 13.2197956 + ], + [ + 52.5217927, + 13.2197577 + ], + [ + 52.521648, + 13.2197197 + ], + [ + 52.5215366, + 13.2196932 + ], + [ + 52.5213988, + 13.2196652 + ], + [ + 52.5212482, + 13.2196445 + ], + [ + 52.5210766, + 13.2196359 + ], + [ + 52.5209233, + 13.2196375 + ], + [ + 52.5207508, + 13.2196448 + ], + [ + 52.5205453, + 13.2196558 + ], + [ + 52.5203475, + 13.219672 + ], + [ + 52.5175453, + 13.21994 + ], + [ + 52.5167264, + 13.2200245 + ], + [ + 52.5163079, + 13.2200522 + ], + [ + 52.5161399, + 13.2200778 + ], + [ + 52.5158904, + 13.2201222 + ], + [ + 52.5157837, + 13.2201459 + ], + [ + 52.5157614, + 13.2201509 + ], + [ + 52.5156068, + 13.2201895 + ], + [ + 52.5154557, + 13.2202371 + ], + [ + 52.5152483, + 13.2203206 + ], + [ + 52.5150815, + 13.2203993 + ], + [ + 52.5149598, + 13.220465 + ], + [ + 52.5148308, + 13.2205373 + ], + [ + 52.5147063, + 13.2206196 + ], + [ + 52.5143858, + 13.2208682 + ], + [ + 52.514023, + 13.2211912 + ] + ] + }, + { + "osmId": "9927499", + "name": null, + "lengthMeters": 141.2191688691256, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5313297, + 13.213745 + ], + [ + 52.531153, + 13.2151362 + ], + [ + 52.5310706, + 13.2157888 + ] + ] + }, + { + "osmId": "9927500", + "name": null, + "lengthMeters": 119.90708825842128, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5305687, + 13.2196609 + ], + [ + 52.5305152, + 13.2198344 + ], + [ + 52.5304214, + 13.2201415 + ], + [ + 52.5303463, + 13.2203588 + ], + [ + 52.5302295, + 13.2206468 + ], + [ + 52.530135, + 13.2208456 + ], + [ + 52.5299816, + 13.221138 + ] + ] + }, + { + "osmId": "9927501", + "name": null, + "lengthMeters": 116.82886151947386, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5299816, + 13.221138 + ], + [ + 52.5298891, + 13.2212892 + ], + [ + 52.5298096, + 13.2214163 + ], + [ + 52.5297182, + 13.2215574 + ], + [ + 52.5296348, + 13.2216815 + ], + [ + 52.5295394, + 13.2218055 + ], + [ + 52.5293178, + 13.222053 + ], + [ + 52.5292974, + 13.2220719 + ], + [ + 52.5291594, + 13.2222 + ] + ] + }, + { + "osmId": "9931305", + "name": null, + "lengthMeters": 100.36599396483318, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5327452, + 13.5344677 + ], + [ + 52.5328936, + 13.534467 + ], + [ + 52.5330355, + 13.5344713 + ], + [ + 52.5332246, + 13.534487 + ], + [ + 52.5334613, + 13.5345128 + ], + [ + 52.5336463, + 13.5345398 + ] + ] + }, + { + "osmId": "9931389", + "name": null, + "lengthMeters": 520.6755373231722, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5153426, + 13.5393762 + ], + [ + 52.5151119, + 13.5378756 + ], + [ + 52.5149552, + 13.536713 + ], + [ + 52.5148001, + 13.5354147 + ], + [ + 52.5146558, + 13.5340109 + ], + [ + 52.5145415, + 13.533156 + ], + [ + 52.5143138, + 13.5318756 + ] + ] + }, + { + "osmId": "9933691", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 813.7853716771572, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5419315, + 13.1576101 + ], + [ + 52.5417719, + 13.158225 + ], + [ + 52.5413799, + 13.1597599 + ], + [ + 52.5407157, + 13.1624962 + ], + [ + 52.5401259, + 13.1649437 + ], + [ + 52.5395504, + 13.1673551 + ], + [ + 52.5395453, + 13.1673741 + ], + [ + 52.5392126, + 13.1687814 + ] + ] + }, + { + "osmId": "9933818", + "name": null, + "lengthMeters": 928.2929569896297, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353429, + 13.1854287 + ], + [ + 52.5353717, + 13.1861703 + ], + [ + 52.5354001, + 13.1868591 + ], + [ + 52.5354143, + 13.1872726 + ], + [ + 52.5354324, + 13.1882203 + ], + [ + 52.5354292, + 13.1887436 + ], + [ + 52.5354159, + 13.1892703 + ], + [ + 52.535395, + 13.189757 + ], + [ + 52.5353667, + 13.1902392 + ], + [ + 52.535311, + 13.1909415 + ], + [ + 52.5352957, + 13.191101 + ], + [ + 52.5352249, + 13.1917531 + ], + [ + 52.535137, + 13.1924004 + ], + [ + 52.535071, + 13.1928478 + ], + [ + 52.5348748, + 13.1940699 + ], + [ + 52.5348722, + 13.1940862 + ], + [ + 52.5347186, + 13.1950293 + ], + [ + 52.5345014, + 13.1964204 + ], + [ + 52.5343929, + 13.1971825 + ], + [ + 52.5343262, + 13.1976194 + ], + [ + 52.5342741, + 13.1979377 + ], + [ + 52.5342105, + 13.1982874 + ], + [ + 52.5341369, + 13.1986656 + ], + [ + 52.5340906, + 13.1988848 + ] + ] + }, + { + "osmId": "9933819", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 436.0031775028873, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.534285, + 13.1989948 + ], + [ + 52.5343012, + 13.1989174 + ], + [ + 52.5343223, + 13.198808 + ], + [ + 52.5346005, + 13.1970752 + ], + [ + 52.5347657, + 13.1960751 + ], + [ + 52.5347777, + 13.1960027 + ], + [ + 52.5348439, + 13.1956022 + ], + [ + 52.5349702, + 13.1948312 + ], + [ + 52.5349867, + 13.1947303 + ], + [ + 52.5353201, + 13.1927777 + ] + ] + }, + { + "osmId": "9933821", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 324.099333287028, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362692, + 13.1867941 + ], + [ + 52.5362966, + 13.1866246 + ], + [ + 52.5365703, + 13.1849299 + ], + [ + 52.5367809, + 13.1836461 + ], + [ + 52.5370106, + 13.1822412 + ], + [ + 52.5370214, + 13.1821724 + ], + [ + 52.5370227, + 13.1821651 + ] + ] + }, + { + "osmId": "9933825", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 383.13977730706563, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5361315, + 13.1872725 + ], + [ + 52.535794, + 13.1893568 + ], + [ + 52.5355771, + 13.1907353 + ], + [ + 52.535386, + 13.1919751 + ], + [ + 52.5352963, + 13.1926031 + ], + [ + 52.535293, + 13.1926213 + ], + [ + 52.5352765, + 13.1927344 + ], + [ + 52.535273, + 13.1927583 + ] + ] + }, + { + "osmId": "9934388", + "name": null, + "lengthMeters": 234.73991028768987, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353522, + 13.1819618 + ], + [ + 52.5353473, + 13.1821115 + ], + [ + 52.5353149, + 13.1830516 + ], + [ + 52.535303, + 13.1837556 + ], + [ + 52.5353072, + 13.1843811 + ], + [ + 52.5353192, + 13.184787 + ], + [ + 52.5353216, + 13.1848517 + ], + [ + 52.5353314, + 13.1851184 + ], + [ + 52.5353429, + 13.1854287 + ] + ] + }, + { + "osmId": "9945338", + "name": null, + "lengthMeters": 1903.7426877955297, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0809149, + 11.6091514 + ], + [ + 48.0826016, + 11.6087255 + ], + [ + 48.0843802, + 11.6082763 + ], + [ + 48.0846812, + 11.6082003 + ], + [ + 48.0861707, + 11.6078242 + ], + [ + 48.0880226, + 11.6073565 + ], + [ + 48.0897042, + 11.6069185 + ], + [ + 48.0913236, + 11.6064967 + ], + [ + 48.0918317, + 11.6063409 + ], + [ + 48.092587, + 11.6060761 + ], + [ + 48.0930399, + 11.6058949 + ], + [ + 48.0933162, + 11.6057844 + ], + [ + 48.0936664, + 11.6056294 + ], + [ + 48.0937219, + 11.6056029 + ], + [ + 48.094277, + 11.6053376 + ], + [ + 48.0948594, + 11.6050311 + ], + [ + 48.095118, + 11.604895 + ], + [ + 48.0955698, + 11.604636 + ], + [ + 48.0960242, + 11.6043571 + ], + [ + 48.0965573, + 11.6040321 + ], + [ + 48.0970453, + 11.6037341 + ], + [ + 48.0975406, + 11.6034203 + ] + ] + }, + { + "osmId": "9959196", + "name": null, + "lengthMeters": 6091.959702544341, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2367466, + 11.6866788 + ], + [ + 48.2376922, + 11.6876888 + ], + [ + 48.2382718, + 11.6883031 + ], + [ + 48.2391852, + 11.6892833 + ], + [ + 48.2402256, + 11.6903965 + ], + [ + 48.2405621, + 11.6907554 + ], + [ + 48.2408906, + 11.6911007 + ], + [ + 48.2415525, + 11.6918074 + ], + [ + 48.2428569, + 11.6932013 + ], + [ + 48.244068, + 11.6944962 + ], + [ + 48.2457652, + 11.6963108 + ], + [ + 48.2461503, + 11.6967248 + ], + [ + 48.2478099, + 11.6984953 + ], + [ + 48.2484852, + 11.6992168 + ], + [ + 48.2494674, + 11.7002494 + ], + [ + 48.2505939, + 11.7013309 + ], + [ + 48.2511847, + 11.7018623 + ], + [ + 48.2520714, + 11.7026296 + ], + [ + 48.253067, + 11.7034364 + ], + [ + 48.2536068, + 11.7038549 + ], + [ + 48.2544271, + 11.7044483 + ], + [ + 48.2546653, + 11.7046082 + ], + [ + 48.2555473, + 11.7052001 + ], + [ + 48.2561899, + 11.7056094 + ], + [ + 48.2568572, + 11.7060091 + ], + [ + 48.2575439, + 11.7064019 + ], + [ + 48.2583901, + 11.7068531 + ], + [ + 48.2590119, + 11.7071644 + ], + [ + 48.2596273, + 11.7074588 + ], + [ + 48.2607322, + 11.7079395 + ], + [ + 48.261612, + 11.7082808 + ], + [ + 48.2621233, + 11.7084666 + ], + [ + 48.2626539, + 11.7086483 + ], + [ + 48.2631929, + 11.7088121 + ], + [ + 48.2635945, + 11.7089341 + ], + [ + 48.264427, + 11.7091652 + ], + [ + 48.2650259, + 11.7093176 + ], + [ + 48.2656266, + 11.7094522 + ], + [ + 48.2664244, + 11.7095964 + ], + [ + 48.2673039, + 11.709733 + ], + [ + 48.2676573, + 11.7097793 + ], + [ + 48.2679591, + 11.7098188 + ], + [ + 48.2685475, + 11.7098788 + ], + [ + 48.2701638, + 11.7100043 + ], + [ + 48.271783, + 11.7101251 + ], + [ + 48.2746143, + 11.71035 + ], + [ + 48.2755886, + 11.7104121 + ], + [ + 48.2770214, + 11.710457 + ], + [ + 48.2779299, + 11.7104441 + ], + [ + 48.2788305, + 11.7104069 + ], + [ + 48.280038, + 11.7103289 + ], + [ + 48.2818251, + 11.7102144 + ], + [ + 48.2828394, + 11.7101542 + ], + [ + 48.2835663, + 11.7101045 + ], + [ + 48.2847045, + 11.710029 + ], + [ + 48.2856679, + 11.7099631 + ], + [ + 48.2864962, + 11.7099394 + ], + [ + 48.2869251, + 11.7099418 + ], + [ + 48.2873066, + 11.709954 + ], + [ + 48.2873519, + 11.7099529 + ] + ] + }, + { + "osmId": "9966732", + "name": null, + "lengthMeters": 126.3893404282002, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5342858, + 13.1997717 + ], + [ + 52.5341417, + 13.2004254 + ], + [ + 52.5338628, + 13.2015054 + ] + ] + }, + { + "osmId": "9966734", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 436.93830395317497, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5343736, + 13.1990479 + ], + [ + 52.5343904, + 13.1989663 + ], + [ + 52.5344088, + 13.1988786 + ], + [ + 52.5346015, + 13.1976719 + ], + [ + 52.5346606, + 13.1973278 + ], + [ + 52.5347219, + 13.1969709 + ], + [ + 52.5348686, + 13.1961173 + ], + [ + 52.5349445, + 13.1956548 + ], + [ + 52.5350727, + 13.1948514 + ], + [ + 52.5351251, + 13.1945078 + ], + [ + 52.5353492, + 13.1931594 + ], + [ + 52.5353989, + 13.1928125 + ] + ] + }, + { + "osmId": "9966737", + "name": null, + "lengthMeters": 157.71308115584853, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.534102, + 13.1996668 + ], + [ + 52.5340999, + 13.199676 + ], + [ + 52.5340969, + 13.1996892 + ], + [ + 52.5339331, + 13.2004052 + ], + [ + 52.5337465, + 13.2011221 + ], + [ + 52.5335526, + 13.2017688 + ], + [ + 52.5335397, + 13.2018051 + ] + ] + }, + { + "osmId": "9966739", + "name": null, + "lengthMeters": 155.60783208263035, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334905, + 13.201742 + ], + [ + 52.5335092, + 13.2016823 + ], + [ + 52.5335139, + 13.2016663 + ], + [ + 52.5336786, + 13.2010913 + ], + [ + 52.5338554, + 13.2003682 + ], + [ + 52.5340231, + 13.1996164 + ] + ] + }, + { + "osmId": "9966741", + "name": null, + "lengthMeters": 154.53205622768516, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5339494, + 13.1995648 + ], + [ + 52.5339396, + 13.1996099 + ], + [ + 52.533796, + 13.200348 + ], + [ + 52.5336304, + 13.2010596 + ], + [ + 52.5334601, + 13.2017011 + ] + ] + }, + { + "osmId": "9966742", + "name": null, + "lengthMeters": 124.3848818952579, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533704, + 13.2020163 + ], + [ + 52.533237, + 13.2035027 + ], + [ + 52.5331907, + 13.2036502 + ] + ] + }, + { + "osmId": "9966744", + "name": null, + "lengthMeters": 123.92157624166607, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5331244, + 13.2035578 + ], + [ + 52.5336413, + 13.2019347 + ] + ] + }, + { + "osmId": "9966745", + "name": null, + "lengthMeters": 162.28729515412135, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5336413, + 13.2019347 + ], + [ + 52.5337563, + 13.201562 + ], + [ + 52.5338644, + 13.2011878 + ], + [ + 52.5340599, + 13.2004725 + ], + [ + 52.5342332, + 13.1997432 + ] + ] + }, + { + "osmId": "9966746", + "name": null, + "lengthMeters": 123.41182515441, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5335397, + 13.2018051 + ], + [ + 52.5330263, + 13.2034227 + ] + ] + }, + { + "osmId": "9966748", + "name": null, + "lengthMeters": 123.3040267850804, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5329876, + 13.2033667 + ], + [ + 52.5334905, + 13.201742 + ] + ] + }, + { + "osmId": "9966750", + "name": null, + "lengthMeters": 123.05455533619586, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334601, + 13.2017011 + ], + [ + 52.5332162, + 13.2024763 + ], + [ + 52.5329518, + 13.2033171 + ] + ] + }, + { + "osmId": "10063994", + "name": null, + "lengthMeters": 2160.9381001209617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3928422, + 10.0892088 + ], + [ + 53.3931765, + 10.0865237 + ], + [ + 53.3933126, + 10.0857028 + ], + [ + 53.3933823, + 10.0854199 + ], + [ + 53.3935177, + 10.0848703 + ], + [ + 53.3939421, + 10.0836727 + ], + [ + 53.3942092, + 10.0829845 + ], + [ + 53.3943609, + 10.0824792 + ], + [ + 53.3946009, + 10.0816803 + ], + [ + 53.3946473, + 10.081552 + ], + [ + 53.394652, + 10.0815391 + ], + [ + 53.3946681, + 10.0814944 + ], + [ + 53.3946739, + 10.0814785 + ], + [ + 53.394699, + 10.0814075 + ], + [ + 53.3949014, + 10.0806773 + ], + [ + 53.3950031, + 10.0800806 + ], + [ + 53.3950882, + 10.0795293 + ], + [ + 53.3951051, + 10.0791186 + ], + [ + 53.3951075, + 10.0788483 + ], + [ + 53.3950631, + 10.0783708 + ], + [ + 53.3950056, + 10.0780271 + ], + [ + 53.3948332, + 10.0773747 + ], + [ + 53.3947416, + 10.0768391 + ], + [ + 53.3947027, + 10.0763012 + ], + [ + 53.3947031, + 10.0758331 + ], + [ + 53.3947489, + 10.0752377 + ], + [ + 53.3948141, + 10.0743462 + ], + [ + 53.3948642, + 10.0734086 + ], + [ + 53.3949308, + 10.0729234 + ], + [ + 53.3951535, + 10.0719548 + ], + [ + 53.395366, + 10.0711037 + ], + [ + 53.3954563, + 10.0707277 + ], + [ + 53.3956093, + 10.0702163 + ], + [ + 53.395627, + 10.0701607 + ], + [ + 53.3959662, + 10.0692464 + ], + [ + 53.3965464, + 10.0676585 + ], + [ + 53.396697, + 10.0672556 + ], + [ + 53.3969143, + 10.0666234 + ], + [ + 53.397028, + 10.0662125 + ], + [ + 53.397246, + 10.0654245 + ], + [ + 53.3974197, + 10.0648038 + ], + [ + 53.3975878, + 10.0641961 + ], + [ + 53.397624, + 10.0640033 + ], + [ + 53.3976904, + 10.0636124 + ], + [ + 53.397742, + 10.063309 + ], + [ + 53.3978357, + 10.0627628 + ], + [ + 53.3979184, + 10.0622467 + ], + [ + 53.3979862, + 10.0618256 + ], + [ + 53.3980591, + 10.0615337 + ], + [ + 53.3981558, + 10.0611612 + ], + [ + 53.398367, + 10.0605257 + ], + [ + 53.3985195, + 10.0601178 + ], + [ + 53.3986734, + 10.0597482 + ], + [ + 53.3987564, + 10.0595706 + ], + [ + 53.3989411, + 10.0592143 + ] + ] + }, + { + "osmId": "10075276", + "name": null, + "lengthMeters": 81.8793043770595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5855364, + 10.0496054 + ], + [ + 53.5856439, + 10.0494326 + ], + [ + 53.586005, + 10.0488689 + ], + [ + 53.5860724, + 10.0487646 + ], + [ + 53.5860753, + 10.0487601 + ] + ] + }, + { + "osmId": "10122801", + "name": null, + "lengthMeters": 929.0064987974553, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.542795, + 13.548863 + ], + [ + 52.5426977, + 13.5485317 + ], + [ + 52.5425672, + 13.5480873 + ], + [ + 52.5424447, + 13.5476944 + ], + [ + 52.5419512, + 13.546028 + ], + [ + 52.5419207, + 13.5459117 + ], + [ + 52.5418934, + 13.5457953 + ], + [ + 52.541889, + 13.5457646 + ], + [ + 52.5418718, + 13.545678 + ], + [ + 52.5418507, + 13.5455583 + ], + [ + 52.5418195, + 13.545314 + ], + [ + 52.5418099, + 13.5451614 + ], + [ + 52.5418058, + 13.5450026 + ], + [ + 52.5418075, + 13.5447864 + ], + [ + 52.5418147, + 13.544646 + ], + [ + 52.5418276, + 13.544504 + ], + [ + 52.5418589, + 13.5442579 + ], + [ + 52.5418908, + 13.5440813 + ], + [ + 52.5419303, + 13.5439181 + ], + [ + 52.5420184, + 13.5435915 + ], + [ + 52.5421926, + 13.5429802 + ], + [ + 52.5422392, + 13.5428216 + ], + [ + 52.5422605, + 13.5427578 + ], + [ + 52.5424417, + 13.5420973 + ], + [ + 52.5424883, + 13.5419279 + ], + [ + 52.5425377, + 13.5417571 + ], + [ + 52.5425469, + 13.5417245 + ], + [ + 52.5425527, + 13.5417043 + ], + [ + 52.542586, + 13.541587 + ], + [ + 52.5426119, + 13.5414634 + ], + [ + 52.5426239, + 13.5413662 + ], + [ + 52.5426245, + 13.5412351 + ], + [ + 52.5426246, + 13.541203 + ], + [ + 52.5426198, + 13.5411644 + ], + [ + 52.542612, + 13.5410859 + ], + [ + 52.5425795, + 13.5409445 + ], + [ + 52.5425365, + 13.5408318 + ], + [ + 52.5424853, + 13.5407378 + ], + [ + 52.5424433, + 13.5406686 + ], + [ + 52.5423774, + 13.5406026 + ], + [ + 52.5422368, + 13.540481 + ], + [ + 52.5413612, + 13.5398714 + ], + [ + 52.5405271, + 13.5392993 + ], + [ + 52.5404613, + 13.5392484 + ], + [ + 52.5403956, + 13.5391894 + ], + [ + 52.5403483, + 13.5391428 + ], + [ + 52.5403041, + 13.5390948 + ], + [ + 52.5402666, + 13.5390474 + ], + [ + 52.5402244, + 13.5389855 + ], + [ + 52.5401842, + 13.5389176 + ], + [ + 52.5401535, + 13.5388599 + ], + [ + 52.5401207, + 13.538786 + ], + [ + 52.5400936, + 13.5387171 + ], + [ + 52.5400706, + 13.5386504 + ], + [ + 52.5400492, + 13.5385756 + ], + [ + 52.5400302, + 13.538496 + ], + [ + 52.5400143, + 13.5384171 + ], + [ + 52.5399931, + 13.5383046 + ] + ] + }, + { + "osmId": "10124618", + "name": null, + "lengthMeters": 125.351252835487, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4936484, + 13.4977108 + ], + [ + 52.4931323, + 13.4993569 + ] + ] + }, + { + "osmId": "10124628", + "name": null, + "lengthMeters": 465.0246945472776, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.491493, + 13.5056645 + ], + [ + 52.4915265, + 13.5055054 + ], + [ + 52.4920188, + 13.5032595 + ], + [ + 52.4921444, + 13.5027229 + ], + [ + 52.4923894, + 13.5017764 + ], + [ + 52.4927903, + 13.5004426 + ], + [ + 52.4931323, + 13.4993569 + ] + ] + }, + { + "osmId": "10149022", + "name": null, + "lengthMeters": 283.3434598013869, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320073, + 13.2073904 + ], + [ + 52.5319762, + 13.2075623 + ], + [ + 52.531876, + 13.2081832 + ], + [ + 52.5318042, + 13.2086991 + ], + [ + 52.5316339, + 13.2100151 + ], + [ + 52.5314456, + 13.2114751 + ] + ] + }, + { + "osmId": "10149025", + "name": null, + "lengthMeters": 138.16593873523922, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5316787, + 13.2092961 + ], + [ + 52.5317601, + 13.2086987 + ], + [ + 52.5318234, + 13.2082112 + ], + [ + 52.5318923, + 13.2077283 + ], + [ + 52.5319062, + 13.2076371 + ], + [ + 52.5319608, + 13.2073072 + ] + ] + }, + { + "osmId": "10149031", + "name": null, + "lengthMeters": 206.7101726841949, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321319, + 13.2073232 + ], + [ + 52.5322023, + 13.2069766 + ], + [ + 52.5323769, + 13.2061766 + ], + [ + 52.5325972, + 13.205323 + ], + [ + 52.5328345, + 13.2044971 + ] + ] + }, + { + "osmId": "10149034", + "name": null, + "lengthMeters": 197.91544384622742, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321502, + 13.2076269 + ], + [ + 52.532062, + 13.2081317 + ], + [ + 52.5320534, + 13.2081856 + ], + [ + 52.5320473, + 13.2082025 + ], + [ + 52.53202, + 13.2083958 + ], + [ + 52.5319198, + 13.2091013 + ], + [ + 52.5318982, + 13.2092572 + ], + [ + 52.5318929, + 13.2093024 + ], + [ + 52.531852, + 13.209625 + ], + [ + 52.5318027, + 13.2100347 + ], + [ + 52.5317564, + 13.2103867 + ], + [ + 52.5317465, + 13.2104744 + ] + ] + }, + { + "osmId": "10149338", + "name": null, + "lengthMeters": 79.37351793231704, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328971, + 13.204593 + ], + [ + 52.5327016, + 13.2052512 + ], + [ + 52.532592, + 13.2056537 + ] + ] + }, + { + "osmId": "10149344", + "name": null, + "lengthMeters": 206.8692357140468, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5327418, + 13.2043441 + ], + [ + 52.5324892, + 13.2052237 + ], + [ + 52.5323769, + 13.2056415 + ], + [ + 52.5322648, + 13.2061141 + ], + [ + 52.5321403, + 13.206697 + ], + [ + 52.5320466, + 13.2071767 + ] + ] + }, + { + "osmId": "10149346", + "name": null, + "lengthMeters": 205.9597440598299, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5319959, + 13.2070966 + ], + [ + 52.5321044, + 13.2065535 + ], + [ + 52.5322048, + 13.2060921 + ], + [ + 52.5323344, + 13.2055331 + ], + [ + 52.5324135, + 13.2052392 + ], + [ + 52.5326952, + 13.2042817 + ] + ] + }, + { + "osmId": "10149348", + "name": null, + "lengthMeters": 205.3415803872068, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5326669, + 13.2042375 + ], + [ + 52.5325432, + 13.2046633 + ], + [ + 52.5322993, + 13.2055103 + ], + [ + 52.5321689, + 13.2060559 + ], + [ + 52.5320604, + 13.206532 + ], + [ + 52.5319634, + 13.2070397 + ] + ] + }, + { + "osmId": "10195166", + "name": null, + "lengthMeters": 461.3004555999544, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140548, + 13.531432 + ], + [ + 52.5141429, + 13.5322366 + ], + [ + 52.5142184, + 13.5330222 + ], + [ + 52.5142907, + 13.5336634 + ], + [ + 52.5143812, + 13.5342665 + ], + [ + 52.514523, + 13.5351858 + ], + [ + 52.5146337, + 13.5358486 + ], + [ + 52.5147646, + 13.5365078 + ], + [ + 52.5150679, + 13.5380301 + ] + ] + }, + { + "osmId": "10195213", + "name": null, + "lengthMeters": 1437.922325425189, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5148268, + 13.5350552 + ], + [ + 52.5149051, + 13.5352756 + ], + [ + 52.5149876, + 13.535497 + ], + [ + 52.5150728, + 13.5357132 + ], + [ + 52.5151667, + 13.5359401 + ], + [ + 52.5152553, + 13.5361422 + ], + [ + 52.5153487, + 13.5363446 + ], + [ + 52.5154274, + 13.5365104 + ], + [ + 52.5155009, + 13.5366546 + ], + [ + 52.5155735, + 13.5367949 + ], + [ + 52.5156522, + 13.5369397 + ], + [ + 52.5157303, + 13.5370777 + ], + [ + 52.5158148, + 13.5372239 + ], + [ + 52.5158996, + 13.5373633 + ], + [ + 52.5159857, + 13.5374993 + ], + [ + 52.5160743, + 13.5376299 + ], + [ + 52.5162282, + 13.5378552 + ], + [ + 52.5163066, + 13.5379655 + ], + [ + 52.5163883, + 13.5380739 + ], + [ + 52.5164965, + 13.5382158 + ], + [ + 52.5165633, + 13.5382978 + ], + [ + 52.5166454, + 13.5383971 + ], + [ + 52.5167287, + 13.5384918 + ], + [ + 52.5168506, + 13.5386289 + ], + [ + 52.516982, + 13.5387686 + ], + [ + 52.5170819, + 13.5388672 + ], + [ + 52.5172309, + 13.5390109 + ], + [ + 52.5173686, + 13.5391353 + ], + [ + 52.517492, + 13.5392394 + ], + [ + 52.5175848, + 13.5393153 + ], + [ + 52.5176862, + 13.5393894 + ], + [ + 52.5178363, + 13.5394973 + ], + [ + 52.51796, + 13.5395794 + ], + [ + 52.5180878, + 13.5396575 + ], + [ + 52.5182334, + 13.53974 + ], + [ + 52.5183891, + 13.5398172 + ], + [ + 52.5184665, + 13.5398546 + ], + [ + 52.5185413, + 13.5398875 + ], + [ + 52.5186904, + 13.5399484 + ], + [ + 52.5188313, + 13.5399992 + ], + [ + 52.5189695, + 13.5400427 + ], + [ + 52.5190963, + 13.5400778 + ], + [ + 52.5192225, + 13.5401066 + ], + [ + 52.5193715, + 13.5401346 + ], + [ + 52.5195176, + 13.5401553 + ], + [ + 52.5196363, + 13.5401696 + ], + [ + 52.5197588, + 13.540176 + ], + [ + 52.5199027, + 13.5401809 + ], + [ + 52.5200395, + 13.5401787 + ], + [ + 52.5202315, + 13.5401666 + ], + [ + 52.5204239, + 13.5401416 + ], + [ + 52.5205833, + 13.5401149 + ], + [ + 52.5207421, + 13.5400774 + ], + [ + 52.5208919, + 13.5400383 + ], + [ + 52.5210369, + 13.5399903 + ], + [ + 52.5211443, + 13.5399516 + ], + [ + 52.5212497, + 13.5399088 + ], + [ + 52.5213562, + 13.5398636 + ], + [ + 52.5214618, + 13.5398144 + ], + [ + 52.521583, + 13.539753 + ], + [ + 52.5216945, + 13.5396921 + ], + [ + 52.5217694, + 13.5396488 + ], + [ + 52.5218405, + 13.539605 + ], + [ + 52.5219806, + 13.5395152 + ], + [ + 52.5220996, + 13.5394349 + ], + [ + 52.522208, + 13.5393579 + ], + [ + 52.5223538, + 13.5392489 + ], + [ + 52.5225045, + 13.5391332 + ], + [ + 52.5226751, + 13.5389984 + ], + [ + 52.5228647, + 13.5388471 + ], + [ + 52.5230589, + 13.5386877 + ], + [ + 52.5232548, + 13.5385309 + ], + [ + 52.5234098, + 13.5384095 + ], + [ + 52.523562, + 13.5382958 + ], + [ + 52.5239112, + 13.5380531 + ], + [ + 52.5241013, + 13.5379321 + ], + [ + 52.5242256, + 13.537855 + ], + [ + 52.5243603, + 13.537775 + ], + [ + 52.5244988, + 13.5376954 + ], + [ + 52.5247015, + 13.5375871 + ], + [ + 52.5248681, + 13.5375037 + ], + [ + 52.5250658, + 13.5374086 + ], + [ + 52.5252832, + 13.5373129 + ], + [ + 52.5253953, + 13.5372677 + ], + [ + 52.5257971, + 13.5371162 + ], + [ + 52.5261864, + 13.5369704 + ], + [ + 52.526194, + 13.5369676 + ], + [ + 52.5262476, + 13.5369475 + ] + ] + }, + { + "osmId": "10209458", + "name": null, + "lengthMeters": 187.99023715624756, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257616, + 13.5224166 + ], + [ + 52.5256287, + 13.5251868 + ] + ] + }, + { + "osmId": "10272169", + "name": null, + "lengthMeters": 281.43774162090034, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5339714, + 13.5546263 + ], + [ + 52.5339732, + 13.5547338 + ], + [ + 52.5339707, + 13.5547959 + ], + [ + 52.5339635, + 13.5548403 + ], + [ + 52.5339552, + 13.5548876 + ], + [ + 52.5339412, + 13.5549335 + ], + [ + 52.5339209, + 13.5549882 + ], + [ + 52.533898, + 13.5550298 + ], + [ + 52.5338818, + 13.5550524 + ], + [ + 52.5338542, + 13.5550844 + ], + [ + 52.5338326, + 13.5551105 + ], + [ + 52.5337946, + 13.5551392 + ], + [ + 52.5337629, + 13.5551528 + ], + [ + 52.5337267, + 13.5551582 + ], + [ + 52.5336852, + 13.5551613 + ], + [ + 52.533623, + 13.5551615 + ], + [ + 52.5335621, + 13.5551541 + ], + [ + 52.5334583, + 13.555085 + ], + [ + 52.5334309, + 13.5550587 + ], + [ + 52.5334044, + 13.5550229 + ], + [ + 52.5333795, + 13.5549869 + ], + [ + 52.533356, + 13.5549382 + ], + [ + 52.5333393, + 13.5548981 + ], + [ + 52.5333253, + 13.5548446 + ], + [ + 52.533317, + 13.5547882 + ], + [ + 52.533312, + 13.5547293 + ], + [ + 52.5332789, + 13.5539248 + ], + [ + 52.5332795, + 13.5538533 + ], + [ + 52.5332836, + 13.5537785 + ], + [ + 52.5332931, + 13.5537124 + ], + [ + 52.5333101, + 13.5536537 + ], + [ + 52.5333301, + 13.553604 + ], + [ + 52.5333552, + 13.5535547 + ], + [ + 52.5333931, + 13.5534956 + ], + [ + 52.5334462, + 13.5534365 + ], + [ + 52.5334956, + 13.5534117 + ], + [ + 52.5335363, + 13.5533989 + ], + [ + 52.5336414, + 13.553384 + ], + [ + 52.5337451, + 13.5533602 + ], + [ + 52.5337937, + 13.5533446 + ], + [ + 52.5338102, + 13.553334 + ], + [ + 52.5338388, + 13.5533106 + ], + [ + 52.5338663, + 13.5532753 + ], + [ + 52.5338886, + 13.5532317 + ], + [ + 52.5339089, + 13.5531798 + ], + [ + 52.5339202, + 13.5531419 + ], + [ + 52.5339286, + 13.5531052 + ], + [ + 52.5339355, + 13.5530587 + ], + [ + 52.5339387, + 13.5529956 + ], + [ + 52.5339418, + 13.5529242 + ] + ] + }, + { + "osmId": "10307635", + "name": null, + "lengthMeters": 433.7051468445793, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118021, + 13.4756015 + ], + [ + 52.5116193, + 13.4756378 + ], + [ + 52.5113845, + 13.4756662 + ], + [ + 52.511229, + 13.4756728 + ], + [ + 52.5110803, + 13.4756675 + ], + [ + 52.5109444, + 13.4756528 + ], + [ + 52.5107648, + 13.4756225 + ], + [ + 52.5106112, + 13.4755843 + ], + [ + 52.5104643, + 13.4755363 + ], + [ + 52.5102514, + 13.4754451 + ], + [ + 52.5100518, + 13.4753353 + ], + [ + 52.5098208, + 13.4751787 + ], + [ + 52.5096913, + 13.4750744 + ], + [ + 52.509523, + 13.4749324 + ], + [ + 52.5091822, + 13.474608 + ], + [ + 52.5090978, + 13.4745279 + ], + [ + 52.5090816, + 13.4745126 + ], + [ + 52.5081901, + 13.4736622 + ] + ] + }, + { + "osmId": "10307662", + "name": null, + "lengthMeters": 103.13297897932145, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5022395, + 13.4694203 + ], + [ + 52.502499, + 13.4696273 + ], + [ + 52.502686, + 13.4697528 + ], + [ + 52.5028681, + 13.4698584 + ], + [ + 52.5031006, + 13.4699795 + ] + ] + }, + { + "osmId": "10360537", + "name": null, + "lengthMeters": 1260.5311858933062, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4734264, + 13.363752 + ], + [ + 52.4732624, + 13.3636692 + ], + [ + 52.4730521, + 13.3635538 + ], + [ + 52.4728419, + 13.3634348 + ], + [ + 52.4724644, + 13.3632131 + ], + [ + 52.4720902, + 13.3629844 + ], + [ + 52.4710937, + 13.3623706 + ], + [ + 52.4707039, + 13.3621304 + ], + [ + 52.4704016, + 13.361957 + ], + [ + 52.4701054, + 13.3617899 + ], + [ + 52.4699883, + 13.3617284 + ], + [ + 52.4697677, + 13.3616119 + ], + [ + 52.469545, + 13.3615006 + ], + [ + 52.4690456, + 13.3612416 + ], + [ + 52.4685515, + 13.3609896 + ], + [ + 52.4676779, + 13.3605123 + ], + [ + 52.4675619, + 13.3604433 + ], + [ + 52.4670694, + 13.3601648 + ], + [ + 52.4665779, + 13.3598814 + ], + [ + 52.4660246, + 13.359565 + ], + [ + 52.4659624, + 13.3595294 + ], + [ + 52.4655992, + 13.3593218 + ], + [ + 52.4652463, + 13.3591163 + ], + [ + 52.4648944, + 13.3589082 + ], + [ + 52.4647557, + 13.3588286 + ], + [ + 52.464651, + 13.3587685 + ], + [ + 52.4642566, + 13.358532 + ], + [ + 52.4641858, + 13.3584888 + ], + [ + 52.4635052, + 13.3580934 + ], + [ + 52.4631808, + 13.3578859 + ], + [ + 52.4628316, + 13.357669 + ], + [ + 52.4627946, + 13.3576479 + ], + [ + 52.46279, + 13.3576453 + ], + [ + 52.4627277, + 13.3576097 + ] + ] + }, + { + "osmId": "10360548", + "name": null, + "lengthMeters": 128.645553772021, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4733325, + 13.3639901 + ], + [ + 52.4733154, + 13.363984 + ], + [ + 52.4730305, + 13.3638959 + ], + [ + 52.4722021, + 13.3635868 + ] + ] + }, + { + "osmId": "10360549", + "name": null, + "lengthMeters": 80.78452697185351, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4740389, + 13.3642688 + ], + [ + 52.4736806, + 13.3641271 + ], + [ + 52.4733325, + 13.3639901 + ] + ] + }, + { + "osmId": "10360555", + "name": null, + "lengthMeters": 76.99845215419168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4731878, + 13.3643572 + ], + [ + 52.4738557, + 13.3646573 + ] + ] + }, + { + "osmId": "10360559", + "name": null, + "lengthMeters": 754.1995632828841, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4660545, + 13.361776 + ], + [ + 52.4674475, + 13.362275 + ], + [ + 52.4686013, + 13.3626859 + ], + [ + 52.4687181, + 13.3627283 + ], + [ + 52.47005, + 13.3632013 + ], + [ + 52.470516, + 13.3633675 + ], + [ + 52.4716749, + 13.3637824 + ], + [ + 52.4719414, + 13.3638739 + ], + [ + 52.4722009, + 13.3639689 + ], + [ + 52.4725511, + 13.3641033 + ], + [ + 52.4726804, + 13.3641553 + ] + ] + }, + { + "osmId": "10360564", + "name": null, + "lengthMeters": 504.4998979792283, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4683709, + 13.3626735 + ], + [ + 52.468599, + 13.3627549 + ], + [ + 52.4691689, + 13.3629582 + ], + [ + 52.4691861, + 13.3629642 + ], + [ + 52.4700419, + 13.363271 + ], + [ + 52.4705043, + 13.363436 + ], + [ + 52.4715326, + 13.3638042 + ], + [ + 52.4720078, + 13.3639842 + ], + [ + 52.4721695, + 13.3640513 + ], + [ + 52.4723374, + 13.3641222 + ], + [ + 52.4725372, + 13.3642084 + ], + [ + 52.4727944, + 13.3643248 + ] + ] + }, + { + "osmId": "10369590", + "name": null, + "lengthMeters": 194.8364174025303, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4915178, + 13.3669217 + ], + [ + 52.4917146, + 13.3671282 + ], + [ + 52.492161, + 13.3675379 + ], + [ + 52.4930839, + 13.3682008 + ] + ] + }, + { + "osmId": "10369591", + "name": null, + "lengthMeters": 96.06709170466571, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4835596, + 13.3573578 + ], + [ + 52.4841943, + 13.3583203 + ] + ] + }, + { + "osmId": "10429200", + "name": null, + "lengthMeters": 238.78459872818763, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1985808, + 11.655815 + ], + [ + 48.1994759, + 11.6569814 + ], + [ + 48.2002002, + 11.6579309 + ] + ] + }, + { + "osmId": "10429201", + "name": null, + "lengthMeters": 1431.7437719362406, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1878489, + 11.6455877 + ], + [ + 48.1891522, + 11.646341 + ], + [ + 48.1892521, + 11.6463987 + ], + [ + 48.1900397, + 11.6468537 + ], + [ + 48.1902558, + 11.6469765 + ], + [ + 48.1909109, + 11.6473488 + ], + [ + 48.1911296, + 11.647473 + ], + [ + 48.1913469, + 11.6475965 + ], + [ + 48.1918729, + 11.6479318 + ], + [ + 48.1924792, + 11.648334 + ], + [ + 48.1929655, + 11.6487175 + ], + [ + 48.1934079, + 11.6491805 + ], + [ + 48.1938692, + 11.6496966 + ], + [ + 48.1947154, + 11.6507807 + ], + [ + 48.1956007, + 11.6519294 + ], + [ + 48.1985808, + 11.655815 + ] + ] + }, + { + "osmId": "10571885", + "name": "Stettiner Bahn", + "lengthMeters": 717.5621422574393, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5907542, + 13.4430102 + ], + [ + 52.5922631, + 13.4446429 + ], + [ + 52.5925195, + 13.4449215 + ], + [ + 52.592815, + 13.4452424 + ], + [ + 52.5949118, + 13.4475124 + ], + [ + 52.595691, + 13.4483542 + ], + [ + 52.5961454, + 13.4488486 + ] + ] + }, + { + "osmId": "10593912", + "name": null, + "lengthMeters": 1335.8475106522271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5008806, + 9.9098285 + ], + [ + 53.5016721, + 9.9101572 + ], + [ + 53.50199, + 9.9102884 + ], + [ + 53.5024067, + 9.9104595 + ], + [ + 53.5025608, + 9.9105128 + ], + [ + 53.5028317, + 9.9106066 + ], + [ + 53.5031469, + 9.910697 + ], + [ + 53.5036344, + 9.9107865 + ], + [ + 53.5039282, + 9.9108519 + ], + [ + 53.5044998, + 9.9108808 + ], + [ + 53.5048716, + 9.9109011 + ], + [ + 53.5052322, + 9.9109208 + ], + [ + 53.5052417, + 9.9109213 + ], + [ + 53.5082115, + 9.9110834 + ], + [ + 53.5084292, + 9.9110949 + ], + [ + 53.5085879, + 9.9111033 + ], + [ + 53.5088241, + 9.9110705 + ], + [ + 53.5090503, + 9.9110409 + ], + [ + 53.5091808, + 9.9110012 + ], + [ + 53.509602, + 9.9108108 + ], + [ + 53.5101777, + 9.9105431 + ], + [ + 53.5104443, + 9.9104757 + ], + [ + 53.5105703, + 9.9104597 + ], + [ + 53.5108808, + 9.9104203 + ], + [ + 53.5112892, + 9.9103578 + ], + [ + 53.5115233, + 9.9103205 + ], + [ + 53.5119662, + 9.9102676 + ], + [ + 53.5122306, + 9.9102332 + ], + [ + 53.5127761, + 9.9101504 + ] + ] + }, + { + "osmId": "10594391", + "name": null, + "lengthMeters": 137.36084981244554, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5115233, + 9.9103205 + ], + [ + 53.5118311, + 9.9103277 + ], + [ + 53.5119093, + 9.9103329 + ], + [ + 53.5120989, + 9.9103696 + ], + [ + 53.5123534, + 9.9104535 + ], + [ + 53.5125393, + 9.9105587 + ], + [ + 53.5126218, + 9.9106167 + ], + [ + 53.5126276, + 9.9106207 + ], + [ + 53.5126341, + 9.9106253 + ], + [ + 53.5126569, + 9.9106432 + ], + [ + 53.5127248, + 9.9106967 + ] + ] + }, + { + "osmId": "10594396", + "name": null, + "lengthMeters": 131.75811961189774, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.510333, + 9.921895 + ], + [ + 53.5104512, + 9.9212765 + ], + [ + 53.5105614, + 9.9207578 + ], + [ + 53.5107376, + 9.9200232 + ] + ] + }, + { + "osmId": "10594543", + "name": null, + "lengthMeters": 607.2370154219757, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5224833, + 9.9255977 + ], + [ + 53.5223906, + 9.925464 + ], + [ + 53.5222962, + 9.9253032 + ], + [ + 53.522191, + 9.9251349 + ], + [ + 53.5221059, + 9.9250141 + ], + [ + 53.5220814, + 9.9249794 + ], + [ + 53.5218685, + 9.9247212 + ], + [ + 53.5216477, + 9.9244863 + ], + [ + 53.5214866, + 9.9243209 + ], + [ + 53.5213343, + 9.9241376 + ], + [ + 53.521047, + 9.9237722 + ], + [ + 53.5209444, + 9.9236416 + ], + [ + 53.5207159, + 9.9233484 + ], + [ + 53.5206115, + 9.9232157 + ], + [ + 53.5201696, + 9.9226541 + ], + [ + 53.5198811, + 9.922287 + ], + [ + 53.5196129, + 9.9219573 + ], + [ + 53.5190196, + 9.9212981 + ], + [ + 53.5186617, + 9.9209172 + ], + [ + 53.5185856, + 9.9208369 + ], + [ + 53.5183759, + 9.9206063 + ], + [ + 53.5180515, + 9.9202534 + ] + ] + }, + { + "osmId": "10594544", + "name": null, + "lengthMeters": 335.00153907981576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5213037, + 9.9240015 + ], + [ + 53.5211876, + 9.9238145 + ], + [ + 53.5210974, + 9.9236568 + ], + [ + 53.5210566, + 9.9235657 + ], + [ + 53.521005, + 9.9234506 + ], + [ + 53.5209298, + 9.9232586 + ], + [ + 53.5208939, + 9.92315 + ], + [ + 53.5208522, + 9.9230095 + ], + [ + 53.520788, + 9.922766 + ], + [ + 53.5207609, + 9.922615 + ], + [ + 53.5207317, + 9.9224556 + ], + [ + 53.5207083, + 9.9222632 + ], + [ + 53.5206848, + 9.9220053 + ], + [ + 53.5206793, + 9.9217512 + ], + [ + 53.5206786, + 9.9217205 + ], + [ + 53.5207028, + 9.9212868 + ], + [ + 53.5207495, + 9.9209196 + ], + [ + 53.5208183, + 9.9205354 + ], + [ + 53.520892, + 9.9201779 + ], + [ + 53.5209025, + 9.9201331 + ], + [ + 53.520926, + 9.9200322 + ], + [ + 53.521032, + 9.919693 + ], + [ + 53.5210475, + 9.9196433 + ], + [ + 53.5210638, + 9.9196011 + ], + [ + 53.5211482, + 9.9194092 + ] + ] + }, + { + "osmId": "10594545", + "name": null, + "lengthMeters": 1375.8349041031106, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5258667, + 9.9296535 + ], + [ + 53.526281, + 9.9301407 + ], + [ + 53.526419, + 9.9302978 + ], + [ + 53.5266859, + 9.9306115 + ], + [ + 53.5267743, + 9.9307122 + ], + [ + 53.5268825, + 9.9308323 + ], + [ + 53.5269589, + 9.9309114 + ], + [ + 53.5270817, + 9.9310239 + ], + [ + 53.5271554, + 9.9310828 + ], + [ + 53.5272391, + 9.9311496 + ], + [ + 53.5273846, + 9.9312568 + ], + [ + 53.527601, + 9.9313747 + ], + [ + 53.5277407, + 9.9314351 + ], + [ + 53.5278566, + 9.931478 + ], + [ + 53.5279868, + 9.9315135 + ], + [ + 53.5280873, + 9.9315349 + ], + [ + 53.5282749, + 9.93156 + ], + [ + 53.5288045, + 9.9316174 + ], + [ + 53.529044, + 9.931646 + ], + [ + 53.5292867, + 9.9316665 + ], + [ + 53.5297738, + 9.9317158 + ], + [ + 53.5299853, + 9.9317193 + ], + [ + 53.5301881, + 9.9317108 + ], + [ + 53.530378, + 9.9316831 + ], + [ + 53.5305671, + 9.9316401 + ], + [ + 53.5306818, + 9.9316111 + ], + [ + 53.5307284, + 9.9315994 + ], + [ + 53.5313374, + 9.9314277 + ], + [ + 53.5316612, + 9.9313364 + ], + [ + 53.5320601, + 9.931227 + ], + [ + 53.5321171, + 9.9312114 + ], + [ + 53.5323292, + 9.9311504 + ], + [ + 53.5326849, + 9.9310232 + ], + [ + 53.5330114, + 9.9309003 + ], + [ + 53.5333605, + 9.9307059 + ], + [ + 53.5337281, + 9.9304997 + ], + [ + 53.5340903, + 9.9302878 + ], + [ + 53.5341211, + 9.9302717 + ], + [ + 53.5342388, + 9.9302102 + ], + [ + 53.5345211, + 9.930095 + ], + [ + 53.5347725, + 9.9299977 + ], + [ + 53.5349658, + 9.9299139 + ], + [ + 53.5351084, + 9.9298369 + ], + [ + 53.5351817, + 9.9297896 + ], + [ + 53.5353502, + 9.9296752 + ], + [ + 53.5358, + 9.9294051 + ], + [ + 53.535896, + 9.9293347 + ], + [ + 53.535983, + 9.9292568 + ], + [ + 53.5361596, + 9.9290825 + ], + [ + 53.5363739, + 9.9288229 + ], + [ + 53.5364016, + 9.9287797 + ], + [ + 53.5364066, + 9.9287715 + ], + [ + 53.5365888, + 9.9284735 + ], + [ + 53.5367133, + 9.9282464 + ], + [ + 53.5368786, + 9.9278527 + ], + [ + 53.5369345, + 9.9276924 + ], + [ + 53.5371049, + 9.9270805 + ] + ] + }, + { + "osmId": "10594826", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 934.6747659248668, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4330474, + 10.0193763 + ], + [ + 53.4356533, + 10.0162477 + ], + [ + 53.4360489, + 10.0157781 + ], + [ + 53.436536, + 10.0152 + ], + [ + 53.4376726, + 10.0140181 + ], + [ + 53.4384132, + 10.0132927 + ], + [ + 53.440081, + 10.0116743 + ] + ] + }, + { + "osmId": "10596121", + "name": null, + "lengthMeters": 117.63643911951861, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5475964, + 13.5597453 + ], + [ + 52.5477295, + 13.5589309 + ], + [ + 52.54775, + 13.5588057 + ], + [ + 52.5477584, + 13.5587433 + ], + [ + 52.5477609, + 13.5587107 + ], + [ + 52.5477647, + 13.5586416 + ], + [ + 52.5477645, + 13.5585603 + ], + [ + 52.54776, + 13.5584825 + ], + [ + 52.5477508, + 13.5584182 + ], + [ + 52.5477351, + 13.5583467 + ], + [ + 52.5477186, + 13.5582996 + ], + [ + 52.5477003, + 13.5582567 + ], + [ + 52.5476858, + 13.5582272 + ], + [ + 52.5476736, + 13.5582083 + ], + [ + 52.5476495, + 13.5581764 + ], + [ + 52.5476141, + 13.5581276 + ] + ] + }, + { + "osmId": "10596170", + "name": null, + "lengthMeters": 769.9627918191833, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5365728, + 13.5359621 + ], + [ + 52.5371995, + 13.5362242 + ], + [ + 52.5374662, + 13.5363401 + ], + [ + 52.5377174, + 13.5364563 + ], + [ + 52.5379016, + 13.5365483 + ], + [ + 52.5380439, + 13.5366285 + ], + [ + 52.5381869, + 13.5367141 + ], + [ + 52.5383058, + 13.5367924 + ], + [ + 52.5384182, + 13.5368735 + ], + [ + 52.5386157, + 13.5370246 + ], + [ + 52.5388164, + 13.5371891 + ], + [ + 52.5389889, + 13.5373327 + ], + [ + 52.5393137, + 13.5376152 + ], + [ + 52.5403115, + 13.5384784 + ], + [ + 52.5407195, + 13.538831 + ], + [ + 52.5414277, + 13.5394708 + ], + [ + 52.5422909, + 13.540283 + ], + [ + 52.5426387, + 13.5405954 + ], + [ + 52.5428199, + 13.5407523 + ] + ] + }, + { + "osmId": "10596218", + "name": null, + "lengthMeters": 254.1785708742359, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5532239, + 13.4791043 + ], + [ + 52.5532227, + 13.4791839 + ], + [ + 52.5532207, + 13.4793081 + ], + [ + 52.553215, + 13.4796681 + ], + [ + 52.5532136, + 13.4797552 + ], + [ + 52.5532053, + 13.4799527 + ], + [ + 52.5531803, + 13.480374 + ], + [ + 52.5531618, + 13.4805682 + ], + [ + 52.5531366, + 13.4808317 + ], + [ + 52.5531117, + 13.4810655 + ], + [ + 52.5530757, + 13.4813773 + ], + [ + 52.5530341, + 13.4816489 + ], + [ + 52.5528285, + 13.4827888 + ] + ] + }, + { + "osmId": "10596479", + "name": null, + "lengthMeters": 87.11028830757988, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483928, + 13.4513517 + ], + [ + 52.5483716, + 13.4512545 + ], + [ + 52.5483456, + 13.4511274 + ], + [ + 52.5483297, + 13.4510623 + ], + [ + 52.5483086, + 13.4509822 + ], + [ + 52.5482932, + 13.4509322 + ], + [ + 52.5482651, + 13.4508458 + ], + [ + 52.5482373, + 13.4507696 + ], + [ + 52.5481863, + 13.4506461 + ], + [ + 52.5481585, + 13.4505789 + ], + [ + 52.5480058, + 13.4502422 + ] + ] + }, + { + "osmId": "10596741", + "name": null, + "lengthMeters": 120.54571563844753, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5546227, + 13.3993165 + ], + [ + 52.5546056, + 13.3995696 + ], + [ + 52.554539, + 13.4005554 + ], + [ + 52.5545075, + 13.4010894 + ] + ] + }, + { + "osmId": "10596831", + "name": null, + "lengthMeters": 245.3288302692616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5146848, + 13.4537037 + ], + [ + 52.5151236, + 13.4538884 + ], + [ + 52.5152357, + 13.4539435 + ], + [ + 52.51539, + 13.4540183 + ], + [ + 52.5155476, + 13.4540884 + ], + [ + 52.5156154, + 13.4541097 + ], + [ + 52.5156801, + 13.4541209 + ], + [ + 52.515722, + 13.4541243 + ], + [ + 52.5158502, + 13.4541218 + ], + [ + 52.5158969, + 13.4541146 + ], + [ + 52.5159547, + 13.4540988 + ], + [ + 52.5160812, + 13.454055 + ], + [ + 52.5162664, + 13.4539884 + ], + [ + 52.5163604, + 13.4539522 + ], + [ + 52.5168358, + 13.4537784 + ] + ] + }, + { + "osmId": "10596872", + "name": null, + "lengthMeters": 94.26799046997937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104588, + 13.4517964 + ], + [ + 52.5105898, + 13.4518663 + ], + [ + 52.5106977, + 13.4519149 + ], + [ + 52.5107058, + 13.4519186 + ], + [ + 52.5107969, + 13.4519596 + ], + [ + 52.5108981, + 13.4520025 + ], + [ + 52.5112753, + 13.4521703 + ] + ] + }, + { + "osmId": "10614698", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 76.46333097482277, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.467359, + 9.9955898 + ], + [ + 53.4680161, + 9.9959303 + ] + ] + }, + { + "osmId": "10614699", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 215.81643608359246, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4680161, + 9.9959303 + ], + [ + 53.4689232, + 9.9963724 + ], + [ + 53.4698887, + 9.9967859 + ] + ] + }, + { + "osmId": "10614706", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 235.33582262252963, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4653359, + 9.9945457 + ], + [ + 53.4663231, + 9.9950566 + ], + [ + 53.4671047, + 9.9954583 + ], + [ + 53.467359, + 9.9955898 + ] + ] + }, + { + "osmId": "10666268", + "name": null, + "lengthMeters": 390.8759520932425, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5203744, + 10.0125051 + ], + [ + 53.5198835, + 10.0122794 + ], + [ + 53.5196012, + 10.0121487 + ], + [ + 53.5191832, + 10.0119553 + ], + [ + 53.518766, + 10.0117511 + ], + [ + 53.517747, + 10.0111928 + ], + [ + 53.5174404, + 10.011034 + ], + [ + 53.5170039, + 10.0108304 + ] + ] + }, + { + "osmId": "10698417", + "name": null, + "lengthMeters": 189.35187576016475, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5276987, + 13.4525652 + ], + [ + 52.5277962, + 13.4529763 + ], + [ + 52.5279459, + 13.4536467 + ], + [ + 52.5279926, + 13.4538544 + ], + [ + 52.5280434, + 13.4540495 + ], + [ + 52.5281164, + 13.4542964 + ], + [ + 52.5282135, + 13.4546058 + ], + [ + 52.5282761, + 13.4548144 + ], + [ + 52.5283248, + 13.4550093 + ], + [ + 52.5283569, + 13.4551434 + ] + ] + }, + { + "osmId": "10699464", + "name": null, + "lengthMeters": 597.4356908379469, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4416701, + 13.5847079 + ], + [ + 52.4414292, + 13.585357 + ], + [ + 52.4413407, + 13.585582 + ], + [ + 52.4412984, + 13.5856809 + ], + [ + 52.4412636, + 13.5857583 + ], + [ + 52.4412062, + 13.5858803 + ], + [ + 52.4411181, + 13.5860502 + ], + [ + 52.4410441, + 13.5861832 + ], + [ + 52.440901, + 13.5864183 + ], + [ + 52.4407936, + 13.5865919 + ], + [ + 52.4406483, + 13.5868298 + ], + [ + 52.4405718, + 13.5869726 + ], + [ + 52.4405306, + 13.5870575 + ], + [ + 52.4404966, + 13.5871363 + ], + [ + 52.4404602, + 13.5872174 + ], + [ + 52.4404352, + 13.5873105 + ], + [ + 52.4404047, + 13.5874239 + ], + [ + 52.4403855, + 13.5875485 + ], + [ + 52.4403774, + 13.5876269 + ], + [ + 52.4403723, + 13.5877828 + ], + [ + 52.4403732, + 13.587825 + ], + [ + 52.4403698, + 13.5879539 + ], + [ + 52.4403516, + 13.5880937 + ], + [ + 52.4403316, + 13.5881925 + ], + [ + 52.4403051, + 13.5882822 + ], + [ + 52.4402832, + 13.5883491 + ], + [ + 52.4401883, + 13.5886011 + ], + [ + 52.4395337, + 13.590312 + ], + [ + 52.4388506, + 13.5920484 + ], + [ + 52.4388396, + 13.5920763 + ] + ] + }, + { + "osmId": "10699887", + "name": null, + "lengthMeters": 956.8150615665901, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4453482, + 13.5656528 + ], + [ + 52.445463, + 13.5650939 + ], + [ + 52.4454824, + 13.5649997 + ], + [ + 52.4455015, + 13.5649081 + ], + [ + 52.4458906, + 13.563042 + ], + [ + 52.4459027, + 13.5629856 + ], + [ + 52.4459148, + 13.5628888 + ], + [ + 52.4459168, + 13.5627963 + ], + [ + 52.4459112, + 13.5627275 + ], + [ + 52.4459082, + 13.562705 + ], + [ + 52.4458905, + 13.5626235 + ], + [ + 52.4458628, + 13.5625503 + ], + [ + 52.4458525, + 13.562523 + ], + [ + 52.4457996, + 13.5624357 + ], + [ + 52.4457892, + 13.5624239 + ], + [ + 52.4457474, + 13.5623788 + ], + [ + 52.4453228, + 13.5620331 + ], + [ + 52.4452925, + 13.5620087 + ], + [ + 52.445244, + 13.5619696 + ], + [ + 52.4451945, + 13.5619292 + ], + [ + 52.4435647, + 13.560598 + ], + [ + 52.4432553, + 13.5603504 + ], + [ + 52.4431017, + 13.5602467 + ], + [ + 52.4429131, + 13.5601516 + ], + [ + 52.4427712, + 13.5601087 + ], + [ + 52.4424492, + 13.5600186 + ], + [ + 52.4423161, + 13.5599459 + ], + [ + 52.442231, + 13.559866 + ], + [ + 52.4421359, + 13.5597436 + ], + [ + 52.4420835, + 13.5596416 + ], + [ + 52.442028, + 13.5595007 + ], + [ + 52.4419798, + 13.5593729 + ], + [ + 52.4417915, + 13.5588281 + ], + [ + 52.4414446, + 13.5578308 + ], + [ + 52.4409782, + 13.5565026 + ], + [ + 52.440887, + 13.5562387 + ] + ] + }, + { + "osmId": "10780473", + "name": null, + "lengthMeters": 75.97553210907026, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4451127, + 13.5741717 + ], + [ + 52.4450694, + 13.5741542 + ], + [ + 52.4450598, + 13.5741519 + ], + [ + 52.445049, + 13.5741493 + ], + [ + 52.4450269, + 13.5741476 + ], + [ + 52.4450089, + 13.5741485 + ], + [ + 52.4449909, + 13.574153 + ], + [ + 52.4449587, + 13.5741647 + ], + [ + 52.4449393, + 13.5741731 + ], + [ + 52.4449237, + 13.5741821 + ], + [ + 52.4449092, + 13.5741897 + ], + [ + 52.4448887, + 13.574201 + ], + [ + 52.4448749, + 13.5742074 + ], + [ + 52.4448477, + 13.5742158 + ], + [ + 52.4448227, + 13.5742201 + ], + [ + 52.4447898, + 13.5742207 + ], + [ + 52.4447633, + 13.5742196 + ], + [ + 52.4447362, + 13.5742143 + ], + [ + 52.4447033, + 13.5742054 + ], + [ + 52.4446846, + 13.5742006 + ], + [ + 52.4446639, + 13.5741974 + ], + [ + 52.4446431, + 13.5741954 + ], + [ + 52.4446154, + 13.5741977 + ], + [ + 52.4445945, + 13.5742035 + ], + [ + 52.44457, + 13.5742134 + ], + [ + 52.444549, + 13.5742275 + ], + [ + 52.4445281, + 13.5742449 + ], + [ + 52.4445064, + 13.5742667 + ], + [ + 52.4444839, + 13.5742972 + ], + [ + 52.4444766, + 13.574311 + ], + [ + 52.4444639, + 13.5743352 + ] + ] + }, + { + "osmId": "10781537", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 95.75109976928361, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4081947, + 9.9940666 + ], + [ + 53.4080323, + 9.9951533 + ], + [ + 53.4079863, + 9.9954682 + ] + ] + }, + { + "osmId": "10860819", + "name": null, + "lengthMeters": 1170.7315241368296, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724272, + 13.5451472 + ], + [ + 52.4718176, + 13.5465387 + ], + [ + 52.4708736, + 13.5487514 + ], + [ + 52.4703087, + 13.550003 + ], + [ + 52.4700068, + 13.5506585 + ], + [ + 52.4699921, + 13.5506902 + ], + [ + 52.4686258, + 13.5538239 + ], + [ + 52.4675666, + 13.5562371 + ], + [ + 52.4662542, + 13.559147 + ] + ] + }, + { + "osmId": "10863196", + "name": null, + "lengthMeters": 204.02058461677893, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4842842, + 13.5082477 + ], + [ + 52.4843014, + 13.5080782 + ], + [ + 52.4843224, + 13.5079893 + ], + [ + 52.4843438, + 13.5078876 + ], + [ + 52.4843833, + 13.5077866 + ], + [ + 52.4844296, + 13.5076962 + ], + [ + 52.4844463, + 13.5076771 + ], + [ + 52.4844741, + 13.5076454 + ], + [ + 52.4845227, + 13.5076161 + ], + [ + 52.4845762, + 13.5076008 + ], + [ + 52.4846122, + 13.5075989 + ], + [ + 52.4846559, + 13.5076083 + ], + [ + 52.4847084, + 13.5076384 + ], + [ + 52.4847604, + 13.5076859 + ], + [ + 52.4848041, + 13.50776 + ], + [ + 52.4848388, + 13.5078528 + ], + [ + 52.484859, + 13.5079535 + ], + [ + 52.4848676, + 13.5080558 + ], + [ + 52.484861, + 13.5081388 + ], + [ + 52.484851, + 13.5081987 + ], + [ + 52.4848355, + 13.5082574 + ], + [ + 52.4847924, + 13.5083502 + ], + [ + 52.4847541, + 13.5084044 + ], + [ + 52.4847049, + 13.5084495 + ], + [ + 52.484664, + 13.5084702 + ], + [ + 52.4846332, + 13.5084824 + ], + [ + 52.4846011, + 13.5084854 + ], + [ + 52.4845372, + 13.5084916 + ], + [ + 52.4845024, + 13.5084965 + ], + [ + 52.484469, + 13.5085138 + ], + [ + 52.484428, + 13.5085412 + ], + [ + 52.484416, + 13.5085492 + ], + [ + 52.4843848, + 13.5085871 + ], + [ + 52.4843654, + 13.5086152 + ], + [ + 52.4843518, + 13.508644 + ], + [ + 52.4843327, + 13.5086951 + ], + [ + 52.4843176, + 13.5087635 + ], + [ + 52.4843087, + 13.5088347 + ], + [ + 52.4843043, + 13.50889 + ] + ] + }, + { + "osmId": "10863583", + "name": null, + "lengthMeters": 375.24992740706944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4808257, + 13.5252483 + ], + [ + 52.4809351, + 13.5252558 + ], + [ + 52.4809959, + 13.5252617 + ], + [ + 52.4810456, + 13.525271 + ], + [ + 52.481088, + 13.5252819 + ], + [ + 52.481231, + 13.5253267 + ], + [ + 52.4813483, + 13.5253654 + ], + [ + 52.481551, + 13.5254207 + ], + [ + 52.4816367, + 13.525441 + ], + [ + 52.4819543, + 13.5255027 + ], + [ + 52.4820325, + 13.5255201 + ], + [ + 52.4820764, + 13.5255318 + ], + [ + 52.4821856, + 13.5255673 + ], + [ + 52.4824721, + 13.5256563 + ], + [ + 52.4826101, + 13.5256999 + ], + [ + 52.4827568, + 13.5257462 + ], + [ + 52.4830794, + 13.5258473 + ], + [ + 52.4832256, + 13.5258893 + ], + [ + 52.483369, + 13.5259289 + ], + [ + 52.483727, + 13.5260206 + ], + [ + 52.4841548, + 13.5261353 + ] + ] + }, + { + "osmId": "10893057", + "name": null, + "lengthMeters": 686.3299504791718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1808098, + 11.6050349 + ], + [ + 48.1810762, + 11.6053165 + ], + [ + 48.1811298, + 11.6053698 + ], + [ + 48.1812768, + 11.6055084 + ], + [ + 48.1815989, + 11.6057871 + ], + [ + 48.181668, + 11.6058483 + ], + [ + 48.1820388, + 11.606199 + ], + [ + 48.1825375, + 11.6067203 + ], + [ + 48.1830267, + 11.6072508 + ], + [ + 48.1837124, + 11.6079627 + ], + [ + 48.1838747, + 11.6081313 + ], + [ + 48.1848687, + 11.6091728 + ], + [ + 48.1852493, + 11.6095809 + ], + [ + 48.1853513, + 11.6096902 + ], + [ + 48.1856008, + 11.6099774 + ], + [ + 48.1858595, + 11.6102962 + ], + [ + 48.1858749, + 11.6103152 + ] + ] + }, + { + "osmId": "11013305", + "name": null, + "lengthMeters": 776.4241853732278, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5923063, + 13.4445055 + ], + [ + 52.592425, + 13.4446343 + ], + [ + 52.5937013, + 13.4460182 + ], + [ + 52.595537, + 13.4480055 + ], + [ + 52.5957972, + 13.4482872 + ], + [ + 52.5981391, + 13.4508247 + ] + ] + }, + { + "osmId": "11100905", + "name": null, + "lengthMeters": 469.77422956621285, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5599523, + 13.4602303 + ], + [ + 52.5598984, + 13.4601787 + ], + [ + 52.5598451, + 13.4601475 + ], + [ + 52.5598221, + 13.4601467 + ], + [ + 52.5598039, + 13.4601456 + ], + [ + 52.5597511, + 13.4601679 + ], + [ + 52.5597251, + 13.4601865 + ], + [ + 52.5597165, + 13.4601969 + ], + [ + 52.5596904, + 13.4602257 + ], + [ + 52.5596587, + 13.4602713 + ], + [ + 52.5595827, + 13.46045 + ], + [ + 52.5595732, + 13.4604724 + ], + [ + 52.5595334, + 13.4605672 + ], + [ + 52.5594878, + 13.4606756 + ], + [ + 52.5589814, + 13.4619002 + ], + [ + 52.5589305, + 13.4620233 + ], + [ + 52.5588845, + 13.4621341 + ], + [ + 52.5588777, + 13.4621502 + ], + [ + 52.5584443, + 13.463201 + ], + [ + 52.5582936, + 13.4635588 + ], + [ + 52.558042, + 13.4641641 + ], + [ + 52.5579252, + 13.4644442 + ], + [ + 52.5578077, + 13.4647247 + ], + [ + 52.5576113, + 13.465195 + ], + [ + 52.5575355, + 13.4653762 + ], + [ + 52.5574575, + 13.4655619 + ] + ] + }, + { + "osmId": "11101878", + "name": null, + "lengthMeters": 291.52037845944534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.569222, + 13.4383259 + ], + [ + 52.5692896, + 13.4382603 + ], + [ + 52.5693446, + 13.4382061 + ], + [ + 52.5694381, + 13.4381076 + ], + [ + 52.5696232, + 13.4379238 + ], + [ + 52.5696972, + 13.4378431 + ], + [ + 52.5697576, + 13.4377855 + ], + [ + 52.5697884, + 13.4377668 + ], + [ + 52.5698137, + 13.437753 + ], + [ + 52.5698433, + 13.4377405 + ], + [ + 52.569883, + 13.4377329 + ], + [ + 52.570062, + 13.4377179 + ], + [ + 52.5702229, + 13.4377078 + ], + [ + 52.5702984, + 13.4377027 + ], + [ + 52.5706741, + 13.4376765 + ], + [ + 52.5711871, + 13.4376438 + ], + [ + 52.5717281, + 13.4376077 + ], + [ + 52.5717447, + 13.437607 + ] + ] + }, + { + "osmId": "11124195", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 191.3603202784846, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4989183, + 13.4847162 + ], + [ + 52.4994678, + 13.4833244 + ], + [ + 52.4998317, + 13.4823209 + ] + ] + }, + { + "osmId": "11127369", + "name": null, + "lengthMeters": 597.8544004516135, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4577738, + 13.6028013 + ], + [ + 52.4577567, + 13.6033777 + ], + [ + 52.4577297, + 13.6043073 + ], + [ + 52.45764, + 13.6070643 + ], + [ + 52.4575996, + 13.6084706 + ], + [ + 52.4575883, + 13.6089208 + ], + [ + 52.4575864, + 13.6089973 + ], + [ + 52.4575501, + 13.6105288 + ], + [ + 52.4575486, + 13.610607 + ], + [ + 52.4575254, + 13.6116153 + ] + ] + }, + { + "osmId": "11214834", + "name": "Stettiner Bahn", + "lengthMeters": 452.087747643386, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6301409, + 13.4857131 + ], + [ + 52.6284582, + 13.4839227 + ], + [ + 52.6267292, + 13.4820698 + ] + ] + }, + { + "osmId": "11214880", + "name": null, + "lengthMeters": 452.7701872743579, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6267548, + 13.4820045 + ], + [ + 52.6270134, + 13.4822807 + ], + [ + 52.628476, + 13.4838429 + ], + [ + 52.6292068, + 13.4846254 + ], + [ + 52.6301702, + 13.485657 + ] + ] + }, + { + "osmId": "11215075", + "name": null, + "lengthMeters": 89.97861044443405, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6283707, + 13.4756168 + ], + [ + 52.6280913, + 13.4759935 + ], + [ + 52.6277256, + 13.4764203 + ] + ] + }, + { + "osmId": "11273262", + "name": null, + "lengthMeters": 110.42215419908688, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5036088, + 13.4475796 + ], + [ + 52.5036382, + 13.4476022 + ], + [ + 52.5043927, + 13.4481821 + ], + [ + 52.5044984, + 13.4482468 + ], + [ + 52.5045122, + 13.4482556 + ] + ] + }, + { + "osmId": "11413580", + "name": "Vogelfluglinie", + "lengthMeters": 4816.064456242333, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7642214, + 10.3301281 + ], + [ + 53.7629754, + 10.3278477 + ], + [ + 53.7626198, + 10.327197 + ], + [ + 53.7624086, + 10.3267846 + ], + [ + 53.7622063, + 10.3264195 + ], + [ + 53.7620112, + 10.3260527 + ], + [ + 53.761568, + 10.3252345 + ], + [ + 53.7612594, + 10.3246648 + ], + [ + 53.7609122, + 10.3240237 + ], + [ + 53.7598241, + 10.3220128 + ], + [ + 53.7590155, + 10.3205184 + ], + [ + 53.7537711, + 10.310852 + ], + [ + 53.751565, + 10.3067862 + ], + [ + 53.7506002, + 10.3049938 + ], + [ + 53.7496973, + 10.3033511 + ], + [ + 53.7454087, + 10.2954233 + ], + [ + 53.7437733, + 10.2924339 + ], + [ + 53.7422299, + 10.2895714 + ], + [ + 53.7417653, + 10.2887089 + ], + [ + 53.7410224, + 10.2873309 + ], + [ + 53.7409591, + 10.2872135 + ], + [ + 53.7403537, + 10.2861168 + ], + [ + 53.7401359, + 10.2857222 + ], + [ + 53.7396477, + 10.2847978 + ], + [ + 53.738965, + 10.2835388 + ], + [ + 53.7380563, + 10.2818615 + ], + [ + 53.7374237, + 10.2806977 + ], + [ + 53.7366428, + 10.2792516 + ], + [ + 53.7349551, + 10.2761339 + ] + ] + }, + { + "osmId": "11482920", + "name": null, + "lengthMeters": 280.83001388471234, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293464, + 13.3845536 + ], + [ + 52.5292852, + 13.38463 + ], + [ + 52.529228, + 13.3847013 + ], + [ + 52.5288962, + 13.3851175 + ], + [ + 52.5279134, + 13.3863303 + ], + [ + 52.5279053, + 13.3863401 + ], + [ + 52.5278932, + 13.3863547 + ], + [ + 52.5275902, + 13.3867191 + ], + [ + 52.5274372, + 13.3868893 + ], + [ + 52.5273487, + 13.3869656 + ], + [ + 52.5273078, + 13.3869981 + ] + ] + }, + { + "osmId": "11529844", + "name": null, + "lengthMeters": 78.28322202669348, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532157, + 13.313702 + ], + [ + 52.5320094, + 13.3125704 + ] + ] + }, + { + "osmId": "11530265", + "name": "Berliner Ringbahn", + "lengthMeters": 1011.5997214197159, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5251161, + 13.2827549 + ], + [ + 52.525534, + 13.2828691 + ], + [ + 52.5258517, + 13.2830044 + ], + [ + 52.5261492, + 13.2831788 + ], + [ + 52.5265411, + 13.2834542 + ], + [ + 52.526916, + 13.2838024 + ], + [ + 52.5272332, + 13.2841655 + ], + [ + 52.527417, + 13.2844135 + ], + [ + 52.5275855, + 13.2846712 + ], + [ + 52.5275945, + 13.2846849 + ], + [ + 52.5277756, + 13.2849877 + ], + [ + 52.5279506, + 13.2853172 + ], + [ + 52.5281156, + 13.2856726 + ], + [ + 52.5282684, + 13.2860573 + ], + [ + 52.5283924, + 13.2864172 + ], + [ + 52.5284948, + 13.2867713 + ], + [ + 52.528603, + 13.2871827 + ], + [ + 52.5286964, + 13.2876012 + ], + [ + 52.5287704, + 13.2880347 + ], + [ + 52.5288114, + 13.2883439 + ], + [ + 52.5288286, + 13.2884733 + ], + [ + 52.5289134, + 13.289304 + ], + [ + 52.5289857, + 13.2902152 + ], + [ + 52.5289895, + 13.2902629 + ], + [ + 52.5290727, + 13.2913375 + ], + [ + 52.529077, + 13.2913832 + ], + [ + 52.529138, + 13.2920376 + ], + [ + 52.5292279, + 13.2928158 + ], + [ + 52.5294172, + 13.2942148 + ], + [ + 52.5294422, + 13.2943823 + ] + ] + }, + { + "osmId": "11609698", + "name": "Vogelfluglinie", + "lengthMeters": 7075.213579237193, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6639268, + 10.2227934 + ], + [ + 53.6635237, + 10.2219397 + ], + [ + 53.6634243, + 10.2217023 + ], + [ + 53.6633523, + 10.2215662 + ], + [ + 53.6631543, + 10.2211883 + ], + [ + 53.6628179, + 10.2205252 + ], + [ + 53.662304, + 10.2196213 + ], + [ + 53.6618279, + 10.218853 + ], + [ + 53.6611249, + 10.2178142 + ], + [ + 53.6605253, + 10.2170038 + ], + [ + 53.6598761, + 10.2161987 + ], + [ + 53.6598184, + 10.2161272 + ], + [ + 53.6589609, + 10.2152299 + ], + [ + 53.6582503, + 10.2145394 + ], + [ + 53.6574504, + 10.2138482 + ], + [ + 53.6562118, + 10.2128444 + ], + [ + 53.6550214, + 10.2118797 + ], + [ + 53.6541251, + 10.2111345 + ], + [ + 53.6533185, + 10.2105448 + ], + [ + 53.6530586, + 10.2103868 + ], + [ + 53.6525636, + 10.2100696 + ], + [ + 53.6500218, + 10.2086186 + ], + [ + 53.6497602, + 10.2084693 + ], + [ + 53.6469625, + 10.2068646 + ], + [ + 53.6459657, + 10.2062758 + ], + [ + 53.6453912, + 10.2058944 + ], + [ + 53.6447746, + 10.2054374 + ], + [ + 53.6438511, + 10.2046205 + ], + [ + 53.6437877, + 10.2045599 + ], + [ + 53.6422771, + 10.2032315 + ], + [ + 53.6413794, + 10.2024421 + ], + [ + 53.6396107, + 10.2008434 + ], + [ + 53.6386005, + 10.1999648 + ], + [ + 53.6368535, + 10.1984241 + ], + [ + 53.6361034, + 10.1977626 + ], + [ + 53.6343141, + 10.1961875 + ], + [ + 53.6338405, + 10.1957706 + ], + [ + 53.6332666, + 10.1952648 + ], + [ + 53.6316934, + 10.193858 + ], + [ + 53.6307676, + 10.1930301 + ], + [ + 53.6303057, + 10.192568 + ], + [ + 53.629852, + 10.1920457 + ], + [ + 53.6295137, + 10.1916238 + ], + [ + 53.6291799, + 10.1911823 + ], + [ + 53.6290405, + 10.1909802 + ], + [ + 53.6288753, + 10.190733 + ], + [ + 53.6285644, + 10.1902012 + ], + [ + 53.6282933, + 10.1896973 + ], + [ + 53.6280508, + 10.1892302 + ], + [ + 53.6278033, + 10.1887152 + ], + [ + 53.6275837, + 10.1882161 + ], + [ + 53.6273106, + 10.1875215 + ], + [ + 53.6270272, + 10.1867373 + ], + [ + 53.6266671, + 10.1856879 + ], + [ + 53.6258654, + 10.1833483 + ], + [ + 53.6254832, + 10.182233 + ], + [ + 53.6242464, + 10.1786117 + ], + [ + 53.624057, + 10.1781028 + ], + [ + 53.6239256, + 10.1777498 + ], + [ + 53.6236194, + 10.1770019 + ], + [ + 53.6235339, + 10.1767929 + ], + [ + 53.6232677, + 10.1762116 + ], + [ + 53.623064, + 10.1758072 + ], + [ + 53.6228279, + 10.1753707 + ], + [ + 53.622417, + 10.1746812 + ], + [ + 53.6221444, + 10.1742552 + ], + [ + 53.6218749, + 10.1738752 + ], + [ + 53.621558, + 10.1734587 + ], + [ + 53.6211624, + 10.1729789 + ], + [ + 53.619591, + 10.1712705 + ], + [ + 53.6170317, + 10.1685181 + ], + [ + 53.6164935, + 10.1679327 + ], + [ + 53.6150084, + 10.1663565 + ], + [ + 53.6137552, + 10.1650014 + ], + [ + 53.6135065, + 10.1647324 + ], + [ + 53.6131447, + 10.1643412 + ], + [ + 53.6125553, + 10.1637039 + ] + ] + }, + { + "osmId": "11685868", + "name": "U2", + "lengthMeters": 908.6409256908113, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055949, + 13.3759017 + ], + [ + 52.5058516, + 13.3760515 + ], + [ + 52.5061097, + 13.3761863 + ], + [ + 52.5063288, + 13.3762445 + ], + [ + 52.5065578, + 13.3763108 + ], + [ + 52.5068604, + 13.3764782 + ], + [ + 52.5070437, + 13.3765835 + ], + [ + 52.5077645, + 13.3770073 + ], + [ + 52.5080765, + 13.3771754 + ], + [ + 52.50824, + 13.377261 + ], + [ + 52.5085015, + 13.377442 + ], + [ + 52.508551, + 13.377485 + ], + [ + 52.508635, + 13.3775648 + ], + [ + 52.5087159, + 13.3776495 + ], + [ + 52.5087865, + 13.3777361 + ], + [ + 52.5088441, + 13.3778107 + ], + [ + 52.5089121, + 13.3779091 + ], + [ + 52.5089641, + 13.3779916 + ], + [ + 52.5090031, + 13.3780558 + ], + [ + 52.5090506, + 13.3781449 + ], + [ + 52.5091087, + 13.3782564 + ], + [ + 52.509134, + 13.3783037 + ], + [ + 52.5091673, + 13.3783682 + ], + [ + 52.5092365, + 13.3785031 + ], + [ + 52.5093058, + 13.3786338 + ], + [ + 52.5093449, + 13.3787047 + ], + [ + 52.5094043, + 13.3788022 + ], + [ + 52.509494, + 13.3789339 + ], + [ + 52.5096132, + 13.3790869 + ], + [ + 52.5097167, + 13.3791956 + ], + [ + 52.509954, + 13.3794217 + ], + [ + 52.5101245, + 13.3795841 + ], + [ + 52.5106479, + 13.3800941 + ], + [ + 52.5107865, + 13.3802608 + ], + [ + 52.510877, + 13.3804142 + ], + [ + 52.5109505, + 13.3805894 + ], + [ + 52.510978, + 13.3806746 + ], + [ + 52.5110028, + 13.3807706 + ], + [ + 52.5110372, + 13.3809565 + ], + [ + 52.5110646, + 13.381162 + ], + [ + 52.5111394, + 13.3818252 + ], + [ + 52.5112216, + 13.3823964 + ], + [ + 52.5113258, + 13.3829458 + ], + [ + 52.5114702, + 13.3837054 + ] + ] + }, + { + "osmId": "11765759", + "name": null, + "lengthMeters": 363.96099708557114, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5589674, + 9.8814922 + ], + [ + 53.5589927, + 9.8825075 + ], + [ + 53.5590469, + 9.884058 + ], + [ + 53.5590513, + 9.8841899 + ], + [ + 53.5590963, + 9.8854384 + ], + [ + 53.5591166, + 9.8860271 + ], + [ + 53.5591486, + 9.8865299 + ], + [ + 53.559188, + 9.8869557 + ], + [ + 53.5591909, + 9.8869872 + ] + ] + }, + { + "osmId": "11765862", + "name": null, + "lengthMeters": 673.6778494786881, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5596202, + 9.8974861 + ], + [ + 53.5594994, + 9.8936304 + ], + [ + 53.5594532, + 9.8921558 + ], + [ + 53.5593664, + 9.8893869 + ], + [ + 53.5592979, + 9.8873008 + ] + ] + }, + { + "osmId": "11811051", + "name": null, + "lengthMeters": 2113.8414619011232, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1561562, + 11.4108081 + ], + [ + 48.1561394, + 11.4109533 + ], + [ + 48.1559132, + 11.4132984 + ], + [ + 48.1558681, + 11.4137651 + ], + [ + 48.1558389, + 11.4140857 + ], + [ + 48.1557181, + 11.4154092 + ], + [ + 48.1556991, + 11.4156312 + ], + [ + 48.1556672, + 11.4160035 + ], + [ + 48.1554316, + 11.4188691 + ], + [ + 48.1551651, + 11.4217107 + ], + [ + 48.1546781, + 11.4268679 + ], + [ + 48.1545246, + 11.4284736 + ], + [ + 48.1543948, + 11.4298469 + ], + [ + 48.1541929, + 11.4319683 + ], + [ + 48.1540271, + 11.4337109 + ], + [ + 48.1538985, + 11.4350626 + ], + [ + 48.1538568, + 11.4355002 + ], + [ + 48.1538475, + 11.4355948 + ], + [ + 48.1538394, + 11.4356828 + ], + [ + 48.153664, + 11.4375489 + ], + [ + 48.1535256, + 11.4390217 + ], + [ + 48.1535249, + 11.4390292 + ] + ] + }, + { + "osmId": "11812856", + "name": null, + "lengthMeters": 152.4755629089757, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1540854, + 11.4473579 + ], + [ + 48.1542341, + 11.4470782 + ], + [ + 48.1544996, + 11.4466335 + ], + [ + 48.1548135, + 11.4461684 + ], + [ + 48.155022, + 11.4458595 + ] + ] + }, + { + "osmId": "11939701", + "name": null, + "lengthMeters": 95.49727048730406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6528951, + 10.1865535 + ], + [ + 53.6529116, + 10.1870548 + ], + [ + 53.6529425, + 10.1875645 + ], + [ + 53.6529724, + 10.1879962 + ] + ] + }, + { + "osmId": "12146816", + "name": null, + "lengthMeters": 184.49833930145616, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5069141, + 13.2830772 + ], + [ + 52.5069507, + 13.2830978 + ], + [ + 52.5070481, + 13.2831535 + ], + [ + 52.5072165, + 13.2832594 + ], + [ + 52.5073675, + 13.2833609 + ], + [ + 52.5074772, + 13.283442 + ], + [ + 52.5075582, + 13.2834981 + ], + [ + 52.5076301, + 13.2835505 + ], + [ + 52.5079583, + 13.2837867 + ], + [ + 52.5081233, + 13.2839054 + ], + [ + 52.50817, + 13.283939 + ], + [ + 52.5082764, + 13.2840163 + ], + [ + 52.5083693, + 13.2840839 + ], + [ + 52.5084419, + 13.2841381 + ] + ] + }, + { + "osmId": "12146820", + "name": null, + "lengthMeters": 217.21277434990773, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020618, + 13.2880352 + ], + [ + 52.5019935, + 13.2877504 + ], + [ + 52.5019083, + 13.2874492 + ], + [ + 52.5018143, + 13.2871179 + ], + [ + 52.5016618, + 13.286625 + ], + [ + 52.5016195, + 13.2864896 + ], + [ + 52.5013882, + 13.2857487 + ], + [ + 52.5012755, + 13.2853852 + ], + [ + 52.5012382, + 13.2852676 + ], + [ + 52.5012025, + 13.285155 + ] + ] + }, + { + "osmId": "12149320", + "name": null, + "lengthMeters": 112.96662400244834, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5016858, + 13.2822796 + ], + [ + 52.5013257, + 13.2823378 + ], + [ + 52.5007459, + 13.2824293 + ], + [ + 52.5006746, + 13.2824405 + ] + ] + }, + { + "osmId": "12174737", + "name": "Stettiner Bahn", + "lengthMeters": 493.9489665988315, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6104218, + 13.4642053 + ], + [ + 52.6096584, + 13.4633038 + ], + [ + 52.6093266, + 13.4629152 + ], + [ + 52.6090427, + 13.4625918 + ], + [ + 52.6087625, + 13.462286 + ], + [ + 52.6082003, + 13.4617149 + ], + [ + 52.607398, + 13.4609248 + ], + [ + 52.6070508, + 13.4605627 + ], + [ + 52.6068252, + 13.4603213 + ], + [ + 52.6067087, + 13.4601968 + ] + ] + }, + { + "osmId": "12174855", + "name": null, + "lengthMeters": 116.4394013163606, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6068024, + 13.4600807 + ], + [ + 52.607086, + 13.4603776 + ], + [ + 52.607276, + 13.4605644 + ], + [ + 52.6074904, + 13.4607638 + ], + [ + 52.6077099, + 13.4609377 + ] + ] + }, + { + "osmId": "12181687", + "name": null, + "lengthMeters": 100.17588446900133, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984257, + 13.2823966 + ], + [ + 52.49812, + 13.2822465 + ], + [ + 52.4978992, + 13.2820902 + ], + [ + 52.4975997, + 13.281821 + ] + ] + }, + { + "osmId": "12181688", + "name": null, + "lengthMeters": 170.68051847830694, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4999518, + 13.2825348 + ], + [ + 52.499869, + 13.2825464 + ], + [ + 52.4997234, + 13.2825596 + ], + [ + 52.4996136, + 13.2825743 + ], + [ + 52.4994083, + 13.2825788 + ], + [ + 52.499243, + 13.2825735 + ], + [ + 52.4990708, + 13.2825577 + ], + [ + 52.4988486, + 13.2825095 + ], + [ + 52.4987139, + 13.2824819 + ], + [ + 52.4985604, + 13.2824409 + ], + [ + 52.4984257, + 13.2823966 + ] + ] + }, + { + "osmId": "12181690", + "name": null, + "lengthMeters": 80.62477718589156, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006746, + 13.2824405 + ], + [ + 52.4999518, + 13.2825348 + ] + ] + }, + { + "osmId": "12301425", + "name": null, + "lengthMeters": 86.89660949579282, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983318, + 13.281073 + ], + [ + 52.4986722, + 13.2822285 + ] + ] + }, + { + "osmId": "12301429", + "name": null, + "lengthMeters": 86.80119766838801, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987562, + 13.2821534 + ], + [ + 52.4984937, + 13.2812818 + ], + [ + 52.4984187, + 13.2809975 + ] + ] + }, + { + "osmId": "12301431", + "name": null, + "lengthMeters": 202.35046058668237, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983413, + 13.2712216 + ], + [ + 52.4984101, + 13.2708301 + ], + [ + 52.498509, + 13.2703175 + ], + [ + 52.4985213, + 13.2702648 + ], + [ + 52.4986107, + 13.2698815 + ], + [ + 52.4986833, + 13.269618 + ], + [ + 52.4987376, + 13.2694296 + ], + [ + 52.4987769, + 13.2692931 + ], + [ + 52.4987832, + 13.2692713 + ], + [ + 52.4989249, + 13.2688657 + ], + [ + 52.4990749, + 13.2685052 + ] + ] + }, + { + "osmId": "12301438", + "name": null, + "lengthMeters": 162.4911542478197, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987924, + 13.282646 + ], + [ + 52.4991305, + 13.2837747 + ], + [ + 52.4992184, + 13.284071 + ], + [ + 52.4994351, + 13.2848018 + ] + ] + }, + { + "osmId": "12338109", + "name": null, + "lengthMeters": 144.5876653844692, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4994775, + 13.2845716 + ], + [ + 52.4993127, + 13.2839994 + ], + [ + 52.4992253, + 13.283695 + ], + [ + 52.4989094, + 13.2826504 + ] + ] + }, + { + "osmId": "12338111", + "name": null, + "lengthMeters": 709.4345018744075, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4996412, + 13.2855262 + ], + [ + 52.5000189, + 13.2868546 + ], + [ + 52.5003439, + 13.2880031 + ], + [ + 52.5004998, + 13.2885565 + ], + [ + 52.500513, + 13.2886023 + ], + [ + 52.5009056, + 13.2899838 + ], + [ + 52.5015379, + 13.2922166 + ], + [ + 52.5023351, + 13.2950268 + ] + ] + }, + { + "osmId": "12613417", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 636.4817199799361, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6737698, + 13.2786976 + ], + [ + 52.6741649, + 13.2806954 + ], + [ + 52.6745077, + 13.2824731 + ], + [ + 52.6745797, + 13.2828402 + ], + [ + 52.6749017, + 13.284482 + ], + [ + 52.6749595, + 13.2847767 + ], + [ + 52.6752111, + 13.286132 + ], + [ + 52.6753426, + 13.2869391 + ], + [ + 52.6754501, + 13.2877184 + ] + ] + }, + { + "osmId": "12620746", + "name": null, + "lengthMeters": 105.4049107672535, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4561337, + 13.5654322 + ], + [ + 52.4562778, + 13.5651426 + ], + [ + 52.4563814, + 13.5648909 + ], + [ + 52.4564261, + 13.5647527 + ], + [ + 52.4564604, + 13.5646203 + ], + [ + 52.4564903, + 13.5644778 + ], + [ + 52.4565156, + 13.5643244 + ], + [ + 52.4565283, + 13.5642015 + ], + [ + 52.4565367, + 13.5640588 + ] + ] + }, + { + "osmId": "12684823", + "name": "Dresdner Bahn", + "lengthMeters": 75.82956941461353, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569489, + 13.3581464 + ], + [ + 52.4567401, + 13.358078 + ], + [ + 52.4565302, + 13.358015 + ], + [ + 52.4562779, + 13.3579473 + ] + ] + }, + { + "osmId": "12684827", + "name": "Anhalter Bahn", + "lengthMeters": 966.6050697511226, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569311, + 13.3582635 + ], + [ + 52.4561057, + 13.3579655 + ], + [ + 52.4552209, + 13.3576491 + ], + [ + 52.4544499, + 13.3573776 + ], + [ + 52.4536847, + 13.3571034 + ], + [ + 52.4530867, + 13.3568906 + ], + [ + 52.4527866, + 13.3567814 + ], + [ + 52.4524864, + 13.3566705 + ], + [ + 52.4519875, + 13.3564658 + ], + [ + 52.4517624, + 13.3563666 + ], + [ + 52.4515081, + 13.3562462 + ], + [ + 52.4512584, + 13.3561194 + ], + [ + 52.4509862, + 13.3559688 + ], + [ + 52.4508155, + 13.3558674 + ], + [ + 52.4506214, + 13.3557494 + ], + [ + 52.4504289, + 13.3556224 + ], + [ + 52.4501969, + 13.3554607 + ], + [ + 52.4499647, + 13.3552973 + ], + [ + 52.4496729, + 13.3550812 + ], + [ + 52.4493238, + 13.3548105 + ], + [ + 52.4486243, + 13.3542602 + ] + ] + }, + { + "osmId": "12684833", + "name": "Dresdner Bahn", + "lengthMeters": 977.2365302477691, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4483583, + 13.3608714 + ], + [ + 52.4495059, + 13.3602531 + ], + [ + 52.4497977, + 13.3600954 + ], + [ + 52.4507299, + 13.3595964 + ], + [ + 52.4522127, + 13.3588022 + ], + [ + 52.4524219, + 13.3586993 + ], + [ + 52.4525621, + 13.3586359 + ], + [ + 52.4527678, + 13.3585452 + ], + [ + 52.4529568, + 13.3584662 + ], + [ + 52.4531792, + 13.3583851 + ], + [ + 52.4533898, + 13.3583153 + ], + [ + 52.4535598, + 13.3582705 + ], + [ + 52.4537643, + 13.358222 + ], + [ + 52.4539898, + 13.3581759 + ], + [ + 52.4542586, + 13.3581484 + ], + [ + 52.4545178, + 13.3581319 + ], + [ + 52.4547402, + 13.3581315 + ], + [ + 52.4550026, + 13.3581398 + ], + [ + 52.4552135, + 13.3581609 + ], + [ + 52.4555128, + 13.3582136 + ], + [ + 52.4558249, + 13.3582832 + ], + [ + 52.4561084, + 13.3583631 + ], + [ + 52.4565034, + 13.3584882 + ], + [ + 52.4568766, + 13.3586195 + ] + ] + }, + { + "osmId": "12702393", + "name": null, + "lengthMeters": 295.10327886171694, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4952065, + 13.372484 + ], + [ + 52.4949635, + 13.3724003 + ], + [ + 52.4946124, + 13.3723123 + ], + [ + 52.4940649, + 13.3722447 + ], + [ + 52.493541, + 13.3721973 + ], + [ + 52.4933486, + 13.3721802 + ], + [ + 52.4925655, + 13.3721166 + ] + ] + }, + { + "osmId": "12702400", + "name": null, + "lengthMeters": 803.66619080539, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100464, + 13.3759738 + ], + [ + 52.5101132, + 13.3759776 + ], + [ + 52.5105008, + 13.3759975 + ], + [ + 52.5109577, + 13.3760179 + ], + [ + 52.5113678, + 13.3760266 + ], + [ + 52.5117732, + 13.3760051 + ], + [ + 52.5121818, + 13.3759648 + ], + [ + 52.5125968, + 13.3758881 + ], + [ + 52.5130117, + 13.3757869 + ], + [ + 52.5133461, + 13.3756932 + ], + [ + 52.5139728, + 13.3754807 + ], + [ + 52.5158641, + 13.3745161 + ], + [ + 52.5171021, + 13.3738958 + ] + ] + }, + { + "osmId": "12776907", + "name": null, + "lengthMeters": 185.33653783637078, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5664399, + 13.3139759 + ], + [ + 52.5665564, + 13.3136267 + ], + [ + 52.5666359, + 13.3133945 + ], + [ + 52.5667247, + 13.3131338 + ], + [ + 52.5667891, + 13.3129242 + ], + [ + 52.5668428, + 13.3127341 + ], + [ + 52.56694, + 13.3123458 + ], + [ + 52.56699, + 13.3121219 + ], + [ + 52.5670329, + 13.3119093 + ], + [ + 52.5671158, + 13.3114789 + ] + ] + }, + { + "osmId": "12777410", + "name": null, + "lengthMeters": 313.69028639662093, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5695098, + 13.3052083 + ], + [ + 52.5699166, + 13.3045815 + ], + [ + 52.5702721, + 13.3040689 + ], + [ + 52.5706709, + 13.3035666 + ], + [ + 52.571068, + 13.3029988 + ], + [ + 52.571406, + 13.3024487 + ], + [ + 52.5716069, + 13.3021108 + ] + ] + }, + { + "osmId": "13237262", + "name": null, + "lengthMeters": 1768.6242703474793, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.453297, + 13.2174407 + ], + [ + 52.4531651, + 13.217274 + ], + [ + 52.4529647, + 13.2170207 + ], + [ + 52.452098, + 13.2159253 + ], + [ + 52.4504954, + 13.2138999 + ], + [ + 52.448935, + 13.2119278 + ], + [ + 52.4479048, + 13.210626 + ], + [ + 52.4462986, + 13.2085962 + ], + [ + 52.4447344, + 13.2066195 + ], + [ + 52.4437018, + 13.2053147 + ], + [ + 52.4420936, + 13.2032826 + ], + [ + 52.4407017, + 13.2015238 + ], + [ + 52.4406959, + 13.2015165 + ] + ] + }, + { + "osmId": "13237285", + "name": null, + "lengthMeters": 1768.493472844951, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4533505, + 13.2173256 + ], + [ + 52.450591, + 13.2138379 + ], + [ + 52.4417429, + 13.2026562 + ], + [ + 52.4407505, + 13.2014022 + ] + ] + }, + { + "osmId": "13252388", + "name": null, + "lengthMeters": 207.2236486373124, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4691904, + 13.4419385 + ], + [ + 52.4692112, + 13.442076 + ], + [ + 52.4692386, + 13.4422551 + ], + [ + 52.4692572, + 13.4423771 + ], + [ + 52.469286, + 13.4425717 + ], + [ + 52.469297, + 13.4426466 + ], + [ + 52.4694489, + 13.4436541 + ], + [ + 52.4694946, + 13.4439576 + ], + [ + 52.469498, + 13.4439799 + ], + [ + 52.4695483, + 13.4443136 + ], + [ + 52.4695707, + 13.4444619 + ], + [ + 52.4695788, + 13.4445153 + ], + [ + 52.4696039, + 13.4446767 + ], + [ + 52.4696388, + 13.4449078 + ] + ] + }, + { + "osmId": "13252392", + "name": null, + "lengthMeters": 154.382674143738, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694429, + 13.4441613 + ], + [ + 52.4696899, + 13.4457936 + ], + [ + 52.4697776, + 13.4463732 + ] + ] + }, + { + "osmId": "13252396", + "name": null, + "lengthMeters": 191.8225690768966, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4693846, + 13.4656731 + ], + [ + 52.4692842, + 13.4649325 + ], + [ + 52.4692506, + 13.4646757 + ], + [ + 52.4691995, + 13.4642935 + ], + [ + 52.4691639, + 13.4639696 + ], + [ + 52.4691377, + 13.4636596 + ], + [ + 52.4691212, + 13.4633583 + ], + [ + 52.4691135, + 13.4631414 + ], + [ + 52.4691119, + 13.4629861 + ], + [ + 52.4691135, + 13.4628842 + ] + ] + }, + { + "osmId": "13252398", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 212.9036405038149, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4692227, + 13.4658777 + ], + [ + 52.4691779, + 13.4655475 + ], + [ + 52.4691232, + 13.4651197 + ], + [ + 52.4690826, + 13.4647646 + ], + [ + 52.4690562, + 13.4644992 + ], + [ + 52.4690365, + 13.4642603 + ], + [ + 52.4690088, + 13.4637957 + ], + [ + 52.4690016, + 13.4634571 + ], + [ + 52.4689987, + 13.4631458 + ], + [ + 52.4690037, + 13.4628464 + ], + [ + 52.469005, + 13.4627666 + ] + ] + }, + { + "osmId": "13252408", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 671.679048646016, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603924, + 13.5008878 + ], + [ + 52.4604609, + 13.5007822 + ], + [ + 52.4620398, + 13.4983447 + ], + [ + 52.4623293, + 13.4979005 + ], + [ + 52.4626208, + 13.4974433 + ], + [ + 52.4628299, + 13.4971066 + ], + [ + 52.4630364, + 13.4967621 + ], + [ + 52.4631882, + 13.4965018 + ], + [ + 52.4633437, + 13.4962288 + ], + [ + 52.4636429, + 13.4956855 + ], + [ + 52.4644576, + 13.4941302 + ], + [ + 52.4646262, + 13.4938295 + ] + ] + }, + { + "osmId": "13252425", + "name": null, + "lengthMeters": 194.8138458300401, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4905755, + 13.459909 + ], + [ + 52.4909467, + 13.4600061 + ], + [ + 52.4911765, + 13.460081 + ], + [ + 52.4911887, + 13.4600861 + ], + [ + 52.4913729, + 13.4601641 + ], + [ + 52.4916848, + 13.4603317 + ], + [ + 52.4917636, + 13.4603741 + ], + [ + 52.4918731, + 13.4604397 + ], + [ + 52.4922566, + 13.4606842 + ] + ] + }, + { + "osmId": "13288170", + "name": null, + "lengthMeters": 369.4806795723563, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0589774, + 11.6120869 + ], + [ + 48.0590564, + 11.6120908 + ], + [ + 48.060084, + 11.6121419 + ], + [ + 48.0609649, + 11.6121961 + ], + [ + 48.0614824, + 11.6122203 + ], + [ + 48.0622982, + 11.6122591 + ] + ] + }, + { + "osmId": "13762438", + "name": null, + "lengthMeters": 91.66399138568765, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5000926, + 13.3553233 + ], + [ + 52.4998746, + 13.3546795 + ], + [ + 52.4998313, + 13.3545361 + ], + [ + 52.4997937, + 13.3543855 + ], + [ + 52.4997643, + 13.354235 + ], + [ + 52.4997447, + 13.3541023 + ] + ] + }, + { + "osmId": "13780554", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 819.937061790363, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3407895, + 13.3304629 + ], + [ + 52.3408859, + 13.3315514 + ], + [ + 52.3411251, + 13.3342532 + ], + [ + 52.3414182, + 13.3375275 + ], + [ + 52.3415769, + 13.3392959 + ], + [ + 52.3416211, + 13.3397933 + ], + [ + 52.3416466, + 13.3400807 + ], + [ + 52.3418551, + 13.3424056 + ] + ] + }, + { + "osmId": "13845948", + "name": "U7", + "lengthMeters": 575.4742954051851, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4574327, + 13.4485332 + ], + [ + 52.4576963, + 13.4484582 + ], + [ + 52.4579376, + 13.4483544 + ], + [ + 52.4581733, + 13.4481968 + ], + [ + 52.4592459, + 13.4474276 + ], + [ + 52.4621832, + 13.4452094 + ] + ] + }, + { + "osmId": "13860379", + "name": null, + "lengthMeters": 826.7744013402244, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495033, + 13.3118686 + ], + [ + 52.4472725, + 13.30553 + ], + [ + 52.4467323, + 13.3039953 + ], + [ + 52.4457886, + 13.3013008 + ] + ] + }, + { + "osmId": "13860380", + "name": null, + "lengthMeters": 253.07397159914507, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495344, + 13.3117016 + ], + [ + 52.4492539, + 13.3109072 + ], + [ + 52.4491019, + 13.310455 + ], + [ + 52.448971, + 13.3100468 + ], + [ + 52.4485808, + 13.3087429 + ], + [ + 52.4484697, + 13.3084027 + ] + ] + }, + { + "osmId": "13860393", + "name": null, + "lengthMeters": 318.19588402528257, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4457886, + 13.3013008 + ], + [ + 52.4454312, + 13.3002678 + ], + [ + 52.4444192, + 13.2971787 + ] + ] + }, + { + "osmId": "13860404", + "name": null, + "lengthMeters": 476.6149687079783, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4879642, + 13.3627319 + ], + [ + 52.4889207, + 13.3638391 + ], + [ + 52.4898776, + 13.3650098 + ], + [ + 52.4907853, + 13.3661316 + ], + [ + 52.4914425, + 13.3668422 + ] + ] + }, + { + "osmId": "13860451", + "name": null, + "lengthMeters": 189.8470997430113, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4915056, + 13.3672452 + ], + [ + 52.491513, + 13.3672545 + ], + [ + 52.4915142, + 13.3672559 + ], + [ + 52.4916778, + 13.3674429 + ], + [ + 52.491786, + 13.3675572 + ], + [ + 52.4920057, + 13.3677631 + ], + [ + 52.4921908, + 13.3679202 + ], + [ + 52.4923348, + 13.368029 + ], + [ + 52.4927721, + 13.3683387 + ], + [ + 52.4928406, + 13.3683843 + ], + [ + 52.4930228, + 13.3685142 + ] + ] + }, + { + "osmId": "13881078", + "name": null, + "lengthMeters": 276.04542599206724, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6437099, + 10.1592816 + ], + [ + 53.6431902, + 10.1592724 + ], + [ + 53.6427417, + 10.1592051 + ], + [ + 53.6426193, + 10.1591808 + ], + [ + 53.6422864, + 10.1591148 + ], + [ + 53.6420184, + 10.1590456 + ], + [ + 53.6417807, + 10.1589683 + ], + [ + 53.6415262, + 10.1588566 + ], + [ + 53.6412619, + 10.1587116 + ] + ] + }, + { + "osmId": "13881083", + "name": null, + "lengthMeters": 151.50062704349423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6502062, + 10.1630604 + ], + [ + 53.6506249, + 10.163279 + ], + [ + 53.6507826, + 10.1633646 + ], + [ + 53.6512355, + 10.1635974 + ], + [ + 53.6514945, + 10.1637141 + ], + [ + 53.651511, + 10.163721 + ] + ] + }, + { + "osmId": "13883209", + "name": null, + "lengthMeters": 255.65522334114837, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.646104, + 10.1594206 + ], + [ + 53.6458911, + 10.1593454 + ], + [ + 53.6455027, + 10.1592616 + ], + [ + 53.6451241, + 10.1592445 + ], + [ + 53.644485, + 10.1592538 + ], + [ + 53.643813, + 10.159283 + ] + ] + }, + { + "osmId": "13887157", + "name": null, + "lengthMeters": 1751.769398040966, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6873655, + 10.2640749 + ], + [ + 53.6892195, + 10.2636364 + ], + [ + 53.6895187, + 10.2635659 + ], + [ + 53.6905922, + 10.2633118 + ], + [ + 53.6906851, + 10.2632899 + ], + [ + 53.6910061, + 10.2631435 + ], + [ + 53.6923723, + 10.2628352 + ], + [ + 53.6928796, + 10.2626717 + ], + [ + 53.693165, + 10.2623677 + ], + [ + 53.6933229, + 10.2622008 + ], + [ + 53.6936698, + 10.2616871 + ], + [ + 53.6938689, + 10.2610699 + ], + [ + 53.6939087, + 10.2601342 + ], + [ + 53.6938917, + 10.2595926 + ], + [ + 53.693886, + 10.2594116 + ], + [ + 53.6938336, + 10.2591444 + ], + [ + 53.6936101, + 10.2580039 + ], + [ + 53.6932037, + 10.2556025 + ], + [ + 53.6929604, + 10.2548422 + ], + [ + 53.6926099, + 10.2541366 + ], + [ + 53.6925607, + 10.2540376 + ], + [ + 53.6923222, + 10.2537152 + ], + [ + 53.6920606, + 10.2534832 + ], + [ + 53.6918645, + 10.2533126 + ], + [ + 53.6913872, + 10.2531255 + ], + [ + 53.6904145, + 10.2526033 + ], + [ + 53.6884988, + 10.2518495 + ] + ] + }, + { + "osmId": "13887445", + "name": null, + "lengthMeters": 221.78659142839763, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6910061, + 10.2631435 + ], + [ + 53.6911518, + 10.2631609 + ], + [ + 53.6929865, + 10.26278 + ] + ] + }, + { + "osmId": "13930082", + "name": null, + "lengthMeters": 1555.6597184475677, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2305095, + 11.4522503 + ], + [ + 48.2315379, + 11.4518307 + ], + [ + 48.232197, + 11.4515676 + ], + [ + 48.235067, + 11.4504421 + ], + [ + 48.2351626, + 11.4504063 + ], + [ + 48.2369586, + 11.4497022 + ], + [ + 48.2387439, + 11.4490049 + ], + [ + 48.2387593, + 11.4489989 + ], + [ + 48.23877, + 11.4489947 + ], + [ + 48.2403936, + 11.4483585 + ], + [ + 48.2421126, + 11.4476849 + ], + [ + 48.2425057, + 11.4475348 + ], + [ + 48.2432824, + 11.4472518 + ], + [ + 48.2440551, + 11.4470011 + ] + ] + }, + { + "osmId": "13930084", + "name": null, + "lengthMeters": 370.71630231350946, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2476746, + 11.4460282 + ], + [ + 48.2490162, + 11.4457532 + ], + [ + 48.2495954, + 11.4456376 + ], + [ + 48.2501015, + 11.4455302 + ], + [ + 48.2503263, + 11.4454806 + ], + [ + 48.2509776, + 11.445348 + ] + ] + }, + { + "osmId": "14350329", + "name": null, + "lengthMeters": 315.994352317494, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5715441, + 13.3020317 + ], + [ + 52.5713301, + 13.3023235 + ], + [ + 52.5709818, + 13.3028684 + ], + [ + 52.5706, + 13.303443 + ], + [ + 52.57048, + 13.3036441 + ], + [ + 52.5702431, + 13.3040127 + ], + [ + 52.5698986, + 13.3045384 + ], + [ + 52.5697366, + 13.3047842 + ], + [ + 52.5694612, + 13.3052108 + ] + ] + }, + { + "osmId": "14350331", + "name": null, + "lengthMeters": 103.61485127725503, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5688282, + 13.3062537 + ], + [ + 52.5695098, + 13.3052083 + ] + ] + }, + { + "osmId": "14350335", + "name": null, + "lengthMeters": 146.12260912427197, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5673492, + 13.3101747 + ], + [ + 52.5674774, + 13.309591 + ], + [ + 52.5675961, + 13.3090929 + ], + [ + 52.5677307, + 13.30863 + ], + [ + 52.5678761, + 13.3081987 + ] + ] + }, + { + "osmId": "14350338", + "name": null, + "lengthMeters": 87.00489671241974, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5682966, + 13.3071983 + ], + [ + 52.5688282, + 13.3062537 + ] + ] + }, + { + "osmId": "14350339", + "name": null, + "lengthMeters": 452.7003467368787, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5766659, + 13.2952372 + ], + [ + 52.5769526, + 13.2949683 + ], + [ + 52.5803026, + 13.2922273 + ] + ] + }, + { + "osmId": "14350341", + "name": null, + "lengthMeters": 345.36114603997277, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5739163, + 13.2984939 + ], + [ + 52.5742603, + 13.2979721 + ], + [ + 52.5747021, + 13.2973021 + ], + [ + 52.5750111, + 13.2969104 + ], + [ + 52.5752419, + 13.2966601 + ], + [ + 52.575814, + 13.2960895 + ], + [ + 52.5761411, + 13.2957613 + ], + [ + 52.5764112, + 13.2954831 + ] + ] + }, + { + "osmId": "14350343", + "name": null, + "lengthMeters": 289.42350204940516, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5717465, + 13.3018601 + ], + [ + 52.5720273, + 13.3013704 + ], + [ + 52.5736362, + 13.2989168 + ] + ] + }, + { + "osmId": "14350371", + "name": null, + "lengthMeters": 183.9349886174346, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.567039, + 13.3114189 + ], + [ + 52.5669445, + 13.311852 + ], + [ + 52.5668646, + 13.3122009 + ], + [ + 52.5667737, + 13.3125744 + ], + [ + 52.5666723, + 13.3129848 + ], + [ + 52.5665811, + 13.3133486 + ], + [ + 52.5664131, + 13.3139364 + ] + ] + }, + { + "osmId": "14369557", + "name": "Gedenkst\u00e4tte Gleis 17", + "lengthMeters": 259.52049267385956, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4880883, + 13.262568 + ], + [ + 52.4891912, + 13.2646962 + ], + [ + 52.4892293, + 13.2647694 + ], + [ + 52.4896019, + 13.2654856 + ] + ] + }, + { + "osmId": "14851662", + "name": null, + "lengthMeters": 268.4686905877355, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4507941, + 13.3152145 + ], + [ + 52.4505096, + 13.3145512 + ], + [ + 52.450151, + 13.3136442 + ], + [ + 52.4495033, + 13.3118686 + ] + ] + }, + { + "osmId": "14851664", + "name": "Wannseebahn", + "lengthMeters": 281.8996451949737, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4508845, + 13.3152197 + ], + [ + 52.450725, + 13.3148552 + ], + [ + 52.4505687, + 13.3144865 + ], + [ + 52.4503564, + 13.3139595 + ], + [ + 52.4502068, + 13.3135688 + ], + [ + 52.4496623, + 13.3120604 + ], + [ + 52.4495344, + 13.3117016 + ] + ] + }, + { + "osmId": "15023743", + "name": null, + "lengthMeters": 656.8264565536138, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.521658, + 13.4993199 + ], + [ + 52.521682, + 13.4982675 + ], + [ + 52.5216847, + 13.4981493 + ], + [ + 52.5217147, + 13.4967328 + ], + [ + 52.5217152, + 13.496711 + ], + [ + 52.5217233, + 13.4963291 + ], + [ + 52.5217607, + 13.49479 + ], + [ + 52.521793, + 13.4930873 + ], + [ + 52.5218018, + 13.4926268 + ], + [ + 52.5218215, + 13.4919732 + ], + [ + 52.5218567, + 13.4904638 + ], + [ + 52.5218493, + 13.490239 + ], + [ + 52.5218165, + 13.4897424 + ], + [ + 52.5218132, + 13.4896213 + ] + ] + }, + { + "osmId": "15245080", + "name": null, + "lengthMeters": 89.2115456344643, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290355, + 13.2866996 + ], + [ + 52.5289656, + 13.2864346 + ], + [ + 52.5289157, + 13.2862543 + ], + [ + 52.5288672, + 13.2860907 + ], + [ + 52.5288079, + 13.285901 + ], + [ + 52.5287574, + 13.2857401 + ], + [ + 52.5287158, + 13.2856234 + ], + [ + 52.5286781, + 13.2855203 + ] + ] + }, + { + "osmId": "15245081", + "name": null, + "lengthMeters": 1137.4212048586774, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286781, + 13.2855203 + ], + [ + 52.5286472, + 13.2854319 + ], + [ + 52.5286144, + 13.2853435 + ], + [ + 52.5285741, + 13.2852447 + ], + [ + 52.5285039, + 13.2850734 + ], + [ + 52.5284455, + 13.284943 + ], + [ + 52.528388, + 13.2848214 + ], + [ + 52.5283202, + 13.2846841 + ], + [ + 52.5282523, + 13.2845547 + ], + [ + 52.5281933, + 13.2844485 + ], + [ + 52.528124, + 13.28433 + ], + [ + 52.5280431, + 13.2841988 + ], + [ + 52.5279988, + 13.2841306 + ], + [ + 52.5279378, + 13.2840422 + ], + [ + 52.5278661, + 13.2839438 + ], + [ + 52.5278099, + 13.2838678 + ], + [ + 52.5277452, + 13.2837842 + ], + [ + 52.5276644, + 13.283683 + ], + [ + 52.5275713, + 13.2835795 + ], + [ + 52.5274723, + 13.2834745 + ], + [ + 52.5273661, + 13.283371 + ], + [ + 52.5272201, + 13.2832412 + ], + [ + 52.5271304, + 13.2831669 + ], + [ + 52.5270244, + 13.2830875 + ], + [ + 52.526954, + 13.2830375 + ], + [ + 52.526868, + 13.2829826 + ], + [ + 52.5267655, + 13.2829221 + ], + [ + 52.5266594, + 13.282864 + ], + [ + 52.5265985, + 13.2828337 + ], + [ + 52.5265054, + 13.2827917 + ], + [ + 52.5263424, + 13.2827258 + ], + [ + 52.5262022, + 13.2826821 + ], + [ + 52.5260707, + 13.2826495 + ], + [ + 52.5259457, + 13.2826247 + ], + [ + 52.5258323, + 13.2826107 + ], + [ + 52.5256946, + 13.2825982 + ], + [ + 52.5255716, + 13.2825959 + ], + [ + 52.5254406, + 13.2825995 + ], + [ + 52.5253252, + 13.2826111 + ], + [ + 52.5251875, + 13.2826259 + ], + [ + 52.5250571, + 13.2826455 + ], + [ + 52.5248013, + 13.2826941 + ], + [ + 52.5243975, + 13.2827868 + ], + [ + 52.5239891, + 13.2828841 + ], + [ + 52.5237722, + 13.2829358 + ], + [ + 52.523549, + 13.2829852 + ], + [ + 52.5231512, + 13.2830815 + ], + [ + 52.5228234, + 13.2831557 + ], + [ + 52.5223309, + 13.2832729 + ], + [ + 52.5220794, + 13.2833365 + ], + [ + 52.5219748, + 13.2833561 + ], + [ + 52.5205326, + 13.2836973 + ], + [ + 52.5200562, + 13.2838094 + ], + [ + 52.5196985, + 13.2838988 + ], + [ + 52.519609, + 13.2839202 + ], + [ + 52.5194356, + 13.2839577 + ], + [ + 52.5191536, + 13.2840236 + ] + ] + }, + { + "osmId": "15245116", + "name": null, + "lengthMeters": 563.3886634941528, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114229, + 13.2859868 + ], + [ + 52.5116693, + 13.2860658 + ], + [ + 52.5119168, + 13.2861295 + ], + [ + 52.5122513, + 13.2862002 + ], + [ + 52.5125851, + 13.2862437 + ], + [ + 52.5128479, + 13.2862521 + ], + [ + 52.5130745, + 13.2862548 + ], + [ + 52.5134529, + 13.2862144 + ], + [ + 52.5136202, + 13.2861872 + ], + [ + 52.5137878, + 13.2861524 + ], + [ + 52.5140208, + 13.2860913 + ], + [ + 52.5142566, + 13.2860143 + ], + [ + 52.5144738, + 13.2859313 + ], + [ + 52.5146657, + 13.2858479 + ], + [ + 52.514842, + 13.285769 + ], + [ + 52.5155204, + 13.2854615 + ], + [ + 52.5156157, + 13.28542 + ], + [ + 52.5163356, + 13.2851507 + ], + [ + 52.5164002, + 13.2851278 + ] + ] + }, + { + "osmId": "15245117", + "name": null, + "lengthMeters": 89.26762488961695, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286481, + 13.2855488 + ], + [ + 52.5287013, + 13.2856902 + ], + [ + 52.5287667, + 13.2858806 + ], + [ + 52.5288239, + 13.2860717 + ], + [ + 52.528874, + 13.2862471 + ], + [ + 52.5289343, + 13.286452 + ], + [ + 52.5290065, + 13.2867279 + ] + ] + }, + { + "osmId": "15245118", + "name": null, + "lengthMeters": 414.3419639606779, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290065, + 13.2867279 + ], + [ + 52.5290445, + 13.2868898 + ], + [ + 52.5290843, + 13.287061 + ], + [ + 52.5291197, + 13.2872432 + ], + [ + 52.5291521, + 13.2874418 + ], + [ + 52.5291763, + 13.2876046 + ], + [ + 52.529198, + 13.2877906 + ], + [ + 52.5292174, + 13.2879669 + ], + [ + 52.5292343, + 13.2881767 + ], + [ + 52.5292512, + 13.2884494 + ], + [ + 52.5292677, + 13.2887167 + ], + [ + 52.5292791, + 13.2890038 + ], + [ + 52.5292957, + 13.2895058 + ], + [ + 52.5293097, + 13.2900357 + ], + [ + 52.5293154, + 13.2902274 + ], + [ + 52.5293301, + 13.2906012 + ], + [ + 52.5293415, + 13.2908854 + ], + [ + 52.529355, + 13.2911762 + ], + [ + 52.5294013, + 13.2919741 + ], + [ + 52.5294213, + 13.2922452 + ], + [ + 52.5294631, + 13.2927833 + ] + ] + }, + { + "osmId": "15245197", + "name": null, + "lengthMeters": 144.68575215866625, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5298536, + 13.2964312 + ], + [ + 52.5297594, + 13.2957676 + ], + [ + 52.5295661, + 13.2943452 + ] + ] + }, + { + "osmId": "15245198", + "name": null, + "lengthMeters": 1203.9822416886402, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5295661, + 13.2943452 + ], + [ + 52.5295518, + 13.2942379 + ], + [ + 52.5293555, + 13.2927578 + ], + [ + 52.5292664, + 13.2919263 + ], + [ + 52.5292015, + 13.2912957 + ], + [ + 52.5291065, + 13.2902119 + ], + [ + 52.529092, + 13.2900007 + ], + [ + 52.5289984, + 13.2885431 + ], + [ + 52.5287797, + 13.285163 + ], + [ + 52.5286992, + 13.2839187 + ], + [ + 52.5286115, + 13.2825123 + ], + [ + 52.5285022, + 13.2807968 + ], + [ + 52.5284448, + 13.2798309 + ], + [ + 52.5283652, + 13.2784924 + ], + [ + 52.5283169, + 13.277681 + ], + [ + 52.5282856, + 13.2771206 + ], + [ + 52.5282817, + 13.2770538 + ], + [ + 52.5282601, + 13.2766889 + ] + ] + }, + { + "osmId": "15513071", + "name": "Berliner Ringbahn", + "lengthMeters": 681.8645718200709, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348532, + 13.3351348 + ], + [ + 52.5347766, + 13.3345037 + ], + [ + 52.5347371, + 13.3341895 + ], + [ + 52.5346329, + 13.3333611 + ], + [ + 52.5341449, + 13.3294807 + ], + [ + 52.5340641, + 13.3288385 + ], + [ + 52.5340499, + 13.3287355 + ], + [ + 52.5337963, + 13.3268904 + ], + [ + 52.5335834, + 13.3252726 + ] + ] + }, + { + "osmId": "15563307", + "name": null, + "lengthMeters": 185.6159519923504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5225316, + 13.245564 + ], + [ + 52.5227569, + 13.2453939 + ], + [ + 52.5229874, + 13.2452516 + ], + [ + 52.5232294, + 13.2451314 + ], + [ + 52.5234729, + 13.2450465 + ], + [ + 52.5239052, + 13.2449043 + ], + [ + 52.5240249, + 13.2448431 + ], + [ + 52.5241257, + 13.2447833 + ] + ] + }, + { + "osmId": "15564876", + "name": null, + "lengthMeters": 193.3124752376515, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140103, + 13.2542795 + ], + [ + 52.5133198, + 13.2545125 + ], + [ + 52.513069, + 13.2545997 + ], + [ + 52.5123086, + 13.2548641 + ] + ] + }, + { + "osmId": "15564877", + "name": null, + "lengthMeters": 304.0077290475725, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5187567, + 13.2526342 + ], + [ + 52.5183691, + 13.2527892 + ], + [ + 52.5172595, + 13.2531735 + ], + [ + 52.5167458, + 13.2533464 + ], + [ + 52.5162803, + 13.253503 + ], + [ + 52.5160828, + 13.2535695 + ] + ] + }, + { + "osmId": "15722693", + "name": null, + "lengthMeters": 1362.886266588733, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1643407, + 11.4780481 + ], + [ + 48.1651786, + 11.4777128 + ], + [ + 48.1657697, + 11.4774615 + ], + [ + 48.167008, + 11.4769384 + ], + [ + 48.1680499, + 11.4765151 + ], + [ + 48.1688527, + 11.4761916 + ], + [ + 48.1693449, + 11.4760016 + ], + [ + 48.1704512, + 11.4755746 + ], + [ + 48.1732496, + 11.4744765 + ], + [ + 48.1732653, + 11.4744704 + ], + [ + 48.1741372, + 11.4741305 + ], + [ + 48.174792, + 11.4738727 + ], + [ + 48.1754452, + 11.4736274 + ], + [ + 48.1758175, + 11.4734814 + ], + [ + 48.1761895, + 11.4733493 + ] + ] + }, + { + "osmId": "15724285", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 324.7576655306612, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1637917, + 11.4844776 + ], + [ + 48.1635983, + 11.4842152 + ], + [ + 48.1633834, + 11.4839146 + ], + [ + 48.1631581, + 11.4836461 + ], + [ + 48.1629267, + 11.4833791 + ], + [ + 48.1627164, + 11.4831489 + ], + [ + 48.1625253, + 11.4829605 + ], + [ + 48.1623263, + 11.4827713 + ], + [ + 48.1621247, + 11.4825937 + ], + [ + 48.1617103, + 11.4822607 + ], + [ + 48.1615029, + 11.4821151 + ], + [ + 48.1613856, + 11.4820372 + ] + ] + }, + { + "osmId": "15791884", + "name": null, + "lengthMeters": 174.25467699286884, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6093587, + 13.4623364 + ], + [ + 52.6094376, + 13.4625542 + ], + [ + 52.6095222, + 13.4627592 + ], + [ + 52.6096225, + 13.462978 + ], + [ + 52.6097207, + 13.4631674 + ], + [ + 52.6098066, + 13.4633241 + ], + [ + 52.6099051, + 13.4634933 + ], + [ + 52.610094, + 13.46378 + ], + [ + 52.6102479, + 13.4639919 + ], + [ + 52.6104218, + 13.4642053 + ] + ] + }, + { + "osmId": "15791936", + "name": null, + "lengthMeters": 112.26665092239055, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6058361, + 13.4590963 + ], + [ + 52.6062526, + 13.45952 + ], + [ + 52.6065236, + 13.4597982 + ], + [ + 52.6066941, + 13.4599726 + ] + ] + }, + { + "osmId": "15792075", + "name": "Stettiner Bahn", + "lengthMeters": 123.58797751842529, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6066026, + 13.4600816 + ], + [ + 52.6064686, + 13.4599362 + ], + [ + 52.6063489, + 13.4598073 + ], + [ + 52.6056726, + 13.4590794 + ] + ] + }, + { + "osmId": "15792208", + "name": null, + "lengthMeters": 456.9966654319378, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6110885, + 13.4648612 + ], + [ + 52.6115305, + 13.4654041 + ], + [ + 52.6117534, + 13.4656693 + ], + [ + 52.6119817, + 13.4659351 + ], + [ + 52.6124393, + 13.4664555 + ], + [ + 52.6128972, + 13.4669549 + ], + [ + 52.6131812, + 13.4672591 + ], + [ + 52.6133574, + 13.4674487 + ], + [ + 52.6135822, + 13.4677007 + ], + [ + 52.613912, + 13.4681095 + ], + [ + 52.614197, + 13.4684618 + ], + [ + 52.6143647, + 13.4686596 + ], + [ + 52.6144483, + 13.4687559 + ] + ] + }, + { + "osmId": "15792514", + "name": "Stettiner Bahn", + "lengthMeters": 201.20902423838777, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.617302, + 13.4718943 + ], + [ + 52.6165386, + 13.4710907 + ], + [ + 52.6164672, + 13.4710169 + ], + [ + 52.6157809, + 13.4702945 + ], + [ + 52.6157769, + 13.4702903 + ] + ] + }, + { + "osmId": "15792583", + "name": "Stettiner Bahn", + "lengthMeters": 262.0503243716902, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6213878, + 13.4764109 + ], + [ + 52.6210127, + 13.4760049 + ], + [ + 52.6203767, + 13.4753157 + ], + [ + 52.6203417, + 13.4752785 + ], + [ + 52.6194211, + 13.4742721 + ] + ] + }, + { + "osmId": "15792707", + "name": null, + "lengthMeters": 264.4529579854499, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6277256, + 13.4764203 + ], + [ + 52.6271758, + 13.4769906 + ], + [ + 52.6266748, + 13.4773827 + ], + [ + 52.626335, + 13.4776106 + ], + [ + 52.6260061, + 13.4778013 + ], + [ + 52.6255633, + 13.4779964 + ] + ] + }, + { + "osmId": "15807331", + "name": null, + "lengthMeters": 810.4149812056263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6190173, + 10.0307013 + ], + [ + 53.618744, + 10.0305002 + ], + [ + 53.6183569, + 10.0301636 + ], + [ + 53.6182499, + 10.0300834 + ], + [ + 53.6181159, + 10.0300012 + ], + [ + 53.6180323, + 10.0299577 + ], + [ + 53.6177011, + 10.0298264 + ], + [ + 53.6169668, + 10.0295678 + ], + [ + 53.6158156, + 10.0291565 + ], + [ + 53.6143807, + 10.0286634 + ], + [ + 53.6135177, + 10.0283724 + ], + [ + 53.612973, + 10.0281633 + ], + [ + 53.612755, + 10.0280592 + ], + [ + 53.6125109, + 10.027913 + ], + [ + 53.6123132, + 10.0277752 + ], + [ + 53.6121526, + 10.027645 + ], + [ + 53.6120118, + 10.0275197 + ] + ] + }, + { + "osmId": "15807404", + "name": null, + "lengthMeters": 740.5286550875345, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6410068, + 10.0824255 + ], + [ + 53.6411684, + 10.0827376 + ], + [ + 53.6416338, + 10.0835291 + ], + [ + 53.6418067, + 10.0838286 + ], + [ + 53.6419063, + 10.0840013 + ], + [ + 53.6420073, + 10.0841764 + ], + [ + 53.6427295, + 10.0854277 + ], + [ + 53.6433843, + 10.0865473 + ], + [ + 53.6439976, + 10.0876034 + ], + [ + 53.6443285, + 10.0881384 + ], + [ + 53.6446761, + 10.088638 + ], + [ + 53.6453864, + 10.089529 + ], + [ + 53.6456359, + 10.08979 + ], + [ + 53.6458668, + 10.0900569 + ] + ] + }, + { + "osmId": "15857660", + "name": null, + "lengthMeters": 176.34770128434448, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4141848, + 13.5751108 + ], + [ + 52.4142128, + 13.5751794 + ], + [ + 52.414231, + 13.5752308 + ], + [ + 52.4142471, + 13.5752842 + ], + [ + 52.414257, + 13.5753302 + ], + [ + 52.4142636, + 13.5753745 + ], + [ + 52.4142675, + 13.5754166 + ], + [ + 52.4142685, + 13.5754633 + ], + [ + 52.4142663, + 13.5755097 + ], + [ + 52.41426, + 13.5755617 + ], + [ + 52.4142465, + 13.5756242 + ], + [ + 52.4141601, + 13.5759737 + ], + [ + 52.414151, + 13.5760308 + ], + [ + 52.4141459, + 13.5760971 + ], + [ + 52.4141464, + 13.5761624 + ], + [ + 52.4141537, + 13.5762285 + ], + [ + 52.4141673, + 13.5762834 + ], + [ + 52.4141851, + 13.5763373 + ], + [ + 52.4142077, + 13.5763842 + ], + [ + 52.4142315, + 13.5764175 + ], + [ + 52.4142597, + 13.5764461 + ], + [ + 52.4142904, + 13.5764674 + ], + [ + 52.4143228, + 13.5764805 + ], + [ + 52.4143532, + 13.5764858 + ], + [ + 52.4143867, + 13.5764869 + ], + [ + 52.414426, + 13.5764797 + ], + [ + 52.4144629, + 13.5764643 + ], + [ + 52.4144903, + 13.5764479 + ], + [ + 52.4145221, + 13.5764226 + ], + [ + 52.4145484, + 13.5763898 + ], + [ + 52.4145703, + 13.5763479 + ], + [ + 52.4145859, + 13.5762976 + ], + [ + 52.414596, + 13.5762385 + ], + [ + 52.4146027, + 13.5761799 + ], + [ + 52.4146044, + 13.5761359 + ], + [ + 52.4146027, + 13.5760883 + ], + [ + 52.4145981, + 13.5760455 + ], + [ + 52.414592, + 13.5760116 + ], + [ + 52.4145852, + 13.575979 + ], + [ + 52.4145751, + 13.575941 + ], + [ + 52.4145638, + 13.5759063 + ], + [ + 52.4145472, + 13.5758633 + ], + [ + 52.4145278, + 13.5758164 + ] + ] + }, + { + "osmId": "16094938", + "name": null, + "lengthMeters": 193.65241872751108, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6146059, + 13.4689285 + ], + [ + 52.6147182, + 13.4690498 + ], + [ + 52.6147613, + 13.4690962 + ], + [ + 52.6150092, + 13.469363 + ], + [ + 52.615204, + 13.4695739 + ], + [ + 52.6153746, + 13.4697585 + ], + [ + 52.6154187, + 13.4698054 + ], + [ + 52.6156836, + 13.4700868 + ], + [ + 52.6157535, + 13.4701611 + ], + [ + 52.6159419, + 13.4703595 + ], + [ + 52.6160669, + 13.4704896 + ] + ] + }, + { + "osmId": "16187060", + "name": null, + "lengthMeters": 188.5155682677, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4110715, + 13.2786966 + ], + [ + 52.4112786, + 13.2789735 + ], + [ + 52.4114049, + 13.2791642 + ], + [ + 52.4122813, + 13.2806401 + ] + ] + }, + { + "osmId": "16187062", + "name": null, + "lengthMeters": 183.57783898376636, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4123945, + 13.2809656 + ], + [ + 52.412595, + 13.2812254 + ], + [ + 52.4135148, + 13.2827927 + ], + [ + 52.4135642, + 13.2828711 + ] + ] + }, + { + "osmId": "16188188", + "name": "Berliner Ringbahn", + "lengthMeters": 1775.2593951551091, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.524634, + 13.2826188 + ], + [ + 52.524119, + 13.2826242 + ], + [ + 52.5236949, + 13.2826386 + ], + [ + 52.5234141, + 13.2826695 + ], + [ + 52.5231294, + 13.2827096 + ], + [ + 52.523045, + 13.2827243 + ], + [ + 52.5213994, + 13.2830022 + ], + [ + 52.5210974, + 13.2830553 + ], + [ + 52.520859, + 13.2830972 + ], + [ + 52.5207554, + 13.2831125 + ], + [ + 52.5202262, + 13.2832025 + ], + [ + 52.5197536, + 13.2833257 + ], + [ + 52.5196496, + 13.2833598 + ], + [ + 52.519282, + 13.2834801 + ], + [ + 52.5188422, + 13.2836596 + ], + [ + 52.5182988, + 13.2839226 + ], + [ + 52.5182822, + 13.2839302 + ], + [ + 52.5179127, + 13.2840986 + ], + [ + 52.5174559, + 13.2843125 + ], + [ + 52.517063, + 13.284482 + ], + [ + 52.5166719, + 13.28463 + ], + [ + 52.5161064, + 13.2848279 + ], + [ + 52.5160107, + 13.2848604 + ], + [ + 52.5157694, + 13.284949 + ], + [ + 52.51529, + 13.2851154 + ], + [ + 52.5147969, + 13.2852865 + ], + [ + 52.5146607, + 13.285335 + ], + [ + 52.5143515, + 13.2854451 + ], + [ + 52.513912, + 13.2855739 + ], + [ + 52.5134959, + 13.2856805 + ], + [ + 52.513108, + 13.2857492 + ], + [ + 52.5127082, + 13.2857779 + ], + [ + 52.5123067, + 13.2857753 + ], + [ + 52.5119067, + 13.2857264 + ], + [ + 52.5114937, + 13.2856325 + ], + [ + 52.5110984, + 13.2855032 + ], + [ + 52.510781, + 13.2853622 + ], + [ + 52.5107144, + 13.2853326 + ], + [ + 52.5105604, + 13.2852531 + ], + [ + 52.5102144, + 13.2850744 + ], + [ + 52.509806, + 13.2847706 + ], + [ + 52.5097252, + 13.2847074 + ], + [ + 52.5095768, + 13.2845921 + ], + [ + 52.5093946, + 13.2844504 + ], + [ + 52.509039, + 13.2841521 + ] + ] + }, + { + "osmId": "16581933", + "name": "U6", + "lengthMeters": 118.28484883954005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5634259, + 13.3261885 + ], + [ + 52.5631787, + 13.3271376 + ], + [ + 52.5630068, + 13.3277969 + ] + ] + }, + { + "osmId": "16581936", + "name": null, + "lengthMeters": 574.2419219534079, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5657182, + 13.316964 + ], + [ + 52.5655608, + 13.3178003 + ], + [ + 52.5654021, + 13.3186295 + ], + [ + 52.5653044, + 13.3191024 + ], + [ + 52.5651927, + 13.3195694 + ], + [ + 52.5649506, + 13.3205148 + ], + [ + 52.5647601, + 13.3211718 + ], + [ + 52.5644696, + 13.3221658 + ], + [ + 52.564025, + 13.3238327 + ], + [ + 52.5637667, + 13.3248176 + ] + ] + }, + { + "osmId": "16583454", + "name": null, + "lengthMeters": 452.64032761402433, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5802854, + 13.2921739 + ], + [ + 52.5769351, + 13.2949161 + ], + [ + 52.5766423, + 13.2951625 + ] + ] + }, + { + "osmId": "17505919", + "name": null, + "lengthMeters": 160.2814096775266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.503873, + 13.2821185 + ], + [ + 52.5031128, + 13.2822394 + ], + [ + 52.5028348, + 13.2823102 + ], + [ + 52.5026371, + 13.2823712 + ], + [ + 52.5024468, + 13.2824427 + ] + ] + }, + { + "osmId": "17506817", + "name": null, + "lengthMeters": 517.5692478095889, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6072069, + 13.3201616 + ], + [ + 52.6082266, + 13.3188925 + ], + [ + 52.6085033, + 13.318548 + ], + [ + 52.6085198, + 13.3185278 + ], + [ + 52.608573, + 13.3184614 + ], + [ + 52.6091797, + 13.3177122 + ], + [ + 52.6097307, + 13.3170287 + ], + [ + 52.6109269, + 13.3155545 + ] + ] + }, + { + "osmId": "17506819", + "name": null, + "lengthMeters": 281.52606409864893, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6113655, + 13.3150145 + ], + [ + 52.6117054, + 13.3146025 + ], + [ + 52.6121026, + 13.3141279 + ], + [ + 52.6123382, + 13.3138464 + ], + [ + 52.6134193, + 13.3125763 + ] + ] + }, + { + "osmId": "17506821", + "name": null, + "lengthMeters": 101.90479912070529, + "maxSpeedKph": 40.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6134056, + 13.3129709 + ], + [ + 52.6132604, + 13.3131058 + ], + [ + 52.6131383, + 13.3132283 + ], + [ + 52.6129408, + 13.3134182 + ], + [ + 52.6126218, + 13.3137524 + ] + ] + }, + { + "osmId": "17950402", + "name": null, + "lengthMeters": 192.04548377619008, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1352261, + 11.5654435 + ], + [ + 48.1350683, + 11.5655313 + ], + [ + 48.1349993, + 11.5655529 + ], + [ + 48.1349298, + 11.5655835 + ], + [ + 48.134705, + 11.5657241 + ], + [ + 48.1344575, + 11.5658978 + ], + [ + 48.1344152, + 11.5659226 + ], + [ + 48.1343817, + 11.5659393 + ], + [ + 48.1343425, + 11.5659575 + ], + [ + 48.134303, + 11.5659733 + ], + [ + 48.1342098, + 11.5659839 + ], + [ + 48.1341638, + 11.5659825 + ], + [ + 48.134149, + 11.5659804 + ], + [ + 48.1341343, + 11.5659785 + ], + [ + 48.1341193, + 11.5659756 + ], + [ + 48.1341112, + 11.5659737 + ], + [ + 48.1340895, + 11.5659663 + ], + [ + 48.1340524, + 11.5659513 + ], + [ + 48.1340152, + 11.5659301 + ], + [ + 48.1339595, + 11.5658866 + ], + [ + 48.1338301, + 11.5657877 + ], + [ + 48.1336455, + 11.5656586 + ], + [ + 48.1336159, + 11.565642 + ] + ] + }, + { + "osmId": "18649922", + "name": null, + "lengthMeters": 283.6016291907657, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4973416, + 13.3644256 + ], + [ + 52.4972693, + 13.3648142 + ], + [ + 52.497212, + 13.3651318 + ], + [ + 52.497195, + 13.3652883 + ], + [ + 52.4971894, + 13.3655081 + ], + [ + 52.4971962, + 13.3658974 + ], + [ + 52.4971986, + 13.3660707 + ], + [ + 52.4971915, + 13.3662256 + ], + [ + 52.4971751, + 13.3663832 + ], + [ + 52.4971458, + 13.3665574 + ], + [ + 52.4970613, + 13.3670112 + ], + [ + 52.4970072, + 13.3672888 + ], + [ + 52.4969785, + 13.3674543 + ], + [ + 52.4969517, + 13.3676534 + ], + [ + 52.4969397, + 13.3678664 + ], + [ + 52.4969474, + 13.3685244 + ] + ] + }, + { + "osmId": "18784233", + "name": null, + "lengthMeters": 89.16259071752644, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6143945, + 13.2439772 + ], + [ + 52.6149991, + 13.2431097 + ] + ] + }, + { + "osmId": "18784235", + "name": null, + "lengthMeters": 119.89933289794976, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6142371, + 13.2442092 + ], + [ + 52.6139686, + 13.244602 + ], + [ + 52.6134753, + 13.2453236 + ], + [ + 52.6134309, + 13.2453885 + ] + ] + }, + { + "osmId": "18784659", + "name": null, + "lengthMeters": 833.1833105949976, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6059386, + 13.2594153 + ], + [ + 52.6062155, + 13.2580934 + ], + [ + 52.6063601, + 13.2573906 + ], + [ + 52.6064904, + 13.2568133 + ], + [ + 52.6065503, + 13.2565831 + ], + [ + 52.6066155, + 13.2563599 + ], + [ + 52.6067365, + 13.2559648 + ], + [ + 52.6068186, + 13.2557214 + ], + [ + 52.606907, + 13.2554842 + ], + [ + 52.6070867, + 13.2550461 + ], + [ + 52.6074198, + 13.2543716 + ], + [ + 52.6077994, + 13.2537193 + ], + [ + 52.6083344, + 13.2529003 + ], + [ + 52.6088738, + 13.2520982 + ], + [ + 52.6089247, + 13.2520239 + ], + [ + 52.6095974, + 13.251043 + ], + [ + 52.6104082, + 13.2498472 + ] + ] + }, + { + "osmId": "18786052", + "name": null, + "lengthMeters": 850.9115202047657, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6034044, + 13.2716168 + ], + [ + 52.6038334, + 13.2696316 + ], + [ + 52.6054214, + 13.2619205 + ], + [ + 52.6058813, + 13.2596948 + ] + ] + }, + { + "osmId": "18787907", + "name": null, + "lengthMeters": 226.2754087191522, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.616587, + 13.308643 + ], + [ + 52.6168457, + 13.3083485 + ], + [ + 52.6169044, + 13.3082814 + ], + [ + 52.6170221, + 13.308152 + ], + [ + 52.6171679, + 13.3079869 + ], + [ + 52.6173738, + 13.3077471 + ], + [ + 52.6174195, + 13.3076941 + ], + [ + 52.617756, + 13.3073104 + ], + [ + 52.6179056, + 13.3071427 + ], + [ + 52.6180279, + 13.3070219 + ], + [ + 52.618119, + 13.3069227 + ], + [ + 52.6182777, + 13.3067812 + ] + ] + }, + { + "osmId": "19077117", + "name": null, + "lengthMeters": 103.18708941818872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1919427, + 11.5127374 + ], + [ + 48.1918221, + 11.5130657 + ], + [ + 48.1916925, + 11.5133874 + ], + [ + 48.1915798, + 11.5136451 + ], + [ + 48.1914425, + 11.5139069 + ] + ] + }, + { + "osmId": "19077750", + "name": null, + "lengthMeters": 606.5462966344408, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1862158, + 11.5128501 + ], + [ + 48.1864348, + 11.5131839 + ], + [ + 48.1866824, + 11.5135898 + ], + [ + 48.1868092, + 11.5137901 + ], + [ + 48.1869356, + 11.5139817 + ], + [ + 48.1870805, + 11.5141765 + ], + [ + 48.1872169, + 11.5143465 + ], + [ + 48.1874707, + 11.5146294 + ], + [ + 48.187637, + 11.5147957 + ], + [ + 48.1877894, + 11.5149336 + ], + [ + 48.1880447, + 11.5151377 + ], + [ + 48.1889474, + 11.5157565 + ], + [ + 48.1890953, + 11.5158686 + ], + [ + 48.1892276, + 11.5159923 + ], + [ + 48.1894028, + 11.5161757 + ], + [ + 48.1895737, + 11.5163935 + ], + [ + 48.1897497, + 11.5166478 + ], + [ + 48.1899005, + 11.5169164 + ], + [ + 48.1900331, + 11.5171923 + ], + [ + 48.1901493, + 11.5174856 + ], + [ + 48.1902986, + 11.5179966 + ] + ] + }, + { + "osmId": "19078223", + "name": null, + "lengthMeters": 244.749887885674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1910099, + 11.5145307 + ], + [ + 48.1907801, + 11.5147946 + ], + [ + 48.1906143, + 11.5149271 + ], + [ + 48.190466, + 11.5150393 + ], + [ + 48.190297, + 11.5151465 + ], + [ + 48.1900354, + 11.5152739 + ], + [ + 48.1898512, + 11.5153389 + ], + [ + 48.1896192, + 11.5153948 + ], + [ + 48.1893505, + 11.5154176 + ], + [ + 48.1891575, + 11.5154101 + ], + [ + 48.1889455, + 11.5153826 + ] + ] + }, + { + "osmId": "19177781", + "name": null, + "lengthMeters": 132.3221330575967, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1902986, + 11.5179966 + ], + [ + 48.190372, + 11.5183724 + ], + [ + 48.190434, + 11.518739 + ], + [ + 48.1904641, + 11.519035 + ], + [ + 48.1904778, + 11.5193207 + ], + [ + 48.1904646, + 11.5197496 + ] + ] + }, + { + "osmId": "19177785", + "name": null, + "lengthMeters": 125.8438826047917, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904646, + 11.5197496 + ], + [ + 48.1904417, + 11.5201145 + ], + [ + 48.1904077, + 11.5204979 + ], + [ + 48.190338, + 11.5209639 + ], + [ + 48.1902471, + 11.5214103 + ] + ] + }, + { + "osmId": "19527963", + "name": null, + "lengthMeters": 334.7835011115429, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1696867, + 11.5330721 + ], + [ + 48.1697136, + 11.5330201 + ], + [ + 48.1697363, + 11.5329684 + ], + [ + 48.1697483, + 11.5329325 + ], + [ + 48.1697571, + 11.5328968 + ], + [ + 48.1697639, + 11.5328617 + ], + [ + 48.1697675, + 11.5328268 + ], + [ + 48.169769, + 11.5328025 + ], + [ + 48.1697696, + 11.5327732 + ], + [ + 48.1697688, + 11.5327425 + ], + [ + 48.169767, + 11.5327213 + ], + [ + 48.1697573, + 11.5326662 + ], + [ + 48.1697464, + 11.5326155 + ], + [ + 48.169653, + 11.5323172 + ], + [ + 48.1696255, + 11.532202 + ], + [ + 48.1695712, + 11.5319008 + ], + [ + 48.1694489, + 11.5310161 + ], + [ + 48.1693798, + 11.5304154 + ], + [ + 48.1693479, + 11.5300849 + ], + [ + 48.1693001, + 11.52914 + ], + [ + 48.1693004, + 11.5290877 + ], + [ + 48.1693042, + 11.5290418 + ], + [ + 48.1693104, + 11.5290013 + ], + [ + 48.1693192, + 11.5289668 + ], + [ + 48.1693275, + 11.528939 + ], + [ + 48.169336, + 11.5289181 + ], + [ + 48.1693445, + 11.528901 + ], + [ + 48.1693594, + 11.5288728 + ], + [ + 48.1693746, + 11.5288491 + ], + [ + 48.169391, + 11.5288272 + ], + [ + 48.1694073, + 11.5288121 + ], + [ + 48.169431, + 11.5287935 + ], + [ + 48.1694543, + 11.5287784 + ] + ] + }, + { + "osmId": "19560969", + "name": null, + "lengthMeters": 485.28002181227356, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356254, + 11.6053324 + ], + [ + 48.1356204, + 11.6051307 + ], + [ + 48.1356278, + 11.604932 + ], + [ + 48.1356477, + 11.604576 + ], + [ + 48.1356657, + 11.6042547 + ], + [ + 48.1356905, + 11.603865 + ], + [ + 48.135738, + 11.6030603 + ], + [ + 48.1357486, + 11.6026155 + ], + [ + 48.1357518, + 11.6024804 + ], + [ + 48.1357492, + 11.6022988 + ], + [ + 48.1357439, + 11.6019217 + ], + [ + 48.1357248, + 11.6013801 + ], + [ + 48.135689, + 11.600829 + ], + [ + 48.1356594, + 11.6001777 + ], + [ + 48.1356579, + 11.6001447 + ], + [ + 48.1356466, + 11.5997097 + ], + [ + 48.1356486, + 11.5992737 + ], + [ + 48.135649, + 11.59911 + ], + [ + 48.1356491, + 11.599041 + ], + [ + 48.1356505, + 11.5989305 + ], + [ + 48.135652, + 11.5988065 + ] + ] + }, + { + "osmId": "19744868", + "name": null, + "lengthMeters": 181.94907391700337, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4748705, + 13.3656489 + ], + [ + 52.4748487, + 13.3656644 + ], + [ + 52.4744715, + 13.3659296 + ], + [ + 52.474283, + 13.3660605 + ], + [ + 52.4739713, + 13.3662941 + ], + [ + 52.4738342, + 13.3664055 + ], + [ + 52.4737318, + 13.3664967 + ], + [ + 52.473639, + 13.3665834 + ], + [ + 52.4735115, + 13.3667086 + ], + [ + 52.4734013, + 13.3668221 + ] + ] + }, + { + "osmId": "19744872", + "name": null, + "lengthMeters": 245.32409337447044, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4722206, + 13.3682018 + ], + [ + 52.4721402, + 13.3683578 + ], + [ + 52.4720341, + 13.3685729 + ], + [ + 52.4719054, + 13.3688568 + ], + [ + 52.4717459, + 13.3692611 + ], + [ + 52.4716326, + 13.3695823 + ], + [ + 52.4715618, + 13.369803 + ], + [ + 52.4714587, + 13.3701902 + ], + [ + 52.4713925, + 13.370504 + ], + [ + 52.4713585, + 13.3706921 + ], + [ + 52.4713288, + 13.3709015 + ], + [ + 52.4713032, + 13.3711267 + ], + [ + 52.4712811, + 13.371414 + ] + ] + }, + { + "osmId": "19787771", + "name": null, + "lengthMeters": 1521.3810950459801, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6066725, + 9.9461096 + ], + [ + 53.6073657, + 9.9463447 + ], + [ + 53.6075499, + 9.9464161 + ], + [ + 53.607785, + 9.9465356 + ], + [ + 53.6080133, + 9.9466603 + ], + [ + 53.6081085, + 9.9467247 + ], + [ + 53.6082097, + 9.9468088 + ], + [ + 53.6093468, + 9.9478271 + ], + [ + 53.6101929, + 9.9486754 + ], + [ + 53.6112923, + 9.9497624 + ], + [ + 53.6123697, + 9.9508201 + ], + [ + 53.6124746, + 9.9508959 + ], + [ + 53.6126488, + 9.9510092 + ], + [ + 53.6128472, + 9.9511166 + ], + [ + 53.6129637, + 9.9511646 + ], + [ + 53.6133836, + 9.9513199 + ], + [ + 53.6134884, + 9.9513472 + ], + [ + 53.6135871, + 9.9513698 + ], + [ + 53.6141379, + 9.951411 + ], + [ + 53.6147377, + 9.9513568 + ], + [ + 53.615198, + 9.9512761 + ], + [ + 53.6156307, + 9.9511611 + ], + [ + 53.6164243, + 9.9508445 + ], + [ + 53.6166975, + 9.9507506 + ], + [ + 53.6168982, + 9.9506957 + ], + [ + 53.6171768, + 9.9506632 + ], + [ + 53.6174652, + 9.9506486 + ], + [ + 53.6175651, + 9.9506605 + ], + [ + 53.617689, + 9.9506791 + ], + [ + 53.617866, + 9.9507145 + ], + [ + 53.6179979, + 9.9507401 + ], + [ + 53.6180382, + 9.9507532 + ], + [ + 53.6181067, + 9.9507823 + ], + [ + 53.6182735, + 9.9508669 + ], + [ + 53.6192918, + 9.9513833 + ], + [ + 53.6194463, + 9.9514617 + ], + [ + 53.6195057, + 9.9514941 + ] + ] + }, + { + "osmId": "19789986", + "name": null, + "lengthMeters": 88.43289096524883, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5616885, + 9.9337707 + ], + [ + 53.5620219, + 9.9339449 + ], + [ + 53.5622725, + 9.9340369 + ], + [ + 53.5624614, + 9.9340666 + ] + ] + }, + { + "osmId": "19793259", + "name": null, + "lengthMeters": 483.80224354276424, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6550637, + 10.167836 + ], + [ + 53.6551121, + 10.1682306 + ], + [ + 53.6551396, + 10.1686038 + ], + [ + 53.6551477, + 10.1690048 + ], + [ + 53.6551378, + 10.1693602 + ], + [ + 53.6551036, + 10.1697415 + ], + [ + 53.655057, + 10.1701168 + ], + [ + 53.6549959, + 10.1704896 + ], + [ + 53.6542375, + 10.1749596 + ] + ] + }, + { + "osmId": "19793261", + "name": null, + "lengthMeters": 501.2862075020426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6541922, + 10.1752418 + ], + [ + 53.6532317, + 10.1808961 + ], + [ + 53.6531621, + 10.1813626 + ], + [ + 53.6531115, + 10.181774 + ], + [ + 53.6530453, + 10.1825898 + ] + ] + }, + { + "osmId": "19793285", + "name": null, + "lengthMeters": 213.98771642242028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6857559, + 10.1400934 + ], + [ + 53.6872139, + 10.1386924 + ], + [ + 53.6874334, + 10.1385015 + ] + ] + }, + { + "osmId": "19796911", + "name": null, + "lengthMeters": 80.59706941346559, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1536664, + 11.448244 + ], + [ + 48.1538077, + 11.447922 + ], + [ + 48.1539156, + 11.4476997 + ], + [ + 48.1540854, + 11.4473579 + ] + ] + }, + { + "osmId": "19797699", + "name": null, + "lengthMeters": 294.763572573562, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2053331, + 11.4615601 + ], + [ + 48.2053325, + 11.4615568 + ], + [ + 48.2052796, + 11.4613011 + ], + [ + 48.2052231, + 11.4610496 + ], + [ + 48.2050537, + 11.4603837 + ], + [ + 48.2049233, + 11.4598431 + ], + [ + 48.2048586, + 11.4595509 + ], + [ + 48.2048066, + 11.4592663 + ], + [ + 48.2047531, + 11.4588971 + ], + [ + 48.2047102, + 11.4585114 + ], + [ + 48.2046448, + 11.4577362 + ] + ] + }, + { + "osmId": "19797709", + "name": null, + "lengthMeters": 355.3602025900654, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2045773, + 11.4619503 + ], + [ + 48.2045164, + 11.4618591 + ], + [ + 48.2043733, + 11.4616557 + ], + [ + 48.2042024, + 11.4614545 + ], + [ + 48.2040282, + 11.4612847 + ], + [ + 48.2038531, + 11.4611435 + ], + [ + 48.203672, + 11.4610275 + ], + [ + 48.2034969, + 11.4609399 + ], + [ + 48.203313, + 11.4608715 + ], + [ + 48.2031152, + 11.4608283 + ], + [ + 48.2029148, + 11.4608041 + ], + [ + 48.2026964, + 11.4608082 + ], + [ + 48.202478, + 11.4608467 + ], + [ + 48.2022723, + 11.4609075 + ], + [ + 48.2020628, + 11.4610043 + ], + [ + 48.2018558, + 11.4611301 + ], + [ + 48.2016549, + 11.4612871 + ] + ] + }, + { + "osmId": "19797710", + "name": null, + "lengthMeters": 75.44815516534698, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2049518, + 11.4627951 + ], + [ + 48.2048954, + 11.4626224 + ], + [ + 48.2047884, + 11.4623572 + ], + [ + 48.204651, + 11.4620844 + ], + [ + 48.2045773, + 11.4619503 + ] + ] + }, + { + "osmId": "19797725", + "name": null, + "lengthMeters": 363.5626795880225, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2063163, + 11.4624356 + ], + [ + 48.2062573, + 11.462523 + ], + [ + 48.2061215, + 11.4627444 + ], + [ + 48.2060062, + 11.4629591 + ], + [ + 48.2059114, + 11.4631692 + ], + [ + 48.2058187, + 11.4633956 + ], + [ + 48.2057494, + 11.4636005 + ], + [ + 48.205668, + 11.4638721 + ], + [ + 48.2055068, + 11.4644957 + ], + [ + 48.2052579, + 11.4654522 + ], + [ + 48.2052344, + 11.4655411 + ], + [ + 48.2051655, + 11.4657859 + ], + [ + 48.2050683, + 11.4661094 + ], + [ + 48.2048832, + 11.4666643 + ], + [ + 48.2048453, + 11.4667761 + ] + ] + }, + { + "osmId": "19797738", + "name": null, + "lengthMeters": 163.32207828230537, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2011111, + 11.4619514 + ], + [ + 48.2009324, + 11.4622754 + ], + [ + 48.2006339, + 11.4628802 + ], + [ + 48.2005153, + 11.4631087 + ], + [ + 48.2003559, + 11.4633898 + ], + [ + 48.2001772, + 11.4636475 + ] + ] + }, + { + "osmId": "19828001", + "name": null, + "lengthMeters": 439.4473571681965, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6338923, + 9.8322001 + ], + [ + 53.6333969, + 9.8331609 + ], + [ + 53.6330952, + 9.8337533 + ], + [ + 53.6322615, + 9.8353901 + ], + [ + 53.6312576, + 9.8371652 + ] + ] + }, + { + "osmId": "19850623", + "name": null, + "lengthMeters": 91.444364876639, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356165, + 11.5998565 + ], + [ + 48.1355956, + 11.6001479 + ], + [ + 48.1355571, + 11.6004676 + ], + [ + 48.1355159, + 11.6008056 + ], + [ + 48.1354601, + 11.6010631 + ] + ] + }, + { + "osmId": "20132512", + "name": null, + "lengthMeters": 103.54062723742112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318856, + 13.3994447 + ], + [ + 52.5319527, + 13.3993883 + ], + [ + 52.5323525, + 13.3990684 + ], + [ + 52.5324319, + 13.3990046 + ], + [ + 52.5324677, + 13.3989667 + ], + [ + 52.5324944, + 13.3989174 + ], + [ + 52.532516, + 13.398882 + ], + [ + 52.5325366, + 13.3988424 + ], + [ + 52.5325543, + 13.3987853 + ], + [ + 52.5325675, + 13.3987228 + ], + [ + 52.5325704, + 13.3986955 + ], + [ + 52.5325724, + 13.3986759 + ], + [ + 52.5325757, + 13.3985615 + ] + ] + }, + { + "osmId": "20425638", + "name": null, + "lengthMeters": 843.7374667867933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5648145, + 13.57168 + ], + [ + 52.5650166, + 13.5718576 + ], + [ + 52.5651102, + 13.5719381 + ], + [ + 52.5675523, + 13.5741009 + ], + [ + 52.5676209, + 13.5741611 + ], + [ + 52.567696, + 13.574227 + ], + [ + 52.5678342, + 13.5743549 + ], + [ + 52.5682711, + 13.5747394 + ], + [ + 52.5684061, + 13.5748571 + ], + [ + 52.5689113, + 13.5753041 + ], + [ + 52.5689889, + 13.5753664 + ], + [ + 52.5690824, + 13.5754349 + ], + [ + 52.5692567, + 13.5755367 + ], + [ + 52.5693685, + 13.5755881 + ], + [ + 52.5694835, + 13.5756248 + ], + [ + 52.5695687, + 13.5756436 + ], + [ + 52.5696496, + 13.5756578 + ], + [ + 52.5697394, + 13.5756639 + ], + [ + 52.5698204, + 13.5756628 + ], + [ + 52.569959, + 13.5756521 + ], + [ + 52.5700516, + 13.5756346 + ], + [ + 52.5701436, + 13.5756068 + ], + [ + 52.5702387, + 13.5755719 + ], + [ + 52.5703225, + 13.5755361 + ], + [ + 52.5704973, + 13.5754466 + ], + [ + 52.571094, + 13.5751557 + ], + [ + 52.5714604, + 13.5749759 + ], + [ + 52.5717387, + 13.5748198 + ] + ] + }, + { + "osmId": "20441834", + "name": null, + "lengthMeters": 108.7235361009242, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875169, + 10.0416717 + ], + [ + 53.5872254, + 10.043244 + ] + ] + }, + { + "osmId": "20551315", + "name": null, + "lengthMeters": 650.8426143854485, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5392976, + 10.0265348 + ], + [ + 53.5402433, + 10.0268406 + ], + [ + 53.5405576, + 10.0269307 + ], + [ + 53.5408736, + 10.027002 + ], + [ + 53.5411371, + 10.0270395 + ], + [ + 53.5413831, + 10.0270463 + ], + [ + 53.541624, + 10.0270331 + ], + [ + 53.5417825, + 10.0270169 + ], + [ + 53.5418041, + 10.0270138 + ], + [ + 53.5421618, + 10.0269429 + ], + [ + 53.542635, + 10.0267531 + ], + [ + 53.5429234, + 10.0265855 + ], + [ + 53.543162, + 10.0264179 + ], + [ + 53.543674, + 10.0260322 + ], + [ + 53.5436793, + 10.0260282 + ], + [ + 53.5440831, + 10.0257239 + ], + [ + 53.5447614, + 10.0251882 + ], + [ + 53.5448988, + 10.0250797 + ] + ] + }, + { + "osmId": "20592108", + "name": null, + "lengthMeters": 893.5423058049962, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5097974, + 13.2285028 + ], + [ + 52.5097334, + 13.2287645 + ], + [ + 52.5096663, + 13.2290937 + ], + [ + 52.5096508, + 13.2291976 + ], + [ + 52.509614, + 13.2294336 + ], + [ + 52.5095862, + 13.2296903 + ], + [ + 52.5095525, + 13.2300516 + ], + [ + 52.5095381, + 13.2302955 + ], + [ + 52.5095309, + 13.2307026 + ], + [ + 52.5095386, + 13.2311002 + ], + [ + 52.5095617, + 13.2314879 + ], + [ + 52.5095817, + 13.2317256 + ], + [ + 52.5096012, + 13.2319034 + ], + [ + 52.5097387, + 13.233026 + ], + [ + 52.5097897, + 13.2334463 + ], + [ + 52.5098717, + 13.2340766 + ], + [ + 52.5099683, + 13.2347516 + ], + [ + 52.5100342, + 13.2351827 + ], + [ + 52.5101614, + 13.236014 + ], + [ + 52.5103338, + 13.2371199 + ], + [ + 52.5104363, + 13.2377731 + ], + [ + 52.5104723, + 13.2380301 + ], + [ + 52.5104959, + 13.2382094 + ], + [ + 52.5105464, + 13.2385709 + ], + [ + 52.5105894, + 13.2389008 + ], + [ + 52.5106737, + 13.2394698 + ], + [ + 52.5106773, + 13.2394937 + ], + [ + 52.5107398, + 13.2398994 + ], + [ + 52.51078, + 13.2401684 + ], + [ + 52.5107828, + 13.240187 + ], + [ + 52.5107935, + 13.2402586 + ], + [ + 52.5108302, + 13.2405042 + ], + [ + 52.510969, + 13.2413754 + ] + ] + }, + { + "osmId": "20872266", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 204.2633994149789, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5987654, + 9.9006054 + ], + [ + 53.5986991, + 9.9009034 + ], + [ + 53.5985062, + 9.901772 + ], + [ + 53.5983868, + 9.9024749 + ], + [ + 53.5983251, + 9.9030123 + ], + [ + 53.5983005, + 9.9035821 + ] + ] + }, + { + "osmId": "20872630", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 227.38818442406836, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6040341, + 9.9212333 + ], + [ + 53.6042715, + 9.9218992 + ], + [ + 53.604462, + 9.9225551 + ], + [ + 53.6046437, + 9.9232023 + ], + [ + 53.6047684, + 9.9237342 + ], + [ + 53.6048946, + 9.9243499 + ] + ] + }, + { + "osmId": "20872647", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 77.47034719499871, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.603626, + 9.9202841 + ], + [ + 53.6038033, + 9.92065 + ], + [ + 53.6039434, + 9.9209769 + ], + [ + 53.6040341, + 9.9212333 + ] + ] + }, + { + "osmId": "20872994", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 342.6186125537169, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6076202, + 9.9563091 + ], + [ + 53.6074216, + 9.9570173 + ], + [ + 53.607201, + 9.9577248 + ], + [ + 53.6067828, + 9.9591094 + ], + [ + 53.6065128, + 9.9599315 + ], + [ + 53.60623, + 9.9607907 + ], + [ + 53.6061917, + 9.960909 + ] + ] + }, + { + "osmId": "20873062", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 354.38586629131584, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6059725, + 9.9615509 + ], + [ + 53.6056413, + 9.9625352 + ], + [ + 53.6049666, + 9.9645373 + ], + [ + 53.6044529, + 9.9660614 + ], + [ + 53.6044115, + 9.9661779 + ], + [ + 53.6043967, + 9.9662197 + ] + ] + }, + { + "osmId": "20874053", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 164.14330798030875, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6008123, + 9.9918167 + ], + [ + 53.6009021, + 9.9922244 + ], + [ + 53.6009793, + 9.9925208 + ], + [ + 53.6010791, + 9.9928478 + ], + [ + 53.6014652, + 9.9940436 + ] + ] + }, + { + "osmId": "21090039", + "name": null, + "lengthMeters": 84.39927304743439, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008901, + 13.266094 + ], + [ + 52.5012038, + 13.2658947 + ], + [ + 52.5013783, + 13.2657885 + ], + [ + 52.5016059, + 13.2656824 + ] + ] + }, + { + "osmId": "21091673", + "name": null, + "lengthMeters": 694.7216406573233, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4945174, + 13.2752397 + ], + [ + 52.4943876, + 13.2748612 + ], + [ + 52.4942938, + 13.2745934 + ], + [ + 52.4941922, + 13.2743299 + ], + [ + 52.4940897, + 13.274054 + ], + [ + 52.4939768, + 13.2737974 + ], + [ + 52.4938623, + 13.2735632 + ], + [ + 52.4934369, + 13.2727234 + ], + [ + 52.4917981, + 13.2695752 + ], + [ + 52.491625, + 13.2692182 + ], + [ + 52.4915259, + 13.2690016 + ], + [ + 52.4913217, + 13.2685489 + ], + [ + 52.4907272, + 13.2671076 + ] + ] + }, + { + "osmId": "21520888", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 630.4709575668825, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5362406, + 10.0513115 + ], + [ + 53.5362635, + 10.0512317 + ], + [ + 53.5368204, + 10.0492867 + ], + [ + 53.5370245, + 10.0485739 + ], + [ + 53.537212, + 10.0478881 + ], + [ + 53.5375768, + 10.0466111 + ], + [ + 53.5381006, + 10.0447597 + ], + [ + 53.5384263, + 10.0436253 + ], + [ + 53.5386463, + 10.042859 + ], + [ + 53.5386899, + 10.0427071 + ] + ] + }, + { + "osmId": "21780670", + "name": "U7", + "lengthMeters": 254.99075254932325, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4931132, + 13.3880657 + ], + [ + 52.4931833, + 13.3880421 + ], + [ + 52.4932617, + 13.3880588 + ], + [ + 52.4933893, + 13.388069 + ], + [ + 52.4934279, + 13.388078 + ], + [ + 52.493475, + 13.3880943 + ], + [ + 52.4935307, + 13.3881236 + ], + [ + 52.4935928, + 13.3881639 + ], + [ + 52.4936283, + 13.3881906 + ], + [ + 52.4937875, + 13.3883101 + ], + [ + 52.4943161, + 13.3887393 + ], + [ + 52.495213, + 13.3894608 + ] + ] + }, + { + "osmId": "21809117", + "name": null, + "lengthMeters": 130.8296607011882, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4779806, + 13.3459501 + ], + [ + 52.4779951, + 13.3462185 + ], + [ + 52.4780172, + 13.3465017 + ], + [ + 52.4780589, + 13.3468639 + ], + [ + 52.4781386, + 13.3473424 + ], + [ + 52.4782504, + 13.3478205 + ] + ] + }, + { + "osmId": "22076250", + "name": null, + "lengthMeters": 342.8835781966224, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1455602, + 11.4952213 + ], + [ + 48.1455665, + 11.4951969 + ], + [ + 48.145707, + 11.4946637 + ], + [ + 48.145713, + 11.4946392 + ], + [ + 48.1457715, + 11.4943973 + ], + [ + 48.1458507, + 11.4940495 + ], + [ + 48.1459225, + 11.4936681 + ], + [ + 48.1459771, + 11.4932688 + ], + [ + 48.146016, + 11.4929063 + ], + [ + 48.1460384, + 11.4925455 + ], + [ + 48.1460504, + 11.4921754 + ], + [ + 48.1460461, + 11.4918261 + ], + [ + 48.1460289, + 11.4914201 + ], + [ + 48.1460096, + 11.4911627 + ], + [ + 48.1459675, + 11.4907151 + ] + ] + }, + { + "osmId": "22076266", + "name": null, + "lengthMeters": 644.4968827848347, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1466777, + 11.47487 + ], + [ + 48.1467439, + 11.4739628 + ], + [ + 48.1467586, + 11.4737618 + ], + [ + 48.1467831, + 11.4734259 + ], + [ + 48.1468737, + 11.4724867 + ], + [ + 48.1469317, + 11.4720262 + ], + [ + 48.1469992, + 11.4715741 + ], + [ + 48.1470961, + 11.4710369 + ], + [ + 48.1471252, + 11.4708739 + ], + [ + 48.1472048, + 11.4705049 + ], + [ + 48.1474403, + 11.4695833 + ], + [ + 48.1475283, + 11.4692795 + ], + [ + 48.1475968, + 11.4690654 + ], + [ + 48.1476355, + 11.4689515 + ], + [ + 48.1479721, + 11.4679585 + ], + [ + 48.1484249, + 11.4666848 + ] + ] + }, + { + "osmId": "22076533", + "name": null, + "lengthMeters": 111.96575540113403, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457005, + 11.4899588 + ], + [ + 48.1457116, + 11.4906878 + ], + [ + 48.1457205, + 11.4914676 + ] + ] + }, + { + "osmId": "22077476", + "name": null, + "lengthMeters": 248.19917453061922, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1463679, + 11.4914035 + ], + [ + 48.1465372, + 11.4909222 + ], + [ + 48.1467914, + 11.4902291 + ], + [ + 48.1469088, + 11.4899312 + ], + [ + 48.1469667, + 11.4897843 + ], + [ + 48.1471521, + 11.4893469 + ], + [ + 48.1475233, + 11.4885455 + ] + ] + }, + { + "osmId": "22077485", + "name": null, + "lengthMeters": 90.83881439840424, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1463287, + 11.4913839 + ], + [ + 48.1459712, + 11.4924848 + ] + ] + }, + { + "osmId": "22080187", + "name": null, + "lengthMeters": 466.59210716796724, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1501787, + 11.4627285 + ], + [ + 48.1504275, + 11.4619679 + ], + [ + 48.1505901, + 11.461436 + ], + [ + 48.1506069, + 11.4613806 + ], + [ + 48.1510159, + 11.4600293 + ], + [ + 48.1510543, + 11.4598932 + ], + [ + 48.1516277, + 11.4579464 + ], + [ + 48.1517252, + 11.4575711 + ], + [ + 48.1518724, + 11.4569767 + ] + ] + }, + { + "osmId": "22080407", + "name": null, + "lengthMeters": 119.08675567384427, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522469, + 11.4514299 + ], + [ + 48.1522157, + 11.4516735 + ], + [ + 48.152045, + 11.4530064 + ] + ] + }, + { + "osmId": "22082715", + "name": null, + "lengthMeters": 76.42089877944272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1526757, + 11.4503709 + ], + [ + 48.1525472, + 11.4508117 + ], + [ + 48.1524446, + 11.451221 + ], + [ + 48.1524183, + 11.4513257 + ] + ] + }, + { + "osmId": "22082717", + "name": null, + "lengthMeters": 84.05938946110251, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522473, + 11.4520826 + ], + [ + 48.152172, + 11.452531 + ], + [ + 48.1521263, + 11.4528191 + ], + [ + 48.1520743, + 11.4531855 + ] + ] + }, + { + "osmId": "22084109", + "name": null, + "lengthMeters": 94.79668366883496, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1435235, + 11.5157258 + ], + [ + 48.143488, + 11.5148677 + ], + [ + 48.1434688, + 11.5144508 + ] + ] + }, + { + "osmId": "22087073", + "name": "Stammstrecke", + "lengthMeters": 1952.7827425367248, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1257195, + 11.6008535 + ], + [ + 48.125691, + 11.6005582 + ], + [ + 48.1256544, + 11.6002114 + ], + [ + 48.1256649, + 11.599755 + ], + [ + 48.1257269, + 11.5993038 + ], + [ + 48.1258317, + 11.5988886 + ], + [ + 48.126011, + 11.5983591 + ], + [ + 48.1262738, + 11.5978279 + ], + [ + 48.1282143, + 11.5945968 + ], + [ + 48.1283793, + 11.5943633 + ], + [ + 48.1286653, + 11.5940118 + ], + [ + 48.1287869, + 11.5938318 + ], + [ + 48.1290422, + 11.5934422 + ], + [ + 48.1292383, + 11.5931428 + ], + [ + 48.1295148, + 11.5927231 + ], + [ + 48.1299883, + 11.5920044 + ], + [ + 48.1300192, + 11.5919585 + ], + [ + 48.1308379, + 11.5907416 + ], + [ + 48.1312627, + 11.5900479 + ], + [ + 48.1315915, + 11.5894666 + ], + [ + 48.1318316, + 11.5889256 + ], + [ + 48.13198, + 11.5884999 + ], + [ + 48.1324199, + 11.5867698 + ], + [ + 48.1325267, + 11.5864515 + ], + [ + 48.1328745, + 11.5856054 + ], + [ + 48.133167, + 11.5849904 + ], + [ + 48.133271, + 11.5847717 + ], + [ + 48.1335457, + 11.5842727 + ], + [ + 48.1339088, + 11.5837127 + ], + [ + 48.1342129, + 11.5832438 + ], + [ + 48.1343811, + 11.5829826 + ], + [ + 48.1348422, + 11.5822667 + ], + [ + 48.1350593, + 11.5819114 + ], + [ + 48.1351839, + 11.5816773 + ], + [ + 48.1353053, + 11.5814163 + ], + [ + 48.1354507, + 11.5810674 + ], + [ + 48.1356078, + 11.5806206 + ], + [ + 48.1357933, + 11.5800018 + ] + ] + }, + { + "osmId": "22088805", + "name": null, + "lengthMeters": 863.6071558506443, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1423938, + 11.5323153 + ], + [ + 48.1423265, + 11.5346181 + ], + [ + 48.1422269, + 11.5372695 + ], + [ + 48.142176, + 11.5384623 + ], + [ + 48.1420896, + 11.5396866 + ], + [ + 48.1418576, + 11.5427387 + ], + [ + 48.1417707, + 11.5439118 + ] + ] + }, + { + "osmId": "22089337", + "name": null, + "lengthMeters": 1178.3787518359823, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1432679, + 11.5165035 + ], + [ + 48.1432791, + 11.5168113 + ], + [ + 48.143288, + 11.5170572 + ], + [ + 48.1433034, + 11.5177974 + ], + [ + 48.1432967, + 11.5185254 + ], + [ + 48.1432766, + 11.5190578 + ], + [ + 48.1432291, + 11.5197657 + ], + [ + 48.1430906, + 11.5216035 + ], + [ + 48.1428155, + 11.525438 + ], + [ + 48.1426122, + 11.5282726 + ], + [ + 48.1425281, + 11.5294623 + ], + [ + 48.1424991, + 11.5298727 + ], + [ + 48.1423938, + 11.5323153 + ] + ] + }, + { + "osmId": "22089354", + "name": null, + "lengthMeters": 1300.3509611880081, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1446273, + 11.4980692 + ], + [ + 48.1445925, + 11.4984024 + ], + [ + 48.1443985, + 11.5002597 + ], + [ + 48.1441801, + 11.5023497 + ], + [ + 48.1441046, + 11.5030324 + ], + [ + 48.1438354, + 11.5055842 + ], + [ + 48.1436118, + 11.5077221 + ], + [ + 48.1432852, + 11.5107983 + ], + [ + 48.1432147, + 11.51169 + ], + [ + 48.1431794, + 11.5123238 + ], + [ + 48.1431651, + 11.5125816 + ], + [ + 48.1431572, + 11.512941 + ], + [ + 48.1431538, + 11.5137338 + ], + [ + 48.143214, + 11.5154251 + ] + ] + }, + { + "osmId": "22089357", + "name": null, + "lengthMeters": 80.2383148163, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.143214, + 11.5154251 + ], + [ + 48.1432679, + 11.5165035 + ] + ] + }, + { + "osmId": "22090701", + "name": "Abstellbahn", + "lengthMeters": 1966.7359553099, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1501787, + 11.4627285 + ], + [ + 48.1496558, + 11.4641159 + ], + [ + 48.1494653, + 11.464677 + ], + [ + 48.1490702, + 11.4658565 + ], + [ + 48.1484528, + 11.4676379 + ], + [ + 48.1481882, + 11.4685497 + ], + [ + 48.1480624, + 11.4692346 + ], + [ + 48.1480002, + 11.4698278 + ], + [ + 48.1478438, + 11.4719159 + ], + [ + 48.1477814, + 11.4727682 + ], + [ + 48.1477669, + 11.4729659 + ], + [ + 48.1477365, + 11.4735282 + ], + [ + 48.1477319, + 11.4740648 + ], + [ + 48.1477581, + 11.4746632 + ], + [ + 48.1478296, + 11.4761653 + ], + [ + 48.1479331, + 11.4784283 + ], + [ + 48.1479592, + 11.4789274 + ], + [ + 48.1480153, + 11.4795382 + ], + [ + 48.1480877, + 11.4800205 + ], + [ + 48.1481704, + 11.4804635 + ], + [ + 48.148584, + 11.482064 + ], + [ + 48.148719, + 11.4825863 + ], + [ + 48.1487884, + 11.4828964 + ], + [ + 48.1488515, + 11.4833086 + ], + [ + 48.1488847, + 11.4837367 + ], + [ + 48.1488917, + 11.4839985 + ], + [ + 48.1488909, + 11.4842507 + ], + [ + 48.1488741, + 11.4845032 + ], + [ + 48.14885, + 11.4847431 + ], + [ + 48.148787, + 11.4851416 + ], + [ + 48.148719, + 11.4854418 + ], + [ + 48.1486122, + 11.485811 + ], + [ + 48.1484149, + 11.4863057 + ], + [ + 48.148282, + 11.4865467 + ], + [ + 48.1481546, + 11.4867776 + ], + [ + 48.1478567, + 11.4872257 + ], + [ + 48.1476047, + 11.4876006 + ] + ] + }, + { + "osmId": "22684379", + "name": null, + "lengthMeters": 730.025470192628, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.482455, + 9.9781339 + ], + [ + 53.482558, + 9.9780333 + ], + [ + 53.4826696, + 9.9779303 + ], + [ + 53.4829043, + 9.9777595 + ], + [ + 53.4832035, + 9.9775887 + ], + [ + 53.4832853, + 9.9775466 + ], + [ + 53.4833852, + 9.9775026 + ], + [ + 53.4835174, + 9.9774507 + ], + [ + 53.4836505, + 9.9774041 + ], + [ + 53.4837382, + 9.9773864 + ], + [ + 53.4838297, + 9.9773688 + ], + [ + 53.485271, + 9.977148 + ], + [ + 53.4857645, + 9.9770746 + ], + [ + 53.486854, + 9.9769059 + ], + [ + 53.4870854, + 9.9768732 + ], + [ + 53.4872463, + 9.9768464 + ], + [ + 53.4882498, + 9.9766797 + ], + [ + 53.4889149, + 9.9765955 + ] + ] + }, + { + "osmId": "22686719", + "name": null, + "lengthMeters": 776.3335087570342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4833113, + 9.978083 + ], + [ + 53.4834608, + 9.9781095 + ], + [ + 53.48359, + 9.9781554 + ], + [ + 53.4837229, + 9.9781954 + ], + [ + 53.4837351, + 9.9781975 + ], + [ + 53.4838825, + 9.9782192 + ], + [ + 53.4842438, + 9.9782543 + ], + [ + 53.4845084, + 9.9782805 + ], + [ + 53.4847255, + 9.9782846 + ], + [ + 53.4849413, + 9.9782652 + ], + [ + 53.4858524, + 9.9781095 + ], + [ + 53.4869358, + 9.9779451 + ], + [ + 53.4894982, + 9.9775693 + ], + [ + 53.4896927, + 9.9775345 + ], + [ + 53.4898673, + 9.9774788 + ], + [ + 53.4901734, + 9.9773811 + ], + [ + 53.4902549, + 9.9773522 + ] + ] + }, + { + "osmId": "22688027", + "name": null, + "lengthMeters": 92.22490085218263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.482462, + 9.9972184 + ], + [ + 53.4825354, + 9.9978174 + ], + [ + 53.4825513, + 9.9979502 + ], + [ + 53.4825656, + 9.9980902 + ], + [ + 53.4825745, + 9.9981916 + ], + [ + 53.4825801, + 9.9982959 + ], + [ + 53.4825841, + 9.9984276 + ], + [ + 53.4825856, + 9.9985932 + ] + ] + }, + { + "osmId": "22714570", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 277.0909946172252, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6006097, + 9.9158568 + ], + [ + 53.6019976, + 9.9176855 + ], + [ + 53.602066, + 9.9177736 + ], + [ + 53.6025587, + 9.9184727 + ] + ] + }, + { + "osmId": "22732354", + "name": null, + "lengthMeters": 672.2072280595085, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4924913, + 9.9687674 + ], + [ + 53.4924272, + 9.9693841 + ], + [ + 53.4924026, + 9.9696266 + ], + [ + 53.4922903, + 9.9707452 + ], + [ + 53.4922493, + 9.971167 + ], + [ + 53.4922299, + 9.9714592 + ], + [ + 53.4922214, + 9.971736 + ], + [ + 53.4922215, + 9.9720065 + ], + [ + 53.4922238, + 9.9721075 + ], + [ + 53.4922516, + 9.972469 + ], + [ + 53.492332, + 9.9731982 + ], + [ + 53.4923588, + 9.973456 + ], + [ + 53.4923727, + 9.9736775 + ], + [ + 53.492374, + 9.9739769 + ], + [ + 53.4923588, + 9.9742163 + ], + [ + 53.4923307, + 9.9744752 + ], + [ + 53.4922946, + 9.9746965 + ], + [ + 53.4922385, + 9.9749516 + ], + [ + 53.4921932, + 9.9751127 + ], + [ + 53.4921266, + 9.9753137 + ], + [ + 53.4920662, + 9.9754652 + ], + [ + 53.4919895, + 9.9756293 + ], + [ + 53.4918785, + 9.9758272 + ], + [ + 53.4918264, + 9.9759087 + ], + [ + 53.4917839, + 9.9759694 + ], + [ + 53.4917305, + 9.9760414 + ], + [ + 53.4916132, + 9.9761784 + ], + [ + 53.4915413, + 9.9762506 + ], + [ + 53.4914468, + 9.9763303 + ], + [ + 53.4913491, + 9.9764002 + ], + [ + 53.4912539, + 9.9764577 + ], + [ + 53.4911591, + 9.9765055 + ], + [ + 53.4909975, + 9.9765602 + ], + [ + 53.4908758, + 9.976583 + ], + [ + 53.4906575, + 9.9766193 + ], + [ + 53.4903222, + 9.9766525 + ] + ] + }, + { + "osmId": "22732746", + "name": null, + "lengthMeters": 136.69069827089922, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5594264, + 13.4337133 + ], + [ + 52.5594814, + 13.4337632 + ], + [ + 52.5595311, + 13.4338397 + ], + [ + 52.5595459, + 13.4338725 + ], + [ + 52.5595859, + 13.4339843 + ], + [ + 52.5596086, + 13.4341016 + ], + [ + 52.5596205, + 13.4342372 + ], + [ + 52.5596303, + 13.4343517 + ], + [ + 52.5596446, + 13.4344706 + ], + [ + 52.5596685, + 13.434568 + ], + [ + 52.5597054, + 13.4346549 + ], + [ + 52.5597537, + 13.434715 + ], + [ + 52.5598251, + 13.4347606 + ], + [ + 52.559905, + 13.4347796 + ], + [ + 52.5599782, + 13.4347623 + ], + [ + 52.5600501, + 13.4347192 + ], + [ + 52.5601003, + 13.4346411 + ], + [ + 52.5601323, + 13.4345544 + ], + [ + 52.560156, + 13.4344545 + ] + ] + }, + { + "osmId": "22735184", + "name": null, + "lengthMeters": 166.12887875438247, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.149473, + 11.4637432 + ], + [ + 48.149536, + 11.4635636 + ], + [ + 48.1496448, + 11.4632451 + ], + [ + 48.1498741, + 11.462523 + ], + [ + 48.1501148, + 11.4617216 + ] + ] + }, + { + "osmId": "22755612", + "name": null, + "lengthMeters": 86.4433894222128, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5599485, + 9.990479 + ], + [ + 53.5598916, + 9.9905485 + ], + [ + 53.5598629, + 9.9905842 + ], + [ + 53.5595866, + 9.9909457 + ], + [ + 53.5594752, + 9.9910923 + ], + [ + 53.5593362, + 9.9912851 + ] + ] + }, + { + "osmId": "22755617", + "name": null, + "lengthMeters": 201.7209373310622, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5595717, + 9.9911373 + ], + [ + 53.5593703, + 9.9913852 + ], + [ + 53.5592268, + 9.9916143 + ], + [ + 53.5590652, + 9.9919155 + ], + [ + 53.5588824, + 9.9922857 + ], + [ + 53.5583499, + 9.993379 + ] + ] + }, + { + "osmId": "22755626", + "name": null, + "lengthMeters": 186.63737096916418, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5579427, + 9.9940509 + ], + [ + 53.5578431, + 9.9943167 + ], + [ + 53.5577887, + 9.9944944 + ], + [ + 53.5577066, + 9.9947943 + ], + [ + 53.5576489, + 9.9950124 + ], + [ + 53.5574413, + 9.9957706 + ], + [ + 53.5572189, + 9.9965974 + ] + ] + }, + { + "osmId": "22755634", + "name": null, + "lengthMeters": 109.27989612028672, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5569007, + 9.9977992 + ], + [ + 53.5568394, + 9.9980422 + ], + [ + 53.5567964, + 9.9982503 + ], + [ + 53.5567729, + 9.9983817 + ], + [ + 53.5567683, + 9.9984074 + ], + [ + 53.5567482, + 9.99852 + ], + [ + 53.5567195, + 9.9987434 + ], + [ + 53.5566968, + 9.9989432 + ], + [ + 53.55669, + 9.9990166 + ], + [ + 53.5566573, + 9.9993948 + ] + ] + }, + { + "osmId": "22755640", + "name": "Verbindungsbahn", + "lengthMeters": 213.81594577196506, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5580277, + 9.9941012 + ], + [ + 53.5579744, + 9.9942417 + ], + [ + 53.5579177, + 9.9943913 + ], + [ + 53.5578629, + 9.9945611 + ], + [ + 53.5577819, + 9.994842 + ], + [ + 53.557718, + 9.9950767 + ], + [ + 53.5575156, + 9.9958386 + ], + [ + 53.5572684, + 9.9967585 + ], + [ + 53.5572019, + 9.9970206 + ] + ] + }, + { + "osmId": "22766457", + "name": null, + "lengthMeters": 264.58214368957096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5890963, + 10.0328224 + ], + [ + 53.589141, + 10.0324705 + ], + [ + 53.5892594, + 10.031405 + ], + [ + 53.5893274, + 10.0307745 + ], + [ + 53.5893316, + 10.0307355 + ], + [ + 53.5895195, + 10.0289936 + ], + [ + 53.5895316, + 10.0288815 + ] + ] + }, + { + "osmId": "22768982", + "name": null, + "lengthMeters": 200.22705385618744, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4905205, + 13.4600584 + ], + [ + 52.4909318, + 13.4601633 + ], + [ + 52.4911547, + 13.4602392 + ], + [ + 52.491346, + 13.4603119 + ], + [ + 52.4917365, + 13.4604998 + ], + [ + 52.4921433, + 13.460742 + ], + [ + 52.4922555, + 13.4608157 + ] + ] + }, + { + "osmId": "22768984", + "name": null, + "lengthMeters": 185.20900079011358, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4882136, + 13.4593387 + ], + [ + 52.4892103, + 13.45959 + ], + [ + 52.4895575, + 13.4596724 + ], + [ + 52.4898606, + 13.4597465 + ] + ] + }, + { + "osmId": "22768990", + "name": null, + "lengthMeters": 169.96584404524395, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969896, + 13.4656132 + ], + [ + 52.4964247, + 13.4647793 + ], + [ + 52.4961757, + 13.4644144 + ], + [ + 52.4958463, + 13.4639469 + ] + ] + }, + { + "osmId": "22768999", + "name": null, + "lengthMeters": 288.82752137338315, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4850503, + 13.4635879 + ], + [ + 52.485254, + 13.4632821 + ], + [ + 52.4854767, + 13.4629616 + ], + [ + 52.4856874, + 13.4626484 + ], + [ + 52.4858982, + 13.4623357 + ], + [ + 52.4861004, + 13.4620306 + ], + [ + 52.4863056, + 13.4616907 + ], + [ + 52.4866287, + 13.4611241 + ], + [ + 52.4869124, + 13.4606192 + ] + ] + }, + { + "osmId": "22781090", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 149.17244988232102, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5276748, + 10.0724173 + ], + [ + 53.5268131, + 10.074147 + ] + ] + }, + { + "osmId": "22781113", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 4675.9528874682965, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5263249, + 10.075091 + ], + [ + 53.5262515, + 10.075232 + ], + [ + 53.5236532, + 10.0804172 + ], + [ + 53.5205306, + 10.0866662 + ], + [ + 53.5185547, + 10.0906052 + ], + [ + 53.5174651, + 10.092748 + ], + [ + 53.5171031, + 10.0934494 + ], + [ + 53.5161115, + 10.0954292 + ], + [ + 53.5157648, + 10.096125 + ], + [ + 53.515661, + 10.0963333 + ], + [ + 53.5150228, + 10.0976286 + ], + [ + 53.5149212, + 10.0978363 + ], + [ + 53.5148626, + 10.0979559 + ], + [ + 53.5147061, + 10.0982756 + ], + [ + 53.5137052, + 10.100288 + ], + [ + 53.5135066, + 10.1006978 + ], + [ + 53.5131172, + 10.101477 + ], + [ + 53.5119799, + 10.1037343 + ], + [ + 53.5108195, + 10.1059652 + ], + [ + 53.5099874, + 10.1075747 + ], + [ + 53.5090046, + 10.1095105 + ], + [ + 53.5056316, + 10.1161789 + ], + [ + 53.5020537, + 10.1232503 + ], + [ + 53.5015847, + 10.1241433 + ], + [ + 53.5007864, + 10.1256344 + ], + [ + 53.4996048, + 10.1278165 + ], + [ + 53.4994552, + 10.1280928 + ], + [ + 53.499042, + 10.1288994 + ] + ] + }, + { + "osmId": "22781114", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 82.70695104962054, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5268131, + 10.074147 + ], + [ + 53.5263249, + 10.075091 + ] + ] + }, + { + "osmId": "22790708", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 176.55952897309731, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6011529, + 9.9861835 + ], + [ + 53.6008051, + 9.9881149 + ], + [ + 53.6007655, + 9.9883311 + ], + [ + 53.6007372, + 9.9885189 + ], + [ + 53.6007065, + 9.9887506 + ] + ] + }, + { + "osmId": "22790750", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 155.82088255023316, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6007065, + 9.9887506 + ], + [ + 53.6006782, + 9.9890195 + ], + [ + 53.6006646, + 9.9891726 + ], + [ + 53.6006465, + 9.9895285 + ], + [ + 53.600641, + 9.9896327 + ], + [ + 53.6006376, + 9.9897941 + ], + [ + 53.6006375, + 9.990017 + ], + [ + 53.6006391, + 9.9902141 + ], + [ + 53.6006489, + 9.9904353 + ], + [ + 53.6006657, + 9.9907083 + ], + [ + 53.6006883, + 9.9909697 + ], + [ + 53.6006979, + 9.9910985 + ] + ] + }, + { + "osmId": "22820560", + "name": null, + "lengthMeters": 187.02905232914827, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199059, + 13.3883179 + ], + [ + 52.5198178, + 13.3883385 + ], + [ + 52.5197259, + 13.3883491 + ], + [ + 52.5192805, + 13.3884107 + ], + [ + 52.5190623, + 13.3884391 + ], + [ + 52.5189599, + 13.3884611 + ], + [ + 52.5189389, + 13.3884668 + ], + [ + 52.5189164, + 13.3884764 + ], + [ + 52.5188933, + 13.3884893 + ], + [ + 52.5188734, + 13.3885051 + ], + [ + 52.5188507, + 13.3885259 + ], + [ + 52.5188295, + 13.3885515 + ], + [ + 52.5188133, + 13.3885733 + ], + [ + 52.5187885, + 13.3886145 + ], + [ + 52.5187813, + 13.3886313 + ], + [ + 52.5187674, + 13.388666 + ], + [ + 52.5187563, + 13.3887007 + ], + [ + 52.518744, + 13.3887513 + ], + [ + 52.518736, + 13.3888017 + ], + [ + 52.5187319, + 13.3888476 + ], + [ + 52.518731, + 13.3889062 + ], + [ + 52.5187424, + 13.3891399 + ], + [ + 52.5187639, + 13.3894653 + ] + ] + }, + { + "osmId": "22874349", + "name": null, + "lengthMeters": 1102.3288228686406, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4613987, + 13.227501 + ], + [ + 52.4598437, + 13.2255334 + ], + [ + 52.4577346, + 13.222865 + ], + [ + 52.4573784, + 13.222416 + ], + [ + 52.4535458, + 13.2175715 + ] + ] + }, + { + "osmId": "22874355", + "name": null, + "lengthMeters": 1101.8144113324188, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4613404, + 13.2276138 + ], + [ + 52.4608634, + 13.2270097 + ], + [ + 52.4605283, + 13.2265853 + ], + [ + 52.4589257, + 13.2245557 + ], + [ + 52.4579954, + 13.223381 + ], + [ + 52.4578613, + 13.2232113 + ], + [ + 52.4562964, + 13.2212312 + ], + [ + 52.454696, + 13.2192062 + ], + [ + 52.4534933, + 13.2176844 + ] + ] + }, + { + "osmId": "22917262", + "name": null, + "lengthMeters": 567.8866874072309, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4219564, + 13.5604787 + ], + [ + 52.4219905, + 13.5604326 + ], + [ + 52.4220553, + 13.5603448 + ], + [ + 52.4222237, + 13.5601167 + ], + [ + 52.4223392, + 13.5599603 + ], + [ + 52.4225706, + 13.5596022 + ], + [ + 52.422716, + 13.5593773 + ], + [ + 52.42275, + 13.5593246 + ], + [ + 52.4238353, + 13.5577238 + ], + [ + 52.4255759, + 13.5552137 + ], + [ + 52.4257748, + 13.5549187 + ] + ] + }, + { + "osmId": "22917268", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 724.2600020641718, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4287052, + 13.5499697 + ], + [ + 52.4304371, + 13.5473747 + ], + [ + 52.4311394, + 13.5463224 + ], + [ + 52.432495, + 13.5443736 + ], + [ + 52.4333193, + 13.543233 + ], + [ + 52.4334957, + 13.5429968 + ], + [ + 52.4335788, + 13.5428849 + ] + ] + }, + { + "osmId": "22917271", + "name": null, + "lengthMeters": 99.88092776902185, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495995, + 13.5208239 + ], + [ + 52.4496891, + 13.5193574 + ] + ] + }, + { + "osmId": "22917273", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 211.26005404013972, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4541497, + 13.5105253 + ], + [ + 52.454231, + 13.5103976 + ], + [ + 52.454246, + 13.5103735 + ], + [ + 52.4544394, + 13.5100748 + ], + [ + 52.4547599, + 13.5095794 + ], + [ + 52.4548792, + 13.5093931 + ], + [ + 52.4554565, + 13.5085036 + ], + [ + 52.4555321, + 13.5083866 + ] + ] + }, + { + "osmId": "22917275", + "name": null, + "lengthMeters": 596.1240069347164, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565676, + 13.5074065 + ], + [ + 52.4565881, + 13.5073717 + ], + [ + 52.4569318, + 13.5067935 + ], + [ + 52.4574818, + 13.5058725 + ], + [ + 52.4577102, + 13.5054907 + ], + [ + 52.4579577, + 13.5050599 + ], + [ + 52.4584067, + 13.5042672 + ], + [ + 52.4586522, + 13.5038382 + ], + [ + 52.4587483, + 13.5036826 + ], + [ + 52.4595528, + 13.5024283 + ], + [ + 52.4603559, + 13.501185 + ] + ] + }, + { + "osmId": "22917315", + "name": null, + "lengthMeters": 119.58456340520685, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.416106, + 13.5666572 + ], + [ + 52.4159558, + 13.5671532 + ], + [ + 52.4157659, + 13.5677499 + ], + [ + 52.4155924, + 13.5682047 + ] + ] + }, + { + "osmId": "22917317", + "name": null, + "lengthMeters": 383.59598147844594, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4133081, + 13.5725872 + ], + [ + 52.4139413, + 13.5717544 + ], + [ + 52.4139773, + 13.5717031 + ], + [ + 52.4143932, + 13.5711104 + ], + [ + 52.4147669, + 13.5705598 + ], + [ + 52.4148166, + 13.5704865 + ], + [ + 52.4152546, + 13.5697823 + ], + [ + 52.4157335, + 13.5689434 + ], + [ + 52.4158399, + 13.5687571 + ] + ] + }, + { + "osmId": "22917321", + "name": null, + "lengthMeters": 207.59692846075836, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4159892, + 13.5684804 + ], + [ + 52.4160254, + 13.5684148 + ], + [ + 52.4171448, + 13.5663839 + ], + [ + 52.417241, + 13.5662094 + ] + ] + }, + { + "osmId": "22917327", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 305.2878621745299, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4194874, + 13.5576593 + ], + [ + 52.4192446, + 13.5574516 + ], + [ + 52.4190022, + 13.5572443 + ], + [ + 52.4176948, + 13.556097 + ], + [ + 52.4171813, + 13.5556365 + ], + [ + 52.417064, + 13.5555442 + ] + ] + }, + { + "osmId": "22917401", + "name": null, + "lengthMeters": 249.99055427884886, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4171778, + 13.555932 + ], + [ + 52.4174131, + 13.5562437 + ], + [ + 52.4175768, + 13.5564626 + ], + [ + 52.4177242, + 13.5566775 + ], + [ + 52.4178859, + 13.5569358 + ], + [ + 52.4179834, + 13.5570915 + ], + [ + 52.4188051, + 13.5584695 + ] + ] + }, + { + "osmId": "22917403", + "name": null, + "lengthMeters": 812.4942002015752, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4188991, + 13.55862 + ], + [ + 52.4192281, + 13.5591394 + ], + [ + 52.4194083, + 13.5593548 + ], + [ + 52.4195405, + 13.5594973 + ], + [ + 52.4196645, + 13.5596111 + ], + [ + 52.4197722, + 13.5597028 + ], + [ + 52.419912, + 13.5598079 + ], + [ + 52.4200121, + 13.5598697 + ], + [ + 52.4201661, + 13.559954 + ], + [ + 52.4202914, + 13.5600117 + ], + [ + 52.4204253, + 13.5600565 + ], + [ + 52.4205468, + 13.5600897 + ], + [ + 52.4207402, + 13.5601254 + ], + [ + 52.420845, + 13.5601372 + ], + [ + 52.4209296, + 13.5601418 + ], + [ + 52.4210525, + 13.5601399 + ], + [ + 52.4211595, + 13.5601334 + ], + [ + 52.4212796, + 13.560115 + ], + [ + 52.4213912, + 13.5600909 + ], + [ + 52.4215034, + 13.5600553 + ], + [ + 52.4216106, + 13.5600116 + ], + [ + 52.4217471, + 13.5599474 + ], + [ + 52.421907, + 13.5598741 + ], + [ + 52.4219878, + 13.559817 + ], + [ + 52.4220979, + 13.5597391 + ], + [ + 52.4221877, + 13.5596711 + ], + [ + 52.4222322, + 13.5596358 + ], + [ + 52.4222997, + 13.5595785 + ], + [ + 52.4223788, + 13.5595008 + ], + [ + 52.4224731, + 13.5593926 + ], + [ + 52.422541, + 13.5593064 + ], + [ + 52.4226489, + 13.5591559 + ], + [ + 52.4246546, + 13.5562789 + ], + [ + 52.4248214, + 13.5560397 + ], + [ + 52.4250325, + 13.5557942 + ] + ] + }, + { + "osmId": "22917404", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 125.66245320557417, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4350141, + 13.5408247 + ], + [ + 52.4349826, + 13.5408706 + ], + [ + 52.4348911, + 13.541004 + ], + [ + 52.4348048, + 13.5411325 + ], + [ + 52.4344, + 13.5416987 + ], + [ + 52.4341571, + 13.5420328 + ] + ] + }, + { + "osmId": "22917405", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2754.9848869128664, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3719176, + 13.4691936 + ], + [ + 52.3725348, + 13.4705857 + ], + [ + 52.372832, + 13.4712498 + ], + [ + 52.3734806, + 13.472729 + ], + [ + 52.3738682, + 13.4735884 + ], + [ + 52.3746892, + 13.4754453 + ], + [ + 52.3750987, + 13.4763705 + ], + [ + 52.3762297, + 13.4789306 + ], + [ + 52.376984, + 13.4806363 + ], + [ + 52.37774, + 13.4823507 + ], + [ + 52.3778703, + 13.4826455 + ], + [ + 52.3781607, + 13.4833025 + ], + [ + 52.3792815, + 13.4858428 + ], + [ + 52.379936, + 13.4873315 + ], + [ + 52.3803319, + 13.4882273 + ], + [ + 52.3811312, + 13.4900357 + ], + [ + 52.3829782, + 13.494215 + ], + [ + 52.3840881, + 13.4967212 + ], + [ + 52.3841248, + 13.4968039 + ], + [ + 52.3845011, + 13.4976607 + ], + [ + 52.3849185, + 13.4986052 + ], + [ + 52.3856828, + 13.5003345 + ], + [ + 52.3864576, + 13.5020571 + ] + ] + }, + { + "osmId": "22917406", + "name": null, + "lengthMeters": 439.8975755053441, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4186018, + 13.5637415 + ], + [ + 52.4191578, + 13.5627261 + ], + [ + 52.4193537, + 13.5623532 + ], + [ + 52.4195765, + 13.5620308 + ], + [ + 52.4198069, + 13.561739 + ], + [ + 52.4199908, + 13.5615268 + ], + [ + 52.4201523, + 13.5613442 + ], + [ + 52.4203032, + 13.5611978 + ], + [ + 52.4204812, + 13.5610519 + ], + [ + 52.4206185, + 13.5609223 + ], + [ + 52.4209276, + 13.560704 + ], + [ + 52.4212044, + 13.5605704 + ], + [ + 52.4212559, + 13.5605455 + ], + [ + 52.4214548, + 13.5604511 + ], + [ + 52.4216432, + 13.5603738 + ], + [ + 52.4216805, + 13.56036 + ], + [ + 52.4218398, + 13.5603011 + ] + ] + }, + { + "osmId": "22917407", + "name": null, + "lengthMeters": 127.05258662454244, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4218398, + 13.5603011 + ], + [ + 52.4220956, + 13.5602452 + ], + [ + 52.4223475, + 13.5602163 + ], + [ + 52.4225063, + 13.5602093 + ], + [ + 52.4226647, + 13.5602112 + ], + [ + 52.4229791, + 13.5602363 + ] + ] + }, + { + "osmId": "22917408", + "name": null, + "lengthMeters": 124.3524295916751, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4229791, + 13.5602363 + ], + [ + 52.4231415, + 13.5602614 + ], + [ + 52.4232541, + 13.5602991 + ], + [ + 52.4233788, + 13.5603468 + ], + [ + 52.423542, + 13.5604091 + ], + [ + 52.4240673, + 13.5606452 + ] + ] + }, + { + "osmId": "22917409", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 112.021299855795, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4221322, + 13.5596233 + ], + [ + 52.4230934, + 13.560118 + ] + ] + }, + { + "osmId": "22917410", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 114.04075311226134, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4230934, + 13.560118 + ], + [ + 52.4240673, + 13.5606452 + ] + ] + }, + { + "osmId": "22917412", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 300.8048459433859, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4196542, + 13.5578651 + ], + [ + 52.4196978, + 13.5579021 + ], + [ + 52.420242, + 13.5583637 + ], + [ + 52.4207513, + 13.5587824 + ], + [ + 52.4212586, + 13.5591277 + ], + [ + 52.4214732, + 13.5592477 + ], + [ + 52.4216302, + 13.5593372 + ], + [ + 52.4221322, + 13.5596233 + ] + ] + }, + { + "osmId": "22917458", + "name": null, + "lengthMeters": 256.30753700875283, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4171778, + 13.555932 + ], + [ + 52.4172894, + 13.5561042 + ], + [ + 52.4174064, + 13.5562821 + ], + [ + 52.4174948, + 13.5564356 + ], + [ + 52.4176209, + 13.5566573 + ], + [ + 52.417775, + 13.5569759 + ], + [ + 52.4178905, + 13.5572447 + ], + [ + 52.4180088, + 13.5575426 + ], + [ + 52.4181397, + 13.5579225 + ], + [ + 52.4182388, + 13.5582496 + ], + [ + 52.4183113, + 13.5585458 + ], + [ + 52.4183527, + 13.5587367 + ], + [ + 52.4184166, + 13.559058 + ] + ] + }, + { + "osmId": "22917460", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 196.9987315713916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4168282, + 13.5553444 + ], + [ + 52.4165581, + 13.5550963 + ], + [ + 52.4152632, + 13.5539833 + ] + ] + }, + { + "osmId": "22917463", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 304.2260639409412, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4170447, + 13.5555965 + ], + [ + 52.4171326, + 13.5556727 + ], + [ + 52.417157, + 13.5556943 + ], + [ + 52.4176699, + 13.5561411 + ], + [ + 52.4189898, + 13.5572922 + ], + [ + 52.4192278, + 13.5574961 + ], + [ + 52.4194622, + 13.557697 + ] + ] + }, + { + "osmId": "22917549", + "name": null, + "lengthMeters": 2981.827099562128, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3718623, + 13.4693292 + ], + [ + 52.3723334, + 13.4703945 + ], + [ + 52.3723635, + 13.4704617 + ], + [ + 52.3724618, + 13.4706814 + ], + [ + 52.3734229, + 13.4728422 + ], + [ + 52.3734317, + 13.4728621 + ], + [ + 52.3744715, + 13.4752082 + ], + [ + 52.3755186, + 13.4775809 + ], + [ + 52.3765573, + 13.4799336 + ], + [ + 52.3776133, + 13.482325 + ], + [ + 52.3786646, + 13.4847046 + ], + [ + 52.3797098, + 13.4870706 + ], + [ + 52.3798689, + 13.4874307 + ], + [ + 52.3807879, + 13.4895122 + ], + [ + 52.3818291, + 13.4918707 + ], + [ + 52.382886, + 13.4942648 + ], + [ + 52.3829816, + 13.4944828 + ], + [ + 52.3839142, + 13.4965903 + ], + [ + 52.3849613, + 13.4989692 + ], + [ + 52.3854859, + 13.5001519 + ], + [ + 52.3859268, + 13.5011416 + ], + [ + 52.3864139, + 13.5022182 + ], + [ + 52.3870293, + 13.5035602 + ], + [ + 52.3874802, + 13.5045207 + ], + [ + 52.3876369, + 13.5048536 + ] + ] + }, + { + "osmId": "22917894", + "name": null, + "lengthMeters": 139.19515823769626, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4272395, + 13.5528558 + ], + [ + 52.4270988, + 13.5532283 + ], + [ + 52.426993, + 13.5535952 + ], + [ + 52.426912, + 13.5539443 + ], + [ + 52.426859, + 13.5542761 + ], + [ + 52.4268337, + 13.5545242 + ], + [ + 52.4268147, + 13.554763 + ] + ] + }, + { + "osmId": "22917895", + "name": null, + "lengthMeters": 763.448362336753, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4292381, + 13.5623478 + ], + [ + 52.4292516, + 13.5623591 + ], + [ + 52.4293981, + 13.5624813 + ], + [ + 52.4295418, + 13.5625988 + ], + [ + 52.4297698, + 13.5627441 + ], + [ + 52.430004, + 13.562887 + ], + [ + 52.4302247, + 13.562997 + ], + [ + 52.4304679, + 13.5630921 + ], + [ + 52.4307422, + 13.5631781 + ], + [ + 52.4310297, + 13.563231 + ], + [ + 52.4312544, + 13.5632531 + ], + [ + 52.4316828, + 13.5632774 + ], + [ + 52.4319507, + 13.5632581 + ], + [ + 52.4321751, + 13.5632213 + ], + [ + 52.4324077, + 13.5631531 + ], + [ + 52.4326357, + 13.5630542 + ], + [ + 52.4330214, + 13.5628456 + ], + [ + 52.4332216, + 13.5626968 + ], + [ + 52.4344653, + 13.561839 + ], + [ + 52.4346583, + 13.5617006 + ], + [ + 52.4348596, + 13.5615457 + ], + [ + 52.4350113, + 13.5614411 + ], + [ + 52.4353165, + 13.5612306 + ], + [ + 52.4357386, + 13.560936 + ] + ] + }, + { + "osmId": "22917983", + "name": null, + "lengthMeters": 343.57600639614367, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4311257, + 13.5467574 + ], + [ + 52.4310145, + 13.5469986 + ], + [ + 52.4308379, + 13.5473312 + ], + [ + 52.4305762, + 13.5477067 + ], + [ + 52.4301195, + 13.5483257 + ], + [ + 52.4298694, + 13.5486867 + ], + [ + 52.4296246, + 13.5490676 + ], + [ + 52.4288966, + 13.5502528 + ] + ] + }, + { + "osmId": "22917985", + "name": null, + "lengthMeters": 186.46032192449866, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4287313, + 13.5505297 + ], + [ + 52.4285194, + 13.5508627 + ], + [ + 52.4284399, + 13.5509875 + ], + [ + 52.4281611, + 13.5514156 + ], + [ + 52.4278028, + 13.5518872 + ], + [ + 52.4275948, + 13.5521919 + ], + [ + 52.4274915, + 13.5523517 + ], + [ + 52.4274838, + 13.5523648 + ] + ] + }, + { + "osmId": "22917986", + "name": null, + "lengthMeters": 709.3415823779067, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4256672, + 13.5545601 + ], + [ + 52.425227, + 13.5551662 + ], + [ + 52.4249568, + 13.5554746 + ], + [ + 52.4247042, + 13.5557302 + ], + [ + 52.4244063, + 13.5559622 + ], + [ + 52.4241457, + 13.5561478 + ], + [ + 52.4236494, + 13.556407 + ], + [ + 52.4233551, + 13.5565202 + ], + [ + 52.4230192, + 13.5565917 + ], + [ + 52.422677, + 13.5566332 + ], + [ + 52.42178, + 13.5566464 + ], + [ + 52.4196175, + 13.5566588 + ] + ] + }, + { + "osmId": "22917993", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 378.0343039872107, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.428486, + 13.5502121 + ], + [ + 52.4281574, + 13.5507072 + ], + [ + 52.4278309, + 13.5511998 + ], + [ + 52.4277547, + 13.551323 + ], + [ + 52.4273253, + 13.552049 + ], + [ + 52.4269189, + 13.5527843 + ], + [ + 52.4265009, + 13.5535114 + ], + [ + 52.4260821, + 13.5541495 + ] + ] + }, + { + "osmId": "22917994", + "name": null, + "lengthMeters": 385.39503849790077, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4261303, + 13.5543863 + ], + [ + 52.4264646, + 13.5538871 + ], + [ + 52.4268996, + 13.5531254 + ], + [ + 52.4275335, + 13.5519887 + ], + [ + 52.4279108, + 13.5513559 + ], + [ + 52.4285783, + 13.5503695 + ] + ] + }, + { + "osmId": "22918371", + "name": null, + "lengthMeters": 81.88922770001099, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4138663, + 13.5716679 + ], + [ + 52.413606, + 13.5720656 + ], + [ + 52.4134774, + 13.5722467 + ], + [ + 52.4133182, + 13.572474 + ] + ] + }, + { + "osmId": "22930485", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 105.05434901130963, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1125175, + 11.5361872 + ], + [ + 48.1118399, + 11.536213 + ], + [ + 48.1118087, + 11.536214 + ], + [ + 48.111573, + 11.5362213 + ] + ] + }, + { + "osmId": "22945402", + "name": null, + "lengthMeters": 990.6714084411537, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4038743, + 13.5870311 + ], + [ + 52.4045862, + 13.5859436 + ], + [ + 52.4047884, + 13.5856347 + ], + [ + 52.4058663, + 13.5840087 + ], + [ + 52.4060692, + 13.5837026 + ], + [ + 52.4065976, + 13.5828436 + ], + [ + 52.4067071, + 13.5826678 + ], + [ + 52.4070974, + 13.5820415 + ], + [ + 52.4075623, + 13.5814055 + ], + [ + 52.4076771, + 13.5812644 + ], + [ + 52.4079817, + 13.5808899 + ], + [ + 52.4084299, + 13.5803314 + ], + [ + 52.4098035, + 13.5783233 + ], + [ + 52.4103605, + 13.577467 + ], + [ + 52.4104954, + 13.577275 + ] + ] + }, + { + "osmId": "22945404", + "name": null, + "lengthMeters": 851.6988384050892, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4161814, + 13.5686383 + ], + [ + 52.4163634, + 13.5683147 + ], + [ + 52.4165445, + 13.568005 + ], + [ + 52.4167173, + 13.5677361 + ], + [ + 52.4169485, + 13.5674212 + ], + [ + 52.4173079, + 13.5670075 + ], + [ + 52.4176901, + 13.5666063 + ], + [ + 52.4181601, + 13.5661682 + ], + [ + 52.4184495, + 13.5658673 + ], + [ + 52.4188032, + 13.5654389 + ], + [ + 52.4191284, + 13.5649934 + ], + [ + 52.4196117, + 13.5642814 + ], + [ + 52.4202361, + 13.5633721 + ], + [ + 52.4205725, + 13.562833 + ], + [ + 52.4209116, + 13.5622204 + ], + [ + 52.4211852, + 13.5617169 + ], + [ + 52.4214227, + 13.5613034 + ], + [ + 52.4217549, + 13.5607928 + ], + [ + 52.4218396, + 13.5606607 + ], + [ + 52.4219342, + 13.5605133 + ], + [ + 52.4219564, + 13.5604787 + ] + ] + }, + { + "osmId": "22945406", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 1070.3020301263334, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4175874, + 13.5657077 + ], + [ + 52.4179233, + 13.5651396 + ], + [ + 52.4182032, + 13.5646607 + ], + [ + 52.4187855, + 13.5638676 + ], + [ + 52.4188313, + 13.5638053 + ], + [ + 52.4192957, + 13.563323 + ], + [ + 52.4203803, + 13.5622858 + ], + [ + 52.4204759, + 13.5621764 + ], + [ + 52.421495, + 13.5610093 + ], + [ + 52.4217911, + 13.5605741 + ], + [ + 52.4221583, + 13.5600345 + ], + [ + 52.4222664, + 13.5598756 + ], + [ + 52.4225209, + 13.5595001 + ], + [ + 52.4226324, + 13.5593356 + ], + [ + 52.4245931, + 13.5564426 + ], + [ + 52.4250325, + 13.5557942 + ] + ] + }, + { + "osmId": "22945408", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 222.56861633691275, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4160337, + 13.5685169 + ], + [ + 52.4173755, + 13.5660817 + ] + ] + }, + { + "osmId": "22945411", + "name": null, + "lengthMeters": 192.00714651213838, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4170642, + 13.566301 + ], + [ + 52.4163257, + 13.5676769 + ], + [ + 52.4159234, + 13.5684263 + ] + ] + }, + { + "osmId": "22945415", + "name": null, + "lengthMeters": 278.0268340551047, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4155051, + 13.5685861 + ], + [ + 52.4152384, + 13.5692133 + ], + [ + 52.4150016, + 13.5697259 + ], + [ + 52.4148567, + 13.5700072 + ], + [ + 52.414719, + 13.5702643 + ], + [ + 52.4143811, + 13.5708467 + ], + [ + 52.4138663, + 13.5716679 + ] + ] + }, + { + "osmId": "22945624", + "name": null, + "lengthMeters": 223.15052188950204, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4174272, + 13.5661094 + ], + [ + 52.4174234, + 13.5661164 + ], + [ + 52.4174201, + 13.5661224 + ], + [ + 52.4172806, + 13.5663786 + ], + [ + 52.416598, + 13.5676317 + ], + [ + 52.4160904, + 13.5685635 + ] + ] + }, + { + "osmId": "22945626", + "name": null, + "lengthMeters": 236.95542205194602, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4159377, + 13.5688396 + ], + [ + 52.4153977, + 13.5697956 + ], + [ + 52.4153486, + 13.5698825 + ], + [ + 52.4148992, + 13.570622 + ], + [ + 52.4146791, + 13.5709289 + ], + [ + 52.4146419, + 13.5709807 + ], + [ + 52.4144234, + 13.5712922 + ] + ] + }, + { + "osmId": "22945628", + "name": null, + "lengthMeters": 455.81816237515613, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4209989, + 13.5617183 + ], + [ + 52.4209405, + 13.5617922 + ], + [ + 52.4208547, + 13.5619007 + ], + [ + 52.4206635, + 13.5621426 + ], + [ + 52.4202421, + 13.562634 + ], + [ + 52.4200741, + 13.5627982 + ], + [ + 52.4200547, + 13.5628171 + ], + [ + 52.4198587, + 13.5630102 + ], + [ + 52.4196029, + 13.5632246 + ], + [ + 52.4189661, + 13.5638014 + ], + [ + 52.4187789, + 13.564023 + ], + [ + 52.4185415, + 13.5643039 + ], + [ + 52.4182402, + 13.5647283 + ], + [ + 52.4179558, + 13.5651988 + ], + [ + 52.4177349, + 13.5655663 + ], + [ + 52.4176946, + 13.5656333 + ] + ] + }, + { + "osmId": "22945629", + "name": null, + "lengthMeters": 897.4681353371258, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4201563, + 13.5628344 + ], + [ + 52.4200452, + 13.5629773 + ], + [ + 52.4197054, + 13.5634219 + ], + [ + 52.4195072, + 13.5636787 + ], + [ + 52.4189909, + 13.5643462 + ], + [ + 52.4188032, + 13.5645788 + ], + [ + 52.4185698, + 13.5648617 + ], + [ + 52.4183785, + 13.5650686 + ], + [ + 52.4181805, + 13.5652673 + ], + [ + 52.4180299, + 13.5654039 + ], + [ + 52.4179103, + 13.5655045 + ], + [ + 52.4177421, + 13.565635 + ], + [ + 52.4171906, + 13.5660006 + ], + [ + 52.4170404, + 13.5660802 + ], + [ + 52.4169543, + 13.5661227 + ], + [ + 52.4168367, + 13.56618 + ], + [ + 52.4166297, + 13.5662694 + ], + [ + 52.4163137, + 13.5663848 + ], + [ + 52.4161102, + 13.5664479 + ], + [ + 52.4159351, + 13.5664895 + ], + [ + 52.4157442, + 13.566528 + ], + [ + 52.4154086, + 13.5665621 + ], + [ + 52.4152766, + 13.5665644 + ], + [ + 52.4150639, + 13.5665546 + ], + [ + 52.4148982, + 13.5665347 + ], + [ + 52.4146768, + 13.5664899 + ], + [ + 52.4143799, + 13.566405 + ], + [ + 52.4140899, + 13.5663025 + ], + [ + 52.4138969, + 13.5662247 + ], + [ + 52.4134464, + 13.5660061 + ], + [ + 52.4131195, + 13.5658139 + ], + [ + 52.4128036, + 13.5655991 + ] + ] + }, + { + "osmId": "22945695", + "name": null, + "lengthMeters": 189.79971511571753, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4285505, + 13.550322 + ], + [ + 52.4282187, + 13.5508106 + ], + [ + 52.4278804, + 13.5513193 + ], + [ + 52.4275105, + 13.5519495 + ], + [ + 52.4273324, + 13.5522793 + ] + ] + }, + { + "osmId": "22945696", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 107.92317112072661, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4250325, + 13.5557942 + ], + [ + 52.4250672, + 13.5557422 + ], + [ + 52.4257492, + 13.5547209 + ] + ] + }, + { + "osmId": "22945698", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 378.1986343931725, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4261071, + 13.5541953 + ], + [ + 52.4265043, + 13.5535867 + ], + [ + 52.4268615, + 13.5529855 + ], + [ + 52.4274977, + 13.5518338 + ], + [ + 52.4278531, + 13.5512536 + ], + [ + 52.4280655, + 13.550935 + ], + [ + 52.4281866, + 13.5507533 + ], + [ + 52.4285157, + 13.5502627 + ] + ] + }, + { + "osmId": "22945700", + "name": null, + "lengthMeters": 703.1132705968066, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4257501, + 13.5548786 + ], + [ + 52.4250912, + 13.5558419 + ], + [ + 52.4247291, + 13.5563585 + ], + [ + 52.4238271, + 13.5576731 + ], + [ + 52.4226927, + 13.5593269 + ], + [ + 52.4223045, + 13.5599261 + ], + [ + 52.4220351, + 13.5603036 + ], + [ + 52.4217718, + 13.5606727 + ], + [ + 52.4216038, + 13.5609081 + ], + [ + 52.4210035, + 13.5617121 + ], + [ + 52.4209989, + 13.5617183 + ] + ] + }, + { + "osmId": "22945744", + "name": null, + "lengthMeters": 259.52497729809755, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4277547, + 13.551323 + ], + [ + 52.4268712, + 13.5526979 + ], + [ + 52.4263536, + 13.5535359 + ], + [ + 52.426072, + 13.5539752 + ] + ] + }, + { + "osmId": "22955302", + "name": null, + "lengthMeters": 171.53749687394796, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4144234, + 13.5712922 + ], + [ + 52.4141539, + 13.5716578 + ], + [ + 52.4140149, + 13.5718594 + ], + [ + 52.4133124, + 13.5727615 + ], + [ + 52.4132219, + 13.5728777 + ] + ] + }, + { + "osmId": "22955303", + "name": null, + "lengthMeters": 1091.9905386284884, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.403793, + 13.5869295 + ], + [ + 52.4050778, + 13.5850099 + ], + [ + 52.4056436, + 13.5841184 + ], + [ + 52.4057712, + 13.583909 + ], + [ + 52.4057755, + 13.5839022 + ], + [ + 52.4062899, + 13.5830421 + ], + [ + 52.4068021, + 13.5821858 + ], + [ + 52.4077203, + 13.5806446 + ], + [ + 52.408135, + 13.5799376 + ], + [ + 52.4085526, + 13.5792462 + ], + [ + 52.4087765, + 13.5788754 + ], + [ + 52.4092149, + 13.5781835 + ], + [ + 52.4094781, + 13.5777682 + ], + [ + 52.4100987, + 13.5768968 + ], + [ + 52.4106665, + 13.5761562 + ], + [ + 52.4109039, + 13.5758465 + ] + ] + }, + { + "osmId": "22955305", + "name": null, + "lengthMeters": 405.5136368313545, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.413194, + 13.5728233 + ], + [ + 52.4139613, + 13.5718118 + ], + [ + 52.4139803, + 13.5717852 + ], + [ + 52.4144188, + 13.5711723 + ], + [ + 52.414849, + 13.5705272 + ], + [ + 52.4152919, + 13.5698219 + ], + [ + 52.4157651, + 13.5689979 + ], + [ + 52.4158819, + 13.5687946 + ] + ] + }, + { + "osmId": "22955307", + "name": null, + "lengthMeters": 200.35799008632807, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4130234, + 13.5731395 + ], + [ + 52.4128712, + 13.5733386 + ], + [ + 52.4128513, + 13.5733642 + ], + [ + 52.4122747, + 13.5741219 + ], + [ + 52.4121896, + 13.5742347 + ], + [ + 52.412038, + 13.5744358 + ], + [ + 52.4119835, + 13.5745073 + ], + [ + 52.4119168, + 13.5745947 + ], + [ + 52.4117871, + 13.5747649 + ], + [ + 52.4117458, + 13.5748222 + ], + [ + 52.4116213, + 13.5749947 + ] + ] + }, + { + "osmId": "22955312", + "name": null, + "lengthMeters": 248.83229545448896, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4144552, + 13.5715155 + ], + [ + 52.4145847, + 13.5713472 + ], + [ + 52.4147124, + 13.5711676 + ], + [ + 52.4149979, + 13.5707659 + ], + [ + 52.4154308, + 13.5700161 + ], + [ + 52.416017, + 13.5689341 + ], + [ + 52.4160274, + 13.5689149 + ] + ] + }, + { + "osmId": "22955323", + "name": null, + "lengthMeters": 268.49626975610045, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4157735, + 13.5687011 + ], + [ + 52.4156789, + 13.5688672 + ], + [ + 52.4154753, + 13.5692231 + ], + [ + 52.4147704, + 13.5703792 + ], + [ + 52.4144594, + 13.5708777 + ], + [ + 52.4143608, + 13.5710312 + ], + [ + 52.41418, + 13.5713014 + ], + [ + 52.4140589, + 13.5714871 + ] + ] + }, + { + "osmId": "22955557", + "name": null, + "lengthMeters": 4017.3401968732733, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.403722, + 13.5871395 + ], + [ + 52.4034807, + 13.587502 + ], + [ + 52.4033847, + 13.5876463 + ], + [ + 52.4032936, + 13.5877831 + ], + [ + 52.4023013, + 13.5892741 + ], + [ + 52.4004861, + 13.5920015 + ], + [ + 52.3993142, + 13.5937622 + ], + [ + 52.3969703, + 13.5973004 + ], + [ + 52.3965143, + 13.5979289 + ], + [ + 52.3961522, + 13.5983939 + ], + [ + 52.3958795, + 13.5987059 + ], + [ + 52.3957486, + 13.5988556 + ], + [ + 52.3951739, + 13.5994569 + ], + [ + 52.3949795, + 13.5996307 + ], + [ + 52.3945802, + 13.6000034 + ], + [ + 52.3941938, + 13.6003367 + ], + [ + 52.3936344, + 13.6007952 + ], + [ + 52.3932695, + 13.6010729 + ], + [ + 52.3929382, + 13.6013014 + ], + [ + 52.3926096, + 13.6015176 + ], + [ + 52.3919649, + 13.6019322 + ], + [ + 52.3911958, + 13.6024235 + ], + [ + 52.3893897, + 13.6035779 + ], + [ + 52.3875443, + 13.6047816 + ], + [ + 52.3860316, + 13.6057526 + ], + [ + 52.3839109, + 13.6071212 + ], + [ + 52.3813648, + 13.6087642 + ], + [ + 52.3795851, + 13.6099018 + ], + [ + 52.3791749, + 13.6101664 + ], + [ + 52.3784206, + 13.6106531 + ], + [ + 52.3767321, + 13.6117253 + ], + [ + 52.3758861, + 13.6122791 + ], + [ + 52.3757539, + 13.6123657 + ], + [ + 52.375698, + 13.6124019 + ], + [ + 52.3756416, + 13.6124384 + ], + [ + 52.3755114, + 13.6125219 + ], + [ + 52.3753642, + 13.6126155 + ], + [ + 52.3722528, + 13.6146296 + ] + ] + }, + { + "osmId": "22957552", + "name": null, + "lengthMeters": 114.2596558366954, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.558874, + 13.4132561 + ], + [ + 52.5589417, + 13.413247 + ], + [ + 52.5589794, + 13.4132422 + ], + [ + 52.5591509, + 13.4132251 + ], + [ + 52.5597069, + 13.4131689 + ], + [ + 52.5597676, + 13.4131664 + ], + [ + 52.5598998, + 13.413161 + ] + ] + }, + { + "osmId": "22962554", + "name": null, + "lengthMeters": 85.53615604673644, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5218164, + 13.4083846 + ], + [ + 52.5220614, + 13.4088838 + ], + [ + 52.5221426, + 13.4090743 + ], + [ + 52.5221645, + 13.4091534 + ], + [ + 52.5221776, + 13.4092447 + ], + [ + 52.5221823, + 13.4093037 + ], + [ + 52.5221756, + 13.4093774 + ], + [ + 52.522162, + 13.4094496 + ] + ] + }, + { + "osmId": "22962555", + "name": null, + "lengthMeters": 158.89756604458807, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.523487, + 13.4163718 + ], + [ + 52.5236192, + 13.4165388 + ], + [ + 52.5236444, + 13.4165706 + ], + [ + 52.5237693, + 13.416727 + ], + [ + 52.5238418, + 13.416819 + ], + [ + 52.5243118, + 13.417416 + ], + [ + 52.5243536, + 13.4174694 + ], + [ + 52.5243925, + 13.4175484 + ], + [ + 52.5244066, + 13.4176015 + ], + [ + 52.5244172, + 13.4176414 + ], + [ + 52.52443, + 13.4177531 + ], + [ + 52.5244267, + 13.4178486 + ], + [ + 52.5244141, + 13.4179237 + ], + [ + 52.5243982, + 13.4179779 + ] + ] + }, + { + "osmId": "22965522", + "name": null, + "lengthMeters": 125.91753878930777, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5836698, + 13.3911037 + ], + [ + 52.5835572, + 13.3911996 + ], + [ + 52.5832027, + 13.3915437 + ], + [ + 52.5830523, + 13.3916898 + ], + [ + 52.5830055, + 13.3917366 + ], + [ + 52.5829558, + 13.3917886 + ], + [ + 52.5828768, + 13.3918716 + ], + [ + 52.5828018, + 13.3919439 + ], + [ + 52.5826945, + 13.3920498 + ] + ] + }, + { + "osmId": "22965523", + "name": null, + "lengthMeters": 449.96715985111956, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5836698, + 13.3911037 + ], + [ + 52.5837889, + 13.391022 + ], + [ + 52.5837923, + 13.3910197 + ], + [ + 52.583851, + 13.390985 + ], + [ + 52.5838972, + 13.3909627 + ], + [ + 52.5839805, + 13.3909241 + ], + [ + 52.5840148, + 13.3909053 + ], + [ + 52.5843131, + 13.3907345 + ], + [ + 52.5843672, + 13.3907035 + ], + [ + 52.5844772, + 13.3906423 + ], + [ + 52.5848702, + 13.3904233 + ], + [ + 52.5851216, + 13.3902792 + ], + [ + 52.5851911, + 13.3902388 + ], + [ + 52.5852693, + 13.390196 + ], + [ + 52.5853295, + 13.3901617 + ], + [ + 52.5856796, + 13.3899621 + ], + [ + 52.5860475, + 13.3897525 + ], + [ + 52.5861267, + 13.3897095 + ], + [ + 52.5862172, + 13.3896575 + ], + [ + 52.5863496, + 13.3895837 + ], + [ + 52.5866751, + 13.3894004 + ], + [ + 52.5869189, + 13.3892606 + ], + [ + 52.5871136, + 13.3891528 + ], + [ + 52.5872735, + 13.3890608 + ], + [ + 52.5874059, + 13.3889829 + ], + [ + 52.5874946, + 13.3889313 + ] + ] + }, + { + "osmId": "22983044", + "name": null, + "lengthMeters": 671.8197402111791, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6203119, + 9.8589288 + ], + [ + 53.6203032, + 9.8589454 + ], + [ + 53.6183876, + 9.8626123 + ], + [ + 53.6169022, + 9.8654943 + ], + [ + 53.616334, + 9.8665953 + ] + ] + }, + { + "osmId": "22983046", + "name": null, + "lengthMeters": 1682.3547031405499, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6310214, + 9.8375906 + ], + [ + 53.6302505, + 9.8390413 + ], + [ + 53.6296181, + 9.8403124 + ], + [ + 53.62952, + 9.8405073 + ], + [ + 53.6278403, + 9.8438922 + ], + [ + 53.6263727, + 9.8468677 + ], + [ + 53.6237846, + 9.8519493 + ], + [ + 53.6227319, + 9.8540167 + ], + [ + 53.6223261, + 9.8547867 + ], + [ + 53.6220435, + 9.8553193 + ], + [ + 53.621189, + 9.8568339 + ], + [ + 53.6211458, + 9.8569123 + ] + ] + }, + { + "osmId": "22999565", + "name": null, + "lengthMeters": 1743.6572702626563, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243986, + 13.537103 + ], + [ + 52.523842, + 13.537257 + ], + [ + 52.5233362, + 13.5374026 + ], + [ + 52.5231471, + 13.53746 + ], + [ + 52.5228111, + 13.5375621 + ], + [ + 52.5221569, + 13.5377404 + ], + [ + 52.5215835, + 13.5378742 + ], + [ + 52.5212917, + 13.5379354 + ], + [ + 52.5209534, + 13.5379974 + ], + [ + 52.5207181, + 13.5380389 + ], + [ + 52.5206305, + 13.5380515 + ], + [ + 52.520345, + 13.5380925 + ], + [ + 52.5199981, + 13.5381293 + ], + [ + 52.5199402, + 13.5381354 + ], + [ + 52.5195285, + 13.5381359 + ], + [ + 52.5192707, + 13.5381156 + ], + [ + 52.5189247, + 13.5380437 + ], + [ + 52.5186174, + 13.5379666 + ], + [ + 52.5183942, + 13.5378865 + ], + [ + 52.5181792, + 13.5377903 + ], + [ + 52.5179565, + 13.5376745 + ], + [ + 52.5177274, + 13.5375328 + ], + [ + 52.5175362, + 13.537403 + ], + [ + 52.5173458, + 13.5372597 + ], + [ + 52.5170767, + 13.5370219 + ], + [ + 52.5168227, + 13.5367817 + ], + [ + 52.5165984, + 13.536536 + ], + [ + 52.5163832, + 13.536281 + ], + [ + 52.5161548, + 13.5359643 + ], + [ + 52.5159289, + 13.5356391 + ], + [ + 52.515606, + 13.5350816 + ], + [ + 52.5153447, + 13.5345264 + ], + [ + 52.5151929, + 13.5341776 + ], + [ + 52.515023, + 13.5337123 + ], + [ + 52.5148589, + 13.5332076 + ], + [ + 52.5147426, + 13.5327977 + ], + [ + 52.5146352, + 13.5323533 + ], + [ + 52.514546, + 13.5319176 + ], + [ + 52.5144844, + 13.5315699 + ], + [ + 52.5144213, + 13.5311666 + ], + [ + 52.5143912, + 13.5309398 + ], + [ + 52.5143684, + 13.5307237 + ], + [ + 52.5143345, + 13.5302891 + ], + [ + 52.5142966, + 13.5296734 + ], + [ + 52.5142677, + 13.5290142 + ], + [ + 52.5142526, + 13.5286155 + ], + [ + 52.5142401, + 13.5281443 + ], + [ + 52.5142294, + 13.5276393 + ], + [ + 52.5142346, + 13.5263315 + ], + [ + 52.514256, + 13.525249 + ] + ] + }, + { + "osmId": "22999646", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 178.43022008662092, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008518, + 13.479341 + ], + [ + 52.500931, + 13.4790576 + ], + [ + 52.5010278, + 13.4787099 + ], + [ + 52.5011732, + 13.4781512 + ], + [ + 52.501304, + 13.4776009 + ], + [ + 52.5013841, + 13.477229 + ], + [ + 52.5014419, + 13.4769516 + ], + [ + 52.5014519, + 13.4768983 + ] + ] + }, + { + "osmId": "23009761", + "name": null, + "lengthMeters": 810.4349229555933, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4287708, + 13.5500816 + ], + [ + 52.429115, + 13.5495634 + ], + [ + 52.4311908, + 13.5464441 + ], + [ + 52.4315715, + 13.5458822 + ], + [ + 52.4318036, + 13.545537 + ], + [ + 52.4321637, + 13.5450108 + ], + [ + 52.432527, + 13.5444977 + ], + [ + 52.4328447, + 13.5440724 + ], + [ + 52.4333377, + 13.5434461 + ], + [ + 52.4338327, + 13.5428689 + ], + [ + 52.4342913, + 13.5422929 + ] + ] + }, + { + "osmId": "23009813", + "name": null, + "lengthMeters": 630.2208629853275, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4361014, + 13.5606788 + ], + [ + 52.4367412, + 13.5602631 + ], + [ + 52.4371161, + 13.5600204 + ], + [ + 52.4375691, + 13.5597644 + ], + [ + 52.4380156, + 13.5595475 + ], + [ + 52.4384291, + 13.5593742 + ], + [ + 52.4387034, + 13.5592832 + ], + [ + 52.4390007, + 13.5592035 + ], + [ + 52.4394019, + 13.5591179 + ], + [ + 52.4398616, + 13.5590717 + ], + [ + 52.4400328, + 13.5590582 + ], + [ + 52.4402132, + 13.559044 + ], + [ + 52.4410463, + 13.5589732 + ], + [ + 52.441618, + 13.5589246 + ] + ] + }, + { + "osmId": "23009815", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1066.0158023871588, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4365585, + 13.5619795 + ], + [ + 52.4359456, + 13.5623108 + ], + [ + 52.4352782, + 13.5626331 + ], + [ + 52.4346456, + 13.5628749 + ], + [ + 52.4338068, + 13.5631174 + ], + [ + 52.4332034, + 13.563254 + ], + [ + 52.4330478, + 13.5632723 + ], + [ + 52.432698, + 13.5633136 + ], + [ + 52.4321558, + 13.5633451 + ], + [ + 52.4320342, + 13.5633522 + ], + [ + 52.43137, + 13.5633492 + ], + [ + 52.4300227, + 13.5632177 + ], + [ + 52.429866, + 13.5631956 + ], + [ + 52.4294727, + 13.5631401 + ], + [ + 52.428991, + 13.5630341 + ], + [ + 52.4289847, + 13.5630321 + ], + [ + 52.4285305, + 13.5628853 + ], + [ + 52.4281689, + 13.562742 + ], + [ + 52.4281362, + 13.562729 + ], + [ + 52.4271414, + 13.5622453 + ] + ] + }, + { + "osmId": "23009966", + "name": null, + "lengthMeters": 126.50525653521134, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5756784, + 13.3734618 + ], + [ + 52.5749141, + 13.3748485 + ] + ] + }, + { + "osmId": "23010010", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 562.2578417259276, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4368978, + 13.5618261 + ], + [ + 52.4371367, + 13.5616731 + ], + [ + 52.437258, + 13.5615866 + ], + [ + 52.4375445, + 13.5613746 + ], + [ + 52.4384687, + 13.5606893 + ], + [ + 52.438783, + 13.5604705 + ], + [ + 52.439103, + 13.5602623 + ], + [ + 52.4394643, + 13.5600469 + ], + [ + 52.4395143, + 13.5600186 + ], + [ + 52.4397789, + 13.5598804 + ], + [ + 52.4405164, + 13.5595383 + ], + [ + 52.4405639, + 13.5595163 + ], + [ + 52.4411055, + 13.55931 + ], + [ + 52.4413656, + 13.5592306 + ], + [ + 52.4416623, + 13.5591364 + ] + ] + }, + { + "osmId": "23010015", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 563.9704162476937, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4416499, + 13.5590771 + ], + [ + 52.441358, + 13.5591682 + ], + [ + 52.4410951, + 13.559256 + ], + [ + 52.4405507, + 13.559452 + ], + [ + 52.4397672, + 13.5598152 + ], + [ + 52.4395035, + 13.5599587 + ], + [ + 52.4394489, + 13.5599894 + ], + [ + 52.4390897, + 13.5601993 + ], + [ + 52.4384538, + 13.5606279 + ], + [ + 52.4375337, + 13.5613175 + ], + [ + 52.4372452, + 13.5615255 + ], + [ + 52.4371221, + 13.5616109 + ], + [ + 52.4368707, + 13.5617734 + ] + ] + }, + { + "osmId": "23010017", + "name": null, + "lengthMeters": 226.2338796568419, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4418823, + 13.5589087 + ], + [ + 52.4422738, + 13.5588573 + ], + [ + 52.4425777, + 13.5588063 + ], + [ + 52.4427991, + 13.5587744 + ], + [ + 52.443113, + 13.5587468 + ], + [ + 52.4431808, + 13.5587408 + ], + [ + 52.4434526, + 13.5587473 + ], + [ + 52.4439126, + 13.5587497 + ] + ] + }, + { + "osmId": "23010018", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1070.8033443870854, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4271298, + 13.562308 + ], + [ + 52.4280769, + 13.5627725 + ], + [ + 52.4281601, + 13.5628054 + ], + [ + 52.4285273, + 13.5629506 + ], + [ + 52.4289733, + 13.5631022 + ], + [ + 52.4295131, + 13.5632159 + ], + [ + 52.4300207, + 13.563283 + ], + [ + 52.4313723, + 13.5634191 + ], + [ + 52.4320297, + 13.5634265 + ], + [ + 52.4320613, + 13.5634246 + ], + [ + 52.4326957, + 13.5633854 + ], + [ + 52.4330523, + 13.5633367 + ], + [ + 52.4332065, + 13.5633156 + ], + [ + 52.4338105, + 13.5631916 + ], + [ + 52.4346601, + 13.5629444 + ], + [ + 52.43529, + 13.5626967 + ], + [ + 52.4359637, + 13.5623684 + ], + [ + 52.4365892, + 13.5620418 + ] + ] + }, + { + "osmId": "23010021", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 328.57570351519485, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4419312, + 13.5590684 + ], + [ + 52.4422801, + 13.5589974 + ], + [ + 52.4428868, + 13.5588997 + ], + [ + 52.4433181, + 13.5588524 + ], + [ + 52.4436433, + 13.5588276 + ], + [ + 52.4448779, + 13.5587329 + ] + ] + }, + { + "osmId": "23010025", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 244.4814147645279, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4504387, + 13.5580424 + ], + [ + 52.4525924, + 13.5578748 + ], + [ + 52.4526349, + 13.5578713 + ] + ] + }, + { + "osmId": "23010027", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 361.02457222004836, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4468816, + 13.5584951 + ], + [ + 52.44716, + 13.5584788 + ], + [ + 52.447579, + 13.5584289 + ], + [ + 52.4480984, + 13.5583552 + ], + [ + 52.448263, + 13.5583252 + ], + [ + 52.44882, + 13.558231 + ], + [ + 52.449377, + 13.5581468 + ], + [ + 52.4501176, + 13.5580767 + ] + ] + }, + { + "osmId": "23010030", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 127.97345400042097, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4543984, + 13.557731 + ], + [ + 52.4545925, + 13.5577109 + ], + [ + 52.4550632, + 13.5576559 + ], + [ + 52.4553956, + 13.5575898 + ], + [ + 52.4555442, + 13.5575603 + ] + ] + }, + { + "osmId": "23010031", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 149.0955060515181, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530591, + 13.5578367 + ], + [ + 52.4543984, + 13.557731 + ] + ] + }, + { + "osmId": "23010135", + "name": null, + "lengthMeters": 105.53890138963492, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5906239, + 13.3459726 + ], + [ + 52.5902481, + 13.3466781 + ], + [ + 52.5900438, + 13.3470545 + ], + [ + 52.5899954, + 13.3471433 + ] + ] + }, + { + "osmId": "23010138", + "name": null, + "lengthMeters": 721.0843027001382, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5955522, + 13.336891 + ], + [ + 52.5951917, + 13.337566 + ], + [ + 52.5940453, + 13.3397758 + ], + [ + 52.5933999, + 13.3409671 + ], + [ + 52.5924519, + 13.3426935 + ], + [ + 52.5918738, + 13.3437397 + ], + [ + 52.5912406, + 13.3448635 + ] + ] + }, + { + "osmId": "23010141", + "name": null, + "lengthMeters": 323.14199081055034, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5978457, + 13.3327329 + ], + [ + 52.597703, + 13.3329743 + ], + [ + 52.597644, + 13.3330684 + ], + [ + 52.5975875, + 13.3331586 + ], + [ + 52.5973957, + 13.3334733 + ], + [ + 52.5973201, + 13.333601 + ], + [ + 52.5972651, + 13.3336951 + ], + [ + 52.5972056, + 13.3338004 + ], + [ + 52.5971952, + 13.3338187 + ], + [ + 52.5971157, + 13.3339585 + ], + [ + 52.5970688, + 13.3340443 + ], + [ + 52.5970052, + 13.3341609 + ], + [ + 52.5969113, + 13.3343386 + ], + [ + 52.5968042, + 13.3345413 + ], + [ + 52.5967334, + 13.3346755 + ], + [ + 52.5967208, + 13.3346994 + ], + [ + 52.5965088, + 13.3351076 + ], + [ + 52.5963801, + 13.3353536 + ], + [ + 52.5962363, + 13.3356313 + ], + [ + 52.5962179, + 13.3356647 + ], + [ + 52.5961628, + 13.3357718 + ], + [ + 52.5961168, + 13.335858 + ], + [ + 52.5960871, + 13.335915 + ], + [ + 52.5959651, + 13.3361413 + ], + [ + 52.5958927, + 13.3362726 + ] + ] + }, + { + "osmId": "23010143", + "name": null, + "lengthMeters": 696.3190707340017, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6027578, + 13.3253648 + ], + [ + 52.6025727, + 13.3255796 + ], + [ + 52.6024173, + 13.3257566 + ], + [ + 52.6022053, + 13.3260102 + ], + [ + 52.6014039, + 13.3269535 + ], + [ + 52.6010984, + 13.3273248 + ], + [ + 52.6009821, + 13.327472 + ], + [ + 52.6008302, + 13.327675 + ], + [ + 52.6006589, + 13.3279121 + ], + [ + 52.6004938, + 13.3281503 + ], + [ + 52.600325, + 13.3284118 + ], + [ + 52.6001588, + 13.3286776 + ], + [ + 52.6000004, + 13.3289471 + ], + [ + 52.5998147, + 13.3292735 + ], + [ + 52.5996829, + 13.3295112 + ], + [ + 52.5990758, + 13.33061 + ], + [ + 52.5989178, + 13.3308958 + ], + [ + 52.5988403, + 13.3310361 + ], + [ + 52.5986284, + 13.3314225 + ], + [ + 52.598411, + 13.331804 + ], + [ + 52.5981382, + 13.3322623 + ] + ] + }, + { + "osmId": "23010145", + "name": null, + "lengthMeters": 103.28148840522147, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6062369, + 13.3210671 + ], + [ + 52.6060374, + 13.3213059 + ], + [ + 52.6059754, + 13.3213801 + ], + [ + 52.6058359, + 13.3215515 + ], + [ + 52.605793, + 13.3216042 + ], + [ + 52.6057378, + 13.3216761 + ], + [ + 52.6055697, + 13.3218952 + ], + [ + 52.6054966, + 13.3219904 + ] + ] + }, + { + "osmId": "23010147", + "name": null, + "lengthMeters": 514.4956918854114, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6109055, + 13.3155076 + ], + [ + 52.60971, + 13.3169839 + ], + [ + 52.6091524, + 13.3176639 + ], + [ + 52.6085916, + 13.3183358 + ], + [ + 52.608191, + 13.3187998 + ], + [ + 52.6078057, + 13.319246 + ], + [ + 52.6071646, + 13.3199906 + ] + ] + }, + { + "osmId": "23010149", + "name": null, + "lengthMeters": 281.9725367319166, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.613399, + 13.3125295 + ], + [ + 52.6123133, + 13.3137972 + ], + [ + 52.6120831, + 13.3140726 + ], + [ + 52.6116818, + 13.3145526 + ], + [ + 52.6113411, + 13.3149695 + ] + ] + }, + { + "osmId": "23010716", + "name": null, + "lengthMeters": 698.6237366144696, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4652664, + 13.5559308 + ], + [ + 52.4645897, + 13.5606321 + ], + [ + 52.4644598, + 13.5613794 + ], + [ + 52.4643193, + 13.5620439 + ], + [ + 52.46431, + 13.5620843 + ], + [ + 52.464225, + 13.5624535 + ], + [ + 52.4641639, + 13.5627187 + ], + [ + 52.4639952, + 13.5633425 + ], + [ + 52.4639766, + 13.5633966 + ], + [ + 52.4637186, + 13.5641454 + ], + [ + 52.4634812, + 13.5648305 + ], + [ + 52.4631938, + 13.5655814 + ] + ] + }, + { + "osmId": "23010728", + "name": null, + "lengthMeters": 111.61992298189304, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4810321, + 13.5255885 + ], + [ + 52.4808746, + 13.5259808 + ], + [ + 52.4804541, + 13.5269357 + ] + ] + }, + { + "osmId": "23010838", + "name": null, + "lengthMeters": 1598.4813981427162, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4630154, + 13.5519821 + ], + [ + 52.463388, + 13.5517407 + ], + [ + 52.4636662, + 13.5515992 + ], + [ + 52.4637412, + 13.5515748 + ], + [ + 52.4637614, + 13.5515672 + ], + [ + 52.4639932, + 13.5515015 + ], + [ + 52.4642743, + 13.5514821 + ], + [ + 52.4645313, + 13.5514954 + ], + [ + 52.4647155, + 13.5515269 + ], + [ + 52.4648996, + 13.5515896 + ], + [ + 52.4651393, + 13.5516962 + ], + [ + 52.4654507, + 13.5519032 + ], + [ + 52.4655528, + 13.5519884 + ], + [ + 52.4656361, + 13.5520579 + ], + [ + 52.465844, + 13.5522648 + ], + [ + 52.4659751, + 13.5524216 + ], + [ + 52.4661588, + 13.5527214 + ], + [ + 52.4662735, + 13.5528996 + ], + [ + 52.4663618, + 13.5530721 + ], + [ + 52.4665351, + 13.5533819 + ], + [ + 52.4666617, + 13.5537389 + ], + [ + 52.4667616, + 13.5540683 + ], + [ + 52.4668407, + 13.5543775 + ], + [ + 52.4668555, + 13.5544517 + ], + [ + 52.4669058, + 13.5547031 + ], + [ + 52.4669562, + 13.5550651 + ], + [ + 52.4669912, + 13.5554121 + ], + [ + 52.4670026, + 13.5557563 + ], + [ + 52.467, + 13.5561014 + ], + [ + 52.4669559, + 13.5566625 + ], + [ + 52.4668967, + 13.5571131 + ], + [ + 52.4668049, + 13.5575319 + ], + [ + 52.4666772, + 13.5579871 + ], + [ + 52.4665547, + 13.5583204 + ], + [ + 52.4664189, + 13.5586461 + ], + [ + 52.4661983, + 13.5591357 + ], + [ + 52.4655211, + 13.5606764 + ], + [ + 52.4642189, + 13.5636391 + ], + [ + 52.4637402, + 13.5647283 + ], + [ + 52.4636471, + 13.5649452 + ], + [ + 52.4629869, + 13.5664363 + ], + [ + 52.4628461, + 13.5667447 + ], + [ + 52.4626779, + 13.5671077 + ], + [ + 52.4626323, + 13.5672033 + ], + [ + 52.4625748, + 13.5673241 + ], + [ + 52.4624986, + 13.5674835 + ], + [ + 52.4624495, + 13.5675819 + ], + [ + 52.4624098, + 13.5676672 + ], + [ + 52.4623709, + 13.5677589 + ], + [ + 52.4623378, + 13.5678406 + ], + [ + 52.4622994, + 13.5679385 + ] + ] + }, + { + "osmId": "23010840", + "name": null, + "lengthMeters": 145.8767344656485, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4604907, + 13.5726996 + ], + [ + 52.4607404, + 13.5720328 + ], + [ + 52.4608693, + 13.5717013 + ], + [ + 52.4612001, + 13.5708888 + ] + ] + }, + { + "osmId": "23010852", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 244.6762969761282, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4602029, + 13.5730394 + ], + [ + 52.4601544, + 13.5731828 + ], + [ + 52.4600886, + 13.5733776 + ], + [ + 52.4599843, + 13.5736927 + ], + [ + 52.4596939, + 13.5746068 + ], + [ + 52.4595277, + 13.5751749 + ], + [ + 52.459237, + 13.5762813 + ] + ] + }, + { + "osmId": "23014904", + "name": null, + "lengthMeters": 206.73025396911436, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6180808, + 13.3067026 + ], + [ + 52.6180571, + 13.3067257 + ], + [ + 52.6179626, + 13.3068198 + ], + [ + 52.6178232, + 13.3069541 + ], + [ + 52.6176864, + 13.3071058 + ], + [ + 52.6176505, + 13.3071456 + ], + [ + 52.6173097, + 13.30755 + ], + [ + 52.6170989, + 13.3077998 + ], + [ + 52.6169572, + 13.3079629 + ], + [ + 52.6167797, + 13.3081692 + ], + [ + 52.6165523, + 13.308443 + ] + ] + }, + { + "osmId": "23014906", + "name": null, + "lengthMeters": 359.2251505359464, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6410359, + 13.2841497 + ], + [ + 52.6409879, + 13.2841469 + ], + [ + 52.640979, + 13.2841464 + ], + [ + 52.6404743, + 13.2841446 + ], + [ + 52.6402456, + 13.2841617 + ], + [ + 52.6399798, + 13.2841816 + ], + [ + 52.6395362, + 13.2842573 + ], + [ + 52.6393959, + 13.284295 + ], + [ + 52.6389426, + 13.2844168 + ], + [ + 52.6383605, + 13.2846253 + ], + [ + 52.6378508, + 13.2848697 + ] + ] + }, + { + "osmId": "23015526", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 265.6414547471065, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4578784, + 13.6006881 + ], + [ + 52.4578863, + 13.6004268 + ], + [ + 52.4579248, + 13.5991606 + ], + [ + 52.4579936, + 13.5967721 + ] + ] + }, + { + "osmId": "23015534", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 200.04481953420503, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4586934, + 13.5792957 + ], + [ + 52.4587022, + 13.5792403 + ], + [ + 52.4588307, + 13.5784287 + ], + [ + 52.45896, + 13.5777426 + ], + [ + 52.458995, + 13.5775568 + ], + [ + 52.4592293, + 13.5764793 + ] + ] + }, + { + "osmId": "23016168", + "name": null, + "lengthMeters": 572.7804158572565, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4683178, + 13.5502411 + ], + [ + 52.4684055, + 13.5501999 + ], + [ + 52.4686906, + 13.5500657 + ], + [ + 52.468986, + 13.5499138 + ], + [ + 52.4692282, + 13.5497556 + ], + [ + 52.4692652, + 13.5497314 + ], + [ + 52.4695278, + 13.5495424 + ], + [ + 52.4697014, + 13.5493823 + ], + [ + 52.4698156, + 13.5492769 + ], + [ + 52.470068, + 13.5490338 + ], + [ + 52.4702256, + 13.5488441 + ], + [ + 52.4705298, + 13.5484883 + ], + [ + 52.4708916, + 13.5480414 + ], + [ + 52.4710397, + 13.5478421 + ], + [ + 52.4712951, + 13.5474626 + ], + [ + 52.4715843, + 13.5469734 + ], + [ + 52.4718176, + 13.5465387 + ], + [ + 52.4721524, + 13.545877 + ], + [ + 52.4723922, + 13.545364 + ] + ] + }, + { + "osmId": "23016170", + "name": null, + "lengthMeters": 703.222562245659, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4761347, + 13.5367361 + ], + [ + 52.4756515, + 13.5378247 + ], + [ + 52.4752621, + 13.538708 + ], + [ + 52.4747243, + 13.5399359 + ], + [ + 52.4746299, + 13.5401514 + ], + [ + 52.4732025, + 13.54341 + ], + [ + 52.4728765, + 13.5441544 + ], + [ + 52.4728636, + 13.5441791 + ], + [ + 52.4724272, + 13.5451472 + ] + ] + }, + { + "osmId": "23036934", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 882.154435641798, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5098112, + 13.5395604 + ], + [ + 52.5094159, + 13.5396191 + ], + [ + 52.5088441, + 13.5397037 + ], + [ + 52.5084875, + 13.5397565 + ], + [ + 52.5080051, + 13.5398279 + ], + [ + 52.5071399, + 13.5399744 + ], + [ + 52.5066036, + 13.5400652 + ], + [ + 52.5058653, + 13.5402123 + ], + [ + 52.5053131, + 13.5403188 + ], + [ + 52.5051409, + 13.5403661 + ], + [ + 52.5048829, + 13.5404369 + ], + [ + 52.5043211, + 13.5406142 + ], + [ + 52.5039417, + 13.5407649 + ], + [ + 52.5036081, + 13.5409075 + ], + [ + 52.5032374, + 13.5410949 + ], + [ + 52.502905, + 13.5412783 + ], + [ + 52.5028495, + 13.5413089 + ], + [ + 52.5027355, + 13.5413719 + ], + [ + 52.5026025, + 13.5414453 + ], + [ + 52.5020335, + 13.5417639 + ], + [ + 52.5020247, + 13.5417689 + ] + ] + }, + { + "osmId": "23036952", + "name": null, + "lengthMeters": 226.45594392843165, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5058631, + 13.561509 + ], + [ + 52.5048345, + 13.5601101 + ], + [ + 52.5046028, + 13.5597954 + ], + [ + 52.5042943, + 13.5593755 + ] + ] + }, + { + "osmId": "23037028", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 505.451833416576, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4675868, + 13.4893187 + ], + [ + 52.4679092, + 13.4888265 + ], + [ + 52.4682265, + 13.4883306 + ], + [ + 52.4683954, + 13.488065 + ], + [ + 52.4684669, + 13.4879524 + ], + [ + 52.4691411, + 13.4868872 + ], + [ + 52.46979, + 13.4858295 + ], + [ + 52.4700609, + 13.4853991 + ], + [ + 52.4703292, + 13.4849824 + ], + [ + 52.470881, + 13.4841787 + ] + ] + }, + { + "osmId": "23039813", + "name": null, + "lengthMeters": 367.7558746430178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5963641, + 10.0357997 + ], + [ + 53.5955427, + 10.0360773 + ], + [ + 53.5953118, + 10.0361593 + ], + [ + 53.5936793, + 10.0367251 + ], + [ + 53.5935971, + 10.0367536 + ], + [ + 53.593471, + 10.0367818 + ], + [ + 53.5933284, + 10.0368126 + ], + [ + 53.5932673, + 10.0368235 + ], + [ + 53.5931583, + 10.0368357 + ], + [ + 53.593117, + 10.0368379 + ] + ] + }, + { + "osmId": "23040171", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 919.3958269223132, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4575204, + 13.6118151 + ], + [ + 52.4574681, + 13.6140118 + ], + [ + 52.4574582, + 13.6143751 + ], + [ + 52.4574445, + 13.6149609 + ], + [ + 52.4574342, + 13.6152548 + ], + [ + 52.4573779, + 13.6173671 + ], + [ + 52.457291, + 13.6206312 + ], + [ + 52.4572174, + 13.6231492 + ], + [ + 52.4572047, + 13.6235531 + ], + [ + 52.4571524, + 13.6253706 + ] + ] + }, + { + "osmId": "23040173", + "name": null, + "lengthMeters": 429.96583027241684, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4576529, + 13.6116245 + ], + [ + 52.4576574, + 13.6114428 + ], + [ + 52.4577618, + 13.6071521 + ], + [ + 52.4577734, + 13.6068364 + ], + [ + 52.4577851, + 13.6065235 + ], + [ + 52.4577991, + 13.606209 + ], + [ + 52.4578168, + 13.6058945 + ], + [ + 52.4578569, + 13.6052892 + ] + ] + }, + { + "osmId": "23041159", + "name": null, + "lengthMeters": 127.50876165352535, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.590608, + 10.0094373 + ], + [ + 53.5906609, + 10.0113672 + ] + ] + }, + { + "osmId": "23041161", + "name": null, + "lengthMeters": 98.11285037696541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5902682, + 10.0217655 + ], + [ + 53.5902745, + 10.0217082 + ], + [ + 53.5904253, + 10.0203027 + ] + ] + }, + { + "osmId": "23042324", + "name": "U7", + "lengthMeters": 735.3153250502992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4489704, + 13.4499468 + ], + [ + 52.4475873, + 13.4499556 + ], + [ + 52.4453654, + 13.4496938 + ], + [ + 52.4451721, + 13.4496473 + ], + [ + 52.4447789, + 13.4495357 + ], + [ + 52.4445034, + 13.4494049 + ], + [ + 52.444153, + 13.4492035 + ], + [ + 52.4436448, + 13.4488175 + ], + [ + 52.4432577, + 13.4484053 + ], + [ + 52.4426682, + 13.4477042 + ] + ] + }, + { + "osmId": "23057978", + "name": "Pinneberger S-Bahn", + "lengthMeters": 155.3524859005813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5632037, + 9.9413246 + ], + [ + 53.5632232, + 9.940973 + ], + [ + 53.5632482, + 9.9406282 + ], + [ + 53.5632734, + 9.9403458 + ], + [ + 53.5633033, + 9.9400758 + ], + [ + 53.5633488, + 9.9397589 + ], + [ + 53.5633994, + 9.9394962 + ], + [ + 53.5635075, + 9.9390419 + ] + ] + }, + { + "osmId": "23057980", + "name": "Pinneberger S-Bahn", + "lengthMeters": 101.49616328146112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639761, + 9.9376724 + ], + [ + 53.5637685, + 9.9381666 + ], + [ + 53.5637088, + 9.938322 + ], + [ + 53.5636397, + 9.9385049 + ], + [ + 53.563573, + 9.9387025 + ], + [ + 53.5634853, + 9.9389664 + ] + ] + }, + { + "osmId": "23061678", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 623.8147413891655, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6056272, + 9.9293646 + ], + [ + 53.6057894, + 9.9304862 + ], + [ + 53.6064991, + 9.9353939 + ], + [ + 53.6069587, + 9.9385497 + ] + ] + }, + { + "osmId": "23061685", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 671.702844570068, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6069948, + 9.9387935 + ], + [ + 53.6071811, + 9.9401614 + ], + [ + 53.6075537, + 9.9426836 + ], + [ + 53.6078692, + 9.9448387 + ], + [ + 53.6079149, + 9.9451714 + ], + [ + 53.6080411, + 9.9463349 + ], + [ + 53.6080979, + 9.9474058 + ], + [ + 53.608111, + 9.9487652 + ] + ] + }, + { + "osmId": "23061691", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 468.2542211552163, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6081136, + 9.9489281 + ], + [ + 53.6081477, + 9.9513521 + ], + [ + 53.6081319, + 9.9523925 + ], + [ + 53.6080894, + 9.9532889 + ], + [ + 53.6080173, + 9.9540305 + ], + [ + 53.6079204, + 9.9547754 + ], + [ + 53.6077061, + 9.9559396 + ] + ] + }, + { + "osmId": "23075264", + "name": "Anhalter Bahn", + "lengthMeters": 633.1864081559124, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3990889, + 13.3043368 + ], + [ + 52.3991881, + 13.3043767 + ], + [ + 52.4008285, + 13.3050567 + ], + [ + 52.4026655, + 13.305821 + ], + [ + 52.4037345, + 13.3062659 + ], + [ + 52.4037489, + 13.3062719 + ], + [ + 52.4043682, + 13.3065309 + ], + [ + 52.4046089, + 13.3066288 + ] + ] + }, + { + "osmId": "23075266", + "name": null, + "lengthMeters": 105.41353665464729, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4049558, + 13.3062611 + ], + [ + 52.40463, + 13.3060427 + ], + [ + 52.4043262, + 13.305817 + ], + [ + 52.4040903, + 13.3056284 + ] + ] + }, + { + "osmId": "23075534", + "name": null, + "lengthMeters": 417.32246929813846, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5365116, + 13.3813734 + ], + [ + 52.5366183, + 13.3812699 + ], + [ + 52.5367275, + 13.381172 + ], + [ + 52.5369419, + 13.3810016 + ], + [ + 52.5372084, + 13.380835 + ], + [ + 52.5374311, + 13.3807139 + ], + [ + 52.5377004, + 13.3805825 + ], + [ + 52.5381161, + 13.38038 + ], + [ + 52.5384271, + 13.3802304 + ], + [ + 52.5387722, + 13.3800661 + ], + [ + 52.5391189, + 13.3799128 + ], + [ + 52.5394969, + 13.3797776 + ], + [ + 52.5398323, + 13.3796939 + ], + [ + 52.5400936, + 13.3796309 + ] + ] + }, + { + "osmId": "23084322", + "name": null, + "lengthMeters": 89.32777003570455, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5762164, + 13.3724801 + ], + [ + 52.5756784, + 13.3734618 + ] + ] + }, + { + "osmId": "23084323", + "name": null, + "lengthMeters": 787.4992006144386, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5808865, + 13.3637229 + ], + [ + 52.5806365, + 13.3642725 + ], + [ + 52.5804675, + 13.3646194 + ], + [ + 52.5790273, + 13.3673524 + ], + [ + 52.5785406, + 13.3682478 + ], + [ + 52.5780799, + 13.3690901 + ], + [ + 52.5780407, + 13.3691614 + ], + [ + 52.5772799, + 13.3705489 + ], + [ + 52.5766914, + 13.3716166 + ], + [ + 52.5764606, + 13.3720464 + ], + [ + 52.5762676, + 13.3723891 + ], + [ + 52.5762164, + 13.3724801 + ] + ] + }, + { + "osmId": "23084325", + "name": null, + "lengthMeters": 173.22841553430248, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5731772, + 13.3780154 + ], + [ + 52.5728508, + 13.3786147 + ], + [ + 52.5726574, + 13.3789566 + ], + [ + 52.5724169, + 13.3793556 + ], + [ + 52.5723942, + 13.3793933 + ], + [ + 52.572095, + 13.3798573 + ] + ] + }, + { + "osmId": "23084326", + "name": null, + "lengthMeters": 107.24946316670807, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5734032, + 13.3777807 + ], + [ + 52.5735303, + 13.3775635 + ], + [ + 52.5735901, + 13.3774532 + ], + [ + 52.5736339, + 13.3773725 + ], + [ + 52.5738157, + 13.3770146 + ], + [ + 52.5738964, + 13.3768596 + ], + [ + 52.5740435, + 13.3765945 + ] + ] + }, + { + "osmId": "23084475", + "name": null, + "lengthMeters": 105.92422196136525, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5719013, + 13.3801499 + ], + [ + 52.5717808, + 13.380338 + ], + [ + 52.5716749, + 13.380509 + ], + [ + 52.5716146, + 13.3806112 + ], + [ + 52.571563, + 13.3807057 + ], + [ + 52.5712418, + 13.38128 + ] + ] + }, + { + "osmId": "23084477", + "name": "Kremmener Bahn", + "lengthMeters": 386.02429221563176, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5723301, + 13.3799222 + ], + [ + 52.5725183, + 13.3795902 + ], + [ + 52.5725482, + 13.3795373 + ], + [ + 52.5732091, + 13.3783691 + ], + [ + 52.5740398, + 13.3770005 + ], + [ + 52.5740933, + 13.3769145 + ], + [ + 52.5747604, + 13.3758448 + ] + ] + }, + { + "osmId": "23085181", + "name": null, + "lengthMeters": 715.7454506863613, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5644481, + 13.3934096 + ], + [ + 52.5639744, + 13.3940391 + ], + [ + 52.5635967, + 13.3944661 + ], + [ + 52.563247, + 13.3947814 + ], + [ + 52.562707, + 13.3952809 + ], + [ + 52.5620649, + 13.3958616 + ], + [ + 52.5617286, + 13.3961241 + ], + [ + 52.5613888, + 13.3963486 + ], + [ + 52.5610629, + 13.396501 + ], + [ + 52.5608999, + 13.3965617 + ], + [ + 52.560604, + 13.3966719 + ], + [ + 52.5604909, + 13.3967155 + ], + [ + 52.5602157, + 13.3968213 + ], + [ + 52.5596644, + 13.3970073 + ], + [ + 52.5594176, + 13.3970824 + ], + [ + 52.5591249, + 13.3971714 + ], + [ + 52.5585703, + 13.3973063 + ] + ] + }, + { + "osmId": "23085231", + "name": null, + "lengthMeters": 173.32330402768207, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554423, + 13.3976439 + ], + [ + 52.555388, + 13.3976565 + ], + [ + 52.5552817, + 13.3976852 + ], + [ + 52.5551326, + 13.397721 + ], + [ + 52.5550815, + 13.3977333 + ], + [ + 52.5549663, + 13.3977603 + ], + [ + 52.5543602, + 13.3979037 + ], + [ + 52.5542364, + 13.3979312 + ], + [ + 52.554196, + 13.3979403 + ], + [ + 52.5540424, + 13.3979744 + ], + [ + 52.5539743, + 13.3979908 + ], + [ + 52.553949, + 13.397996 + ], + [ + 52.5538998, + 13.3980118 + ] + ] + }, + { + "osmId": "23085232", + "name": null, + "lengthMeters": 141.18973554378974, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5579409, + 13.397782 + ], + [ + 52.55771, + 13.3976924 + ], + [ + 52.5572502, + 13.3975718 + ], + [ + 52.556685, + 13.3974996 + ] + ] + }, + { + "osmId": "23085483", + "name": null, + "lengthMeters": 138.58150851590267, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5546331, + 13.399178 + ], + [ + 52.554765, + 13.3971397 + ] + ] + }, + { + "osmId": "23085835", + "name": null, + "lengthMeters": 100.46089257013817, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5486393, + 13.3850602 + ], + [ + 52.548421, + 13.3844125 + ], + [ + 52.5481779, + 13.3837836 + ] + ] + }, + { + "osmId": "23087691", + "name": null, + "lengthMeters": 319.7976739961917, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5481779, + 13.3837836 + ], + [ + 52.5480154, + 13.3834165 + ], + [ + 52.5478244, + 13.3830445 + ], + [ + 52.5477171, + 13.3828475 + ], + [ + 52.5476962, + 13.3828106 + ], + [ + 52.5476009, + 13.3826435 + ], + [ + 52.5475556, + 13.3825666 + ], + [ + 52.547394, + 13.3823059 + ], + [ + 52.5472433, + 13.3820719 + ], + [ + 52.5470672, + 13.3818211 + ], + [ + 52.5468839, + 13.3815755 + ], + [ + 52.5465059, + 13.3810852 + ], + [ + 52.5460918, + 13.3805587 + ] + ] + }, + { + "osmId": "23087694", + "name": null, + "lengthMeters": 140.57653908411075, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5369768, + 13.3806828 + ], + [ + 52.5368073, + 13.3808072 + ], + [ + 52.5366455, + 13.3809466 + ], + [ + 52.5365418, + 13.3810643 + ], + [ + 52.5364394, + 13.3811865 + ], + [ + 52.5361923, + 13.3815193 + ], + [ + 52.535957, + 13.3818854 + ] + ] + }, + { + "osmId": "23096219", + "name": null, + "lengthMeters": 391.0208775458096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5928821, + 10.0440212 + ], + [ + 53.5928725, + 10.0439228 + ], + [ + 53.5927205, + 10.0423572 + ], + [ + 53.5926769, + 10.0419846 + ], + [ + 53.5926196, + 10.0416148 + ], + [ + 53.5925511, + 10.0412512 + ], + [ + 53.5924678, + 10.0408993 + ], + [ + 53.5923893, + 10.0406162 + ], + [ + 53.5923712, + 10.0405509 + ], + [ + 53.5922593, + 10.0402177 + ], + [ + 53.592137, + 10.0399086 + ], + [ + 53.5919988, + 10.039596 + ], + [ + 53.5918488, + 10.0393039 + ], + [ + 53.5916953, + 10.0390393 + ], + [ + 53.5915079, + 10.0387452 + ] + ] + }, + { + "osmId": "23096549", + "name": null, + "lengthMeters": 416.67537804856795, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5610259, + 10.0376784 + ], + [ + 53.5610547, + 10.0377525 + ], + [ + 53.5611176, + 10.0379119 + ], + [ + 53.5613065, + 10.0383953 + ], + [ + 53.5614836, + 10.0388474 + ], + [ + 53.561856, + 10.0397456 + ], + [ + 53.5620819, + 10.0403264 + ], + [ + 53.5622222, + 10.0407032 + ], + [ + 53.5623995, + 10.041235 + ], + [ + 53.56258, + 10.0417683 + ], + [ + 53.5627176, + 10.0422893 + ], + [ + 53.5628997, + 10.0430375 + ], + [ + 53.5629149, + 10.0431049 + ] + ] + }, + { + "osmId": "23096717", + "name": null, + "lengthMeters": 412.3207496930144, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5609564, + 10.0377434 + ], + [ + 53.5609863, + 10.0378201 + ], + [ + 53.5610975, + 10.0381074 + ], + [ + 53.5618155, + 10.0398873 + ], + [ + 53.5620915, + 10.0406021 + ], + [ + 53.5621755, + 10.0408408 + ], + [ + 53.5623413, + 10.0413499 + ], + [ + 53.5625003, + 10.0418373 + ], + [ + 53.5626559, + 10.0423609 + ], + [ + 53.56283, + 10.0430556 + ], + [ + 53.5628404, + 10.0431031 + ] + ] + }, + { + "osmId": "23103112", + "name": "Verbindungsbahn", + "lengthMeters": 428.15209808624166, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5624859, + 9.9349853 + ], + [ + 53.5623136, + 9.9346159 + ], + [ + 53.5622462, + 9.9344715 + ], + [ + 53.5619245, + 9.9339262 + ], + [ + 53.5616486, + 9.933578 + ], + [ + 53.5613583, + 9.9332674 + ], + [ + 53.5610814, + 9.9330366 + ], + [ + 53.5608795, + 9.9329281 + ], + [ + 53.5606305, + 9.932815 + ], + [ + 53.5606103, + 9.9328084 + ], + [ + 53.5604631, + 9.9327538 + ], + [ + 53.5603742, + 9.9327308 + ], + [ + 53.560143, + 9.9326932 + ], + [ + 53.5597949, + 9.9327128 + ], + [ + 53.5596593, + 9.9327257 + ], + [ + 53.5595258, + 9.9327599 + ], + [ + 53.5593803, + 9.9328073 + ], + [ + 53.5592262, + 9.9328739 + ], + [ + 53.5591136, + 9.9329353 + ] + ] + }, + { + "osmId": "23119862", + "name": null, + "lengthMeters": 957.135911379882, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6541318, + 13.3884189 + ], + [ + 52.6536982, + 13.3896459 + ], + [ + 52.6534219, + 13.3903681 + ], + [ + 52.6527499, + 13.3919342 + ], + [ + 52.6519072, + 13.3936432 + ], + [ + 52.6513498, + 13.3946466 + ], + [ + 52.6512342, + 13.3948443 + ], + [ + 52.6507859, + 13.3955672 + ], + [ + 52.6501752, + 13.3965621 + ], + [ + 52.6496162, + 13.3974712 + ], + [ + 52.6490635, + 13.3983702 + ], + [ + 52.6485772, + 13.3991749 + ] + ] + }, + { + "osmId": "23119864", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 6385.5358756643145, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6122759, + 13.4525846 + ], + [ + 52.6130752, + 13.4515007 + ], + [ + 52.6135346, + 13.4508753 + ], + [ + 52.6136371, + 13.4507391 + ], + [ + 52.6147754, + 13.4491952 + ], + [ + 52.6147966, + 13.4491665 + ], + [ + 52.6165183, + 13.4468311 + ], + [ + 52.6167111, + 13.4465697 + ], + [ + 52.6235542, + 13.4372916 + ], + [ + 52.6236406, + 13.4371743 + ], + [ + 52.6236545, + 13.4371554 + ], + [ + 52.6261141, + 13.4338162 + ], + [ + 52.6296533, + 13.429011 + ], + [ + 52.6313698, + 13.4266839 + ], + [ + 52.6326602, + 13.4249347 + ], + [ + 52.6339655, + 13.4231313 + ], + [ + 52.6353872, + 13.4210853 + ], + [ + 52.6367904, + 13.4189961 + ], + [ + 52.6385881, + 13.4161476 + ], + [ + 52.6403597, + 13.4132224 + ], + [ + 52.641599, + 13.4111425 + ], + [ + 52.642986, + 13.408826 + ], + [ + 52.6443522, + 13.406544 + ], + [ + 52.6463468, + 13.4032123 + ], + [ + 52.6469747, + 13.4021611 + ], + [ + 52.6470696, + 13.4020023 + ], + [ + 52.6476084, + 13.4011002 + ], + [ + 52.6480573, + 13.4003487 + ], + [ + 52.6496481, + 13.3976948 + ], + [ + 52.6502751, + 13.3966488 + ], + [ + 52.6508383, + 13.3957123 + ], + [ + 52.6513121, + 13.3949271 + ], + [ + 52.6516745, + 13.3943011 + ], + [ + 52.6519809, + 13.3937337 + ], + [ + 52.6522744, + 13.3931759 + ], + [ + 52.6528467, + 13.3919881 + ], + [ + 52.6532655, + 13.3910282 + ], + [ + 52.6536699, + 13.3900125 + ], + [ + 52.6542434, + 13.3883992 + ] + ] + }, + { + "osmId": "23119867", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 398.3842838399168, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6543557, + 13.3880565 + ], + [ + 52.6547166, + 13.3868791 + ], + [ + 52.655025, + 13.3857312 + ], + [ + 52.6553931, + 13.3841712 + ], + [ + 52.655731, + 13.3826099 + ] + ] + }, + { + "osmId": "23119870", + "name": null, + "lengthMeters": 375.40281561574557, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6568656, + 13.3768986 + ], + [ + 52.6561468, + 13.3802313 + ], + [ + 52.6557278, + 13.3821386 + ] + ] + }, + { + "osmId": "23125051", + "name": null, + "lengthMeters": 107.05030713258743, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5688796, + 9.9700564 + ], + [ + 53.5688925, + 9.9700552 + ], + [ + 53.5691216, + 9.9700347 + ], + [ + 53.5692219, + 9.9700134 + ], + [ + 53.5692665, + 9.970004 + ], + [ + 53.5693293, + 9.9699855 + ], + [ + 53.5693963, + 9.9699597 + ], + [ + 53.5694728, + 9.9699222 + ], + [ + 53.5695946, + 9.9698494 + ], + [ + 53.5698054, + 9.9696825 + ] + ] + }, + { + "osmId": "23133055", + "name": null, + "lengthMeters": 1055.793624192577, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290252, + 13.2315263 + ], + [ + 52.5291405, + 13.2303228 + ], + [ + 52.5294464, + 13.2273728 + ], + [ + 52.52959, + 13.2259431 + ], + [ + 52.5296275, + 13.2255609 + ], + [ + 52.5296683, + 13.225172 + ], + [ + 52.5298756, + 13.22321 + ], + [ + 52.5299479, + 13.222633 + ], + [ + 52.5299947, + 13.2222654 + ], + [ + 52.5300548, + 13.2217937 + ], + [ + 52.5301149, + 13.2213086 + ], + [ + 52.5304418, + 13.2187925 + ], + [ + 52.530709, + 13.216899 + ], + [ + 52.5307873, + 13.2163037 + ], + [ + 52.5307898, + 13.216284 + ], + [ + 52.5307956, + 13.2162385 + ], + [ + 52.5308007, + 13.2161986 + ] + ] + }, + { + "osmId": "23133057", + "name": null, + "lengthMeters": 444.52263061197146, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5308465, + 13.2162106 + ], + [ + 52.530841, + 13.2162677 + ], + [ + 52.530679, + 13.217482 + ], + [ + 52.5301742, + 13.2213254 + ], + [ + 52.5300794, + 13.2220693 + ], + [ + 52.530054, + 13.222269 + ], + [ + 52.5300087, + 13.222636 + ] + ] + }, + { + "osmId": "23133059", + "name": null, + "lengthMeters": 139.22440058082503, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531006, + 13.2157355 + ], + [ + 52.5310211, + 13.2156159 + ], + [ + 52.5312307, + 13.2139606 + ], + [ + 52.5312632, + 13.2137212 + ] + ] + }, + { + "osmId": "23133061", + "name": null, + "lengthMeters": 105.2072306151534, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5308256, + 13.2181676 + ], + [ + 52.5308243, + 13.2181807 + ], + [ + 52.5307844, + 13.2185268 + ], + [ + 52.5307379, + 13.2188299 + ], + [ + 52.5306726, + 13.2192121 + ], + [ + 52.5305687, + 13.2196609 + ] + ] + }, + { + "osmId": "23133063", + "name": null, + "lengthMeters": 139.87553050741818, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5308655, + 13.2156971 + ], + [ + 52.5311243, + 13.2136735 + ] + ] + }, + { + "osmId": "23133065", + "name": null, + "lengthMeters": 139.54190743242475, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5311659, + 13.2136853 + ], + [ + 52.5309107, + 13.2157051 + ] + ] + }, + { + "osmId": "23133068", + "name": null, + "lengthMeters": 413.70656615383325, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312905, + 13.2135005 + ], + [ + 52.5314036, + 13.2126281 + ], + [ + 52.5314051, + 13.212616 + ], + [ + 52.5314617, + 13.2121683 + ], + [ + 52.5315692, + 13.2113179 + ], + [ + 52.531627, + 13.2108674 + ], + [ + 52.5317567, + 13.2098647 + ], + [ + 52.5318885, + 13.2088261 + ], + [ + 52.5319397, + 13.20848 + ], + [ + 52.5319848, + 13.2081797 + ], + [ + 52.5320935, + 13.2075299 + ] + ] + }, + { + "osmId": "23147985", + "name": null, + "lengthMeters": 256.9203617472547, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.529666, + 13.2256414 + ], + [ + 52.5293046, + 13.2291852 + ], + [ + 52.5292849, + 13.2293874 + ] + ] + }, + { + "osmId": "23147986", + "name": null, + "lengthMeters": 788.3930304711446, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5300594, + 13.2212705 + ], + [ + 52.5300383, + 13.221441 + ], + [ + 52.5299552, + 13.2221012 + ], + [ + 52.5297924, + 13.2233952 + ], + [ + 52.5297154, + 13.2241136 + ], + [ + 52.52957, + 13.2255266 + ], + [ + 52.5291204, + 13.2299915 + ], + [ + 52.5290774, + 13.2304126 + ], + [ + 52.5290428, + 13.2307643 + ], + [ + 52.528936, + 13.2318013 + ], + [ + 52.5289294, + 13.231869 + ], + [ + 52.5288414, + 13.2327506 + ] + ] + }, + { + "osmId": "23147988", + "name": null, + "lengthMeters": 270.11742254077586, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5288173, + 13.2329617 + ], + [ + 52.5287793, + 13.2332841 + ], + [ + 52.5287614, + 13.233418 + ], + [ + 52.5286685, + 13.2341188 + ], + [ + 52.528619, + 13.2344625 + ], + [ + 52.5286044, + 13.234557 + ], + [ + 52.5285985, + 13.234596 + ], + [ + 52.528554, + 13.2348766 + ], + [ + 52.5285124, + 13.235123 + ], + [ + 52.5284561, + 13.235429 + ], + [ + 52.5283907, + 13.235752 + ], + [ + 52.528318, + 13.2360839 + ], + [ + 52.528131, + 13.2367799 + ] + ] + }, + { + "osmId": "23147990", + "name": null, + "lengthMeters": 547.2782877103726, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5288788, + 13.2329837 + ], + [ + 52.5288484, + 13.2332481 + ], + [ + 52.5287617, + 13.2339661 + ], + [ + 52.5286169, + 13.2349159 + ], + [ + 52.5284758, + 13.235633 + ], + [ + 52.5283625, + 13.2361163 + ], + [ + 52.5282104, + 13.2366858 + ], + [ + 52.5279721, + 13.2374849 + ], + [ + 52.5274706, + 13.2390392 + ], + [ + 52.5273488, + 13.239432 + ], + [ + 52.5271538, + 13.2401025 + ], + [ + 52.5270621, + 13.2404545 + ] + ] + }, + { + "osmId": "23147992", + "name": null, + "lengthMeters": 953.6651347007544, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289228, + 13.2329995 + ], + [ + 52.5288102, + 13.2339816 + ], + [ + 52.5287999, + 13.2340551 + ], + [ + 52.5286746, + 13.234947 + ], + [ + 52.5285906, + 13.2355097 + ], + [ + 52.5284935, + 13.2360698 + ], + [ + 52.5283568, + 13.2367367 + ], + [ + 52.528334, + 13.2368528 + ], + [ + 52.5281549, + 13.2376054 + ], + [ + 52.5279542, + 13.238339 + ], + [ + 52.5276997, + 13.2392018 + ], + [ + 52.5276697, + 13.2392984 + ], + [ + 52.5272849, + 13.2405649 + ], + [ + 52.5270331, + 13.241362 + ], + [ + 52.5269261, + 13.2416756 + ], + [ + 52.5268784, + 13.241811 + ], + [ + 52.5268097, + 13.2420041 + ], + [ + 52.5266551, + 13.2424026 + ], + [ + 52.5264939, + 13.2427935 + ], + [ + 52.5262873, + 13.2432563 + ], + [ + 52.5261617, + 13.2435117 + ], + [ + 52.5259416, + 13.2439308 + ], + [ + 52.5257334, + 13.2442989 + ], + [ + 52.5255882, + 13.24454 + ], + [ + 52.5252589, + 13.2450842 + ], + [ + 52.525095, + 13.2453464 + ] + ] + }, + { + "osmId": "23153439", + "name": null, + "lengthMeters": 180.3409127777655, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5265289, + 13.2439308 + ], + [ + 52.5265076, + 13.2443435 + ], + [ + 52.5264914, + 13.2449485 + ], + [ + 52.5264846, + 13.2457523 + ], + [ + 52.5264891, + 13.2465944 + ] + ] + }, + { + "osmId": "23153441", + "name": null, + "lengthMeters": 2235.931551097517, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5265751, + 13.2429304 + ], + [ + 52.5265252, + 13.2434444 + ], + [ + 52.5264957, + 13.2438155 + ], + [ + 52.5264676, + 13.2443351 + ], + [ + 52.5264514, + 13.2449443 + ], + [ + 52.5264471, + 13.2457467 + ], + [ + 52.5264513, + 13.2466038 + ], + [ + 52.526456, + 13.2473739 + ], + [ + 52.5264599, + 13.2480142 + ], + [ + 52.5264772, + 13.2490283 + ], + [ + 52.5264871, + 13.2494386 + ], + [ + 52.5265129, + 13.2500347 + ], + [ + 52.5265512, + 13.2507523 + ], + [ + 52.5266233, + 13.2519226 + ], + [ + 52.5266623, + 13.2525517 + ], + [ + 52.5266705, + 13.2526609 + ], + [ + 52.5266735, + 13.2527081 + ], + [ + 52.5266899, + 13.2529502 + ], + [ + 52.5267346, + 13.2536366 + ], + [ + 52.5269275, + 13.2566737 + ], + [ + 52.5270158, + 13.2580705 + ], + [ + 52.5271104, + 13.2595317 + ], + [ + 52.5272443, + 13.2615973 + ], + [ + 52.527284, + 13.2622935 + ], + [ + 52.5273684, + 13.2635515 + ], + [ + 52.5274476, + 13.2647423 + ], + [ + 52.5274899, + 13.2654721 + ], + [ + 52.5275228, + 13.2660074 + ], + [ + 52.5276614, + 13.2683579 + ], + [ + 52.5277992, + 13.270959 + ], + [ + 52.5278927, + 13.2726226 + ], + [ + 52.5279297, + 13.273191 + ], + [ + 52.5279783, + 13.2739583 + ], + [ + 52.5280964, + 13.2758359 + ] + ] + }, + { + "osmId": "23181997", + "name": null, + "lengthMeters": 524.8161496848958, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5444503, + 10.0065141 + ], + [ + 53.5444476, + 10.0065134 + ], + [ + 53.5443519, + 10.0064862 + ], + [ + 53.5442455, + 10.0064621 + ], + [ + 53.544157, + 10.0064456 + ], + [ + 53.5440888, + 10.006439 + ], + [ + 53.5440583, + 10.006436 + ], + [ + 53.5438462, + 10.0064331 + ], + [ + 53.543692, + 10.0064532 + ], + [ + 53.5435072, + 10.0064899 + ], + [ + 53.5433747, + 10.0065317 + ], + [ + 53.5431995, + 10.0066086 + ], + [ + 53.5430497, + 10.0066924 + ], + [ + 53.5428806, + 10.0067967 + ], + [ + 53.5427555, + 10.0068872 + ], + [ + 53.5426178, + 10.0069972 + ], + [ + 53.5424141, + 10.0071867 + ], + [ + 53.542223, + 10.0073855 + ], + [ + 53.5420427, + 10.0076206 + ], + [ + 53.5418639, + 10.0078764 + ], + [ + 53.5417954, + 10.0079807 + ], + [ + 53.5416762, + 10.0081622 + ], + [ + 53.5414423, + 10.0085294 + ], + [ + 53.541372, + 10.0086457 + ], + [ + 53.5413294, + 10.0087153 + ], + [ + 53.5412185, + 10.0089194 + ], + [ + 53.5411616, + 10.0090297 + ], + [ + 53.5411099, + 10.0091414 + ], + [ + 53.5410574, + 10.0092541 + ], + [ + 53.5410175, + 10.0093553 + ], + [ + 53.540936, + 10.0095699 + ], + [ + 53.5408205, + 10.0099311 + ], + [ + 53.5407797, + 10.0100722 + ], + [ + 53.5407438, + 10.0102256 + ], + [ + 53.5407063, + 10.0103806 + ] + ] + }, + { + "osmId": "23187561", + "name": null, + "lengthMeters": 91.11426497665761, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245084, + 13.2464088 + ], + [ + 52.5250945, + 13.2454676 + ] + ] + }, + { + "osmId": "23187562", + "name": null, + "lengthMeters": 89.71987911372324, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525095, + 13.2453464 + ], + [ + 52.5245171, + 13.2462719 + ] + ] + }, + { + "osmId": "23198611", + "name": null, + "lengthMeters": 749.644960801293, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5242974, + 13.246626 + ], + [ + 52.5237771, + 13.2474607 + ], + [ + 52.5231628, + 13.2484345 + ], + [ + 52.5230221, + 13.2486601 + ], + [ + 52.5228651, + 13.2489029 + ], + [ + 52.5227272, + 13.249108 + ], + [ + 52.5225772, + 13.2493348 + ], + [ + 52.5224254, + 13.2495458 + ], + [ + 52.5221889, + 13.2498689 + ], + [ + 52.5220696, + 13.2500256 + ], + [ + 52.5218696, + 13.2502681 + ], + [ + 52.52161, + 13.250567 + ], + [ + 52.5212223, + 13.2509791 + ], + [ + 52.5209854, + 13.2511989 + ], + [ + 52.5205974, + 13.2515359 + ], + [ + 52.5202711, + 13.25178 + ], + [ + 52.5200125, + 13.2519657 + ], + [ + 52.5198675, + 13.2520662 + ], + [ + 52.519694, + 13.2521716 + ], + [ + 52.519439, + 13.2523131 + ], + [ + 52.5190953, + 13.2524853 + ], + [ + 52.5187567, + 13.2526342 + ] + ] + }, + { + "osmId": "23198612", + "name": null, + "lengthMeters": 200.29718348738555, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140187, + 13.2543388 + ], + [ + 52.5147257, + 13.2540939 + ], + [ + 52.5157474, + 13.2537474 + ], + [ + 52.5157822, + 13.2537355 + ] + ] + }, + { + "osmId": "23201267", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 108.72646447107401, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.539435, + 10.0330124 + ], + [ + 53.5395631, + 10.0325063 + ], + [ + 53.5395749, + 10.0324601 + ], + [ + 53.5396744, + 10.0319983 + ], + [ + 53.5397214, + 10.0317268 + ], + [ + 53.5397588, + 10.0314632 + ] + ] + }, + { + "osmId": "23201268", + "name": null, + "lengthMeters": 179.74149926544112, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5397639, + 10.0288023 + ], + [ + 53.5398208, + 10.0291792 + ], + [ + 53.539857, + 10.0295233 + ], + [ + 53.5398796, + 10.0298863 + ], + [ + 53.5398879, + 10.0302925 + ], + [ + 53.5398818, + 10.0306088 + ], + [ + 53.5398686, + 10.030885 + ], + [ + 53.5398581, + 10.0310257 + ], + [ + 53.5398127, + 10.0314945 + ] + ] + }, + { + "osmId": "23227595", + "name": null, + "lengthMeters": 420.1488646758532, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5591284, + 9.9690701 + ], + [ + 53.5602144, + 9.9694884 + ], + [ + 53.5612507, + 9.9697326 + ], + [ + 53.5615913, + 9.9698198 + ], + [ + 53.5620075, + 9.969977 + ], + [ + 53.5621532, + 9.9700153 + ], + [ + 53.5622978, + 9.9700407 + ], + [ + 53.5624448, + 9.9700555 + ], + [ + 53.5625867, + 9.9700578 + ], + [ + 53.5628509, + 9.9700243 + ] + ] + }, + { + "osmId": "23230443", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1152.8048977738881, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3939264, + 10.0897364 + ], + [ + 53.3940065, + 10.0894399 + ], + [ + 53.3945424, + 10.0874575 + ], + [ + 53.3949378, + 10.0859944 + ], + [ + 53.3954234, + 10.0843316 + ], + [ + 53.3959846, + 10.0826078 + ], + [ + 53.3963785, + 10.0813979 + ], + [ + 53.3967862, + 10.0802361 + ], + [ + 53.3969378, + 10.079804 + ], + [ + 53.3970612, + 10.0794522 + ], + [ + 53.3976997, + 10.0777517 + ], + [ + 53.3980405, + 10.076942 + ], + [ + 53.3982326, + 10.0764922 + ], + [ + 53.3985923, + 10.0756554 + ], + [ + 53.3990501, + 10.07468 + ] + ] + }, + { + "osmId": "23230466", + "name": null, + "lengthMeters": 666.5353824755308, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.393013, + 10.0892827 + ], + [ + 53.3932835, + 10.0874592 + ], + [ + 53.393652, + 10.0856911 + ], + [ + 53.3940308, + 10.0842663 + ], + [ + 53.3944994, + 10.0828748 + ], + [ + 53.3948003, + 10.0820906 + ], + [ + 53.3951689, + 10.0812143 + ], + [ + 53.3955174, + 10.0804722 + ], + [ + 53.3955885, + 10.0803208 + ] + ] + }, + { + "osmId": "23240865", + "name": null, + "lengthMeters": 671.8504547299002, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6163041, + 9.8665532 + ], + [ + 53.6170711, + 9.8650627 + ], + [ + 53.6187461, + 9.8617668 + ], + [ + 53.6196281, + 9.8600882 + ], + [ + 53.6201021, + 9.8592064 + ], + [ + 53.6202775, + 9.8588801 + ] + ] + }, + { + "osmId": "23240867", + "name": null, + "lengthMeters": 678.2261697540682, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6202116, + 9.858738 + ], + [ + 53.6200387, + 9.8590843 + ], + [ + 53.6196081, + 9.8599566 + ], + [ + 53.6188128, + 9.8615272 + ], + [ + 53.617915, + 9.863247 + ], + [ + 53.6176659, + 9.8637267 + ], + [ + 53.6174234, + 9.8641387 + ], + [ + 53.617122, + 9.8646164 + ], + [ + 53.6163975, + 9.8657486 + ], + [ + 53.6160675, + 9.8662642 + ] + ] + }, + { + "osmId": "23240879", + "name": null, + "lengthMeters": 1258.2952820370128, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6031576, + 9.8921955 + ], + [ + 53.6047236, + 9.8891539 + ], + [ + 53.605586, + 9.8874749 + ], + [ + 53.6068707, + 9.884958 + ], + [ + 53.6076244, + 9.8834923 + ], + [ + 53.6084322, + 9.8819095 + ], + [ + 53.6084494, + 9.8818785 + ], + [ + 53.6091775, + 9.8804562 + ], + [ + 53.6097571, + 9.8793311 + ], + [ + 53.6105609, + 9.8777711 + ] + ] + }, + { + "osmId": "23240880", + "name": null, + "lengthMeters": 1129.9180142094112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6159149, + 9.8665113 + ], + [ + 53.6156561, + 9.8669173 + ], + [ + 53.6141775, + 9.8692234 + ], + [ + 53.6137407, + 9.8699547 + ], + [ + 53.613541, + 9.870289 + ], + [ + 53.6130447, + 9.8712573 + ], + [ + 53.6119623, + 9.8733664 + ], + [ + 53.6108486, + 9.8755591 + ], + [ + 53.6103492, + 9.8767688 + ], + [ + 53.6102208, + 9.8771018 + ], + [ + 53.6099248, + 9.8778927 + ], + [ + 53.609587, + 9.8788105 + ], + [ + 53.6094622, + 9.8791297 + ], + [ + 53.6093142, + 9.8794445 + ] + ] + }, + { + "osmId": "23240883", + "name": null, + "lengthMeters": 690.7811421096542, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6201395, + 9.858582 + ], + [ + 53.6193468, + 9.8598233 + ], + [ + 53.6185804, + 9.861017 + ], + [ + 53.6174955, + 9.8627066 + ], + [ + 53.6155885, + 9.8657109 + ] + ] + }, + { + "osmId": "23240892", + "name": null, + "lengthMeters": 743.1507506464434, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.598752, + 9.900944 + ], + [ + 53.6006433, + 9.897186 + ], + [ + 53.6013253, + 9.895787 + ], + [ + 53.6020222, + 9.8944202 + ], + [ + 53.6026046, + 9.8932951 + ], + [ + 53.603078, + 9.8923596 + ] + ] + }, + { + "osmId": "23247376", + "name": null, + "lengthMeters": 262.94509647303266, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969386, + 13.2888731 + ], + [ + 52.4968909, + 13.2889396 + ], + [ + 52.4965117, + 13.2894905 + ], + [ + 52.4959704, + 13.2902542 + ], + [ + 52.4956273, + 13.2907135 + ], + [ + 52.495122, + 13.2913579 + ] + ] + }, + { + "osmId": "23253013", + "name": "Verbindungsbahn", + "lengthMeters": 270.66273140380554, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5624754, + 9.9456612 + ], + [ + 53.562555, + 9.9451492 + ], + [ + 53.5627, + 9.9441257 + ], + [ + 53.5627417, + 9.9438163 + ], + [ + 53.5628276, + 9.9431665 + ], + [ + 53.5628657, + 9.942837 + ], + [ + 53.562899, + 9.9425214 + ], + [ + 53.5629019, + 9.9424945 + ], + [ + 53.5629186, + 9.9423421 + ], + [ + 53.5629688, + 9.9418325 + ], + [ + 53.5629822, + 9.9416552 + ] + ] + }, + { + "osmId": "23253022", + "name": "Verbindungsbahn", + "lengthMeters": 83.9636042266266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5631433, + 9.9416731 + ], + [ + 53.5631217, + 9.9419554 + ], + [ + 53.5630757, + 9.9423312 + ], + [ + 53.562996, + 9.9429191 + ] + ] + }, + { + "osmId": "23253025", + "name": "Verbindungsbahn", + "lengthMeters": 313.6256581895271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5631105, + 9.9413199 + ], + [ + 53.5631385, + 9.9407421 + ], + [ + 53.5631375, + 9.9401988 + ], + [ + 53.5631199, + 9.9395999 + ], + [ + 53.5630885, + 9.9390444 + ], + [ + 53.5630031, + 9.9377544 + ], + [ + 53.562962, + 9.9371365 + ], + [ + 53.5629069, + 9.936596 + ] + ] + }, + { + "osmId": "23253068", + "name": "Verbindungsbahn", + "lengthMeters": 175.2268222490421, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5625445, + 9.9387568 + ], + [ + 53.5625513, + 9.9387797 + ], + [ + 53.5625731, + 9.9388699 + ], + [ + 53.56258, + 9.9388986 + ], + [ + 53.5626985, + 9.939458 + ], + [ + 53.5627625, + 9.9397795 + ], + [ + 53.5627991, + 9.9399635 + ], + [ + 53.5628294, + 9.9401356 + ], + [ + 53.5628467, + 9.9402435 + ], + [ + 53.562863, + 9.9403631 + ], + [ + 53.5628825, + 9.9405091 + ], + [ + 53.5629003, + 9.9406776 + ], + [ + 53.5629238, + 9.9409944 + ], + [ + 53.5629409, + 9.9413113 + ] + ] + }, + { + "osmId": "23319340", + "name": null, + "lengthMeters": 223.55596873418534, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3915504, + 13.0944984 + ], + [ + 52.3915295, + 13.0939704 + ], + [ + 52.391511, + 13.0935044 + ], + [ + 52.3914698, + 13.0929623 + ], + [ + 52.391449, + 13.0927304 + ], + [ + 52.3913476, + 13.0916023 + ], + [ + 52.3913141, + 13.0912289 + ] + ] + }, + { + "osmId": "23319342", + "name": null, + "lengthMeters": 353.9396454326858, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3919092, + 13.1000121 + ], + [ + 52.3918314, + 13.0991064 + ], + [ + 52.3914656, + 13.0948471 + ] + ] + }, + { + "osmId": "23319345", + "name": null, + "lengthMeters": 1916.3500506213413, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3922082, + 13.0909248 + ], + [ + 52.3921466, + 13.0911937 + ], + [ + 52.3921369, + 13.0912382 + ], + [ + 52.3921301, + 13.0912693 + ], + [ + 52.3921168, + 13.0913118 + ], + [ + 52.3920596, + 13.0914921 + ], + [ + 52.3920125, + 13.0916463 + ], + [ + 52.3916459, + 13.0931953 + ], + [ + 52.3915951, + 13.0934159 + ], + [ + 52.3915688, + 13.0936663 + ], + [ + 52.3915896, + 13.094171 + ], + [ + 52.3916162, + 13.0946533 + ], + [ + 52.3916839, + 13.0954355 + ], + [ + 52.3918305, + 13.0970887 + ], + [ + 52.3920511, + 13.0995775 + ], + [ + 52.3921047, + 13.1001748 + ], + [ + 52.3923595, + 13.1032624 + ], + [ + 52.3924036, + 13.1037899 + ], + [ + 52.3924091, + 13.1038633 + ], + [ + 52.3925324, + 13.1050983 + ], + [ + 52.3925709, + 13.1055807 + ], + [ + 52.3926115, + 13.106021 + ], + [ + 52.3926757, + 13.1064827 + ], + [ + 52.3931897, + 13.1093678 + ], + [ + 52.3931978, + 13.1094134 + ], + [ + 52.3932469, + 13.109786 + ], + [ + 52.3933257, + 13.1102704 + ], + [ + 52.3933606, + 13.110505 + ], + [ + 52.3933747, + 13.1107405 + ], + [ + 52.3933691, + 13.1110903 + ], + [ + 52.3933115, + 13.1117769 + ], + [ + 52.3932614, + 13.1123119 + ], + [ + 52.3932258, + 13.1127263 + ], + [ + 52.3932283, + 13.112909 + ], + [ + 52.3932536, + 13.1130275 + ], + [ + 52.3932992, + 13.1131414 + ], + [ + 52.3933661, + 13.1132353 + ], + [ + 52.3934576, + 13.1132959 + ], + [ + 52.393573, + 13.113304 + ], + [ + 52.3936413, + 13.1132703 + ], + [ + 52.3937098, + 13.1132292 + ], + [ + 52.3937665, + 13.1131582 + ], + [ + 52.3938232, + 13.1129595 + ], + [ + 52.3938276, + 13.1127521 + ], + [ + 52.3937996, + 13.1125137 + ], + [ + 52.3937705, + 13.1123119 + ], + [ + 52.3936625, + 13.111724 + ], + [ + 52.3935555, + 13.1111234 + ], + [ + 52.3934878, + 13.1107086 + ], + [ + 52.3934557, + 13.1105116 + ], + [ + 52.3932927, + 13.1095616 + ], + [ + 52.393264, + 13.109394 + ], + [ + 52.3931434, + 13.1086908 + ] + ] + }, + { + "osmId": "23319347", + "name": null, + "lengthMeters": 233.4769196513628, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3914362, + 13.0945246 + ], + [ + 52.3911394, + 13.0911185 + ] + ] + }, + { + "osmId": "23319349", + "name": null, + "lengthMeters": 121.2524187674236, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3912721, + 13.0908123 + ], + [ + 52.3910557, + 13.089061 + ] + ] + }, + { + "osmId": "23319351", + "name": null, + "lengthMeters": 117.89855205642442, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3911064, + 13.0907424 + ], + [ + 52.3909584, + 13.089022 + ] + ] + }, + { + "osmId": "23319353", + "name": null, + "lengthMeters": 107.11633282013052, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3910067, + 13.0886231 + ], + [ + 52.3908453, + 13.0870669 + ] + ] + }, + { + "osmId": "23323586", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 802.47475385294, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4931681, + 10.2134642 + ], + [ + 53.4934312, + 10.2140983 + ], + [ + 53.4938748, + 10.2152425 + ], + [ + 53.4942959, + 10.2164534 + ], + [ + 53.4946427, + 10.2175642 + ], + [ + 53.4949073, + 10.2185333 + ], + [ + 53.4951671, + 10.2196028 + ], + [ + 53.4951834, + 10.2196793 + ], + [ + 53.49533, + 10.2203897 + ], + [ + 53.4953828, + 10.2206438 + ], + [ + 53.4955851, + 10.2217902 + ], + [ + 53.4956601, + 10.2222803 + ], + [ + 53.4958259, + 10.2235802 + ], + [ + 53.4959328, + 10.2245438 + ] + ] + }, + { + "osmId": "23367734", + "name": null, + "lengthMeters": 936.8992793062695, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5751934, + 9.816652 + ], + [ + 53.5748064, + 9.8171084 + ], + [ + 53.5743617, + 9.8176112 + ], + [ + 53.5742795, + 9.8177042 + ], + [ + 53.5738373, + 9.818152 + ], + [ + 53.5733917, + 9.8184991 + ], + [ + 53.5729294, + 9.818771 + ], + [ + 53.5710312, + 9.8197526 + ], + [ + 53.5707029, + 9.8198432 + ], + [ + 53.5696149, + 9.8201435 + ], + [ + 53.568577, + 9.8204289 + ], + [ + 53.5679878, + 9.8205575 + ], + [ + 53.5672406, + 9.820744 + ] + ] + }, + { + "osmId": "23425836", + "name": null, + "lengthMeters": 137.41533083850368, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5988638, + 9.8997618 + ], + [ + 53.5990056, + 9.8994153 + ], + [ + 53.5991268, + 9.8991617 + ], + [ + 53.5992588, + 9.898938 + ], + [ + 53.5995432, + 9.8984902 + ], + [ + 53.599695, + 9.8982304 + ] + ] + }, + { + "osmId": "23425842", + "name": null, + "lengthMeters": 469.2107790977485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5988638, + 9.8997618 + ], + [ + 53.5986482, + 9.9003316 + ], + [ + 53.5985092, + 9.9006783 + ], + [ + 53.5982145, + 9.9013833 + ], + [ + 53.5976663, + 9.9027216 + ], + [ + 53.5973868, + 9.9033814 + ], + [ + 53.5970228, + 9.9041943 + ], + [ + 53.5963903, + 9.9055172 + ] + ] + }, + { + "osmId": "23425865", + "name": null, + "lengthMeters": 151.96287688415435, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6093142, + 9.8794445 + ], + [ + 53.6091401, + 9.8797959 + ], + [ + 53.6090118, + 9.8800821 + ], + [ + 53.6087885, + 9.8806225 + ], + [ + 53.6086257, + 9.8810242 + ], + [ + 53.6085109, + 9.8813061 + ] + ] + }, + { + "osmId": "23439780", + "name": null, + "lengthMeters": 85.48818331625536, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.516813, + 13.3833361 + ], + [ + 52.5167261, + 13.3820808 + ] + ] + }, + { + "osmId": "23462684", + "name": null, + "lengthMeters": 239.47540859908918, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5039257, + 13.300246 + ], + [ + 52.5038892, + 13.3000888 + ], + [ + 52.5038581, + 13.2999574 + ], + [ + 52.5038552, + 13.2999448 + ], + [ + 52.5038517, + 13.2999301 + ], + [ + 52.5038335, + 13.2998532 + ], + [ + 52.5037936, + 13.2996891 + ], + [ + 52.5037069, + 13.2993526 + ], + [ + 52.5036172, + 13.2990185 + ], + [ + 52.5032793, + 13.2978222 + ], + [ + 52.503132, + 13.2973051 + ], + [ + 52.5030505, + 13.2970144 + ] + ] + }, + { + "osmId": "23462686", + "name": null, + "lengthMeters": 301.52636143575853, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038122, + 13.3002572 + ], + [ + 52.5037558, + 13.300008 + ], + [ + 52.5037511, + 13.2999861 + ], + [ + 52.503736, + 13.2999149 + ], + [ + 52.5035348, + 13.2990286 + ], + [ + 52.5034843, + 13.2988187 + ], + [ + 52.5034331, + 13.2986089 + ], + [ + 52.5033756, + 13.2983799 + ], + [ + 52.5033164, + 13.2981509 + ], + [ + 52.5030927, + 13.2973275 + ], + [ + 52.5027616, + 13.2961529 + ] + ] + }, + { + "osmId": "23469367", + "name": "Anhalter Bahn", + "lengthMeters": 297.1726553982089, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3499096, + 13.2842668 + ], + [ + 52.3485439, + 13.2837114 + ], + [ + 52.3482288, + 13.2835829 + ], + [ + 52.3473157, + 13.2832133 + ] + ] + }, + { + "osmId": "23482854", + "name": null, + "lengthMeters": 335.19903342343645, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4668459, + 13.3611537 + ], + [ + 52.4671306, + 13.3612491 + ], + [ + 52.4673269, + 13.3613303 + ], + [ + 52.4677348, + 13.36154 + ], + [ + 52.4680788, + 13.3617346 + ], + [ + 52.4681743, + 13.3617829 + ], + [ + 52.4682712, + 13.3618214 + ], + [ + 52.468394, + 13.361853 + ], + [ + 52.4686446, + 13.3619005 + ], + [ + 52.468974, + 13.3619863 + ], + [ + 52.469164, + 13.3620888 + ], + [ + 52.4695274, + 13.3622903 + ], + [ + 52.4697517, + 13.3624156 + ] + ] + }, + { + "osmId": "23492712", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 255.44156070819403, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293737, + 10.0690536 + ], + [ + 53.5292901, + 10.0692163 + ], + [ + 53.5290275, + 10.0697378 + ], + [ + 53.5286715, + 10.0704342 + ], + [ + 53.5286469, + 10.0704822 + ], + [ + 53.5280608, + 10.0716503 + ], + [ + 53.5280283, + 10.0717159 + ], + [ + 53.5278859, + 10.0719982 + ] + ] + }, + { + "osmId": "23492723", + "name": null, + "lengthMeters": 1102.9902089440222, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4990784, + 10.1293767 + ], + [ + 53.4993026, + 10.1289241 + ], + [ + 53.501686, + 10.1242979 + ], + [ + 53.5032828, + 10.1211595 + ], + [ + 53.5040518, + 10.1196505 + ], + [ + 53.5055362, + 10.116718 + ] + ] + }, + { + "osmId": "23492741", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 145.05376846129667, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5269554, + 10.0743763 + ], + [ + 53.5272983, + 10.0737069 + ], + [ + 53.5277853, + 10.0726836 + ] + ] + }, + { + "osmId": "23501153", + "name": null, + "lengthMeters": 409.33179064071004, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5277786, + 9.9318602 + ], + [ + 53.5276552, + 9.9317369 + ], + [ + 53.5274, + 9.9314565 + ], + [ + 53.5271265, + 9.9311644 + ], + [ + 53.5269285, + 9.9309623 + ], + [ + 53.526605, + 9.9305989 + ], + [ + 53.5264493, + 9.9304166 + ], + [ + 53.5263216, + 9.9302671 + ], + [ + 53.5255609, + 9.929382 + ], + [ + 53.5255373, + 9.9293545 + ], + [ + 53.5251302, + 9.9288795 + ], + [ + 53.5247243, + 9.928406 + ] + ] + }, + { + "osmId": "23532499", + "name": null, + "lengthMeters": 218.5576210391281, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.524367, + 9.9279884 + ], + [ + 53.52404, + 9.9275916 + ], + [ + 53.5236484, + 9.9271163 + ], + [ + 53.5234093, + 9.9268068 + ], + [ + 53.5233534, + 9.9267329 + ], + [ + 53.5228351, + 9.9260714 + ], + [ + 53.5227908, + 9.9260137 + ] + ] + }, + { + "osmId": "23533542", + "name": null, + "lengthMeters": 392.0949848702468, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.510333, + 9.921895 + ], + [ + 53.5102073, + 9.9225347 + ], + [ + 53.5099131, + 9.924032 + ], + [ + 53.50968, + 9.9248998 + ], + [ + 53.5095784, + 9.9252069 + ], + [ + 53.5094728, + 9.925503 + ], + [ + 53.5093882, + 9.9257149 + ], + [ + 53.5093414, + 9.9258302 + ], + [ + 53.5091118, + 9.9263205 + ], + [ + 53.5090919, + 9.9263625 + ], + [ + 53.5088459, + 9.9268687 + ], + [ + 53.5087296, + 9.927101 + ] + ] + }, + { + "osmId": "23533673", + "name": null, + "lengthMeters": 217.47360560831527, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5083127, + 9.9280674 + ], + [ + 53.5082875, + 9.9281231 + ], + [ + 53.5082267, + 9.9282389 + ], + [ + 53.5081794, + 9.9283288 + ], + [ + 53.5080743, + 9.9284953 + ], + [ + 53.507913, + 9.9287067 + ], + [ + 53.5077411, + 9.9288788 + ], + [ + 53.5076043, + 9.9289892 + ], + [ + 53.5074168, + 9.9290958 + ], + [ + 53.5073017, + 9.9291472 + ], + [ + 53.5071365, + 9.9291968 + ], + [ + 53.506974, + 9.9292153 + ], + [ + 53.5069646, + 9.9292164 + ], + [ + 53.5068606, + 9.929223 + ], + [ + 53.5065719, + 9.9292454 + ] + ] + }, + { + "osmId": "23549861", + "name": null, + "lengthMeters": 407.98231324213475, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4371147, + 13.1968099 + ], + [ + 52.4368727, + 13.1964984 + ], + [ + 52.4366178, + 13.196199 + ], + [ + 52.4361179, + 13.1956454 + ], + [ + 52.4359344, + 13.1954648 + ], + [ + 52.4357522, + 13.1952808 + ], + [ + 52.4353845, + 13.1949405 + ], + [ + 52.4352544, + 13.1948262 + ], + [ + 52.4351241, + 13.1947147 + ], + [ + 52.4350372, + 13.1946428 + ], + [ + 52.4349422, + 13.1945663 + ], + [ + 52.4348283, + 13.1944748 + ], + [ + 52.4347216, + 13.1943926 + ], + [ + 52.4345997, + 13.1942978 + ], + [ + 52.4344734, + 13.1942026 + ], + [ + 52.4343481, + 13.1941137 + ], + [ + 52.4342191, + 13.1940246 + ], + [ + 52.4340844, + 13.193933 + ], + [ + 52.4339397, + 13.1938374 + ] + ] + }, + { + "osmId": "23549862", + "name": null, + "lengthMeters": 882.0656844322305, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.440537, + 13.2013171 + ], + [ + 52.4391403, + 13.1995537 + ], + [ + 52.4378154, + 13.1978794 + ], + [ + 52.4375404, + 13.1975319 + ], + [ + 52.4370591, + 13.1969282 + ], + [ + 52.4368184, + 13.1966279 + ], + [ + 52.4365741, + 13.1963328 + ], + [ + 52.4363238, + 13.1960449 + ], + [ + 52.4360794, + 13.1957818 + ], + [ + 52.4357893, + 13.1954932 + ], + [ + 52.4355013, + 13.195227 + ], + [ + 52.4352097, + 13.1949819 + ], + [ + 52.4351357, + 13.1949217 + ], + [ + 52.435058, + 13.194861 + ], + [ + 52.4349017, + 13.1947409 + ], + [ + 52.4347878, + 13.1946569 + ], + [ + 52.4346694, + 13.1945733 + ], + [ + 52.434563, + 13.1945005 + ], + [ + 52.4344663, + 13.1944352 + ], + [ + 52.4343656, + 13.1943695 + ], + [ + 52.4342655, + 13.1943073 + ], + [ + 52.4341629, + 13.1942456 + ], + [ + 52.4339706, + 13.1941355 + ] + ] + }, + { + "osmId": "23555279", + "name": null, + "lengthMeters": 168.04691198820336, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6754121, + 10.1500341 + ], + [ + 53.6767277, + 10.1487785 + ] + ] + }, + { + "osmId": "23557706", + "name": null, + "lengthMeters": 97.16824902045462, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4806039, + 9.9831342 + ], + [ + 53.4806036, + 9.9831077 + ], + [ + 53.4806086, + 9.9830349 + ], + [ + 53.4806342, + 9.9827038 + ], + [ + 53.4806732, + 9.9823683 + ], + [ + 53.4806957, + 9.9822146 + ], + [ + 53.4807542, + 9.9818313 + ], + [ + 53.4807714, + 9.9817229 + ], + [ + 53.4807746, + 9.9816967 + ] + ] + }, + { + "osmId": "23567485", + "name": null, + "lengthMeters": 431.8694314748603, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5173275, + 10.0102649 + ], + [ + 53.5175386, + 10.0103428 + ], + [ + 53.5175996, + 10.0103629 + ], + [ + 53.5177372, + 10.0104127 + ], + [ + 53.5180682, + 10.0105389 + ], + [ + 53.5185227, + 10.0107373 + ], + [ + 53.5186668, + 10.0108086 + ], + [ + 53.5191686, + 10.0111174 + ], + [ + 53.5193187, + 10.0112183 + ], + [ + 53.5196731, + 10.0114431 + ], + [ + 53.5197293, + 10.0114783 + ], + [ + 53.5198313, + 10.0115416 + ], + [ + 53.5198731, + 10.0115638 + ], + [ + 53.519999, + 10.0116242 + ], + [ + 53.5201861, + 10.0116929 + ], + [ + 53.5203878, + 10.011744 + ], + [ + 53.5206063, + 10.0117634 + ], + [ + 53.5207856, + 10.0117516 + ], + [ + 53.5209562, + 10.0117121 + ], + [ + 53.5210752, + 10.0116702 + ] + ] + }, + { + "osmId": "23575265", + "name": null, + "lengthMeters": 233.67137960145996, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4814826, + 10.0014101 + ], + [ + 53.4813838, + 10.0014625 + ], + [ + 53.4813271, + 10.0014961 + ], + [ + 53.4812521, + 10.0015323 + ], + [ + 53.4811675, + 10.0015683 + ], + [ + 53.4810997, + 10.001594 + ], + [ + 53.4810286, + 10.0016139 + ], + [ + 53.4809576, + 10.0016288 + ], + [ + 53.4808934, + 10.0016356 + ], + [ + 53.4806785, + 10.0016206 + ], + [ + 53.4804894, + 10.0015953 + ], + [ + 53.4802554, + 10.0015103 + ], + [ + 53.4799818, + 10.0013927 + ], + [ + 53.4794224, + 10.0012237 + ] + ] + }, + { + "osmId": "23575278", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 562.5944039190546, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4765438, + 10.0001253 + ], + [ + 53.4771981, + 10.0004469 + ], + [ + 53.4796599, + 10.0015705 + ], + [ + 53.4796769, + 10.0015783 + ], + [ + 53.4800037, + 10.0017275 + ], + [ + 53.4814348, + 10.002296 + ] + ] + }, + { + "osmId": "23575281", + "name": null, + "lengthMeters": 566.0154591070104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4813535, + 10.002614 + ], + [ + 53.4802007, + 10.0021496 + ], + [ + 53.4795644, + 10.0018882 + ], + [ + 53.4791231, + 10.001707 + ], + [ + 53.47713, + 10.0008227 + ], + [ + 53.476426, + 10.0004731 + ] + ] + }, + { + "osmId": "23588096", + "name": null, + "lengthMeters": 162.7400062132324, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0924723, + 11.6391828 + ], + [ + 48.0923412, + 11.63959 + ], + [ + 48.0923267, + 11.639635 + ], + [ + 48.0922358, + 11.6398988 + ], + [ + 48.0921425, + 11.6401493 + ], + [ + 48.0919457, + 11.6406441 + ], + [ + 48.091747, + 11.6410823 + ] + ] + }, + { + "osmId": "23692591", + "name": null, + "lengthMeters": 96.65158891058803, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411386, + 11.5496117 + ], + [ + 48.1411899, + 11.5491558 + ], + [ + 48.1412608, + 11.5483223 + ] + ] + }, + { + "osmId": "23692833", + "name": null, + "lengthMeters": 1311.2592853973465, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1431695, + 11.5155598 + ], + [ + 48.1431024, + 11.5137338 + ], + [ + 48.1431125, + 11.5129382 + ], + [ + 48.1431167, + 11.5126056 + ], + [ + 48.1431346, + 11.5123027 + ], + [ + 48.1431711, + 11.5116856 + ], + [ + 48.1432462, + 11.5107907 + ], + [ + 48.1435667, + 11.5077221 + ], + [ + 48.1437908, + 11.5055758 + ], + [ + 48.1440603, + 11.5030206 + ], + [ + 48.1441067, + 11.5025881 + ], + [ + 48.1443508, + 11.5002494 + ], + [ + 48.1444551, + 11.4992615 + ], + [ + 48.1445823, + 11.4980571 + ] + ] + }, + { + "osmId": "23692834", + "name": null, + "lengthMeters": 79.36964971726532, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1432203, + 11.5166268 + ], + [ + 48.1431695, + 11.5155598 + ] + ] + }, + { + "osmId": "23707855", + "name": null, + "lengthMeters": 425.2282657291093, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5397546, + 13.3610852 + ], + [ + 52.5398229, + 13.3612087 + ], + [ + 52.5399568, + 13.3614705 + ], + [ + 52.5400858, + 13.3617298 + ], + [ + 52.5404382, + 13.3624462 + ], + [ + 52.5407749, + 13.3631442 + ], + [ + 52.54124, + 13.3640818 + ], + [ + 52.5415031, + 13.3646206 + ], + [ + 52.541578, + 13.3647619 + ], + [ + 52.541857, + 13.3653333 + ], + [ + 52.5421554, + 13.3659783 + ] + ] + }, + { + "osmId": "23707857", + "name": null, + "lengthMeters": 497.0107020081243, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5422563, + 13.3656683 + ], + [ + 52.5421484, + 13.3654267 + ], + [ + 52.541852, + 13.3647191 + ], + [ + 52.541587, + 13.3640623 + ], + [ + 52.5413588, + 13.3635274 + ], + [ + 52.541264, + 13.3633206 + ], + [ + 52.5410782, + 13.3629292 + ], + [ + 52.5406504, + 13.3620299 + ], + [ + 52.540014, + 13.3607663 + ], + [ + 52.5397945, + 13.3603064 + ], + [ + 52.5395729, + 13.359797 + ] + ] + }, + { + "osmId": "23707859", + "name": "Berliner Ringbahn", + "lengthMeters": 109.3981423788618, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5394703, + 13.3599259 + ], + [ + 52.5398319, + 13.3608535 + ], + [ + 52.5399846, + 13.3613041 + ] + ] + }, + { + "osmId": "23712918", + "name": null, + "lengthMeters": 383.40703960600257, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6904029, + 9.9855912 + ], + [ + 53.6904114, + 9.9855926 + ], + [ + 53.6905891, + 9.9856222 + ], + [ + 53.6908279, + 9.9856683 + ], + [ + 53.6912023, + 9.9857694 + ], + [ + 53.6914007, + 9.985846 + ], + [ + 53.6915731, + 9.9859195 + ], + [ + 53.6918951, + 9.9860679 + ], + [ + 53.6920846, + 9.9861732 + ], + [ + 53.6922809, + 9.9862903 + ], + [ + 53.6924822, + 9.9864294 + ], + [ + 53.6926926, + 9.9865766 + ], + [ + 53.6927343, + 9.9866105 + ], + [ + 53.6928109, + 9.9866727 + ], + [ + 53.6929171, + 9.9867589 + ], + [ + 53.6931525, + 9.9869603 + ], + [ + 53.6933888, + 9.9871986 + ], + [ + 53.6936317, + 9.9874511 + ] + ] + }, + { + "osmId": "23714886", + "name": null, + "lengthMeters": 195.22046240612283, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5365443, + 13.3497084 + ], + [ + 52.5365754, + 13.350005 + ], + [ + 52.5368315, + 13.3523433 + ], + [ + 52.5368487, + 13.3525509 + ] + ] + }, + { + "osmId": "23714887", + "name": null, + "lengthMeters": 639.9629473951323, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5397845, + 13.3610451 + ], + [ + 52.5397771, + 13.3610322 + ], + [ + 52.5396721, + 13.3608505 + ], + [ + 52.5395698, + 13.3606827 + ], + [ + 52.5393912, + 13.3604212 + ], + [ + 52.5392022, + 13.3601806 + ], + [ + 52.539061, + 13.3600141 + ], + [ + 52.5388487, + 13.3598007 + ], + [ + 52.5386211, + 13.3596027 + ], + [ + 52.5384454, + 13.3594607 + ], + [ + 52.5382086, + 13.3592979 + ], + [ + 52.5379123, + 13.359156 + ], + [ + 52.5377609, + 13.3591042 + ], + [ + 52.5376199, + 13.359056 + ], + [ + 52.537411, + 13.3590078 + ], + [ + 52.537197, + 13.3589812 + ], + [ + 52.5368909, + 13.3589902 + ], + [ + 52.5367518, + 13.3590003 + ], + [ + 52.5366519, + 13.3590137 + ], + [ + 52.5365095, + 13.3590393 + ], + [ + 52.536352, + 13.3590779 + ], + [ + 52.5361727, + 13.3591366 + ], + [ + 52.535953, + 13.3592304 + ], + [ + 52.5357954, + 13.3593121 + ], + [ + 52.5355996, + 13.3594294 + ], + [ + 52.5353187, + 13.3596113 + ], + [ + 52.5350406, + 13.3598635 + ], + [ + 52.5345838, + 13.3603609 + ], + [ + 52.5345799, + 13.3603662 + ] + ] + }, + { + "osmId": "23714888", + "name": "Berliner Ringbahn", + "lengthMeters": 90.4174918627199, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5399846, + 13.3613041 + ], + [ + 52.5403818, + 13.3624707 + ] + ] + }, + { + "osmId": "23714891", + "name": null, + "lengthMeters": 162.06766488035464, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5390677, + 13.3586833 + ], + [ + 52.5382086, + 13.3567475 + ] + ] + }, + { + "osmId": "23714892", + "name": null, + "lengthMeters": 794.2236521747097, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5382086, + 13.3567475 + ], + [ + 52.5378452, + 13.3559146 + ], + [ + 52.5377531, + 13.3556843 + ], + [ + 52.5376912, + 13.35551 + ], + [ + 52.5376351, + 13.3553433 + ], + [ + 52.537594, + 13.3552067 + ], + [ + 52.5375213, + 13.3549411 + ], + [ + 52.5374592, + 13.3546789 + ], + [ + 52.5373777, + 13.3543004 + ], + [ + 52.5373339, + 13.3539785 + ], + [ + 52.5373005, + 13.3536354 + ], + [ + 52.5371932, + 13.3522963 + ], + [ + 52.5370952, + 13.351065 + ], + [ + 52.5370506, + 13.3504856 + ], + [ + 52.5370182, + 13.3500765 + ], + [ + 52.5369859, + 13.3496612 + ], + [ + 52.5369517, + 13.3492334 + ], + [ + 52.5369134, + 13.3488168 + ], + [ + 52.5368595, + 13.3483407 + ], + [ + 52.536738, + 13.3473981 + ], + [ + 52.5364912, + 13.3455033 + ] + ] + }, + { + "osmId": "23714893", + "name": "Berliner Ringbahn", + "lengthMeters": 156.83219400738673, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5389975, + 13.3587648 + ], + [ + 52.5389379, + 13.3586306 + ], + [ + 52.5381661, + 13.3568916 + ] + ] + }, + { + "osmId": "23714894", + "name": "Berliner Ringbahn", + "lengthMeters": 403.28345197493945, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.53805, + 13.3566293 + ], + [ + 52.53801, + 13.3565371 + ], + [ + 52.5379111, + 13.3563168 + ], + [ + 52.5377733, + 13.3560054 + ], + [ + 52.5376704, + 13.3557451 + ], + [ + 52.5375928, + 13.3555179 + ], + [ + 52.5375235, + 13.3553076 + ], + [ + 52.5374647, + 13.3550948 + ], + [ + 52.5373748, + 13.3547288 + ], + [ + 52.537305, + 13.3543622 + ], + [ + 52.5372655, + 13.3541041 + ], + [ + 52.5372302, + 13.3538016 + ], + [ + 52.5371551, + 13.3529905 + ], + [ + 52.5370444, + 13.3515761 + ], + [ + 52.5370163, + 13.3513159 + ], + [ + 52.5369949, + 13.3511362 + ], + [ + 52.5369835, + 13.3510382 + ] + ] + }, + { + "osmId": "23733742", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 189.3818063218654, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6050165, + 10.0069947 + ], + [ + 53.6052526, + 10.0078746 + ], + [ + 53.6057113, + 10.0096154 + ] + ] + }, + { + "osmId": "23733770", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 841.054316336726, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6065514, + 10.0126287 + ], + [ + 53.6067785, + 10.013454 + ], + [ + 53.6074354, + 10.0156575 + ], + [ + 53.6078382, + 10.0170433 + ], + [ + 53.607884, + 10.0171986 + ], + [ + 53.6082728, + 10.0185694 + ], + [ + 53.6087469, + 10.0202392 + ], + [ + 53.6093238, + 10.0223087 + ], + [ + 53.6094174, + 10.0226427 + ], + [ + 53.6096227, + 10.0233673 + ], + [ + 53.6098259, + 10.0241198 + ] + ] + }, + { + "osmId": "23809672", + "name": "Berliner Stadtbahn", + "lengthMeters": 85.53797714114398, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201263, + 13.390516 + ], + [ + 52.5201414, + 13.3908577 + ], + [ + 52.5201612, + 13.3911466 + ], + [ + 52.5202016, + 13.391774 + ] + ] + }, + { + "osmId": "23809674", + "name": "Berliner Stadtbahn", + "lengthMeters": 215.22170590734717, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5223214, + 13.4005007 + ], + [ + 52.5223336, + 13.4008341 + ], + [ + 52.5223448, + 13.4011 + ], + [ + 52.5223685, + 13.401365 + ], + [ + 52.5224015, + 13.401662 + ], + [ + 52.5224701, + 13.4020347 + ], + [ + 52.5225485, + 13.4024354 + ], + [ + 52.5227028, + 13.4030833 + ], + [ + 52.5228337, + 13.4035399 + ] + ] + }, + { + "osmId": "23824087", + "name": null, + "lengthMeters": 181.11806078186754, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5591284, + 9.9690701 + ], + [ + 53.5583363, + 9.9687653 + ], + [ + 53.5577876, + 9.9685649 + ], + [ + 53.557727, + 9.9685487 + ], + [ + 53.557657, + 9.9685386 + ], + [ + 53.5575848, + 9.9685373 + ], + [ + 53.5575338, + 9.9685398 + ] + ] + }, + { + "osmId": "23824112", + "name": null, + "lengthMeters": 1172.1480441264184, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5575338, + 9.9685398 + ], + [ + 53.5571303, + 9.9685585 + ], + [ + 53.5569984, + 9.9685706 + ], + [ + 53.5569025, + 9.9685864 + ], + [ + 53.5567193, + 9.9686267 + ], + [ + 53.556605, + 9.9686575 + ], + [ + 53.5563715, + 9.9687436 + ], + [ + 53.5562542, + 9.9687833 + ], + [ + 53.5561473, + 9.9688086 + ], + [ + 53.5515816, + 9.9698481 + ], + [ + 53.5513901, + 9.9698935 + ], + [ + 53.5509202, + 9.9699837 + ], + [ + 53.5504575, + 9.9700668 + ], + [ + 53.5503158, + 9.9700912 + ], + [ + 53.5502031, + 9.9701028 + ], + [ + 53.5497922, + 9.9701349 + ], + [ + 53.5488803, + 9.9701851 + ], + [ + 53.547686, + 9.9702573 + ], + [ + 53.5470576, + 9.9702095 + ] + ] + }, + { + "osmId": "23846605", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 400.1020731553187, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.600762, + 10.0343767 + ], + [ + 53.5999507, + 10.0346074 + ], + [ + 53.5995688, + 10.0347318 + ], + [ + 53.5992878, + 10.0348164 + ], + [ + 53.5988379, + 10.0349442 + ], + [ + 53.5981418, + 10.0351651 + ], + [ + 53.5975016, + 10.0353578 + ], + [ + 53.5972193, + 10.0354361 + ] + ] + }, + { + "osmId": "23855447", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1247.524855961579, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5739872, + 10.0580159 + ], + [ + 53.5734094, + 10.0583077 + ], + [ + 53.572896, + 10.0585575 + ], + [ + 53.5718898, + 10.0590419 + ], + [ + 53.5711717, + 10.0593845 + ], + [ + 53.5709776, + 10.0594771 + ], + [ + 53.5700662, + 10.059972 + ], + [ + 53.5694975, + 10.0603096 + ], + [ + 53.5686161, + 10.0608809 + ], + [ + 53.5685043, + 10.0609546 + ], + [ + 53.5682147, + 10.0611257 + ], + [ + 53.5666727, + 10.0621112 + ], + [ + 53.5662885, + 10.0623821 + ], + [ + 53.5633924, + 10.064192 + ] + ] + }, + { + "osmId": "23855964", + "name": null, + "lengthMeters": 245.97845868249877, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5918267, + 10.0709372 + ], + [ + 53.5918163, + 10.0706338 + ], + [ + 53.5918153, + 10.0701814 + ], + [ + 53.5918308, + 10.0696879 + ], + [ + 53.59187, + 10.0691212 + ], + [ + 53.5919315, + 10.0685391 + ], + [ + 53.5920097, + 10.0680113 + ], + [ + 53.5921425, + 10.0672737 + ] + ] + }, + { + "osmId": "23913565", + "name": null, + "lengthMeters": 111.24824979551914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5719009, + 13.4953983 + ], + [ + 52.5719794, + 13.4953096 + ], + [ + 52.572012, + 13.4952777 + ], + [ + 52.5720606, + 13.4952347 + ], + [ + 52.5720961, + 13.4952083 + ], + [ + 52.5721227, + 13.4951919 + ], + [ + 52.572155, + 13.4951778 + ], + [ + 52.5721836, + 13.4951692 + ], + [ + 52.5722185, + 13.4951639 + ], + [ + 52.5722545, + 13.4951647 + ], + [ + 52.5722897, + 13.49517 + ], + [ + 52.5723254, + 13.495178 + ], + [ + 52.5728569, + 13.4953337 + ] + ] + }, + { + "osmId": "23913617", + "name": null, + "lengthMeters": 216.0257456992246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.564679, + 13.5036791 + ], + [ + 52.5656594, + 13.5025519 + ], + [ + 52.5660598, + 13.5020873 + ], + [ + 52.5661358, + 13.5020039 + ], + [ + 52.566195, + 13.5019403 + ], + [ + 52.5662346, + 13.5018978 + ], + [ + 52.5662725, + 13.5018511 + ] + ] + }, + { + "osmId": "23913622", + "name": null, + "lengthMeters": 453.9611125061766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5635308, + 13.5059992 + ], + [ + 52.5636616, + 13.5063374 + ], + [ + 52.5640382, + 13.5073032 + ], + [ + 52.5641258, + 13.507522 + ], + [ + 52.5645304, + 13.5085655 + ], + [ + 52.5646248, + 13.5088039 + ], + [ + 52.5646856, + 13.5089642 + ], + [ + 52.5648248, + 13.5093407 + ], + [ + 52.5652349, + 13.5104589 + ], + [ + 52.5656933, + 13.5116952 + ] + ] + }, + { + "osmId": "23913650", + "name": null, + "lengthMeters": 453.9243677618213, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5570995, + 13.5146276 + ], + [ + 52.5579154, + 13.5155871 + ], + [ + 52.5580254, + 13.5156999 + ], + [ + 52.5580645, + 13.5157243 + ], + [ + 52.5581068, + 13.5157415 + ], + [ + 52.5581414, + 13.5157502 + ], + [ + 52.5581867, + 13.5157507 + ], + [ + 52.5582168, + 13.5157486 + ], + [ + 52.558253, + 13.5157339 + ], + [ + 52.5582901, + 13.5157129 + ], + [ + 52.5583269, + 13.5156805 + ], + [ + 52.558364, + 13.5156355 + ], + [ + 52.5583889, + 13.5155953 + ], + [ + 52.5584282, + 13.5155152 + ], + [ + 52.5584603, + 13.5154215 + ], + [ + 52.5587048, + 13.5145413 + ], + [ + 52.5587361, + 13.5144279 + ], + [ + 52.5592429, + 13.5125953 + ], + [ + 52.559384, + 13.5120848 + ], + [ + 52.5594659, + 13.5117889 + ] + ] + }, + { + "osmId": "23913745", + "name": null, + "lengthMeters": 89.48706101351038, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525513, + 13.5196288 + ], + [ + 52.5256095, + 13.5196213 + ], + [ + 52.5256938, + 13.5196115 + ], + [ + 52.5257956, + 13.5196029 + ], + [ + 52.5258493, + 13.5195984 + ], + [ + 52.5259308, + 13.519591 + ], + [ + 52.5259609, + 13.5195881 + ], + [ + 52.5260454, + 13.5195817 + ], + [ + 52.5261104, + 13.5195736 + ], + [ + 52.5261804, + 13.5195714 + ], + [ + 52.5262257, + 13.519569 + ], + [ + 52.5262775, + 13.5195612 + ], + [ + 52.5263165, + 13.519558 + ] + ] + }, + { + "osmId": "23913751", + "name": null, + "lengthMeters": 194.05323433330588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549567, + 13.5602169 + ], + [ + 52.549265, + 13.5597638 + ], + [ + 52.5492101, + 13.5596913 + ], + [ + 52.549114, + 13.5595664 + ], + [ + 52.5490289, + 13.5594613 + ], + [ + 52.5489639, + 13.5593849 + ], + [ + 52.5488985, + 13.5593095 + ], + [ + 52.5487102, + 13.5591049 + ], + [ + 52.548517, + 13.5589092 + ], + [ + 52.5484251, + 13.5588247 + ], + [ + 52.5483318, + 13.5587411 + ], + [ + 52.548238, + 13.5586567 + ], + [ + 52.5481909, + 13.5586153 + ], + [ + 52.5481433, + 13.5585777 + ] + ] + }, + { + "osmId": "23916910", + "name": null, + "lengthMeters": 544.0639960868701, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5774277, + 9.9517763 + ], + [ + 53.5777617, + 9.95153 + ], + [ + 53.5778561, + 9.9514663 + ], + [ + 53.577957, + 9.951383 + ], + [ + 53.5780336, + 9.9513126 + ], + [ + 53.5781315, + 9.951222 + ], + [ + 53.5782219, + 9.9511051 + ], + [ + 53.5783339, + 9.9509463 + ], + [ + 53.5785617, + 9.9505791 + ], + [ + 53.5789511, + 9.9499636 + ], + [ + 53.5791058, + 9.949719 + ], + [ + 53.5792414, + 9.9495119 + ], + [ + 53.5796177, + 9.9489295 + ], + [ + 53.580092, + 9.9481427 + ], + [ + 53.5801789, + 9.9480089 + ], + [ + 53.5802658, + 9.9479019 + ], + [ + 53.5803412, + 9.947824 + ], + [ + 53.5803975, + 9.9477719 + ], + [ + 53.5804779, + 9.9477002 + ], + [ + 53.5805988, + 9.9476179 + ], + [ + 53.5806894, + 9.9475711 + ], + [ + 53.5807549, + 9.9475408 + ], + [ + 53.5808395, + 9.9475128 + ], + [ + 53.5809691, + 9.9474875 + ], + [ + 53.5810883, + 9.9474728 + ], + [ + 53.5811953, + 9.9474708 + ], + [ + 53.5813233, + 9.9474912 + ], + [ + 53.5814222, + 9.9475117 + ] + ] + }, + { + "osmId": "23925852", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 311.2320344477816, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5527612, + 13.1157541 + ], + [ + 52.5526112, + 13.1163381 + ], + [ + 52.5524429, + 13.1169931 + ], + [ + 52.5523815, + 13.117228 + ], + [ + 52.5522302, + 13.1178121 + ], + [ + 52.5519091, + 13.1190522 + ], + [ + 52.5516766, + 13.1199976 + ] + ] + }, + { + "osmId": "23935780", + "name": null, + "lengthMeters": 130.11480851605324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5464062, + 9.9703897 + ], + [ + 53.5463968, + 9.970397 + ], + [ + 53.5463416, + 9.9704467 + ], + [ + 53.54625, + 9.9705426 + ], + [ + 53.5461488, + 9.9706546 + ], + [ + 53.5460823, + 9.9707629 + ], + [ + 53.5460193, + 9.9708863 + ], + [ + 53.5459635, + 9.9710053 + ], + [ + 53.5459104, + 9.9711437 + ], + [ + 53.5458494, + 9.9713191 + ], + [ + 53.5458152, + 9.9714379 + ], + [ + 53.5457682, + 9.9716219 + ], + [ + 53.5457023, + 9.9718908 + ] + ] + }, + { + "osmId": "23976810", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 930.8874738472707, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5334324, + 10.0971738 + ], + [ + 53.5334209, + 10.0972389 + ], + [ + 53.5333602, + 10.0975829 + ], + [ + 53.5325997, + 10.1019136 + ], + [ + 53.5324621, + 10.1026646 + ], + [ + 53.532406, + 10.1030348 + ], + [ + 53.5323795, + 10.103332 + ], + [ + 53.5323679, + 10.103628 + ], + [ + 53.5323709, + 10.1039077 + ], + [ + 53.5323879, + 10.10419 + ], + [ + 53.5324177, + 10.1044969 + ], + [ + 53.5324946, + 10.1049238 + ], + [ + 53.532616, + 10.1054522 + ], + [ + 53.5330559, + 10.107439 + ], + [ + 53.5333696, + 10.1088326 + ], + [ + 53.5334051, + 10.1090608 + ], + [ + 53.5334337, + 10.1093006 + ], + [ + 53.5334395, + 10.10938 + ], + [ + 53.5334563, + 10.1096142 + ], + [ + 53.5334613, + 10.1098803 + ], + [ + 53.5334553, + 10.1101575 + ], + [ + 53.5334414, + 10.1104426 + ], + [ + 53.5334171, + 10.1106934 + ] + ] + }, + { + "osmId": "23979282", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1163.1163483436667, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5493532, + 10.0685339 + ], + [ + 53.548883, + 10.0686076 + ], + [ + 53.5467874, + 10.0690879 + ], + [ + 53.5456957, + 10.0693318 + ], + [ + 53.5449924, + 10.0694894 + ], + [ + 53.5432886, + 10.0698713 + ], + [ + 53.5423596, + 10.0700795 + ], + [ + 53.5396393, + 10.0706891 + ], + [ + 53.5394467, + 10.0707236 + ], + [ + 53.5392945, + 10.0707383 + ], + [ + 53.5391681, + 10.07074 + ], + [ + 53.538979, + 10.0707256 + ] + ] + }, + { + "osmId": "23979283", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 92.10330035366373, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5501773, + 10.0683936 + ], + [ + 53.5493532, + 10.0685339 + ] + ] + }, + { + "osmId": "23979293", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 334.35700910434946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.553168, + 10.0678682 + ], + [ + 53.5503933, + 10.0683557 + ], + [ + 53.5501773, + 10.0683936 + ] + ] + }, + { + "osmId": "23982253", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 768.3516785948999, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5332912, + 10.1117532 + ], + [ + 53.5332642, + 10.1119761 + ], + [ + 53.533217, + 10.1122459 + ], + [ + 53.5331567, + 10.1125098 + ], + [ + 53.5330821, + 10.1127663 + ], + [ + 53.5329432, + 10.1131587 + ], + [ + 53.5326033, + 10.1141214 + ], + [ + 53.5325201, + 10.114357 + ], + [ + 53.5324752, + 10.1144752 + ], + [ + 53.5324723, + 10.1144827 + ], + [ + 53.5323545, + 10.1148114 + ], + [ + 53.5317002, + 10.1166363 + ], + [ + 53.5313728, + 10.1175719 + ], + [ + 53.5307659, + 10.1192402 + ], + [ + 53.5306413, + 10.1195828 + ], + [ + 53.5302578, + 10.1206286 + ], + [ + 53.5301832, + 10.120832 + ], + [ + 53.5299615, + 10.1214374 + ], + [ + 53.5299101, + 10.1215576 + ], + [ + 53.5298216, + 10.1217648 + ], + [ + 53.5298187, + 10.1217715 + ] + ] + }, + { + "osmId": "23986115", + "name": null, + "lengthMeters": 161.87133065121586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5946949, + 10.0856152 + ], + [ + 53.5942054, + 10.0833052 + ] + ] + }, + { + "osmId": "24018864", + "name": null, + "lengthMeters": 2147.2006417848024, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5324621, + 10.1026646 + ], + [ + 53.5323315, + 10.1031322 + ], + [ + 53.532263, + 10.1033604 + ], + [ + 53.5321855, + 10.1035764 + ], + [ + 53.5320987, + 10.1037711 + ], + [ + 53.5319688, + 10.1040144 + ], + [ + 53.5318313, + 10.104246 + ], + [ + 53.5311193, + 10.105444 + ], + [ + 53.5308975, + 10.1058227 + ], + [ + 53.530718, + 10.106118 + ], + [ + 53.5303909, + 10.1066648 + ], + [ + 53.5301325, + 10.1071081 + ], + [ + 53.5298937, + 10.1075198 + ], + [ + 53.5296473, + 10.1078995 + ], + [ + 53.5294937, + 10.1081002 + ], + [ + 53.5293346, + 10.1082832 + ], + [ + 53.5292382, + 10.1083886 + ], + [ + 53.5290743, + 10.1085168 + ], + [ + 53.5287191, + 10.108768 + ], + [ + 53.5282046, + 10.1090889 + ], + [ + 53.5280572, + 10.1091741 + ], + [ + 53.5277854, + 10.1092556 + ], + [ + 53.5274711, + 10.1093126 + ], + [ + 53.5272007, + 10.1093002 + ], + [ + 53.5270046, + 10.1092601 + ], + [ + 53.5268057, + 10.1091917 + ], + [ + 53.5265076, + 10.1090541 + ], + [ + 53.5262552, + 10.1088768 + ], + [ + 53.5261064, + 10.1087451 + ], + [ + 53.5259905, + 10.1086384 + ], + [ + 53.5258556, + 10.1084898 + ], + [ + 53.5253582, + 10.1078192 + ], + [ + 53.5243029, + 10.106338 + ], + [ + 53.5238995, + 10.1057541 + ], + [ + 53.5237831, + 10.1055261 + ], + [ + 53.523669, + 10.1052328 + ], + [ + 53.5235728, + 10.1048998 + ], + [ + 53.5235222, + 10.104684 + ], + [ + 53.5234689, + 10.1043212 + ], + [ + 53.5234536, + 10.1040196 + ], + [ + 53.5234517, + 10.1037163 + ], + [ + 53.523476, + 10.1034222 + ], + [ + 53.5235457, + 10.1029101 + ], + [ + 53.5236106, + 10.1024388 + ], + [ + 53.5236483, + 10.1021656 + ], + [ + 53.5236897, + 10.1019725 + ], + [ + 53.5237359, + 10.1017799 + ], + [ + 53.5237973, + 10.1015746 + ], + [ + 53.5238735, + 10.1013776 + ], + [ + 53.5241251, + 10.1008244 + ], + [ + 53.5242504, + 10.1005482 + ], + [ + 53.5243356, + 10.10034 + ], + [ + 53.5246966, + 10.0994581 + ], + [ + 53.5249054, + 10.0988214 + ], + [ + 53.5249725, + 10.0985785 + ], + [ + 53.5250273, + 10.0983805 + ], + [ + 53.5250905, + 10.0981079 + ], + [ + 53.5251456, + 10.0978855 + ], + [ + 53.525563, + 10.0956615 + ], + [ + 53.5255787, + 10.0955776 + ], + [ + 53.5256333, + 10.0952735 + ], + [ + 53.5258267, + 10.0942372 + ], + [ + 53.5259411, + 10.0936313 + ], + [ + 53.5261101, + 10.0927094 + ] + ] + }, + { + "osmId": "24019362", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 159.26423296628934, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5352415, + 10.0545045 + ], + [ + 53.5345616, + 10.0566256 + ] + ] + }, + { + "osmId": "24019365", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 118.63378355547702, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5342544, + 10.0575564 + ], + [ + 53.5338592, + 10.0586694 + ], + [ + 53.5337476, + 10.0589634 + ], + [ + 53.5336997, + 10.0590896 + ] + ] + }, + { + "osmId": "24019706", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 98.18445852715249, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5413435, + 10.0373356 + ], + [ + 53.5415389, + 10.0371381 + ], + [ + 53.5417168, + 10.0369742 + ], + [ + 53.541781, + 10.036915 + ], + [ + 53.5421226, + 10.0366386 + ] + ] + }, + { + "osmId": "24019717", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 105.41503253988702, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5522281, + 10.0275204 + ], + [ + 53.5522998, + 10.0271966 + ], + [ + 53.5523231, + 10.0270864 + ], + [ + 53.552359, + 10.0268444 + ], + [ + 53.5523826, + 10.0266789 + ], + [ + 53.5524031, + 10.0264994 + ], + [ + 53.5524355, + 10.0260194 + ], + [ + 53.5524363, + 10.0259717 + ] + ] + }, + { + "osmId": "24019739", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 77.68740166349679, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518866, + 10.0285438 + ], + [ + 53.551993, + 10.028276 + ], + [ + 53.5520493, + 10.0281192 + ], + [ + 53.5521338, + 10.0278629 + ], + [ + 53.55219, + 10.0276629 + ], + [ + 53.5522281, + 10.0275204 + ] + ] + }, + { + "osmId": "24025294", + "name": null, + "lengthMeters": 1063.063110094686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.487969, + 10.2015344 + ], + [ + 53.4878355, + 10.2010608 + ], + [ + 53.4876931, + 10.2005324 + ], + [ + 53.487567, + 10.2000145 + ], + [ + 53.4874769, + 10.1996169 + ], + [ + 53.4874563, + 10.1995188 + ], + [ + 53.4873935, + 10.1992188 + ], + [ + 53.4872937, + 10.1987023 + ], + [ + 53.4872019, + 10.1981832 + ], + [ + 53.4870505, + 10.197173 + ], + [ + 53.4869826, + 10.1966207 + ], + [ + 53.4869372, + 10.1961998 + ], + [ + 53.4869193, + 10.1960308 + ], + [ + 53.4868763, + 10.1955468 + ], + [ + 53.4868402, + 10.195058 + ], + [ + 53.4868118, + 10.1945805 + ], + [ + 53.4867913, + 10.1941023 + ], + [ + 53.4867766, + 10.1935993 + ], + [ + 53.4867727, + 10.1932924 + ], + [ + 53.4867715, + 10.1929851 + ], + [ + 53.4867781, + 10.1926091 + ], + [ + 53.4867889, + 10.1922343 + ], + [ + 53.4868278, + 10.1914849 + ], + [ + 53.4868461, + 10.1912053 + ], + [ + 53.4868683, + 10.1909261 + ], + [ + 53.48689, + 10.1906381 + ], + [ + 53.4869158, + 10.1903501 + ], + [ + 53.4870021, + 10.1894941 + ], + [ + 53.4870962, + 10.1886396 + ], + [ + 53.4872014, + 10.1877042 + ], + [ + 53.4874067, + 10.185866 + ] + ] + }, + { + "osmId": "24025306", + "name": null, + "lengthMeters": 154.12889723213948, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4897414, + 10.2057776 + ], + [ + 53.4893197, + 10.2049212 + ], + [ + 53.489113, + 10.2044834 + ], + [ + 53.4889132, + 10.2040486 + ], + [ + 53.4888748, + 10.2039598 + ] + ] + }, + { + "osmId": "24025365", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 499.82839395622847, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5297267, + 10.0686668 + ], + [ + 53.5304947, + 10.0672112 + ], + [ + 53.530828, + 10.0665765 + ], + [ + 53.5309325, + 10.0663627 + ], + [ + 53.5309389, + 10.0663495 + ], + [ + 53.5313227, + 10.0655586 + ], + [ + 53.532074, + 10.0639573 + ], + [ + 53.5321279, + 10.0638421 + ], + [ + 53.5321683, + 10.0637569 + ], + [ + 53.5322667, + 10.0635532 + ], + [ + 53.5323665, + 10.0633524 + ], + [ + 53.5324863, + 10.0631096 + ], + [ + 53.5326105, + 10.0628686 + ] + ] + }, + { + "osmId": "24025367", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 174.97231539267025, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5344214, + 10.0581397 + ], + [ + 53.5350967, + 10.0557483 + ] + ] + }, + { + "osmId": "24025408", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 611.0312158928011, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5350967, + 10.0557483 + ], + [ + 53.5356398, + 10.0538471 + ], + [ + 53.5358166, + 10.0532283 + ], + [ + 53.5363031, + 10.0514683 + ], + [ + 53.5365258, + 10.0506749 + ], + [ + 53.536878, + 10.0494199 + ], + [ + 53.5372184, + 10.048266 + ], + [ + 53.5374796, + 10.0474175 + ] + ] + }, + { + "osmId": "24025456", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 103.50877251493755, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5413186, + 10.0375838 + ], + [ + 53.5414708, + 10.0374218 + ], + [ + 53.5415979, + 10.0372991 + ], + [ + 53.5418431, + 10.0370789 + ], + [ + 53.5420104, + 10.0369423 + ], + [ + 53.5421339, + 10.03683 + ] + ] + }, + { + "osmId": "24025460", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 385.1196993548337, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5389522, + 10.0424465 + ], + [ + 53.5389844, + 10.0423384 + ], + [ + 53.5390216, + 10.0422086 + ], + [ + 53.5392708, + 10.0413376 + ], + [ + 53.5393774, + 10.0410055 + ], + [ + 53.5395102, + 10.0406209 + ], + [ + 53.5396269, + 10.0403143 + ], + [ + 53.5397515, + 10.0400155 + ], + [ + 53.5399237, + 10.0396376 + ], + [ + 53.5400695, + 10.039347 + ], + [ + 53.5401914, + 10.0391191 + ], + [ + 53.5404174, + 10.0387325 + ], + [ + 53.5406697, + 10.0383681 + ], + [ + 53.5410393, + 10.0378972 + ] + ] + }, + { + "osmId": "24025523", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 171.83485491642236, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.542718, + 10.0363734 + ], + [ + 53.5440358, + 10.035358 + ], + [ + 53.5441237, + 10.0352931 + ] + ] + }, + { + "osmId": "24025533", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 211.47828082713676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.544268, + 10.0351866 + ], + [ + 53.5443396, + 10.0351337 + ], + [ + 53.5450237, + 10.0345998 + ], + [ + 53.5459965, + 10.0338515 + ] + ] + }, + { + "osmId": "24025577", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 277.8739013393459, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5498695, + 10.0308494 + ], + [ + 53.5499007, + 10.0308246 + ], + [ + 53.5501458, + 10.030678 + ], + [ + 53.5503773, + 10.0305322 + ], + [ + 53.550574, + 10.0303974 + ], + [ + 53.5508017, + 10.030228 + ], + [ + 53.5509894, + 10.0300785 + ], + [ + 53.5511706, + 10.0299196 + ], + [ + 53.5513293, + 10.0297372 + ], + [ + 53.5514467, + 10.029586 + ], + [ + 53.5516417, + 10.0292747 + ], + [ + 53.5517626, + 10.0290623 + ], + [ + 53.5519013, + 10.0288017 + ], + [ + 53.5519591, + 10.0286801 + ] + ] + }, + { + "osmId": "24025580", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 122.26024653331586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5523193, + 10.0277235 + ], + [ + 53.5523248, + 10.0277061 + ], + [ + 53.5523636, + 10.0275765 + ], + [ + 53.5523978, + 10.0274571 + ], + [ + 53.5524605, + 10.027204 + ], + [ + 53.5524984, + 10.0270336 + ], + [ + 53.5525273, + 10.0268838 + ], + [ + 53.5525622, + 10.0266703 + ], + [ + 53.5525773, + 10.0265681 + ], + [ + 53.5525887, + 10.0264723 + ], + [ + 53.5526094, + 10.0262743 + ], + [ + 53.5526246, + 10.0260862 + ], + [ + 53.5526317, + 10.0259624 + ] + ] + }, + { + "osmId": "24027904", + "name": null, + "lengthMeters": 1892.813487289055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5407165, + 10.1366679 + ], + [ + 53.5407973, + 10.1370294 + ], + [ + 53.5408358, + 10.1372369 + ], + [ + 53.5408837, + 10.1375776 + ], + [ + 53.5409325, + 10.1380908 + ], + [ + 53.5409375, + 10.1381506 + ], + [ + 53.5410213, + 10.1392138 + ], + [ + 53.5410814, + 10.1399977 + ], + [ + 53.5411333, + 10.1406092 + ], + [ + 53.5411558, + 10.1408912 + ], + [ + 53.5411739, + 10.1411981 + ], + [ + 53.5411848, + 10.1416538 + ], + [ + 53.5411823, + 10.1419439 + ], + [ + 53.5411746, + 10.1421818 + ], + [ + 53.5411677, + 10.1424213 + ], + [ + 53.5411348, + 10.1427627 + ], + [ + 53.5411091, + 10.1429863 + ], + [ + 53.5410802, + 10.1431654 + ], + [ + 53.5410414, + 10.1433695 + ], + [ + 53.5409942, + 10.1435943 + ], + [ + 53.5409452, + 10.1438064 + ], + [ + 53.5408945, + 10.1439865 + ], + [ + 53.5408197, + 10.1442205 + ], + [ + 53.5407847, + 10.1443302 + ], + [ + 53.5406909, + 10.1445807 + ], + [ + 53.5406214, + 10.1447486 + ], + [ + 53.5405247, + 10.1449626 + ], + [ + 53.5404532, + 10.1450903 + ], + [ + 53.5403925, + 10.1451835 + ], + [ + 53.5403338, + 10.1452788 + ], + [ + 53.5402682, + 10.1453746 + ], + [ + 53.5401978, + 10.1454718 + ], + [ + 53.5401339, + 10.1455641 + ], + [ + 53.5400117, + 10.1457081 + ], + [ + 53.5398663, + 10.1458738 + ], + [ + 53.5394228, + 10.146291 + ], + [ + 53.5384943, + 10.1471166 + ], + [ + 53.5379823, + 10.1475723 + ], + [ + 53.5375329, + 10.1479662 + ], + [ + 53.5370515, + 10.1484014 + ], + [ + 53.5365313, + 10.148837 + ], + [ + 53.5361575, + 10.1491013 + ], + [ + 53.535872, + 10.1492848 + ], + [ + 53.5353902, + 10.1495552 + ], + [ + 53.5348984, + 10.1497747 + ], + [ + 53.5345855, + 10.1499088 + ], + [ + 53.5342641, + 10.1499825 + ], + [ + 53.5340304, + 10.1500453 + ], + [ + 53.5336299, + 10.1501121 + ], + [ + 53.5332287, + 10.1501388 + ], + [ + 53.5329141, + 10.1501585 + ], + [ + 53.5324979, + 10.1501438 + ], + [ + 53.5316467, + 10.1501053 + ], + [ + 53.530823, + 10.1500735 + ], + [ + 53.5293783, + 10.1500101 + ] + ] + }, + { + "osmId": "24030405", + "name": "Anhalter Bahn", + "lengthMeters": 1094.3159496140256, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4201909, + 13.3157547 + ], + [ + 52.4203616, + 13.3159251 + ], + [ + 52.4205318, + 13.3160973 + ], + [ + 52.4207716, + 13.3163439 + ], + [ + 52.4210097, + 13.3165923 + ], + [ + 52.4215175, + 13.3171402 + ], + [ + 52.4217157, + 13.3173598 + ], + [ + 52.4220013, + 13.3176808 + ], + [ + 52.4222562, + 13.317975 + ], + [ + 52.4225003, + 13.3182579 + ], + [ + 52.4226375, + 13.3184231 + ], + [ + 52.4227747, + 13.3185895 + ], + [ + 52.4230154, + 13.3188931 + ], + [ + 52.4232275, + 13.3191689 + ], + [ + 52.4233653, + 13.3193536 + ], + [ + 52.4235022, + 13.3195421 + ], + [ + 52.4236304, + 13.3197236 + ], + [ + 52.4237573, + 13.3199073 + ], + [ + 52.4238519, + 13.3200443 + ], + [ + 52.4239455, + 13.3201814 + ], + [ + 52.4241408, + 13.3204796 + ], + [ + 52.4243345, + 13.3207811 + ], + [ + 52.4245428, + 13.3211119 + ], + [ + 52.4247497, + 13.3214438 + ], + [ + 52.4251985, + 13.3221701 + ], + [ + 52.4256583, + 13.322914 + ], + [ + 52.4258712, + 13.3232505 + ], + [ + 52.4260835, + 13.3235852 + ], + [ + 52.4263111, + 13.3239332 + ], + [ + 52.4265393, + 13.3242801 + ], + [ + 52.4277352, + 13.3260424 + ] + ] + }, + { + "osmId": "24031007", + "name": null, + "lengthMeters": 355.02070495580494, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5400881, + 13.3795585 + ], + [ + 52.5392116, + 13.3797546 + ], + [ + 52.5387865, + 13.3798745 + ], + [ + 52.5383857, + 13.3800189 + ], + [ + 52.5379818, + 13.3801849 + ], + [ + 52.5376461, + 13.3803304 + ], + [ + 52.5372992, + 13.3804954 + ], + [ + 52.5369768, + 13.3806828 + ] + ] + }, + { + "osmId": "24031284", + "name": "Anhalter Bahn", + "lengthMeters": 126.92209367718023, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4182756, + 13.3140535 + ], + [ + 52.4185245, + 13.3142542 + ], + [ + 52.4187739, + 13.3144585 + ], + [ + 52.419017, + 13.3146647 + ], + [ + 52.4192913, + 13.314907 + ] + ] + }, + { + "osmId": "24031290", + "name": null, + "lengthMeters": 105.6084952062384, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4193391, + 13.3145345 + ], + [ + 52.4191263, + 13.3143462 + ], + [ + 52.4189581, + 13.3142073 + ], + [ + 52.4186817, + 13.3139951 + ], + [ + 52.4184878, + 13.313845 + ] + ] + }, + { + "osmId": "24040274", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 77.55507539693531, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5509186, + 10.0205649 + ], + [ + 53.5509432, + 10.0206393 + ], + [ + 53.5512738, + 10.0215752 + ] + ] + }, + { + "osmId": "24040280", + "name": null, + "lengthMeters": 514.7169497541556, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557741, + 10.0526468 + ], + [ + 53.555781, + 10.0511761 + ], + [ + 53.5557797, + 10.049152 + ], + [ + 53.5558288, + 10.0448553 + ] + ] + }, + { + "osmId": "24040284", + "name": null, + "lengthMeters": 503.5480310923687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5544423, + 10.0645964 + ], + [ + 53.5545874, + 10.0635838 + ], + [ + 53.555001, + 10.0608253 + ], + [ + 53.555078, + 10.0602812 + ], + [ + 53.5552195, + 10.0592915 + ], + [ + 53.5554068, + 10.05783 + ], + [ + 53.5554878, + 10.0571801 + ] + ] + }, + { + "osmId": "24040744", + "name": null, + "lengthMeters": 334.0881435641645, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5888659, + 10.0642398 + ], + [ + 53.5889781, + 10.0643262 + ], + [ + 53.5890912, + 10.0644231 + ], + [ + 53.5891934, + 10.0645253 + ], + [ + 53.5892752, + 10.0646229 + ], + [ + 53.5893994, + 10.0647756 + ], + [ + 53.5895683, + 10.0650162 + ], + [ + 53.589635, + 10.0651378 + ], + [ + 53.5897688, + 10.0653864 + ], + [ + 53.5898875, + 10.0656357 + ], + [ + 53.5902189, + 10.0663344 + ], + [ + 53.5906958, + 10.0673627 + ], + [ + 53.5909226, + 10.0678502 + ] + ] + }, + { + "osmId": "24044531", + "name": "Anhalter Bahn", + "lengthMeters": 185.6033527446154, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4279311, + 13.3263312 + ], + [ + 52.4279777, + 13.3264 + ], + [ + 52.4291727, + 13.3281608 + ] + ] + }, + { + "osmId": "24045302", + "name": null, + "lengthMeters": 140.8736250218804, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6039295, + 13.457017 + ], + [ + 52.6028701, + 13.455873 + ] + ] + }, + { + "osmId": "24045303", + "name": null, + "lengthMeters": 534.3930936356697, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.590726, + 13.4425723 + ], + [ + 52.5906693, + 13.4425178 + ], + [ + 52.5905175, + 13.4423721 + ], + [ + 52.5896418, + 13.4415259 + ], + [ + 52.589238, + 13.4411073 + ], + [ + 52.5887655, + 13.4405984 + ], + [ + 52.5886713, + 13.4404969 + ], + [ + 52.5882096, + 13.4399996 + ], + [ + 52.586667, + 13.4383401 + ] + ] + }, + { + "osmId": "24047222", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 288.4540795972944, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5880279, + 10.041921 + ], + [ + 53.5875477, + 10.0445873 + ], + [ + 53.5874519, + 10.0451196 + ], + [ + 53.5873489, + 10.045636 + ], + [ + 53.5872434, + 10.046085 + ] + ] + }, + { + "osmId": "24050599", + "name": null, + "lengthMeters": 236.94847286473612, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293283, + 10.0689911 + ], + [ + 53.5289181, + 10.0698147 + ], + [ + 53.5288917, + 10.0698703 + ], + [ + 53.5282788, + 10.0710591 + ], + [ + 53.5279432, + 10.0717152 + ] + ] + }, + { + "osmId": "24050604", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1251.4189942783564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5371104, + 10.0419132 + ], + [ + 53.5370259, + 10.0422701 + ], + [ + 53.5367804, + 10.0432896 + ], + [ + 53.5361983, + 10.0456878 + ], + [ + 53.5360918, + 10.0461241 + ], + [ + 53.535769, + 10.0474758 + ], + [ + 53.5355391, + 10.0484483 + ], + [ + 53.5353931, + 10.0490857 + ], + [ + 53.5352729, + 10.0497093 + ], + [ + 53.5351908, + 10.0501766 + ], + [ + 53.5351201, + 10.0506033 + ], + [ + 53.5350572, + 10.051044 + ], + [ + 53.5348221, + 10.0527385 + ], + [ + 53.5345745, + 10.0545327 + ], + [ + 53.5344473, + 10.0553509 + ], + [ + 53.5342895, + 10.0561734 + ], + [ + 53.5341928, + 10.0566057 + ], + [ + 53.5341123, + 10.0569451 + ], + [ + 53.5338937, + 10.0577631 + ], + [ + 53.5337463, + 10.0582315 + ], + [ + 53.5336027, + 10.0586689 + ], + [ + 53.5333121, + 10.0594537 + ], + [ + 53.5332491, + 10.0596158 + ] + ] + }, + { + "osmId": "24055115", + "name": null, + "lengthMeters": 365.95501220626227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5777022, + 9.8121251 + ], + [ + 53.5774684, + 9.81257 + ], + [ + 53.5771225, + 9.8132283 + ], + [ + 53.5765369, + 9.8143428 + ], + [ + 53.5759565, + 9.8154434 + ], + [ + 53.575737, + 9.8158229 + ], + [ + 53.5754889, + 9.8162247 + ] + ] + }, + { + "osmId": "24157076", + "name": null, + "lengthMeters": 182.43354531798127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533081, + 13.361975 + ], + [ + 52.5329106, + 13.362158 + ], + [ + 52.5323358, + 13.3627722 + ], + [ + 52.531706, + 13.3634464 + ] + ] + }, + { + "osmId": "24157189", + "name": null, + "lengthMeters": 356.76793516356116, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312066, + 13.3059153 + ], + [ + 52.5310472, + 13.3046437 + ], + [ + 52.5309615, + 13.3037927 + ], + [ + 52.5308395, + 13.3023584 + ], + [ + 52.5307955, + 13.3018623 + ], + [ + 52.5307018, + 13.301022 + ], + [ + 52.5306616, + 13.3007197 + ] + ] + }, + { + "osmId": "24163536", + "name": null, + "lengthMeters": 291.2692991046497, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4700204, + 13.4703933 + ], + [ + 52.4698875, + 13.4694141 + ], + [ + 52.4696597, + 13.4677255 + ], + [ + 52.4695976, + 13.4672629 + ], + [ + 52.469553, + 13.4669305 + ], + [ + 52.4694542, + 13.466195 + ] + ] + }, + { + "osmId": "24163538", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 441.5322496946412, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4702442, + 13.4727668 + ], + [ + 52.4700512, + 13.4713369 + ], + [ + 52.4699783, + 13.4708573 + ], + [ + 52.4698968, + 13.4703886 + ], + [ + 52.4696451, + 13.4689886 + ], + [ + 52.4692943, + 13.4664406 + ] + ] + }, + { + "osmId": "24165419", + "name": null, + "lengthMeters": 164.1328219074699, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4542905, + 13.5107614 + ], + [ + 52.4543867, + 13.5106112 + ], + [ + 52.4545483, + 13.5103474 + ], + [ + 52.4548102, + 13.5099465 + ], + [ + 52.4553601, + 13.5090923 + ] + ] + }, + { + "osmId": "24165451", + "name": null, + "lengthMeters": 193.38216209570228, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568857, + 13.506542 + ], + [ + 52.4558446, + 13.5082427 + ], + [ + 52.4557322, + 13.5084279 + ], + [ + 52.4556909, + 13.5084955 + ], + [ + 52.4556539, + 13.5085567 + ] + ] + }, + { + "osmId": "24165750", + "name": "Bln Treptower Park - Treptow", + "lengthMeters": 230.5869028598454, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4832916, + 13.4659594 + ], + [ + 52.4835923, + 13.4654823 + ], + [ + 52.4836315, + 13.4654201 + ], + [ + 52.4847714, + 13.4635739 + ] + ] + }, + { + "osmId": "24165792", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 981.0295610194578, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.476368, + 13.4761289 + ], + [ + 52.4796138, + 13.4714312 + ], + [ + 52.4800407, + 13.4708097 + ], + [ + 52.4807903, + 13.4697149 + ], + [ + 52.4817638, + 13.4682797 + ], + [ + 52.4823294, + 13.467457 + ], + [ + 52.4825852, + 13.4670791 + ], + [ + 52.4828385, + 13.4666918 + ], + [ + 52.4829582, + 13.4664986 + ] + ] + }, + { + "osmId": "24165803", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 480.52159391178384, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4729765, + 13.4810606 + ], + [ + 52.4731562, + 13.4807941 + ], + [ + 52.4731632, + 13.4807839 + ], + [ + 52.4762114, + 13.4763565 + ] + ] + }, + { + "osmId": "24165843", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 217.4857274787758, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712939, + 13.4835539 + ], + [ + 52.4714669, + 13.4832935 + ], + [ + 52.4724208, + 13.4818832 + ], + [ + 52.4727452, + 13.4814014 + ] + ] + }, + { + "osmId": "24165859", + "name": null, + "lengthMeters": 199.81255838267148, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4922683, + 13.4607656 + ], + [ + 52.4921533, + 13.4606896 + ], + [ + 52.4919148, + 13.4605629 + ], + [ + 52.4917478, + 13.4604475 + ], + [ + 52.491355, + 13.4602523 + ], + [ + 52.4911608, + 13.4601799 + ], + [ + 52.4909372, + 13.4600999 + ], + [ + 52.4905381, + 13.4600107 + ] + ] + }, + { + "osmId": "24165863", + "name": "Bln Treptower Park - Treptow", + "lengthMeters": 627.9186981627524, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4897417, + 13.4598153 + ], + [ + 52.4895567, + 13.4597682 + ], + [ + 52.4892016, + 13.4596971 + ], + [ + 52.4888794, + 13.4596589 + ], + [ + 52.4885947, + 13.4596511 + ], + [ + 52.4883426, + 13.4596757 + ], + [ + 52.4881132, + 13.4597201 + ], + [ + 52.4878905, + 13.4597855 + ], + [ + 52.4875766, + 13.4599136 + ], + [ + 52.4874244, + 13.4599966 + ], + [ + 52.4872774, + 13.4600951 + ], + [ + 52.4869938, + 13.460296 + ], + [ + 52.4867294, + 13.4605375 + ], + [ + 52.4864724, + 13.4608064 + ], + [ + 52.4862458, + 13.4610923 + ], + [ + 52.4859993, + 13.4614373 + ], + [ + 52.4857059, + 13.4619135 + ], + [ + 52.4850112, + 13.4630767 + ], + [ + 52.4848639, + 13.4633259 + ] + ] + }, + { + "osmId": "24165874", + "name": "Bln Treptower Park - Treptow", + "lengthMeters": 230.05671749323835, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.484738, + 13.46352 + ], + [ + 52.4841333, + 13.4645017 + ], + [ + 52.4836522, + 13.4653139 + ], + [ + 52.4835676, + 13.4654443 + ], + [ + 52.4832668, + 13.465908 + ] + ] + }, + { + "osmId": "24165877", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 980.9320730728118, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4829284, + 13.466447 + ], + [ + 52.4828087, + 13.4666411 + ], + [ + 52.4825601, + 13.4670291 + ], + [ + 52.4823053, + 13.467411 + ], + [ + 52.4817391, + 13.4682372 + ], + [ + 52.480765, + 13.4696718 + ], + [ + 52.4800296, + 13.470744 + ], + [ + 52.4795902, + 13.4713814 + ], + [ + 52.4795606, + 13.4714246 + ], + [ + 52.4784615, + 13.4729957 + ], + [ + 52.4763406, + 13.4760791 + ] + ] + }, + { + "osmId": "24165894", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 480.45829137893315, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4761843, + 13.4763073 + ], + [ + 52.4744256, + 13.4788665 + ], + [ + 52.4731302, + 13.4807515 + ], + [ + 52.4729521, + 13.481015 + ] + ] + }, + { + "osmId": "24165902", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 189.94505320471868, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4727214, + 13.4813569 + ], + [ + 52.4723948, + 13.48184 + ], + [ + 52.4716546, + 13.4829349 + ], + [ + 52.4714532, + 13.4832356 + ] + ] + }, + { + "osmId": "24165906", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 529.7848346888859, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.47101, + 13.4838923 + ], + [ + 52.4710054, + 13.4838991 + ], + [ + 52.4702973, + 13.484953 + ], + [ + 52.4694654, + 13.4862529 + ], + [ + 52.4694036, + 13.486349 + ], + [ + 52.4693427, + 13.4864439 + ], + [ + 52.4687228, + 13.4874239 + ], + [ + 52.4683283, + 13.4880663 + ], + [ + 52.4681969, + 13.4882813 + ], + [ + 52.4678849, + 13.4887802 + ], + [ + 52.4675566, + 13.4892792 + ] + ] + }, + { + "osmId": "24165924", + "name": null, + "lengthMeters": 481.56859889032637, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4730453, + 13.4812162 + ], + [ + 52.4731605, + 13.4810215 + ], + [ + 52.4732779, + 13.4808357 + ], + [ + 52.473397, + 13.4806486 + ], + [ + 52.4735175, + 13.4804653 + ], + [ + 52.4737413, + 13.4801366 + ], + [ + 52.4745249, + 13.478988 + ], + [ + 52.4746567, + 13.4787915 + ], + [ + 52.4747194, + 13.4786991 + ], + [ + 52.4752876, + 13.4778558 + ], + [ + 52.4755328, + 13.4774988 + ], + [ + 52.4757241, + 13.4772306 + ], + [ + 52.4762752, + 13.4764827 + ] + ] + }, + { + "osmId": "24165981", + "name": null, + "lengthMeters": 182.4545038494822, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778434, + 13.4743635 + ], + [ + 52.4779547, + 13.4742098 + ], + [ + 52.4779814, + 13.474173 + ], + [ + 52.478404, + 13.4735965 + ], + [ + 52.4787699, + 13.4730901 + ], + [ + 52.4788244, + 13.4730091 + ], + [ + 52.4789137, + 13.4728764 + ], + [ + 52.4790576, + 13.4726384 + ], + [ + 52.4790814, + 13.4725977 + ] + ] + }, + { + "osmId": "24165995", + "name": null, + "lengthMeters": 263.9787332921492, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4831649, + 13.466392 + ], + [ + 52.4832508, + 13.4662672 + ], + [ + 52.4834797, + 13.4659404 + ], + [ + 52.4849269, + 13.4637796 + ] + ] + }, + { + "osmId": "24166144", + "name": null, + "lengthMeters": 148.1491792422517, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4923251, + 13.4605452 + ], + [ + 52.4916383, + 13.4600954 + ], + [ + 52.4910976, + 13.4596957 + ] + ] + }, + { + "osmId": "24166162", + "name": null, + "lengthMeters": 289.21654496721345, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4868893, + 13.4605756 + ], + [ + 52.48678, + 13.4607715 + ], + [ + 52.4866018, + 13.4610849 + ], + [ + 52.4863985, + 13.4614467 + ], + [ + 52.4862809, + 13.4616521 + ], + [ + 52.4860737, + 13.4619874 + ], + [ + 52.4858962, + 13.462257 + ], + [ + 52.4858695, + 13.4622967 + ], + [ + 52.4854505, + 13.4629214 + ], + [ + 52.4850239, + 13.4635471 + ] + ] + }, + { + "osmId": "24166166", + "name": null, + "lengthMeters": 263.879583503486, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.484897, + 13.4637292 + ], + [ + 52.4848254, + 13.4638354 + ], + [ + 52.4845602, + 13.4642235 + ], + [ + 52.483957, + 13.4651329 + ], + [ + 52.483715, + 13.4655 + ], + [ + 52.4837092, + 13.4655087 + ], + [ + 52.4831402, + 13.4663489 + ] + ] + }, + { + "osmId": "24166174", + "name": null, + "lengthMeters": 582.5209259632279, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4829935, + 13.4665649 + ], + [ + 52.4827665, + 13.4669006 + ], + [ + 52.481869, + 13.4682179 + ], + [ + 52.4810479, + 13.469428 + ], + [ + 52.4807899, + 13.4698088 + ], + [ + 52.4805584, + 13.4701465 + ], + [ + 52.4802921, + 13.4705398 + ], + [ + 52.4797586, + 13.4713407 + ], + [ + 52.4792235, + 13.4721407 + ], + [ + 52.4790998, + 13.4723195 + ] + ] + }, + { + "osmId": "24166182", + "name": null, + "lengthMeters": 480.42986648612566, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4762516, + 13.4764349 + ], + [ + 52.4758804, + 13.4769331 + ], + [ + 52.4757777, + 13.4770692 + ], + [ + 52.475516, + 13.4774348 + ], + [ + 52.475261, + 13.4778076 + ], + [ + 52.4735303, + 13.4803606 + ], + [ + 52.473476, + 13.4804391 + ], + [ + 52.4730104, + 13.4811237 + ] + ] + }, + { + "osmId": "24166213", + "name": null, + "lengthMeters": 231.01855577964835, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4727796, + 13.4814656 + ], + [ + 52.4720393, + 13.4825599 + ], + [ + 52.4719415, + 13.4827039 + ], + [ + 52.4712367, + 13.4837497 + ] + ] + }, + { + "osmId": "24166221", + "name": null, + "lengthMeters": 439.90826473572605, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4708525, + 13.4843177 + ], + [ + 52.4708263, + 13.4843576 + ], + [ + 52.4702483, + 13.4852005 + ], + [ + 52.4697005, + 13.4860819 + ], + [ + 52.469157, + 13.4869884 + ], + [ + 52.4689216, + 13.4873691 + ], + [ + 52.468444, + 13.4881448 + ], + [ + 52.4682734, + 13.4884104 + ], + [ + 52.4681541, + 13.4885912 + ], + [ + 52.4680721, + 13.4887162 + ], + [ + 52.4680026, + 13.4888194 + ] + ] + }, + { + "osmId": "24179457", + "name": null, + "lengthMeters": 416.5786759283945, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4711695, + 13.4789336 + ], + [ + 52.4709802, + 13.477527 + ], + [ + 52.4707089, + 13.4755216 + ], + [ + 52.4705378, + 13.4742361 + ], + [ + 52.4703613, + 13.4729284 + ] + ] + }, + { + "osmId": "24179493", + "name": null, + "lengthMeters": 418.478636840856, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.470327, + 13.4729443 + ], + [ + 52.4705041, + 13.4742546 + ], + [ + 52.4707063, + 13.4757651 + ], + [ + 52.4708715, + 13.4769887 + ], + [ + 52.4711383, + 13.4789771 + ] + ] + }, + { + "osmId": "24179590", + "name": null, + "lengthMeters": 290.5704903149733, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.471183, + 13.479309 + ], + [ + 52.4712593, + 13.4798714 + ], + [ + 52.4713021, + 13.4801865 + ], + [ + 52.47135, + 13.4805854 + ], + [ + 52.4713911, + 13.4809462 + ], + [ + 52.4714142, + 13.4812531 + ], + [ + 52.4714261, + 13.4816113 + ], + [ + 52.471421, + 13.481975 + ], + [ + 52.4713919, + 13.4823877 + ], + [ + 52.4713475, + 13.4827501 + ], + [ + 52.4712877, + 13.4830827 + ], + [ + 52.4711861, + 13.4835044 + ] + ] + }, + { + "osmId": "24180220", + "name": null, + "lengthMeters": 648.6400943801541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5427834, + 13.4123107 + ], + [ + 52.5430198, + 13.4123157 + ], + [ + 52.5436683, + 13.412372 + ], + [ + 52.5438887, + 13.4124148 + ], + [ + 52.5453, + 13.4127923 + ], + [ + 52.5471717, + 13.4132924 + ], + [ + 52.5475664, + 13.4134023 + ], + [ + 52.5478454, + 13.4134668 + ], + [ + 52.5481449, + 13.4135142 + ], + [ + 52.5482787, + 13.4135529 + ], + [ + 52.5485556, + 13.4136287 + ] + ] + }, + { + "osmId": "24180813", + "name": null, + "lengthMeters": 490.4825148673273, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469076, + 13.487437 + ], + [ + 52.4702535, + 13.485691 + ], + [ + 52.4703057, + 13.4856112 + ], + [ + 52.4712363, + 13.484188 + ], + [ + 52.4715208, + 13.483722 + ], + [ + 52.4719487, + 13.4830303 + ], + [ + 52.4720221, + 13.4829103 + ], + [ + 52.4722853, + 13.4824717 + ] + ] + }, + { + "osmId": "24181361", + "name": "Bln Treptower Park - Treptow", + "lengthMeters": 623.5306673402013, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4848941, + 13.4633746 + ], + [ + 52.4850381, + 13.4631264 + ], + [ + 52.485736, + 13.4619634 + ], + [ + 52.4860308, + 13.4614855 + ], + [ + 52.4862688, + 13.4611498 + ], + [ + 52.486499, + 13.4608581 + ], + [ + 52.4867549, + 13.4605881 + ], + [ + 52.4870085, + 13.4603597 + ], + [ + 52.4872873, + 13.4601584 + ], + [ + 52.487439, + 13.4600618 + ], + [ + 52.4875859, + 13.4599819 + ], + [ + 52.4878978, + 13.4598575 + ], + [ + 52.488115, + 13.4597899 + ], + [ + 52.488346, + 13.4597409 + ], + [ + 52.4885554, + 13.4597128 + ], + [ + 52.4888625, + 13.4597219 + ], + [ + 52.4891968, + 13.459762 + ], + [ + 52.4895525, + 13.4598349 + ], + [ + 52.4897347, + 13.4598822 + ] + ] + }, + { + "osmId": "24199035", + "name": null, + "lengthMeters": 181.33918018547377, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4175055, + 13.5657211 + ], + [ + 52.418001, + 13.5648215 + ], + [ + 52.4182267, + 13.5644159 + ], + [ + 52.4186018, + 13.5637415 + ] + ] + }, + { + "osmId": "24200501", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 2884.387935156368, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4354113, + 13.5403256 + ], + [ + 52.4359846, + 13.5395056 + ], + [ + 52.4361834, + 13.5392413 + ], + [ + 52.4363798, + 13.5389818 + ], + [ + 52.436778, + 13.5384598 + ], + [ + 52.436834, + 13.5383861 + ], + [ + 52.4369657, + 13.5382111 + ], + [ + 52.4372148, + 13.5378803 + ], + [ + 52.4375566, + 13.5374106 + ], + [ + 52.4378784, + 13.5369452 + ], + [ + 52.4381789, + 13.5365054 + ], + [ + 52.4381839, + 13.5364981 + ], + [ + 52.4382249, + 13.5364303 + ], + [ + 52.4395084, + 13.5345588 + ], + [ + 52.4401207, + 13.5336554 + ], + [ + 52.4403105, + 13.5333775 + ], + [ + 52.441107, + 13.532211 + ], + [ + 52.4416998, + 13.5313388 + ], + [ + 52.4426035, + 13.5300092 + ], + [ + 52.4427396, + 13.5298126 + ], + [ + 52.4429859, + 13.5294474 + ], + [ + 52.4436123, + 13.5285297 + ], + [ + 52.4438415, + 13.5281931 + ], + [ + 52.4440638, + 13.5278668 + ], + [ + 52.4444736, + 13.5272655 + ], + [ + 52.4449439, + 13.5265754 + ], + [ + 52.4451309, + 13.5262998 + ], + [ + 52.4456186, + 13.5255774 + ], + [ + 52.4459061, + 13.5251329 + ], + [ + 52.4460979, + 13.5248029 + ], + [ + 52.4465574, + 13.5240125 + ], + [ + 52.446873, + 13.5234786 + ], + [ + 52.447082, + 13.5231209 + ], + [ + 52.4475037, + 13.5223717 + ], + [ + 52.4476968, + 13.521995 + ], + [ + 52.4477983, + 13.521785 + ], + [ + 52.4480879, + 13.5211732 + ], + [ + 52.4486561, + 13.5199519 + ], + [ + 52.4491683, + 13.518863 + ], + [ + 52.4494203, + 13.5183471 + ], + [ + 52.4501185, + 13.517043 + ], + [ + 52.4506663, + 13.5160256 + ], + [ + 52.4509429, + 13.5155359 + ], + [ + 52.451224, + 13.5150618 + ], + [ + 52.4514786, + 13.5146524 + ], + [ + 52.4517388, + 13.5142513 + ], + [ + 52.4519828, + 13.5138726 + ], + [ + 52.4528576, + 13.5125214 + ], + [ + 52.452947, + 13.5123837 + ], + [ + 52.4536577, + 13.5112866 + ], + [ + 52.4539427, + 13.5108453 + ], + [ + 52.4539941, + 13.5107656 + ] + ] + }, + { + "osmId": "24227581", + "name": null, + "lengthMeters": 86.86692870077736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4675862, + 13.4896803 + ], + [ + 52.4673254, + 13.4900699 + ], + [ + 52.4672002, + 13.4902519 + ], + [ + 52.4670393, + 13.4904801 + ], + [ + 52.4670017, + 13.4905309 + ] + ] + }, + { + "osmId": "24227618", + "name": null, + "lengthMeters": 83.99303553269338, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4675002, + 13.4895688 + ], + [ + 52.4672014, + 13.4900139 + ], + [ + 52.467133, + 13.4901161 + ], + [ + 52.4669754, + 13.4903495 + ], + [ + 52.4669402, + 13.4904009 + ] + ] + }, + { + "osmId": "24227664", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 386.49993638850304, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4674243, + 13.4894768 + ], + [ + 52.4658108, + 13.4918839 + ], + [ + 52.4653304, + 13.492605 + ], + [ + 52.4650968, + 13.4929584 + ], + [ + 52.4649792, + 13.4931448 + ], + [ + 52.464863, + 13.4933333 + ] + ] + }, + { + "osmId": "24227673", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 386.42546182492026, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4648941, + 13.4933712 + ], + [ + 52.4650052, + 13.4931887 + ], + [ + 52.4651212, + 13.4930033 + ], + [ + 52.465354, + 13.4926458 + ], + [ + 52.4658323, + 13.4919318 + ], + [ + 52.4666315, + 13.4907365 + ], + [ + 52.4674546, + 13.4895151 + ] + ] + }, + { + "osmId": "24227682", + "name": null, + "lengthMeters": 298.5304683463398, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4650112, + 13.4935183 + ], + [ + 52.4653436, + 13.4930429 + ], + [ + 52.4656825, + 13.4925717 + ], + [ + 52.4659029, + 13.4922611 + ], + [ + 52.4663612, + 13.4916121 + ], + [ + 52.4664439, + 13.4914896 + ], + [ + 52.466727, + 13.4910596 + ], + [ + 52.4669898, + 13.4906606 + ], + [ + 52.4670257, + 13.4906062 + ] + ] + }, + { + "osmId": "24255347", + "name": null, + "lengthMeters": 547.9059129330187, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1792035, + 11.5393244 + ], + [ + 48.1793472, + 11.5393212 + ], + [ + 48.1828487, + 11.5395169 + ], + [ + 48.1832549, + 11.5395083 + ], + [ + 48.1833824, + 11.5394918 + ], + [ + 48.1841252, + 11.5393954 + ] + ] + }, + { + "osmId": "24255387", + "name": null, + "lengthMeters": 123.67916044346538, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1887419, + 11.5320289 + ], + [ + 48.1887308, + 11.5320845 + ], + [ + 48.1885642, + 11.5329236 + ], + [ + 48.1884513, + 11.5335901 + ], + [ + 48.1884436, + 11.5336358 + ] + ] + }, + { + "osmId": "24255399", + "name": null, + "lengthMeters": 828.935944875497, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1841001, + 11.5393228 + ], + [ + 48.183648, + 11.5392603 + ], + [ + 48.1829497, + 11.5391283 + ], + [ + 48.1790858, + 11.5388698 + ], + [ + 48.1780989, + 11.538783 + ], + [ + 48.1778252, + 11.5387463 + ], + [ + 48.1766618, + 11.5386335 + ] + ] + }, + { + "osmId": "24255483", + "name": null, + "lengthMeters": 181.83798054696314, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1864277, + 11.5391975 + ], + [ + 48.1863499, + 11.5392415 + ], + [ + 48.1861589, + 11.5393076 + ], + [ + 48.1859034, + 11.5393054 + ], + [ + 48.1852473, + 11.5393137 + ], + [ + 48.1848028, + 11.5393193 + ] + ] + }, + { + "osmId": "24258840", + "name": null, + "lengthMeters": 115.96629107627624, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4691565, + 13.4620879 + ], + [ + 52.4692378, + 13.461419 + ], + [ + 52.4693002, + 13.4610607 + ], + [ + 52.4694378, + 13.4604435 + ] + ] + }, + { + "osmId": "24258842", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 107.50508488595821, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690526, + 13.4618823 + ], + [ + 52.4691151, + 13.4613574 + ], + [ + 52.4691676, + 13.4609865 + ], + [ + 52.4692821, + 13.4603419 + ] + ] + }, + { + "osmId": "24262594", + "name": null, + "lengthMeters": 89.84884546139011, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4707961, + 13.4519871 + ], + [ + 52.4708352, + 13.4522342 + ], + [ + 52.4708736, + 13.4525069 + ], + [ + 52.4708993, + 13.4527177 + ], + [ + 52.4709181, + 13.4529028 + ], + [ + 52.4709344, + 13.4531178 + ], + [ + 52.4709384, + 13.4531976 + ], + [ + 52.4709421, + 13.4532893 + ] + ] + }, + { + "osmId": "24262681", + "name": null, + "lengthMeters": 93.24072715374774, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4738575, + 13.456305 + ], + [ + 52.4742715, + 13.4564381 + ], + [ + 52.4746816, + 13.4565256 + ], + [ + 52.4746847, + 13.4565262 + ] + ] + }, + { + "osmId": "24262699", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 271.86026116015944, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4703017, + 13.456588 + ], + [ + 52.4703902, + 13.4562691 + ], + [ + 52.4705185, + 13.4558075 + ], + [ + 52.4706601, + 13.4552441 + ], + [ + 52.4707412, + 13.4547376 + ], + [ + 52.4707787, + 13.4542954 + ], + [ + 52.4707906, + 13.4539209 + ], + [ + 52.4707893, + 13.4537034 + ], + [ + 52.4707791, + 13.4534271 + ], + [ + 52.4707648, + 13.4532346 + ], + [ + 52.4707435, + 13.453027 + ], + [ + 52.4707232, + 13.4528647 + ], + [ + 52.4707018, + 13.4527327 + ] + ] + }, + { + "osmId": "24269158", + "name": null, + "lengthMeters": 85.36120138769347, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5866451, + 10.0466831 + ], + [ + 53.5866286, + 10.0467355 + ], + [ + 53.5866063, + 10.0468037 + ], + [ + 53.5865843, + 10.0468585 + ], + [ + 53.5865528, + 10.046923 + ], + [ + 53.5865076, + 10.0469984 + ], + [ + 53.5864552, + 10.0470852 + ], + [ + 53.58641, + 10.0471434 + ], + [ + 53.5863531, + 10.0472024 + ], + [ + 53.5862837, + 10.0472566 + ], + [ + 53.5862206, + 10.047306 + ], + [ + 53.586145, + 10.0473539 + ], + [ + 53.5860371, + 10.0473876 + ] + ] + }, + { + "osmId": "24287918", + "name": null, + "lengthMeters": 186.3067226300534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4287703, + 13.7522599 + ], + [ + 52.4288362, + 13.752147 + ], + [ + 52.4289792, + 13.751902 + ], + [ + 52.4292303, + 13.7515117 + ], + [ + 52.4296097, + 13.7509871 + ], + [ + 52.4300187, + 13.7504312 + ] + ] + }, + { + "osmId": "24287920", + "name": null, + "lengthMeters": 452.3820519460588, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4321478, + 13.7453648 + ], + [ + 52.432211, + 13.7451322 + ], + [ + 52.4323269, + 13.7446905 + ], + [ + 52.432425, + 13.7442491 + ], + [ + 52.432518, + 13.7438043 + ], + [ + 52.4325824, + 13.7434398 + ], + [ + 52.4326632, + 13.742925 + ], + [ + 52.4327026, + 13.7426396 + ], + [ + 52.4327936, + 13.7418935 + ], + [ + 52.432816, + 13.7416623 + ], + [ + 52.4328526, + 13.7413475 + ], + [ + 52.4331233, + 13.7389095 + ] + ] + }, + { + "osmId": "24291289", + "name": null, + "lengthMeters": 959.3459496548656, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5011923, + 10.2405375 + ], + [ + 53.5014619, + 10.2408744 + ], + [ + 53.5020432, + 10.2415403 + ], + [ + 53.5024943, + 10.2420358 + ], + [ + 53.5025661, + 10.2421181 + ], + [ + 53.5030437, + 10.2426658 + ], + [ + 53.5035567, + 10.2432737 + ], + [ + 53.5040807, + 10.2439478 + ], + [ + 53.5044968, + 10.2445334 + ], + [ + 53.5048746, + 10.245109 + ], + [ + 53.5052389, + 10.2456868 + ], + [ + 53.5055454, + 10.2462085 + ], + [ + 53.5057901, + 10.2466686 + ], + [ + 53.5062164, + 10.2474764 + ], + [ + 53.5065722, + 10.2481752 + ], + [ + 53.5068369, + 10.2487511 + ], + [ + 53.5071221, + 10.2495002 + ], + [ + 53.5074306, + 10.2503444 + ] + ] + }, + { + "osmId": "24291290", + "name": null, + "lengthMeters": 1429.9817086750445, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5077103, + 10.2511325 + ], + [ + 53.5079056, + 10.2517226 + ], + [ + 53.5080994, + 10.252414 + ], + [ + 53.5084223, + 10.253648 + ], + [ + 53.5086862, + 10.2546943 + ], + [ + 53.5087681, + 10.255019 + ], + [ + 53.5088069, + 10.2551888 + ], + [ + 53.5089547, + 10.2558496 + ], + [ + 53.5094103, + 10.2582038 + ], + [ + 53.5096006, + 10.2591353 + ], + [ + 53.5098614, + 10.2603819 + ], + [ + 53.5102854, + 10.2620802 + ], + [ + 53.5106647, + 10.2633782 + ], + [ + 53.5109448, + 10.2642965 + ], + [ + 53.5110076, + 10.2645025 + ], + [ + 53.5114413, + 10.265768 + ], + [ + 53.5116914, + 10.2663619 + ], + [ + 53.5119571, + 10.2669342 + ], + [ + 53.5126213, + 10.2682717 + ], + [ + 53.5129829, + 10.2689728 + ], + [ + 53.5133571, + 10.2696377 + ], + [ + 53.5136174, + 10.2700853 + ] + ] + }, + { + "osmId": "24295311", + "name": null, + "lengthMeters": 176.2056784945048, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4781547, + 13.3426246 + ], + [ + 52.4781621, + 13.3423395 + ], + [ + 52.478167, + 13.3421086 + ], + [ + 52.4781703, + 13.3418107 + ], + [ + 52.4781733, + 13.3415118 + ], + [ + 52.4781735, + 13.3414197 + ], + [ + 52.4781733, + 13.3411714 + ], + [ + 52.4781716, + 13.3408887 + ], + [ + 52.478168, + 13.3406589 + ], + [ + 52.4781641, + 13.3404135 + ], + [ + 52.4781599, + 13.3402369 + ], + [ + 52.4781531, + 13.3400239 + ] + ] + }, + { + "osmId": "24295313", + "name": null, + "lengthMeters": 93.12116849325359, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777474, + 13.3325918 + ], + [ + 52.4777314, + 13.3323197 + ], + [ + 52.4777215, + 13.3320475 + ], + [ + 52.4777163, + 13.3318954 + ], + [ + 52.4777098, + 13.3312301 + ], + [ + 52.47771, + 13.3312189 + ] + ] + }, + { + "osmId": "24295315", + "name": null, + "lengthMeters": 184.9814271180481, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4780952, + 13.345781 + ], + [ + 52.4780914, + 13.3450156 + ], + [ + 52.4781077, + 13.3440735 + ], + [ + 52.4781222, + 13.3435477 + ], + [ + 52.4781416, + 13.3430516 + ] + ] + }, + { + "osmId": "24295379", + "name": null, + "lengthMeters": 499.17636910898847, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776906, + 13.3200809 + ], + [ + 52.4776908, + 13.3200632 + ], + [ + 52.4776952, + 13.3198376 + ], + [ + 52.477706, + 13.3194684 + ], + [ + 52.4777158, + 13.3192478 + ], + [ + 52.4777265, + 13.3190878 + ], + [ + 52.4777399, + 13.3188858 + ], + [ + 52.4777593, + 13.3186535 + ], + [ + 52.4777873, + 13.3183863 + ], + [ + 52.477853, + 13.3178912 + ], + [ + 52.4779296, + 13.3174021 + ], + [ + 52.4780061, + 13.3169645 + ], + [ + 52.4780786, + 13.3166037 + ], + [ + 52.4781695, + 13.3161961 + ], + [ + 52.4782646, + 13.3158107 + ], + [ + 52.4783608, + 13.3154673 + ], + [ + 52.4784412, + 13.315204 + ], + [ + 52.4785012, + 13.3150183 + ], + [ + 52.4786045, + 13.3147273 + ], + [ + 52.4787264, + 13.3144109 + ], + [ + 52.4788379, + 13.3141418 + ], + [ + 52.4788977, + 13.3140078 + ], + [ + 52.4790562, + 13.3136655 + ], + [ + 52.4792322, + 13.3133149 + ] + ] + }, + { + "osmId": "24295381", + "name": null, + "lengthMeters": 384.46288861665124, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776392, + 13.3204992 + ], + [ + 52.4776375, + 13.3208727 + ], + [ + 52.477633, + 13.3224074 + ], + [ + 52.4776197, + 13.3251849 + ], + [ + 52.4776182, + 13.3254122 + ], + [ + 52.4776132, + 13.3261758 + ] + ] + }, + { + "osmId": "24295383", + "name": null, + "lengthMeters": 2141.6605310661807, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.477596, + 13.3200815 + ], + [ + 52.4776042, + 13.3196229 + ], + [ + 52.4776252, + 13.3192397 + ], + [ + 52.4776619, + 13.3187856 + ], + [ + 52.4777061, + 13.3183773 + ], + [ + 52.4778297, + 13.3173905 + ], + [ + 52.478024, + 13.316423 + ], + [ + 52.4782701, + 13.3154532 + ], + [ + 52.4784892, + 13.3147376 + ], + [ + 52.4787353, + 13.3140606 + ], + [ + 52.4788179, + 13.3138698 + ], + [ + 52.4790469, + 13.3133406 + ], + [ + 52.4793108, + 13.3127898 + ], + [ + 52.4796748, + 13.3121456 + ], + [ + 52.4799996, + 13.3116859 + ], + [ + 52.4807595, + 13.3106102 + ], + [ + 52.4826422, + 13.3080732 + ], + [ + 52.4831663, + 13.3073683 + ], + [ + 52.4843884, + 13.3057247 + ], + [ + 52.4855416, + 13.3041734 + ], + [ + 52.4878364, + 13.3010865 + ], + [ + 52.4892752, + 13.2991425 + ], + [ + 52.4900692, + 13.2980783 + ], + [ + 52.4903815, + 13.2976597 + ] + ] + }, + { + "osmId": "24314518", + "name": null, + "lengthMeters": 180.09378308218047, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4721402, + 13.4549411 + ], + [ + 52.472192, + 13.455007 + ], + [ + 52.4723324, + 13.4551814 + ], + [ + 52.4724061, + 13.4552677 + ], + [ + 52.4724789, + 13.4553487 + ], + [ + 52.4725611, + 13.4554357 + ], + [ + 52.4726763, + 13.4555514 + ], + [ + 52.4727855, + 13.4556523 + ], + [ + 52.4728832, + 13.455735 + ], + [ + 52.4729603, + 13.4557971 + ], + [ + 52.4730756, + 13.4558839 + ], + [ + 52.4731851, + 13.4559588 + ], + [ + 52.473274, + 13.4560181 + ], + [ + 52.473359, + 13.456066 + ], + [ + 52.4734448, + 13.4561166 + ], + [ + 52.4735007, + 13.4561459 + ], + [ + 52.4735623, + 13.456177 + ] + ] + }, + { + "osmId": "24337151", + "name": null, + "lengthMeters": 148.03633816608712, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426025, + 11.5408389 + ], + [ + 48.1426316, + 11.5404734 + ], + [ + 48.1426871, + 11.5396365 + ], + [ + 48.1427415, + 11.5388547 + ] + ] + }, + { + "osmId": "24337571", + "name": null, + "lengthMeters": 451.3050105221712, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1977348, + 11.6161131 + ], + [ + 48.1979293, + 11.6160117 + ], + [ + 48.1981636, + 11.6158389 + ], + [ + 48.1983014, + 11.6157244 + ], + [ + 48.1984226, + 11.6156145 + ], + [ + 48.1986734, + 11.6153594 + ], + [ + 48.1987963, + 11.6152127 + ], + [ + 48.199463, + 11.6142747 + ], + [ + 48.1996238, + 11.6140766 + ], + [ + 48.1997948, + 11.6138848 + ], + [ + 48.1999459, + 11.6137347 + ], + [ + 48.2001327, + 11.6135752 + ], + [ + 48.2002421, + 11.6134905 + ], + [ + 48.2003639, + 11.6134089 + ], + [ + 48.2005789, + 11.6132752 + ], + [ + 48.2006788, + 11.6132231 + ], + [ + 48.200847, + 11.6131424 + ], + [ + 48.201026, + 11.6130723 + ], + [ + 48.2011674, + 11.61303 + ] + ] + }, + { + "osmId": "24337573", + "name": null, + "lengthMeters": 1390.9838833462104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1861351, + 11.6106676 + ], + [ + 48.1864913, + 11.6111431 + ], + [ + 48.1866175, + 11.6112928 + ], + [ + 48.1879126, + 11.6126686 + ], + [ + 48.188071, + 11.6128212 + ], + [ + 48.1882478, + 11.6129683 + ], + [ + 48.1884739, + 11.6131158 + ], + [ + 48.1887694, + 11.6132659 + ], + [ + 48.1890158, + 11.6133536 + ], + [ + 48.1891757, + 11.6134091 + ], + [ + 48.189342, + 11.613442 + ], + [ + 48.1895221, + 11.6134428 + ], + [ + 48.1896853, + 11.6134341 + ], + [ + 48.1898217, + 11.6134219 + ], + [ + 48.1899881, + 11.6134217 + ], + [ + 48.1901467, + 11.6134445 + ], + [ + 48.1903785, + 11.61349 + ], + [ + 48.1906568, + 11.6135789 + ], + [ + 48.1909262, + 11.613712 + ], + [ + 48.1910276, + 11.613773 + ], + [ + 48.1911765, + 11.6138611 + ], + [ + 48.1914397, + 11.6140425 + ], + [ + 48.1916987, + 11.6142067 + ], + [ + 48.1919691, + 11.6143843 + ], + [ + 48.1921451, + 11.6144883 + ], + [ + 48.1922675, + 11.6145606 + ], + [ + 48.1924332, + 11.6146539 + ], + [ + 48.1925645, + 11.614726 + ], + [ + 48.1934785, + 11.6151878 + ], + [ + 48.1954784, + 11.6161733 + ], + [ + 48.195653, + 11.6162546 + ], + [ + 48.1958677, + 11.6163298 + ], + [ + 48.19619, + 11.6163974 + ], + [ + 48.196511, + 11.6164291 + ], + [ + 48.1967706, + 11.6164258 + ], + [ + 48.1970212, + 11.6163862 + ], + [ + 48.1971931, + 11.6163454 + ], + [ + 48.1973581, + 11.6162927 + ], + [ + 48.1975342, + 11.6162214 + ], + [ + 48.197694, + 11.6161406 + ], + [ + 48.1977348, + 11.6161131 + ] + ] + }, + { + "osmId": "24374288", + "name": null, + "lengthMeters": 193.55932739730204, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5934428, + 10.0497997 + ], + [ + 53.593162, + 10.0469052 + ] + ] + }, + { + "osmId": "24374292", + "name": null, + "lengthMeters": 163.60338319910636, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5936903, + 10.0539292 + ], + [ + 53.5936982, + 10.0534547 + ], + [ + 53.5936837, + 10.0528622 + ], + [ + 53.5936749, + 10.0526589 + ], + [ + 53.5936612, + 10.0523653 + ], + [ + 53.5936326, + 10.0518347 + ], + [ + 53.5936016, + 10.0514581 + ] + ] + }, + { + "osmId": "24374294", + "name": null, + "lengthMeters": 135.9778439703866, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5931333, + 10.04661 + ], + [ + 53.592936, + 10.0445766 + ] + ] + }, + { + "osmId": "24384478", + "name": null, + "lengthMeters": 78.9355970873795, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6922044, + 10.137265 + ], + [ + 53.6923953, + 10.1372456 + ], + [ + 53.692913, + 10.1371929 + ] + ] + }, + { + "osmId": "24485467", + "name": "Siemensbahn", + "lengthMeters": 197.73482580019405, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5386715, + 13.272478 + ], + [ + 52.5386252, + 13.2727359 + ], + [ + 52.5385644, + 13.2730214 + ], + [ + 52.5385132, + 13.2732163 + ], + [ + 52.5384605, + 13.2733962 + ], + [ + 52.5383902, + 13.273606 + ], + [ + 52.5383122, + 13.2738068 + ], + [ + 52.5381935, + 13.2740784 + ], + [ + 52.5381009, + 13.2742596 + ], + [ + 52.5380003, + 13.2744332 + ], + [ + 52.5378929, + 13.2746007 + ], + [ + 52.537804, + 13.2747273 + ], + [ + 52.5377013, + 13.2748602 + ] + ] + }, + { + "osmId": "24485512", + "name": "Siemensbahn", + "lengthMeters": 187.24636265595143, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5389904, + 13.264379 + ], + [ + 52.5389358, + 13.2648219 + ], + [ + 52.5389103, + 13.2651455 + ], + [ + 52.5388821, + 13.2660957 + ], + [ + 52.5388626, + 13.2671343 + ] + ] + }, + { + "osmId": "24488686", + "name": null, + "lengthMeters": 182.9369019139324, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5933832, + 10.0585653 + ], + [ + 53.5933866, + 10.0584798 + ], + [ + 53.5935425, + 10.0558064 + ] + ] + }, + { + "osmId": "24495454", + "name": "Berliner Stadtbahn", + "lengthMeters": 87.2201439092711, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5145611, + 13.3366996 + ], + [ + 52.5142038, + 13.3365191 + ], + [ + 52.5139056, + 13.3363681 + ], + [ + 52.5138115, + 13.33632 + ] + ] + }, + { + "osmId": "24513552", + "name": null, + "lengthMeters": 94.74148485806563, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1407301, + 11.5588142 + ], + [ + 48.1408237, + 11.5575451 + ] + ] + }, + { + "osmId": "24561846", + "name": null, + "lengthMeters": 485.0251564489699, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538108, + 10.0837576 + ], + [ + 53.5538773, + 10.0853397 + ], + [ + 53.5539036, + 10.0858389 + ], + [ + 53.5539084, + 10.0861873 + ], + [ + 53.5538982, + 10.0865149 + ], + [ + 53.5538828, + 10.0867357 + ], + [ + 53.5538538, + 10.0869881 + ], + [ + 53.5537998, + 10.087322 + ], + [ + 53.5537314, + 10.0876703 + ], + [ + 53.5536441, + 10.088029 + ], + [ + 53.5535605, + 10.0882903 + ], + [ + 53.5535079, + 10.0884446 + ], + [ + 53.5533966, + 10.0887573 + ], + [ + 53.5533028, + 10.0889875 + ], + [ + 53.5532273, + 10.0891497 + ], + [ + 53.5531136, + 10.0893578 + ], + [ + 53.5529365, + 10.0896242 + ], + [ + 53.5527841, + 10.0898423 + ], + [ + 53.5525962, + 10.0900517 + ], + [ + 53.5524492, + 10.0901735 + ] + ] + }, + { + "osmId": "24561852", + "name": null, + "lengthMeters": 299.9647554762776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5409181, + 10.1121854 + ], + [ + 53.5408038, + 10.1126035 + ], + [ + 53.5407097, + 10.1129172 + ], + [ + 53.5406532, + 10.1130825 + ], + [ + 53.540578, + 10.1133015 + ], + [ + 53.5404781, + 10.1135616 + ], + [ + 53.5402401, + 10.1141363 + ], + [ + 53.5398628, + 10.1150681 + ], + [ + 53.5394737, + 10.1160093 + ] + ] + }, + { + "osmId": "24565600", + "name": null, + "lengthMeters": 2223.024154302844, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362232, + 13.5334389 + ], + [ + 52.5366164, + 13.5333167 + ], + [ + 52.5370087, + 13.5331837 + ], + [ + 52.5370813, + 13.5331636 + ], + [ + 52.5371115, + 13.5331553 + ], + [ + 52.5374393, + 13.5330491 + ], + [ + 52.537747, + 13.5329722 + ], + [ + 52.5379023, + 13.5329439 + ], + [ + 52.5383579, + 13.532853 + ], + [ + 52.5389097, + 13.5327672 + ], + [ + 52.5395783, + 13.5326481 + ], + [ + 52.5399349, + 13.532565 + ], + [ + 52.5402035, + 13.5324966 + ], + [ + 52.5405903, + 13.5323767 + ], + [ + 52.5409792, + 13.5322513 + ], + [ + 52.5413589, + 13.5321143 + ], + [ + 52.5421001, + 13.5318031 + ], + [ + 52.5428346, + 13.5315095 + ], + [ + 52.5444789, + 13.5309053 + ], + [ + 52.5461301, + 13.5303013 + ], + [ + 52.5493948, + 13.5291033 + ], + [ + 52.5503047, + 13.5287662 + ], + [ + 52.5512088, + 13.5284196 + ], + [ + 52.5517036, + 13.5281966 + ], + [ + 52.5522709, + 13.5279106 + ], + [ + 52.5527421, + 13.527658 + ], + [ + 52.5532103, + 13.5273778 + ], + [ + 52.5535353, + 13.527171 + ], + [ + 52.5541442, + 13.5267503 + ], + [ + 52.5547779, + 13.5262859 + ], + [ + 52.5549481, + 13.5261596 + ], + [ + 52.5553968, + 13.5258276 + ], + [ + 52.5555815, + 13.5256841 + ] + ] + }, + { + "osmId": "24565606", + "name": null, + "lengthMeters": 525.7812583184227, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5167162, + 13.5383814 + ], + [ + 52.5165607, + 13.5382009 + ], + [ + 52.5164127, + 13.5380061 + ], + [ + 52.5161029, + 13.5375136 + ], + [ + 52.5158635, + 13.5371076 + ], + [ + 52.5156631, + 13.536721 + ], + [ + 52.5154837, + 13.5363287 + ], + [ + 52.5153213, + 13.5359278 + ], + [ + 52.5151822, + 13.5355546 + ], + [ + 52.5150524, + 13.5351671 + ], + [ + 52.5148307, + 13.5343611 + ], + [ + 52.5147111, + 13.5338539 + ], + [ + 52.5146024, + 13.5333394 + ], + [ + 52.5145466, + 13.5330691 + ], + [ + 52.5143138, + 13.5318756 + ] + ] + }, + { + "osmId": "24565640", + "name": null, + "lengthMeters": 1397.2534691849771, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5108631, + 13.4991392 + ], + [ + 52.5108951, + 13.4991956 + ], + [ + 52.5110456, + 13.4994611 + ], + [ + 52.511233, + 13.4997681 + ], + [ + 52.511536, + 13.5002883 + ], + [ + 52.5117655, + 13.5007202 + ], + [ + 52.5118955, + 13.5009898 + ], + [ + 52.5119956, + 13.5012101 + ], + [ + 52.5120821, + 13.5014206 + ], + [ + 52.512148, + 13.5015957 + ], + [ + 52.5122316, + 13.5018484 + ], + [ + 52.5123019, + 13.5020877 + ], + [ + 52.5123824, + 13.5024106 + ], + [ + 52.5124275, + 13.5026341 + ], + [ + 52.5124759, + 13.5029082 + ], + [ + 52.5125192, + 13.5032133 + ], + [ + 52.5125693, + 13.5036282 + ], + [ + 52.5125972, + 13.5038866 + ], + [ + 52.512635, + 13.5042357 + ], + [ + 52.5127751, + 13.5055296 + ], + [ + 52.5128815, + 13.5065175 + ], + [ + 52.5129603, + 13.5072404 + ], + [ + 52.5130081, + 13.5076822 + ], + [ + 52.5130964, + 13.5085041 + ], + [ + 52.5132106, + 13.5095088 + ], + [ + 52.5132588, + 13.5098754 + ], + [ + 52.5133173, + 13.5102723 + ], + [ + 52.513349, + 13.5104716 + ], + [ + 52.5134222, + 13.5109083 + ], + [ + 52.5135806, + 13.511799 + ], + [ + 52.5137813, + 13.5129222 + ], + [ + 52.5138614, + 13.5133957 + ], + [ + 52.5139336, + 13.5138709 + ], + [ + 52.5139748, + 13.5141815 + ], + [ + 52.5140105, + 13.5144872 + ], + [ + 52.5140449, + 13.5148423 + ], + [ + 52.5140735, + 13.5151913 + ], + [ + 52.5140932, + 13.5155065 + ], + [ + 52.514108, + 13.5158085 + ], + [ + 52.5141235, + 13.5165506 + ], + [ + 52.514113, + 13.5173914 + ], + [ + 52.5140923, + 13.5183596 + ], + [ + 52.5140873, + 13.5185913 + ] + ] + }, + { + "osmId": "24590411", + "name": null, + "lengthMeters": 496.6397115862703, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4696388, + 13.4449078 + ], + [ + 52.4697126, + 13.4453626 + ], + [ + 52.469757, + 13.4456021 + ], + [ + 52.469859, + 13.4461171 + ], + [ + 52.4698838, + 13.4462528 + ], + [ + 52.4699205, + 13.4464606 + ], + [ + 52.4699502, + 13.4466442 + ], + [ + 52.470018, + 13.4470889 + ], + [ + 52.4701036, + 13.4476695 + ], + [ + 52.4702488, + 13.4486343 + ], + [ + 52.4703417, + 13.4492591 + ], + [ + 52.4704474, + 13.4499588 + ], + [ + 52.4705383, + 13.4505314 + ], + [ + 52.4707035, + 13.4514599 + ], + [ + 52.4707658, + 13.4518047 + ], + [ + 52.4707961, + 13.4519871 + ] + ] + }, + { + "osmId": "24654690", + "name": "Berliner Stadtbahn", + "lengthMeters": 91.64021661274433, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5145853, + 13.3364643 + ], + [ + 52.5145297, + 13.3364363 + ], + [ + 52.5144036, + 13.3363728 + ], + [ + 52.5140458, + 13.3361945 + ], + [ + 52.5140365, + 13.3361907 + ], + [ + 52.5138992, + 13.3361352 + ], + [ + 52.513887, + 13.3361302 + ], + [ + 52.5137924, + 13.3360976 + ] + ] + }, + { + "osmId": "24700554", + "name": "Berliner Ringbahn", + "lengthMeters": 353.79341605399776, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5463842, + 13.375556 + ], + [ + 52.5462392, + 13.3752122 + ], + [ + 52.5458623, + 13.3743184 + ], + [ + 52.5450536, + 13.3724276 + ], + [ + 52.5446183, + 13.3714146 + ], + [ + 52.5445565, + 13.3712734 + ] + ] + }, + { + "osmId": "24700881", + "name": null, + "lengthMeters": 510.8444222873061, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5590076, + 13.3974022 + ], + [ + 52.5590164, + 13.3974 + ], + [ + 52.5590346, + 13.3973955 + ], + [ + 52.5590418, + 13.3973937 + ], + [ + 52.5595197, + 13.3972735 + ], + [ + 52.5599257, + 13.3971673 + ], + [ + 52.5602085, + 13.3970856 + ], + [ + 52.5604766, + 13.3969959 + ], + [ + 52.5607229, + 13.3969043 + ], + [ + 52.5609211, + 13.3968208 + ], + [ + 52.5611843, + 13.3966908 + ], + [ + 52.561343, + 13.3965959 + ], + [ + 52.5615527, + 13.3964696 + ], + [ + 52.5618328, + 13.3962774 + ], + [ + 52.5620406, + 13.3961221 + ], + [ + 52.5622738, + 13.3959318 + ], + [ + 52.5625347, + 13.3957003 + ], + [ + 52.5632995, + 13.3949461 + ] + ] + }, + { + "osmId": "24700885", + "name": null, + "lengthMeters": 716.569550631942, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.558591, + 13.3973572 + ], + [ + 52.5588762, + 13.3972868 + ], + [ + 52.5588815, + 13.3972855 + ], + [ + 52.5591297, + 13.3972243 + ], + [ + 52.5596738, + 13.3970629 + ], + [ + 52.5602259, + 13.3968782 + ], + [ + 52.5603306, + 13.3968424 + ], + [ + 52.5603671, + 13.3968296 + ], + [ + 52.5604632, + 13.3967957 + ], + [ + 52.5606334, + 13.3967391 + ], + [ + 52.5607635, + 13.3966947 + ], + [ + 52.5610747, + 13.3965746 + ], + [ + 52.5613974, + 13.3964041 + ], + [ + 52.5617423, + 13.3961824 + ], + [ + 52.5620821, + 13.3959107 + ], + [ + 52.5626552, + 13.3953975 + ], + [ + 52.5627271, + 13.3953331 + ], + [ + 52.5635319, + 13.3945927 + ], + [ + 52.5636202, + 13.3945115 + ], + [ + 52.5636713, + 13.394457 + ], + [ + 52.5638866, + 13.3942275 + ], + [ + 52.5640051, + 13.3941011 + ], + [ + 52.5644944, + 13.3934986 + ] + ] + }, + { + "osmId": "24720708", + "name": null, + "lengthMeters": 269.5387619804761, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6105065, + 13.2497036 + ], + [ + 52.6120953, + 13.2473614 + ], + [ + 52.6123129, + 13.2470416 + ] + ] + }, + { + "osmId": "24728784", + "name": null, + "lengthMeters": 700.0884801025475, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1280795, + 11.6572111 + ], + [ + 48.1283623, + 11.6566578 + ], + [ + 48.1284306, + 11.6565447 + ], + [ + 48.1284757, + 11.65647 + ], + [ + 48.128536, + 11.6563708 + ], + [ + 48.128599, + 11.6562741 + ], + [ + 48.1287525, + 11.6560761 + ], + [ + 48.1289207, + 11.6558782 + ], + [ + 48.129096, + 11.6556948 + ], + [ + 48.1292911, + 11.6555137 + ], + [ + 48.1295056, + 11.6553632 + ], + [ + 48.1297123, + 11.6552583 + ], + [ + 48.1298778, + 11.6551626 + ], + [ + 48.1299133, + 11.6551444 + ], + [ + 48.1301191, + 11.6550495 + ], + [ + 48.1302153, + 11.6550056 + ], + [ + 48.13053, + 11.654862 + ], + [ + 48.1309534, + 11.6546956 + ], + [ + 48.131161, + 11.6546206 + ], + [ + 48.1314336, + 11.6545183 + ], + [ + 48.1318171, + 11.6543618 + ], + [ + 48.1327233, + 11.6540271 + ], + [ + 48.1334668, + 11.6537532 + ], + [ + 48.133736, + 11.6536447 + ] + ] + }, + { + "osmId": "24734968", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 78.616595477846, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5349877, + 10.06789 + ], + [ + 53.5347773, + 10.0676493 + ], + [ + 53.5346414, + 10.067463 + ], + [ + 53.5345079, + 10.0672632 + ], + [ + 53.5344396, + 10.0671435 + ] + ] + }, + { + "osmId": "24757435", + "name": "Berliner Stadtbahn", + "lengthMeters": 403.34453488316547, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.518756, + 13.340949 + ], + [ + 52.5188278, + 13.3410436 + ], + [ + 52.5189617, + 13.3412436 + ], + [ + 52.519047, + 13.3413839 + ], + [ + 52.5191363, + 13.3415424 + ], + [ + 52.5192415, + 13.3417353 + ], + [ + 52.5193153, + 13.3418956 + ], + [ + 52.5194148, + 13.3421121 + ], + [ + 52.5194938, + 13.3423064 + ], + [ + 52.5195675, + 13.3425008 + ], + [ + 52.519637, + 13.3427079 + ], + [ + 52.5197091, + 13.3429485 + ], + [ + 52.5197818, + 13.3432122 + ], + [ + 52.5198353, + 13.3434402 + ], + [ + 52.5198851, + 13.3436931 + ], + [ + 52.5199307, + 13.343941 + ], + [ + 52.5199667, + 13.3441747 + ], + [ + 52.5199886, + 13.3443456 + ], + [ + 52.5200042, + 13.3445084 + ], + [ + 52.5200156, + 13.3446715 + ], + [ + 52.5200232, + 13.3448102 + ], + [ + 52.5200314, + 13.3451808 + ], + [ + 52.520028, + 13.3454388 + ], + [ + 52.5200208, + 13.3455583 + ], + [ + 52.5199905, + 13.3460456 + ], + [ + 52.519974, + 13.346262 + ] + ] + }, + { + "osmId": "24757437", + "name": "Berliner Stadtbahn", + "lengthMeters": 418.05391746782976, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5200124, + 13.3462651 + ], + [ + 52.5200286, + 13.346041 + ], + [ + 52.5200597, + 13.3455707 + ], + [ + 52.5200646, + 13.3454418 + ], + [ + 52.5200682, + 13.3451459 + ], + [ + 52.5200596, + 13.3448107 + ], + [ + 52.5200473, + 13.3446481 + ], + [ + 52.5200352, + 13.3444933 + ], + [ + 52.520022, + 13.3443428 + ], + [ + 52.520003, + 13.3441996 + ], + [ + 52.5199647, + 13.3439452 + ], + [ + 52.5199191, + 13.343693 + ], + [ + 52.5198652, + 13.3434191 + ], + [ + 52.5198041, + 13.3431568 + ], + [ + 52.5197406, + 13.342915 + ], + [ + 52.5196681, + 13.3426801 + ], + [ + 52.519595, + 13.3424689 + ], + [ + 52.5195203, + 13.3422702 + ], + [ + 52.5194428, + 13.342086 + ], + [ + 52.5193509, + 13.341874 + ], + [ + 52.5192689, + 13.3417063 + ], + [ + 52.5191675, + 13.341505 + ], + [ + 52.5190737, + 13.3413468 + ], + [ + 52.5189875, + 13.3412057 + ], + [ + 52.5188478, + 13.3409987 + ], + [ + 52.5187014, + 13.3407986 + ] + ] + }, + { + "osmId": "24757439", + "name": "Berliner Stadtbahn", + "lengthMeters": 144.27259122396333, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5184185, + 13.340335 + ], + [ + 52.518276, + 13.3401745 + ], + [ + 52.5177924, + 13.3396298 + ], + [ + 52.5175929, + 13.3394166 + ], + [ + 52.5175815, + 13.3394044 + ], + [ + 52.5175295, + 13.3393488 + ], + [ + 52.517345, + 13.3391377 + ] + ] + }, + { + "osmId": "24757441", + "name": "Berliner Stadtbahn", + "lengthMeters": 147.63821691374443, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5183747, + 13.3404137 + ], + [ + 52.5177486, + 13.3397129 + ], + [ + 52.5174753, + 13.3394203 + ], + [ + 52.5172754, + 13.3391903 + ] + ] + }, + { + "osmId": "24757443", + "name": "Berliner Stadtbahn", + "lengthMeters": 189.15542868803396, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199024, + 13.3472418 + ], + [ + 52.5197842, + 13.3488915 + ], + [ + 52.5197016, + 13.3500179 + ] + ] + }, + { + "osmId": "24757444", + "name": "Berliner Stadtbahn", + "lengthMeters": 181.84864940275085, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199837, + 13.3472475 + ], + [ + 52.5199736, + 13.3473994 + ], + [ + 52.5199717, + 13.3474261 + ], + [ + 52.5199303, + 13.3480101 + ], + [ + 52.5198835, + 13.3486366 + ], + [ + 52.5198646, + 13.3488905 + ], + [ + 52.5198573, + 13.3489883 + ], + [ + 52.5197808, + 13.3499143 + ] + ] + }, + { + "osmId": "24757446", + "name": "Berliner Stadtbahn", + "lengthMeters": 424.66939197500847, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520113, + 13.3462734 + ], + [ + 52.5201172, + 13.3460236 + ], + [ + 52.5201269, + 13.3454167 + ], + [ + 52.520127, + 13.3450793 + ], + [ + 52.5201257, + 13.3449785 + ], + [ + 52.5201219, + 13.3448144 + ], + [ + 52.5201117, + 13.3446269 + ], + [ + 52.5200997, + 13.3444558 + ], + [ + 52.5200693, + 13.3441845 + ], + [ + 52.5200289, + 13.3439272 + ], + [ + 52.5199879, + 13.3436872 + ], + [ + 52.5199279, + 13.3433794 + ], + [ + 52.5198625, + 13.3431002 + ], + [ + 52.519799, + 13.3428582 + ], + [ + 52.5197285, + 13.3426269 + ], + [ + 52.5197221, + 13.342607 + ], + [ + 52.5196538, + 13.3424122 + ], + [ + 52.5195786, + 13.3422025 + ], + [ + 52.5195064, + 13.3420265 + ], + [ + 52.51942, + 13.3418332 + ], + [ + 52.5193255, + 13.3416407 + ], + [ + 52.5192208, + 13.3414457 + ], + [ + 52.519132, + 13.3412884 + ], + [ + 52.519037, + 13.341132 + ], + [ + 52.5189027, + 13.3409257 + ], + [ + 52.518747, + 13.3407124 + ] + ] + }, + { + "osmId": "24757706", + "name": "Berliner Stadtbahn", + "lengthMeters": 105.78248356246571, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197016, + 13.3500179 + ], + [ + 52.5195946, + 13.3515714 + ] + ] + }, + { + "osmId": "24757710", + "name": "Berliner Stadtbahn", + "lengthMeters": 251.72634990870878, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5194908, + 13.3552379 + ], + [ + 52.5194717, + 13.3549191 + ], + [ + 52.5194585, + 13.3545 + ], + [ + 52.5194601, + 13.3540672 + ], + [ + 52.5194836, + 13.3535908 + ], + [ + 52.5196033, + 13.3519491 + ], + [ + 52.519632, + 13.3515356 + ] + ] + }, + { + "osmId": "24757712", + "name": "Berliner Stadtbahn", + "lengthMeters": 258.0900840761674, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519563, + 13.3552586 + ], + [ + 52.5195379, + 13.3549056 + ], + [ + 52.5195273, + 13.3545173 + ], + [ + 52.5195299, + 13.3540514 + ], + [ + 52.5195521, + 13.3536095 + ], + [ + 52.5195639, + 13.3534319 + ], + [ + 52.5197054, + 13.3514632 + ] + ] + }, + { + "osmId": "24757714", + "name": "Berliner Stadtbahn", + "lengthMeters": 238.1390375458528, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.524268, + 13.3656508 + ], + [ + 52.5241344, + 13.36541 + ], + [ + 52.5240675, + 13.3652945 + ], + [ + 52.5239573, + 13.3651063 + ], + [ + 52.5239444, + 13.3650851 + ], + [ + 52.5239396, + 13.3650777 + ], + [ + 52.523829, + 13.3649041 + ], + [ + 52.5236341, + 13.3645915 + ], + [ + 52.5234206, + 13.3642545 + ], + [ + 52.5233082, + 13.3640694 + ], + [ + 52.5230513, + 13.3636282 + ], + [ + 52.5227902, + 13.3631073 + ] + ] + }, + { + "osmId": "24757717", + "name": "Berliner Stadtbahn", + "lengthMeters": 590.4840243836907, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5227697, + 13.3632563 + ], + [ + 52.5219276, + 13.3616137 + ], + [ + 52.5215229, + 13.3608212 + ], + [ + 52.5211535, + 13.3600977 + ], + [ + 52.5210332, + 13.3598603 + ], + [ + 52.5209912, + 13.3597803 + ], + [ + 52.5208719, + 13.3595479 + ], + [ + 52.5208357, + 13.3594762 + ], + [ + 52.5206981, + 13.3592051 + ], + [ + 52.5206476, + 13.3591059 + ], + [ + 52.5202506, + 13.3583158 + ], + [ + 52.520012, + 13.3577326 + ], + [ + 52.5198846, + 13.3573285 + ], + [ + 52.5197752, + 13.3569387 + ], + [ + 52.5197528, + 13.356847 + ], + [ + 52.5196912, + 13.3565913 + ], + [ + 52.5196285, + 13.3562878 + ] + ] + }, + { + "osmId": "24757728", + "name": "Berliner Stadtbahn", + "lengthMeters": 581.1103292656035, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5227902, + 13.3631073 + ], + [ + 52.5220174, + 13.3616071 + ], + [ + 52.5219804, + 13.3615353 + ], + [ + 52.5210846, + 13.3597859 + ], + [ + 52.5210438, + 13.3597069 + ], + [ + 52.5209246, + 13.3594734 + ], + [ + 52.5208894, + 13.359404 + ], + [ + 52.5207483, + 13.3591287 + ], + [ + 52.5206989, + 13.3590333 + ], + [ + 52.5203042, + 13.358243 + ], + [ + 52.5202189, + 13.3580447 + ], + [ + 52.5200766, + 13.3576754 + ], + [ + 52.5199577, + 13.3573191 + ], + [ + 52.519839, + 13.3568915 + ], + [ + 52.5198155, + 13.3568017 + ], + [ + 52.5196954, + 13.356254 + ] + ] + }, + { + "osmId": "24828490", + "name": null, + "lengthMeters": 865.937313774652, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2043671, + 11.454357 + ], + [ + 48.2040743, + 11.450699 + ], + [ + 48.203988, + 11.4496268 + ], + [ + 48.2039143, + 11.4485685 + ], + [ + 48.2038961, + 11.4482557 + ], + [ + 48.2038598, + 11.4476319 + ], + [ + 48.2038132, + 11.4467433 + ], + [ + 48.2037722, + 11.4457396 + ], + [ + 48.2037485, + 11.4449557 + ], + [ + 48.2037293, + 11.4441866 + ], + [ + 48.2037172, + 11.4434476 + ], + [ + 48.2037093, + 11.4427221 + ] + ] + }, + { + "osmId": "24862036", + "name": null, + "lengthMeters": 518.2573744870934, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775612, + 13.3281515 + ], + [ + 52.4775949, + 13.3204994 + ] + ] + }, + { + "osmId": "24862038", + "name": null, + "lengthMeters": 139.16696250551527, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775975, + 13.3288434 + ], + [ + 52.4775925, + 13.3294567 + ], + [ + 52.4775922, + 13.3298666 + ], + [ + 52.4775926, + 13.3304419 + ], + [ + 52.477593, + 13.3305588 + ], + [ + 52.4775937, + 13.3307263 + ], + [ + 52.4775941, + 13.3308982 + ] + ] + }, + { + "osmId": "24862846", + "name": "U1", + "lengthMeters": 764.4737809067128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014121, + 13.3446601 + ], + [ + 52.5006494, + 13.3482357 + ], + [ + 52.5000128, + 13.3510216 + ], + [ + 52.4996694, + 13.3526016 + ], + [ + 52.4996526, + 13.352716 + ], + [ + 52.4996448, + 13.3528303 + ], + [ + 52.4996439, + 13.3529164 + ], + [ + 52.4996503, + 13.3530299 + ], + [ + 52.4997201, + 13.3536433 + ], + [ + 52.4997597, + 13.353896 + ], + [ + 52.4998208, + 13.3542045 + ], + [ + 52.4998614, + 13.3543643 + ], + [ + 52.5000857, + 13.355099 + ], + [ + 52.5001454, + 13.3552895 + ] + ] + }, + { + "osmId": "24864947", + "name": null, + "lengthMeters": 762.984878437541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104479, + 13.453246 + ], + [ + 52.5104221, + 13.4533876 + ], + [ + 52.5103651, + 13.4537008 + ], + [ + 52.5101841, + 13.4546946 + ], + [ + 52.510088, + 13.4552153 + ], + [ + 52.5099664, + 13.4558981 + ], + [ + 52.5099255, + 13.4560798 + ], + [ + 52.5099042, + 13.4561746 + ], + [ + 52.5098936, + 13.456216 + ], + [ + 52.5096972, + 13.4569761 + ], + [ + 52.5094834, + 13.4578639 + ], + [ + 52.5094693, + 13.4579218 + ], + [ + 52.50903, + 13.4597503 + ], + [ + 52.5090035, + 13.4598627 + ], + [ + 52.508973, + 13.4599801 + ], + [ + 52.5089439, + 13.4601139 + ], + [ + 52.5086539, + 13.4613121 + ], + [ + 52.5085644, + 13.4616862 + ], + [ + 52.5081841, + 13.4632759 + ], + [ + 52.5081508, + 13.4634146 + ], + [ + 52.5080992, + 13.4636293 + ], + [ + 52.5080581, + 13.463805 + ] + ] + }, + { + "osmId": "24867655", + "name": null, + "lengthMeters": 301.14607767300373, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027082, + 13.296186 + ], + [ + 52.5030435, + 13.2973696 + ], + [ + 52.5032681, + 13.2981764 + ], + [ + 52.5034639, + 13.2989393 + ], + [ + 52.5034834, + 13.2990185 + ], + [ + 52.5034989, + 13.2990802 + ], + [ + 52.5035374, + 13.2992404 + ], + [ + 52.5035863, + 13.2994502 + ], + [ + 52.5036415, + 13.2996906 + ], + [ + 52.5037012, + 13.2999531 + ], + [ + 52.5037726, + 13.3002747 + ] + ] + }, + { + "osmId": "24867657", + "name": null, + "lengthMeters": 766.7844995102574, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026796, + 13.2957053 + ], + [ + 52.5024628, + 13.294946 + ], + [ + 52.501943, + 13.2931112 + ], + [ + 52.5017232, + 13.2923332 + ], + [ + 52.5009205, + 13.2895018 + ], + [ + 52.5001953, + 13.2869434 + ], + [ + 52.5000445, + 13.2864104 + ], + [ + 52.4997694, + 13.2854355 + ] + ] + }, + { + "osmId": "24867661", + "name": null, + "lengthMeters": 303.710577475604, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.502667, + 13.2962042 + ], + [ + 52.5027518, + 13.2965026 + ], + [ + 52.5028338, + 13.2968022 + ], + [ + 52.5029151, + 13.2971035 + ], + [ + 52.5029936, + 13.297406 + ], + [ + 52.5030971, + 13.297814 + ], + [ + 52.5031957, + 13.2982232 + ], + [ + 52.5033877, + 13.2990746 + ], + [ + 52.5034015, + 13.2991366 + ], + [ + 52.5034371, + 13.2992924 + ], + [ + 52.5035395, + 13.2997672 + ], + [ + 52.5035882, + 13.2999804 + ], + [ + 52.5036655, + 13.3003265 + ], + [ + 52.5036759, + 13.3003716 + ] + ] + }, + { + "osmId": "24867662", + "name": null, + "lengthMeters": 531.6496912676198, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018708, + 13.287879 + ], + [ + 52.5019216, + 13.2880855 + ], + [ + 52.5019563, + 13.2882388 + ], + [ + 52.5019932, + 13.2884036 + ], + [ + 52.5020155, + 13.2885035 + ], + [ + 52.5020823, + 13.2888093 + ], + [ + 52.502131, + 13.2890235 + ], + [ + 52.5022325, + 13.2895724 + ], + [ + 52.5023274, + 13.2901475 + ], + [ + 52.5023989, + 13.290671 + ], + [ + 52.5025185, + 13.2915663 + ], + [ + 52.5026608, + 13.2926065 + ], + [ + 52.5026643, + 13.2926323 + ], + [ + 52.5026767, + 13.2927245 + ], + [ + 52.5028242, + 13.2938225 + ], + [ + 52.5028731, + 13.2941359 + ], + [ + 52.5029196, + 13.2945175 + ], + [ + 52.5029848, + 13.2950062 + ], + [ + 52.503011, + 13.2951705 + ], + [ + 52.5030596, + 13.295476 + ] + ] + }, + { + "osmId": "24896679", + "name": null, + "lengthMeters": 639.8155577909638, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4044355, + 13.148865 + ], + [ + 52.4029912, + 13.1472967 + ], + [ + 52.4021026, + 13.1463291 + ], + [ + 52.3997383, + 13.1437478 + ], + [ + 52.3996451, + 13.1436406 + ] + ] + }, + { + "osmId": "24896680", + "name": null, + "lengthMeters": 628.78843172757, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4047271, + 13.1482613 + ], + [ + 52.4035107, + 13.1467947 + ], + [ + 52.4014699, + 13.14441 + ], + [ + 52.4001546, + 13.1428087 + ] + ] + }, + { + "osmId": "24971177", + "name": null, + "lengthMeters": 286.0659079440596, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5275327, + 10.2985885 + ], + [ + 53.5276276, + 10.2989713 + ], + [ + 53.5276839, + 10.2991982 + ], + [ + 53.5280775, + 10.3009395 + ], + [ + 53.5281382, + 10.3012079 + ], + [ + 53.528426, + 10.3025552 + ], + [ + 53.5284418, + 10.3026365 + ] + ] + }, + { + "osmId": "24988540", + "name": "Berliner Stadtbahn", + "lengthMeters": 107.29453926058176, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519632, + 13.3515356 + ], + [ + 52.5197453, + 13.3499608 + ] + ] + }, + { + "osmId": "24988541", + "name": "Berliner Stadtbahn", + "lengthMeters": 185.04625703116733, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197453, + 13.3499608 + ], + [ + 52.5198189, + 13.3488995 + ], + [ + 52.5199391, + 13.3472445 + ] + ] + }, + { + "osmId": "24988542", + "name": "Berliner Stadtbahn", + "lengthMeters": 109.21871259092543, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197054, + 13.3514632 + ], + [ + 52.5197082, + 13.351433 + ], + [ + 52.5198219, + 13.3498604 + ] + ] + }, + { + "osmId": "24988543", + "name": "Berliner Stadtbahn", + "lengthMeters": 178.42242820430167, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5198219, + 13.3498604 + ], + [ + 52.5198468, + 13.3496316 + ], + [ + 52.5198875, + 13.3493565 + ], + [ + 52.5198902, + 13.3493396 + ], + [ + 52.5198929, + 13.3493232 + ], + [ + 52.5199412, + 13.3490283 + ], + [ + 52.51996, + 13.3489026 + ], + [ + 52.5199873, + 13.3486813 + ], + [ + 52.5200575, + 13.3477818 + ], + [ + 52.5200809, + 13.3474422 + ], + [ + 52.5200845, + 13.3473897 + ], + [ + 52.520092, + 13.3472654 + ] + ] + }, + { + "osmId": "24995285", + "name": null, + "lengthMeters": 256.5527190412986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5517719, + 13.4286818 + ], + [ + 52.552187, + 13.4276286 + ], + [ + 52.5522181, + 13.4275443 + ], + [ + 52.5522586, + 13.4274221 + ], + [ + 52.552273, + 13.4273776 + ], + [ + 52.5523156, + 13.4272329 + ], + [ + 52.5523514, + 13.4270842 + ], + [ + 52.5523693, + 13.4270022 + ], + [ + 52.5523934, + 13.426882 + ], + [ + 52.5524099, + 13.4267821 + ], + [ + 52.5524284, + 13.4266569 + ], + [ + 52.552448, + 13.4264932 + ], + [ + 52.5524661, + 13.4263296 + ], + [ + 52.5525646, + 13.425432 + ], + [ + 52.5525819, + 13.425276 + ], + [ + 52.5525907, + 13.4251966 + ] + ] + }, + { + "osmId": "24997183", + "name": null, + "lengthMeters": 668.1796702551792, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4662542, + 13.559147 + ], + [ + 52.4641107, + 13.5640212 + ], + [ + 52.4640983, + 13.5640519 + ], + [ + 52.463942, + 13.5644071 + ], + [ + 52.4636908, + 13.5649898 + ], + [ + 52.4628851, + 13.5667721 + ], + [ + 52.4627242, + 13.5671285 + ] + ] + }, + { + "osmId": "25000105", + "name": null, + "lengthMeters": 419.1997952250466, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4567558, + 13.6255315 + ], + [ + 52.4567908, + 13.6255817 + ], + [ + 52.4568136, + 13.6256219 + ], + [ + 52.4568324, + 13.6256666 + ], + [ + 52.4568468, + 13.6257123 + ], + [ + 52.4568583, + 13.6257611 + ], + [ + 52.456865, + 13.6258075 + ], + [ + 52.4568698, + 13.625855 + ], + [ + 52.4568731, + 13.6259244 + ], + [ + 52.4568747, + 13.6260458 + ], + [ + 52.4568619, + 13.626467 + ], + [ + 52.4568586, + 13.6265724 + ], + [ + 52.4568516, + 13.6267966 + ], + [ + 52.4568401, + 13.6271687 + ], + [ + 52.4568343, + 13.6273549 + ], + [ + 52.4567811, + 13.629063 + ], + [ + 52.4567709, + 13.6293894 + ], + [ + 52.4567526, + 13.6300397 + ], + [ + 52.4567334, + 13.6306365 + ], + [ + 52.4567184, + 13.6311032 + ], + [ + 52.4567122, + 13.6313553 + ], + [ + 52.456706, + 13.6316495 + ] + ] + }, + { + "osmId": "25000109", + "name": null, + "lengthMeters": 175.53259536081035, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4482775, + 13.6404328 + ], + [ + 52.4482975, + 13.640432 + ], + [ + 52.4483254, + 13.6404317 + ], + [ + 52.4483627, + 13.6404225 + ], + [ + 52.4483897, + 13.6404134 + ], + [ + 52.4484052, + 13.6404053 + ], + [ + 52.4484424, + 13.6403824 + ], + [ + 52.4484701, + 13.6403516 + ], + [ + 52.4485195, + 13.6402927 + ], + [ + 52.4485611, + 13.6402123 + ], + [ + 52.4485916, + 13.6401407 + ], + [ + 52.4486179, + 13.6400748 + ], + [ + 52.4486257, + 13.640021 + ], + [ + 52.4486334, + 13.6399639 + ], + [ + 52.4486327, + 13.6398892 + ], + [ + 52.4486314, + 13.639752 + ], + [ + 52.4486303, + 13.639629 + ], + [ + 52.4486294, + 13.6395264 + ], + [ + 52.4486291, + 13.6394924 + ], + [ + 52.4486288, + 13.6394542 + ], + [ + 52.4486284, + 13.6394119 + ], + [ + 52.4486244, + 13.6393746 + ], + [ + 52.4486109, + 13.6393088 + ], + [ + 52.4485922, + 13.6392604 + ], + [ + 52.4485651, + 13.639199 + ], + [ + 52.4485322, + 13.6391452 + ], + [ + 52.4484664, + 13.6390893 + ], + [ + 52.4483714, + 13.6390741 + ], + [ + 52.448346, + 13.6390701 + ], + [ + 52.4479905, + 13.6390729 + ] + ] + }, + { + "osmId": "25000118", + "name": null, + "lengthMeters": 81.09643897359788, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4566425, + 13.6237327 + ], + [ + 52.4567361, + 13.6241646 + ], + [ + 52.4568112, + 13.6245109 + ], + [ + 52.456851, + 13.6246945 + ], + [ + 52.4568885, + 13.6248594 + ] + ] + }, + { + "osmId": "25000120", + "name": null, + "lengthMeters": 80.64723811698451, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569186, + 13.6248285 + ], + [ + 52.4568844, + 13.6246747 + ], + [ + 52.4566718, + 13.6237093 + ] + ] + }, + { + "osmId": "25005724", + "name": null, + "lengthMeters": 101.05542027686849, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5091803, + 13.4386158 + ], + [ + 52.509172, + 13.4386356 + ], + [ + 52.5091678, + 13.4386458 + ], + [ + 52.5090306, + 13.4389786 + ], + [ + 52.5088714, + 13.4394034 + ], + [ + 52.5087042, + 13.4398868 + ] + ] + }, + { + "osmId": "25005728", + "name": null, + "lengthMeters": 142.92628871983456, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5079455, + 13.4413594 + ], + [ + 52.508012, + 13.441121 + ], + [ + 52.5080877, + 13.4408873 + ], + [ + 52.5082422, + 13.4404368 + ], + [ + 52.5084338, + 13.4399387 + ], + [ + 52.5085501, + 13.4396247 + ], + [ + 52.5085852, + 13.4395299 + ] + ] + }, + { + "osmId": "25032015", + "name": "Kremmener Bahn", + "lengthMeters": 833.9648022405995, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5798451, + 13.3007393 + ], + [ + 52.5805287, + 13.2986637 + ], + [ + 52.5808794, + 13.2977125 + ], + [ + 52.5814254, + 13.2962763 + ], + [ + 52.5815408, + 13.2959757 + ], + [ + 52.5815528, + 13.2959445 + ], + [ + 52.5816931, + 13.2955858 + ], + [ + 52.5817757, + 13.2953873 + ], + [ + 52.5818441, + 13.2952325 + ], + [ + 52.5818779, + 13.2951589 + ], + [ + 52.5819801, + 13.2949481 + ], + [ + 52.5820865, + 13.2947301 + ], + [ + 52.5821996, + 13.2945298 + ], + [ + 52.5823159, + 13.2943447 + ], + [ + 52.5824237, + 13.2941851 + ], + [ + 52.5825296, + 13.2940383 + ], + [ + 52.5826587, + 13.2938757 + ], + [ + 52.5828072, + 13.2937086 + ], + [ + 52.5829185, + 13.2935922 + ], + [ + 52.5830361, + 13.2934816 + ], + [ + 52.5832651, + 13.2932947 + ], + [ + 52.5834877, + 13.2931232 + ], + [ + 52.5835476, + 13.2930832 + ], + [ + 52.5840783, + 13.2927289 + ], + [ + 52.5843548, + 13.2925406 + ], + [ + 52.5844022, + 13.2925077 + ], + [ + 52.5848659, + 13.2922027 + ] + ] + }, + { + "osmId": "25112179", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1110.9970308908394, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5345488, + 10.0585021 + ], + [ + 53.5347299, + 10.0572552 + ], + [ + 53.5349131, + 10.0559185 + ], + [ + 53.5350098, + 10.0551521 + ], + [ + 53.5353393, + 10.052842 + ], + [ + 53.5355418, + 10.0513588 + ], + [ + 53.5356977, + 10.0502996 + ], + [ + 53.5361313, + 10.0476995 + ], + [ + 53.5364691, + 10.0456621 + ], + [ + 53.5365033, + 10.0454456 + ], + [ + 53.536644, + 10.0445951 + ], + [ + 53.5368185, + 10.0435454 + ], + [ + 53.5368246, + 10.0435088 + ], + [ + 53.5368544, + 10.0433389 + ], + [ + 53.5369116, + 10.0430134 + ], + [ + 53.5369764, + 10.0426801 + ], + [ + 53.5370737, + 10.0422437 + ] + ] + }, + { + "osmId": "25135883", + "name": null, + "lengthMeters": 181.87256626203092, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4888606, + 13.2618449 + ], + [ + 52.4887351, + 13.2616053 + ], + [ + 52.4885617, + 13.2612684 + ], + [ + 52.4884171, + 13.2609874 + ], + [ + 52.4880933, + 13.2603613 + ], + [ + 52.487907, + 13.2600323 + ], + [ + 52.4877869, + 13.2598193 + ] + ] + }, + { + "osmId": "25135885", + "name": null, + "lengthMeters": 411.5742730890317, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4883103, + 13.2620395 + ], + [ + 52.4880792, + 13.2615853 + ], + [ + 52.4878212, + 13.2610857 + ], + [ + 52.4877157, + 13.2608815 + ], + [ + 52.4868674, + 13.2592502 + ], + [ + 52.4867075, + 13.2589635 + ], + [ + 52.4866624, + 13.2588826 + ], + [ + 52.4864981, + 13.258606 + ], + [ + 52.4860618, + 13.2579521 + ], + [ + 52.4857978, + 13.257592 + ] + ] + }, + { + "osmId": "25152521", + "name": null, + "lengthMeters": 865.1210313796112, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4755623, + 13.2453133 + ], + [ + 52.4753148, + 13.2450036 + ], + [ + 52.4749622, + 13.2445645 + ], + [ + 52.4747966, + 13.2443629 + ], + [ + 52.4724187, + 13.241411 + ], + [ + 52.4717876, + 13.2406289 + ], + [ + 52.4711436, + 13.2398245 + ], + [ + 52.4697289, + 13.2380373 + ], + [ + 52.4693684, + 13.2375842 + ] + ] + }, + { + "osmId": "25152526", + "name": null, + "lengthMeters": 1768.7557685138772, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4406726, + 13.2015634 + ], + [ + 52.4406801, + 13.2015723 + ], + [ + 52.4413503, + 13.2024189 + ], + [ + 52.4418899, + 13.2031005 + ], + [ + 52.4420713, + 13.2033297 + ], + [ + 52.4424172, + 13.2037668 + ], + [ + 52.4431132, + 13.2046461 + ], + [ + 52.4436814, + 13.2053639 + ], + [ + 52.4447125, + 13.2066666 + ], + [ + 52.4462778, + 13.2086442 + ], + [ + 52.4478841, + 13.2106738 + ], + [ + 52.4489132, + 13.2119741 + ], + [ + 52.4504353, + 13.2138972 + ], + [ + 52.4504746, + 13.2139469 + ], + [ + 52.4520765, + 13.2159711 + ], + [ + 52.4529424, + 13.2170653 + ], + [ + 52.4531447, + 13.217321 + ], + [ + 52.4532757, + 13.2174865 + ] + ] + }, + { + "osmId": "25152528", + "name": null, + "lengthMeters": 1101.608710834449, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4534708, + 13.2177327 + ], + [ + 52.4546731, + 13.2192542 + ], + [ + 52.4562736, + 13.2212797 + ], + [ + 52.4578393, + 13.2232613 + ], + [ + 52.4579712, + 13.2234282 + ], + [ + 52.4589035, + 13.2246041 + ], + [ + 52.4605056, + 13.2266318 + ], + [ + 52.4608436, + 13.2270552 + ], + [ + 52.4613171, + 13.2276588 + ] + ] + }, + { + "osmId": "25152530", + "name": null, + "lengthMeters": 1056.4401914820444, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.461552, + 13.2279507 + ], + [ + 52.462044, + 13.2285777 + ], + [ + 52.4622222, + 13.2288047 + ], + [ + 52.4628956, + 13.2296577 + ], + [ + 52.4635731, + 13.2305114 + ], + [ + 52.4645965, + 13.2318076 + ], + [ + 52.4661904, + 13.2338224 + ], + [ + 52.4663905, + 13.2340789 + ], + [ + 52.4670695, + 13.2349362 + ], + [ + 52.4677945, + 13.2358533 + ], + [ + 52.4688611, + 13.2372025 + ], + [ + 52.4690738, + 13.2374774 + ] + ] + }, + { + "osmId": "25152532", + "name": null, + "lengthMeters": 1475.9417234433497, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4693344, + 13.237797 + ], + [ + 52.4702977, + 13.2390215 + ], + [ + 52.4704415, + 13.2392036 + ], + [ + 52.4709745, + 13.2398788 + ], + [ + 52.4715075, + 13.240554 + ], + [ + 52.4718271, + 13.2409587 + ], + [ + 52.4722279, + 13.2414665 + ], + [ + 52.4733537, + 13.2428925 + ], + [ + 52.4740678, + 13.2437971 + ], + [ + 52.4744463, + 13.2442893 + ], + [ + 52.4746884, + 13.2446214 + ], + [ + 52.4748431, + 13.2448468 + ], + [ + 52.4750843, + 13.2452172 + ], + [ + 52.4753501, + 13.2456621 + ], + [ + 52.4756813, + 13.246256 + ], + [ + 52.4758827, + 13.2466339 + ], + [ + 52.4763564, + 13.2475337 + ], + [ + 52.4770283, + 13.2487994 + ], + [ + 52.477372, + 13.2494112 + ], + [ + 52.4777406, + 13.2499901 + ], + [ + 52.4781958, + 13.2506022 + ], + [ + 52.4786567, + 13.2511665 + ], + [ + 52.4793465, + 13.2519944 + ] + ] + }, + { + "osmId": "25152533", + "name": null, + "lengthMeters": 1129.0921941061533, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4770673, + 13.2486743 + ], + [ + 52.4770749, + 13.2486888 + ], + [ + 52.4772233, + 13.2489462 + ], + [ + 52.4774224, + 13.2493027 + ], + [ + 52.4778397, + 13.249945 + ], + [ + 52.4778582, + 13.2499705 + ], + [ + 52.4782453, + 13.2505054 + ], + [ + 52.4787284, + 13.2511013 + ], + [ + 52.4796576, + 13.2521977 + ], + [ + 52.4800531, + 13.252582 + ], + [ + 52.4805438, + 13.2530589 + ], + [ + 52.4809668, + 13.2533971 + ], + [ + 52.4814181, + 13.2537354 + ], + [ + 52.4826899, + 13.2546294 + ], + [ + 52.4826987, + 13.2546356 + ], + [ + 52.4828744, + 13.254758 + ], + [ + 52.4840824, + 13.2556069 + ], + [ + 52.4843819, + 13.2558387 + ], + [ + 52.4845949, + 13.2560217 + ], + [ + 52.4848508, + 13.256262 + ], + [ + 52.4851063, + 13.2565157 + ], + [ + 52.4854065, + 13.2568512 + ], + [ + 52.4855489, + 13.2570258 + ], + [ + 52.4856929, + 13.2572073 + ] + ] + }, + { + "osmId": "25152534", + "name": null, + "lengthMeters": 1768.549981016476, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4407253, + 13.2014549 + ], + [ + 52.4421872, + 13.2032997 + ], + [ + 52.4423676, + 13.2035273 + ], + [ + 52.4462667, + 13.2084535 + ], + [ + 52.4512125, + 13.2147028 + ], + [ + 52.4533265, + 13.2173771 + ] + ] + }, + { + "osmId": "25152536", + "name": null, + "lengthMeters": 1102.0895016344577, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4535214, + 13.217624 + ], + [ + 52.4537217, + 13.2178757 + ], + [ + 52.456526, + 13.2214201 + ], + [ + 52.4578457, + 13.2230898 + ], + [ + 52.4604418, + 13.226372 + ], + [ + 52.461372, + 13.2275526 + ] + ] + }, + { + "osmId": "25152539", + "name": null, + "lengthMeters": 1052.3704155941955, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4616003, + 13.2278415 + ], + [ + 52.4622935, + 13.2287168 + ], + [ + 52.4629739, + 13.2295742 + ], + [ + 52.4636887, + 13.2304767 + ], + [ + 52.4658707, + 13.2332389 + ], + [ + 52.4663667, + 13.2338684 + ], + [ + 52.4690979, + 13.2373214 + ] + ] + }, + { + "osmId": "25162405", + "name": null, + "lengthMeters": 83.16355807145922, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5182167, + 13.4527534 + ], + [ + 52.5181305, + 13.4529083 + ], + [ + 52.518076, + 13.4530005 + ], + [ + 52.5180608, + 13.4530196 + ], + [ + 52.5180429, + 13.4530396 + ], + [ + 52.5180233, + 13.4530579 + ], + [ + 52.5180051, + 13.4530739 + ], + [ + 52.5179772, + 13.4530923 + ], + [ + 52.5179532, + 13.4531058 + ], + [ + 52.5175606, + 13.4532521 + ] + ] + }, + { + "osmId": "25162681", + "name": null, + "lengthMeters": 360.97486962720234, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144554, + 13.4533393 + ], + [ + 52.5141269, + 13.4531928 + ], + [ + 52.5140958, + 13.4531789 + ], + [ + 52.513718, + 13.4530103 + ], + [ + 52.5126043, + 13.45251 + ], + [ + 52.5124787, + 13.452454 + ], + [ + 52.5123636, + 13.4524026 + ], + [ + 52.5120579, + 13.4522675 + ], + [ + 52.5113226, + 13.451941 + ] + ] + }, + { + "osmId": "25276223", + "name": null, + "lengthMeters": 936.5130925935658, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2058406, + 11.3630461 + ], + [ + 48.2057271, + 11.3622873 + ], + [ + 48.2056483, + 11.3617395 + ], + [ + 48.2055823, + 11.3612495 + ], + [ + 48.205528, + 11.360794 + ], + [ + 48.2054787, + 11.3603061 + ], + [ + 48.2054212, + 11.3595944 + ], + [ + 48.2053989, + 11.3592149 + ], + [ + 48.205378, + 11.3588188 + ], + [ + 48.2053636, + 11.3583921 + ], + [ + 48.2053526, + 11.3579608 + ], + [ + 48.2053511, + 11.3575821 + ], + [ + 48.2053529, + 11.3571968 + ], + [ + 48.2053605, + 11.3567519 + ], + [ + 48.2053753, + 11.3563326 + ], + [ + 48.2053944, + 11.3559178 + ], + [ + 48.2054216, + 11.3554798 + ], + [ + 48.2054561, + 11.3550279 + ], + [ + 48.2054969, + 11.3545802 + ], + [ + 48.2055482, + 11.3540918 + ], + [ + 48.2056103, + 11.3535878 + ], + [ + 48.2056711, + 11.3531725 + ], + [ + 48.2057498, + 11.352656 + ], + [ + 48.2058208, + 11.3522512 + ], + [ + 48.2058938, + 11.351861 + ], + [ + 48.2060164, + 11.3512663 + ], + [ + 48.2061405, + 11.3507252 + ], + [ + 48.206167, + 11.3506151 + ] + ] + }, + { + "osmId": "25276248", + "name": null, + "lengthMeters": 694.3821350033069, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2048456, + 11.3539383 + ], + [ + 48.2048519, + 11.3542883 + ], + [ + 48.2048686, + 11.3546541 + ], + [ + 48.2048885, + 11.3549803 + ], + [ + 48.2049173, + 11.3553261 + ], + [ + 48.2050251, + 11.3565391 + ], + [ + 48.2052309, + 11.3588817 + ], + [ + 48.2053973, + 11.3607733 + ], + [ + 48.2055326, + 11.3623112 + ], + [ + 48.205615, + 11.3632342 + ] + ] + }, + { + "osmId": "25280095", + "name": null, + "lengthMeters": 312.31071663403714, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4621724, + 13.5828648 + ], + [ + 52.4622915, + 13.582964 + ], + [ + 52.4624834, + 13.5831244 + ], + [ + 52.4625188, + 13.5831546 + ], + [ + 52.4629445, + 13.5835183 + ], + [ + 52.4630453, + 13.5836134 + ], + [ + 52.463147, + 13.5837094 + ], + [ + 52.463184, + 13.5837443 + ], + [ + 52.4633056, + 13.5838377 + ], + [ + 52.4634535, + 13.5839515 + ], + [ + 52.4636272, + 13.5840521 + ], + [ + 52.4637773, + 13.5840871 + ], + [ + 52.4641214, + 13.5841166 + ], + [ + 52.4641803, + 13.5841217 + ], + [ + 52.4642119, + 13.5841232 + ], + [ + 52.4643099, + 13.5841279 + ], + [ + 52.464806, + 13.584179 + ] + ] + }, + { + "osmId": "25281390", + "name": null, + "lengthMeters": 603.3116763432427, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4842248, + 13.5107915 + ], + [ + 52.484207, + 13.5109158 + ], + [ + 52.4841868, + 13.5110196 + ], + [ + 52.4841528, + 13.5111449 + ], + [ + 52.4841107, + 13.5112695 + ], + [ + 52.4840709, + 13.5113882 + ], + [ + 52.4840389, + 13.5114818 + ], + [ + 52.484009, + 13.5115714 + ], + [ + 52.4839935, + 13.5116183 + ], + [ + 52.4839062, + 13.5118706 + ], + [ + 52.4837855, + 13.5122255 + ], + [ + 52.4835491, + 13.512921 + ], + [ + 52.4835295, + 13.5129777 + ], + [ + 52.4834871, + 13.5131002 + ], + [ + 52.4834813, + 13.5131149 + ], + [ + 52.4834332, + 13.5132363 + ], + [ + 52.483375, + 13.5133744 + ], + [ + 52.4832826, + 13.5135875 + ], + [ + 52.4827411, + 13.514814 + ], + [ + 52.4826921, + 13.5149251 + ], + [ + 52.4826634, + 13.5149901 + ], + [ + 52.4822051, + 13.516034 + ], + [ + 52.4821698, + 13.5161145 + ], + [ + 52.4820408, + 13.5164082 + ], + [ + 52.4818103, + 13.516936 + ], + [ + 52.4817725, + 13.5170214 + ], + [ + 52.4817347, + 13.5171065 + ], + [ + 52.4815306, + 13.5175666 + ], + [ + 52.4813277, + 13.5180258 + ], + [ + 52.4812834, + 13.5181271 + ], + [ + 52.4812473, + 13.5182091 + ] + ] + }, + { + "osmId": "25307513", + "name": null, + "lengthMeters": 155.693703735923, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4443962, + 13.5746233 + ], + [ + 52.4443426, + 13.5754514 + ], + [ + 52.4443341, + 13.5755789 + ], + [ + 52.4443217, + 13.5758369 + ], + [ + 52.4443062, + 13.5760867 + ], + [ + 52.4442736, + 13.5765144 + ], + [ + 52.4442628, + 13.5766682 + ], + [ + 52.4442435, + 13.5769065 + ] + ] + }, + { + "osmId": "25307900", + "name": null, + "lengthMeters": 673.593613528986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4471321, + 13.6152959 + ], + [ + 52.4470553, + 13.6156241 + ], + [ + 52.4470097, + 13.6158043 + ], + [ + 52.4469943, + 13.6158562 + ], + [ + 52.4469696, + 13.6159317 + ], + [ + 52.4469386, + 13.6160206 + ], + [ + 52.4468973, + 13.6161289 + ], + [ + 52.4468469, + 13.6162626 + ], + [ + 52.4468206, + 13.6163387 + ], + [ + 52.446797, + 13.6164153 + ], + [ + 52.4467755, + 13.6164973 + ], + [ + 52.4467183, + 13.6167359 + ], + [ + 52.4466973, + 13.6168249 + ], + [ + 52.4466927, + 13.6168446 + ], + [ + 52.4466573, + 13.6169888 + ], + [ + 52.446593, + 13.6172681 + ], + [ + 52.4465812, + 13.6173195 + ], + [ + 52.4465159, + 13.6176054 + ], + [ + 52.4464812, + 13.6177714 + ], + [ + 52.4464484, + 13.6179359 + ], + [ + 52.4464105, + 13.6181434 + ], + [ + 52.4463469, + 13.618482 + ], + [ + 52.4462942, + 13.6187647 + ], + [ + 52.4462409, + 13.6190516 + ], + [ + 52.4462337, + 13.6190923 + ], + [ + 52.4462208, + 13.6191632 + ], + [ + 52.4461902, + 13.6193371 + ], + [ + 52.4461459, + 13.6196328 + ], + [ + 52.4461301, + 13.6197603 + ], + [ + 52.4461256, + 13.6198208 + ], + [ + 52.4461221, + 13.6198964 + ], + [ + 52.4461222, + 13.6199669 + ], + [ + 52.446123, + 13.6200203 + ], + [ + 52.4461249, + 13.6200705 + ], + [ + 52.446129, + 13.6201357 + ], + [ + 52.4461323, + 13.6201674 + ], + [ + 52.4461392, + 13.620231 + ], + [ + 52.4461443, + 13.620266 + ], + [ + 52.4461494, + 13.6202967 + ], + [ + 52.4461733, + 13.6204202 + ], + [ + 52.4461767, + 13.6204389 + ], + [ + 52.4461876, + 13.6204953 + ], + [ + 52.4462034, + 13.620577 + ], + [ + 52.4462586, + 13.6208624 + ], + [ + 52.4462709, + 13.6209258 + ], + [ + 52.446319, + 13.6211749 + ], + [ + 52.4463409, + 13.6212913 + ], + [ + 52.4463843, + 13.6215096 + ], + [ + 52.4464111, + 13.6216427 + ], + [ + 52.4464366, + 13.6217675 + ], + [ + 52.4464568, + 13.6218558 + ], + [ + 52.4464773, + 13.6219362 + ], + [ + 52.4464944, + 13.6220025 + ], + [ + 52.4465075, + 13.6220496 + ], + [ + 52.4465312, + 13.6221347 + ], + [ + 52.4465422, + 13.6221732 + ], + [ + 52.4466314, + 13.6224511 + ], + [ + 52.4466855, + 13.6226223 + ], + [ + 52.4467001, + 13.6226705 + ], + [ + 52.4467104, + 13.6227061 + ], + [ + 52.4467328, + 13.6227921 + ], + [ + 52.4467512, + 13.6228817 + ], + [ + 52.4467623, + 13.6229507 + ], + [ + 52.4467735, + 13.6230489 + ], + [ + 52.4467905, + 13.6232147 + ], + [ + 52.4467954, + 13.6232848 + ], + [ + 52.4468105, + 13.6234973 + ], + [ + 52.4468161, + 13.6235697 + ], + [ + 52.4468215, + 13.6236435 + ], + [ + 52.4468287, + 13.6237546 + ], + [ + 52.4468345, + 13.6238611 + ], + [ + 52.4468379, + 13.6239054 + ], + [ + 52.4468421, + 13.6239409 + ], + [ + 52.4468476, + 13.6239778 + ], + [ + 52.4468543, + 13.6240169 + ], + [ + 52.4468613, + 13.6240501 + ], + [ + 52.4468644, + 13.6240628 + ], + [ + 52.4468857, + 13.6241325 + ], + [ + 52.4468943, + 13.6241551 + ], + [ + 52.446901, + 13.6241689 + ], + [ + 52.4469167, + 13.6241977 + ], + [ + 52.4469318, + 13.6242204 + ], + [ + 52.4469534, + 13.6242459 + ], + [ + 52.4469697, + 13.6242593 + ], + [ + 52.4469945, + 13.6242755 + ], + [ + 52.4470191, + 13.6242884 + ], + [ + 52.4470508, + 13.6242981 + ], + [ + 52.4471165, + 13.6243079 + ], + [ + 52.4471991, + 13.6243201 + ] + ] + }, + { + "osmId": "25307907", + "name": null, + "lengthMeters": 127.10383693572976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4468001, + 13.6257853 + ], + [ + 52.4468037, + 13.6257485 + ], + [ + 52.4468075, + 13.6257126 + ], + [ + 52.4468147, + 13.6256592 + ], + [ + 52.4468242, + 13.6255864 + ], + [ + 52.4468287, + 13.6255406 + ], + [ + 52.4468307, + 13.6255089 + ], + [ + 52.4468321, + 13.6254799 + ], + [ + 52.4468407, + 13.62519 + ], + [ + 52.4468542, + 13.6247764 + ], + [ + 52.4468574, + 13.6246841 + ], + [ + 52.4468597, + 13.6246576 + ], + [ + 52.4468619, + 13.6246342 + ], + [ + 52.4468675, + 13.6245922 + ], + [ + 52.4468716, + 13.6245627 + ], + [ + 52.4468735, + 13.6245517 + ], + [ + 52.4468775, + 13.6245319 + ], + [ + 52.4468836, + 13.6245071 + ], + [ + 52.446891, + 13.6244839 + ], + [ + 52.4468995, + 13.6244634 + ], + [ + 52.446909, + 13.6244422 + ], + [ + 52.4469213, + 13.6244206 + ], + [ + 52.4469348, + 13.6244011 + ], + [ + 52.4469442, + 13.6243907 + ], + [ + 52.446962, + 13.6243747 + ], + [ + 52.4469775, + 13.6243626 + ], + [ + 52.4470013, + 13.624349 + ], + [ + 52.4470241, + 13.624338 + ], + [ + 52.4470455, + 13.62433 + ], + [ + 52.4470614, + 13.6243247 + ], + [ + 52.4470856, + 13.6243206 + ], + [ + 52.447116, + 13.6243188 + ], + [ + 52.4471419, + 13.6243177 + ], + [ + 52.4471685, + 13.6243182 + ], + [ + 52.4471991, + 13.6243201 + ] + ] + }, + { + "osmId": "25341370", + "name": null, + "lengthMeters": 789.2418080415207, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.563019, + 13.5581823 + ], + [ + 52.5634668, + 13.55856 + ], + [ + 52.5641206, + 13.5591789 + ], + [ + 52.5644863, + 13.5595149 + ], + [ + 52.5648082, + 13.5598257 + ], + [ + 52.5653551, + 13.560355 + ], + [ + 52.5658515, + 13.5608184 + ], + [ + 52.5663571, + 13.5613083 + ], + [ + 52.5668098, + 13.5617397 + ], + [ + 52.5674334, + 13.5623259 + ], + [ + 52.5679808, + 13.5627866 + ], + [ + 52.5692223, + 13.5638507 + ] + ] + }, + { + "osmId": "25341372", + "name": null, + "lengthMeters": 193.99570128852986, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5630635, + 13.5580435 + ], + [ + 52.5635156, + 13.5584282 + ], + [ + 52.5645927, + 13.5593512 + ], + [ + 52.5646116, + 13.5593669 + ] + ] + }, + { + "osmId": "25347186", + "name": null, + "lengthMeters": 874.6343919059889, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6179859, + 9.9038712 + ], + [ + 53.6180591, + 9.9038978 + ], + [ + 53.6184427, + 9.9040371 + ], + [ + 53.618474, + 9.9040485 + ], + [ + 53.6186489, + 9.904112 + ], + [ + 53.6195196, + 9.9044346 + ], + [ + 53.6197293, + 9.9045123 + ], + [ + 53.6208279, + 9.9049158 + ], + [ + 53.620865, + 9.9049311 + ], + [ + 53.6219305, + 9.9053242 + ], + [ + 53.6219345, + 9.9053261 + ], + [ + 53.6219557, + 9.9053323 + ], + [ + 53.6220568, + 9.9053702 + ], + [ + 53.622771, + 9.9056362 + ], + [ + 53.6229106, + 9.9056855 + ], + [ + 53.6229828, + 9.9057062 + ], + [ + 53.6233231, + 9.9058168 + ], + [ + 53.6238182, + 9.9059477 + ], + [ + 53.6247937, + 9.9061157 + ], + [ + 53.6248616, + 9.9061279 + ], + [ + 53.6257158, + 9.9061907 + ] + ] + }, + { + "osmId": "25347187", + "name": null, + "lengthMeters": 280.1812074240818, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6075935, + 9.8987882 + ], + [ + 53.6079416, + 9.8992052 + ], + [ + 53.6082774, + 9.8996251 + ], + [ + 53.6089631, + 9.9004523 + ], + [ + 53.6091668, + 9.9006664 + ], + [ + 53.6091849, + 9.9006855 + ], + [ + 53.6093796, + 9.9008616 + ], + [ + 53.6095305, + 9.9009794 + ], + [ + 53.6096839, + 9.9010795 + ], + [ + 53.6097011, + 9.9010892 + ] + ] + }, + { + "osmId": "25349204", + "name": null, + "lengthMeters": 454.5558594284794, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1170628, + 11.5644548 + ], + [ + 48.1169819, + 11.5647172 + ], + [ + 48.1168497, + 11.5652255 + ], + [ + 48.1167408, + 11.5657521 + ], + [ + 48.1167236, + 11.5658604 + ], + [ + 48.1166588, + 11.5662706 + ], + [ + 48.1166475, + 11.5663419 + ], + [ + 48.116581, + 11.566996 + ], + [ + 48.1165518, + 11.5676016 + ], + [ + 48.1165449, + 11.5679405 + ], + [ + 48.1165482, + 11.5682398 + ], + [ + 48.1165742, + 11.5687251 + ], + [ + 48.1166244, + 11.5692146 + ], + [ + 48.1166695, + 11.5695225 + ], + [ + 48.1167202, + 11.5698249 + ], + [ + 48.1168398, + 11.5704131 + ] + ] + }, + { + "osmId": "25353256", + "name": null, + "lengthMeters": 1306.1451726542975, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4914438, + 10.1487941 + ], + [ + 53.4915202, + 10.1483219 + ], + [ + 53.4917168, + 10.1473421 + ], + [ + 53.4921027, + 10.1454016 + ], + [ + 53.4926208, + 10.1428927 + ], + [ + 53.492672, + 10.1426394 + ], + [ + 53.4929498, + 10.1413584 + ], + [ + 53.4931468, + 10.1405456 + ], + [ + 53.4933713, + 10.1397639 + ], + [ + 53.4937204, + 10.1387655 + ], + [ + 53.494171, + 10.1376351 + ], + [ + 53.4952768, + 10.1354151 + ], + [ + 53.4955242, + 10.1349269 + ], + [ + 53.4971027, + 10.1318177 + ] + ] + }, + { + "osmId": "25353296", + "name": null, + "lengthMeters": 2107.4302305181222, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5141184, + 10.0992859 + ], + [ + 53.5143791, + 10.0987665 + ], + [ + 53.514662, + 10.0982028 + ], + [ + 53.5148157, + 10.0978876 + ], + [ + 53.5148748, + 10.0977677 + ], + [ + 53.5149921, + 10.0975294 + ], + [ + 53.515346, + 10.0968138 + ], + [ + 53.5159606, + 10.095571 + ], + [ + 53.5159914, + 10.0955088 + ], + [ + 53.5170692, + 10.0933709 + ], + [ + 53.5174203, + 10.0926807 + ], + [ + 53.5185227, + 10.0905185 + ], + [ + 53.5204873, + 10.0866046 + ], + [ + 53.5236056, + 10.0803596 + ], + [ + 53.5249223, + 10.0777214 + ], + [ + 53.5261816, + 10.075141 + ], + [ + 53.5262962, + 10.0749072 + ], + [ + 53.5263098, + 10.0748794 + ] + ] + }, + { + "osmId": "25353601", + "name": null, + "lengthMeters": 150.09713537792118, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5267446, + 10.0740245 + ], + [ + 53.5273842, + 10.0727891 + ], + [ + 53.5275164, + 10.0725339 + ], + [ + 53.527631, + 10.0723119 + ] + ] + }, + { + "osmId": "25369053", + "name": null, + "lengthMeters": 172.2657339794895, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055621, + 13.3097981 + ], + [ + 52.5055634, + 13.3093901 + ], + [ + 52.5055631, + 13.3092537 + ], + [ + 52.5055594, + 13.3090616 + ], + [ + 52.5055513, + 13.3087281 + ], + [ + 52.5055338, + 13.3083169 + ], + [ + 52.5055101, + 13.307904 + ], + [ + 52.5054858, + 13.307583 + ], + [ + 52.5054572, + 13.307262 + ] + ] + }, + { + "osmId": "25369057", + "name": null, + "lengthMeters": 204.8621215042859, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5031334, + 13.2959016 + ], + [ + 52.5035655, + 13.2978709 + ], + [ + 52.5037443, + 13.2986853 + ], + [ + 52.5037582, + 13.2987489 + ] + ] + }, + { + "osmId": "25375156", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 4511.029788675888, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4571456, + 13.6255978 + ], + [ + 52.4571085, + 13.6266605 + ], + [ + 52.4570612, + 13.6279715 + ], + [ + 52.4569909, + 13.6299222 + ], + [ + 52.4568395, + 13.6339147 + ], + [ + 52.4567542, + 13.6358389 + ], + [ + 52.45673, + 13.6362451 + ], + [ + 52.45664, + 13.6377579 + ], + [ + 52.4565451, + 13.6392542 + ], + [ + 52.4564303, + 13.6407697 + ], + [ + 52.4563111, + 13.6421484 + ], + [ + 52.4561838, + 13.6435109 + ], + [ + 52.4560864, + 13.6444823 + ], + [ + 52.4559107, + 13.6462358 + ], + [ + 52.4553556, + 13.6516907 + ], + [ + 52.4549249, + 13.6559026 + ], + [ + 52.4547696, + 13.6574524 + ], + [ + 52.4546977, + 13.6581699 + ], + [ + 52.4546391, + 13.658738 + ], + [ + 52.4544341, + 13.6607245 + ], + [ + 52.4542824, + 13.6622151 + ], + [ + 52.4531854, + 13.6730654 + ], + [ + 52.453166, + 13.6732573 + ], + [ + 52.4526157, + 13.6786999 + ], + [ + 52.45223, + 13.6825148 + ], + [ + 52.4518459, + 13.6862806 + ], + [ + 52.4517324, + 13.6873763 + ], + [ + 52.45155, + 13.6891298 + ], + [ + 52.4514572, + 13.6899648 + ], + [ + 52.4514265, + 13.6902685 + ], + [ + 52.4513647, + 13.6908783 + ], + [ + 52.4513093, + 13.6914283 + ] + ] + }, + { + "osmId": "25375158", + "name": null, + "lengthMeters": 135.9715488084659, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4574127, + 13.6247846 + ], + [ + 52.4574135, + 13.6247591 + ], + [ + 52.4574183, + 13.6245964 + ], + [ + 52.4574463, + 13.6236545 + ], + [ + 52.4574472, + 13.6236265 + ], + [ + 52.4574629, + 13.6230958 + ], + [ + 52.4574689, + 13.62278 + ] + ] + }, + { + "osmId": "25375344", + "name": null, + "lengthMeters": 1529.135668786109, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5128665, + 13.6181009 + ], + [ + 52.5130485, + 13.6203809 + ], + [ + 52.5130543, + 13.6204536 + ], + [ + 52.5130604, + 13.6205196 + ], + [ + 52.5135219, + 13.6255034 + ], + [ + 52.513978, + 13.6302802 + ], + [ + 52.5149292, + 13.6404417 + ] + ] + }, + { + "osmId": "25376554", + "name": null, + "lengthMeters": 129.61506044951943, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099113, + 13.4512968 + ], + [ + 52.5095481, + 13.4511443 + ], + [ + 52.5090561, + 13.4509192 + ], + [ + 52.5089828, + 13.4508907 + ], + [ + 52.5089059, + 13.4508672 + ], + [ + 52.5088575, + 13.4508514 + ], + [ + 52.5087807, + 13.4508389 + ] + ] + }, + { + "osmId": "25386365", + "name": "Berliner Stadtbahn", + "lengthMeters": 432.6037023520889, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5221607, + 13.3776058 + ], + [ + 52.5220826, + 13.3777313 + ], + [ + 52.5220137, + 13.3778498 + ], + [ + 52.5219532, + 13.3779575 + ], + [ + 52.5219025, + 13.3780602 + ], + [ + 52.5218593, + 13.3781503 + ], + [ + 52.5218129, + 13.3782472 + ], + [ + 52.5217336, + 13.3784463 + ], + [ + 52.5216677, + 13.3786271 + ], + [ + 52.5216169, + 13.378778 + ], + [ + 52.5215624, + 13.3789405 + ], + [ + 52.5215168, + 13.379118 + ], + [ + 52.5214626, + 13.379341 + ], + [ + 52.5214211, + 13.3795508 + ], + [ + 52.5213887, + 13.3797519 + ], + [ + 52.5213654, + 13.3799202 + ], + [ + 52.5213404, + 13.3801446 + ], + [ + 52.521334, + 13.3802496 + ], + [ + 52.5213269, + 13.3803943 + ], + [ + 52.5213229, + 13.3804751 + ], + [ + 52.5213142, + 13.3806979 + ], + [ + 52.5213182, + 13.3809718 + ], + [ + 52.5213305, + 13.3814567 + ], + [ + 52.5213403, + 13.3819148 + ], + [ + 52.5213408, + 13.3819809 + ], + [ + 52.521339, + 13.3821779 + ], + [ + 52.5213314, + 13.3823799 + ], + [ + 52.5213164, + 13.3825922 + ], + [ + 52.5212926, + 13.3828064 + ], + [ + 52.521258, + 13.3830227 + ], + [ + 52.5211898, + 13.3833687 + ], + [ + 52.5211405, + 13.38356 + ] + ] + }, + { + "osmId": "25421451", + "name": null, + "lengthMeters": 357.7953109532217, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5464437, + 13.3754522 + ], + [ + 52.5462173, + 13.3749239 + ], + [ + 52.5457661, + 13.3738579 + ], + [ + 52.5456292, + 13.373534 + ], + [ + 52.5447847, + 13.3715536 + ], + [ + 52.5445964, + 13.3711199 + ] + ] + }, + { + "osmId": "25500724", + "name": "Stettiner Bahn", + "lengthMeters": 1685.2821665347708, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5672943, + 13.4124636 + ], + [ + 52.5673957, + 13.4126378 + ], + [ + 52.5678388, + 13.4134034 + ], + [ + 52.5680817, + 13.4138176 + ], + [ + 52.5683155, + 13.4142301 + ], + [ + 52.5688148, + 13.4150731 + ], + [ + 52.5693084, + 13.415929 + ], + [ + 52.5696813, + 13.416567 + ], + [ + 52.5702413, + 13.4174996 + ], + [ + 52.5702471, + 13.4175095 + ], + [ + 52.5702519, + 13.4175178 + ], + [ + 52.570484, + 13.4178811 + ], + [ + 52.5712879, + 13.4191762 + ], + [ + 52.5722989, + 13.4209033 + ], + [ + 52.5727477, + 13.4216716 + ], + [ + 52.5733236, + 13.4226648 + ], + [ + 52.5740417, + 13.4238997 + ], + [ + 52.5747536, + 13.4251225 + ], + [ + 52.5754919, + 13.4263915 + ], + [ + 52.5757121, + 13.4267517 + ], + [ + 52.5758773, + 13.427022 + ], + [ + 52.5760769, + 13.4273286 + ], + [ + 52.5762763, + 13.4276253 + ], + [ + 52.5767001, + 13.4282173 + ], + [ + 52.576875, + 13.4284568 + ], + [ + 52.5770814, + 13.4287078 + ], + [ + 52.5774614, + 13.4291705 + ], + [ + 52.5778759, + 13.4296209 + ], + [ + 52.5781125, + 13.4298566 + ] + ] + }, + { + "osmId": "25500727", + "name": null, + "lengthMeters": 1560.0677207857332, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.567418, + 13.4124494 + ], + [ + 52.5680462, + 13.413523 + ], + [ + 52.5684049, + 13.4141413 + ], + [ + 52.5693805, + 13.4158242 + ], + [ + 52.5698386, + 13.4166096 + ], + [ + 52.5703038, + 13.4173897 + ], + [ + 52.5713647, + 13.4190905 + ], + [ + 52.5722694, + 13.42063 + ], + [ + 52.5737046, + 13.4231024 + ], + [ + 52.5747915, + 13.4249717 + ], + [ + 52.5752474, + 13.4257428 + ], + [ + 52.5753904, + 13.4259673 + ], + [ + 52.5755024, + 13.4261461 + ], + [ + 52.5760272, + 13.4269251 + ], + [ + 52.5766856, + 13.4279104 + ], + [ + 52.5768628, + 13.4281815 + ], + [ + 52.5772281, + 13.4286916 + ], + [ + 52.5773127, + 13.4287999 + ] + ] + }, + { + "osmId": "25500990", + "name": null, + "lengthMeters": 197.20951071966056, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5670704, + 13.3890012 + ], + [ + 52.5670238, + 13.3890876 + ], + [ + 52.5666223, + 13.389803 + ], + [ + 52.5664595, + 13.3900756 + ], + [ + 52.5662656, + 13.3903873 + ], + [ + 52.5660309, + 13.3907645 + ], + [ + 52.5659614, + 13.3908745 + ], + [ + 52.5659535, + 13.390887 + ], + [ + 52.565843, + 13.3910617 + ], + [ + 52.5658291, + 13.3910838 + ] + ] + }, + { + "osmId": "25500998", + "name": null, + "lengthMeters": 198.5799122349032, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5658876, + 13.3911954 + ], + [ + 52.5660192, + 13.390968 + ], + [ + 52.5660546, + 13.3909069 + ], + [ + 52.5664877, + 13.3901338 + ], + [ + 52.5665977, + 13.3899374 + ], + [ + 52.5670988, + 13.3890364 + ] + ] + }, + { + "osmId": "25501000", + "name": null, + "lengthMeters": 196.51224785667267, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5659677, + 13.3912944 + ], + [ + 52.5663086, + 13.3907083 + ], + [ + 52.5663592, + 13.3906213 + ], + [ + 52.5668506, + 13.389767 + ], + [ + 52.5671803, + 13.3891794 + ] + ] + }, + { + "osmId": "25504102", + "name": null, + "lengthMeters": 536.1276808244435, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5286853, + 10.0190167 + ], + [ + 53.5280601, + 10.0184286 + ], + [ + 53.5280467, + 10.0184158 + ], + [ + 53.5274369, + 10.0178247 + ], + [ + 53.5271403, + 10.0175364 + ], + [ + 53.5269825, + 10.0173835 + ], + [ + 53.5268297, + 10.017231 + ], + [ + 53.5265683, + 10.0169805 + ], + [ + 53.5262949, + 10.016719 + ], + [ + 53.526023, + 10.0164628 + ], + [ + 53.5257375, + 10.0162097 + ], + [ + 53.5252944, + 10.0158529 + ], + [ + 53.5244342, + 10.015204 + ] + ] + }, + { + "osmId": "25542212", + "name": null, + "lengthMeters": 347.9934907696755, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5133368, + 10.0087423 + ], + [ + 53.5134381, + 10.0087823 + ], + [ + 53.5134468, + 10.0087857 + ], + [ + 53.5135755, + 10.0088395 + ], + [ + 53.5139575, + 10.0089897 + ], + [ + 53.5144306, + 10.0091758 + ], + [ + 53.515032, + 10.0094258 + ], + [ + 53.51554, + 10.0096109 + ], + [ + 53.515964, + 10.009741 + ], + [ + 53.5163876, + 10.0099112 + ] + ] + }, + { + "osmId": "25547887", + "name": null, + "lengthMeters": 93.8342950162647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1401022, + 11.558708 + ], + [ + 48.1401957, + 11.5574512 + ] + ] + }, + { + "osmId": "25547903", + "name": null, + "lengthMeters": 94.95639295625571, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1408794, + 11.5588395 + ], + [ + 48.1409725, + 11.5575674 + ] + ] + }, + { + "osmId": "25547925", + "name": null, + "lengthMeters": 93.6196346207102, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1399525, + 11.5586827 + ], + [ + 48.140041, + 11.557428 + ] + ] + }, + { + "osmId": "25569789", + "name": null, + "lengthMeters": 236.88928279093466, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1062481, + 11.4142906 + ], + [ + 48.105787, + 11.4138432 + ], + [ + 48.1055203, + 11.4135925 + ], + [ + 48.1050391, + 11.4131318 + ], + [ + 48.1048248, + 11.4129368 + ], + [ + 48.1048082, + 11.4129228 + ], + [ + 48.1045664, + 11.4127203 + ], + [ + 48.1044482, + 11.4126212 + ], + [ + 48.1044372, + 11.4126119 + ] + ] + }, + { + "osmId": "25594711", + "name": null, + "lengthMeters": 4461.228105789609, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4729092, + 9.8790939 + ], + [ + 53.4728344, + 9.8817621 + ], + [ + 53.4728097, + 9.8826017 + ], + [ + 53.4727626, + 9.8840238 + ], + [ + 53.4726822, + 9.8860671 + ], + [ + 53.472656, + 9.8867506 + ], + [ + 53.4722946, + 9.8960746 + ], + [ + 53.4722931, + 9.8961123 + ], + [ + 53.4721621, + 9.8990225 + ], + [ + 53.4720443, + 9.9020697 + ], + [ + 53.4719067, + 9.9057506 + ], + [ + 53.4716869, + 9.9113777 + ], + [ + 53.4716544, + 9.912332 + ], + [ + 53.4716362, + 9.9136449 + ], + [ + 53.4716324, + 9.9139228 + ], + [ + 53.4716182, + 9.915529 + ], + [ + 53.4716091, + 9.9170646 + ], + [ + 53.4715997, + 9.9180591 + ], + [ + 53.4715958, + 9.9189014 + ], + [ + 53.4715778, + 9.9215263 + ], + [ + 53.4715649, + 9.9234185 + ], + [ + 53.4715397, + 9.9267063 + ], + [ + 53.4715387, + 9.9268406 + ], + [ + 53.4715227, + 9.9289278 + ], + [ + 53.4714742, + 9.9352795 + ], + [ + 53.4714639, + 9.9362733 + ], + [ + 53.4714375, + 9.9388288 + ], + [ + 53.4714975, + 9.941472 + ], + [ + 53.4715174, + 9.9426524 + ], + [ + 53.4715218, + 9.9447425 + ], + [ + 53.471505, + 9.9456968 + ], + [ + 53.471487, + 9.9464256 + ] + ] + }, + { + "osmId": "25610120", + "name": null, + "lengthMeters": 473.6355792880858, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5805818, + 9.8011962 + ], + [ + 53.5807361, + 9.8004632 + ], + [ + 53.5809249, + 9.799362 + ], + [ + 53.5809661, + 9.7991227 + ], + [ + 53.5810087, + 9.7988754 + ], + [ + 53.5810861, + 9.7984051 + ], + [ + 53.5811261, + 9.7980715 + ], + [ + 53.5811559, + 9.7977607 + ], + [ + 53.5811684, + 9.797617 + ], + [ + 53.5811756, + 9.7973439 + ], + [ + 53.5811761, + 9.7969354 + ], + [ + 53.5811763, + 9.7967284 + ], + [ + 53.5811623, + 9.796421 + ], + [ + 53.5811543, + 9.7962158 + ], + [ + 53.5811425, + 9.795915 + ], + [ + 53.5811369, + 9.7957604 + ], + [ + 53.5810714, + 9.7941906 + ], + [ + 53.5810705, + 9.7941678 + ] + ] + }, + { + "osmId": "25630313", + "name": null, + "lengthMeters": 540.2876274023388, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4373518, + 13.2052277 + ], + [ + 52.4370993, + 13.2046029 + ], + [ + 52.4361603, + 13.2022265 + ], + [ + 52.4358347, + 13.2014026 + ], + [ + 52.4352791, + 13.2000058 + ], + [ + 52.4351503, + 13.1996927 + ], + [ + 52.4348933, + 13.199098 + ], + [ + 52.4346619, + 13.1985924 + ] + ] + }, + { + "osmId": "25630317", + "name": null, + "lengthMeters": 539.7713053749967, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4346291, + 13.1986351 + ], + [ + 52.4348853, + 13.1991888 + ], + [ + 52.4350713, + 13.1996169 + ], + [ + 52.4352464, + 13.2000349 + ], + [ + 52.4355383, + 13.2007706 + ], + [ + 52.4358009, + 13.2014323 + ], + [ + 52.4370658, + 13.2046314 + ], + [ + 52.4373184, + 13.2052615 + ] + ] + }, + { + "osmId": "25638090", + "name": null, + "lengthMeters": 1616.4119091380614, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.479919, + 9.929377 + ], + [ + 53.4799525, + 9.929438 + ], + [ + 53.4810617, + 9.9311399 + ], + [ + 53.4814415, + 9.9316728 + ], + [ + 53.482519, + 9.9331846 + ], + [ + 53.4826483, + 9.9333647 + ], + [ + 53.4830705, + 9.9339523 + ], + [ + 53.4844777, + 9.9359112 + ], + [ + 53.4848208, + 9.9363956 + ], + [ + 53.4862674, + 9.9384116 + ], + [ + 53.4863848, + 9.9385774 + ], + [ + 53.4864788, + 9.93871 + ], + [ + 53.4866114, + 9.9388891 + ], + [ + 53.4879564, + 9.9406812 + ], + [ + 53.4883964, + 9.9412041 + ], + [ + 53.4888173, + 9.9416646 + ], + [ + 53.4891443, + 9.9419881 + ], + [ + 53.4893468, + 9.9421879 + ], + [ + 53.4893619, + 9.9422028 + ], + [ + 53.4896732, + 9.9425115 + ], + [ + 53.4907945, + 9.943627 + ], + [ + 53.4914044, + 9.944258 + ] + ] + }, + { + "osmId": "25642349", + "name": null, + "lengthMeters": 248.8595034532565, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791559, + 13.3603517 + ], + [ + 52.4791023, + 13.3605 + ], + [ + 52.4790172, + 13.3607336 + ], + [ + 52.4789303, + 13.3609662 + ], + [ + 52.4787405, + 13.3614523 + ], + [ + 52.4785984, + 13.3617938 + ], + [ + 52.4784528, + 13.3621319 + ], + [ + 52.4783937, + 13.3622632 + ], + [ + 52.4783289, + 13.3624017 + ], + [ + 52.4783264, + 13.3624066 + ], + [ + 52.4782723, + 13.362521 + ], + [ + 52.4782005, + 13.3626599 + ], + [ + 52.4781378, + 13.3627785 + ], + [ + 52.4780434, + 13.3629443 + ], + [ + 52.4779875, + 13.3630409 + ], + [ + 52.4779031, + 13.3631738 + ], + [ + 52.4778264, + 13.3632901 + ] + ] + }, + { + "osmId": "25642351", + "name": null, + "lengthMeters": 442.95959512978754, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4794995, + 13.3537132 + ], + [ + 52.4795609, + 13.3540871 + ], + [ + 52.4796079, + 13.3544319 + ], + [ + 52.4796509, + 13.3547766 + ], + [ + 52.4796835, + 13.3551262 + ], + [ + 52.4797169, + 13.3555858 + ], + [ + 52.4797416, + 13.3560059 + ], + [ + 52.4797538, + 13.3566201 + ], + [ + 52.4797527, + 13.356896 + ], + [ + 52.4797472, + 13.3572003 + ], + [ + 52.4797285, + 13.3575047 + ], + [ + 52.4797044, + 13.3577764 + ], + [ + 52.4796698, + 13.3580467 + ], + [ + 52.4795804, + 13.3585614 + ], + [ + 52.479514, + 13.358852 + ], + [ + 52.4794405, + 13.3591269 + ], + [ + 52.4793701, + 13.3593716 + ], + [ + 52.479244, + 13.3597474 + ], + [ + 52.4791558, + 13.3600077 + ], + [ + 52.4791521, + 13.3600212 + ] + ] + }, + { + "osmId": "25750710", + "name": null, + "lengthMeters": 211.23903759861872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367812, + 13.3485892 + ], + [ + 52.5367681, + 13.3483964 + ], + [ + 52.5367602, + 13.3482721 + ], + [ + 52.5367204, + 13.3477932 + ], + [ + 52.5366777, + 13.3473335 + ], + [ + 52.5366431, + 13.3469923 + ], + [ + 52.5365722, + 13.3462556 + ], + [ + 52.5365359, + 13.3458815 + ], + [ + 52.5364912, + 13.3455033 + ] + ] + }, + { + "osmId": "25765391", + "name": null, + "lengthMeters": 124.16413862482, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5883057, + 9.9210472 + ], + [ + 53.5875906, + 9.922492 + ] + ] + }, + { + "osmId": "25776213", + "name": "Hafenbahn", + "lengthMeters": 536.246540182759, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4960548, + 9.9075678 + ], + [ + 53.4965963, + 9.9078824 + ], + [ + 53.4971111, + 9.9081574 + ], + [ + 53.4972338, + 9.9082174 + ], + [ + 53.4972457, + 9.9082232 + ], + [ + 53.4975978, + 9.9083953 + ], + [ + 53.4980749, + 9.908604 + ], + [ + 53.500096, + 9.9094882 + ], + [ + 53.5006971, + 9.9097519 + ] + ] + }, + { + "osmId": "25796573", + "name": null, + "lengthMeters": 415.4809809331688, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4930001, + 13.5193688 + ], + [ + 52.4936396, + 13.521968 + ], + [ + 52.4938105, + 13.5226806 + ], + [ + 52.4941573, + 13.524205 + ], + [ + 52.4943633, + 13.5250824 + ] + ] + }, + { + "osmId": "25817242", + "name": null, + "lengthMeters": 1557.217836698813, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5336793, + 13.3253128 + ], + [ + 52.5338556, + 13.3265036 + ], + [ + 52.5339096, + 13.326884 + ], + [ + 52.5340766, + 13.3280615 + ], + [ + 52.5341571, + 13.3286822 + ], + [ + 52.5342533, + 13.3294232 + ], + [ + 52.534257, + 13.3294538 + ], + [ + 52.5345063, + 13.3314981 + ], + [ + 52.5348739, + 13.3344626 + ], + [ + 52.5349514, + 13.3351007 + ], + [ + 52.5352516, + 13.3375724 + ], + [ + 52.5352558, + 13.3376062 + ], + [ + 52.5352755, + 13.3377634 + ], + [ + 52.5355618, + 13.3401172 + ], + [ + 52.535576, + 13.3402514 + ], + [ + 52.5357774, + 13.3421064 + ], + [ + 52.5358128, + 13.3424441 + ], + [ + 52.5358867, + 13.3431845 + ], + [ + 52.5358968, + 13.3432699 + ], + [ + 52.5359686, + 13.3439982 + ], + [ + 52.5362023, + 13.3461909 + ], + [ + 52.5362168, + 13.3463341 + ], + [ + 52.5363759, + 13.3479001 + ] + ] + }, + { + "osmId": "25832049", + "name": null, + "lengthMeters": 204.9766248401237, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.590541, + 10.0063327 + ], + [ + 53.5906335, + 10.0094345 + ] + ] + }, + { + "osmId": "25834125", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1326.1490430400322, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4339044, + 10.0158284 + ], + [ + 53.4338995, + 10.0158295 + ], + [ + 53.4336108, + 10.0158989 + ], + [ + 53.4332857, + 10.01596 + ], + [ + 53.4328828, + 10.0160317 + ], + [ + 53.4320453, + 10.0161726 + ], + [ + 53.4301983, + 10.0165103 + ], + [ + 53.4289707, + 10.0167117 + ], + [ + 53.4283253, + 10.0168039 + ], + [ + 53.4278232, + 10.0168756 + ], + [ + 53.4264137, + 10.0171159 + ], + [ + 53.4255495, + 10.017253 + ], + [ + 53.4250933, + 10.0173253 + ], + [ + 53.4238788, + 10.0175288 + ], + [ + 53.4220392, + 10.0178441 + ] + ] + }, + { + "osmId": "25834481", + "name": "Berliner Stadtbahn", + "lengthMeters": 77.13743340354495, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5147049, + 13.3367125 + ], + [ + 52.5148481, + 13.3367828 + ], + [ + 52.5148579, + 13.336788 + ], + [ + 52.5149693, + 13.3368472 + ], + [ + 52.5150764, + 13.3369087 + ], + [ + 52.5151497, + 13.3369536 + ], + [ + 52.5152035, + 13.3369866 + ], + [ + 52.5153581, + 13.3370937 + ] + ] + }, + { + "osmId": "25871545", + "name": null, + "lengthMeters": 855.7253496860225, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5874145, + 13.3518579 + ], + [ + 52.5867066, + 13.3531557 + ], + [ + 52.5858639, + 13.354689 + ], + [ + 52.585299, + 13.3557173 + ], + [ + 52.584631, + 13.3569162 + ], + [ + 52.5841029, + 13.357817 + ], + [ + 52.5840018, + 13.3579954 + ], + [ + 52.5838704, + 13.3582243 + ], + [ + 52.5836685, + 13.3585902 + ], + [ + 52.5832552, + 13.359338 + ], + [ + 52.5829574, + 13.3598542 + ], + [ + 52.5821909, + 13.3611575 + ] + ] + }, + { + "osmId": "25871555", + "name": null, + "lengthMeters": 112.32838850843736, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5900152, + 13.3472262 + ], + [ + 52.5900793, + 13.3471046 + ], + [ + 52.5906898, + 13.3459885 + ] + ] + }, + { + "osmId": "25880993", + "name": null, + "lengthMeters": 597.2392825469241, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1695598, + 11.6455984 + ], + [ + 48.1695814, + 11.6455929 + ], + [ + 48.1699815, + 11.6455067 + ], + [ + 48.1701029, + 11.6454812 + ], + [ + 48.1703989, + 11.6454309 + ], + [ + 48.1706211, + 11.6453992 + ], + [ + 48.1707973, + 11.6453817 + ], + [ + 48.1711069, + 11.6453689 + ], + [ + 48.1718816, + 11.6453667 + ], + [ + 48.1727701, + 11.6453573 + ], + [ + 48.1739142, + 11.6453432 + ], + [ + 48.1746401, + 11.6453343 + ], + [ + 48.1749218, + 11.6453308 + ] + ] + }, + { + "osmId": "25881948", + "name": "Altonaer Hafenbahn", + "lengthMeters": 83.12095473485826, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5451421, + 9.9314262 + ], + [ + 53.5451749, + 9.9317707 + ], + [ + 53.5451811, + 9.9318254 + ], + [ + 53.5451974, + 9.9319704 + ], + [ + 53.5452108, + 9.9320563 + ], + [ + 53.5453139, + 9.9326485 + ] + ] + }, + { + "osmId": "25881951", + "name": "Schellfischtunnel", + "lengthMeters": 981.9510132795297, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5453139, + 9.9326485 + ], + [ + 53.5453517, + 9.9328061 + ], + [ + 53.5456546, + 9.9338603 + ], + [ + 53.545738, + 9.9341139 + ], + [ + 53.5459635, + 9.9346859 + ], + [ + 53.5461007, + 9.9350452 + ], + [ + 53.5461963, + 9.935263 + ], + [ + 53.5462771, + 9.9354174 + ], + [ + 53.5464017, + 9.9356105 + ], + [ + 53.5465199, + 9.9357725 + ], + [ + 53.5466412, + 9.9359077 + ], + [ + 53.5467887, + 9.9360174 + ], + [ + 53.5469257, + 9.936077 + ], + [ + 53.547041, + 9.9361148 + ], + [ + 53.5471982, + 9.936148 + ], + [ + 53.5473693, + 9.9361745 + ], + [ + 53.5474869, + 9.9361822 + ], + [ + 53.5476804, + 9.9361752 + ], + [ + 53.54839, + 9.9360668 + ], + [ + 53.5496024, + 9.9360489 + ], + [ + 53.5508801, + 9.9360586 + ], + [ + 53.551178, + 9.9360901 + ], + [ + 53.5514927, + 9.9361085 + ], + [ + 53.5516897, + 9.9360977 + ], + [ + 53.5517916, + 9.9360826 + ], + [ + 53.5522201, + 9.9359906 + ], + [ + 53.5525201, + 9.9359034 + ], + [ + 53.5527614, + 9.9358201 + ], + [ + 53.5530501, + 9.9357756 + ] + ] + }, + { + "osmId": "25903940", + "name": null, + "lengthMeters": 600.4350730976495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6744915, + 10.0167746 + ], + [ + 53.6741848, + 10.0171196 + ], + [ + 53.6740389, + 10.0172634 + ], + [ + 53.6738387, + 10.0174348 + ], + [ + 53.6735091, + 10.0176698 + ], + [ + 53.6726529, + 10.0180666 + ], + [ + 53.6698304, + 10.0193209 + ], + [ + 53.6693706, + 10.0195119 + ] + ] + }, + { + "osmId": "25904016", + "name": null, + "lengthMeters": 823.2383408003881, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6828099, + 9.9861733 + ], + [ + 53.6826931, + 9.9861925 + ], + [ + 53.6823382, + 9.9862423 + ], + [ + 53.6820676, + 9.986342 + ], + [ + 53.6818179, + 9.9864653 + ], + [ + 53.6815243, + 9.9866668 + ], + [ + 53.6811157, + 9.9870206 + ], + [ + 53.6806724, + 9.9874535 + ], + [ + 53.6802243, + 9.9879099 + ], + [ + 53.6801482, + 9.9879796 + ], + [ + 53.6800384, + 9.98808 + ], + [ + 53.6796876, + 9.9884211 + ], + [ + 53.6794538, + 9.9886923 + ], + [ + 53.6792395, + 9.9889942 + ], + [ + 53.6790348, + 9.9893582 + ], + [ + 53.6787621, + 9.9899892 + ], + [ + 53.6785603, + 9.9906405 + ], + [ + 53.6784673, + 9.9910169 + ], + [ + 53.6782494, + 9.9918986 + ], + [ + 53.6782133, + 9.9920445 + ], + [ + 53.6779231, + 9.9932015 + ], + [ + 53.677712, + 9.9940803 + ] + ] + }, + { + "osmId": "25908523", + "name": null, + "lengthMeters": 119.77098906451572, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6506942, + 10.0171086 + ], + [ + 53.6503732, + 10.0171214 + ], + [ + 53.6502031, + 10.0171399 + ], + [ + 53.6499783, + 10.0171541 + ], + [ + 53.6497893, + 10.017163 + ], + [ + 53.649618, + 10.0171787 + ] + ] + }, + { + "osmId": "25908525", + "name": null, + "lengthMeters": 222.30656020416055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.649618, + 10.0171787 + ], + [ + 53.6488417, + 10.0171284 + ], + [ + 53.6486116, + 10.0171196 + ], + [ + 53.648214, + 10.0171306 + ], + [ + 53.6476691, + 10.0171643 + ], + [ + 53.6476198, + 10.0171642 + ] + ] + }, + { + "osmId": "25943323", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1158.0174353286864, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4097974, + 10.0125608 + ], + [ + 53.4096746, + 10.0122865 + ], + [ + 53.4091923, + 10.0112088 + ], + [ + 53.4089634, + 10.0106451 + ], + [ + 53.408707, + 10.0099427 + ], + [ + 53.4083233, + 10.0086816 + ], + [ + 53.4081558, + 10.0080402 + ], + [ + 53.4079685, + 10.0072234 + ], + [ + 53.4077906, + 10.0063399 + ], + [ + 53.4076354, + 10.0053632 + ], + [ + 53.407586, + 10.0050525 + ], + [ + 53.4074496, + 10.0036297 + ], + [ + 53.4073777, + 10.0023846 + ], + [ + 53.4073823, + 10.0009788 + ], + [ + 53.4074037, + 10.0006095 + ], + [ + 53.4074558, + 9.9995341 + ], + [ + 53.4075782, + 9.9983553 + ], + [ + 53.4078871, + 9.9961417 + ] + ] + }, + { + "osmId": "25946656", + "name": "Berliner Stadtbahn", + "lengthMeters": 105.2910412997466, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5207945, + 13.3845954 + ], + [ + 52.5205804, + 13.3851484 + ], + [ + 52.5204662, + 13.3854489 + ], + [ + 52.5204359, + 13.3855286 + ], + [ + 52.5204332, + 13.3855367 + ], + [ + 52.5203036, + 13.3859254 + ] + ] + }, + { + "osmId": "25946657", + "name": "Berliner Stadtbahn", + "lengthMeters": 154.7480005400968, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5203036, + 13.3859254 + ], + [ + 52.5202137, + 13.3862095 + ], + [ + 52.5201381, + 13.3864909 + ], + [ + 52.5200215, + 13.3870305 + ], + [ + 52.5200007, + 13.3871558 + ], + [ + 52.5199684, + 13.3873508 + ], + [ + 52.519966, + 13.3873653 + ], + [ + 52.5199322, + 13.3877191 + ], + [ + 52.5199222, + 13.3880553 + ], + [ + 52.5199209, + 13.3881002 + ] + ] + }, + { + "osmId": "25946658", + "name": "Berliner Stadtbahn", + "lengthMeters": 96.00715267344515, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520911, + 13.3848292 + ], + [ + 52.5207643, + 13.3854127 + ], + [ + 52.5207353, + 13.3855238 + ], + [ + 52.5206093, + 13.3860064 + ], + [ + 52.5205753, + 13.3861365 + ] + ] + }, + { + "osmId": "25946659", + "name": "Berliner Stadtbahn", + "lengthMeters": 164.51973364770396, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210273, + 13.4121942 + ], + [ + 52.5210459, + 13.4121726 + ], + [ + 52.5210594, + 13.4121565 + ], + [ + 52.5211228, + 13.4120833 + ], + [ + 52.5211472, + 13.412053 + ], + [ + 52.5211926, + 13.411989 + ], + [ + 52.5211993, + 13.4119785 + ], + [ + 52.5212462, + 13.4119046 + ], + [ + 52.5215799, + 13.4113785 + ], + [ + 52.5219937, + 13.4107212 + ], + [ + 52.5220733, + 13.4105947 + ], + [ + 52.5220936, + 13.4105625 + ], + [ + 52.5221073, + 13.410536 + ] + ] + }, + { + "osmId": "25946663", + "name": "Berliner Stadtbahn", + "lengthMeters": 132.11220603941678, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5202834, + 13.388111 + ], + [ + 52.5204539, + 13.3872713 + ], + [ + 52.5206558, + 13.3863256 + ], + [ + 52.5206689, + 13.3862641 + ] + ] + }, + { + "osmId": "25946664", + "name": "Berliner Stadtbahn", + "lengthMeters": 85.28004996149312, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201668, + 13.3917792 + ], + [ + 52.5201264, + 13.3911547 + ], + [ + 52.5201062, + 13.3908632 + ], + [ + 52.5200861, + 13.3905258 + ] + ] + }, + { + "osmId": "25946668", + "name": "Berliner Stadtbahn", + "lengthMeters": 139.51684120651475, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201292, + 13.3880832 + ], + [ + 52.5201754, + 13.387799 + ], + [ + 52.5201866, + 13.38773 + ], + [ + 52.5202496, + 13.387348 + ], + [ + 52.5202843, + 13.3871663 + ], + [ + 52.520329, + 13.3869435 + ], + [ + 52.5203954, + 13.3866199 + ], + [ + 52.520415, + 13.3865359 + ], + [ + 52.5204903, + 13.3862513 + ], + [ + 52.5205156, + 13.3861558 + ], + [ + 52.5205228, + 13.3861286 + ] + ] + }, + { + "osmId": "25946674", + "name": "Berliner Stadtbahn", + "lengthMeters": 91.59787167098142, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199315, + 13.3887137 + ], + [ + 52.5199561, + 13.3890919 + ], + [ + 52.5199817, + 13.3894936 + ], + [ + 52.5200242, + 13.3900345 + ], + [ + 52.5200251, + 13.3900586 + ] + ] + }, + { + "osmId": "25946676", + "name": "Berliner Stadtbahn", + "lengthMeters": 84.9709200237937, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5200495, + 13.3905358 + ], + [ + 52.5200711, + 13.3908686 + ], + [ + 52.5200916, + 13.3911627 + ], + [ + 52.520132, + 13.3917843 + ] + ] + }, + { + "osmId": "25946678", + "name": "Berliner Stadtbahn", + "lengthMeters": 82.00244210572602, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201281, + 13.390038 + ], + [ + 52.5201258, + 13.3897829 + ], + [ + 52.5201287, + 13.3895415 + ], + [ + 52.5201387, + 13.3892793 + ], + [ + 52.5201733, + 13.3888302 + ] + ] + }, + { + "osmId": "25946680", + "name": "Berliner Stadtbahn", + "lengthMeters": 164.73217803308546, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201609, + 13.3922079 + ], + [ + 52.5201912, + 13.392521 + ], + [ + 52.5202306, + 13.392799 + ], + [ + 52.5202953, + 13.3931547 + ], + [ + 52.5203891, + 13.3935228 + ], + [ + 52.5204937, + 13.3938811 + ], + [ + 52.5204996, + 13.3938964 + ], + [ + 52.5205078, + 13.393916 + ], + [ + 52.5206217, + 13.3941869 + ], + [ + 52.5207161, + 13.3943903 + ], + [ + 52.5207298, + 13.3944203 + ] + ] + }, + { + "osmId": "25946682", + "name": "Berliner Stadtbahn", + "lengthMeters": 160.02401466748807, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5202303, + 13.3921965 + ], + [ + 52.5202589, + 13.3924967 + ], + [ + 52.5202945, + 13.3927622 + ], + [ + 52.5203573, + 13.3931066 + ], + [ + 52.5204502, + 13.3934665 + ], + [ + 52.5205588, + 13.3938128 + ], + [ + 52.5206314, + 13.3939962 + ], + [ + 52.5206372, + 13.3940107 + ], + [ + 52.5206791, + 13.3941165 + ], + [ + 52.5207852, + 13.3943444 + ] + ] + }, + { + "osmId": "25946685", + "name": "Berliner Stadtbahn", + "lengthMeters": 85.84550490292516, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5202364, + 13.3917689 + ], + [ + 52.520196, + 13.3911385 + ], + [ + 52.5201859, + 13.3909898 + ], + [ + 52.5201765, + 13.3908523 + ], + [ + 52.5201512, + 13.3905079 + ] + ] + }, + { + "osmId": "25953292", + "name": null, + "lengthMeters": 127.50539567620626, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5906335, + 10.0094345 + ], + [ + 53.5906919, + 10.0113639 + ] + ] + }, + { + "osmId": "25957881", + "name": null, + "lengthMeters": 125.73682889653537, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5244221, + 13.4175347 + ], + [ + 52.5244129, + 13.4175103 + ], + [ + 52.5243972, + 13.4174685 + ], + [ + 52.5243779, + 13.4174317 + ], + [ + 52.5243375, + 13.417364 + ], + [ + 52.5237908, + 13.4166841 + ], + [ + 52.5235431, + 13.4163761 + ] + ] + }, + { + "osmId": "25974954", + "name": "Kremmener Bahn", + "lengthMeters": 1029.4214978524844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.574931, + 13.3755681 + ], + [ + 52.5753339, + 13.3748939 + ], + [ + 52.575563, + 13.3744258 + ], + [ + 52.5757505, + 13.3739181 + ], + [ + 52.5759148, + 13.3733927 + ], + [ + 52.5759712, + 13.3731871 + ], + [ + 52.5760479, + 13.3728755 + ], + [ + 52.5761287, + 13.3724339 + ], + [ + 52.5761851, + 13.3720175 + ], + [ + 52.5762317, + 13.3715608 + ], + [ + 52.5762557, + 13.3710851 + ], + [ + 52.5762868, + 13.3701206 + ], + [ + 52.5763379, + 13.3686761 + ], + [ + 52.5763606, + 13.3678979 + ], + [ + 52.5764978, + 13.3643963 + ], + [ + 52.5765259, + 13.3637571 + ], + [ + 52.576527, + 13.3637356 + ], + [ + 52.5765692, + 13.3630902 + ], + [ + 52.5766589, + 13.362085 + ], + [ + 52.5767658, + 13.3610152 + ] + ] + }, + { + "osmId": "25974956", + "name": null, + "lengthMeters": 147.25923717703813, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5749238, + 13.3752841 + ], + [ + 52.5751026, + 13.3749542 + ], + [ + 52.5752781, + 13.3746169 + ], + [ + 52.575763, + 13.3735993 + ] + ] + }, + { + "osmId": "25974958", + "name": "Kremmener Bahn", + "lengthMeters": 483.41165787651505, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.574919, + 13.3750697 + ], + [ + 52.5753314, + 13.3743467 + ], + [ + 52.5754343, + 13.3741493 + ], + [ + 52.575519, + 13.3739866 + ], + [ + 52.5756906, + 13.3736067 + ], + [ + 52.5758022, + 13.3733142 + ], + [ + 52.5758872, + 13.3730549 + ], + [ + 52.5759565, + 13.3727883 + ], + [ + 52.576046, + 13.3723876 + ], + [ + 52.576116, + 13.3719929 + ], + [ + 52.5761717, + 13.3715502 + ], + [ + 52.5762086, + 13.3710806 + ], + [ + 52.5762178, + 13.3707953 + ], + [ + 52.57624, + 13.3701029 + ], + [ + 52.5762951, + 13.3685637 + ] + ] + }, + { + "osmId": "25974960", + "name": null, + "lengthMeters": 259.3972084027346, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5747414, + 13.3751677 + ], + [ + 52.5744603, + 13.3756792 + ], + [ + 52.574298, + 13.3759734 + ], + [ + 52.5741161, + 13.3763031 + ], + [ + 52.5738143, + 13.3768507 + ], + [ + 52.5732324, + 13.3779094 + ], + [ + 52.5732122, + 13.3779483 + ], + [ + 52.5731772, + 13.3780154 + ] + ] + }, + { + "osmId": "25982204", + "name": null, + "lengthMeters": 215.14092094652432, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469823, + 13.3888836 + ], + [ + 52.4700209, + 13.3880275 + ], + [ + 52.4701085, + 13.3876486 + ], + [ + 52.4702991, + 13.386834 + ], + [ + 52.4705018, + 13.3859095 + ] + ] + }, + { + "osmId": "25982206", + "name": null, + "lengthMeters": 235.18158489313979, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4790804, + 13.3512898 + ], + [ + 52.4789633, + 13.3506897 + ], + [ + 52.4788378, + 13.350137 + ], + [ + 52.47871, + 13.349602 + ], + [ + 52.4785031, + 13.3487239 + ], + [ + 52.4783355, + 13.3480408 + ] + ] + }, + { + "osmId": "25982209", + "name": null, + "lengthMeters": 446.242997148579, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791908, + 13.3600274 + ], + [ + 52.4792756, + 13.3597747 + ], + [ + 52.4793751, + 13.3594702 + ], + [ + 52.4794509, + 13.3592221 + ], + [ + 52.4795059, + 13.3590256 + ], + [ + 52.4795609, + 13.3588123 + ], + [ + 52.4795959, + 13.3586638 + ], + [ + 52.4796289, + 13.3585068 + ], + [ + 52.4796618, + 13.3583326 + ], + [ + 52.4796897, + 13.3581706 + ], + [ + 52.479714, + 13.358007 + ], + [ + 52.4797353, + 13.3578323 + ], + [ + 52.4797518, + 13.3576714 + ], + [ + 52.4797651, + 13.3575122 + ], + [ + 52.4797777, + 13.357294 + ], + [ + 52.4797856, + 13.3570963 + ], + [ + 52.4797888, + 13.3568926 + ], + [ + 52.4797895, + 13.3565763 + ], + [ + 52.4797833, + 13.3562904 + ], + [ + 52.4797745, + 13.3560139 + ], + [ + 52.4797579, + 13.355658 + ], + [ + 52.4797403, + 13.3553864 + ], + [ + 52.4797207, + 13.3551344 + ], + [ + 52.4796905, + 13.3548186 + ], + [ + 52.4796536, + 13.3544846 + ], + [ + 52.4796267, + 13.3542745 + ], + [ + 52.4795925, + 13.3540337 + ], + [ + 52.4795346, + 13.3536681 + ] + ] + }, + { + "osmId": "25982212", + "name": null, + "lengthMeters": 323.94890688834073, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4797677, + 13.3582021 + ], + [ + 52.4797706, + 13.3581849 + ], + [ + 52.4797997, + 13.3579852 + ], + [ + 52.4798282, + 13.3577518 + ], + [ + 52.4798479, + 13.3575349 + ], + [ + 52.4798598, + 13.3573685 + ], + [ + 52.4798681, + 13.3572064 + ], + [ + 52.4798736, + 13.3569717 + ], + [ + 52.4798725, + 13.3567335 + ], + [ + 52.4798655, + 13.3564485 + ], + [ + 52.479854, + 13.3561085 + ], + [ + 52.4798391, + 13.3557247 + ], + [ + 52.4798131, + 13.3550986 + ], + [ + 52.4797951, + 13.3546396 + ], + [ + 52.4797808, + 13.3542892 + ], + [ + 52.4797735, + 13.3541415 + ], + [ + 52.4797586, + 13.3539242 + ], + [ + 52.4797462, + 13.3537827 + ], + [ + 52.4797298, + 13.3536151 + ], + [ + 52.4797098, + 13.3534472 + ] + ] + }, + { + "osmId": "25982725", + "name": null, + "lengthMeters": 332.95162869928214, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4761629, + 13.348221 + ], + [ + 52.4777124, + 13.3501356 + ], + [ + 52.4785623, + 13.3511619 + ] + ] + }, + { + "osmId": "25982730", + "name": null, + "lengthMeters": 108.86252341213223, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4800149, + 13.3528847 + ], + [ + 52.4802182, + 13.3531284 + ], + [ + 52.4807152, + 13.3537537 + ], + [ + 52.4807942, + 13.3538575 + ] + ] + }, + { + "osmId": "25983302", + "name": null, + "lengthMeters": 167.7907883593063, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4736663, + 13.3669728 + ], + [ + 52.4738343, + 13.3668213 + ], + [ + 52.4740086, + 13.3666809 + ], + [ + 52.474203, + 13.3665393 + ], + [ + 52.4743295, + 13.366458 + ], + [ + 52.4744768, + 13.3663714 + ], + [ + 52.4745638, + 13.3663263 + ], + [ + 52.4747018, + 13.3662549 + ], + [ + 52.4749877, + 13.3661164 + ], + [ + 52.4750693, + 13.3660826 + ] + ] + }, + { + "osmId": "25983304", + "name": null, + "lengthMeters": 235.4048371334762, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.47808, + 13.3632939 + ], + [ + 52.4781688, + 13.3631063 + ], + [ + 52.4782572, + 13.3629148 + ], + [ + 52.4783744, + 13.3626444 + ], + [ + 52.4785039, + 13.362327 + ], + [ + 52.4785476, + 13.3622164 + ], + [ + 52.478633, + 13.3619881 + ], + [ + 52.4787207, + 13.3617449 + ], + [ + 52.4788891, + 13.3612646 + ], + [ + 52.4791701, + 13.3604567 + ], + [ + 52.479206, + 13.3603554 + ] + ] + }, + { + "osmId": "26005203", + "name": "Anhalter Bahn", + "lengthMeters": 158.42350385144528, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.388998, + 13.300131 + ], + [ + 52.3893883, + 13.3002934 + ], + [ + 52.3901596, + 13.3006141 + ], + [ + 52.390379, + 13.300705 + ] + ] + }, + { + "osmId": "26005540", + "name": "Anhalter Bahn", + "lengthMeters": 986.8752104152409, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3989905, + 13.3042336 + ], + [ + 52.3979607, + 13.3038041 + ], + [ + 52.3973699, + 13.3035521 + ], + [ + 52.3956888, + 13.3028095 + ], + [ + 52.3950965, + 13.3025478 + ], + [ + 52.3946174, + 13.3023412 + ], + [ + 52.393946, + 13.3020587 + ], + [ + 52.3923269, + 13.3013882 + ], + [ + 52.391929, + 13.3012233 + ], + [ + 52.3903985, + 13.3005902 + ] + ] + }, + { + "osmId": "26005542", + "name": "Anhalter Bahn", + "lengthMeters": 639.3849095005871, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4046716, + 13.3065944 + ], + [ + 52.4043768, + 13.3064747 + ], + [ + 52.404033, + 13.3063326 + ], + [ + 52.4037453, + 13.3062101 + ], + [ + 52.4026781, + 13.3057673 + ], + [ + 52.4008431, + 13.3050021 + ], + [ + 52.3991969, + 13.3043206 + ], + [ + 52.3990977, + 13.3042791 + ] + ] + }, + { + "osmId": "26026180", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 245.04218387737615, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5820918, + 10.0546852 + ], + [ + 53.5816288, + 10.0551 + ], + [ + 53.58135, + 10.0553024 + ], + [ + 53.5809547, + 10.0555689 + ], + [ + 53.5800972, + 10.0561475 + ], + [ + 53.5800729, + 10.0561639 + ] + ] + }, + { + "osmId": "26026231", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 85.81013160954522, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5861542, + 10.048812 + ], + [ + 53.5855887, + 10.0496966 + ] + ] + }, + { + "osmId": "26026234", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 158.4999015669439, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5854331, + 10.049941 + ], + [ + 53.5847991, + 10.0509339 + ], + [ + 53.5843915, + 10.0515802 + ] + ] + }, + { + "osmId": "26026236", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 151.3722432020859, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5842564, + 10.0517859 + ], + [ + 53.5837648, + 10.0525614 + ], + [ + 53.5832498, + 10.0533294 + ] + ] + }, + { + "osmId": "26026238", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 102.13793140681432, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5830583, + 10.0535861 + ], + [ + 53.5823053, + 10.0544722 + ] + ] + }, + { + "osmId": "26026240", + "name": null, + "lengthMeters": 154.07975501818834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5832045, + 10.0532199 + ], + [ + 53.5837515, + 10.052414 + ], + [ + 53.5842304, + 10.0516515 + ] + ] + }, + { + "osmId": "26026244", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 421.3694231902383, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5797019, + 10.0564297 + ], + [ + 53.5792478, + 10.0567392 + ], + [ + 53.5786163, + 10.0571432 + ], + [ + 53.5781118, + 10.0573408 + ], + [ + 53.5776548, + 10.0574832 + ], + [ + 53.577198, + 10.0575675 + ], + [ + 53.5770074, + 10.0575931 + ], + [ + 53.5760653, + 10.0576399 + ], + [ + 53.5760172, + 10.0576418 + ] + ] + }, + { + "osmId": "26026246", + "name": null, + "lengthMeters": 242.08622205548065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5800636, + 10.0560463 + ], + [ + 53.5809952, + 10.055425 + ], + [ + 53.5815974, + 10.0549841 + ], + [ + 53.5820576, + 10.0545816 + ] + ] + }, + { + "osmId": "26026250", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 111.97089691015675, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.575822, + 10.0576494 + ], + [ + 53.5757378, + 10.0576527 + ], + [ + 53.5752485, + 10.0576593 + ], + [ + 53.5752182, + 10.0576626 + ], + [ + 53.5748157, + 10.0576989 + ] + ] + }, + { + "osmId": "26026252", + "name": null, + "lengthMeters": 223.4688459437109, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5760021, + 10.0575191 + ], + [ + 53.5760608, + 10.0575167 + ], + [ + 53.57617, + 10.0575113 + ], + [ + 53.5766186, + 10.0574891 + ], + [ + 53.5766862, + 10.0574909 + ], + [ + 53.5768679, + 10.0574747 + ], + [ + 53.5772164, + 10.0574436 + ], + [ + 53.5773157, + 10.0574251 + ], + [ + 53.5773612, + 10.0574166 + ], + [ + 53.5774195, + 10.0574057 + ], + [ + 53.5775638, + 10.0573788 + ], + [ + 53.5778746, + 10.0572929 + ], + [ + 53.577909, + 10.0572834 + ], + [ + 53.5779185, + 10.05728 + ], + [ + 53.578002, + 10.0572503 + ] + ] + }, + { + "osmId": "26066307", + "name": null, + "lengthMeters": 81.34763673668944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4871834, + 13.2591532 + ], + [ + 52.4873425, + 13.2593794 + ], + [ + 52.4875431, + 13.2596578 + ], + [ + 52.4877309, + 13.2599495 + ] + ] + }, + { + "osmId": "26066309", + "name": null, + "lengthMeters": 320.8573908666992, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4856681, + 13.2572611 + ], + [ + 52.4855243, + 13.2570788 + ], + [ + 52.4853797, + 13.2569042 + ], + [ + 52.4850853, + 13.256571 + ], + [ + 52.4848008, + 13.2562857 + ], + [ + 52.4845718, + 13.2560835 + ], + [ + 52.4843968, + 13.2559305 + ], + [ + 52.4839463, + 13.2555859 + ], + [ + 52.483442, + 13.2552335 + ], + [ + 52.4832595, + 13.2551037 + ], + [ + 52.483139, + 13.2550181 + ] + ] + }, + { + "osmId": "26066311", + "name": null, + "lengthMeters": 1361.1857570947636, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4858241, + 13.2575403 + ], + [ + 52.486098, + 13.2579098 + ], + [ + 52.4864547, + 13.2584068 + ], + [ + 52.4864636, + 13.2584192 + ], + [ + 52.4869179, + 13.2591073 + ], + [ + 52.4872172, + 13.2596321 + ], + [ + 52.4875805, + 13.2603224 + ], + [ + 52.4882455, + 13.2615916 + ], + [ + 52.4886243, + 13.2623148 + ], + [ + 52.4888734, + 13.262758 + ], + [ + 52.489129, + 13.263169 + ], + [ + 52.489429, + 13.2636318 + ], + [ + 52.4896912, + 13.2639865 + ], + [ + 52.4899855, + 13.2643591 + ], + [ + 52.4903156, + 13.2647467 + ], + [ + 52.4907481, + 13.2651809 + ], + [ + 52.4928844, + 13.2671795 + ], + [ + 52.4930013, + 13.2672888 + ], + [ + 52.493594, + 13.2678649 + ], + [ + 52.4938642, + 13.2681562 + ], + [ + 52.494149, + 13.2685104 + ], + [ + 52.4952948, + 13.2700164 + ], + [ + 52.4952989, + 13.2700218 + ] + ] + }, + { + "osmId": "26066814", + "name": null, + "lengthMeters": 1009.9497265111696, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4886953, + 13.2622532 + ], + [ + 52.4888588, + 13.2625424 + ], + [ + 52.4889283, + 13.2626654 + ], + [ + 52.4891847, + 13.2630719 + ], + [ + 52.4894787, + 13.2635139 + ], + [ + 52.4898913, + 13.2640534 + ], + [ + 52.4899363, + 13.2641102 + ], + [ + 52.4900345, + 13.2642334 + ], + [ + 52.4903714, + 13.2645992 + ], + [ + 52.4907456, + 13.2649794 + ], + [ + 52.4908237, + 13.2650588 + ], + [ + 52.4922841, + 13.2663765 + ], + [ + 52.4930124, + 13.2670357 + ], + [ + 52.4933785, + 13.2673653 + ], + [ + 52.4937088, + 13.267709 + ], + [ + 52.4940367, + 13.2681225 + ], + [ + 52.4940476, + 13.2681362 + ], + [ + 52.4961017, + 13.2707273 + ], + [ + 52.4961162, + 13.2707457 + ] + ] + }, + { + "osmId": "26119435", + "name": null, + "lengthMeters": 109.13705842904386, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5903318, + 10.0006581 + ], + [ + 53.5903318, + 10.0008099 + ], + [ + 53.5903376, + 10.0010303 + ], + [ + 53.5903517, + 10.0015818 + ], + [ + 53.5904014, + 10.0022168 + ], + [ + 53.5904017, + 10.0022328 + ], + [ + 53.5904045, + 10.0023053 + ] + ] + }, + { + "osmId": "26119439", + "name": null, + "lengthMeters": 189.28347835437893, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.590422, + 10.0028833 + ], + [ + 53.5904643, + 10.0045358 + ], + [ + 53.5904988, + 10.0057483 + ] + ] + }, + { + "osmId": "26119447", + "name": null, + "lengthMeters": 81.18688051094087, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5918124, + 9.9954114 + ], + [ + 53.5919221, + 9.9954885 + ], + [ + 53.592143, + 9.9956382 + ], + [ + 53.5924973, + 9.9958356 + ] + ] + }, + { + "osmId": "26119460", + "name": null, + "lengthMeters": 338.7992664914607, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5961295, + 9.9955369 + ], + [ + 53.596866, + 9.9952959 + ], + [ + 53.5972058, + 9.9951872 + ], + [ + 53.5974981, + 9.9950782 + ], + [ + 53.5978042, + 9.9949743 + ], + [ + 53.598051, + 9.9948906 + ], + [ + 53.5983281, + 9.9948305 + ], + [ + 53.5985858, + 9.9948008 + ], + [ + 53.5990051, + 9.9947728 + ], + [ + 53.5991351, + 9.9947651 + ] + ] + }, + { + "osmId": "26119466", + "name": null, + "lengthMeters": 76.65046051686441, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5935333, + 9.9961376 + ], + [ + 53.5938804, + 9.9961914 + ], + [ + 53.5940702, + 9.9962188 + ], + [ + 53.5942204, + 9.9962267 + ] + ] + }, + { + "osmId": "26135379", + "name": null, + "lengthMeters": 155.779653088367, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.470957, + 9.9519377 + ], + [ + 53.470887, + 9.9521899 + ], + [ + 53.4708152, + 9.9524458 + ], + [ + 53.4707326, + 9.952702 + ], + [ + 53.470644, + 9.9529561 + ], + [ + 53.4705598, + 9.9531747 + ], + [ + 53.4704544, + 9.9534416 + ], + [ + 53.4703646, + 9.9536468 + ], + [ + 53.4702202, + 9.9539278 + ] + ] + }, + { + "osmId": "26137181", + "name": null, + "lengthMeters": 105.0372228242897, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140548, + 13.531432 + ], + [ + 52.5141545, + 13.5321961 + ], + [ + 52.5142681, + 13.5329439 + ] + ] + }, + { + "osmId": "26144356", + "name": null, + "lengthMeters": 501.4363402272156, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6089215, + 13.4568177 + ], + [ + 52.6086933, + 13.4570679 + ], + [ + 52.6085336, + 13.4572227 + ], + [ + 52.608363, + 13.4573719 + ], + [ + 52.6082317, + 13.4574715 + ], + [ + 52.6080714, + 13.4575931 + ], + [ + 52.6078039, + 13.4577603 + ], + [ + 52.6074339, + 13.4579399 + ], + [ + 52.6072241, + 13.4580199 + ], + [ + 52.6071122, + 13.4580534 + ], + [ + 52.6070235, + 13.4580785 + ], + [ + 52.6070032, + 13.4580823 + ], + [ + 52.6069042, + 13.4581068 + ], + [ + 52.6067592, + 13.4581348 + ], + [ + 52.6064954, + 13.4581634 + ], + [ + 52.6062793, + 13.4581661 + ], + [ + 52.6060551, + 13.4581526 + ], + [ + 52.6057907, + 13.4581125 + ], + [ + 52.6055352, + 13.45805 + ], + [ + 52.6051057, + 13.4578875 + ], + [ + 52.604761, + 13.457699 + ], + [ + 52.6046252, + 13.4576116 + ] + ] + }, + { + "osmId": "26153700", + "name": null, + "lengthMeters": 111.15502694485401, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001026, + 13.2842199 + ], + [ + 52.5000129, + 13.2843199 + ], + [ + 52.499855, + 13.2845031 + ], + [ + 52.4996918, + 13.2847087 + ], + [ + 52.499533, + 13.2849296 + ], + [ + 52.4993238, + 13.2852455 + ] + ] + }, + { + "osmId": "26187091", + "name": null, + "lengthMeters": 888.2578235293736, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4339529, + 13.1939648 + ], + [ + 52.4340638, + 13.1940322 + ], + [ + 52.434197, + 13.1941166 + ], + [ + 52.4343258, + 13.1942009 + ], + [ + 52.434453, + 13.1942878 + ], + [ + 52.4345809, + 13.1943786 + ], + [ + 52.4347042, + 13.1944708 + ], + [ + 52.4348086, + 13.1945482 + ], + [ + 52.4349239, + 13.1946377 + ], + [ + 52.4350209, + 13.1947159 + ], + [ + 52.4352244, + 13.1948865 + ], + [ + 52.4353582, + 13.1950022 + ], + [ + 52.4357177, + 13.195327 + ], + [ + 52.4359013, + 13.1955073 + ], + [ + 52.4360825, + 13.1956909 + ], + [ + 52.436487, + 13.1961321 + ], + [ + 52.4367904, + 13.1964924 + ], + [ + 52.4370746, + 13.1968512 + ], + [ + 52.4374225, + 13.1972936 + ], + [ + 52.4375922, + 13.1975083 + ], + [ + 52.4385885, + 13.1987686 + ], + [ + 52.438817, + 13.1990538 + ], + [ + 52.440551, + 13.2012475 + ] + ] + }, + { + "osmId": "26187095", + "name": null, + "lengthMeters": 877.3907009341341, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.43398, + 13.1942252 + ], + [ + 52.4341472, + 13.1943227 + ], + [ + 52.4342493, + 13.1943848 + ], + [ + 52.4343492, + 13.1944473 + ], + [ + 52.4344487, + 13.194512 + ], + [ + 52.4345477, + 13.1945797 + ], + [ + 52.4346486, + 13.194648 + ], + [ + 52.4347655, + 13.1947303 + ], + [ + 52.4348783, + 13.1948133 + ], + [ + 52.4350365, + 13.1949343 + ], + [ + 52.4351114, + 13.1949928 + ], + [ + 52.4351842, + 13.1950523 + ], + [ + 52.4354741, + 13.1952938 + ], + [ + 52.4357651, + 13.1955592 + ], + [ + 52.4360549, + 13.1958432 + ], + [ + 52.4363036, + 13.1961076 + ], + [ + 52.4365525, + 13.1963906 + ], + [ + 52.4367975, + 13.1966791 + ], + [ + 52.4370385, + 13.1969785 + ], + [ + 52.4375149, + 13.1975766 + ], + [ + 52.437519, + 13.1975818 + ], + [ + 52.4377934, + 13.1979283 + ], + [ + 52.4391173, + 13.1996 + ], + [ + 52.4405139, + 13.2013657 + ] + ] + }, + { + "osmId": "26187939", + "name": null, + "lengthMeters": 221.15391910440107, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4253207, + 13.1887151 + ], + [ + 52.4255714, + 13.1892428 + ], + [ + 52.4255975, + 13.1892976 + ], + [ + 52.4256511, + 13.1894101 + ], + [ + 52.4256798, + 13.1894706 + ], + [ + 52.425748, + 13.1896079 + ], + [ + 52.4258135, + 13.189738 + ], + [ + 52.4258939, + 13.1898888 + ], + [ + 52.4259781, + 13.1900406 + ], + [ + 52.4260617, + 13.1901854 + ], + [ + 52.4261342, + 13.1903055 + ], + [ + 52.426207, + 13.1904201 + ], + [ + 52.4262817, + 13.1905333 + ], + [ + 52.4263561, + 13.1906426 + ], + [ + 52.4264171, + 13.1907279 + ], + [ + 52.4264774, + 13.1908108 + ], + [ + 52.4266012, + 13.1909709 + ], + [ + 52.4266837, + 13.1910719 + ] + ] + }, + { + "osmId": "26187941", + "name": null, + "lengthMeters": 659.25167791671, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4373567, + 13.2054772 + ], + [ + 52.43755, + 13.2059544 + ], + [ + 52.4383427, + 13.2079111 + ], + [ + 52.4385898, + 13.2086682 + ], + [ + 52.4387602, + 13.2093407 + ], + [ + 52.4391295, + 13.211146 + ], + [ + 52.4394353, + 13.2127278 + ], + [ + 52.4397506, + 13.2142973 + ] + ] + }, + { + "osmId": "26187945", + "name": null, + "lengthMeters": 538.8220945554765, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4345995, + 13.198681 + ], + [ + 52.4349133, + 13.1993771 + ], + [ + 52.4352099, + 13.2000731 + ], + [ + 52.4357647, + 13.2014731 + ], + [ + 52.4372846, + 13.2052957 + ] + ] + }, + { + "osmId": "26187950", + "name": null, + "lengthMeters": 229.55776082367615, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4271189, + 13.1914422 + ], + [ + 52.4272441, + 13.191559 + ], + [ + 52.427349, + 13.1916508 + ], + [ + 52.4274396, + 13.1917275 + ], + [ + 52.4275395, + 13.1918072 + ], + [ + 52.4276831, + 13.1919125 + ], + [ + 52.4278363, + 13.1920173 + ], + [ + 52.4280433, + 13.1921412 + ], + [ + 52.4282584, + 13.1922544 + ], + [ + 52.4284601, + 13.1923434 + ], + [ + 52.4286507, + 13.1924175 + ], + [ + 52.4288396, + 13.192485 + ], + [ + 52.4289149, + 13.1925091 + ], + [ + 52.4290563, + 13.1925547 + ] + ] + }, + { + "osmId": "26187952", + "name": null, + "lengthMeters": 736.423293247518, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4290911, + 13.1926499 + ], + [ + 52.4294024, + 13.1927438 + ], + [ + 52.4295453, + 13.1927904 + ], + [ + 52.429683, + 13.1928389 + ], + [ + 52.4298127, + 13.1928906 + ], + [ + 52.4299378, + 13.1929439 + ], + [ + 52.4300439, + 13.1929925 + ], + [ + 52.4301554, + 13.1930528 + ], + [ + 52.43027, + 13.1931156 + ], + [ + 52.4303591, + 13.1931684 + ], + [ + 52.4303876, + 13.1931853 + ], + [ + 52.4304826, + 13.1932457 + ], + [ + 52.4305807, + 13.193311 + ], + [ + 52.4307628, + 13.193442 + ], + [ + 52.4309205, + 13.1935666 + ], + [ + 52.4310472, + 13.1936744 + ], + [ + 52.431176, + 13.193792 + ], + [ + 52.43133, + 13.1939449 + ], + [ + 52.4314329, + 13.1940497 + ], + [ + 52.4315276, + 13.1941511 + ], + [ + 52.4323373, + 13.1950917 + ], + [ + 52.4325349, + 13.1953273 + ], + [ + 52.4326967, + 13.1955282 + ], + [ + 52.432831, + 13.1957001 + ], + [ + 52.4329543, + 13.1958649 + ], + [ + 52.4330715, + 13.1960237 + ], + [ + 52.4331881, + 13.1961881 + ], + [ + 52.4333998, + 13.1965039 + ], + [ + 52.4336188, + 13.1968487 + ], + [ + 52.4338446, + 13.1972281 + ], + [ + 52.4340646, + 13.1976264 + ], + [ + 52.4342257, + 13.1979302 + ], + [ + 52.4343761, + 13.1982198 + ], + [ + 52.4345039, + 13.1984824 + ] + ] + }, + { + "osmId": "26187954", + "name": null, + "lengthMeters": 78.23029570609151, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4307711, + 13.1929073 + ], + [ + 52.4310777, + 13.1929997 + ], + [ + 52.4311944, + 13.1930331 + ], + [ + 52.4313173, + 13.1930709 + ], + [ + 52.4314631, + 13.1931154 + ] + ] + }, + { + "osmId": "26187958", + "name": null, + "lengthMeters": 327.2971898933689, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4309565, + 13.1931278 + ], + [ + 52.4311347, + 13.1931803 + ], + [ + 52.4313126, + 13.1932365 + ], + [ + 52.431601, + 13.1933215 + ], + [ + 52.4318789, + 13.1934064 + ], + [ + 52.4321308, + 13.1934831 + ], + [ + 52.4323042, + 13.1935333 + ], + [ + 52.4324513, + 13.1935823 + ], + [ + 52.432648, + 13.1936433 + ], + [ + 52.4328412, + 13.1937099 + ], + [ + 52.4330596, + 13.1937917 + ], + [ + 52.4331783, + 13.1938364 + ], + [ + 52.4333043, + 13.1938897 + ], + [ + 52.4334755, + 13.1939685 + ], + [ + 52.4336413, + 13.1940471 + ], + [ + 52.4338319, + 13.1941421 + ] + ] + }, + { + "osmId": "26188525", + "name": null, + "lengthMeters": 621.6033231627953, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4259171, + 13.1873212 + ], + [ + 52.425888, + 13.1872871 + ], + [ + 52.425433, + 13.1867547 + ], + [ + 52.425226, + 13.1865039 + ], + [ + 52.4250123, + 13.1862345 + ], + [ + 52.424866, + 13.1860339 + ], + [ + 52.4247262, + 13.1858372 + ], + [ + 52.424644, + 13.1857127 + ], + [ + 52.4245608, + 13.1855844 + ], + [ + 52.4244706, + 13.1854351 + ], + [ + 52.4243828, + 13.1852839 + ], + [ + 52.4242484, + 13.1850391 + ], + [ + 52.4241109, + 13.1847773 + ], + [ + 52.4236698, + 13.18391 + ], + [ + 52.4232223, + 13.1830274 + ], + [ + 52.4231053, + 13.1828033 + ], + [ + 52.4230403, + 13.1826715 + ], + [ + 52.4225576, + 13.1817227 + ], + [ + 52.4220648, + 13.1807417 + ] + ] + }, + { + "osmId": "26188527", + "name": null, + "lengthMeters": 424.5452160360454, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4259764, + 13.1875411 + ], + [ + 52.4260589, + 13.1876378 + ], + [ + 52.4260764, + 13.1876581 + ], + [ + 52.4266979, + 13.1883765 + ], + [ + 52.42793, + 13.1898256 + ], + [ + 52.4287691, + 13.19079 + ], + [ + 52.4287964, + 13.1908205 + ], + [ + 52.4290923, + 13.1911595 + ] + ] + }, + { + "osmId": "26258565", + "name": null, + "lengthMeters": 309.39597036186694, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042283, + 13.300103 + ], + [ + 52.5040768, + 13.2994526 + ], + [ + 52.5038302, + 13.2984239 + ], + [ + 52.5037803, + 13.2982179 + ], + [ + 52.5037663, + 13.2981577 + ], + [ + 52.5036996, + 13.2978799 + ], + [ + 52.5035664, + 13.2973119 + ], + [ + 52.50348, + 13.2969022 + ], + [ + 52.5032861, + 13.2958055 + ] + ] + }, + { + "osmId": "26291396", + "name": null, + "lengthMeters": 2518.5884188452414, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5227123, + 13.7192391 + ], + [ + 52.5232095, + 13.7216747 + ], + [ + 52.5236254, + 13.7236747 + ], + [ + 52.5238081, + 13.7246048 + ], + [ + 52.523883, + 13.7250545 + ], + [ + 52.5245719, + 13.7300286 + ], + [ + 52.52487, + 13.7323374 + ], + [ + 52.5254076, + 13.7382294 + ], + [ + 52.5254427, + 13.7389048 + ], + [ + 52.5254597, + 13.7396659 + ], + [ + 52.5254608, + 13.7400334 + ], + [ + 52.5254708, + 13.7441479 + ], + [ + 52.5254708, + 13.7477715 + ], + [ + 52.5254247, + 13.7500658 + ], + [ + 52.5254139, + 13.7506702 + ], + [ + 52.5254093, + 13.7511758 + ], + [ + 52.5254218, + 13.7516905 + ], + [ + 52.5254524, + 13.752242 + ], + [ + 52.5254913, + 13.7526961 + ], + [ + 52.525644, + 13.7542567 + ], + [ + 52.5256522, + 13.7543552 + ], + [ + 52.5256604, + 13.754449 + ], + [ + 52.5257836, + 13.7558637 + ] + ] + }, + { + "osmId": "26291402", + "name": null, + "lengthMeters": 88.70652832540154, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5224583, + 13.7179962 + ], + [ + 52.5227123, + 13.7192391 + ] + ] + }, + { + "osmId": "26312374", + "name": null, + "lengthMeters": 622.3765500751093, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5150652, + 13.4784245 + ], + [ + 52.5161015, + 13.4792529 + ], + [ + 52.516191, + 13.4793243 + ], + [ + 52.5162308, + 13.479356 + ], + [ + 52.5162962, + 13.4794082 + ], + [ + 52.5164329, + 13.4795202 + ], + [ + 52.5165144, + 13.4795962 + ], + [ + 52.5165943, + 13.479675 + ], + [ + 52.5166616, + 13.4797417 + ], + [ + 52.516737, + 13.479814 + ], + [ + 52.5167859, + 13.4798525 + ], + [ + 52.516836, + 13.4798871 + ], + [ + 52.5169442, + 13.4799559 + ], + [ + 52.5170013, + 13.479986 + ], + [ + 52.5170588, + 13.4800117 + ], + [ + 52.5171299, + 13.4800362 + ], + [ + 52.5171522, + 13.4800432 + ], + [ + 52.5172358, + 13.4800632 + ], + [ + 52.5173223, + 13.4800756 + ], + [ + 52.5178813, + 13.48009 + ], + [ + 52.5180515, + 13.4800776 + ], + [ + 52.5183329, + 13.4800712 + ], + [ + 52.5187015, + 13.4800774 + ], + [ + 52.5189583, + 13.4800868 + ], + [ + 52.519073, + 13.4800754 + ], + [ + 52.5193795, + 13.4800822 + ], + [ + 52.5198479, + 13.4801012 + ], + [ + 52.5199739, + 13.4801092 + ], + [ + 52.5200276, + 13.480117 + ], + [ + 52.5201403, + 13.4801333 + ], + [ + 52.5202545, + 13.4801576 + ], + [ + 52.5204307, + 13.4801912 + ] + ] + }, + { + "osmId": "26360539", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 197.35979684392112, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4423937, + 10.009085 + ], + [ + 53.4418851, + 10.0096563 + ], + [ + 53.4408954, + 10.0106816 + ] + ] + }, + { + "osmId": "26360541", + "name": null, + "lengthMeters": 422.93804865055625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4525597, + 9.9940702 + ], + [ + 53.4531245, + 9.9933031 + ], + [ + 53.4531462, + 9.9932729 + ], + [ + 53.4531536, + 9.9932626 + ], + [ + 53.4532717, + 9.9930983 + ], + [ + 53.4533003, + 9.9930585 + ], + [ + 53.45365, + 9.9926269 + ], + [ + 53.4538898, + 9.9923602 + ], + [ + 53.4539335, + 9.9923116 + ], + [ + 53.4540763, + 9.9921708 + ], + [ + 53.4542699, + 9.9919799 + ], + [ + 53.4543158, + 9.9919405 + ], + [ + 53.4543955, + 9.9918721 + ], + [ + 53.4547201, + 9.9916293 + ], + [ + 53.4548161, + 9.9915697 + ], + [ + 53.4549578, + 9.9914814 + ], + [ + 53.4553571, + 9.9912766 + ], + [ + 53.4555533, + 9.9911988 + ], + [ + 53.4555841, + 9.9911866 + ], + [ + 53.4556056, + 9.9911781 + ], + [ + 53.4556246, + 9.9911706 + ], + [ + 53.4558621, + 9.9910882 + ] + ] + }, + { + "osmId": "26360542", + "name": null, + "lengthMeters": 440.2890327009323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4522445, + 9.9946108 + ], + [ + 53.4526387, + 9.9940927 + ], + [ + 53.45265, + 9.9940777 + ], + [ + 53.4530746, + 9.993558 + ], + [ + 53.4533135, + 9.9932793 + ], + [ + 53.453363, + 9.9932215 + ], + [ + 53.4537009, + 9.9928301 + ], + [ + 53.4539181, + 9.9925912 + ], + [ + 53.4539894, + 9.9925128 + ], + [ + 53.4541755, + 9.9923335 + ], + [ + 53.454217, + 9.9922958 + ], + [ + 53.4543055, + 9.9922213 + ], + [ + 53.4544512, + 9.9920986 + ], + [ + 53.4546953, + 9.9919208 + ], + [ + 53.4548224, + 9.9918446 + ], + [ + 53.4550768, + 9.9916951 + ], + [ + 53.4553828, + 9.9915499 + ], + [ + 53.4556752, + 9.991434 + ] + ] + }, + { + "osmId": "26360543", + "name": null, + "lengthMeters": 539.891244788588, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4527716, + 9.9943177 + ], + [ + 53.4532894, + 9.9937757 + ], + [ + 53.4534799, + 9.9936121 + ], + [ + 53.4536728, + 9.9934602 + ], + [ + 53.4538651, + 9.9933058 + ], + [ + 53.4542248, + 9.9930562 + ], + [ + 53.454616, + 9.9928295 + ], + [ + 53.4548552, + 9.9927138 + ], + [ + 53.4550123, + 9.9926376 + ], + [ + 53.4552299, + 9.9925496 + ], + [ + 53.4554367, + 9.992466 + ], + [ + 53.455739, + 9.9923612 + ], + [ + 53.4558985, + 9.9923117 + ], + [ + 53.4566518, + 9.9920631 + ], + [ + 53.4572481, + 9.991917 + ], + [ + 53.4573592, + 9.9918954 + ] + ] + }, + { + "osmId": "26360544", + "name": null, + "lengthMeters": 208.41106263743143, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.457826, + 9.9918269 + ], + [ + 53.4582823, + 9.9918067 + ], + [ + 53.4590046, + 9.9918757 + ], + [ + 53.4593177, + 9.9919414 + ], + [ + 53.4596911, + 9.9920487 + ] + ] + }, + { + "osmId": "26398605", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 328.7543546743689, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1660412, + 11.4880904 + ], + [ + 48.1655326, + 11.4872613 + ], + [ + 48.1653935, + 11.4870352 + ], + [ + 48.1647896, + 11.4860533 + ], + [ + 48.164537, + 11.485643 + ], + [ + 48.1642802, + 11.4852339 + ], + [ + 48.1640308, + 11.4848403 + ] + ] + }, + { + "osmId": "26398634", + "name": null, + "lengthMeters": 748.633097324355, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5997728, + 13.2809909 + ], + [ + 52.6001379, + 13.2806242 + ], + [ + 52.6002792, + 13.2804757 + ], + [ + 52.6005205, + 13.2802034 + ], + [ + 52.6007514, + 13.2799183 + ], + [ + 52.6009172, + 13.2796892 + ], + [ + 52.6010765, + 13.2794558 + ], + [ + 52.6012877, + 13.2791162 + ], + [ + 52.6014808, + 13.2787615 + ], + [ + 52.6016828, + 13.278354 + ], + [ + 52.6018654, + 13.2779336 + ], + [ + 52.6019698, + 13.2776598 + ], + [ + 52.6021563, + 13.2771114 + ], + [ + 52.6021968, + 13.2769543 + ], + [ + 52.6024916, + 13.2758776 + ], + [ + 52.602936, + 13.2737643 + ], + [ + 52.6033253, + 13.2719803 + ] + ] + }, + { + "osmId": "26398743", + "name": null, + "lengthMeters": 767.320019883786, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1816057, + 11.4711978 + ], + [ + 48.1819455, + 11.4710671 + ], + [ + 48.1822814, + 11.47094 + ], + [ + 48.1825491, + 11.47084 + ], + [ + 48.1832277, + 11.4705942 + ], + [ + 48.1836982, + 11.4704136 + ], + [ + 48.18405, + 11.4702901 + ], + [ + 48.1844737, + 11.4701378 + ], + [ + 48.1848665, + 11.4699966 + ], + [ + 48.1856995, + 11.4697037 + ], + [ + 48.1865222, + 11.4694178 + ], + [ + 48.1867077, + 11.4693533 + ], + [ + 48.1872627, + 11.4691473 + ], + [ + 48.1883089, + 11.4687414 + ] + ] + }, + { + "osmId": "26406213", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 411.42747845327096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.460078, + 9.9835081 + ], + [ + 53.4600371, + 9.983677 + ], + [ + 53.4597657, + 9.9846104 + ], + [ + 53.4593913, + 9.9857254 + ], + [ + 53.4591298, + 9.9862621 + ], + [ + 53.4585751, + 9.9872069 + ], + [ + 53.4579469, + 9.9882286 + ], + [ + 53.4578588, + 9.988397 + ] + ] + }, + { + "osmId": "26413906", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 317.0406876742794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4609456, + 9.9777566 + ], + [ + 53.4608944, + 9.9778972 + ], + [ + 53.4608497, + 9.978046 + ], + [ + 53.4608161, + 9.9781868 + ], + [ + 53.460781, + 9.9783719 + ], + [ + 53.460765, + 9.9784577 + ], + [ + 53.4607403, + 9.9786187 + ], + [ + 53.4607126, + 9.9788811 + ], + [ + 53.4605972, + 9.9804351 + ], + [ + 53.4604152, + 9.9818273 + ], + [ + 53.4603766, + 9.982133 + ], + [ + 53.4603582, + 9.9822658 + ], + [ + 53.4603371, + 9.9824101 + ] + ] + }, + { + "osmId": "26413939", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 404.7790436052609, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4578997, + 9.9884633 + ], + [ + 53.4583459, + 9.9877969 + ], + [ + 53.4590282, + 9.9866896 + ], + [ + 53.4594381, + 9.9858453 + ], + [ + 53.4597268, + 9.9851081 + ], + [ + 53.4601239, + 9.9837135 + ] + ] + }, + { + "osmId": "26414277", + "name": null, + "lengthMeters": 928.2402423349737, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4574058, + 9.9966996 + ], + [ + 53.4576219, + 9.9971414 + ], + [ + 53.4582237, + 9.9979878 + ], + [ + 53.4589171, + 9.9986503 + ], + [ + 53.4593168, + 9.9988998 + ], + [ + 53.4597455, + 9.999124 + ], + [ + 53.4606222, + 9.9993009 + ], + [ + 53.4615159, + 9.9992963 + ], + [ + 53.4624015, + 9.9991315 + ], + [ + 53.463263, + 9.9988756 + ], + [ + 53.4644186, + 9.9983309 + ], + [ + 53.4648979, + 9.9981019 + ], + [ + 53.4651948, + 9.9979631 + ] + ] + }, + { + "osmId": "26416582", + "name": null, + "lengthMeters": 369.3786828770724, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5620768, + 13.4032502 + ], + [ + 52.5622704, + 13.4035853 + ], + [ + 52.5626968, + 13.4043138 + ], + [ + 52.5632433, + 13.4052476 + ], + [ + 52.5636602, + 13.4059601 + ], + [ + 52.5642923, + 13.4070399 + ], + [ + 52.5643795, + 13.4071889 + ] + ] + }, + { + "osmId": "26416613", + "name": "Stettiner Bahn", + "lengthMeters": 424.99572470869566, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5644058, + 13.4074879 + ], + [ + 52.5659561, + 13.4101544 + ], + [ + 52.5662117, + 13.4106028 + ], + [ + 52.5663179, + 13.4107853 + ], + [ + 52.5670448, + 13.4120363 + ] + ] + }, + { + "osmId": "26416625", + "name": null, + "lengthMeters": 102.7944800509944, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5644943, + 13.4073854 + ], + [ + 52.5648181, + 13.4079431 + ], + [ + 52.5651273, + 13.4084937 + ] + ] + }, + { + "osmId": "26434913", + "name": "Stettiner Bahn", + "lengthMeters": 148.65542157446203, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5486548, + 13.3880912 + ], + [ + 52.5486301, + 13.3876441 + ], + [ + 52.5485744, + 13.3867539 + ], + [ + 52.5485465, + 13.386298 + ], + [ + 52.5485327, + 13.3861096 + ], + [ + 52.5485148, + 13.385905 + ] + ] + }, + { + "osmId": "26435558", + "name": "Berliner Ringbahn", + "lengthMeters": 252.06142689509295, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5490726, + 13.3959827 + ], + [ + 52.549033, + 13.395763 + ], + [ + 52.548997, + 13.3955491 + ], + [ + 52.5489298, + 13.3951299 + ], + [ + 52.5489008, + 13.3948808 + ], + [ + 52.5488758, + 13.3946194 + ], + [ + 52.5488582, + 13.394372 + ], + [ + 52.5488437, + 13.3941211 + ], + [ + 52.5488311, + 13.393814 + ], + [ + 52.5488273, + 13.3937122 + ], + [ + 52.5488259, + 13.3933439 + ], + [ + 52.5488307, + 13.3928248 + ], + [ + 52.5488118, + 13.3922991 + ] + ] + }, + { + "osmId": "26435781", + "name": "Berliner Ringbahn", + "lengthMeters": 118.94020313804185, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5492851, + 13.3977049 + ], + [ + 52.5492389, + 13.3971452 + ], + [ + 52.5490726, + 13.3959827 + ] + ] + }, + { + "osmId": "26436024", + "name": null, + "lengthMeters": 276.9886694359127, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493968, + 13.397921 + ], + [ + 52.5494003, + 13.3990333 + ], + [ + 52.549401, + 13.3992366 + ], + [ + 52.5494012, + 13.3992987 + ], + [ + 52.5494017, + 13.3994606 + ], + [ + 52.5494053, + 13.4010269 + ], + [ + 52.5494126, + 13.4015208 + ], + [ + 52.5494271, + 13.4020168 + ] + ] + }, + { + "osmId": "26436025", + "name": null, + "lengthMeters": 262.899123124017, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493161, + 13.3940359 + ], + [ + 52.5493786, + 13.3959888 + ], + [ + 52.5493947, + 13.3969621 + ], + [ + 52.5493968, + 13.397921 + ] + ] + }, + { + "osmId": "26436026", + "name": null, + "lengthMeters": 212.88527176037886, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491989, + 13.3908934 + ], + [ + 52.5492389, + 13.3918507 + ], + [ + 52.5492543, + 13.3922615 + ], + [ + 52.5492697, + 13.3926284 + ], + [ + 52.5493101, + 13.393853 + ], + [ + 52.5493161, + 13.3940359 + ] + ] + }, + { + "osmId": "26445174", + "name": null, + "lengthMeters": 749.2357044357667, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4611715, + 9.9865561 + ], + [ + 53.4615295, + 9.9864008 + ], + [ + 53.4618681, + 9.9861865 + ], + [ + 53.4618997, + 9.986161 + ], + [ + 53.4621871, + 9.9858913 + ], + [ + 53.4624677, + 9.9855694 + ], + [ + 53.4624826, + 9.9855523 + ], + [ + 53.4627253, + 9.9851796 + ], + [ + 53.462756, + 9.9851324 + ], + [ + 53.4630347, + 9.9846031 + ], + [ + 53.463256, + 9.9840367 + ], + [ + 53.4633355, + 9.9837945 + ], + [ + 53.4634031, + 9.9835884 + ], + [ + 53.463775, + 9.9822638 + ], + [ + 53.4638692, + 9.9819285 + ], + [ + 53.4643158, + 9.9803517 + ], + [ + 53.4643414, + 9.9802724 + ], + [ + 53.4644886, + 9.9798251 + ], + [ + 53.4646286, + 9.9794987 + ], + [ + 53.4649254, + 9.9788699 + ], + [ + 53.4652171, + 9.9782781 + ], + [ + 53.4652574, + 9.9781915 + ], + [ + 53.4652913, + 9.9781188 + ] + ] + }, + { + "osmId": "26476809", + "name": null, + "lengthMeters": 415.11784444625584, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4794944, + 13.3679476 + ], + [ + 52.4802564, + 13.3684214 + ], + [ + 52.4810155, + 13.3688821 + ], + [ + 52.4816202, + 13.36924 + ], + [ + 52.481767, + 13.3693269 + ], + [ + 52.483, + 13.370055 + ] + ] + }, + { + "osmId": "26476861", + "name": null, + "lengthMeters": 639.6425969531126, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4982699, + 13.3726189 + ], + [ + 52.4980888, + 13.3726468 + ], + [ + 52.4974551, + 13.3727433 + ], + [ + 52.4970072, + 13.3727911 + ], + [ + 52.4969009, + 13.3727979 + ], + [ + 52.4966252, + 13.3728156 + ], + [ + 52.4960931, + 13.3728297 + ], + [ + 52.4953371, + 13.3728009 + ], + [ + 52.4925243, + 13.3726345 + ] + ] + }, + { + "osmId": "26477120", + "name": null, + "lengthMeters": 297.204430433903, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4925374, + 13.3722526 + ], + [ + 52.4933474, + 13.3723122 + ], + [ + 52.4939811, + 13.3723253 + ], + [ + 52.4941506, + 13.372336 + ], + [ + 52.4943534, + 13.3723488 + ], + [ + 52.4946099, + 13.3723877 + ], + [ + 52.4949565, + 13.3724653 + ], + [ + 52.4951989, + 13.3725536 + ] + ] + }, + { + "osmId": "26477243", + "name": null, + "lengthMeters": 85.85152203875623, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4956061, + 13.3718393 + ], + [ + 52.4954881, + 13.3716847 + ], + [ + 52.495302, + 13.3714409 + ], + [ + 52.4950034, + 13.3710467 + ] + ] + }, + { + "osmId": "26477244", + "name": null, + "lengthMeters": 194.7521099654925, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4933234, + 13.3683737 + ], + [ + 52.4935604, + 13.3685687 + ], + [ + 52.4936343, + 13.3686392 + ], + [ + 52.4939305, + 13.3689346 + ], + [ + 52.4942645, + 13.369324 + ], + [ + 52.4946254, + 13.3698282 + ], + [ + 52.4947413, + 13.3700347 + ] + ] + }, + { + "osmId": "26477248", + "name": null, + "lengthMeters": 231.4246322996288, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4861158, + 13.360669 + ], + [ + 52.485401, + 13.3598282 + ], + [ + 52.4851945, + 13.3595848 + ], + [ + 52.4849565, + 13.3593041 + ], + [ + 52.4848281, + 13.3591443 + ], + [ + 52.4847008, + 13.358981 + ], + [ + 52.4845824, + 13.3588105 + ], + [ + 52.4844536, + 13.3586168 + ] + ] + }, + { + "osmId": "26477250", + "name": null, + "lengthMeters": 186.7823774525505, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4930606, + 13.3683208 + ], + [ + 52.4929169, + 13.3682182 + ], + [ + 52.4922663, + 13.3677535 + ], + [ + 52.4917071, + 13.3672668 + ], + [ + 52.4916674, + 13.3672283 + ], + [ + 52.4915566, + 13.3671172 + ], + [ + 52.4915556, + 13.3671161 + ], + [ + 52.4915525, + 13.367113 + ] + ] + }, + { + "osmId": "26477684", + "name": "U2", + "lengthMeters": 358.7880189348477, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5086813, + 13.3774057 + ], + [ + 52.5086256, + 13.3773552 + ], + [ + 52.5084507, + 13.3772212 + ], + [ + 52.5082798, + 13.3771217 + ], + [ + 52.5080787, + 13.3770321 + ], + [ + 52.507783, + 13.3768638 + ], + [ + 52.5070739, + 13.3764538 + ], + [ + 52.5068875, + 13.3763652 + ], + [ + 52.50656, + 13.3762553 + ], + [ + 52.5063386, + 13.3761971 + ], + [ + 52.5061146, + 13.3761344 + ], + [ + 52.5058583, + 13.376002 + ], + [ + 52.5056063, + 13.3758556 + ] + ] + }, + { + "osmId": "26478627", + "name": null, + "lengthMeters": 644.0133882716138, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4924954, + 13.3727902 + ], + [ + 52.4926598, + 13.3727936 + ], + [ + 52.4953352, + 13.3729574 + ], + [ + 52.4961019, + 13.3729947 + ], + [ + 52.4966274, + 13.3730194 + ], + [ + 52.4969793, + 13.3730238 + ], + [ + 52.4974562, + 13.3730075 + ], + [ + 52.4981, + 13.372947 + ], + [ + 52.4982831, + 13.3729256 + ] + ] + }, + { + "osmId": "26491103", + "name": null, + "lengthMeters": 642.1426659326157, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4925076, + 13.3727243 + ], + [ + 52.4953289, + 13.3728914 + ], + [ + 52.4960955, + 13.3729325 + ], + [ + 52.4966365, + 13.3729331 + ], + [ + 52.4967376, + 13.3729301 + ], + [ + 52.4969526, + 13.3729237 + ], + [ + 52.4972436, + 13.3728986 + ], + [ + 52.4974857, + 13.3728657 + ], + [ + 52.498093, + 13.3727642 + ], + [ + 52.4982749, + 13.3727333 + ] + ] + }, + { + "osmId": "26491105", + "name": "Anhalter Vorortbahn", + "lengthMeters": 583.5322836875707, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953175, + 13.3725968 + ], + [ + 52.4960009, + 13.3729759 + ], + [ + 52.4966122, + 13.3734212 + ], + [ + 52.4971627, + 13.3739095 + ], + [ + 52.4974005, + 13.3741825 + ], + [ + 52.4976159, + 13.3744922 + ], + [ + 52.4979895, + 13.3750751 + ], + [ + 52.4981681, + 13.3754038 + ], + [ + 52.4983421, + 13.3757676 + ], + [ + 52.4987727, + 13.3768724 + ], + [ + 52.4992211, + 13.3779448 + ] + ] + }, + { + "osmId": "26547949", + "name": "U2", + "lengthMeters": 1045.4140988178094, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969474, + 13.3685244 + ], + [ + 52.496997, + 13.3719094 + ], + [ + 52.4970063, + 13.3721625 + ], + [ + 52.4970324, + 13.3724172 + ], + [ + 52.4970731, + 13.3726294 + ], + [ + 52.4971388, + 13.3728439 + ], + [ + 52.4972288, + 13.3730627 + ], + [ + 52.497306, + 13.373193 + ], + [ + 52.4973994, + 13.3733209 + ], + [ + 52.4975018, + 13.3734402 + ], + [ + 52.4976395, + 13.3735468 + ], + [ + 52.4978598, + 13.3736623 + ], + [ + 52.4983874, + 13.3739098 + ], + [ + 52.4986514, + 13.3740042 + ], + [ + 52.4991764, + 13.3741904 + ], + [ + 52.499266, + 13.3742217 + ], + [ + 52.4994335, + 13.3742835 + ], + [ + 52.4995298, + 13.3743042 + ], + [ + 52.4996312, + 13.3743136 + ], + [ + 52.4997527, + 13.3743116 + ], + [ + 52.499804, + 13.3743078 + ], + [ + 52.499907, + 13.3743002 + ], + [ + 52.5000162, + 13.3742819 + ], + [ + 52.5001218, + 13.3742505 + ], + [ + 52.500228, + 13.3742097 + ], + [ + 52.5004485, + 13.3741272 + ], + [ + 52.5006308, + 13.3740991 + ], + [ + 52.500777, + 13.3740976 + ], + [ + 52.5009121, + 13.3741076 + ], + [ + 52.5011778, + 13.3741687 + ], + [ + 52.5018187, + 13.3743184 + ], + [ + 52.5024168, + 13.3744844 + ], + [ + 52.5033274, + 13.3747465 + ], + [ + 52.5035492, + 13.374816 + ], + [ + 52.5036094, + 13.3748383 + ] + ] + }, + { + "osmId": "26547952", + "name": null, + "lengthMeters": 282.7319783613487, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969762, + 13.3685258 + ], + [ + 52.4969698, + 13.3678714 + ], + [ + 52.4969825, + 13.3676566 + ], + [ + 52.4970059, + 13.3674712 + ], + [ + 52.4970153, + 13.367418 + ], + [ + 52.4971901, + 13.3664692 + ], + [ + 52.4972126, + 13.3663117 + ], + [ + 52.4972211, + 13.3662154 + ], + [ + 52.497226, + 13.3661079 + ], + [ + 52.4972247, + 13.3659486 + ], + [ + 52.4972151, + 13.3655006 + ], + [ + 52.4972231, + 13.3653081 + ], + [ + 52.497235, + 13.365184 + ], + [ + 52.4972924, + 13.3648429 + ], + [ + 52.49737, + 13.3644393 + ] + ] + }, + { + "osmId": "26556661", + "name": null, + "lengthMeters": 500.9952076575327, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5395451, + 13.359832 + ], + [ + 52.539767, + 13.3603455 + ], + [ + 52.5399752, + 13.3608202 + ], + [ + 52.5402747, + 13.3615669 + ], + [ + 52.5405287, + 13.3621594 + ], + [ + 52.5409494, + 13.3630757 + ], + [ + 52.541334, + 13.3638886 + ], + [ + 52.5416007, + 13.3644725 + ], + [ + 52.5419772, + 13.3653268 + ], + [ + 52.5421252, + 13.3656566 + ], + [ + 52.5421786, + 13.3657794 + ], + [ + 52.5421961, + 13.3658197 + ] + ] + }, + { + "osmId": "26556713", + "name": null, + "lengthMeters": 398.70094349141596, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483055, + 13.3822692 + ], + [ + 52.5483315, + 13.3826288 + ], + [ + 52.5483819, + 13.3835977 + ], + [ + 52.5484011, + 13.3838851 + ], + [ + 52.548427, + 13.3841789 + ], + [ + 52.5484771, + 13.3846057 + ], + [ + 52.5485404, + 13.3850447 + ], + [ + 52.5486099, + 13.3854967 + ], + [ + 52.5487612, + 13.3864976 + ], + [ + 52.5487875, + 13.3866711 + ], + [ + 52.5488175, + 13.3868573 + ], + [ + 52.5488785, + 13.3872593 + ], + [ + 52.5489918, + 13.3880151 + ], + [ + 52.5489932, + 13.3880248 + ], + [ + 52.5489959, + 13.3880426 + ] + ] + }, + { + "osmId": "26556715", + "name": "Berliner Ringbahn", + "lengthMeters": 255.9525289015957, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467524, + 13.3765261 + ], + [ + 52.5469901, + 13.3770997 + ], + [ + 52.5471163, + 13.3774317 + ], + [ + 52.5472342, + 13.3777722 + ], + [ + 52.5473126, + 13.3780147 + ], + [ + 52.5474079, + 13.3783329 + ], + [ + 52.5475279, + 13.3787607 + ], + [ + 52.5475805, + 13.3789484 + ], + [ + 52.5478145, + 13.3798721 + ] + ] + }, + { + "osmId": "26556717", + "name": "Berliner Ringbahn", + "lengthMeters": 354.89528422691774, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5445316, + 13.3713087 + ], + [ + 52.5445908, + 13.3714465 + ], + [ + 52.5450227, + 13.3724659 + ], + [ + 52.5457384, + 13.3741406 + ], + [ + 52.5458327, + 13.3743611 + ], + [ + 52.5462071, + 13.3752461 + ], + [ + 52.5463608, + 13.3756095 + ] + ] + }, + { + "osmId": "26556719", + "name": null, + "lengthMeters": 358.48229149693327, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5445709, + 13.371158 + ], + [ + 52.5446023, + 13.3712275 + ], + [ + 52.544754, + 13.3715885 + ], + [ + 52.5448844, + 13.3718885 + ], + [ + 52.54516, + 13.3725306 + ], + [ + 52.5457192, + 13.3738531 + ], + [ + 52.5457821, + 13.3740028 + ], + [ + 52.546179, + 13.3749292 + ], + [ + 52.5464211, + 13.3754993 + ] + ] + }, + { + "osmId": "26600815", + "name": null, + "lengthMeters": 708.8702443150758, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2191648, + 11.4567785 + ], + [ + 48.218831, + 11.4569303 + ], + [ + 48.2181312, + 11.4573019 + ], + [ + 48.2179793, + 11.4573743 + ], + [ + 48.2178255, + 11.4574457 + ], + [ + 48.2176579, + 11.4575197 + ], + [ + 48.2164034, + 11.4580121 + ], + [ + 48.2161704, + 11.4581045 + ], + [ + 48.2160557, + 11.45815 + ], + [ + 48.2156259, + 11.4583152 + ], + [ + 48.2155509, + 11.458344 + ], + [ + 48.2147847, + 11.4586386 + ], + [ + 48.2130209, + 11.4593151 + ] + ] + }, + { + "osmId": "26600816", + "name": null, + "lengthMeters": 3895.801937264306, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2080116, + 11.4608993 + ], + [ + 48.2086725, + 11.4606364 + ], + [ + 48.21122, + 11.4596348 + ], + [ + 48.2125696, + 11.4591039 + ], + [ + 48.2146032, + 11.4583138 + ], + [ + 48.2212633, + 11.4557051 + ], + [ + 48.2286042, + 11.4528273 + ], + [ + 48.2315238, + 11.451683 + ], + [ + 48.2332734, + 11.4509958 + ], + [ + 48.2386525, + 11.4488782 + ], + [ + 48.2419094, + 11.4476048 + ] + ] + }, + { + "osmId": "26621353", + "name": null, + "lengthMeters": 91.00447869227298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4902668, + 10.2068323 + ], + [ + 53.4901183, + 10.2065369 + ], + [ + 53.4897414, + 10.2057776 + ] + ] + }, + { + "osmId": "26621384", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 422.567104953152, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4931026, + 10.2131851 + ], + [ + 53.4930504, + 10.2130731 + ], + [ + 53.4930031, + 10.2129658 + ], + [ + 53.492902, + 10.2127271 + ], + [ + 53.4928143, + 10.2125243 + ], + [ + 53.4926717, + 10.2122048 + ], + [ + 53.4923244, + 10.2114745 + ], + [ + 53.4915807, + 10.2099237 + ], + [ + 53.4913874, + 10.2095173 + ], + [ + 53.4907317, + 10.2081948 + ] + ] + }, + { + "osmId": "26641926", + "name": null, + "lengthMeters": 195.85411608788925, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6515777, + 10.0935333 + ], + [ + 53.6514789, + 10.0934806 + ], + [ + 53.651285, + 10.0933856 + ], + [ + 53.6512518, + 10.0933747 + ], + [ + 53.6511002, + 10.093325 + ], + [ + 53.6509718, + 10.0932665 + ], + [ + 53.6507363, + 10.0931627 + ], + [ + 53.6506119, + 10.0931102 + ], + [ + 53.6504986, + 10.0930513 + ], + [ + 53.6503735, + 10.0929809 + ], + [ + 53.6502521, + 10.092909 + ], + [ + 53.6499707, + 10.0927274 + ], + [ + 53.6498936, + 10.0926776 + ] + ] + }, + { + "osmId": "26651753", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 267.26711717299105, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5952689, + 10.035984 + ], + [ + 53.5952616, + 10.0359861 + ], + [ + 53.5949744, + 10.0360697 + ], + [ + 53.5947679, + 10.0361385 + ], + [ + 53.5942009, + 10.0363181 + ], + [ + 53.5940706, + 10.0363627 + ], + [ + 53.5934593, + 10.0365925 + ], + [ + 53.5931124, + 10.036727 + ], + [ + 53.5929147, + 10.0367972 + ] + ] + }, + { + "osmId": "26651780", + "name": null, + "lengthMeters": 102.81029891173759, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5921946, + 10.0369616 + ], + [ + 53.5924515, + 10.0369448 + ], + [ + 53.5931185, + 10.0369012 + ] + ] + }, + { + "osmId": "26651802", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 460.054972671788, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5911611, + 10.0374668 + ], + [ + 53.5908432, + 10.0375845 + ], + [ + 53.5905336, + 10.0377166 + ], + [ + 53.5905148, + 10.0377271 + ], + [ + 53.5902261, + 10.0378886 + ], + [ + 53.5898521, + 10.038173 + ], + [ + 53.5895066, + 10.0385234 + ], + [ + 53.5891542, + 10.0389789 + ], + [ + 53.5888464, + 10.0394815 + ], + [ + 53.5885569, + 10.0400694 + ], + [ + 53.5883494, + 10.0406111 + ], + [ + 53.5881972, + 10.0411233 + ], + [ + 53.5881255, + 10.0414447 + ], + [ + 53.5880895, + 10.0416058 + ] + ] + }, + { + "osmId": "26652609", + "name": null, + "lengthMeters": 402.40942407289475, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.563703, + 10.0514198 + ], + [ + 53.5637062, + 10.0514621 + ], + [ + 53.5637651, + 10.052016 + ], + [ + 53.5638157, + 10.0524601 + ], + [ + 53.5638239, + 10.0525188 + ], + [ + 53.5638553, + 10.0527433 + ], + [ + 53.5639386, + 10.0533381 + ], + [ + 53.5641124, + 10.0542443 + ], + [ + 53.5643836, + 10.0553898 + ], + [ + 53.5645162, + 10.0559463 + ], + [ + 53.5646122, + 10.056312 + ], + [ + 53.5647786, + 10.0569216 + ], + [ + 53.5647901, + 10.0569678 + ], + [ + 53.5648188, + 10.0570634 + ], + [ + 53.5648486, + 10.0571732 + ] + ] + }, + { + "osmId": "26652657", + "name": null, + "lengthMeters": 171.07388508059276, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5634382, + 10.0463639 + ], + [ + 53.5634616, + 10.0465836 + ], + [ + 53.5635016, + 10.0470785 + ], + [ + 53.5635655, + 10.0480605 + ], + [ + 53.5636167, + 10.0489361 + ] + ] + }, + { + "osmId": "26652658", + "name": null, + "lengthMeters": 346.86515556609316, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5633191, + 10.0459285 + ], + [ + 53.5633235, + 10.0459621 + ], + [ + 53.5633383, + 10.0461237 + ], + [ + 53.5633876, + 10.046558 + ], + [ + 53.5634058, + 10.0467459 + ], + [ + 53.5634372, + 10.0471123 + ], + [ + 53.563558, + 10.0490965 + ], + [ + 53.563673, + 10.0510165 + ], + [ + 53.5636824, + 10.0511427 + ] + ] + }, + { + "osmId": "26652671", + "name": null, + "lengthMeters": 162.11540468404652, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.562963, + 10.0433174 + ], + [ + 53.5629921, + 10.0434463 + ], + [ + 53.5630892, + 10.04396 + ], + [ + 53.5632239, + 10.0447292 + ], + [ + 53.5633488, + 10.0455899 + ], + [ + 53.5633599, + 10.0456777 + ] + ] + }, + { + "osmId": "26652674", + "name": null, + "lengthMeters": 161.97874934383916, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628889, + 10.0433236 + ], + [ + 53.5629202, + 10.0434659 + ], + [ + 53.5629221, + 10.0434765 + ], + [ + 53.5630287, + 10.0440055 + ], + [ + 53.5631599, + 10.0447693 + ], + [ + 53.5632777, + 10.0456138 + ], + [ + 53.5632865, + 10.0456808 + ] + ] + }, + { + "osmId": "26652693", + "name": null, + "lengthMeters": 622.1027767215994, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5553758, + 10.0259126 + ], + [ + 53.5555312, + 10.0259825 + ], + [ + 53.5556386, + 10.0260441 + ], + [ + 53.5558518, + 10.0261729 + ], + [ + 53.5560446, + 10.0263276 + ], + [ + 53.5562253, + 10.0264824 + ], + [ + 53.5563669, + 10.0266098 + ], + [ + 53.5566468, + 10.0269321 + ], + [ + 53.5568011, + 10.0271636 + ], + [ + 53.5569335, + 10.0273817 + ], + [ + 53.5571925, + 10.0279335 + ], + [ + 53.5575594, + 10.0288311 + ], + [ + 53.5575762, + 10.0288773 + ], + [ + 53.5581191, + 10.0302447 + ], + [ + 53.5581472, + 10.030305 + ], + [ + 53.5590648, + 10.0326465 + ] + ] + }, + { + "osmId": "26674820", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 968.19022603241, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5010655, + 10.2405395 + ], + [ + 53.5017294, + 10.2413747 + ], + [ + 53.5024768, + 10.2422048 + ], + [ + 53.5027079, + 10.2424365 + ], + [ + 53.5027496, + 10.2424841 + ], + [ + 53.5032825, + 10.2430914 + ], + [ + 53.5037681, + 10.2437134 + ], + [ + 53.5045422, + 10.2447745 + ], + [ + 53.5049238, + 10.2453625 + ], + [ + 53.5049589, + 10.245421 + ], + [ + 53.5052414, + 10.2458928 + ], + [ + 53.5054844, + 10.2463141 + ], + [ + 53.505733, + 10.246745 + ], + [ + 53.5061016, + 10.247485 + ], + [ + 53.5064179, + 10.2480979 + ], + [ + 53.5066965, + 10.2486778 + ], + [ + 53.5070503, + 10.2495877 + ], + [ + 53.5073608, + 10.2504349 + ] + ] + }, + { + "osmId": "26678403", + "name": null, + "lengthMeters": 378.4632326452171, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6540247, + 10.192548 + ], + [ + 53.6547805, + 10.1939551 + ], + [ + 53.6565632, + 10.1963485 + ] + ] + }, + { + "osmId": "26683729", + "name": null, + "lengthMeters": 141.59472427283305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5655278, + 9.8244234 + ], + [ + 53.5655756, + 9.8237488 + ], + [ + 53.5655923, + 9.823492 + ], + [ + 53.565606, + 9.8232341 + ], + [ + 53.5656175, + 9.8229674 + ], + [ + 53.5656264, + 9.8226411 + ], + [ + 53.5656284, + 9.8222877 + ] + ] + }, + { + "osmId": "26683779", + "name": null, + "lengthMeters": 314.445876193383, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5593665, + 9.8464149 + ], + [ + 53.5598546, + 9.8450854 + ], + [ + 53.5599667, + 9.844817 + ], + [ + 53.5601539, + 9.8443691 + ], + [ + 53.5604942, + 9.8437137 + ], + [ + 53.5610825, + 9.8426524 + ] + ] + }, + { + "osmId": "26683847", + "name": null, + "lengthMeters": 261.3732146575369, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5592394, + 9.846657 + ], + [ + 53.558862, + 9.8479546 + ], + [ + 53.5586988, + 9.8486117 + ], + [ + 53.5585376, + 9.8492609 + ], + [ + 53.5583204, + 9.8502947 + ] + ] + }, + { + "osmId": "26683857", + "name": null, + "lengthMeters": 484.09670543418866, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5582686, + 9.8505506 + ], + [ + 53.558049, + 9.8519588 + ], + [ + 53.5579082, + 9.8530671 + ], + [ + 53.5578896, + 9.8533024 + ], + [ + 53.5577612, + 9.8549221 + ], + [ + 53.5577297, + 9.8559157 + ], + [ + 53.5577286, + 9.8568839 + ], + [ + 53.557738, + 9.8571571 + ], + [ + 53.5577667, + 9.8577868 + ] + ] + }, + { + "osmId": "26683947", + "name": null, + "lengthMeters": 858.020822280039, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5582936, + 9.8650213 + ], + [ + 53.5583257, + 9.8657552 + ], + [ + 53.5583768, + 9.866489 + ], + [ + 53.558381, + 9.8665488 + ], + [ + 53.5585013, + 9.8680548 + ], + [ + 53.558608, + 9.8695663 + ], + [ + 53.5586106, + 9.8696091 + ], + [ + 53.5586957, + 9.8710307 + ], + [ + 53.5588231, + 9.8744948 + ], + [ + 53.5589263, + 9.8779618 + ] + ] + }, + { + "osmId": "26684179", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 88.58405479656805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5600061, + 9.9114365 + ], + [ + 53.5600124, + 9.9116851 + ], + [ + 53.5600355, + 9.9125544 + ], + [ + 53.5600383, + 9.9126504 + ], + [ + 53.5600389, + 9.9127765 + ] + ] + }, + { + "osmId": "26684223", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 369.5052944306888, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.560051, + 9.9145324 + ], + [ + 53.5600477, + 9.9146533 + ], + [ + 53.5600439, + 9.9147201 + ], + [ + 53.5600021, + 9.9158012 + ], + [ + 53.5599868, + 9.9162244 + ], + [ + 53.5599657, + 9.9168098 + ], + [ + 53.5598953, + 9.9185108 + ], + [ + 53.5598533, + 9.9193945 + ], + [ + 53.5598192, + 9.9201131 + ] + ] + }, + { + "osmId": "26684319", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 390.88169695751606, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.559788, + 9.9206694 + ], + [ + 53.5597466, + 9.9214335 + ], + [ + 53.5597444, + 9.9214741 + ], + [ + 53.5597302, + 9.9217222 + ], + [ + 53.5596871, + 9.9224723 + ], + [ + 53.559664, + 9.922961 + ], + [ + 53.5596425, + 9.9234586 + ], + [ + 53.5596309, + 9.9237971 + ], + [ + 53.5596113, + 9.9244055 + ], + [ + 53.5595411, + 9.926572 + ] + ] + }, + { + "osmId": "26706299", + "name": null, + "lengthMeters": 132.2351810539883, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.503097, + 13.295929 + ], + [ + 52.5034883, + 13.2977301 + ], + [ + 52.5034967, + 13.297769 + ] + ] + }, + { + "osmId": "26711536", + "name": null, + "lengthMeters": 446.0244944138435, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356748, + 11.5978922 + ], + [ + 48.1356777, + 11.5978726 + ], + [ + 48.1356853, + 11.5978116 + ], + [ + 48.1356973, + 11.5977429 + ], + [ + 48.1357037, + 11.5977081 + ], + [ + 48.135941, + 11.5965177 + ], + [ + 48.1359667, + 11.5964036 + ], + [ + 48.13601, + 11.5962352 + ], + [ + 48.1360293, + 11.596148 + ], + [ + 48.1360477, + 11.596069 + ], + [ + 48.1360706, + 11.5959873 + ], + [ + 48.1360915, + 11.5959256 + ], + [ + 48.1361125, + 11.5958679 + ], + [ + 48.13614, + 11.5958082 + ], + [ + 48.1361718, + 11.595749 + ], + [ + 48.1362058, + 11.5956874 + ], + [ + 48.1362445, + 11.595628 + ], + [ + 48.1362852, + 11.5955738 + ], + [ + 48.1363179, + 11.5955392 + ], + [ + 48.1363885, + 11.5954791 + ], + [ + 48.1365261, + 11.5953916 + ], + [ + 48.1366054, + 11.5953509 + ], + [ + 48.1366787, + 11.5953065 + ], + [ + 48.1367468, + 11.5952483 + ], + [ + 48.1368107, + 11.5951825 + ], + [ + 48.136863, + 11.595115 + ], + [ + 48.1369158, + 11.595032 + ], + [ + 48.1369817, + 11.5948923 + ], + [ + 48.1370212, + 11.5947898 + ], + [ + 48.137062, + 11.5946614 + ], + [ + 48.1370785, + 11.5945355 + ], + [ + 48.1370858, + 11.5944013 + ], + [ + 48.1370771, + 11.5942493 + ], + [ + 48.1370603, + 11.5940975 + ], + [ + 48.1370129, + 11.5938938 + ], + [ + 48.1369707, + 11.5937821 + ], + [ + 48.1369134, + 11.5936611 + ], + [ + 48.1368008, + 11.5935071 + ], + [ + 48.1366929, + 11.5933778 + ], + [ + 48.1366652, + 11.5933353 + ], + [ + 48.1366475, + 11.5932884 + ], + [ + 48.1366255, + 11.5932042 + ], + [ + 48.1366166, + 11.5931579 + ], + [ + 48.1366165, + 11.5931174 + ], + [ + 48.1366267, + 11.5930442 + ], + [ + 48.1366417, + 11.5929588 + ] + ] + }, + { + "osmId": "26753928", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 211.3979441599791, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5442265, + 10.0350307 + ], + [ + 53.5443012, + 10.0349724 + ], + [ + 53.5450126, + 10.0344405 + ], + [ + 53.5459533, + 10.0336927 + ] + ] + }, + { + "osmId": "26753964", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 166.5377942031729, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5427205, + 10.0361868 + ], + [ + 53.5431571, + 10.0358524 + ], + [ + 53.5433098, + 10.0357355 + ], + [ + 53.5439993, + 10.0352077 + ], + [ + 53.5440835, + 10.0351421 + ] + ] + }, + { + "osmId": "26754216", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 261.02535241543745, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5279914, + 10.072251 + ], + [ + 53.5281805, + 10.0718405 + ], + [ + 53.5281962, + 10.0718065 + ], + [ + 53.528733, + 10.0706742 + ], + [ + 53.5294404, + 10.069237 + ], + [ + 53.5294679, + 10.0691812 + ] + ] + }, + { + "osmId": "26755566", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 156.2645665573696, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5871111, + 10.046553 + ], + [ + 53.5869866, + 10.0469964 + ], + [ + 53.5869249, + 10.0472028 + ], + [ + 53.5868825, + 10.0473283 + ], + [ + 53.5868599, + 10.0473952 + ], + [ + 53.5868436, + 10.0474434 + ], + [ + 53.5867697, + 10.0476537 + ], + [ + 53.5867171, + 10.047788 + ], + [ + 53.5866439, + 10.0479472 + ], + [ + 53.5865716, + 10.0480983 + ], + [ + 53.586485, + 10.048257 + ], + [ + 53.5863392, + 10.0485101 + ] + ] + }, + { + "osmId": "26757071", + "name": null, + "lengthMeters": 359.198269694243, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5340065, + 13.4051248 + ], + [ + 52.5338825, + 13.4050088 + ], + [ + 52.5335336, + 13.4046785 + ], + [ + 52.533228, + 13.4043913 + ], + [ + 52.5331468, + 13.4043152 + ], + [ + 52.5330595, + 13.4042386 + ], + [ + 52.5330077, + 13.4041884 + ], + [ + 52.532252, + 13.4034349 + ], + [ + 52.5319665, + 13.4031532 + ], + [ + 52.5314717, + 13.4026708 + ], + [ + 52.5313495, + 13.4025644 + ], + [ + 52.5313162, + 13.4025372 + ], + [ + 52.5312241, + 13.4024618 + ], + [ + 52.5312151, + 13.4024545 + ] + ] + }, + { + "osmId": "26757075", + "name": null, + "lengthMeters": 372.6364447162598, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5165424, + 10.0106345 + ], + [ + 53.5150592, + 10.0099752 + ], + [ + 53.5140342, + 10.0095353 + ], + [ + 53.5139143, + 10.0094835 + ], + [ + 53.5135123, + 10.0093118 + ], + [ + 53.5132968, + 10.009232 + ] + ] + }, + { + "osmId": "26757104", + "name": null, + "lengthMeters": 362.53050189142573, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5133241, + 10.0089534 + ], + [ + 53.516479, + 10.0103364 + ] + ] + }, + { + "osmId": "26796767", + "name": null, + "lengthMeters": 131.91471557155933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.587059, + 10.0442472 + ], + [ + 53.5870024, + 10.044595 + ], + [ + 53.5868356, + 10.045621 + ], + [ + 53.5867438, + 10.0461739 + ] + ] + }, + { + "osmId": "26796856", + "name": null, + "lengthMeters": 165.37235942162928, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5903551, + 10.0379189 + ], + [ + 53.5901496, + 10.0379013 + ], + [ + 53.5900583, + 10.0378976 + ], + [ + 53.5899345, + 10.0379016 + ], + [ + 53.5898475, + 10.0379124 + ], + [ + 53.5897724, + 10.0379232 + ], + [ + 53.5896808, + 10.0379408 + ], + [ + 53.5895705, + 10.0379756 + ], + [ + 53.589464, + 10.0380168 + ], + [ + 53.5893976, + 10.0380464 + ], + [ + 53.5892797, + 10.0381196 + ], + [ + 53.5892015, + 10.0381739 + ], + [ + 53.5891309, + 10.0382256 + ], + [ + 53.589001, + 10.0383382 + ], + [ + 53.5889239, + 10.0384098 + ] + ] + }, + { + "osmId": "26796862", + "name": null, + "lengthMeters": 87.20768701979335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5889239, + 10.0384098 + ], + [ + 53.5888773, + 10.0384571 + ], + [ + 53.5888121, + 10.0385335 + ], + [ + 53.588666, + 10.0387541 + ], + [ + 53.5885009, + 10.0390321 + ], + [ + 53.5883456, + 10.0392966 + ] + ] + }, + { + "osmId": "26796878", + "name": null, + "lengthMeters": 140.8435545278718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5915079, + 10.0387452 + ], + [ + 53.5913802, + 10.0385971 + ], + [ + 53.591224, + 10.0384222 + ], + [ + 53.5911962, + 10.0383979 + ], + [ + 53.5910649, + 10.038283 + ], + [ + 53.5908965, + 10.0381584 + ], + [ + 53.5907231, + 10.0380555 + ], + [ + 53.5905473, + 10.0379799 + ], + [ + 53.5903551, + 10.0379189 + ] + ] + }, + { + "osmId": "26797023", + "name": null, + "lengthMeters": 545.7063531890981, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5921717, + 10.0671087 + ], + [ + 53.5930162, + 10.06249 + ], + [ + 53.5931009, + 10.0620144 + ], + [ + 53.5931728, + 10.0615322 + ], + [ + 53.593224, + 10.0610313 + ], + [ + 53.5932613, + 10.0605284 + ], + [ + 53.5933504, + 10.0591093 + ] + ] + }, + { + "osmId": "26797034", + "name": null, + "lengthMeters": 290.8314688469302, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5926089, + 10.0751917 + ], + [ + 53.5926021, + 10.0751572 + ], + [ + 53.5924621, + 10.0744873 + ], + [ + 53.5923923, + 10.0741472 + ], + [ + 53.5921604, + 10.0730388 + ], + [ + 53.5920943, + 10.0727003 + ], + [ + 53.592055, + 10.0724504 + ], + [ + 53.5920095, + 10.072022 + ], + [ + 53.5919282, + 10.0709558 + ] + ] + }, + { + "osmId": "26829342", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 204.20715093419074, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6027278, + 9.9979208 + ], + [ + 53.6029038, + 9.9984998 + ], + [ + 53.6031657, + 9.9994517 + ], + [ + 53.603277, + 9.9998591 + ], + [ + 53.6032992, + 9.9999491 + ], + [ + 53.6033875, + 10.0003072 + ], + [ + 53.6034886, + 10.000736 + ] + ] + }, + { + "osmId": "26829376", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 307.90069680007406, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6038522, + 10.0023845 + ], + [ + 53.6040322, + 10.0032457 + ], + [ + 53.6046615, + 10.0056195 + ], + [ + 53.6049339, + 10.0066779 + ] + ] + }, + { + "osmId": "26968463", + "name": null, + "lengthMeters": 826.8697955008751, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1586552, + 11.5114914 + ], + [ + 48.1587447, + 11.5114906 + ], + [ + 48.1588623, + 11.51149 + ], + [ + 48.1591553, + 11.5114844 + ], + [ + 48.1594309, + 11.5114808 + ], + [ + 48.1598172, + 11.5114791 + ], + [ + 48.1607695, + 11.511434 + ], + [ + 48.1611119, + 11.5114178 + ], + [ + 48.1611858, + 11.5114098 + ], + [ + 48.1612768, + 11.5113922 + ], + [ + 48.161346, + 11.5113705 + ], + [ + 48.1613947, + 11.5113479 + ], + [ + 48.1614406, + 11.5113212 + ], + [ + 48.1614873, + 11.5112852 + ], + [ + 48.1615325, + 11.5112461 + ], + [ + 48.1615769, + 11.5112007 + ], + [ + 48.1616152, + 11.5111498 + ], + [ + 48.1618502, + 11.5108141 + ], + [ + 48.1618855, + 11.5107518 + ], + [ + 48.1621316, + 11.510318 + ], + [ + 48.1622919, + 11.5100169 + ], + [ + 48.1625823, + 11.5094696 + ], + [ + 48.1628688, + 11.5089197 + ], + [ + 48.1632236, + 11.5082009 + ], + [ + 48.1635035, + 11.5076066 + ], + [ + 48.1637207, + 11.5071129 + ], + [ + 48.1637471, + 11.5070529 + ], + [ + 48.1637866, + 11.5069474 + ], + [ + 48.1638467, + 11.5067831 + ], + [ + 48.1638972, + 11.506634 + ], + [ + 48.1639893, + 11.506335 + ], + [ + 48.1640421, + 11.5061432 + ], + [ + 48.164081, + 11.5059798 + ], + [ + 48.1641068, + 11.5058625 + ], + [ + 48.1641305, + 11.5057369 + ] + ] + }, + { + "osmId": "26995151", + "name": "Pinneberger S-Bahn", + "lengthMeters": 675.4416893364046, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6026384, + 9.8933409 + ], + [ + 53.6020601, + 9.8944733 + ], + [ + 53.60201, + 9.8945713 + ], + [ + 53.601617, + 9.8953391 + ], + [ + 53.6015508, + 9.8954684 + ], + [ + 53.6013416, + 9.8958891 + ], + [ + 53.6011749, + 9.8962097 + ], + [ + 53.6001748, + 9.898248 + ], + [ + 53.5999306, + 9.89873 + ], + [ + 53.5996572, + 9.8992679 + ], + [ + 53.5993871, + 9.8997944 + ], + [ + 53.5989717, + 9.9006269 + ], + [ + 53.5987114, + 9.90115 + ] + ] + }, + { + "osmId": "27003907", + "name": null, + "lengthMeters": 304.90726448576174, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5903372, + 9.9172987 + ], + [ + 53.5903226, + 9.9173203 + ], + [ + 53.5900836, + 9.9176719 + ], + [ + 53.5900433, + 9.9177312 + ], + [ + 53.5898287, + 9.918076 + ], + [ + 53.5897703, + 9.9181726 + ], + [ + 53.5894622, + 9.9187211 + ], + [ + 53.5893966, + 9.9188342 + ], + [ + 53.5893784, + 9.9188704 + ], + [ + 53.5892491, + 9.919127 + ], + [ + 53.5890825, + 9.9194579 + ], + [ + 53.5890285, + 9.9195651 + ], + [ + 53.5887067, + 9.9202351 + ], + [ + 53.588481, + 9.9206876 + ] + ] + }, + { + "osmId": "27004198", + "name": "Pinneberger S-Bahn", + "lengthMeters": 79.86889813580473, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6031071, + 9.8924238 + ], + [ + 53.6030327, + 9.8925785 + ], + [ + 53.6028421, + 9.8929513 + ], + [ + 53.6027551, + 9.8931177 + ], + [ + 53.6026384, + 9.8933409 + ] + ] + }, + { + "osmId": "27004762", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 150.19187106999266, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6026844, + 9.9186544 + ], + [ + 53.6031225, + 9.9193661 + ], + [ + 53.6034901, + 9.9200138 + ], + [ + 53.6035673, + 9.9201567 + ], + [ + 53.603626, + 9.9202841 + ] + ] + }, + { + "osmId": "27006469", + "name": null, + "lengthMeters": 4053.387104494251, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3720195, + 13.6150064 + ], + [ + 52.372301, + 13.6148318 + ], + [ + 52.3730366, + 13.6143288 + ], + [ + 52.37408, + 13.6135659 + ], + [ + 52.3750813, + 13.6128744 + ], + [ + 52.3755245, + 13.6125769 + ], + [ + 52.3756593, + 13.6124864 + ], + [ + 52.375715, + 13.6124502 + ], + [ + 52.3757706, + 13.6124148 + ], + [ + 52.3758946, + 13.6123354 + ], + [ + 52.3780148, + 13.610978 + ], + [ + 52.3784322, + 13.6107084 + ], + [ + 52.3787751, + 13.6104873 + ], + [ + 52.3791858, + 13.6102226 + ], + [ + 52.3795894, + 13.6099624 + ], + [ + 52.3835506, + 13.6074211 + ], + [ + 52.3839222, + 13.6071826 + ], + [ + 52.3860506, + 13.6058195 + ], + [ + 52.3875517, + 13.6048429 + ], + [ + 52.3875625, + 13.6048359 + ], + [ + 52.3912103, + 13.6024929 + ], + [ + 52.3926243, + 13.6015784 + ], + [ + 52.3932772, + 13.6011264 + ], + [ + 52.3936555, + 13.6008531 + ], + [ + 52.3942124, + 13.6003908 + ], + [ + 52.3946007, + 13.6000613 + ], + [ + 52.3950797, + 13.5996009 + ], + [ + 52.3956149, + 13.599078 + ], + [ + 52.395764, + 13.598908 + ], + [ + 52.3961683, + 13.598447 + ], + [ + 52.3966383, + 13.5978408 + ], + [ + 52.3970147, + 13.5973205 + ], + [ + 52.400519, + 13.5920595 + ], + [ + 52.4023336, + 13.5893351 + ], + [ + 52.4034188, + 13.5877056 + ], + [ + 52.4035119, + 13.5875659 + ], + [ + 52.4037613, + 13.5871914 + ] + ] + }, + { + "osmId": "27021878", + "name": null, + "lengthMeters": 752.5226406825898, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6162966, + 9.866912 + ], + [ + 53.616099, + 9.867319 + ], + [ + 53.6160422, + 9.8674361 + ], + [ + 53.6158536, + 9.8678247 + ], + [ + 53.6151392, + 9.869236 + ], + [ + 53.6141428, + 9.8710142 + ], + [ + 53.6134002, + 9.8724417 + ], + [ + 53.6118366, + 9.8754889 + ] + ] + }, + { + "osmId": "27022017", + "name": null, + "lengthMeters": 2962.897229638411, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6530466, + 9.8006005 + ], + [ + 53.6527454, + 9.8010451 + ], + [ + 53.6523884, + 9.8015717 + ], + [ + 53.652116, + 9.8019706 + ], + [ + 53.6517188, + 9.8025551 + ], + [ + 53.651653, + 9.8026519 + ], + [ + 53.6509833, + 9.8036285 + ], + [ + 53.6501828, + 9.8048406 + ], + [ + 53.6500451, + 9.8050456 + ], + [ + 53.6442468, + 9.813701 + ], + [ + 53.643406, + 9.8149554 + ], + [ + 53.6417672, + 9.8173955 + ], + [ + 53.6408373, + 9.81883 + ], + [ + 53.6402704, + 9.8197793 + ], + [ + 53.6393818, + 9.8214717 + ], + [ + 53.6389675, + 9.8222816 + ], + [ + 53.6351549, + 9.8297346 + ], + [ + 53.6340219, + 9.8319435 + ] + ] + }, + { + "osmId": "27051152", + "name": null, + "lengthMeters": 347.76761693413346, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1634701, + 11.6471476 + ], + [ + 48.1639363, + 11.6469982 + ], + [ + 48.1641936, + 11.6469249 + ], + [ + 48.164513, + 11.6468418 + ], + [ + 48.1648361, + 11.6467543 + ], + [ + 48.1658876, + 11.6465001 + ], + [ + 48.1665502, + 11.6463383 + ] + ] + }, + { + "osmId": "27055932", + "name": null, + "lengthMeters": 183.85619584851392, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6903355, + 10.1374773 + ], + [ + 53.6919854, + 10.1372942 + ] + ] + }, + { + "osmId": "27055941", + "name": null, + "lengthMeters": 289.54926161829127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6875997, + 10.1383652 + ], + [ + 53.68773, + 10.138271 + ], + [ + 53.687891, + 10.1381644 + ], + [ + 53.6880746, + 10.1380501 + ], + [ + 53.6881721, + 10.1379967 + ], + [ + 53.6883721, + 10.1378963 + ], + [ + 53.6885312, + 10.1378207 + ], + [ + 53.6886763, + 10.1377664 + ], + [ + 53.6888199, + 10.137717 + ], + [ + 53.6889759, + 10.1376691 + ], + [ + 53.689137, + 10.1376319 + ], + [ + 53.6893581, + 10.1375934 + ], + [ + 53.6897037, + 10.137548 + ], + [ + 53.6901347, + 10.1374995 + ] + ] + }, + { + "osmId": "27058303", + "name": null, + "lengthMeters": 80.30577206750704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.444478, + 13.5712456 + ], + [ + 52.4444629, + 13.5724302 + ] + ] + }, + { + "osmId": "27072132", + "name": null, + "lengthMeters": 177.6190754311268, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6541038, + 10.1653614 + ], + [ + 53.6542323, + 10.1655451 + ], + [ + 53.6543929, + 10.1657983 + ], + [ + 53.6545545, + 10.1661219 + ], + [ + 53.6546842, + 10.1664185 + ], + [ + 53.6548255, + 10.1668044 + ], + [ + 53.6549358, + 10.1671971 + ], + [ + 53.6550135, + 10.1675327 + ] + ] + }, + { + "osmId": "27072492", + "name": null, + "lengthMeters": 1779.9612591740442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6567205, + 10.1965628 + ], + [ + 53.6574734, + 10.1975493 + ], + [ + 53.6589915, + 10.19963 + ], + [ + 53.6604537, + 10.2015248 + ], + [ + 53.661296, + 10.2026482 + ], + [ + 53.662313, + 10.2040957 + ], + [ + 53.662474, + 10.2043518 + ], + [ + 53.6625893, + 10.2045749 + ], + [ + 53.6640106, + 10.2077513 + ], + [ + 53.6645337, + 10.2090618 + ], + [ + 53.6648166, + 10.2097967 + ], + [ + 53.6649445, + 10.2101789 + ], + [ + 53.6650531, + 10.2105323 + ], + [ + 53.6651511, + 10.2109219 + ], + [ + 53.6652314, + 10.2112987 + ], + [ + 53.6653156, + 10.2117547 + ], + [ + 53.6653577, + 10.2120538 + ], + [ + 53.6653861, + 10.2123367 + ], + [ + 53.665407, + 10.2126143 + ], + [ + 53.6654236, + 10.2129671 + ], + [ + 53.6654324, + 10.2132903 + ], + [ + 53.6654305, + 10.2135954 + ], + [ + 53.6654038, + 10.2141003 + ], + [ + 53.6653779, + 10.2144028 + ], + [ + 53.6653472, + 10.2146773 + ], + [ + 53.6652953, + 10.2151217 + ], + [ + 53.6652516, + 10.2154113 + ], + [ + 53.6650798, + 10.2164342 + ], + [ + 53.6649435, + 10.2173351 + ] + ] + }, + { + "osmId": "27073082", + "name": null, + "lengthMeters": 473.1671845200089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6573449, + 10.2834419 + ], + [ + 53.6580072, + 10.2838804 + ], + [ + 53.6591767, + 10.2846698 + ], + [ + 53.6593042, + 10.2847559 + ], + [ + 53.6596793, + 10.2849703 + ], + [ + 53.6612732, + 10.2858816 + ], + [ + 53.6613237, + 10.2859098 + ], + [ + 53.6613376, + 10.2859184 + ] + ] + }, + { + "osmId": "27073646", + "name": null, + "lengthMeters": 91.25441183715178, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5980603, + 10.1016363 + ], + [ + 53.5981258, + 10.1019286 + ], + [ + 53.5983811, + 10.1029088 + ] + ] + }, + { + "osmId": "27073693", + "name": null, + "lengthMeters": 647.3322984580187, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5960324, + 10.0920663 + ], + [ + 53.5979889, + 10.1013053 + ] + ] + }, + { + "osmId": "27074386", + "name": null, + "lengthMeters": 118.2031146313209, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5584435, + 10.0240171 + ], + [ + 53.5586143, + 10.0246393 + ], + [ + 53.5588165, + 10.0253652 + ], + [ + 53.5588766, + 10.0256502 + ] + ] + }, + { + "osmId": "27074393", + "name": null, + "lengthMeters": 1280.8491567958665, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.567185, + 10.0434253 + ], + [ + 53.5670255, + 10.0421153 + ], + [ + 53.5669525, + 10.0415213 + ], + [ + 53.5668796, + 10.0409955 + ], + [ + 53.5668322, + 10.0407176 + ], + [ + 53.5668131, + 10.0406218 + ], + [ + 53.5667319, + 10.0402331 + ], + [ + 53.5666556, + 10.0399375 + ], + [ + 53.5665732, + 10.0396471 + ], + [ + 53.5665033, + 10.0394376 + ], + [ + 53.5664304, + 10.0392358 + ], + [ + 53.5663894, + 10.0391337 + ], + [ + 53.5663394, + 10.0390119 + ], + [ + 53.5652579, + 10.0366539 + ], + [ + 53.5651116, + 10.0363224 + ], + [ + 53.5646981, + 10.0353933 + ], + [ + 53.5644754, + 10.0348923 + ], + [ + 53.564415, + 10.0347568 + ], + [ + 53.5643398, + 10.0345945 + ], + [ + 53.5643128, + 10.0345421 + ], + [ + 53.5642892, + 10.0344993 + ], + [ + 53.5642695, + 10.0344634 + ], + [ + 53.5642466, + 10.0344249 + ], + [ + 53.5641817, + 10.0343211 + ], + [ + 53.564112, + 10.0342258 + ], + [ + 53.5639664, + 10.0340551 + ], + [ + 53.5636668, + 10.0337151 + ], + [ + 53.5633712, + 10.0334271 + ], + [ + 53.5621606, + 10.0322792 + ], + [ + 53.5617881, + 10.0318369 + ], + [ + 53.5615847, + 10.031565 + ], + [ + 53.5614571, + 10.0313742 + ], + [ + 53.5612171, + 10.0310032 + ], + [ + 53.5609045, + 10.0304591 + ], + [ + 53.5608138, + 10.0303003 + ], + [ + 53.5606265, + 10.0299368 + ], + [ + 53.5604302, + 10.0295057 + ], + [ + 53.5601734, + 10.0288737 + ] + ] + }, + { + "osmId": "27079356", + "name": null, + "lengthMeters": 394.7889517112926, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1297505, + 11.5364502 + ], + [ + 48.1299132, + 11.5360604 + ], + [ + 48.1300908, + 11.535675 + ], + [ + 48.1302844, + 11.5353045 + ], + [ + 48.1304907, + 11.5349491 + ], + [ + 48.1321318, + 11.5325292 + ] + ] + }, + { + "osmId": "27079523", + "name": null, + "lengthMeters": 588.218269390547, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1365984, + 11.5267287 + ], + [ + 48.1361321, + 11.5271046 + ], + [ + 48.1358481, + 11.527397 + ], + [ + 48.1355966, + 11.5276932 + ], + [ + 48.1351777, + 11.5282687 + ], + [ + 48.1351619, + 11.5282904 + ], + [ + 48.1350742, + 11.5284109 + ], + [ + 48.1346005, + 11.5290983 + ], + [ + 48.1331509, + 11.5311986 + ], + [ + 48.1326421, + 11.5319435 + ] + ] + }, + { + "osmId": "27079528", + "name": null, + "lengthMeters": 590.0001885176212, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1325884, + 11.5318602 + ], + [ + 48.1330975, + 11.5311151 + ], + [ + 48.1350195, + 11.5283232 + ], + [ + 48.1355375, + 11.5276073 + ], + [ + 48.1357888, + 11.5272872 + ], + [ + 48.1364755, + 11.5264557 + ] + ] + }, + { + "osmId": "27079529", + "name": null, + "lengthMeters": 474.1021810540296, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1325567, + 11.5318109 + ], + [ + 48.1325847, + 11.5317698 + ], + [ + 48.1326183, + 11.5317206 + ], + [ + 48.1329277, + 11.5312674 + ], + [ + 48.1330671, + 11.5310646 + ], + [ + 48.1340295, + 11.5296737 + ], + [ + 48.1345026, + 11.5289907 + ], + [ + 48.1349913, + 11.5282798 + ], + [ + 48.1352451, + 11.5279131 + ], + [ + 48.1355032, + 11.5275574 + ], + [ + 48.1356326, + 11.5273874 + ] + ] + }, + { + "osmId": "27079686", + "name": null, + "lengthMeters": 386.3632875950429, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402581, + 11.5270576 + ], + [ + 48.1401766, + 11.5269842 + ], + [ + 48.1400491, + 11.5268892 + ], + [ + 48.1397773, + 11.5267021 + ], + [ + 48.1394593, + 11.5265233 + ], + [ + 48.1391248, + 11.5263806 + ], + [ + 48.1388442, + 11.5262985 + ], + [ + 48.1385272, + 11.5262438 + ], + [ + 48.1382948, + 11.5262268 + ], + [ + 48.1380601, + 11.5262292 + ], + [ + 48.1377513, + 11.5262649 + ], + [ + 48.1372328, + 11.5264126 + ], + [ + 48.136906, + 11.5265572 + ] + ] + }, + { + "osmId": "27079820", + "name": null, + "lengthMeters": 349.1278208037349, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1170364, + 11.5361135 + ], + [ + 48.1172881, + 11.5361661 + ], + [ + 48.1175671, + 11.536227 + ], + [ + 48.118266, + 11.5363787 + ], + [ + 48.1191562, + 11.5365723 + ], + [ + 48.1193188, + 11.5366076 + ], + [ + 48.1197276, + 11.5366993 + ], + [ + 48.1201427, + 11.5367981 + ] + ] + }, + { + "osmId": "27100671", + "name": null, + "lengthMeters": 79.70320364529506, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6628861, + 10.2870174 + ], + [ + 53.6632226, + 10.287234 + ], + [ + 53.6635121, + 10.2874165 + ], + [ + 53.6635334, + 10.2874299 + ], + [ + 53.6635349, + 10.2874309 + ], + [ + 53.6635567, + 10.2874446 + ] + ] + }, + { + "osmId": "27104071", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 516.9774676385241, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1203241, + 11.5369944 + ], + [ + 48.1226123, + 11.5374821 + ], + [ + 48.1249264, + 11.5379821 + ] + ] + }, + { + "osmId": "27104119", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 650.5604653222914, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1108784, + 11.5362914 + ], + [ + 48.1115942, + 11.536273 + ], + [ + 48.1120003, + 11.5362626 + ], + [ + 48.1125704, + 11.5362479 + ], + [ + 48.1128644, + 11.53624 + ], + [ + 48.1133667, + 11.5362264 + ], + [ + 48.1147842, + 11.5361882 + ], + [ + 48.1150518, + 11.5361857 + ], + [ + 48.1155543, + 11.5361811 + ], + [ + 48.1159111, + 11.5361981 + ], + [ + 48.1162595, + 11.5362289 + ], + [ + 48.1164673, + 11.5362506 + ], + [ + 48.1166459, + 11.5362743 + ], + [ + 48.1167261, + 11.536285 + ] + ] + }, + { + "osmId": "27104145", + "name": null, + "lengthMeters": 382.7270377615281, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1167347, + 11.5360645 + ], + [ + 48.1164723, + 11.5360386 + ], + [ + 48.1162609, + 11.5360261 + ], + [ + 48.1159134, + 11.5360271 + ], + [ + 48.1157685, + 11.5360311 + ], + [ + 48.1150496, + 11.5360511 + ], + [ + 48.1136214, + 11.5360882 + ], + [ + 48.1134553, + 11.5360925 + ], + [ + 48.1132939, + 11.5360967 + ] + ] + }, + { + "osmId": "27104215", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 136.03999835067117, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1091601, + 11.5363889 + ], + [ + 48.1092166, + 11.536384 + ], + [ + 48.1092509, + 11.536381 + ], + [ + 48.1093477, + 11.5363726 + ], + [ + 48.1093584, + 11.5363717 + ], + [ + 48.109813, + 11.5363377 + ], + [ + 48.1100266, + 11.5363218 + ], + [ + 48.1103662, + 11.5363115 + ], + [ + 48.1103823, + 11.5363109 + ] + ] + }, + { + "osmId": "27121398", + "name": null, + "lengthMeters": 415.0836031535366, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6651928, + 10.0196557 + ], + [ + 53.6642341, + 10.0191968 + ], + [ + 53.6641174, + 10.0191409 + ], + [ + 53.6629757, + 10.0185753 + ], + [ + 53.6625454, + 10.0183621 + ], + [ + 53.6616156, + 10.017857 + ] + ] + }, + { + "osmId": "27122704", + "name": null, + "lengthMeters": 135.34173798112374, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5994095, + 9.9947469 + ], + [ + 53.5994455, + 9.9947514 + ], + [ + 53.5994694, + 9.9947503 + ], + [ + 53.5997304, + 9.9947333 + ], + [ + 53.5998407, + 9.9947233 + ], + [ + 53.6000228, + 9.9947052 + ], + [ + 53.6002239, + 9.9946843 + ], + [ + 53.6004269, + 9.9946784 + ], + [ + 53.6006253, + 9.9946921 + ] + ] + }, + { + "osmId": "27122733", + "name": null, + "lengthMeters": 91.68971784427565, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5982919, + 9.9947768 + ], + [ + 53.5982717, + 9.9947853 + ], + [ + 53.5979721, + 9.9948658 + ], + [ + 53.5974837, + 9.9950492 + ] + ] + }, + { + "osmId": "27122885", + "name": null, + "lengthMeters": 137.17758727448603, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5880451, + 9.989942 + ], + [ + 53.5881058, + 9.9900136 + ], + [ + 53.5881384, + 9.9900509 + ], + [ + 53.5882264, + 9.9901538 + ], + [ + 53.5882612, + 9.9901945 + ], + [ + 53.5884207, + 9.9904254 + ], + [ + 53.5886747, + 9.9908802 + ], + [ + 53.5888608, + 9.9912133 + ], + [ + 53.5888923, + 9.9912697 + ], + [ + 53.5889403, + 9.9913606 + ] + ] + }, + { + "osmId": "27122956", + "name": null, + "lengthMeters": 115.94843529229402, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5852778, + 9.9868361 + ], + [ + 53.5856946, + 9.9872718 + ], + [ + 53.5858356, + 9.9874493 + ], + [ + 53.5859881, + 9.9876694 + ], + [ + 53.5861212, + 9.9878618 + ] + ] + }, + { + "osmId": "27122969", + "name": null, + "lengthMeters": 76.7122734560239, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5855263, + 9.9872362 + ], + [ + 53.5861198, + 9.9878287 + ] + ] + }, + { + "osmId": "27122978", + "name": null, + "lengthMeters": 209.75757006372638, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5891105, + 9.9913864 + ], + [ + 53.58902, + 9.9912232 + ], + [ + 53.5887548, + 9.9907377 + ], + [ + 53.5884313, + 9.9901457 + ], + [ + 53.5882907, + 9.9899588 + ], + [ + 53.5882076, + 9.9898651 + ], + [ + 53.5881741, + 9.989825 + ], + [ + 53.587848, + 9.9894591 + ], + [ + 53.5877044, + 9.9892979 + ] + ] + }, + { + "osmId": "27123025", + "name": null, + "lengthMeters": 96.28947285431411, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5834033, + 9.9849857 + ], + [ + 53.5834972, + 9.9850754 + ], + [ + 53.5836712, + 9.9852633 + ], + [ + 53.5837614, + 9.9853603 + ], + [ + 53.5839552, + 9.9855517 + ], + [ + 53.5841487, + 9.9857268 + ] + ] + }, + { + "osmId": "27123091", + "name": null, + "lengthMeters": 776.8600686911915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5778799, + 9.9765889 + ], + [ + 53.5780368, + 9.9768385 + ], + [ + 53.57826, + 9.9771549 + ], + [ + 53.5789557, + 9.9781413 + ], + [ + 53.5792438, + 9.9785637 + ], + [ + 53.5796398, + 9.9791432 + ], + [ + 53.5798585, + 9.9794634 + ], + [ + 53.5802503, + 9.9800601 + ], + [ + 53.5809902, + 9.9811854 + ], + [ + 53.5814907, + 9.9819571 + ], + [ + 53.5816459, + 9.9821991 + ], + [ + 53.5822971, + 9.9832871 + ], + [ + 53.5826955, + 9.9839282 + ], + [ + 53.5828849, + 9.9842106 + ], + [ + 53.5829416, + 9.9842919 + ], + [ + 53.5830726, + 9.9844539 + ] + ] + }, + { + "osmId": "27123107", + "name": null, + "lengthMeters": 777.0473498797654, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5778459, + 9.9766623 + ], + [ + 53.5780226, + 9.976876 + ], + [ + 53.5782432, + 9.9771883 + ], + [ + 53.5789397, + 9.9781743 + ], + [ + 53.5796241, + 9.9791773 + ], + [ + 53.57984, + 9.9794937 + ], + [ + 53.5802354, + 9.9800892 + ], + [ + 53.5809733, + 9.9812178 + ], + [ + 53.5814776, + 9.9819828 + ], + [ + 53.5816085, + 9.9821919 + ], + [ + 53.5816299, + 9.9822282 + ], + [ + 53.5822808, + 9.9833188 + ], + [ + 53.5826774, + 9.9839604 + ], + [ + 53.5828659, + 9.9842678 + ], + [ + 53.5829172, + 9.9843389 + ], + [ + 53.5830422, + 9.9845226 + ] + ] + }, + { + "osmId": "27123155", + "name": null, + "lengthMeters": 101.31747278450706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5711955, + 9.9690928 + ], + [ + 53.5715096, + 9.969096 + ], + [ + 53.5718107, + 9.9691551 + ], + [ + 53.5720993, + 9.9692489 + ] + ] + }, + { + "osmId": "27135784", + "name": null, + "lengthMeters": 171.23577068917362, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5543881, + 10.0265056 + ], + [ + 53.5543499, + 10.0262162 + ], + [ + 53.5543111, + 10.0259714 + ], + [ + 53.5542658, + 10.0257376 + ], + [ + 53.5541918, + 10.0254348 + ], + [ + 53.5541253, + 10.0251964 + ], + [ + 53.5540665, + 10.0249959 + ], + [ + 53.5539711, + 10.0247382 + ], + [ + 53.5537137, + 10.0242161 + ] + ] + }, + { + "osmId": "27146596", + "name": null, + "lengthMeters": 1307.9934865727566, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4028664, + 13.3043341 + ], + [ + 52.4027231, + 13.3041218 + ], + [ + 52.4025847, + 13.303903 + ], + [ + 52.4024696, + 13.3037003 + ], + [ + 52.4023564, + 13.3034961 + ], + [ + 52.4022416, + 13.3032648 + ], + [ + 52.4021308, + 13.3030303 + ], + [ + 52.4020211, + 13.3027815 + ], + [ + 52.4019203, + 13.3025333 + ], + [ + 52.4017739, + 13.3021286 + ], + [ + 52.4017079, + 13.3019172 + ], + [ + 52.4016442, + 13.3017117 + ], + [ + 52.4015276, + 13.3012841 + ], + [ + 52.4014292, + 13.3008674 + ], + [ + 52.4013735, + 13.3006017 + ], + [ + 52.4013228, + 13.3003266 + ], + [ + 52.4011837, + 13.2994914 + ], + [ + 52.4010532, + 13.2986716 + ], + [ + 52.4008509, + 13.2974428 + ], + [ + 52.4007458, + 13.2968347 + ], + [ + 52.4006363, + 13.2962321 + ], + [ + 52.4003092, + 13.2945236 + ], + [ + 52.4000885, + 13.2933714 + ], + [ + 52.399716, + 13.2914475 + ], + [ + 52.3991003, + 13.2882491 + ], + [ + 52.398762, + 13.286478 + ] + ] + }, + { + "osmId": "27162834", + "name": null, + "lengthMeters": 150.63258233065446, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3523038, + 13.4185558 + ], + [ + 52.3528303, + 13.4205993 + ] + ] + }, + { + "osmId": "27194406", + "name": null, + "lengthMeters": 515.8753803829687, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6203916, + 13.2353752 + ], + [ + 52.6204592, + 13.2352783 + ], + [ + 52.6220811, + 13.2329593 + ], + [ + 52.6224697, + 13.2324085 + ], + [ + 52.622614, + 13.232203 + ], + [ + 52.6234038, + 13.2310961 + ], + [ + 52.6234228, + 13.231073 + ], + [ + 52.6238494, + 13.2304772 + ], + [ + 52.6239095, + 13.2303932 + ] + ] + }, + { + "osmId": "27202251", + "name": null, + "lengthMeters": 277.9704719006883, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338004, + 11.582564 + ], + [ + 48.1338118, + 11.5826234 + ], + [ + 48.1338167, + 11.5826643 + ], + [ + 48.1338164, + 11.582702 + ], + [ + 48.1338157, + 11.5827285 + ], + [ + 48.1338122, + 11.5827661 + ], + [ + 48.1338054, + 11.5828037 + ], + [ + 48.1338004, + 11.5828242 + ], + [ + 48.133787, + 11.5828566 + ], + [ + 48.1337726, + 11.5828821 + ], + [ + 48.1337556, + 11.5829069 + ], + [ + 48.1337328, + 11.5829304 + ], + [ + 48.1336794, + 11.582979 + ], + [ + 48.1336389, + 11.5830099 + ], + [ + 48.1333258, + 11.5832489 + ], + [ + 48.1331023, + 11.5834181 + ], + [ + 48.133009, + 11.5835213 + ], + [ + 48.1329334, + 11.5836259 + ], + [ + 48.1328479, + 11.5837817 + ], + [ + 48.1325798, + 11.5843333 + ], + [ + 48.1324114, + 11.5846983 + ], + [ + 48.1323858, + 11.5847553 + ], + [ + 48.1323245, + 11.5848927 + ], + [ + 48.1322669, + 11.5850217 + ], + [ + 48.1321853, + 11.5852075 + ] + ] + }, + { + "osmId": "27221363", + "name": null, + "lengthMeters": 287.0026252587531, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1584065, + 11.5114517 + ], + [ + 48.1583149, + 11.5114522 + ], + [ + 48.1582276, + 11.5114536 + ], + [ + 48.157838, + 11.5114595 + ], + [ + 48.1572756, + 11.511488 + ], + [ + 48.1562281, + 11.5115581 + ], + [ + 48.1561523, + 11.5115594 + ], + [ + 48.1561353, + 11.5115573 + ], + [ + 48.1560846, + 11.511551 + ], + [ + 48.1560584, + 11.5115442 + ], + [ + 48.1560307, + 11.5115301 + ], + [ + 48.1560066, + 11.5115103 + ], + [ + 48.1559858, + 11.5114881 + ], + [ + 48.1559631, + 11.5114636 + ], + [ + 48.1559164, + 11.5114037 + ], + [ + 48.1558693, + 11.5113498 + ] + ] + }, + { + "osmId": "27221364", + "name": null, + "lengthMeters": 270.9256505013505, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1558917, + 11.5116941 + ], + [ + 48.1559258, + 11.5116639 + ], + [ + 48.1559495, + 11.5116462 + ], + [ + 48.1559701, + 11.5116357 + ], + [ + 48.1559936, + 11.5116271 + ], + [ + 48.1560173, + 11.5116223 + ], + [ + 48.1560482, + 11.5116193 + ], + [ + 48.1561222, + 11.5116122 + ], + [ + 48.1566187, + 11.5115707 + ], + [ + 48.1572825, + 11.5115227 + ], + [ + 48.1577551, + 11.5115064 + ], + [ + 48.1582282, + 11.5114954 + ], + [ + 48.1583159, + 11.5114944 + ] + ] + }, + { + "osmId": "27223008", + "name": null, + "lengthMeters": 206.81007394764796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2046541, + 11.4667167 + ], + [ + 48.204304, + 11.4677389 + ], + [ + 48.2041149, + 11.4682926 + ], + [ + 48.2039818, + 11.4686724 + ], + [ + 48.2037943, + 11.4691911 + ] + ] + }, + { + "osmId": "27290389", + "name": null, + "lengthMeters": 217.53633838540702, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4578645, + 13.3257317 + ], + [ + 52.4573557, + 13.3250886 + ], + [ + 52.4569827, + 13.3246236 + ], + [ + 52.456317, + 13.3237676 + ] + ] + }, + { + "osmId": "27327951", + "name": null, + "lengthMeters": 111.01988041901907, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1487599, + 11.4435191 + ], + [ + 48.1486436, + 11.4434007 + ], + [ + 48.1485269, + 11.4432852 + ], + [ + 48.1484485, + 11.4432119 + ], + [ + 48.1483673, + 11.4431416 + ], + [ + 48.1482383, + 11.4430279 + ], + [ + 48.1481846, + 11.4429837 + ], + [ + 48.148035, + 11.4428569 + ], + [ + 48.1479402, + 11.442789 + ], + [ + 48.1479006, + 11.4427604 + ] + ] + }, + { + "osmId": "27349804", + "name": null, + "lengthMeters": 110.12337808832083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5488219, + 9.9809288 + ], + [ + 53.5489294, + 9.9811802 + ], + [ + 53.5490524, + 9.9815401 + ], + [ + 53.5491211, + 9.9817707 + ], + [ + 53.5491907, + 9.9820347 + ], + [ + 53.5492667, + 9.9824086 + ] + ] + }, + { + "osmId": "27402662", + "name": "City-S-Bahn", + "lengthMeters": 144.53682960438843, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5554944, + 10.0048181 + ], + [ + 53.5554806, + 10.004835 + ], + [ + 53.5551783, + 10.0052472 + ], + [ + 53.5547933, + 10.0057801 + ], + [ + 53.5545143, + 10.0061766 + ], + [ + 53.554491, + 10.0062089 + ] + ] + }, + { + "osmId": "27403147", + "name": "Verbindungsbahn", + "lengthMeters": 142.799534672836, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636015, + 9.9628136 + ], + [ + 53.5635916, + 9.9626195 + ], + [ + 53.5635828, + 9.9624879 + ], + [ + 53.5635715, + 9.962354 + ], + [ + 53.5635585, + 9.9622333 + ], + [ + 53.5635413, + 9.9621084 + ], + [ + 53.5635077, + 9.9619087 + ], + [ + 53.5634787, + 9.9617612 + ], + [ + 53.5634427, + 9.9616111 + ], + [ + 53.5631922, + 9.9607889 + ] + ] + }, + { + "osmId": "27403151", + "name": "Verbindungsbahn", + "lengthMeters": 161.4293934555862, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5631167, + 9.9605534 + ], + [ + 53.5628979, + 9.9599458 + ], + [ + 53.5627016, + 9.9594443 + ], + [ + 53.5623221, + 9.9585085 + ] + ] + }, + { + "osmId": "27403163", + "name": "Verbindungsbahn", + "lengthMeters": 136.6163264775216, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5621898, + 9.9581749 + ], + [ + 53.5621103, + 9.9579737 + ], + [ + 53.5619413, + 9.9575459 + ], + [ + 53.5617407, + 9.9570133 + ], + [ + 53.5616483, + 9.9566985 + ], + [ + 53.5615784, + 9.9563888 + ] + ] + }, + { + "osmId": "27403305", + "name": "City-S-Bahn", + "lengthMeters": 104.68659930942545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5665294, + 9.9345079 + ], + [ + 53.5663101, + 9.9345719 + ], + [ + 53.5660259, + 9.9346673 + ], + [ + 53.5656078, + 9.9348299 + ] + ] + }, + { + "osmId": "27403323", + "name": null, + "lengthMeters": 478.86302991658636, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636616, + 9.9348954 + ], + [ + 53.5636148, + 9.9349346 + ], + [ + 53.5635213, + 9.9350055 + ], + [ + 53.5634446, + 9.9350748 + ], + [ + 53.5632818, + 9.9352478 + ], + [ + 53.5631253, + 9.9354673 + ], + [ + 53.5629484, + 9.9357798 + ], + [ + 53.5629374, + 9.9358068 + ], + [ + 53.5628476, + 9.9360322 + ], + [ + 53.5627671, + 9.9362632 + ], + [ + 53.5627046, + 9.9364972 + ], + [ + 53.5626626, + 9.9366849 + ], + [ + 53.5626181, + 9.9369707 + ], + [ + 53.5625881, + 9.9372671 + ], + [ + 53.5625783, + 9.9376151 + ], + [ + 53.5625812, + 9.9378845 + ], + [ + 53.5625974, + 9.9381923 + ], + [ + 53.5626253, + 9.9385098 + ], + [ + 53.5626661, + 9.9388339 + ], + [ + 53.5627284, + 9.9391997 + ], + [ + 53.5628307, + 9.9397238 + ], + [ + 53.5628872, + 9.9400907 + ], + [ + 53.5629272, + 9.9404453 + ], + [ + 53.5629429, + 9.9406857 + ], + [ + 53.562951, + 9.9410003 + ], + [ + 53.5629409, + 9.9413113 + ] + ] + }, + { + "osmId": "27403334", + "name": "Verbindungsbahn", + "lengthMeters": 138.5050048244405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5618275, + 9.9332851 + ], + [ + 53.562086, + 9.9336351 + ], + [ + 53.5622774, + 9.933995 + ], + [ + 53.5624638, + 9.9344736 + ], + [ + 53.56251, + 9.9346096 + ], + [ + 53.5626064, + 9.934893 + ] + ] + }, + { + "osmId": "27403475", + "name": "City-S-Bahn", + "lengthMeters": 83.94312509635718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5523083, + 9.9348532 + ], + [ + 53.5525287, + 9.934762 + ], + [ + 53.5527043, + 9.9347089 + ], + [ + 53.5528141, + 9.9346846 + ], + [ + 53.5529194, + 9.9346676 + ], + [ + 53.5530522, + 9.9346548 + ] + ] + }, + { + "osmId": "27403616", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 78.03943526430704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5523525, + 9.9345568 + ], + [ + 53.5524099, + 9.9345468 + ], + [ + 53.5524588, + 9.9345383 + ], + [ + 53.5528225, + 9.93451 + ], + [ + 53.5530533, + 9.9345004 + ] + ] + }, + { + "osmId": "27403634", + "name": "City-S-Bahn", + "lengthMeters": 369.03229342334055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530522, + 9.9346548 + ], + [ + 53.5531103, + 9.9346554 + ], + [ + 53.5533306, + 9.9346581 + ], + [ + 53.5534969, + 9.9346591 + ], + [ + 53.5541879, + 9.9346925 + ], + [ + 53.5548093, + 9.9347208 + ], + [ + 53.5553254, + 9.9347428 + ], + [ + 53.5554549, + 9.9347433 + ], + [ + 53.555894, + 9.9346975 + ], + [ + 53.5562016, + 9.934619 + ], + [ + 53.5562807, + 9.9345913 + ], + [ + 53.5563628, + 9.9345652 + ] + ] + }, + { + "osmId": "27414911", + "name": null, + "lengthMeters": 107.86620400996462, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4179246, + 13.1729485 + ], + [ + 52.4179804, + 13.1730741 + ], + [ + 52.4180362, + 13.1732096 + ], + [ + 52.4181331, + 13.1734701 + ], + [ + 52.418321, + 13.1739861 + ], + [ + 52.4183828, + 13.1741413 + ], + [ + 52.4184462, + 13.1742885 + ] + ] + }, + { + "osmId": "27414918", + "name": null, + "lengthMeters": 2146.9318929978585, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4173736, + 13.1716499 + ], + [ + 52.4172444, + 13.1713666 + ], + [ + 52.4171186, + 13.1710751 + ], + [ + 52.4169714, + 13.1707034 + ], + [ + 52.4168175, + 13.1703057 + ], + [ + 52.4166022, + 13.1697011 + ], + [ + 52.416364, + 13.1689913 + ], + [ + 52.4136477, + 13.160899 + ], + [ + 52.4134815, + 13.1604275 + ], + [ + 52.4133987, + 13.1601921 + ], + [ + 52.4133157, + 13.1599618 + ], + [ + 52.4132216, + 13.1597124 + ], + [ + 52.4131275, + 13.159468 + ], + [ + 52.4130435, + 13.1592614 + ], + [ + 52.412958, + 13.1590636 + ], + [ + 52.4128557, + 13.1588276 + ], + [ + 52.4127445, + 13.1585875 + ], + [ + 52.412634, + 13.1583568 + ], + [ + 52.412519, + 13.1581315 + ], + [ + 52.4123905, + 13.1578878 + ], + [ + 52.4122577, + 13.1576514 + ], + [ + 52.4121753, + 13.1575079 + ], + [ + 52.4120927, + 13.1573699 + ], + [ + 52.4119796, + 13.1571854 + ], + [ + 52.4118653, + 13.1570061 + ], + [ + 52.4117272, + 13.1568005 + ], + [ + 52.4115924, + 13.1566067 + ], + [ + 52.4111116, + 13.1559768 + ], + [ + 52.4106022, + 13.1553554 + ], + [ + 52.4079066, + 13.1521005 + ], + [ + 52.4048345, + 13.1483929 + ] + ] + }, + { + "osmId": "27415919", + "name": null, + "lengthMeters": 172.24140561071042, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3977787, + 13.1412341 + ], + [ + 52.3978133, + 13.1412878 + ], + [ + 52.3980809, + 13.1416858 + ], + [ + 52.3984534, + 13.142207 + ], + [ + 52.3987051, + 13.1425434 + ], + [ + 52.398832, + 13.1427094 + ], + [ + 52.3989603, + 13.1428743 + ] + ] + }, + { + "osmId": "27434265", + "name": null, + "lengthMeters": 78.79309328386393, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4290923, + 13.1911595 + ], + [ + 52.4296804, + 13.1918078 + ] + ] + }, + { + "osmId": "27434267", + "name": null, + "lengthMeters": 188.29589850706427, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4296804, + 13.1918078 + ], + [ + 52.4304598, + 13.1926769 + ], + [ + 52.4306439, + 13.1928923 + ], + [ + 52.4308117, + 13.1930976 + ], + [ + 52.4309691, + 13.193304 + ], + [ + 52.4310153, + 13.1933624 + ], + [ + 52.4310582, + 13.1934203 + ] + ] + }, + { + "osmId": "27434269", + "name": null, + "lengthMeters": 441.1281373328412, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4292643, + 13.1911799 + ], + [ + 52.4291585, + 13.1910714 + ], + [ + 52.4290474, + 13.1909539 + ], + [ + 52.4289044, + 13.1907968 + ], + [ + 52.4287588, + 13.1906295 + ], + [ + 52.4270208, + 13.1886075 + ], + [ + 52.4260181, + 13.187441 + ] + ] + }, + { + "osmId": "27434292", + "name": null, + "lengthMeters": 209.01433025129185, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4273679, + 13.1913857 + ], + [ + 52.4273921, + 13.1914111 + ], + [ + 52.4275132, + 13.1915234 + ], + [ + 52.4276367, + 13.1916319 + ], + [ + 52.4277377, + 13.1917155 + ], + [ + 52.4278384, + 13.1917926 + ], + [ + 52.427927, + 13.1918578 + ], + [ + 52.4279531, + 13.1918771 + ], + [ + 52.4279762, + 13.1918923 + ], + [ + 52.4280684, + 13.1919529 + ], + [ + 52.4282281, + 13.1920484 + ], + [ + 52.4283105, + 13.1920937 + ], + [ + 52.4283897, + 13.1921334 + ], + [ + 52.4284536, + 13.1921661 + ], + [ + 52.4285168, + 13.1921932 + ], + [ + 52.4286411, + 13.1922473 + ], + [ + 52.428758, + 13.1922908 + ], + [ + 52.4288703, + 13.1923303 + ], + [ + 52.4291275, + 13.1924141 + ] + ] + }, + { + "osmId": "27472397", + "name": null, + "lengthMeters": 193.01290095853878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5501, + 10.0064211 + ], + [ + 53.5502932, + 10.0064553 + ], + [ + 53.5504293, + 10.0064835 + ], + [ + 53.5505431, + 10.0065241 + ], + [ + 53.5506771, + 10.006569 + ], + [ + 53.5507799, + 10.0066276 + ], + [ + 53.5509313, + 10.0067227 + ], + [ + 53.5510679, + 10.0068364 + ], + [ + 53.5511598, + 10.0069313 + ], + [ + 53.5512551, + 10.0070529 + ], + [ + 53.551376, + 10.0072355 + ], + [ + 53.5515052, + 10.0074674 + ], + [ + 53.5515984, + 10.0076657 + ] + ] + }, + { + "osmId": "27472411", + "name": null, + "lengthMeters": 250.31862786060492, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5476883, + 9.9985889 + ], + [ + 53.5476825, + 9.9986812 + ], + [ + 53.547672, + 9.9989108 + ], + [ + 53.5476606, + 9.9993548 + ], + [ + 53.5476436, + 9.9998608 + ], + [ + 53.5475927, + 10.0008827 + ], + [ + 53.5475612, + 10.0015669 + ], + [ + 53.5475536, + 10.0017323 + ], + [ + 53.5475361, + 10.0020327 + ], + [ + 53.5475044, + 10.0023635 + ] + ] + }, + { + "osmId": "27502901", + "name": null, + "lengthMeters": 196.42487116822207, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5075687, + 13.5638484 + ], + [ + 52.5068793, + 13.5629065 + ], + [ + 52.5062108, + 13.5619921 + ] + ] + }, + { + "osmId": "27508977", + "name": null, + "lengthMeters": 140.55565647077395, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.479995, + 13.3117621 + ], + [ + 52.4798093, + 13.3120392 + ], + [ + 52.4795558, + 13.3124611 + ], + [ + 52.4795017, + 13.3125562 + ], + [ + 52.4794607, + 13.312634 + ], + [ + 52.4792576, + 13.3130196 + ], + [ + 52.4791338, + 13.313277 + ] + ] + }, + { + "osmId": "27526916", + "name": null, + "lengthMeters": 392.2899913786928, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5079486, + 13.5644481 + ], + [ + 52.5083195, + 13.564946 + ], + [ + 52.5101044, + 13.567386 + ], + [ + 52.5103701, + 13.5677889 + ], + [ + 52.5106242, + 13.5682206 + ] + ] + }, + { + "osmId": "27527510", + "name": null, + "lengthMeters": 382.9783454184576, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5359151, + 10.0254473 + ], + [ + 53.5362076, + 10.0255702 + ], + [ + 53.5380591, + 10.0261482 + ], + [ + 53.5392976, + 10.0265348 + ] + ] + }, + { + "osmId": "27527554", + "name": null, + "lengthMeters": 258.61685209226005, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5382637, + 10.0259826 + ], + [ + 53.5384642, + 10.0261714 + ], + [ + 53.5384715, + 10.0261794 + ], + [ + 53.5385777, + 10.0262926 + ], + [ + 53.5387144, + 10.0264649 + ], + [ + 53.5389456, + 10.0268057 + ], + [ + 53.53903, + 10.0269524 + ], + [ + 53.53914, + 10.0271566 + ], + [ + 53.5392417, + 10.0273795 + ], + [ + 53.5393894, + 10.0277508 + ], + [ + 53.5395156, + 10.0281485 + ], + [ + 53.5396106, + 10.0285231 + ], + [ + 53.5396901, + 10.0289323 + ] + ] + }, + { + "osmId": "27527555", + "name": null, + "lengthMeters": 103.62658107283309, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5351067, + 10.0247176 + ], + [ + 53.5354006, + 10.024919 + ], + [ + 53.5355088, + 10.0249834 + ], + [ + 53.5355509, + 10.0250074 + ], + [ + 53.5356129, + 10.0250423 + ], + [ + 53.5357164, + 10.0250923 + ], + [ + 53.5358765, + 10.0251633 + ], + [ + 53.5359902, + 10.0252079 + ] + ] + }, + { + "osmId": "27527560", + "name": null, + "lengthMeters": 259.8084313087853, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5359902, + 10.0252079 + ], + [ + 53.5361281, + 10.0252503 + ], + [ + 53.5362294, + 10.0252784 + ], + [ + 53.5363562, + 10.0253069 + ], + [ + 53.5364661, + 10.0253226 + ], + [ + 53.5367545, + 10.0253604 + ], + [ + 53.5371405, + 10.0254166 + ], + [ + 53.5373203, + 10.0254645 + ], + [ + 53.5374667, + 10.0255089 + ], + [ + 53.5376335, + 10.025576 + ], + [ + 53.5377678, + 10.0256407 + ], + [ + 53.5380011, + 10.0257771 + ], + [ + 53.5381653, + 10.0258975 + ], + [ + 53.5382637, + 10.0259826 + ] + ] + }, + { + "osmId": "27527562", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 262.50902060567654, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5382932, + 10.025937 + ], + [ + 53.5381786, + 10.025841 + ], + [ + 53.5380141, + 10.0257205 + ], + [ + 53.537776, + 10.0255758 + ], + [ + 53.5376423, + 10.0255159 + ], + [ + 53.537477, + 10.0254494 + ], + [ + 53.5373252, + 10.0254033 + ], + [ + 53.537146, + 10.0253565 + ], + [ + 53.5367631, + 10.0252998 + ], + [ + 53.5364715, + 10.0252612 + ], + [ + 53.5363613, + 10.0252429 + ], + [ + 53.5362359, + 10.025215 + ], + [ + 53.5361301, + 10.0251842 + ], + [ + 53.5359981, + 10.025138 + ] + ] + }, + { + "osmId": "27527571", + "name": null, + "lengthMeters": 423.1182951994731, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5390836, + 10.0227191 + ], + [ + 53.5390073, + 10.0232619 + ], + [ + 53.5389554, + 10.0237182 + ], + [ + 53.5389412, + 10.0238696 + ], + [ + 53.5389314, + 10.0240091 + ], + [ + 53.5389137, + 10.0243242 + ], + [ + 53.5389057, + 10.0246631 + ], + [ + 53.538905, + 10.024927 + ], + [ + 53.5389183, + 10.0252012 + ], + [ + 53.5389391, + 10.0254369 + ], + [ + 53.538946, + 10.0255101 + ], + [ + 53.5389645, + 10.0256609 + ], + [ + 53.5389793, + 10.0257591 + ], + [ + 53.5389908, + 10.0258351 + ], + [ + 53.5390178, + 10.0259935 + ], + [ + 53.5390908, + 10.0263282 + ], + [ + 53.5391705, + 10.0266617 + ], + [ + 53.5392604, + 10.026975 + ], + [ + 53.5394036, + 10.0274338 + ], + [ + 53.539445, + 10.027566 + ], + [ + 53.5395981, + 10.0280796 + ], + [ + 53.5396967, + 10.028468 + ], + [ + 53.5397639, + 10.0288023 + ] + ] + }, + { + "osmId": "27527591", + "name": null, + "lengthMeters": 307.6220509693377, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5315939, + 10.0219175 + ], + [ + 53.5316044, + 10.0219271 + ], + [ + 53.5321432, + 10.0224214 + ], + [ + 53.532349, + 10.0226101 + ], + [ + 53.5331253, + 10.0233188 + ], + [ + 53.5339417, + 10.0240642 + ], + [ + 53.5339617, + 10.0240825 + ], + [ + 53.5339767, + 10.0240962 + ], + [ + 53.5340246, + 10.0241402 + ] + ] + }, + { + "osmId": "27527617", + "name": null, + "lengthMeters": 305.64058445249884, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.529222, + 10.019581 + ], + [ + 53.5305775, + 10.0209258 + ], + [ + 53.5310502, + 10.0214014 + ], + [ + 53.5312369, + 10.021579 + ], + [ + 53.5315939, + 10.0219175 + ] + ] + }, + { + "osmId": "27527807", + "name": null, + "lengthMeters": 1614.5722343831371, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4960249, + 10.0060497 + ], + [ + 53.4958869, + 10.0060107 + ], + [ + 53.4932249, + 10.0055275 + ], + [ + 53.4926506, + 10.0054251 + ], + [ + 53.4925359, + 10.0054046 + ], + [ + 53.4919391, + 10.0052982 + ], + [ + 53.4909657, + 10.0051246 + ], + [ + 53.4901703, + 10.0049745 + ], + [ + 53.4890979, + 10.0047721 + ], + [ + 53.4886175, + 10.0046641 + ], + [ + 53.4872546, + 10.0043579 + ], + [ + 53.4860468, + 10.0040396 + ], + [ + 53.4857983, + 10.0039741 + ], + [ + 53.4844465, + 10.0036013 + ], + [ + 53.4830727, + 10.0031864 + ], + [ + 53.4816475, + 10.0027208 + ] + ] + }, + { + "osmId": "27564589", + "name": null, + "lengthMeters": 718.8750254945446, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5920551, + 9.9141775 + ], + [ + 53.5925123, + 9.9133029 + ], + [ + 53.5934129, + 9.9115601 + ], + [ + 53.593835, + 9.910722 + ], + [ + 53.5942714, + 9.9098464 + ], + [ + 53.5944082, + 9.909578 + ], + [ + 53.5946662, + 9.9090849 + ], + [ + 53.5951433, + 9.9081556 + ], + [ + 53.595848, + 9.9068194 + ], + [ + 53.5962841, + 9.9059391 + ] + ] + }, + { + "osmId": "27564592", + "name": null, + "lengthMeters": 168.95959454818635, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5982046, + 9.9023147 + ], + [ + 53.5979627, + 9.9027855 + ], + [ + 53.5974353, + 9.9037236 + ], + [ + 53.5971826, + 9.9042087 + ] + ] + }, + { + "osmId": "27564595", + "name": null, + "lengthMeters": 949.9906253128175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5961846, + 9.9057994 + ], + [ + 53.5957437, + 9.9066738 + ], + [ + 53.5949736, + 9.9081732 + ], + [ + 53.5949641, + 9.9081912 + ], + [ + 53.5945767, + 9.9089473 + ], + [ + 53.5943189, + 9.9094454 + ], + [ + 53.5941819, + 9.9097089 + ], + [ + 53.5937377, + 9.9105823 + ], + [ + 53.5932978, + 9.9114347 + ], + [ + 53.593008, + 9.9119979 + ], + [ + 53.5924321, + 9.9131197 + ], + [ + 53.5914215, + 9.915061 + ], + [ + 53.5912059, + 9.915465 + ], + [ + 53.5908733, + 9.9160385 + ], + [ + 53.5906127, + 9.9164404 + ], + [ + 53.5905254, + 9.916575 + ] + ] + }, + { + "osmId": "27614356", + "name": null, + "lengthMeters": 458.9228516021079, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5933431, + 9.9114909 + ], + [ + 53.5924618, + 9.9131917 + ], + [ + 53.5914533, + 9.9151133 + ], + [ + 53.5909066, + 9.9160922 + ], + [ + 53.5906456, + 9.9165001 + ], + [ + 53.5905643, + 9.9166272 + ] + ] + }, + { + "osmId": "27614358", + "name": null, + "lengthMeters": 268.43866387209823, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5688178, + 9.9332539 + ], + [ + 53.569602, + 9.9331874 + ], + [ + 53.5698309, + 9.9331718 + ], + [ + 53.5699566, + 9.9331638 + ], + [ + 53.5707413, + 9.9330511 + ], + [ + 53.5712254, + 9.9329697 + ] + ] + }, + { + "osmId": "27614359", + "name": null, + "lengthMeters": 397.8440265267733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5885868, + 9.9206739 + ], + [ + 53.5889848, + 9.9198968 + ], + [ + 53.5891055, + 9.9196625 + ], + [ + 53.5891618, + 9.9195568 + ], + [ + 53.5893169, + 9.9192773 + ], + [ + 53.5894781, + 9.9189634 + ], + [ + 53.5897737, + 9.9184626 + ], + [ + 53.5899319, + 9.9181942 + ], + [ + 53.5900091, + 9.9180632 + ], + [ + 53.5902122, + 9.9177187 + ], + [ + 53.5903824, + 9.9174422 + ], + [ + 53.5904555, + 9.9173127 + ], + [ + 53.5905806, + 9.9171114 + ], + [ + 53.5906512, + 9.9169976 + ], + [ + 53.5910456, + 9.9162996 + ] + ] + }, + { + "osmId": "27616468", + "name": null, + "lengthMeters": 164.25147068683808, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6416902, + 10.0167376 + ], + [ + 53.6408067, + 10.0166945 + ], + [ + 53.640394, + 10.0166743 + ], + [ + 53.640214, + 10.0166539 + ] + ] + }, + { + "osmId": "27632886", + "name": null, + "lengthMeters": 284.63764951043146, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5492934, + 10.0072392 + ], + [ + 53.5496412, + 10.007157 + ], + [ + 53.5497741, + 10.0071264 + ], + [ + 53.5497845, + 10.0071245 + ], + [ + 53.5498487, + 10.0071126 + ], + [ + 53.549866, + 10.0071094 + ], + [ + 53.5498776, + 10.0071073 + ], + [ + 53.550081, + 10.0070698 + ], + [ + 53.5504216, + 10.0070191 + ], + [ + 53.5505376, + 10.0070019 + ], + [ + 53.5505788, + 10.0069983 + ], + [ + 53.5507024, + 10.0069783 + ], + [ + 53.5507668, + 10.0069679 + ], + [ + 53.5508644, + 10.0069521 + ], + [ + 53.5513521, + 10.0068733 + ], + [ + 53.551626, + 10.006801 + ], + [ + 53.5516843, + 10.0067856 + ], + [ + 53.551709, + 10.0067756 + ], + [ + 53.5517227, + 10.00677 + ], + [ + 53.5517434, + 10.0067616 + ], + [ + 53.551833, + 10.0067252 + ] + ] + }, + { + "osmId": "27645870", + "name": null, + "lengthMeters": 123.04027036648195, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.188555, + 11.5393253 + ], + [ + 48.1883564, + 11.5376925 + ] + ] + }, + { + "osmId": "27645871", + "name": null, + "lengthMeters": 1125.3553519170393, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2020287, + 11.5409067 + ], + [ + 48.2017064, + 11.541079 + ], + [ + 48.2013608, + 11.5412811 + ], + [ + 48.2012581, + 11.5413387 + ], + [ + 48.2010546, + 11.5414402 + ], + [ + 48.2008891, + 11.5415138 + ], + [ + 48.2007514, + 11.5415696 + ], + [ + 48.2004202, + 11.5416714 + ], + [ + 48.2002272, + 11.5417114 + ], + [ + 48.2000592, + 11.541736 + ], + [ + 48.199927, + 11.5417543 + ], + [ + 48.1997945, + 11.5417633 + ], + [ + 48.1993976, + 11.5417662 + ], + [ + 48.1983776, + 11.5417273 + ], + [ + 48.1975006, + 11.5416938 + ], + [ + 48.1966875, + 11.5416649 + ], + [ + 48.1961898, + 11.5416461 + ], + [ + 48.1959645, + 11.5416316 + ], + [ + 48.1957272, + 11.5416079 + ], + [ + 48.1956222, + 11.5415935 + ], + [ + 48.1955244, + 11.5415801 + ], + [ + 48.1953491, + 11.54155 + ], + [ + 48.1950298, + 11.5414849 + ], + [ + 48.1945426, + 11.5413796 + ], + [ + 48.1939198, + 11.5412382 + ], + [ + 48.1923908, + 11.5409044 + ], + [ + 48.1922088, + 11.5408832 + ], + [ + 48.1921563, + 11.5408771 + ], + [ + 48.1920291, + 11.540872 + ] + ] + }, + { + "osmId": "27680800", + "name": "Berliner Ringbahn", + "lengthMeters": 238.0680238059663, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.542444, + 13.3666074 + ], + [ + 52.5424681, + 13.3666608 + ], + [ + 52.5435255, + 13.3690387 + ], + [ + 52.5436753, + 13.369376 + ], + [ + 52.5437081, + 13.3694487 + ] + ] + }, + { + "osmId": "27680802", + "name": null, + "lengthMeters": 283.58113978628046, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5421484, + 13.3654267 + ], + [ + 52.5418496, + 13.3647859 + ], + [ + 52.5416, + 13.3642284 + ], + [ + 52.5414037, + 13.3637899 + ], + [ + 52.5406129, + 13.3620788 + ] + ] + }, + { + "osmId": "27680806", + "name": null, + "lengthMeters": 321.1753896411128, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5416097, + 13.3647256 + ], + [ + 52.5415722, + 13.364652 + ], + [ + 52.5412605, + 13.3640279 + ], + [ + 52.5408037, + 13.363101 + ], + [ + 52.5404673, + 13.36241 + ], + [ + 52.5401043, + 13.3616698 + ], + [ + 52.5399823, + 13.3614266 + ], + [ + 52.5398518, + 13.3611719 + ], + [ + 52.5397845, + 13.3610451 + ] + ] + }, + { + "osmId": "27681611", + "name": null, + "lengthMeters": 844.2388885580683, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4846187, + 13.3711394 + ], + [ + 52.4847052, + 13.3711929 + ], + [ + 52.4849388, + 13.3713375 + ], + [ + 52.485322, + 13.3715489 + ], + [ + 52.4855336, + 13.3716656 + ], + [ + 52.4856937, + 13.3717433 + ], + [ + 52.4858018, + 13.3717949 + ], + [ + 52.4860082, + 13.3718896 + ], + [ + 52.4860446, + 13.3719062 + ], + [ + 52.4864815, + 13.3720826 + ], + [ + 52.4865918, + 13.3721203 + ], + [ + 52.4869247, + 13.3722342 + ], + [ + 52.4872282, + 13.3723222 + ], + [ + 52.4875272, + 13.3723834 + ], + [ + 52.4880836, + 13.3724887 + ], + [ + 52.4887944, + 13.372569 + ], + [ + 52.4891914, + 13.3725921 + ], + [ + 52.4892902, + 13.3725979 + ], + [ + 52.4894816, + 13.3726091 + ], + [ + 52.4908989, + 13.3726918 + ], + [ + 52.4920989, + 13.3727619 + ] + ] + }, + { + "osmId": "27681613", + "name": null, + "lengthMeters": 195.92858229335712, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778454, + 13.3669282 + ], + [ + 52.4787896, + 13.3675052 + ], + [ + 52.4794944, + 13.3679476 + ] + ] + }, + { + "osmId": "27681617", + "name": null, + "lengthMeters": 256.7182099951919, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4800766, + 13.3679224 + ], + [ + 52.4795142, + 13.3675075 + ], + [ + 52.4790888, + 13.3672082 + ], + [ + 52.4786157, + 13.366892 + ], + [ + 52.4779452, + 13.3664678 + ] + ] + }, + { + "osmId": "27681619", + "name": null, + "lengthMeters": 281.2892423660507, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4818793, + 13.3692912 + ], + [ + 52.4817813, + 13.3692324 + ], + [ + 52.4810451, + 13.3687921 + ], + [ + 52.4801745, + 13.3682578 + ], + [ + 52.4801329, + 13.3682271 + ], + [ + 52.4797558, + 13.3679487 + ], + [ + 52.4795181, + 13.3678048 + ] + ] + }, + { + "osmId": "27681620", + "name": null, + "lengthMeters": 80.94115763862881, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4733727, + 13.3638882 + ], + [ + 52.4739234, + 13.3641217 + ], + [ + 52.4740775, + 13.364187 + ] + ] + }, + { + "osmId": "27681621", + "name": null, + "lengthMeters": 448.61822218802956, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4740775, + 13.364187 + ], + [ + 52.4744137, + 13.3643368 + ], + [ + 52.4749049, + 13.3645978 + ], + [ + 52.4751215, + 13.3647129 + ], + [ + 52.4752686, + 13.3647911 + ], + [ + 52.4754217, + 13.3648703 + ], + [ + 52.4754663, + 13.3648966 + ], + [ + 52.4756319, + 13.3649958 + ], + [ + 52.4757785, + 13.3650836 + ], + [ + 52.4761907, + 13.3653304 + ], + [ + 52.4763422, + 13.3654195 + ], + [ + 52.476456, + 13.3654864 + ], + [ + 52.4765319, + 13.3655311 + ], + [ + 52.4765892, + 13.3655648 + ], + [ + 52.476612, + 13.3655782 + ], + [ + 52.4766857, + 13.3656216 + ], + [ + 52.4767706, + 13.3656715 + ], + [ + 52.4769635, + 13.365785 + ], + [ + 52.4778926, + 13.3663352 + ] + ] + }, + { + "osmId": "27707411", + "name": "Berliner Ringbahn", + "lengthMeters": 309.0944304328897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5403818, + 13.3624707 + ], + [ + 52.5405608, + 13.3629194 + ], + [ + 52.5407267, + 13.3633043 + ], + [ + 52.5408295, + 13.363518 + ], + [ + 52.5409325, + 13.363732 + ], + [ + 52.5410088, + 13.3638773 + ], + [ + 52.5411476, + 13.3641478 + ], + [ + 52.5414203, + 13.3645961 + ], + [ + 52.5415198, + 13.3647731 + ], + [ + 52.54181, + 13.3652893 + ], + [ + 52.5421554, + 13.3659783 + ] + ] + }, + { + "osmId": "27707583", + "name": null, + "lengthMeters": 156.85115249975195, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5438775, + 13.3693604 + ], + [ + 52.543691, + 13.3689064 + ], + [ + 52.5435869, + 13.3686636 + ], + [ + 52.5434688, + 13.3683937 + ], + [ + 52.5430574, + 13.3674736 + ] + ] + }, + { + "osmId": "27708533", + "name": null, + "lengthMeters": 240.2231233454903, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5425315, + 13.3665669 + ], + [ + 52.5425742, + 13.3666624 + ], + [ + 52.5426485, + 13.3668288 + ], + [ + 52.5426709, + 13.3668788 + ], + [ + 52.5427664, + 13.3670926 + ], + [ + 52.5430023, + 13.3676208 + ], + [ + 52.5431578, + 13.3679691 + ], + [ + 52.5431709, + 13.3679992 + ], + [ + 52.5432517, + 13.3681814 + ], + [ + 52.5433212, + 13.3683388 + ], + [ + 52.5433478, + 13.368399 + ], + [ + 52.5433791, + 13.3684712 + ], + [ + 52.5436832, + 13.3691344 + ], + [ + 52.5438105, + 13.3694296 + ] + ] + }, + { + "osmId": "27730403", + "name": null, + "lengthMeters": 250.08393633484576, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777423, + 13.3632886 + ], + [ + 52.4778134, + 13.3631837 + ], + [ + 52.4779321, + 13.3629995 + ], + [ + 52.4780305, + 13.3628325 + ], + [ + 52.478122, + 13.3626681 + ], + [ + 52.4782054, + 13.3625103 + ], + [ + 52.4783115, + 13.3622928 + ], + [ + 52.4784156, + 13.3620679 + ], + [ + 52.4785971, + 13.3616543 + ], + [ + 52.4787012, + 13.3614015 + ], + [ + 52.4788026, + 13.3611398 + ], + [ + 52.4788925, + 13.3609011 + ], + [ + 52.4789674, + 13.36069 + ], + [ + 52.4790828, + 13.3603464 + ] + ] + }, + { + "osmId": "27734931", + "name": null, + "lengthMeters": 129.75145041729496, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4748677, + 13.3655272 + ], + [ + 52.4759586, + 13.3648472 + ] + ] + }, + { + "osmId": "27734932", + "name": null, + "lengthMeters": 202.052168383172, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4759586, + 13.3648472 + ], + [ + 52.4765124, + 13.3645003 + ], + [ + 52.4767263, + 13.3643506 + ], + [ + 52.4768279, + 13.3642707 + ], + [ + 52.4769288, + 13.3641882 + ], + [ + 52.4770009, + 13.3641273 + ], + [ + 52.4770745, + 13.3640621 + ], + [ + 52.4771799, + 13.3639612 + ], + [ + 52.4772713, + 13.3638665 + ], + [ + 52.4773511, + 13.3637795 + ], + [ + 52.477438, + 13.3636814 + ], + [ + 52.4775227, + 13.3635788 + ], + [ + 52.477575, + 13.363515 + ] + ] + }, + { + "osmId": "27761151", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 243.54357201870644, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5520666, + 10.0236817 + ], + [ + 53.5522909, + 10.0241532 + ], + [ + 53.5524565, + 10.0244313 + ], + [ + 53.5526638, + 10.0247166 + ], + [ + 53.5528311, + 10.024904 + ], + [ + 53.5530794, + 10.0251352 + ], + [ + 53.5532139, + 10.0252363 + ], + [ + 53.5533647, + 10.0253393 + ], + [ + 53.5534132, + 10.0253685 + ], + [ + 53.5535468, + 10.0254498 + ], + [ + 53.553838, + 10.0255965 + ], + [ + 53.5538737, + 10.0256153 + ] + ] + }, + { + "osmId": "27816461", + "name": null, + "lengthMeters": 394.84653655092393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4739475, + 9.8563322 + ], + [ + 53.4740422, + 9.8544702 + ], + [ + 53.4740663, + 9.8538549 + ], + [ + 53.4740751, + 9.8536075 + ], + [ + 53.4740796, + 9.8534932 + ], + [ + 53.474086, + 9.8533267 + ], + [ + 53.4741242, + 9.8523474 + ], + [ + 53.474154, + 9.8515645 + ], + [ + 53.4741901, + 9.8506147 + ], + [ + 53.4741928, + 9.8505429 + ], + [ + 53.4742001, + 9.8503815 + ] + ] + }, + { + "osmId": "27816821", + "name": "Niederelbebahn", + "lengthMeters": 125.01017215025139, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4746269, + 9.8413134 + ], + [ + 53.474702, + 9.8394287 + ] + ] + }, + { + "osmId": "27817021", + "name": "Niederelbebahn", + "lengthMeters": 178.24930170796833, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4746269, + 9.8413134 + ], + [ + 53.4745968, + 9.8421138 + ], + [ + 53.4745775, + 9.8425941 + ], + [ + 53.4745578, + 9.8430826 + ], + [ + 53.474524, + 9.8440012 + ] + ] + }, + { + "osmId": "27837747", + "name": null, + "lengthMeters": 123.93671381975784, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629648, + 10.0645189 + ], + [ + 53.56241, + 10.0648717 + ], + [ + 53.5619218, + 10.0651806 + ] + ] + }, + { + "osmId": "27837748", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 926.8094486808849, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5619218, + 10.0651806 + ], + [ + 53.5618491, + 10.0652251 + ], + [ + 53.5616818, + 10.0653274 + ], + [ + 53.5599212, + 10.0665172 + ], + [ + 53.5596374, + 10.0666934 + ], + [ + 53.5594532, + 10.0667626 + ], + [ + 53.5593752, + 10.0667895 + ], + [ + 53.5592685, + 10.0668263 + ], + [ + 53.558947, + 10.0669101 + ], + [ + 53.5556039, + 10.067459 + ], + [ + 53.5537944, + 10.0677626 + ] + ] + }, + { + "osmId": "27850758", + "name": null, + "lengthMeters": 145.94787866530316, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4399004, + 13.214831 + ], + [ + 52.440095, + 13.2157626 + ], + [ + 52.4401605, + 13.2160819 + ], + [ + 52.4402167, + 13.2163533 + ], + [ + 52.4402563, + 13.2165446 + ], + [ + 52.4403228, + 13.2168696 + ] + ] + }, + { + "osmId": "27850760", + "name": null, + "lengthMeters": 401.01120196302645, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4394176, + 13.2268411 + ], + [ + 52.4393276, + 13.2270531 + ], + [ + 52.4373457, + 13.2316832 + ] + ] + }, + { + "osmId": "27850762", + "name": null, + "lengthMeters": 402.646221219921, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4393741, + 13.2268084 + ], + [ + 52.4373922, + 13.2314427 + ], + [ + 52.4372945, + 13.2316711 + ] + ] + }, + { + "osmId": "27850766", + "name": null, + "lengthMeters": 634.636021816576, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4370971, + 13.23213 + ], + [ + 52.4338316, + 13.2397958 + ], + [ + 52.4338288, + 13.2398024 + ], + [ + 52.4338281, + 13.239804 + ] + ] + }, + { + "osmId": "27850771", + "name": null, + "lengthMeters": 171.92193530904092, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4371475, + 13.2321491 + ], + [ + 52.4370788, + 13.2323032 + ], + [ + 52.4368743, + 13.2327751 + ], + [ + 52.436715, + 13.2331502 + ], + [ + 52.4365879, + 13.233444 + ], + [ + 52.4364226, + 13.2338322 + ], + [ + 52.4362578, + 13.2342232 + ] + ] + }, + { + "osmId": "27850773", + "name": null, + "lengthMeters": 374.48292398595873, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4333276, + 13.2411127 + ], + [ + 52.4313664, + 13.2456032 + ] + ] + }, + { + "osmId": "27850775", + "name": null, + "lengthMeters": 787.2486928051608, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4313088, + 13.2457483 + ], + [ + 52.430707, + 13.2471457 + ], + [ + 52.4303992, + 13.2479098 + ], + [ + 52.4302315, + 13.2484899 + ], + [ + 52.4301567, + 13.2487489 + ], + [ + 52.4300417, + 13.2492293 + ], + [ + 52.4299392, + 13.2497375 + ], + [ + 52.42984, + 13.2503986 + ], + [ + 52.429775, + 13.2510751 + ], + [ + 52.4297498, + 13.2516434 + ], + [ + 52.429747, + 13.2522834 + ], + [ + 52.4297806, + 13.2529966 + ], + [ + 52.4298483, + 13.2537135 + ], + [ + 52.4299379, + 13.2543407 + ], + [ + 52.4300173, + 13.2547684 + ], + [ + 52.4300842, + 13.2550917 + ], + [ + 52.4302043, + 13.2555856 + ], + [ + 52.430452, + 13.2565259 + ] + ] + }, + { + "osmId": "27852878", + "name": null, + "lengthMeters": 786.728131208926, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4440257, + 13.2958402 + ], + [ + 52.4441944, + 13.2963217 + ], + [ + 52.4444284, + 13.2969998 + ], + [ + 52.4445867, + 13.2974837 + ], + [ + 52.4451352, + 13.2992244 + ], + [ + 52.4453569, + 13.2999153 + ], + [ + 52.4455542, + 13.3004936 + ], + [ + 52.4458252, + 13.301267 + ], + [ + 52.44677, + 13.3039655 + ], + [ + 52.4474135, + 13.3057925 + ], + [ + 52.4474766, + 13.3059716 + ] + ] + }, + { + "osmId": "27853060", + "name": "Wannseebahn", + "lengthMeters": 402.9813356407573, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4533515, + 13.3197012 + ], + [ + 52.4543153, + 13.3210739 + ], + [ + 52.4546081, + 13.3215033 + ], + [ + 52.4547067, + 13.3216412 + ], + [ + 52.4548024, + 13.3217744 + ], + [ + 52.4549398, + 13.3219583 + ], + [ + 52.4551102, + 13.32218 + ], + [ + 52.4552823, + 13.3223931 + ], + [ + 52.4556352, + 13.3228161 + ], + [ + 52.4558565, + 13.3230903 + ], + [ + 52.4561559, + 13.3234622 + ] + ] + }, + { + "osmId": "27853064", + "name": "Wannseebahn", + "lengthMeters": 346.9203873587763, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4509474, + 13.315451 + ], + [ + 52.4511125, + 13.3158104 + ], + [ + 52.4514671, + 13.3165327 + ], + [ + 52.4516808, + 13.316942 + ], + [ + 52.4519436, + 13.3174312 + ], + [ + 52.4523105, + 13.3180861 + ], + [ + 52.4526866, + 13.3187195 + ], + [ + 52.4530391, + 13.3192381 + ] + ] + }, + { + "osmId": "27853253", + "name": null, + "lengthMeters": 458.6582235094089, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724658, + 13.3436575 + ], + [ + 52.47411, + 13.3456895 + ], + [ + 52.4757254, + 13.3476757 + ], + [ + 52.4757643, + 13.3477235 + ] + ] + }, + { + "osmId": "27853493", + "name": "Stammbahn", + "lengthMeters": 1823.3741603359945, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4580331, + 13.3260266 + ], + [ + 52.4589712, + 13.3271871 + ], + [ + 52.4599178, + 13.3283502 + ], + [ + 52.4616449, + 13.3304942 + ], + [ + 52.4625134, + 13.3315755 + ], + [ + 52.4633703, + 13.3326663 + ], + [ + 52.4638688, + 13.3332839 + ], + [ + 52.4641443, + 13.3336086 + ], + [ + 52.4669185, + 13.3370667 + ], + [ + 52.4679779, + 13.3383834 + ], + [ + 52.4697768, + 13.3406702 + ], + [ + 52.4708757, + 13.3420726 + ], + [ + 52.4710832, + 13.3423228 + ] + ] + }, + { + "osmId": "27897265", + "name": null, + "lengthMeters": 135.8971780402747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1103791, + 11.5361755 + ], + [ + 48.110234, + 11.5361807 + ], + [ + 48.1101838, + 11.5361825 + ], + [ + 48.1094363, + 11.5362052 + ], + [ + 48.1093588, + 11.5362076 + ], + [ + 48.1091572, + 11.5362125 + ] + ] + }, + { + "osmId": "27914013", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 842.2487496950748, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4090621, + 9.9854242 + ], + [ + 53.4089683, + 9.9843919 + ], + [ + 53.4088737, + 9.9836551 + ], + [ + 53.4088265, + 9.983371 + ], + [ + 53.408704, + 9.9827536 + ], + [ + 53.4085554, + 9.9821052 + ], + [ + 53.4083937, + 9.981497 + ], + [ + 53.4082271, + 9.9809499 + ], + [ + 53.4080924, + 9.9805486 + ], + [ + 53.4078462, + 9.9799188 + ], + [ + 53.4073985, + 9.9789854 + ], + [ + 53.4070308, + 9.9782806 + ], + [ + 53.4067057, + 9.9777521 + ], + [ + 53.4064033, + 9.977323 + ], + [ + 53.4061622, + 9.9770175 + ], + [ + 53.4058245, + 9.9765956 + ], + [ + 53.4055054, + 9.9762383 + ], + [ + 53.4048188, + 9.975517 + ] + ] + }, + { + "osmId": "27914025", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 312.58368297111423, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4087413, + 9.990327 + ], + [ + 53.408895, + 9.9893191 + ], + [ + 53.4089391, + 9.9889237 + ], + [ + 53.4090318, + 9.9880925 + ], + [ + 53.4090867, + 9.9872137 + ], + [ + 53.4090836, + 9.9862033 + ], + [ + 53.4090865, + 9.9859486 + ], + [ + 53.409075, + 9.9856704 + ] + ] + }, + { + "osmId": "27923349", + "name": null, + "lengthMeters": 452.78950278044994, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530798, + 10.0211474 + ], + [ + 53.5530351, + 10.0208076 + ], + [ + 53.5528376, + 10.0192868 + ], + [ + 53.5527379, + 10.0180449 + ], + [ + 53.552722, + 10.0174331 + ], + [ + 53.5527507, + 10.0170248 + ], + [ + 53.5527682, + 10.0167459 + ], + [ + 53.5527811, + 10.0164657 + ], + [ + 53.5527729, + 10.0160485 + ], + [ + 53.552745, + 10.0153661 + ], + [ + 53.5527056, + 10.0146474 + ], + [ + 53.5527015, + 10.0143593 + ] + ] + }, + { + "osmId": "27923454", + "name": null, + "lengthMeters": 338.4695292070013, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5525653, + 10.0146176 + ], + [ + 53.5525895, + 10.0151037 + ], + [ + 53.5526037, + 10.0156544 + ], + [ + 53.5526017, + 10.0167385 + ], + [ + 53.5525993, + 10.0171193 + ], + [ + 53.5526075, + 10.0175383 + ], + [ + 53.5526285, + 10.0179551 + ], + [ + 53.5526469, + 10.0183042 + ], + [ + 53.5526793, + 10.0186313 + ], + [ + 53.5528273, + 10.0197029 + ] + ] + }, + { + "osmId": "27923455", + "name": null, + "lengthMeters": 126.6954476196104, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5524112, + 10.0146423 + ], + [ + 53.5524336, + 10.0148398 + ], + [ + 53.5524621, + 10.0150175 + ], + [ + 53.5525016, + 10.0152002 + ], + [ + 53.5525769, + 10.0154553 + ], + [ + 53.5526551, + 10.0156545 + ], + [ + 53.5527343, + 10.0158404 + ], + [ + 53.5528641, + 10.0160898 + ], + [ + 53.5529766, + 10.0162597 + ] + ] + }, + { + "osmId": "27923477", + "name": null, + "lengthMeters": 130.20410735113973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521021, + 10.0086911 + ], + [ + 53.5521112, + 10.0087905 + ], + [ + 53.5521131, + 10.0088896 + ], + [ + 53.5521087, + 10.008998 + ], + [ + 53.5521084, + 10.0090766 + ], + [ + 53.5521089, + 10.0091799 + ], + [ + 53.5521112, + 10.0093183 + ], + [ + 53.5521153, + 10.0094439 + ], + [ + 53.5521225, + 10.0095881 + ], + [ + 53.5521355, + 10.0097188 + ], + [ + 53.5521508, + 10.0098613 + ], + [ + 53.5521646, + 10.0099966 + ], + [ + 53.5521762, + 10.010104 + ], + [ + 53.5521944, + 10.0101969 + ], + [ + 53.5522182, + 10.0102928 + ], + [ + 53.5522445, + 10.0104236 + ], + [ + 53.5522688, + 10.0106277 + ] + ] + }, + { + "osmId": "27992304", + "name": null, + "lengthMeters": 78.2852960980086, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532059, + 13.3125527 + ], + [ + 52.5322095, + 13.3136833 + ] + ] + }, + { + "osmId": "27992305", + "name": null, + "lengthMeters": 291.24531113140443, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5299222, + 13.29641 + ], + [ + 52.529925, + 13.296427 + ], + [ + 52.5299827, + 13.2967772 + ], + [ + 52.5301679, + 13.2980282 + ], + [ + 52.5304254, + 13.2999312 + ], + [ + 52.5304604, + 13.30019 + ], + [ + 52.5304735, + 13.3002882 + ], + [ + 52.5304951, + 13.3004442 + ], + [ + 52.5305115, + 13.3005715 + ], + [ + 52.5305156, + 13.3006031 + ] + ] + }, + { + "osmId": "27992308", + "name": null, + "lengthMeters": 421.4414489415162, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312413, + 13.306469 + ], + [ + 52.5313951, + 13.3076165 + ], + [ + 52.5314371, + 13.30793 + ], + [ + 52.532059, + 13.3125527 + ] + ] + }, + { + "osmId": "27992309", + "name": null, + "lengthMeters": 421.3330383218024, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320094, + 13.3125704 + ], + [ + 52.5319883, + 13.3124351 + ], + [ + 52.5319825, + 13.312394 + ], + [ + 52.5318847, + 13.3116519 + ], + [ + 52.5311844, + 13.3064911 + ] + ] + }, + { + "osmId": "27992311", + "name": null, + "lengthMeters": 659.1767785446118, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5311152, + 13.3059507 + ], + [ + 52.5306474, + 13.3020798 + ], + [ + 52.5306056, + 13.3017341 + ], + [ + 52.5305771, + 13.3014965 + ], + [ + 52.5305747, + 13.3014765 + ], + [ + 52.530544, + 13.3012414 + ], + [ + 52.530316, + 13.2995592 + ], + [ + 52.5302638, + 13.2991615 + ], + [ + 52.530215, + 13.2988177 + ], + [ + 52.5301185, + 13.2981462 + ], + [ + 52.5300836, + 13.2979142 + ], + [ + 52.5300171, + 13.2974758 + ], + [ + 52.5299957, + 13.2973392 + ], + [ + 52.5298536, + 13.2964312 + ] + ] + }, + { + "osmId": "28022955", + "name": "Vogelfluglinie", + "lengthMeters": 5012.011317897062, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7216975, + 10.2654585 + ], + [ + 53.7199413, + 10.2647339 + ], + [ + 53.7196527, + 10.2646148 + ], + [ + 53.7179925, + 10.2639213 + ], + [ + 53.717983, + 10.2639173 + ], + [ + 53.716392, + 10.2632526 + ], + [ + 53.7141749, + 10.2623312 + ], + [ + 53.7114239, + 10.2611829 + ], + [ + 53.7112037, + 10.2610904 + ], + [ + 53.7091861, + 10.260257 + ], + [ + 53.7056342, + 10.2587898 + ], + [ + 53.7038751, + 10.2580479 + ], + [ + 53.7025694, + 10.2574973 + ], + [ + 53.6999817, + 10.2564657 + ], + [ + 53.6994906, + 10.2562498 + ], + [ + 53.698773, + 10.2559525 + ], + [ + 53.6978911, + 10.2555968 + ], + [ + 53.6973569, + 10.2553745 + ], + [ + 53.6968402, + 10.255153 + ], + [ + 53.6962575, + 10.25491 + ], + [ + 53.695221, + 10.254486 + ], + [ + 53.6938815, + 10.253932 + ], + [ + 53.6926317, + 10.2534017 + ], + [ + 53.6912383, + 10.2528303 + ], + [ + 53.6899152, + 10.2522737 + ], + [ + 53.6890465, + 10.2519119 + ], + [ + 53.6883635, + 10.2516264 + ], + [ + 53.6881362, + 10.2515285 + ], + [ + 53.6880111, + 10.2514769 + ], + [ + 53.6880047, + 10.2514743 + ], + [ + 53.6878213, + 10.2513988 + ], + [ + 53.6866323, + 10.2509015 + ], + [ + 53.6854063, + 10.2503912 + ], + [ + 53.684592, + 10.2500434 + ], + [ + 53.6843484, + 10.2499443 + ], + [ + 53.683317, + 10.2495084 + ], + [ + 53.6822909, + 10.2490862 + ], + [ + 53.6814246, + 10.248724 + ], + [ + 53.6800443, + 10.2481468 + ], + [ + 53.6779479, + 10.2472629 + ], + [ + 53.6779309, + 10.2472557 + ] + ] + }, + { + "osmId": "28104115", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1445.9892431259195, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4219164, + 10.0178607 + ], + [ + 53.4215981, + 10.017901 + ], + [ + 53.4201415, + 10.0181426 + ], + [ + 53.4184995, + 10.0184237 + ], + [ + 53.4180641, + 10.0184586 + ], + [ + 53.4178982, + 10.0184719 + ], + [ + 53.4172033, + 10.018469 + ], + [ + 53.4164146, + 10.0183832 + ], + [ + 53.4157731, + 10.0182459 + ], + [ + 53.4152663, + 10.0180868 + ], + [ + 53.4144398, + 10.0177164 + ], + [ + 53.413873, + 10.0173831 + ], + [ + 53.4130795, + 10.0168042 + ], + [ + 53.4125672, + 10.0163513 + ], + [ + 53.4120384, + 10.0158313 + ], + [ + 53.4117002, + 10.0154491 + ], + [ + 53.4116757, + 10.0154206 + ], + [ + 53.4113366, + 10.014989 + ], + [ + 53.4108879, + 10.014378 + ], + [ + 53.4104078, + 10.0136347 + ], + [ + 53.4100631, + 10.0130431 + ], + [ + 53.4099078, + 10.0127812 + ] + ] + }, + { + "osmId": "28199924", + "name": null, + "lengthMeters": 188.8457584581702, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050927, + 13.4819795 + ], + [ + 52.5049789, + 13.4820901 + ], + [ + 52.5048854, + 13.482176 + ], + [ + 52.5047764, + 13.4822677 + ], + [ + 52.5046619, + 13.4823583 + ], + [ + 52.5045525, + 13.4824336 + ], + [ + 52.5044422, + 13.4825011 + ], + [ + 52.5043319, + 13.4825606 + ], + [ + 52.5041998, + 13.4826223 + ], + [ + 52.5035012, + 13.4829064 + ] + ] + }, + { + "osmId": "28199926", + "name": null, + "lengthMeters": 169.86537997864178, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5071826, + 13.4783005 + ], + [ + 52.5072014, + 13.4782649 + ], + [ + 52.507292, + 13.4780928 + ], + [ + 52.5073525, + 13.4779863 + ], + [ + 52.5074151, + 13.4778816 + ], + [ + 52.5075486, + 13.477683 + ], + [ + 52.507656, + 13.477534 + ], + [ + 52.5077797, + 13.4773791 + ], + [ + 52.5079802, + 13.4771625 + ], + [ + 52.5080555, + 13.4770891 + ], + [ + 52.5081477, + 13.4770039 + ], + [ + 52.5082565, + 13.4769104 + ], + [ + 52.5083924, + 13.4768054 + ] + ] + }, + { + "osmId": "28200157", + "name": null, + "lengthMeters": 94.03422601559588, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5085456, + 13.4766933 + ], + [ + 52.5086522, + 13.4766274 + ], + [ + 52.5087702, + 13.4765652 + ], + [ + 52.5088899, + 13.4765109 + ], + [ + 52.5090348, + 13.4764584 + ], + [ + 52.5091765, + 13.4764165 + ], + [ + 52.509276, + 13.4763901 + ], + [ + 52.5093656, + 13.4763689 + ] + ] + }, + { + "osmId": "28226876", + "name": null, + "lengthMeters": 345.0256105377391, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018193, + 13.4751197 + ], + [ + 52.5018641, + 13.4749232 + ], + [ + 52.5019663, + 13.4743789 + ], + [ + 52.5021869, + 13.4732049 + ], + [ + 52.5023055, + 13.4725838 + ], + [ + 52.5024275, + 13.4719335 + ], + [ + 52.5024509, + 13.4718096 + ], + [ + 52.5025502, + 13.471285 + ], + [ + 52.5026126, + 13.4709536 + ], + [ + 52.5027425, + 13.4702536 + ] + ] + }, + { + "osmId": "28226879", + "name": null, + "lengthMeters": 183.19103195857164, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4944412, + 13.496546 + ], + [ + 52.4943847, + 13.4966618 + ], + [ + 52.494366, + 13.4967002 + ], + [ + 52.4943133, + 13.4968029 + ], + [ + 52.4942646, + 13.4968977 + ], + [ + 52.4941862, + 13.4970413 + ], + [ + 52.4940679, + 13.4972488 + ], + [ + 52.4939425, + 13.4974544 + ], + [ + 52.4936836, + 13.4978541 + ], + [ + 52.4935493, + 13.4980709 + ], + [ + 52.4934124, + 13.4982904 + ], + [ + 52.4933952, + 13.4983174 + ], + [ + 52.4932916, + 13.4984804 + ] + ] + }, + { + "osmId": "28243326", + "name": null, + "lengthMeters": 351.30121974917506, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5068852, + 13.4783794 + ], + [ + 52.5069624, + 13.4781019 + ], + [ + 52.5070001, + 13.4779363 + ], + [ + 52.5070642, + 13.4776186 + ], + [ + 52.5071211, + 13.4772607 + ], + [ + 52.5071665, + 13.4768588 + ], + [ + 52.5071812, + 13.4766433 + ], + [ + 52.5071911, + 13.4764978 + ], + [ + 52.5071988, + 13.4761827 + ], + [ + 52.5071983, + 13.4758254 + ], + [ + 52.5071875, + 13.4755622 + ], + [ + 52.5071671, + 13.4752532 + ], + [ + 52.5071255, + 13.4748881 + ], + [ + 52.5070799, + 13.4745804 + ], + [ + 52.5070161, + 13.4742372 + ], + [ + 52.5069368, + 13.4739069 + ], + [ + 52.5068746, + 13.4736767 + ], + [ + 52.5068128, + 13.4734722 + ], + [ + 52.5067912, + 13.4734062 + ], + [ + 52.5067832, + 13.4733819 + ] + ] + }, + { + "osmId": "28243472", + "name": null, + "lengthMeters": 244.30850325518423, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096572, + 13.4762948 + ], + [ + 52.5097041, + 13.476283 + ], + [ + 52.5102555, + 13.476145 + ], + [ + 52.51087, + 13.4759961 + ], + [ + 52.5112498, + 13.4759028 + ], + [ + 52.5112998, + 13.4758905 + ], + [ + 52.5118301, + 13.4757603 + ] + ] + }, + { + "osmId": "28243475", + "name": null, + "lengthMeters": 97.67958131243523, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5093599, + 13.476318 + ], + [ + 52.5092744, + 13.4763374 + ], + [ + 52.5091748, + 13.4763618 + ], + [ + 52.5090265, + 13.4764062 + ], + [ + 52.5088841, + 13.4764578 + ], + [ + 52.5087585, + 13.4765143 + ], + [ + 52.5086325, + 13.4765807 + ], + [ + 52.5085095, + 13.4766609 + ] + ] + }, + { + "osmId": "28243481", + "name": null, + "lengthMeters": 440.4574518208601, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5081736, + 13.4737107 + ], + [ + 52.5085836, + 13.474102 + ], + [ + 52.508607, + 13.4741243 + ], + [ + 52.509171, + 13.474662 + ], + [ + 52.5095223, + 13.4749941 + ], + [ + 52.5096754, + 13.4751257 + ], + [ + 52.5098047, + 13.4752282 + ], + [ + 52.5100412, + 13.4753943 + ], + [ + 52.5102411, + 13.4755049 + ], + [ + 52.510458, + 13.475593 + ], + [ + 52.5106058, + 13.4756405 + ], + [ + 52.5107639, + 13.4756799 + ], + [ + 52.5109434, + 13.475707 + ], + [ + 52.5110842, + 13.4757208 + ], + [ + 52.5112299, + 13.4757235 + ], + [ + 52.5113877, + 13.475721 + ], + [ + 52.5116211, + 13.4756887 + ], + [ + 52.5118443, + 13.4756409 + ] + ] + }, + { + "osmId": "28243482", + "name": null, + "lengthMeters": 300.8199577866232, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5056825, + 13.4715008 + ], + [ + 52.5058766, + 13.4716834 + ], + [ + 52.506191, + 13.4719839 + ], + [ + 52.5068071, + 13.4725721 + ], + [ + 52.50688, + 13.4726417 + ], + [ + 52.5072755, + 13.4730158 + ], + [ + 52.5075765, + 13.4733046 + ], + [ + 52.5080229, + 13.4737302 + ] + ] + }, + { + "osmId": "28261382", + "name": "Siemensbahn", + "lengthMeters": 177.61964695325398, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388562, + 13.2673754 + ], + [ + 52.5387989, + 13.27 + ] + ] + }, + { + "osmId": "28261385", + "name": "Siemensbahn", + "lengthMeters": 106.46306280842832, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5393886, + 13.2629546 + ], + [ + 52.5392739, + 13.2632604 + ], + [ + 52.5391715, + 13.2635701 + ], + [ + 52.5390709, + 13.2639796 + ], + [ + 52.5389904, + 13.264379 + ] + ] + }, + { + "osmId": "28261392", + "name": "Siemensbahn", + "lengthMeters": 720.4252343241449, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5457746, + 13.2510419 + ], + [ + 52.5455788, + 13.2514067 + ], + [ + 52.5453478, + 13.2518352 + ], + [ + 52.5450863, + 13.2523224 + ], + [ + 52.5448636, + 13.2527393 + ], + [ + 52.5421575, + 13.2577282 + ], + [ + 52.541686, + 13.2586016 + ], + [ + 52.5414705, + 13.2590047 + ] + ] + }, + { + "osmId": "28276837", + "name": null, + "lengthMeters": 125.99991658635362, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5009812, + 13.48398 + ], + [ + 52.5020841, + 13.4835528 + ] + ] + }, + { + "osmId": "28277107", + "name": null, + "lengthMeters": 190.05719189354298, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5035118, + 13.4829754 + ], + [ + 52.5040192, + 13.4827534 + ], + [ + 52.5041242, + 13.4827077 + ], + [ + 52.5043446, + 13.4826083 + ], + [ + 52.5044898, + 13.4825272 + ], + [ + 52.5046326, + 13.4824342 + ], + [ + 52.5047773, + 13.4823282 + ], + [ + 52.5049232, + 13.4822084 + ], + [ + 52.5051119, + 13.4820276 + ] + ] + }, + { + "osmId": "28277246", + "name": null, + "lengthMeters": 105.5440863387697, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4990869, + 13.4840764 + ], + [ + 52.4990845, + 13.4840827 + ], + [ + 52.4990318, + 13.4842204 + ], + [ + 52.4989407, + 13.4844472 + ], + [ + 52.4988387, + 13.4846765 + ], + [ + 52.4987362, + 13.4848874 + ], + [ + 52.4986162, + 13.4851111 + ], + [ + 52.4985399, + 13.4852407 + ], + [ + 52.4985032, + 13.4853007 + ] + ] + }, + { + "osmId": "28277322", + "name": null, + "lengthMeters": 253.19966747800018, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983922, + 13.4860816 + ], + [ + 52.4989379, + 13.484792 + ], + [ + 52.4990378, + 13.4845448 + ], + [ + 52.4993702, + 13.4837091 + ], + [ + 52.4996534, + 13.4829681 + ] + ] + }, + { + "osmId": "28277326", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 337.58963318025684, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505299, + 13.4552617 + ], + [ + 52.5052438, + 13.4556193 + ], + [ + 52.5051077, + 13.4564099 + ], + [ + 52.5049792, + 13.4571522 + ], + [ + 52.5048698, + 13.4577689 + ], + [ + 52.5047528, + 13.4584558 + ], + [ + 52.5046274, + 13.4592173 + ], + [ + 52.5044812, + 13.4600649 + ] + ] + }, + { + "osmId": "28331018", + "name": null, + "lengthMeters": 738.3739956957859, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1244099, + 11.548987 + ], + [ + 48.1238971, + 11.5500529 + ], + [ + 48.1236971, + 11.5504537 + ], + [ + 48.123276, + 11.5512887 + ], + [ + 48.1229393, + 11.5519551 + ], + [ + 48.122873, + 11.55209 + ], + [ + 48.1224569, + 11.5529395 + ], + [ + 48.1215109, + 11.5549196 + ], + [ + 48.1208174, + 11.5563775 + ], + [ + 48.1207113, + 11.5565928 + ], + [ + 48.1206844, + 11.5566474 + ], + [ + 48.1205012, + 11.5570279 + ] + ] + }, + { + "osmId": "28452265", + "name": null, + "lengthMeters": 253.96403884521462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5545339, + 9.9890433 + ], + [ + 53.5544363, + 9.9895288 + ], + [ + 53.5543095, + 9.9900155 + ], + [ + 53.5541779, + 9.9904253 + ], + [ + 53.5540146, + 9.9908773 + ], + [ + 53.553902, + 9.9911915 + ], + [ + 53.5537616, + 9.991611 + ], + [ + 53.5536391, + 9.9920228 + ], + [ + 53.5535209, + 9.992478 + ] + ] + }, + { + "osmId": "28452277", + "name": null, + "lengthMeters": 566.2654630504259, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502465, + 9.9841489 + ], + [ + 53.5508882, + 9.9837092 + ], + [ + 53.5512127, + 9.9835384 + ], + [ + 53.5515746, + 9.9834214 + ], + [ + 53.5518595, + 9.9833821 + ], + [ + 53.5521521, + 9.9834013 + ], + [ + 53.5523127, + 9.9834271 + ], + [ + 53.5524732, + 9.9834801 + ], + [ + 53.5527921, + 9.9836201 + ], + [ + 53.5530926, + 9.9838251 + ], + [ + 53.5532585, + 9.9839834 + ], + [ + 53.5535795, + 9.9843388 + ], + [ + 53.5537648, + 9.9846178 + ], + [ + 53.5539179, + 9.9848576 + ], + [ + 53.5540212, + 9.9850709 + ], + [ + 53.5541668, + 9.9854062 + ], + [ + 53.5543159, + 9.9858303 + ], + [ + 53.5544758, + 9.9864442 + ] + ] + }, + { + "osmId": "28486326", + "name": null, + "lengthMeters": 938.7490365043328, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3905671, + 13.3944781 + ], + [ + 52.3911438, + 13.3941031 + ], + [ + 52.3919719, + 13.3935647 + ], + [ + 52.392378, + 13.3932987 + ], + [ + 52.3932432, + 13.392735 + ], + [ + 52.3940358, + 13.392227 + ], + [ + 52.3947831, + 13.3917842 + ], + [ + 52.3952984, + 13.3914819 + ], + [ + 52.3961965, + 13.3909549 + ], + [ + 52.396471, + 13.390792 + ], + [ + 52.3967884, + 13.3905935 + ], + [ + 52.396793, + 13.3905906 + ], + [ + 52.3972701, + 13.3902922 + ], + [ + 52.3972995, + 13.3902737 + ], + [ + 52.3975863, + 13.3900929 + ], + [ + 52.3980725, + 13.3897703 + ], + [ + 52.3981263, + 13.3897335 + ], + [ + 52.3982464, + 13.3896513 + ], + [ + 52.3984463, + 13.3895146 + ] + ] + }, + { + "osmId": "28496736", + "name": null, + "lengthMeters": 84.68643189513195, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5638629, + 9.9761436 + ], + [ + 53.5638673, + 9.9766874 + ], + [ + 53.5638733, + 9.9774258 + ] + ] + }, + { + "osmId": "28496737", + "name": null, + "lengthMeters": 568.5689923266368, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5638733, + 9.9774258 + ], + [ + 53.5638822, + 9.9782571 + ], + [ + 53.5638825, + 9.978279 + ], + [ + 53.563894, + 9.9802475 + ], + [ + 53.5638789, + 9.9828858 + ], + [ + 53.5638668, + 9.9830616 + ], + [ + 53.5638591, + 9.9831567 + ], + [ + 53.5638387, + 9.9833575 + ], + [ + 53.5637983, + 9.9836551 + ], + [ + 53.5637469, + 9.9839491 + ], + [ + 53.5637271, + 9.9840375 + ], + [ + 53.5636937, + 9.9841866 + ], + [ + 53.5635857, + 9.9845934 + ], + [ + 53.5635085, + 9.9848493 + ], + [ + 53.5633445, + 9.9852433 + ], + [ + 53.5631114, + 9.9856877 + ] + ] + }, + { + "osmId": "28503764", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 347.27872547747893, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1170318, + 11.536334 + ], + [ + 48.1172743, + 11.536375 + ], + [ + 48.1174735, + 11.5364087 + ], + [ + 48.1183927, + 11.5366043 + ], + [ + 48.1193009, + 11.536782 + ], + [ + 48.1195225, + 11.536828 + ], + [ + 48.1201273, + 11.5369536 + ] + ] + }, + { + "osmId": "28503767", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 516.6875709093218, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1249315, + 11.5379344 + ], + [ + 48.1226175, + 11.5374358 + ], + [ + 48.1203362, + 11.5369029 + ] + ] + }, + { + "osmId": "28503768", + "name": null, + "lengthMeters": 553.3530304074269, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1203414, + 11.5368482 + ], + [ + 48.1214653, + 11.5371211 + ], + [ + 48.1226239, + 11.5373847 + ], + [ + 48.1229616, + 11.5374567 + ], + [ + 48.1237808, + 11.5376314 + ], + [ + 48.1249361, + 11.5378806 + ], + [ + 48.1252641, + 11.5379375 + ] + ] + }, + { + "osmId": "28536804", + "name": null, + "lengthMeters": 519.0579138188731, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3909202, + 13.088589 + ], + [ + 52.390691, + 13.0858708 + ], + [ + 52.3906805, + 13.0857467 + ], + [ + 52.3906355, + 13.0847462 + ], + [ + 52.3906261, + 13.0841641 + ], + [ + 52.3906388, + 13.0834564 + ], + [ + 52.3906496, + 13.0831437 + ], + [ + 52.3906639, + 13.0829347 + ], + [ + 52.3907013, + 13.0823395 + ], + [ + 52.3908089, + 13.0809866 + ] + ] + }, + { + "osmId": "28545057", + "name": "Siemensbahn", + "lengthMeters": 207.19300673786478, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297054, + 13.2800254 + ], + [ + 52.5295621, + 13.2802463 + ], + [ + 52.5294482, + 13.2804639 + ], + [ + 52.5293468, + 13.2806776 + ], + [ + 52.5292588, + 13.2808776 + ], + [ + 52.529192, + 13.2810589 + ], + [ + 52.5291026, + 13.2813482 + ], + [ + 52.52901, + 13.2816946 + ], + [ + 52.5289162, + 13.2821801 + ], + [ + 52.5288609, + 13.2826828 + ] + ] + }, + { + "osmId": "28553453", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 303.69770819262504, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1257258, + 11.5381044 + ], + [ + 48.1259194, + 11.538115 + ], + [ + 48.1261249, + 11.5381114 + ], + [ + 48.1265064, + 11.5380643 + ], + [ + 48.1267708, + 11.5380124 + ], + [ + 48.1270253, + 11.5379457 + ], + [ + 48.1273577, + 11.5378583 + ], + [ + 48.1276851, + 11.5377603 + ], + [ + 48.1284233, + 11.5375392 + ] + ] + }, + { + "osmId": "28553455", + "name": null, + "lengthMeters": 842.7856048163261, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.125734, + 11.5379767 + ], + [ + 48.1259244, + 11.5379758 + ], + [ + 48.126122, + 11.5379627 + ], + [ + 48.1263102, + 11.5379389 + ], + [ + 48.1265038, + 11.5379085 + ], + [ + 48.1267541, + 11.5378498 + ], + [ + 48.1270067, + 11.5377746 + ], + [ + 48.1271308, + 11.537727 + ], + [ + 48.1273014, + 11.5376609 + ], + [ + 48.1274878, + 11.5375818 + ], + [ + 48.1276507, + 11.5375066 + ], + [ + 48.1278311, + 11.5374115 + ], + [ + 48.1280034, + 11.5373089 + ], + [ + 48.1280523, + 11.5372791 + ], + [ + 48.1280551, + 11.5372775 + ], + [ + 48.1281744, + 11.5372049 + ], + [ + 48.128342, + 11.5370938 + ], + [ + 48.12866, + 11.5368609 + ], + [ + 48.128972, + 11.5366004 + ], + [ + 48.1292924, + 11.5362843 + ], + [ + 48.129565, + 11.5359936 + ], + [ + 48.1298983, + 11.535585 + ], + [ + 48.1301992, + 11.5351718 + ], + [ + 48.1303245, + 11.5349979 + ], + [ + 48.1304968, + 11.5347507 + ], + [ + 48.1307944, + 11.5343289 + ], + [ + 48.1310923, + 11.533912 + ], + [ + 48.1312026, + 11.5337485 + ], + [ + 48.131549, + 11.5332614 + ], + [ + 48.1320987, + 11.5324779 + ] + ] + }, + { + "osmId": "28557428", + "name": null, + "lengthMeters": 1130.924215450573, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1978459, + 11.4648726 + ], + [ + 48.1983179, + 11.4646436 + ], + [ + 48.198769, + 11.4644222 + ], + [ + 48.1992927, + 11.4641668 + ], + [ + 48.1998208, + 11.4639534 + ], + [ + 48.2001458, + 11.463835 + ], + [ + 48.2004436, + 11.463743 + ], + [ + 48.2007443, + 11.4636541 + ], + [ + 48.2011981, + 11.4635166 + ], + [ + 48.2016083, + 11.4633848 + ], + [ + 48.2020293, + 11.4632341 + ], + [ + 48.2024477, + 11.463068 + ], + [ + 48.2038965, + 11.4625074 + ], + [ + 48.2039123, + 11.4625014 + ], + [ + 48.2040049, + 11.462466 + ], + [ + 48.2047519, + 11.462174 + ], + [ + 48.2068379, + 11.4613573 + ], + [ + 48.2076833, + 11.4610277 + ] + ] + }, + { + "osmId": "28557467", + "name": null, + "lengthMeters": 228.28351529916418, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1978665, + 11.4649871 + ], + [ + 48.1988016, + 11.464602 + ], + [ + 48.1991279, + 11.4644666 + ], + [ + 48.199294, + 11.4643864 + ], + [ + 48.1994383, + 11.4643132 + ], + [ + 48.1995708, + 11.4642313 + ], + [ + 48.1996223, + 11.4641975 + ], + [ + 48.199815, + 11.4640432 + ] + ] + }, + { + "osmId": "28557552", + "name": null, + "lengthMeters": 1021.9210498854662, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1988505, + 11.4647396 + ], + [ + 48.1992939, + 11.4645595 + ], + [ + 48.1998691, + 11.4643283 + ], + [ + 48.2000666, + 11.4642499 + ], + [ + 48.2007796, + 11.46396 + ], + [ + 48.201205, + 11.4637855 + ], + [ + 48.2016422, + 11.4636038 + ], + [ + 48.202474, + 11.463261 + ], + [ + 48.2033932, + 11.4628818 + ], + [ + 48.2039305, + 11.4626706 + ], + [ + 48.2042733, + 11.4625341 + ], + [ + 48.2052634, + 11.4621486 + ], + [ + 48.2060249, + 11.4618489 + ], + [ + 48.2068633, + 11.4615154 + ], + [ + 48.2077274, + 11.4611697 + ] + ] + }, + { + "osmId": "28557554", + "name": null, + "lengthMeters": 1062.6291328692146, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1790657, + 11.4723752 + ], + [ + 48.1802063, + 11.4719134 + ], + [ + 48.1806151, + 11.4717443 + ], + [ + 48.1813187, + 11.471499 + ], + [ + 48.1817551, + 11.4713435 + ], + [ + 48.1832267, + 11.4708502 + ], + [ + 48.183743, + 11.4706825 + ], + [ + 48.1842662, + 11.4705128 + ], + [ + 48.1843279, + 11.4704932 + ], + [ + 48.1849152, + 11.4703017 + ], + [ + 48.1859631, + 11.469955 + ], + [ + 48.1867493, + 11.469679 + ], + [ + 48.1873108, + 11.4694753 + ], + [ + 48.1883604, + 11.4690556 + ] + ] + }, + { + "osmId": "28557773", + "name": null, + "lengthMeters": 1366.197369394628, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1643329, + 11.4782128 + ], + [ + 48.1652039, + 11.4778635 + ], + [ + 48.1668303, + 11.4771698 + ], + [ + 48.1680961, + 11.4766476 + ], + [ + 48.1688838, + 11.476343 + ], + [ + 48.1696854, + 11.4760294 + ], + [ + 48.1704841, + 11.4757185 + ], + [ + 48.1741611, + 11.4742806 + ], + [ + 48.1754688, + 11.473772 + ], + [ + 48.1762088, + 11.4734927 + ] + ] + }, + { + "osmId": "28557775", + "name": null, + "lengthMeters": 542.9144391315741, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1593483, + 11.4800753 + ], + [ + 48.1604943, + 11.4796245 + ], + [ + 48.1609692, + 11.4794382 + ], + [ + 48.1614275, + 11.4792695 + ], + [ + 48.1617045, + 11.4791691 + ], + [ + 48.1634074, + 11.4785667 + ], + [ + 48.1640864, + 11.4783097 + ] + ] + }, + { + "osmId": "28569544", + "name": null, + "lengthMeters": 203.00110330298628, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350217, + 11.6248187 + ], + [ + 48.1351624, + 11.6240567 + ], + [ + 48.1352119, + 11.6237572 + ], + [ + 48.1352701, + 11.6232244 + ], + [ + 48.1352989, + 11.6226698 + ], + [ + 48.1352998, + 11.6221296 + ] + ] + }, + { + "osmId": "28570205", + "name": null, + "lengthMeters": 194.6510996432468, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1479006, + 11.4427604 + ], + [ + 48.1476679, + 11.4426017 + ], + [ + 48.1474779, + 11.4424789 + ], + [ + 48.1474191, + 11.4424445 + ], + [ + 48.1473617, + 11.4424105 + ], + [ + 48.1472433, + 11.4423419 + ], + [ + 48.1470628, + 11.4422331 + ], + [ + 48.1469871, + 11.44219 + ], + [ + 48.1469014, + 11.4421407 + ], + [ + 48.1468293, + 11.4420976 + ], + [ + 48.1465129, + 11.441922 + ], + [ + 48.1462726, + 11.4417994 + ] + ] + }, + { + "osmId": "28611857", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 248.51348288101423, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1923074, + 11.5191068 + ], + [ + 48.1904909, + 11.5171537 + ] + ] + }, + { + "osmId": "28611865", + "name": null, + "lengthMeters": 321.6106417644857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1885761, + 11.5152636 + ], + [ + 48.1883406, + 11.5151525 + ], + [ + 48.1880992, + 11.5150099 + ], + [ + 48.1878123, + 11.5148076 + ], + [ + 48.1876477, + 11.5146643 + ], + [ + 48.1874895, + 11.5145127 + ], + [ + 48.1873384, + 11.5143572 + ], + [ + 48.1871881, + 11.5141864 + ], + [ + 48.1869801, + 11.5139245 + ], + [ + 48.186844, + 11.5137404 + ], + [ + 48.1867095, + 11.5135512 + ], + [ + 48.1864442, + 11.513176 + ], + [ + 48.1862158, + 11.5128501 + ] + ] + }, + { + "osmId": "28622642", + "name": "Verbindungsbahn", + "lengthMeters": 143.55982434860354, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5631108, + 9.9609061 + ], + [ + 53.563198, + 9.9612078 + ], + [ + 53.5632637, + 9.9614561 + ], + [ + 53.5633189, + 9.9617161 + ], + [ + 53.5633717, + 9.9620315 + ], + [ + 53.5633911, + 9.9621828 + ], + [ + 53.5634185, + 9.9624176 + ], + [ + 53.5634285, + 9.9625524 + ], + [ + 53.563444, + 9.9628007 + ], + [ + 53.5634503, + 9.9629834 + ] + ] + }, + { + "osmId": "28622644", + "name": "Verbindungsbahn", + "lengthMeters": 156.44750201355865, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5622619, + 9.9586539 + ], + [ + 53.5626107, + 9.9595208 + ], + [ + 53.5629463, + 9.960392 + ], + [ + 53.5630288, + 9.960639 + ] + ] + }, + { + "osmId": "28622646", + "name": "Verbindungsbahn", + "lengthMeters": 128.7739430302688, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5634656, + 9.9633003 + ], + [ + 53.5635013, + 9.9642094 + ], + [ + 53.5635375, + 9.9652464 + ] + ] + }, + { + "osmId": "28679354", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 118.0531685849602, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518692, + 10.0072351 + ], + [ + 53.5517465, + 10.007293 + ], + [ + 53.5516228, + 10.0073665 + ], + [ + 53.5515752, + 10.0074007 + ], + [ + 53.5515655, + 10.0074077 + ], + [ + 53.5515221, + 10.007441 + ], + [ + 53.5514719, + 10.0074795 + ], + [ + 53.5513145, + 10.0076138 + ], + [ + 53.5512007, + 10.0077313 + ], + [ + 53.5511859, + 10.0077485 + ], + [ + 53.551065, + 10.0078888 + ], + [ + 53.5509369, + 10.0080587 + ] + ] + }, + { + "osmId": "28679356", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 194.36753718419823, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.551022, + 10.0082291 + ], + [ + 53.5509031, + 10.0083779 + ], + [ + 53.5508076, + 10.0085301 + ], + [ + 53.5507873, + 10.0085598 + ], + [ + 53.5507694, + 10.0085892 + ], + [ + 53.5507476, + 10.0086249 + ], + [ + 53.5507285, + 10.0086562 + ], + [ + 53.5506004, + 10.0088969 + ], + [ + 53.5503376, + 10.0094301 + ], + [ + 53.5502759, + 10.0095679 + ], + [ + 53.5500738, + 10.0100823 + ], + [ + 53.550003, + 10.0102893 + ], + [ + 53.549936, + 10.0105056 + ] + ] + }, + { + "osmId": "28679357", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 80.93588288769239, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5508698, + 10.0085678 + ], + [ + 53.5508493, + 10.008603 + ], + [ + 53.5507713, + 10.0087291 + ], + [ + 53.5506524, + 10.0089213 + ], + [ + 53.5505067, + 10.0091904 + ], + [ + 53.5503743, + 10.0094632 + ] + ] + }, + { + "osmId": "28679359", + "name": "City-S-Bahn", + "lengthMeters": 159.5892985415552, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.550522, + 10.0093799 + ], + [ + 53.5502756, + 10.0099591 + ], + [ + 53.5501829, + 10.0102167 + ], + [ + 53.550117, + 10.0104214 + ], + [ + 53.5500548, + 10.0106267 + ], + [ + 53.5500124, + 10.0107773 + ], + [ + 53.5499339, + 10.0110755 + ], + [ + 53.549887, + 10.0112832 + ], + [ + 53.549839, + 10.011492 + ] + ] + }, + { + "osmId": "28679362", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 152.8408290582694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5543532, + 10.0057168 + ], + [ + 53.5542596, + 10.0058497 + ], + [ + 53.5541833, + 10.0059426 + ], + [ + 53.5540852, + 10.006068 + ], + [ + 53.553846, + 10.0063447 + ], + [ + 53.5537929, + 10.0064062 + ], + [ + 53.5536489, + 10.0065329 + ], + [ + 53.5535224, + 10.006616 + ], + [ + 53.5532975, + 10.0067638 + ], + [ + 53.5532544, + 10.0067861 + ], + [ + 53.5531636, + 10.0068345 + ] + ] + }, + { + "osmId": "28679363", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 133.34162955424006, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5544688, + 10.0059729 + ], + [ + 53.5544614, + 10.0059844 + ], + [ + 53.5544441, + 10.0060087 + ], + [ + 53.5543951, + 10.0060775 + ], + [ + 53.5543654, + 10.0061184 + ], + [ + 53.5542996, + 10.0062053 + ], + [ + 53.554249, + 10.0062722 + ], + [ + 53.5541234, + 10.0064246 + ], + [ + 53.5540096, + 10.0065532 + ], + [ + 53.5538633, + 10.0067186 + ], + [ + 53.5537869, + 10.0067788 + ], + [ + 53.5536778, + 10.0068566 + ], + [ + 53.5534436, + 10.0069802 + ] + ] + }, + { + "osmId": "28679364", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 95.96657786860992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.554773, + 10.0049447 + ], + [ + 53.5549469, + 10.0047315 + ], + [ + 53.5550215, + 10.00464 + ], + [ + 53.5551698, + 10.0044565 + ], + [ + 53.5552781, + 10.0043224 + ], + [ + 53.5553492, + 10.0042365 + ], + [ + 53.5554181, + 10.0041438 + ], + [ + 53.5554648, + 10.0040767 + ] + ] + }, + { + "osmId": "28679367", + "name": null, + "lengthMeters": 128.11527662890472, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5508704, + 10.00714 + ], + [ + 53.550728, + 10.0071561 + ], + [ + 53.5507125, + 10.0071577 + ], + [ + 53.5504882, + 10.0071797 + ], + [ + 53.5504744, + 10.0071806 + ], + [ + 53.5504597, + 10.0071809 + ], + [ + 53.5503273, + 10.0071839 + ], + [ + 53.5501289, + 10.007194 + ], + [ + 53.5501179, + 10.0071948 + ], + [ + 53.549923, + 10.0072098 + ], + [ + 53.5497741, + 10.0072269 + ], + [ + 53.5497198, + 10.007234 + ] + ] + }, + { + "osmId": "28680436", + "name": null, + "lengthMeters": 203.78743742712746, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5506146, + 10.0096173 + ], + [ + 53.5509546, + 10.0091038 + ], + [ + 53.5511136, + 10.0089357 + ], + [ + 53.5511403, + 10.0089107 + ], + [ + 53.5512589, + 10.0087926 + ], + [ + 53.5512641, + 10.0087885 + ], + [ + 53.5513891, + 10.0086731 + ], + [ + 53.5515284, + 10.0085868 + ], + [ + 53.5516489, + 10.008526 + ], + [ + 53.5518206, + 10.008453 + ], + [ + 53.5519762, + 10.0083997 + ], + [ + 53.5521376, + 10.0083426 + ], + [ + 53.5522329, + 10.0083178 + ] + ] + }, + { + "osmId": "28680437", + "name": null, + "lengthMeters": 127.09908413495546, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5545658, + 10.0063223 + ], + [ + 53.5544458, + 10.0064628 + ], + [ + 53.5543504, + 10.0065559 + ], + [ + 53.5541507, + 10.0067403 + ], + [ + 53.5540217, + 10.0068551 + ], + [ + 53.5539149, + 10.0069571 + ], + [ + 53.5537882, + 10.0070543 + ], + [ + 53.55356, + 10.0072297 + ] + ] + }, + { + "osmId": "28686944", + "name": null, + "lengthMeters": 177.15959446043576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5492139, + 9.9901999 + ], + [ + 53.5493618, + 9.9904819 + ], + [ + 53.5493983, + 9.9905601 + ], + [ + 53.5494295, + 9.9906458 + ], + [ + 53.549462, + 9.9907878 + ], + [ + 53.5494769, + 9.9908876 + ], + [ + 53.549488, + 9.9910275 + ], + [ + 53.5494938, + 9.991164 + ], + [ + 53.5494988, + 9.9914107 + ], + [ + 53.5494997, + 9.9915184 + ], + [ + 53.5495045, + 9.9916696 + ], + [ + 53.5495123, + 9.9917855 + ], + [ + 53.5495226, + 9.991884 + ], + [ + 53.5495346, + 9.9919693 + ], + [ + 53.5495542, + 9.9920879 + ], + [ + 53.5495735, + 9.9921898 + ], + [ + 53.5495972, + 9.9922896 + ], + [ + 53.5496099, + 9.9923353 + ], + [ + 53.549626, + 9.9923757 + ], + [ + 53.549663, + 9.9924594 + ], + [ + 53.5497471, + 9.9926294 + ] + ] + }, + { + "osmId": "28686953", + "name": null, + "lengthMeters": 86.0154717613961, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5489318, + 10.007341 + ], + [ + 53.5484476, + 10.0074661 + ], + [ + 53.5481665, + 10.0075304 + ] + ] + }, + { + "osmId": "28692771", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 160.6064110322924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4609037, + 9.992448 + ], + [ + 53.4622668, + 9.9932503 + ] + ] + }, + { + "osmId": "28700216", + "name": "Berliner Ringbahn", + "lengthMeters": 210.6980950606897, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5366979, + 13.3494264 + ], + [ + 52.5366382, + 13.3491765 + ], + [ + 52.5366167, + 13.3490906 + ], + [ + 52.5365526, + 13.3488402 + ], + [ + 52.536309, + 13.3479159 + ], + [ + 52.536224, + 13.3475351 + ], + [ + 52.5361459, + 13.3471337 + ], + [ + 52.5360944, + 13.346837 + ], + [ + 52.5360456, + 13.3465074 + ] + ] + }, + { + "osmId": "28708099", + "name": null, + "lengthMeters": 418.5719872646929, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1696867, + 11.5330721 + ], + [ + 48.1697457, + 11.5329818 + ], + [ + 48.1698029, + 11.5328845 + ], + [ + 48.1698597, + 11.5327668 + ], + [ + 48.1698964, + 11.532701 + ], + [ + 48.1700037, + 11.5325286 + ], + [ + 48.1712014, + 11.5306279 + ], + [ + 48.1712536, + 11.5305527 + ], + [ + 48.1713595, + 11.5303877 + ], + [ + 48.1716887, + 11.5298546 + ], + [ + 48.1718423, + 11.5295902 + ], + [ + 48.17208, + 11.5291747 + ], + [ + 48.1721235, + 11.5290731 + ], + [ + 48.1721441, + 11.5290052 + ], + [ + 48.1721481, + 11.5289575 + ], + [ + 48.1721459, + 11.528904 + ], + [ + 48.1721394, + 11.5288577 + ] + ] + }, + { + "osmId": "28723881", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 2904.280359783473, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904909, + 11.5171537 + ], + [ + 48.1842281, + 11.5104379 + ], + [ + 48.1841198, + 11.5103218 + ], + [ + 48.1828587, + 11.5089585 + ], + [ + 48.1823977, + 11.5084503 + ], + [ + 48.1819673, + 11.5079759 + ], + [ + 48.1808406, + 11.5067391 + ], + [ + 48.1800919, + 11.5059174 + ], + [ + 48.179415, + 11.5051894 + ], + [ + 48.1786351, + 11.504353 + ], + [ + 48.1778548, + 11.5035367 + ], + [ + 48.1773767, + 11.5030444 + ], + [ + 48.1766527, + 11.5022686 + ], + [ + 48.176419, + 11.5020181 + ], + [ + 48.1761391, + 11.5017251 + ], + [ + 48.175737, + 11.5013016 + ], + [ + 48.1754782, + 11.5010291 + ], + [ + 48.1748212, + 11.500327 + ], + [ + 48.1741741, + 11.4996335 + ], + [ + 48.1740323, + 11.4994814 + ], + [ + 48.1735914, + 11.4990081 + ], + [ + 48.1734389, + 11.4988445 + ], + [ + 48.173378, + 11.4987791 + ], + [ + 48.1722486, + 11.497567 + ], + [ + 48.1717986, + 11.4970605 + ], + [ + 48.1715677, + 11.4967762 + ], + [ + 48.1714411, + 11.496621 + ], + [ + 48.1713463, + 11.4965046 + ], + [ + 48.1710989, + 11.4961809 + ], + [ + 48.1708414, + 11.495824 + ], + [ + 48.1705671, + 11.4954203 + ], + [ + 48.1703814, + 11.4951345 + ], + [ + 48.1695607, + 11.4938093 + ] + ] + }, + { + "osmId": "28736283", + "name": null, + "lengthMeters": 123.72960075096034, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363759, + 13.3479001 + ], + [ + 52.536488, + 13.3491 + ], + [ + 52.5365443, + 13.3497084 + ] + ] + }, + { + "osmId": "28764010", + "name": "U3", + "lengthMeters": 110.72673432322645, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4501307, + 13.2793803 + ], + [ + 52.4501855, + 13.2795839 + ], + [ + 52.4502268, + 13.2797371 + ], + [ + 52.4503098, + 13.2800136 + ], + [ + 52.4504431, + 13.2804137 + ], + [ + 52.4506015, + 13.2808168 + ] + ] + }, + { + "osmId": "28812479", + "name": null, + "lengthMeters": 3145.4038270248875, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4705658, + 13.3859116 + ], + [ + 52.4703997, + 13.3866412 + ], + [ + 52.4702337, + 13.3873625 + ], + [ + 52.4701897, + 13.387554 + ], + [ + 52.4700139, + 13.3883265 + ], + [ + 52.4699587, + 13.3885668 + ], + [ + 52.4698799, + 13.3889118 + ], + [ + 52.4697428, + 13.3894834 + ], + [ + 52.4696736, + 13.389755 + ], + [ + 52.4695316, + 13.3902766 + ], + [ + 52.4693621, + 13.3908219 + ], + [ + 52.4692805, + 13.3910628 + ], + [ + 52.4691376, + 13.3914627 + ], + [ + 52.4689837, + 13.3918566 + ], + [ + 52.4688543, + 13.3921697 + ], + [ + 52.4687224, + 13.3924788 + ], + [ + 52.468456, + 13.3930807 + ], + [ + 52.4683728, + 13.3932706 + ], + [ + 52.4680412, + 13.3940259 + ], + [ + 52.4679242, + 13.3942907 + ], + [ + 52.4676937, + 13.3948175 + ], + [ + 52.4673267, + 13.3956548 + ], + [ + 52.4670941, + 13.3962098 + ], + [ + 52.4668678, + 13.396785 + ], + [ + 52.4665973, + 13.3975285 + ], + [ + 52.4663907, + 13.39815 + ], + [ + 52.4661865, + 13.3988132 + ], + [ + 52.4659603, + 13.3996128 + ], + [ + 52.4657427, + 13.4004149 + ], + [ + 52.4656333, + 13.4008215 + ], + [ + 52.4655011, + 13.4013147 + ], + [ + 52.4653284, + 13.4020212 + ], + [ + 52.4652234, + 13.4025125 + ], + [ + 52.4651302, + 13.4030441 + ], + [ + 52.4650504, + 13.4035772 + ], + [ + 52.4649646, + 13.4043327 + ], + [ + 52.4649273, + 13.40478 + ], + [ + 52.4648917, + 13.4053985 + ], + [ + 52.4648803, + 13.4063347 + ], + [ + 52.464881, + 13.4064857 + ], + [ + 52.4649091, + 13.4073442 + ], + [ + 52.4649414, + 13.4078777 + ], + [ + 52.4649738, + 13.4083098 + ], + [ + 52.4650893, + 13.4096819 + ], + [ + 52.4651797, + 13.4107326 + ], + [ + 52.4653354, + 13.4125571 + ], + [ + 52.4654539, + 13.4139405 + ], + [ + 52.4655687, + 13.4152193 + ], + [ + 52.4658408, + 13.4181381 + ], + [ + 52.4659506, + 13.4193005 + ], + [ + 52.4659942, + 13.4197136 + ], + [ + 52.4660426, + 13.4201254 + ], + [ + 52.4661172, + 13.4206689 + ], + [ + 52.4661748, + 13.4210289 + ], + [ + 52.4662185, + 13.4212807 + ], + [ + 52.4663152, + 13.4218325 + ], + [ + 52.4664201, + 13.4224347 + ], + [ + 52.4665082, + 13.4230453 + ], + [ + 52.4666101, + 13.4238756 + ], + [ + 52.4669574, + 13.4267179 + ], + [ + 52.4671493, + 13.4282947 + ], + [ + 52.467222, + 13.4288597 + ], + [ + 52.4673355, + 13.4296223 + ], + [ + 52.4673373, + 13.4296343 + ] + ] + }, + { + "osmId": "28812807", + "name": null, + "lengthMeters": 152.9731203710432, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4692284, + 13.441515 + ], + [ + 52.4691383, + 13.4410895 + ], + [ + 52.4690827, + 13.4408095 + ], + [ + 52.4690281, + 13.4405141 + ], + [ + 52.4689783, + 13.4402134 + ], + [ + 52.468848, + 13.4393464 + ] + ] + }, + { + "osmId": "28812921", + "name": null, + "lengthMeters": 232.7771716544806, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4704352, + 13.4567703 + ], + [ + 52.4706547, + 13.455978 + ], + [ + 52.4707847, + 13.4554673 + ], + [ + 52.4708961, + 13.4548853 + ], + [ + 52.4709594, + 13.4543034 + ], + [ + 52.4709818, + 13.4538364 + ], + [ + 52.470985, + 13.4534934 + ] + ] + }, + { + "osmId": "28812960", + "name": null, + "lengthMeters": 498.1604327557859, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4708358, + 13.4519966 + ], + [ + 52.4708054, + 13.4518227 + ], + [ + 52.4707386, + 13.4514452 + ], + [ + 52.4706212, + 13.4507915 + ], + [ + 52.4705192, + 13.4501812 + ], + [ + 52.4703726, + 13.4492161 + ], + [ + 52.4702828, + 13.448619 + ], + [ + 52.4700664, + 13.447179 + ], + [ + 52.4700526, + 13.447079 + ], + [ + 52.4699831, + 13.4466214 + ], + [ + 52.4699272, + 13.4462135 + ], + [ + 52.469848, + 13.4455349 + ], + [ + 52.4698076, + 13.4452023 + ], + [ + 52.4697588, + 13.4448608 + ] + ] + }, + { + "osmId": "28812961", + "name": null, + "lengthMeters": 103.01056169885159, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.470985, + 13.4534934 + ], + [ + 52.4709816, + 13.45334 + ], + [ + 52.4709744, + 13.4531702 + ], + [ + 52.4709577, + 13.4529242 + ], + [ + 52.4709251, + 13.4526123 + ], + [ + 52.4708979, + 13.4523972 + ], + [ + 52.4708688, + 13.4522011 + ], + [ + 52.4708358, + 13.4519966 + ] + ] + }, + { + "osmId": "28812962", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 257.78789939145474, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4706448, + 13.4523945 + ], + [ + 52.4705693, + 13.4519996 + ], + [ + 52.4704863, + 13.4516084 + ], + [ + 52.4704108, + 13.4512087 + ], + [ + 52.4703778, + 13.4510311 + ], + [ + 52.4703066, + 13.4505774 + ], + [ + 52.4702723, + 13.4503316 + ], + [ + 52.4702229, + 13.4499177 + ], + [ + 52.4701655, + 13.4493796 + ], + [ + 52.4701423, + 13.4491448 + ], + [ + 52.4700949, + 13.4487048 + ] + ] + }, + { + "osmId": "28812995", + "name": null, + "lengthMeters": 402.1153776318238, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.478243, + 13.4571858 + ], + [ + 52.4754096, + 13.4566159 + ], + [ + 52.4747536, + 13.4564828 + ], + [ + 52.4746538, + 13.4564603 + ] + ] + }, + { + "osmId": "28813047", + "name": null, + "lengthMeters": 176.84800364853558, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4736252, + 13.4560509 + ], + [ + 52.4735614, + 13.4560103 + ], + [ + 52.4732644, + 13.4558133 + ], + [ + 52.4730049, + 13.4556204 + ], + [ + 52.4726684, + 13.4553053 + ], + [ + 52.4725382, + 13.455168 + ], + [ + 52.472491, + 13.4551154 + ], + [ + 52.4723025, + 13.4549059 + ], + [ + 52.4722623, + 13.4548581 + ], + [ + 52.4722299, + 13.4548186 + ] + ] + }, + { + "osmId": "28813658", + "name": null, + "lengthMeters": 1406.2274011402112, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5394647, + 13.4405192 + ], + [ + 52.5392948, + 13.4408997 + ], + [ + 52.5391543, + 13.4412276 + ], + [ + 52.5390558, + 13.4414776 + ], + [ + 52.5389749, + 13.4416868 + ], + [ + 52.538845, + 13.4420289 + ], + [ + 52.538625, + 13.4426213 + ], + [ + 52.5381952, + 13.4437811 + ], + [ + 52.5377222, + 13.4450565 + ], + [ + 52.5375285, + 13.4455792 + ], + [ + 52.5373385, + 13.446075 + ], + [ + 52.5372565, + 13.4462711 + ], + [ + 52.5371715, + 13.4464561 + ], + [ + 52.5370847, + 13.446634 + ], + [ + 52.5369973, + 13.4468012 + ], + [ + 52.5368412, + 13.4470715 + ], + [ + 52.5367261, + 13.4472557 + ], + [ + 52.5365898, + 13.4474523 + ], + [ + 52.536525, + 13.4475439 + ], + [ + 52.5364572, + 13.4476307 + ], + [ + 52.5363435, + 13.4477725 + ], + [ + 52.5360179, + 13.4481244 + ], + [ + 52.5336338, + 13.4505066 + ], + [ + 52.5336019, + 13.4505383 + ], + [ + 52.5322188, + 13.4519201 + ], + [ + 52.5314698, + 13.4526678 + ], + [ + 52.5306617, + 13.453476 + ], + [ + 52.5303617, + 13.4537752 + ], + [ + 52.5302134, + 13.4539231 + ], + [ + 52.5301885, + 13.453949 + ] + ] + }, + { + "osmId": "28813704", + "name": null, + "lengthMeters": 408.18583988517054, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5233705, + 13.4663367 + ], + [ + 52.523229, + 13.4669908 + ], + [ + 52.5231512, + 13.4673167 + ], + [ + 52.5230646, + 13.4676371 + ], + [ + 52.5229814, + 13.467906 + ], + [ + 52.5228861, + 13.4681713 + ], + [ + 52.5227978, + 13.4683999 + ], + [ + 52.5226971, + 13.4686118 + ], + [ + 52.5226045, + 13.4688 + ], + [ + 52.5225075, + 13.4689808 + ], + [ + 52.5224013, + 13.4691625 + ], + [ + 52.5222894, + 13.4693369 + ], + [ + 52.5221424, + 13.4695462 + ], + [ + 52.5219848, + 13.4697426 + ], + [ + 52.5218405, + 13.4699088 + ], + [ + 52.5216873, + 13.4700622 + ], + [ + 52.5215478, + 13.4701929 + ], + [ + 52.5214026, + 13.4703108 + ], + [ + 52.5211951, + 13.4704576 + ], + [ + 52.5209853, + 13.4705916 + ] + ] + }, + { + "osmId": "28820204", + "name": null, + "lengthMeters": 507.7906248782881, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5496064, + 13.4117358 + ], + [ + 52.549607, + 13.4117254 + ], + [ + 52.5496318, + 13.4113466 + ], + [ + 52.5496528, + 13.4110343 + ], + [ + 52.5496592, + 13.4109345 + ], + [ + 52.5497167, + 13.4100175 + ], + [ + 52.5497427, + 13.4094325 + ], + [ + 52.5497578, + 13.4084289 + ], + [ + 52.5497549, + 13.4080188 + ], + [ + 52.5497486, + 13.4077485 + ], + [ + 52.549747, + 13.4076968 + ], + [ + 52.5497337, + 13.4072849 + ], + [ + 52.5497043, + 13.4066562 + ], + [ + 52.5495775, + 13.4042489 + ] + ] + }, + { + "osmId": "28826082", + "name": null, + "lengthMeters": 144.43071446562715, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4196399, + 13.1771862 + ], + [ + 52.4199697, + 13.1778522 + ], + [ + 52.4199776, + 13.1778686 + ], + [ + 52.4201206, + 13.1781526 + ], + [ + 52.420467, + 13.1788283 + ] + ] + }, + { + "osmId": "28826751", + "name": "Wannseebahn", + "lengthMeters": 692.3752143313975, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4580526, + 13.3258213 + ], + [ + 52.4588701, + 13.326826 + ], + [ + 52.4600424, + 13.3282706 + ], + [ + 52.4603909, + 13.3287056 + ], + [ + 52.4620807, + 13.3308065 + ], + [ + 52.4623031, + 13.3310837 + ], + [ + 52.4626419, + 13.3315115 + ], + [ + 52.4630197, + 13.3319838 + ] + ] + }, + { + "osmId": "28826754", + "name": "Wannseebahn", + "lengthMeters": 214.6794821382622, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4563464, + 13.3236981 + ], + [ + 52.4568649, + 13.3243474 + ], + [ + 52.4571105, + 13.3246574 + ], + [ + 52.4578848, + 13.3256124 + ] + ] + }, + { + "osmId": "28834673", + "name": null, + "lengthMeters": 349.93631915689554, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4746656, + 9.9995659 + ], + [ + 53.4716547, + 9.9980275 + ] + ] + }, + { + "osmId": "28834674", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 349.9324395333123, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4747349, + 9.9991889 + ], + [ + 53.4717264, + 9.9976375 + ] + ] + }, + { + "osmId": "28834675", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 82.13631698272137, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4708531, + 9.9971991 + ], + [ + 53.470941, + 9.9972423 + ], + [ + 53.4714607, + 9.9975075 + ], + [ + 53.4715605, + 9.9975563 + ] + ] + }, + { + "osmId": "28860996", + "name": null, + "lengthMeters": 457.6743377205729, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998703, + 13.2805391 + ], + [ + 52.499778, + 13.2802382 + ], + [ + 52.4995814, + 13.2796413 + ], + [ + 52.4994516, + 13.2792476 + ], + [ + 52.4993937, + 13.2790734 + ], + [ + 52.4993811, + 13.2790322 + ], + [ + 52.4993765, + 13.2790171 + ], + [ + 52.4989895, + 13.277851 + ], + [ + 52.4986893, + 13.2769269 + ], + [ + 52.4984418, + 13.2761652 + ], + [ + 52.4981007, + 13.2750636 + ], + [ + 52.4979458, + 13.2745632 + ] + ] + }, + { + "osmId": "28860997", + "name": null, + "lengthMeters": 109.70527794570438, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5004832, + 13.2828468 + ], + [ + 52.5003455, + 13.2823082 + ], + [ + 52.5002481, + 13.281897 + ], + [ + 52.5002154, + 13.2817513 + ], + [ + 52.5001877, + 13.2816277 + ], + [ + 52.5001222, + 13.2813388 + ] + ] + }, + { + "osmId": "28861240", + "name": null, + "lengthMeters": 211.24162881108188, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020618, + 13.2880352 + ], + [ + 52.502005, + 13.2877669 + ], + [ + 52.501963, + 13.2875686 + ], + [ + 52.5018264, + 13.2869779 + ], + [ + 52.5017464, + 13.2866378 + ], + [ + 52.5016947, + 13.2864218 + ], + [ + 52.5016863, + 13.2863865 + ], + [ + 52.5016483, + 13.286228 + ], + [ + 52.5014987, + 13.28563 + ], + [ + 52.5014944, + 13.2856131 + ], + [ + 52.5014698, + 13.2855146 + ], + [ + 52.5014165, + 13.2853171 + ], + [ + 52.5013749, + 13.2851633 + ], + [ + 52.5013664, + 13.285132 + ] + ] + }, + { + "osmId": "28863452", + "name": null, + "lengthMeters": 111.72348173665343, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113361, + 13.4307524 + ], + [ + 52.5112904, + 13.4310039 + ], + [ + 52.5110693, + 13.4322167 + ], + [ + 52.5110425, + 13.4323309 + ] + ] + }, + { + "osmId": "28863462", + "name": null, + "lengthMeters": 98.15342087330825, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119531, + 13.4274868 + ], + [ + 52.5118034, + 13.4289162 + ] + ] + }, + { + "osmId": "28889090", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1333.295970112702, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5776758, + 13.4975468 + ], + [ + 52.5799821, + 13.4945966 + ], + [ + 52.5801692, + 13.4943572 + ], + [ + 52.5825404, + 13.4913238 + ], + [ + 52.5853865, + 13.4876669 + ], + [ + 52.5871352, + 13.48542 + ] + ] + }, + { + "osmId": "28889102", + "name": null, + "lengthMeters": 189.4538479426062, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.603632, + 13.459441 + ], + [ + 52.6036376, + 13.4597401 + ], + [ + 52.6036289, + 13.460122 + ], + [ + 52.6036045, + 13.4603728 + ], + [ + 52.6035788, + 13.4605547 + ], + [ + 52.603543, + 13.4607441 + ], + [ + 52.6034706, + 13.4610386 + ], + [ + 52.6033863, + 13.4612811 + ], + [ + 52.603282, + 13.461539 + ], + [ + 52.6031358, + 13.461816 + ], + [ + 52.6030537, + 13.4619779 + ] + ] + }, + { + "osmId": "28889178", + "name": null, + "lengthMeters": 1022.3793289589414, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6789225, + 13.2878139 + ], + [ + 52.6784841, + 13.2878686 + ], + [ + 52.6782279, + 13.2878939 + ], + [ + 52.6779706, + 13.2879133 + ], + [ + 52.6777153, + 13.2879273 + ], + [ + 52.6774564, + 13.2879352 + ], + [ + 52.677201, + 13.2879368 + ], + [ + 52.6769422, + 13.2879315 + ], + [ + 52.676687, + 13.2879217 + ], + [ + 52.6764365, + 13.2879046 + ], + [ + 52.6761733, + 13.2878814 + ], + [ + 52.6756302, + 13.2878242 + ], + [ + 52.6752977, + 13.2877895 + ], + [ + 52.6749232, + 13.2877502 + ], + [ + 52.6746603, + 13.2877226 + ], + [ + 52.6730955, + 13.2875586 + ], + [ + 52.671346, + 13.2873751 + ], + [ + 52.6712368, + 13.2873636 + ], + [ + 52.6708383, + 13.2873109 + ], + [ + 52.6705033, + 13.2872568 + ], + [ + 52.6701679, + 13.287195 + ], + [ + 52.669951, + 13.2871549 + ], + [ + 52.6697487, + 13.2871138 + ] + ] + }, + { + "osmId": "28889965", + "name": null, + "lengthMeters": 174.92161217842792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5727666, + 13.4374123 + ], + [ + 52.5728132, + 13.4374089 + ], + [ + 52.572905, + 13.4373977 + ], + [ + 52.573022, + 13.4373637 + ], + [ + 52.5730695, + 13.4373282 + ], + [ + 52.5731113, + 13.4372773 + ], + [ + 52.5731618, + 13.4371635 + ], + [ + 52.5731854, + 13.43708 + ], + [ + 52.5731984, + 13.4369693 + ], + [ + 52.5731989, + 13.4368828 + ], + [ + 52.5731871, + 13.4367976 + ], + [ + 52.5731667, + 13.436724 + ], + [ + 52.5731489, + 13.4366849 + ], + [ + 52.5731203, + 13.4366282 + ], + [ + 52.5730842, + 13.4365797 + ], + [ + 52.5730317, + 13.4365346 + ], + [ + 52.5729661, + 13.4365038 + ], + [ + 52.5729122, + 13.4364984 + ], + [ + 52.5728617, + 13.4365107 + ], + [ + 52.5728309, + 13.4365255 + ], + [ + 52.5727976, + 13.4365507 + ], + [ + 52.5727627, + 13.4365843 + ], + [ + 52.5727181, + 13.4366535 + ], + [ + 52.5726899, + 13.4367101 + ], + [ + 52.5725511, + 13.4371063 + ] + ] + }, + { + "osmId": "28907158", + "name": null, + "lengthMeters": 480.0163709883833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5356264, + 13.1890012 + ], + [ + 52.5356403, + 13.188753 + ], + [ + 52.5356478, + 13.1881543 + ], + [ + 52.5356603, + 13.1879323 + ], + [ + 52.5357113, + 13.1871764 + ], + [ + 52.5357248, + 13.1869567 + ], + [ + 52.535724, + 13.1867091 + ], + [ + 52.5357128, + 13.1864877 + ], + [ + 52.535687, + 13.1862157 + ], + [ + 52.5356312, + 13.1857681 + ], + [ + 52.5355437, + 13.1851229 + ], + [ + 52.5354413, + 13.1842853 + ], + [ + 52.5354028, + 13.1838512 + ], + [ + 52.5353881, + 13.1835457 + ], + [ + 52.5353772, + 13.1831753 + ], + [ + 52.5353787, + 13.1828735 + ], + [ + 52.5354043, + 13.1820502 + ], + [ + 52.5354062, + 13.1819915 + ], + [ + 52.535407, + 13.1819652 + ] + ] + }, + { + "osmId": "28953372", + "name": null, + "lengthMeters": 408.48243293080543, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5065297, + 13.4902205 + ], + [ + 52.506321, + 13.4898946 + ], + [ + 52.506194, + 13.4896847 + ], + [ + 52.5060231, + 13.4893933 + ], + [ + 52.5055022, + 13.488459 + ], + [ + 52.5054523, + 13.4883696 + ], + [ + 52.5049878, + 13.4875374 + ], + [ + 52.5047573, + 13.487097 + ], + [ + 52.5043016, + 13.4861053 + ], + [ + 52.5041109, + 13.4856893 + ] + ] + }, + { + "osmId": "28953846", + "name": null, + "lengthMeters": 92.36040755282048, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073323, + 13.4912127 + ], + [ + 52.5075903, + 13.4918132 + ], + [ + 52.5078119, + 13.4923269 + ] + ] + }, + { + "osmId": "28969179", + "name": null, + "lengthMeters": 163.01065734114147, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1924796, + 11.5106965 + ], + [ + 48.1923944, + 11.5111458 + ], + [ + 48.1923383, + 11.5113987 + ], + [ + 48.192232, + 11.5118079 + ], + [ + 48.1921306, + 11.5121685 + ], + [ + 48.1919427, + 11.5127374 + ] + ] + }, + { + "osmId": "28981903", + "name": null, + "lengthMeters": 640.0903880681329, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3996251, + 13.1436851 + ], + [ + 52.399667, + 13.1437337 + ], + [ + 52.3997177, + 13.1437925 + ], + [ + 52.4012969, + 13.1455227 + ], + [ + 52.4020821, + 13.146383 + ], + [ + 52.402972, + 13.1473513 + ], + [ + 52.4041008, + 13.1485863 + ], + [ + 52.404414, + 13.1489204 + ] + ] + }, + { + "osmId": "28981908", + "name": null, + "lengthMeters": 1553.8955551833828, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4045276, + 13.1490428 + ], + [ + 52.4057477, + 13.1503706 + ], + [ + 52.4073987, + 13.1521578 + ], + [ + 52.4075608, + 13.1523346 + ], + [ + 52.4085371, + 13.1533999 + ], + [ + 52.4085504, + 13.1534147 + ], + [ + 52.4088721, + 13.1537685 + ], + [ + 52.4089931, + 13.1539016 + ], + [ + 52.410074, + 13.1550757 + ], + [ + 52.4105258, + 13.1555685 + ], + [ + 52.4109404, + 13.1560705 + ], + [ + 52.4113376, + 13.15662 + ], + [ + 52.4117293, + 13.1572563 + ], + [ + 52.411906, + 13.1575696 + ], + [ + 52.4120857, + 13.1579224 + ], + [ + 52.4122603, + 13.1582818 + ], + [ + 52.4123837, + 13.1585596 + ], + [ + 52.4125195, + 13.1588886 + ], + [ + 52.4126568, + 13.1592441 + ], + [ + 52.4127809, + 13.1595987 + ], + [ + 52.412899, + 13.1599587 + ], + [ + 52.4130099, + 13.1603249 + ], + [ + 52.4131097, + 13.160692 + ], + [ + 52.4132116, + 13.161088 + ], + [ + 52.4133116, + 13.1615 + ], + [ + 52.4135038, + 13.1623344 + ], + [ + 52.4135964, + 13.162747 + ], + [ + 52.4136934, + 13.1631614 + ], + [ + 52.4137928, + 13.1635804 + ], + [ + 52.4138886, + 13.1639719 + ], + [ + 52.4139813, + 13.1643134 + ], + [ + 52.4141027, + 13.1647471 + ] + ] + }, + { + "osmId": "28982657", + "name": null, + "lengthMeters": 1039.6769242078924, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3989957, + 13.141418 + ], + [ + 52.3985761, + 13.1407908 + ], + [ + 52.3972957, + 13.1392215 + ], + [ + 52.3967825, + 13.1384405 + ], + [ + 52.3964342, + 13.1377909 + ], + [ + 52.3961181, + 13.1370963 + ], + [ + 52.3959493, + 13.136703 + ], + [ + 52.3957773, + 13.1362514 + ], + [ + 52.395627, + 13.1357977 + ], + [ + 52.3954948, + 13.1353598 + ], + [ + 52.3953986, + 13.1349762 + ], + [ + 52.3952978, + 13.1345392 + ], + [ + 52.3952133, + 13.1341519 + ], + [ + 52.3951283, + 13.1336644 + ], + [ + 52.3950484, + 13.1330623 + ], + [ + 52.394984, + 13.1324724 + ], + [ + 52.3948793, + 13.1312008 + ], + [ + 52.3947387, + 13.1293914 + ], + [ + 52.3946646, + 13.1286492 + ] + ] + }, + { + "osmId": "28983328", + "name": null, + "lengthMeters": 217.38619711238047, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3939484, + 13.1224279 + ], + [ + 52.3938131, + 13.1208807 + ], + [ + 52.393779, + 13.1204976 + ], + [ + 52.3937297, + 13.1200997 + ], + [ + 52.3936337, + 13.1192669 + ] + ] + }, + { + "osmId": "28983419", + "name": null, + "lengthMeters": 105.4927015123986, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3908453, + 13.0870669 + ], + [ + 52.3909672, + 13.0886086 + ] + ] + }, + { + "osmId": "28983420", + "name": null, + "lengthMeters": 114.84595945526142, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3916433, + 13.096523 + ], + [ + 52.3915636, + 13.0948356 + ] + ] + }, + { + "osmId": "28983422", + "name": null, + "lengthMeters": 114.83693490436418, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3915065, + 13.0948456 + ], + [ + 52.3916433, + 13.096523 + ] + ] + }, + { + "osmId": "28983424", + "name": null, + "lengthMeters": 230.80884401682258, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3911865, + 13.0911532 + ], + [ + 52.391228, + 13.091636 + ], + [ + 52.3913225, + 13.0927461 + ], + [ + 52.3914245, + 13.0940054 + ], + [ + 52.3914786, + 13.0945204 + ] + ] + }, + { + "osmId": "28983946", + "name": null, + "lengthMeters": 119.04667699418586, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3910023, + 13.0890403 + ], + [ + 52.3911537, + 13.090777 + ] + ] + }, + { + "osmId": "28984029", + "name": null, + "lengthMeters": 1040.096419547232, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3936337, + 13.1192669 + ], + [ + 52.3933937, + 13.1165298 + ], + [ + 52.3931478, + 13.1136605 + ], + [ + 52.3931448, + 13.1136291 + ], + [ + 52.3923305, + 13.1043361 + ], + [ + 52.3923282, + 13.1043124 + ], + [ + 52.3923073, + 13.1040938 + ] + ] + }, + { + "osmId": "28993384", + "name": null, + "lengthMeters": 182.39339048809737, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4661681, + 13.4916203 + ], + [ + 52.4654381, + 13.4927923 + ], + [ + 52.4651687, + 13.4932047 + ], + [ + 52.4649842, + 13.4934835 + ] + ] + }, + { + "osmId": "28999888", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1077.1387905687943, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4127193, + 10.051861 + ], + [ + 53.4128302, + 10.051664 + ], + [ + 53.4133167, + 10.0507997 + ], + [ + 53.4140623, + 10.0493755 + ], + [ + 53.4142884, + 10.0489375 + ], + [ + 53.4149575, + 10.0475715 + ], + [ + 53.4150244, + 10.0474273 + ], + [ + 53.4153502, + 10.0467248 + ], + [ + 53.4157257, + 10.0459153 + ], + [ + 53.4165038, + 10.043986 + ], + [ + 53.4166155, + 10.0437284 + ], + [ + 53.4170535, + 10.0427187 + ], + [ + 53.4173405, + 10.0420571 + ], + [ + 53.4177295, + 10.0411602 + ], + [ + 53.4184698, + 10.0396041 + ], + [ + 53.4187063, + 10.039107 + ] + ] + }, + { + "osmId": "29004693", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 116.26269460595621, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4043483, + 10.0649636 + ], + [ + 53.405113, + 10.0637675 + ] + ] + }, + { + "osmId": "29006078", + "name": null, + "lengthMeters": 141.10071554065865, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5696064, + 9.9694385 + ], + [ + 53.569236, + 9.9696384 + ], + [ + 53.5690188, + 9.9697291 + ], + [ + 53.5688654, + 9.9697695 + ], + [ + 53.5686788, + 9.9697974 + ], + [ + 53.5683653, + 9.9698116 + ] + ] + }, + { + "osmId": "29028561", + "name": null, + "lengthMeters": 717.9592112369621, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4761957, + 13.5368151 + ], + [ + 52.4737904, + 13.5422674 + ], + [ + 52.4730032, + 13.5440623 + ], + [ + 52.4724136, + 13.5454064 + ] + ] + }, + { + "osmId": "29028654", + "name": null, + "lengthMeters": 251.98591305851474, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603153, + 13.5729975 + ], + [ + 52.4600184, + 13.5738751 + ], + [ + 52.4597326, + 13.5747834 + ], + [ + 52.4595188, + 13.5755307 + ], + [ + 52.4593145, + 13.5762867 + ], + [ + 52.4593047, + 13.5763239 + ] + ] + }, + { + "osmId": "29028657", + "name": null, + "lengthMeters": 247.4784051492803, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4586895, + 13.5796197 + ], + [ + 52.4586674, + 13.5798105 + ], + [ + 52.4586205, + 13.5802714 + ], + [ + 52.4586111, + 13.580377 + ], + [ + 52.4585697, + 13.5808012 + ], + [ + 52.4585376, + 13.5812006 + ], + [ + 52.4585199, + 13.5814202 + ], + [ + 52.4585002, + 13.5816638 + ], + [ + 52.4584786, + 13.5819926 + ], + [ + 52.4584773, + 13.5820245 + ], + [ + 52.4584666, + 13.5822781 + ], + [ + 52.4584561, + 13.5825944 + ], + [ + 52.4584552, + 13.5826284 + ], + [ + 52.4584533, + 13.5826801 + ], + [ + 52.4584346, + 13.5832444 + ] + ] + }, + { + "osmId": "29029127", + "name": null, + "lengthMeters": 1224.4063489151645, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4331233, + 13.7389095 + ], + [ + 52.4331795, + 13.7384204 + ], + [ + 52.4333224, + 13.7370918 + ], + [ + 52.4333585, + 13.7367477 + ], + [ + 52.4334175, + 13.736185 + ], + [ + 52.4334725, + 13.7356599 + ], + [ + 52.4335626, + 13.7348548 + ], + [ + 52.4336573, + 13.7340727 + ], + [ + 52.4337645, + 13.7333152 + ], + [ + 52.433883, + 13.7326215 + ], + [ + 52.4340312, + 13.7318451 + ], + [ + 52.4341557, + 13.731286 + ], + [ + 52.434354, + 13.7304747 + ], + [ + 52.4345693, + 13.7297078 + ], + [ + 52.4347984, + 13.7289804 + ], + [ + 52.4348291, + 13.7288828 + ], + [ + 52.4351027, + 13.7280941 + ], + [ + 52.4353883, + 13.7273687 + ], + [ + 52.4356848, + 13.7266751 + ], + [ + 52.4361842, + 13.7256402 + ], + [ + 52.4364573, + 13.7251423 + ], + [ + 52.4367405, + 13.7246574 + ], + [ + 52.4372014, + 13.7239682 + ], + [ + 52.4375173, + 13.7235425 + ], + [ + 52.4378219, + 13.723177 + ] + ] + }, + { + "osmId": "29029258", + "name": null, + "lengthMeters": 2462.2848576459564, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4511076, + 13.6942879 + ], + [ + 52.4508835, + 13.6964926 + ], + [ + 52.4506123, + 13.6991485 + ], + [ + 52.4504034, + 13.7011943 + ], + [ + 52.4502729, + 13.7024912 + ], + [ + 52.4501985, + 13.7031296 + ], + [ + 52.4501149, + 13.7037646 + ], + [ + 52.4499441, + 13.7048359 + ], + [ + 52.4497512, + 13.7058807 + ], + [ + 52.4495822, + 13.7066272 + ], + [ + 52.4494261, + 13.707279 + ], + [ + 52.4492586, + 13.7079085 + ], + [ + 52.448997, + 13.7088118 + ], + [ + 52.4489194, + 13.7090492 + ], + [ + 52.4487066, + 13.7096998 + ], + [ + 52.4485229, + 13.7102106 + ], + [ + 52.4483284, + 13.7107256 + ], + [ + 52.4480498, + 13.7114131 + ], + [ + 52.4477783, + 13.7120278 + ], + [ + 52.4474939, + 13.7126283 + ], + [ + 52.4471963, + 13.7132227 + ], + [ + 52.4468907, + 13.7137882 + ], + [ + 52.4466716, + 13.714183 + ], + [ + 52.4464414, + 13.7145578 + ], + [ + 52.4460945, + 13.7150989 + ], + [ + 52.4457298, + 13.7156276 + ], + [ + 52.4453334, + 13.7161598 + ], + [ + 52.4449258, + 13.7166735 + ], + [ + 52.4446206, + 13.7170328 + ], + [ + 52.4443084, + 13.7173748 + ], + [ + 52.443992, + 13.7177087 + ], + [ + 52.4436644, + 13.7180231 + ], + [ + 52.4432589, + 13.7183927 + ], + [ + 52.4431863, + 13.7184588 + ], + [ + 52.4429334, + 13.718669 + ], + [ + 52.4426792, + 13.7188672 + ], + [ + 52.4421789, + 13.7192355 + ], + [ + 52.4416729, + 13.7195766 + ], + [ + 52.4411309, + 13.7199202 + ], + [ + 52.4406082, + 13.7202738 + ], + [ + 52.4400421, + 13.7207148 + ], + [ + 52.4394913, + 13.7211849 + ], + [ + 52.4390713, + 13.7215932 + ], + [ + 52.4390186, + 13.7216445 + ] + ] + }, + { + "osmId": "29029262", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 4685.30168718591, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4510209, + 13.6942633 + ], + [ + 52.4509835, + 13.6946341 + ], + [ + 52.4504325, + 13.7000472 + ], + [ + 52.45032, + 13.7011524 + ], + [ + 52.4502125, + 13.7021797 + ], + [ + 52.450183, + 13.702451 + ], + [ + 52.4500286, + 13.7037222 + ], + [ + 52.4498612, + 13.7047922 + ], + [ + 52.4496669, + 13.7058234 + ], + [ + 52.4495005, + 13.706586 + ], + [ + 52.4493452, + 13.7072213 + ], + [ + 52.4491856, + 13.7078309 + ], + [ + 52.4489324, + 13.708716 + ], + [ + 52.4486265, + 13.7096224 + ], + [ + 52.4484645, + 13.7100819 + ], + [ + 52.4482171, + 13.7107445 + ], + [ + 52.4479804, + 13.7113187 + ], + [ + 52.4477146, + 13.7119168 + ], + [ + 52.447432, + 13.7125251 + ], + [ + 52.4471436, + 13.7131014 + ], + [ + 52.4468291, + 13.7136766 + ], + [ + 52.4466013, + 13.7140797 + ], + [ + 52.4463689, + 13.7144633 + ], + [ + 52.44615, + 13.7148106 + ], + [ + 52.4458595, + 13.7152585 + ], + [ + 52.4456623, + 13.7155268 + ], + [ + 52.445277, + 13.7160511 + ], + [ + 52.4448727, + 13.7165538 + ], + [ + 52.4445732, + 13.7169094 + ], + [ + 52.4444377, + 13.7170588 + ], + [ + 52.4442667, + 13.7172474 + ], + [ + 52.4439454, + 13.7175773 + ], + [ + 52.44362, + 13.7178955 + ], + [ + 52.4431347, + 13.7183224 + ], + [ + 52.4428885, + 13.7185241 + ], + [ + 52.4426381, + 13.7187155 + ], + [ + 52.4414399, + 13.7195452 + ], + [ + 52.4405692, + 13.7201423 + ], + [ + 52.4404735, + 13.7202163 + ], + [ + 52.4400034, + 13.7205799 + ], + [ + 52.4394553, + 13.7210553 + ], + [ + 52.4389102, + 13.7215757 + ], + [ + 52.4383675, + 13.7221573 + ], + [ + 52.4382085, + 13.722342 + ], + [ + 52.437963, + 13.7226272 + ], + [ + 52.4375668, + 13.7231276 + ], + [ + 52.4370894, + 13.7237993 + ], + [ + 52.4367977, + 13.7242558 + ], + [ + 52.4366533, + 13.7244817 + ], + [ + 52.4363568, + 13.7249967 + ], + [ + 52.4360795, + 13.7255168 + ], + [ + 52.4355957, + 13.7265285 + ], + [ + 52.4352788, + 13.7272614 + ], + [ + 52.4350308, + 13.7279 + ], + [ + 52.434702, + 13.7288419 + ], + [ + 52.4344543, + 13.7296228 + ], + [ + 52.4342379, + 13.7303916 + ], + [ + 52.4340479, + 13.7311764 + ], + [ + 52.4340243, + 13.731274 + ], + [ + 52.4339096, + 13.731771 + ], + [ + 52.4337631, + 13.7325226 + ], + [ + 52.4336411, + 13.7332481 + ], + [ + 52.4335327, + 13.7340198 + ], + [ + 52.4334699, + 13.7345299 + ], + [ + 52.433466, + 13.7345616 + ], + [ + 52.4334329, + 13.7348305 + ], + [ + 52.4333488, + 13.7356071 + ], + [ + 52.433156, + 13.737375 + ], + [ + 52.4331484, + 13.737443 + ], + [ + 52.4331417, + 13.7375035 + ], + [ + 52.4330556, + 13.7382865 + ], + [ + 52.4329253, + 13.739516 + ], + [ + 52.4328496, + 13.7401736 + ], + [ + 52.4328265, + 13.740376 + ], + [ + 52.432758, + 13.7409756 + ], + [ + 52.4326711, + 13.7416472 + ], + [ + 52.4325638, + 13.7423211 + ], + [ + 52.4325482, + 13.7424209 + ], + [ + 52.4324792, + 13.742778 + ], + [ + 52.4323959, + 13.7432023 + ], + [ + 52.4323923, + 13.7432206 + ], + [ + 52.4322862, + 13.7437034 + ], + [ + 52.4321821, + 13.7441171 + ], + [ + 52.4320458, + 13.7446284 + ], + [ + 52.4319415, + 13.7449797 + ], + [ + 52.4318059, + 13.74542 + ], + [ + 52.4316137, + 13.7459787 + ], + [ + 52.4314724, + 13.7463651 + ], + [ + 52.4312796, + 13.7468382 + ], + [ + 52.4312218, + 13.7469695 + ], + [ + 52.431018, + 13.7474324 + ], + [ + 52.4308201, + 13.7478518 + ], + [ + 52.4305979, + 13.7482837 + ], + [ + 52.4304628, + 13.7485323 + ], + [ + 52.4301514, + 13.7490673 + ], + [ + 52.4298144, + 13.7495828 + ] + ] + }, + { + "osmId": "29050929", + "name": null, + "lengthMeters": 776.5125155993109, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6316833, + 13.4656436 + ], + [ + 52.6315175, + 13.4660765 + ], + [ + 52.6313665, + 13.4664707 + ], + [ + 52.631286, + 13.4666958 + ], + [ + 52.6312105, + 13.4669162 + ], + [ + 52.6311315, + 13.4671568 + ], + [ + 52.6310489, + 13.4674203 + ], + [ + 52.6309838, + 13.467641 + ], + [ + 52.6309194, + 13.4678768 + ], + [ + 52.6308458, + 13.4681604 + ], + [ + 52.6307717, + 13.4684787 + ], + [ + 52.6307026, + 13.468795 + ], + [ + 52.6306435, + 13.4690847 + ], + [ + 52.6305657, + 13.469481 + ], + [ + 52.6304721, + 13.4699812 + ], + [ + 52.6304041, + 13.470334 + ], + [ + 52.6303261, + 13.4707289 + ], + [ + 52.6302296, + 13.4711747 + ], + [ + 52.6301678, + 13.4714397 + ], + [ + 52.630094, + 13.4717315 + ], + [ + 52.6300217, + 13.471993 + ], + [ + 52.6299401, + 13.4722638 + ], + [ + 52.6298603, + 13.4725206 + ], + [ + 52.6298283, + 13.4726182 + ], + [ + 52.6297367, + 13.4728865 + ], + [ + 52.6296222, + 13.4731927 + ], + [ + 52.6295027, + 13.4734927 + ], + [ + 52.6293918, + 13.473753 + ], + [ + 52.6292456, + 13.4740776 + ], + [ + 52.6291298, + 13.4743162 + ], + [ + 52.6290141, + 13.4745431 + ], + [ + 52.6288837, + 13.4747848 + ], + [ + 52.6287513, + 13.4750149 + ], + [ + 52.6286156, + 13.4752377 + ], + [ + 52.6284818, + 13.4754436 + ], + [ + 52.6283707, + 13.4756168 + ] + ] + }, + { + "osmId": "29113622", + "name": null, + "lengthMeters": 91.11255425141812, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5908086, + 13.4428829 + ], + [ + 52.5910115, + 13.4431085 + ], + [ + 52.5912518, + 13.4433623 + ], + [ + 52.5914927, + 13.4436252 + ] + ] + }, + { + "osmId": "29113625", + "name": null, + "lengthMeters": 528.3938592172933, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5982242, + 13.4509204 + ], + [ + 52.599475, + 13.4522739 + ], + [ + 52.5998486, + 13.4526781 + ], + [ + 52.6012156, + 13.4541599 + ], + [ + 52.6014299, + 13.4543907 + ], + [ + 52.6021951, + 13.4552179 + ] + ] + }, + { + "osmId": "29113627", + "name": null, + "lengthMeters": 787.4181105077452, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5981581, + 13.4507726 + ], + [ + 52.5969726, + 13.4494892 + ], + [ + 52.5963877, + 13.4488548 + ], + [ + 52.5959592, + 13.4483868 + ], + [ + 52.595813, + 13.448222 + ], + [ + 52.595626, + 13.4480012 + ], + [ + 52.5955697, + 13.4479312 + ], + [ + 52.5953417, + 13.4476479 + ], + [ + 52.5951141, + 13.447347 + ], + [ + 52.594885, + 13.4470697 + ], + [ + 52.5946031, + 13.4467528 + ], + [ + 52.5943087, + 13.4464328 + ], + [ + 52.593754, + 13.4458416 + ], + [ + 52.5925666, + 13.4445424 + ], + [ + 52.5922932, + 13.4442458 + ] + ] + }, + { + "osmId": "29113629", + "name": "Stettiner Bahn", + "lengthMeters": 979.2777624484951, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6055597, + 13.4589588 + ], + [ + 52.6041651, + 13.4574615 + ], + [ + 52.6040986, + 13.4573945 + ], + [ + 52.6033844, + 13.4566204 + ], + [ + 52.6026384, + 13.455812 + ], + [ + 52.6018471, + 13.4549553 + ], + [ + 52.6010501, + 13.4540913 + ], + [ + 52.6010399, + 13.4540801 + ], + [ + 52.6002913, + 13.4532691 + ], + [ + 52.5998132, + 13.4527512 + ], + [ + 52.5997353, + 13.4526667 + ], + [ + 52.5991695, + 13.4520532 + ], + [ + 52.5989161, + 13.4517784 + ], + [ + 52.5985752, + 13.4514087 + ], + [ + 52.5981971, + 13.4510023 + ] + ] + }, + { + "osmId": "29113856", + "name": null, + "lengthMeters": 483.2129168258505, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6399309, + 13.4976465 + ], + [ + 52.6393605, + 13.4965885 + ], + [ + 52.6391216, + 13.4961647 + ], + [ + 52.6389695, + 13.495895 + ], + [ + 52.6388043, + 13.4956202 + ], + [ + 52.6384943, + 13.4951427 + ], + [ + 52.6380081, + 13.4944178 + ], + [ + 52.6377206, + 13.4939984 + ], + [ + 52.6374118, + 13.4935829 + ], + [ + 52.6369603, + 13.4929922 + ], + [ + 52.6368595, + 13.4928603 + ], + [ + 52.6368449, + 13.4928404 + ], + [ + 52.636775, + 13.4927448 + ] + ] + }, + { + "osmId": "29113859", + "name": null, + "lengthMeters": 239.60476421938503, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.605745, + 13.4589282 + ], + [ + 52.6039295, + 13.457017 + ] + ] + }, + { + "osmId": "29114273", + "name": null, + "lengthMeters": 1004.8161431202217, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6012738, + 13.4673209 + ], + [ + 52.60162, + 13.4668931 + ], + [ + 52.6019396, + 13.4665255 + ], + [ + 52.6021166, + 13.466322 + ], + [ + 52.6025874, + 13.4657805 + ], + [ + 52.6039088, + 13.4641321 + ], + [ + 52.6041983, + 13.4637709 + ], + [ + 52.6045063, + 13.4634112 + ], + [ + 52.6048117, + 13.4630899 + ], + [ + 52.6050964, + 13.4628417 + ], + [ + 52.605379, + 13.4626336 + ], + [ + 52.605521, + 13.4625438 + ], + [ + 52.6055406, + 13.4625314 + ], + [ + 52.6056981, + 13.4624454 + ], + [ + 52.6058542, + 13.4623691 + ], + [ + 52.6060105, + 13.4623003 + ], + [ + 52.6063877, + 13.46218 + ], + [ + 52.6066076, + 13.462133 + ], + [ + 52.606626, + 13.4621291 + ], + [ + 52.6069016, + 13.4620996 + ], + [ + 52.6071793, + 13.462096 + ], + [ + 52.607343, + 13.462109 + ], + [ + 52.6075074, + 13.4621293 + ], + [ + 52.6075833, + 13.462146 + ], + [ + 52.6075925, + 13.462148 + ], + [ + 52.6078181, + 13.4621975 + ], + [ + 52.608122, + 13.462303 + ], + [ + 52.6084059, + 13.4624338 + ], + [ + 52.6086657, + 13.4625838 + ], + [ + 52.608925, + 13.4627633 + ], + [ + 52.6090899, + 13.4628908 + ], + [ + 52.6091631, + 13.462951 + ], + [ + 52.6092691, + 13.4630459 + ] + ] + }, + { + "osmId": "29118206", + "name": null, + "lengthMeters": 461.4595443909915, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6021951, + 13.4552179 + ], + [ + 52.6028525, + 13.4559293 + ], + [ + 52.6041883, + 13.4573712 + ], + [ + 52.6056793, + 13.4589298 + ] + ] + }, + { + "osmId": "29118208", + "name": null, + "lengthMeters": 102.94773164124703, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.617446, + 13.4719501 + ], + [ + 52.6180697, + 13.4726322 + ], + [ + 52.6180737, + 13.4726366 + ], + [ + 52.6182173, + 13.4727936 + ] + ] + }, + { + "osmId": "29118210", + "name": null, + "lengthMeters": 524.5685522829824, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6215552, + 13.4763877 + ], + [ + 52.6218859, + 13.4767087 + ], + [ + 52.6224574, + 13.4771915 + ], + [ + 52.622866, + 13.4775191 + ], + [ + 52.6232675, + 13.4778683 + ], + [ + 52.6235123, + 13.4781173 + ], + [ + 52.6237962, + 13.4784662 + ], + [ + 52.6241683, + 13.4789246 + ], + [ + 52.624533, + 13.4794444 + ], + [ + 52.6250886, + 13.4801719 + ], + [ + 52.6252641, + 13.4803734 + ], + [ + 52.6254861, + 13.4806281 + ] + ] + }, + { + "osmId": "29118267", + "name": null, + "lengthMeters": 536.2362558078979, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6214953, + 13.4762542 + ], + [ + 52.6205367, + 13.4752226 + ], + [ + 52.6202288, + 13.4748861 + ], + [ + 52.6192731, + 13.4738538 + ], + [ + 52.6186855, + 13.4732191 + ], + [ + 52.6174626, + 13.4718982 + ] + ] + }, + { + "osmId": "29118269", + "name": null, + "lengthMeters": 183.58239980062768, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6160143, + 13.470246 + ], + [ + 52.6159901, + 13.4702168 + ], + [ + 52.615819, + 13.4700104 + ], + [ + 52.6157483, + 13.4699298 + ], + [ + 52.6156343, + 13.4697999 + ], + [ + 52.6154465, + 13.469597 + ], + [ + 52.6150694, + 13.4691881 + ], + [ + 52.6148306, + 13.4689315 + ], + [ + 52.6146426, + 13.4687337 + ] + ] + }, + { + "osmId": "29118271", + "name": null, + "lengthMeters": 443.10800679331425, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6144067, + 13.4684883 + ], + [ + 52.6142479, + 13.4683236 + ], + [ + 52.6140117, + 13.4680761 + ], + [ + 52.6133957, + 13.4674156 + ], + [ + 52.6129834, + 13.4669743 + ], + [ + 52.612706, + 13.4666771 + ], + [ + 52.6124611, + 13.4664099 + ], + [ + 52.612002, + 13.4658909 + ], + [ + 52.6115509, + 13.4653571 + ], + [ + 52.6111059, + 13.4648149 + ] + ] + }, + { + "osmId": "29118273", + "name": null, + "lengthMeters": 547.2996900722679, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6109665, + 13.4646461 + ], + [ + 52.6107778, + 13.4644089 + ], + [ + 52.6105823, + 13.4641365 + ], + [ + 52.6104417, + 13.4639168 + ], + [ + 52.6103138, + 13.4636961 + ], + [ + 52.6099842, + 13.4631024 + ], + [ + 52.6097682, + 13.4627252 + ], + [ + 52.6096404, + 13.4625193 + ], + [ + 52.6095078, + 13.4623334 + ], + [ + 52.6091857, + 13.4619407 + ], + [ + 52.6090329, + 13.4617864 + ], + [ + 52.6088763, + 13.4616475 + ], + [ + 52.6086167, + 13.4614465 + ], + [ + 52.6083547, + 13.461277 + ], + [ + 52.6080243, + 13.4610734 + ], + [ + 52.607876, + 13.4609818 + ], + [ + 52.6077267, + 13.4608772 + ], + [ + 52.6075083, + 13.4607055 + ], + [ + 52.6072953, + 13.4605133 + ], + [ + 52.6071133, + 13.4603333 + ], + [ + 52.6069464, + 13.460163 + ] + ] + }, + { + "osmId": "29118618", + "name": null, + "lengthMeters": 97.19673015422461, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6264153, + 13.4815472 + ], + [ + 52.6256785, + 13.4807724 + ] + ] + }, + { + "osmId": "29118621", + "name": null, + "lengthMeters": 95.43223577155365, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6256743, + 13.4808313 + ], + [ + 52.6263926, + 13.4816051 + ] + ] + }, + { + "osmId": "29118623", + "name": null, + "lengthMeters": 521.9029302044225, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.625492, + 13.4805643 + ], + [ + 52.6252875, + 13.4803278 + ], + [ + 52.6251077, + 13.4801199 + ], + [ + 52.6245602, + 13.4793926 + ], + [ + 52.6241945, + 13.4788823 + ], + [ + 52.6238279, + 13.4783976 + ], + [ + 52.6235367, + 13.4780574 + ], + [ + 52.6232047, + 13.4777201 + ], + [ + 52.622882, + 13.4774408 + ], + [ + 52.6221118, + 13.476844 + ], + [ + 52.6217714, + 13.4765339 + ], + [ + 52.6215838, + 13.4763457 + ] + ] + }, + { + "osmId": "29118624", + "name": "Stettiner Bahn", + "lengthMeters": 92.72235279351712, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6263643, + 13.4816773 + ], + [ + 52.6256677, + 13.4809222 + ] + ] + }, + { + "osmId": "29119121", + "name": null, + "lengthMeters": 877.5871640937023, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6403081, + 13.498334 + ], + [ + 52.640853, + 13.4993446 + ], + [ + 52.6409313, + 13.4994884 + ], + [ + 52.6415096, + 13.5005852 + ], + [ + 52.6428094, + 13.5029937 + ], + [ + 52.6441462, + 13.5053928 + ], + [ + 52.6448503, + 13.5066647 + ], + [ + 52.6450522, + 13.5070294 + ], + [ + 52.6450609, + 13.5070448 + ], + [ + 52.6455952, + 13.50799 + ] + ] + }, + { + "osmId": "29119295", + "name": "Stettiner Bahn", + "lengthMeters": 877.4032168256858, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6455533, + 13.5080523 + ], + [ + 52.6455179, + 13.5079885 + ], + [ + 52.6443295, + 13.5058483 + ], + [ + 52.6441089, + 13.505451 + ], + [ + 52.6427715, + 13.5030457 + ], + [ + 52.6414617, + 13.5006444 + ], + [ + 52.6408747, + 13.4995658 + ], + [ + 52.6402559, + 13.4984147 + ] + ] + }, + { + "osmId": "29119315", + "name": null, + "lengthMeters": 162.19544389648124, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6366472, + 13.4925781 + ], + [ + 52.6364535, + 13.4923183 + ], + [ + 52.6363943, + 13.4922366 + ], + [ + 52.6363505, + 13.492179 + ], + [ + 52.6361727, + 13.4919425 + ], + [ + 52.6360961, + 13.4918405 + ], + [ + 52.6357836, + 13.4914381 + ], + [ + 52.6355911, + 13.491202 + ], + [ + 52.6355179, + 13.4911172 + ], + [ + 52.6354994, + 13.4910958 + ] + ] + }, + { + "osmId": "29119827", + "name": null, + "lengthMeters": 1031.9478773072287, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5865205, + 13.4381848 + ], + [ + 52.5854344, + 13.4370069 + ], + [ + 52.5848522, + 13.436392 + ], + [ + 52.583558, + 13.4351152 + ], + [ + 52.5829126, + 13.4344634 + ], + [ + 52.5825915, + 13.4341255 + ], + [ + 52.5822756, + 13.4337886 + ], + [ + 52.5820673, + 13.4335622 + ], + [ + 52.5808932, + 13.4322705 + ], + [ + 52.5800357, + 13.4313556 + ], + [ + 52.5794358, + 13.4307596 + ], + [ + 52.5786817, + 13.4300138 + ] + ] + }, + { + "osmId": "29119829", + "name": "Stettiner Bahn", + "lengthMeters": 336.30619061531587, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.586595, + 13.4385099 + ], + [ + 52.5867731, + 13.4387045 + ], + [ + 52.5872764, + 13.4392545 + ], + [ + 52.5882777, + 13.4403244 + ], + [ + 52.5891239, + 13.4412404 + ] + ] + }, + { + "osmId": "29120369", + "name": null, + "lengthMeters": 500.1551815614915, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5620223, + 13.4030726 + ], + [ + 52.5618982, + 13.4028572 + ], + [ + 52.5614757, + 13.4021199 + ], + [ + 52.5611743, + 13.4015952 + ], + [ + 52.5611293, + 13.401517 + ], + [ + 52.5609888, + 13.4012724 + ], + [ + 52.5603677, + 13.4001936 + ], + [ + 52.5601426, + 13.3998263 + ], + [ + 52.5600154, + 13.3996293 + ], + [ + 52.5598783, + 13.39943 + ], + [ + 52.5598607, + 13.3994045 + ], + [ + 52.5597214, + 13.3992141 + ], + [ + 52.559531, + 13.3989872 + ], + [ + 52.5593682, + 13.3987995 + ], + [ + 52.559163, + 13.3985937 + ], + [ + 52.5589446, + 13.3983993 + ], + [ + 52.5586833, + 13.3982016 + ] + ] + }, + { + "osmId": "29120371", + "name": null, + "lengthMeters": 369.99057032764273, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5644083, + 13.4071561 + ], + [ + 52.5642706, + 13.4069217 + ], + [ + 52.5641231, + 13.4066709 + ], + [ + 52.5632678, + 13.4052079 + ], + [ + 52.5627231, + 13.4042751 + ], + [ + 52.5621017, + 13.403211 + ] + ] + }, + { + "osmId": "29120373", + "name": null, + "lengthMeters": 145.24054157329257, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5667126, + 13.4109798 + ], + [ + 52.5667083, + 13.410971 + ], + [ + 52.5666892, + 13.4109308 + ], + [ + 52.5666673, + 13.4108848 + ], + [ + 52.5666009, + 13.4107452 + ], + [ + 52.5664415, + 13.4104436 + ], + [ + 52.5663828, + 13.4103419 + ], + [ + 52.5661729, + 13.4099784 + ], + [ + 52.5659745, + 13.4096421 + ], + [ + 52.5658314, + 13.4093955 + ] + ] + }, + { + "osmId": "29120494", + "name": null, + "lengthMeters": 179.53435739487847, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538643, + 13.398114 + ], + [ + 52.5539447, + 13.3980891 + ], + [ + 52.5539814, + 13.3980785 + ], + [ + 52.5540502, + 13.3980561 + ], + [ + 52.5541011, + 13.3980441 + ], + [ + 52.5541735, + 13.3980229 + ], + [ + 52.5542003, + 13.3980159 + ], + [ + 52.5542385, + 13.3980058 + ], + [ + 52.5543599, + 13.3979746 + ], + [ + 52.554365, + 13.3979733 + ], + [ + 52.5548515, + 13.3978545 + ], + [ + 52.5549703, + 13.3978294 + ], + [ + 52.5550578, + 13.397811 + ], + [ + 52.5551354, + 13.397794 + ], + [ + 52.555169, + 13.3977866 + ], + [ + 52.5552778, + 13.3977599 + ], + [ + 52.5552878, + 13.3977576 + ], + [ + 52.555398, + 13.3977326 + ], + [ + 52.5554604, + 13.397716 + ] + ] + }, + { + "osmId": "29131338", + "name": null, + "lengthMeters": 95.09139954182442, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4915206, + 13.4600637 + ], + [ + 52.4916997, + 13.4601905 + ], + [ + 52.4919744, + 13.4603763 + ], + [ + 52.4923118, + 13.4605965 + ] + ] + }, + { + "osmId": "29131427", + "name": null, + "lengthMeters": 98.35651665776847, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4917654, + 13.4600859 + ], + [ + 52.4909546, + 13.4595052 + ] + ] + }, + { + "osmId": "29134633", + "name": null, + "lengthMeters": 583.8660123044481, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724272, + 13.5451472 + ], + [ + 52.4721263, + 13.5458026 + ], + [ + 52.4719619, + 13.5461257 + ], + [ + 52.4718116, + 13.546421 + ], + [ + 52.4714718, + 13.5470546 + ], + [ + 52.4712379, + 13.5474389 + ], + [ + 52.4710498, + 13.5477269 + ], + [ + 52.4708606, + 13.5479941 + ], + [ + 52.4705034, + 13.5484416 + ], + [ + 52.4701702, + 13.5488527 + ], + [ + 52.4699968, + 13.5490351 + ], + [ + 52.4697832, + 13.5492436 + ], + [ + 52.4696865, + 13.5493346 + ], + [ + 52.4695134, + 13.5494975 + ], + [ + 52.4692567, + 13.5496888 + ], + [ + 52.4692203, + 13.5497115 + ], + [ + 52.4689422, + 13.5498853 + ], + [ + 52.4686405, + 13.5500209 + ], + [ + 52.4684023, + 13.5501252 + ], + [ + 52.4683069, + 13.550167 + ] + ] + }, + { + "osmId": "29180363", + "name": "Verbindungsbahn", + "lengthMeters": 124.4712068533907, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5505844, + 10.0094558 + ], + [ + 53.550771, + 10.0091811 + ], + [ + 53.5508979, + 10.0089925 + ], + [ + 53.551031, + 10.0088537 + ], + [ + 53.5511093, + 10.0087815 + ], + [ + 53.5511979, + 10.00869 + ], + [ + 53.5512154, + 10.0086726 + ], + [ + 53.5515172, + 10.0084394 + ] + ] + }, + { + "osmId": "29180478", + "name": null, + "lengthMeters": 4511.683087220199, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4513445, + 13.69144 + ], + [ + 52.4514006, + 13.690885 + ], + [ + 52.4514613, + 13.6902784 + ], + [ + 52.4514942, + 13.689975 + ], + [ + 52.4515859, + 13.6891362 + ], + [ + 52.4517725, + 13.6873948 + ], + [ + 52.4518122, + 13.6870212 + ], + [ + 52.4520247, + 13.6849457 + ], + [ + 52.4520729, + 13.684468 + ], + [ + 52.4521312, + 13.6838909 + ], + [ + 52.4525538, + 13.6796923 + ], + [ + 52.4526557, + 13.6787036 + ], + [ + 52.4526578, + 13.6786837 + ], + [ + 52.4527453, + 13.6778337 + ], + [ + 52.4529276, + 13.6759629 + ], + [ + 52.4531991, + 13.6732673 + ], + [ + 52.4532185, + 13.6730751 + ], + [ + 52.4536044, + 13.6692435 + ], + [ + 52.4536238, + 13.6690508 + ], + [ + 52.4543268, + 13.6621588 + ], + [ + 52.4544679, + 13.6607442 + ], + [ + 52.4546742, + 13.658744 + ], + [ + 52.4547299, + 13.658204 + ], + [ + 52.4548043, + 13.6574657 + ], + [ + 52.4549316, + 13.6562026 + ], + [ + 52.4553924, + 13.651695 + ], + [ + 52.455775, + 13.6479132 + ], + [ + 52.4559452, + 13.6462311 + ], + [ + 52.456122, + 13.6444676 + ], + [ + 52.4562176, + 13.6435135 + ], + [ + 52.4563467, + 13.6421478 + ], + [ + 52.4564663, + 13.6407746 + ], + [ + 52.4565838, + 13.6392579 + ], + [ + 52.4566849, + 13.6377539 + ], + [ + 52.4567883, + 13.6358836 + ], + [ + 52.4568265, + 13.6351269 + ], + [ + 52.45688, + 13.6339084 + ], + [ + 52.4570369, + 13.6299212 + ], + [ + 52.4571027, + 13.6279729 + ], + [ + 52.4571471, + 13.6266571 + ], + [ + 52.4571813, + 13.6256004 + ] + ] + }, + { + "osmId": "29180529", + "name": null, + "lengthMeters": 919.388744224601, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.457188, + 13.6253731 + ], + [ + 52.4572425, + 13.6235581 + ], + [ + 52.4572533, + 13.6231537 + ], + [ + 52.4573283, + 13.6206315 + ], + [ + 52.4574158, + 13.6173695 + ], + [ + 52.4574702, + 13.6152553 + ], + [ + 52.4574945, + 13.6143799 + ], + [ + 52.4575036, + 13.6140132 + ], + [ + 52.4575579, + 13.6118178 + ] + ] + }, + { + "osmId": "29180565", + "name": null, + "lengthMeters": 680.9755239243898, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4575619, + 13.611618 + ], + [ + 52.4575927, + 13.6103171 + ], + [ + 52.4576167, + 13.6092992 + ], + [ + 52.4576235, + 13.6090002 + ], + [ + 52.4576252, + 13.6089236 + ], + [ + 52.4576354, + 13.6084723 + ], + [ + 52.4576763, + 13.6071093 + ], + [ + 52.4577663, + 13.604301 + ], + [ + 52.4577956, + 13.6033805 + ], + [ + 52.4578162, + 13.6027836 + ], + [ + 52.4578517, + 13.6015791 + ] + ] + }, + { + "osmId": "29180567", + "name": null, + "lengthMeters": 195.62761721663978, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4573476, + 13.6218126 + ], + [ + 52.4573274, + 13.6224154 + ], + [ + 52.4573241, + 13.6225325 + ], + [ + 52.4573083, + 13.6230853 + ], + [ + 52.457301, + 13.6233453 + ], + [ + 52.4573004, + 13.6233551 + ], + [ + 52.4572923, + 13.6236591 + ], + [ + 52.4572638, + 13.6246138 + ], + [ + 52.4572614, + 13.6246963 + ] + ] + }, + { + "osmId": "29180667", + "name": null, + "lengthMeters": 87.70257469526416, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4999902, + 13.4820449 + ], + [ + 52.5002985, + 13.4811852 + ], + [ + 52.500389, + 13.4809271 + ] + ] + }, + { + "osmId": "29182927", + "name": null, + "lengthMeters": 88.24674176954521, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5143138, + 13.5318756 + ], + [ + 52.5142463, + 13.5315391 + ], + [ + 52.5140677, + 13.5306358 + ] + ] + }, + { + "osmId": "29183195", + "name": null, + "lengthMeters": 1196.5817321338488, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142089, + 13.5184914 + ], + [ + 52.5142358, + 13.5172636 + ], + [ + 52.5142666, + 13.5158568 + ], + [ + 52.5143001, + 13.5143249 + ], + [ + 52.5143099, + 13.5137755 + ], + [ + 52.5143131, + 13.5135666 + ], + [ + 52.5143155, + 13.5132052 + ], + [ + 52.5143154, + 13.5129778 + ], + [ + 52.5143074, + 13.5123833 + ], + [ + 52.5142942, + 13.5118995 + ], + [ + 52.5142758, + 13.5114257 + ], + [ + 52.5142507, + 13.5109498 + ], + [ + 52.5142273, + 13.5105978 + ], + [ + 52.5142267, + 13.5105882 + ], + [ + 52.5141985, + 13.5102107 + ], + [ + 52.514167, + 13.5098294 + ], + [ + 52.5141216, + 13.5093648 + ], + [ + 52.5140735, + 13.5089166 + ], + [ + 52.5139855, + 13.5081915 + ], + [ + 52.5138786, + 13.5073682 + ], + [ + 52.5137956, + 13.5067639 + ], + [ + 52.5137486, + 13.5064596 + ], + [ + 52.5136973, + 13.5061539 + ], + [ + 52.5135878, + 13.5056165 + ], + [ + 52.5135311, + 13.5053733 + ], + [ + 52.5134206, + 13.5049264 + ], + [ + 52.5133108, + 13.5045157 + ], + [ + 52.5131938, + 13.5041047 + ], + [ + 52.5130695, + 13.5036965 + ], + [ + 52.5129603, + 13.503359 + ], + [ + 52.5128333, + 13.5029875 + ], + [ + 52.5127322, + 13.5027074 + ], + [ + 52.5126013, + 13.5023604 + ], + [ + 52.5124522, + 13.5019826 + ], + [ + 52.5123445, + 13.5017254 + ], + [ + 52.5122477, + 13.5015007 + ] + ] + }, + { + "osmId": "29183304", + "name": null, + "lengthMeters": 337.58010426686906, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5139426, + 13.524922 + ], + [ + 52.5139326, + 13.5251556 + ], + [ + 52.51392, + 13.5253987 + ], + [ + 52.5138916, + 13.5258845 + ], + [ + 52.513838, + 13.5268404 + ], + [ + 52.5138162, + 13.5272843 + ], + [ + 52.5138085, + 13.5277378 + ], + [ + 52.5138085, + 13.5281937 + ], + [ + 52.5138262, + 13.5288093 + ], + [ + 52.5138561, + 13.5292747 + ], + [ + 52.5138801, + 13.529597 + ], + [ + 52.5139086, + 13.5298919 + ] + ] + }, + { + "osmId": "29183896", + "name": null, + "lengthMeters": 145.04976235109552, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5719377, + 13.5661274 + ], + [ + 52.571809, + 13.5660154 + ], + [ + 52.5707845, + 13.5651242 + ] + ] + }, + { + "osmId": "29235359", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 651.4006688765849, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3399079, + 13.3205633 + ], + [ + 52.3400787, + 13.3224815 + ], + [ + 52.340323, + 13.3252121 + ], + [ + 52.3405433, + 13.3276816 + ], + [ + 52.3406087, + 13.328443 + ], + [ + 52.3407523, + 13.3300515 + ] + ] + }, + { + "osmId": "29262022", + "name": "Lehrter Bahn", + "lengthMeters": 455.54750559294627, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371467, + 13.1498173 + ], + [ + 52.5371391, + 13.1499385 + ], + [ + 52.5371088, + 13.1504503 + ], + [ + 52.5369781, + 13.1525463 + ], + [ + 52.5368321, + 13.1549119 + ], + [ + 52.5368073, + 13.1553124 + ], + [ + 52.5367323, + 13.1565182 + ] + ] + }, + { + "osmId": "29277317", + "name": "U1", + "lengthMeters": 1221.0572647928543, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4978246, + 13.3920929 + ], + [ + 52.4977673, + 13.391269 + ], + [ + 52.497765, + 13.3911066 + ], + [ + 52.4977733, + 13.390733 + ], + [ + 52.4977873, + 13.3904216 + ], + [ + 52.4978374, + 13.3899703 + ], + [ + 52.4979028, + 13.3895423 + ], + [ + 52.4979606, + 13.3892016 + ], + [ + 52.4980672, + 13.3886403 + ], + [ + 52.4985438, + 13.3866642 + ], + [ + 52.4988146, + 13.3855799 + ], + [ + 52.4988829, + 13.385289 + ], + [ + 52.4989366, + 13.3850203 + ], + [ + 52.4989842, + 13.3847601 + ], + [ + 52.4990256, + 13.3844959 + ], + [ + 52.4990524, + 13.384283 + ], + [ + 52.4990783, + 13.3840687 + ], + [ + 52.4990998, + 13.3838323 + ], + [ + 52.4991135, + 13.3836437 + ], + [ + 52.4991216, + 13.3835338 + ], + [ + 52.4991332, + 13.3833774 + ], + [ + 52.4991385, + 13.3831281 + ], + [ + 52.4991361, + 13.3828789 + ], + [ + 52.4991271, + 13.3826389 + ], + [ + 52.4991201, + 13.3825494 + ], + [ + 52.4991017, + 13.3823149 + ], + [ + 52.499087, + 13.3821556 + ], + [ + 52.4990643, + 13.3819698 + ], + [ + 52.499053, + 13.3818698 + ], + [ + 52.4990441, + 13.3817552 + ], + [ + 52.4990354, + 13.3816159 + ], + [ + 52.4990304, + 13.3814689 + ], + [ + 52.4990305, + 13.3813642 + ], + [ + 52.4990347, + 13.3812246 + ], + [ + 52.4990388, + 13.381154 + ], + [ + 52.4990444, + 13.381084 + ], + [ + 52.4990507, + 13.3810171 + ], + [ + 52.4990585, + 13.3809513 + ], + [ + 52.4990783, + 13.3808152 + ], + [ + 52.4991162, + 13.3806011 + ], + [ + 52.499207, + 13.3801339 + ], + [ + 52.4992622, + 13.3798422 + ], + [ + 52.499288, + 13.3796985 + ], + [ + 52.4993094, + 13.3795632 + ], + [ + 52.4993342, + 13.3793826 + ], + [ + 52.4994263, + 13.3784603 + ], + [ + 52.4994326, + 13.3783126 + ], + [ + 52.499434, + 13.3782216 + ], + [ + 52.4994321, + 13.3780933 + ], + [ + 52.4994235, + 13.377975 + ], + [ + 52.4994097, + 13.3778221 + ], + [ + 52.4993854, + 13.3776159 + ], + [ + 52.49937, + 13.3774542 + ], + [ + 52.4993627, + 13.3772853 + ], + [ + 52.4993628, + 13.3770971 + ], + [ + 52.4993726, + 13.3769139 + ], + [ + 52.499404, + 13.3765464 + ], + [ + 52.4994291, + 13.3763109 + ], + [ + 52.4994551, + 13.3761105 + ], + [ + 52.4994805, + 13.3759474 + ], + [ + 52.4995172, + 13.3756271 + ], + [ + 52.4995323, + 13.3754338 + ], + [ + 52.499544, + 13.3751781 + ], + [ + 52.4995503, + 13.374942 + ], + [ + 52.499559, + 13.3745564 + ] + ] + }, + { + "osmId": "29326643", + "name": null, + "lengthMeters": 588.8948958404989, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.504838, + 13.3817491 + ], + [ + 52.5049316, + 13.3816967 + ], + [ + 52.5050392, + 13.381635 + ], + [ + 52.5051365, + 13.3815656 + ], + [ + 52.5051907, + 13.3815208 + ], + [ + 52.505246, + 13.3814703 + ], + [ + 52.5054752, + 13.3811993 + ], + [ + 52.5069399, + 13.379148 + ], + [ + 52.5080234, + 13.3778313 + ], + [ + 52.5081449, + 13.377639 + ], + [ + 52.5082987, + 13.3774129 + ], + [ + 52.5084653, + 13.3772206 + ], + [ + 52.5086339, + 13.3770942 + ], + [ + 52.5087467, + 13.3770169 + ], + [ + 52.5088618, + 13.37697 + ], + [ + 52.5089553, + 13.376941 + ], + [ + 52.5090479, + 13.3769294 + ], + [ + 52.5091044, + 13.3769216 + ], + [ + 52.5091533, + 13.3769186 + ] + ] + }, + { + "osmId": "29326644", + "name": null, + "lengthMeters": 100.78882311018356, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.497206, + 13.3738071 + ], + [ + 52.4968656, + 13.3734416 + ], + [ + 52.4964067, + 13.3731166 + ] + ] + }, + { + "osmId": "29326645", + "name": null, + "lengthMeters": 126.37651641227745, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4964067, + 13.3731166 + ], + [ + 52.4960165, + 13.3729058 + ], + [ + 52.4953692, + 13.3725446 + ], + [ + 52.4953286, + 13.3725261 + ] + ] + }, + { + "osmId": "29327005", + "name": null, + "lengthMeters": 250.35228800168775, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627277, + 13.3576097 + ], + [ + 52.4626865, + 13.3575812 + ], + [ + 52.4618967, + 13.3570334 + ], + [ + 52.4614736, + 13.3567331 + ], + [ + 52.461092, + 13.3565043 + ], + [ + 52.4608569, + 13.3563792 + ], + [ + 52.460681, + 13.356297 + ], + [ + 52.4606306, + 13.3562756 + ] + ] + }, + { + "osmId": "29327006", + "name": null, + "lengthMeters": 1229.6999003170667, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4629418, + 13.3578659 + ], + [ + 52.4630688, + 13.3579364 + ], + [ + 52.4630786, + 13.3579418 + ], + [ + 52.4637313, + 13.3583145 + ], + [ + 52.4637667, + 13.3583353 + ], + [ + 52.463878, + 13.358396 + ], + [ + 52.4642412, + 13.3586016 + ], + [ + 52.464339, + 13.358657 + ], + [ + 52.4646034, + 13.3588037 + ], + [ + 52.4654832, + 13.359319 + ], + [ + 52.466014, + 13.3596243 + ], + [ + 52.4674495, + 13.36045 + ], + [ + 52.4676689, + 13.3605793 + ], + [ + 52.4684376, + 13.3610253 + ], + [ + 52.469553, + 13.3616683 + ], + [ + 52.4703573, + 13.3621559 + ], + [ + 52.4706567, + 13.3623374 + ], + [ + 52.4716854, + 13.3629625 + ], + [ + 52.4724509, + 13.3634215 + ], + [ + 52.4727127, + 13.3635697 + ], + [ + 52.4729048, + 13.3636775 + ], + [ + 52.4731396, + 13.3637865 + ], + [ + 52.4733661, + 13.3638856 + ], + [ + 52.4733727, + 13.3638882 + ] + ] + }, + { + "osmId": "29327306", + "name": "Anhalter Bahn", + "lengthMeters": 517.9083814953336, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4395591, + 13.3435351 + ], + [ + 52.4397572, + 13.3438242 + ], + [ + 52.4410448, + 13.3457265 + ], + [ + 52.4415175, + 13.3464147 + ], + [ + 52.4419568, + 13.3470357 + ], + [ + 52.4423693, + 13.3476042 + ], + [ + 52.442822, + 13.3482105 + ], + [ + 52.4430749, + 13.3485445 + ] + ] + }, + { + "osmId": "29327308", + "name": null, + "lengthMeters": 514.0655663621599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4396817, + 13.3434374 + ], + [ + 52.4398469, + 13.3436894 + ], + [ + 52.4409793, + 13.3453513 + ], + [ + 52.4415978, + 13.3462603 + ], + [ + 52.4422271, + 13.3471822 + ], + [ + 52.442502, + 13.3475676 + ], + [ + 52.4425114, + 13.3475805 + ], + [ + 52.4428317, + 13.3480153 + ], + [ + 52.4431549, + 13.3484408 + ] + ] + }, + { + "osmId": "29328196", + "name": "Anhalter Bahn", + "lengthMeters": 447.7721393930651, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4338004, + 13.3350708 + ], + [ + 52.4340245, + 13.3354083 + ], + [ + 52.434517, + 13.336138 + ], + [ + 52.4349542, + 13.336775 + ], + [ + 52.4358672, + 13.3380874 + ], + [ + 52.4363336, + 13.3387765 + ], + [ + 52.4368044, + 13.3394694 + ] + ] + }, + { + "osmId": "29328197", + "name": null, + "lengthMeters": 415.64601030542144, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4366635, + 13.3389593 + ], + [ + 52.4362215, + 13.3382405 + ], + [ + 52.4357633, + 13.3375448 + ], + [ + 52.4349157, + 13.3362748 + ], + [ + 52.434439, + 13.3355505 + ], + [ + 52.4342468, + 13.3352283 + ], + [ + 52.4339587, + 13.3347302 + ] + ] + }, + { + "osmId": "29328200", + "name": null, + "lengthMeters": 259.97588815199987, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4338218, + 13.3344983 + ], + [ + 52.4333661, + 13.3337026 + ], + [ + 52.4322087, + 13.3317225 + ] + ] + }, + { + "osmId": "29328205", + "name": null, + "lengthMeters": 118.42480172956743, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4183716, + 13.3139206 + ], + [ + 52.4186258, + 13.3141301 + ], + [ + 52.4188299, + 13.3143086 + ], + [ + 52.4189534, + 13.3144178 + ], + [ + 52.4191246, + 13.3145714 + ], + [ + 52.4193126, + 13.3147381 + ] + ] + }, + { + "osmId": "29328273", + "name": null, + "lengthMeters": 212.29847894045375, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4280349, + 13.3260298 + ], + [ + 52.4285115, + 13.3265794 + ], + [ + 52.4289073, + 13.3270292 + ], + [ + 52.4291999, + 13.327372 + ], + [ + 52.4293504, + 13.3275564 + ], + [ + 52.4295837, + 13.3278595 + ] + ] + }, + { + "osmId": "29328276", + "name": null, + "lengthMeters": 414.7959782639779, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4339245, + 13.3348064 + ], + [ + 52.4342167, + 13.3352805 + ], + [ + 52.4344146, + 13.3355969 + ], + [ + 52.4348939, + 13.336322 + ], + [ + 52.4357416, + 13.3375877 + ], + [ + 52.4366635, + 13.3389593 + ] + ] + }, + { + "osmId": "29330588", + "name": null, + "lengthMeters": 229.9619339269499, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3638019, + 13.4067789 + ], + [ + 52.3628067, + 13.4070415 + ], + [ + 52.3625323, + 13.4071139 + ], + [ + 52.3622449, + 13.4072038 + ], + [ + 52.3620043, + 13.4072709 + ], + [ + 52.3617637, + 13.4073505 + ] + ] + }, + { + "osmId": "29339504", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1973.2066919120196, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.400587, + 9.9714918 + ], + [ + 53.3992461, + 9.9702939 + ], + [ + 53.3979108, + 9.969039 + ], + [ + 53.3971712, + 9.9683672 + ], + [ + 53.397041, + 9.9682496 + ], + [ + 53.3966866, + 9.9679022 + ], + [ + 53.3961856, + 9.9674196 + ], + [ + 53.3958433, + 9.967088 + ], + [ + 53.3945448, + 9.9657914 + ], + [ + 53.3942402, + 9.96547 + ], + [ + 53.3939242, + 9.9651353 + ], + [ + 53.3935108, + 9.9646626 + ], + [ + 53.3931093, + 9.9641355 + ], + [ + 53.3929039, + 9.963854 + ], + [ + 53.392601, + 9.9634069 + ], + [ + 53.3923344, + 9.9629688 + ], + [ + 53.3920822, + 9.9625318 + ], + [ + 53.3918538, + 9.9620917 + ], + [ + 53.3916849, + 9.961751 + ], + [ + 53.3912494, + 9.9608226 + ], + [ + 53.3910444, + 9.9603443 + ], + [ + 53.3908426, + 9.959844 + ], + [ + 53.3904921, + 9.9588776 + ], + [ + 53.3903526, + 9.9584694 + ], + [ + 53.3902175, + 9.9580537 + ], + [ + 53.3899635, + 9.9572108 + ], + [ + 53.3897494, + 9.9564052 + ], + [ + 53.3891515, + 9.9538427 + ], + [ + 53.3885367, + 9.9512435 + ] + ] + }, + { + "osmId": "29343804", + "name": null, + "lengthMeters": 254.4159047805894, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5302633, + 13.3906294 + ], + [ + 52.5305242, + 13.3903307 + ], + [ + 52.5307838, + 13.3900296 + ], + [ + 52.5310424, + 13.3897292 + ], + [ + 52.5311396, + 13.3896154 + ], + [ + 52.5313824, + 13.3893098 + ], + [ + 52.5315384, + 13.389112 + ], + [ + 52.531697, + 13.3889095 + ], + [ + 52.5318943, + 13.3886416 + ], + [ + 52.5320861, + 13.3883608 + ] + ] + }, + { + "osmId": "29344144", + "name": null, + "lengthMeters": 211.30973488555432, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5734032, + 13.3777807 + ], + [ + 52.5734589, + 13.3776896 + ], + [ + 52.5735376, + 13.3775608 + ], + [ + 52.5739404, + 13.376902 + ], + [ + 52.5740161, + 13.3767783 + ], + [ + 52.5745922, + 13.3758301 + ], + [ + 52.574615, + 13.3757925 + ], + [ + 52.5747487, + 13.3755725 + ] + ] + }, + { + "osmId": "29344312", + "name": null, + "lengthMeters": 113.78392028239783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5740435, + 13.3765945 + ], + [ + 52.5740646, + 13.3765578 + ], + [ + 52.5741926, + 13.3763353 + ], + [ + 52.5746481, + 13.3755433 + ], + [ + 52.5747469, + 13.3753716 + ] + ] + }, + { + "osmId": "29344547", + "name": "Kremmener Bahn", + "lengthMeters": 336.4877221061844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5768063, + 13.3606384 + ], + [ + 52.5773642, + 13.3557441 + ] + ] + }, + { + "osmId": "29344549", + "name": "Kremmener Bahn", + "lengthMeters": 522.4186813317995, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5774097, + 13.3553549 + ], + [ + 52.5777223, + 13.3526439 + ], + [ + 52.5778881, + 13.3511983 + ], + [ + 52.5780438, + 13.349854 + ], + [ + 52.5780683, + 13.3496366 + ], + [ + 52.5780929, + 13.3494206 + ], + [ + 52.5781046, + 13.3493083 + ], + [ + 52.578117, + 13.349185 + ], + [ + 52.5781256, + 13.3490934 + ], + [ + 52.5781503, + 13.3488069 + ], + [ + 52.5781707, + 13.3485291 + ], + [ + 52.578191, + 13.3481818 + ], + [ + 52.5782023, + 13.3479621 + ], + [ + 52.5782116, + 13.3477413 + ] + ] + }, + { + "osmId": "29359224", + "name": null, + "lengthMeters": 541.7520208229961, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5508938, + 13.3998954 + ], + [ + 52.5507388, + 13.400023 + ], + [ + 52.5505507, + 13.4001887 + ], + [ + 52.5503794, + 13.4003727 + ], + [ + 52.5502177, + 13.4005736 + ], + [ + 52.5501218, + 13.4007192 + ], + [ + 52.5500172, + 13.400869 + ], + [ + 52.5498339, + 13.4012107 + ], + [ + 52.5498152, + 13.4012538 + ], + [ + 52.5497745, + 13.4013447 + ], + [ + 52.5497154, + 13.4014843 + ], + [ + 52.5495938, + 13.4017927 + ], + [ + 52.5494752, + 13.4021715 + ], + [ + 52.5493651, + 13.402637 + ], + [ + 52.5493152, + 13.4029183 + ], + [ + 52.5492739, + 13.4032354 + ], + [ + 52.549252, + 13.4034699 + ], + [ + 52.5492402, + 13.4036813 + ], + [ + 52.5492375, + 13.4037357 + ], + [ + 52.5492322, + 13.4038792 + ], + [ + 52.549231, + 13.4040482 + ], + [ + 52.5492369, + 13.4042658 + ], + [ + 52.5492456, + 13.4045853 + ], + [ + 52.5492593, + 13.404916 + ], + [ + 52.549385, + 13.4067804 + ] + ] + }, + { + "osmId": "29359349", + "name": "Berliner Ringbahn", + "lengthMeters": 309.4474100180797, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493178, + 13.402582 + ], + [ + 52.5492899, + 13.4015953 + ], + [ + 52.5492831, + 13.4010225 + ], + [ + 52.5492806, + 13.4008038 + ], + [ + 52.5492772, + 13.4003314 + ], + [ + 52.5492759, + 13.3998996 + ], + [ + 52.5492817, + 13.3995029 + ], + [ + 52.5492913, + 13.3991356 + ], + [ + 52.5492987, + 13.3988625 + ], + [ + 52.5493043, + 13.3985738 + ], + [ + 52.5493033, + 13.3982065 + ], + [ + 52.5492984, + 13.3980077 + ] + ] + }, + { + "osmId": "29384521", + "name": "Berliner Stadtbahn", + "lengthMeters": 99.52595777587929, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5206689, + 13.3862641 + ], + [ + 52.5207072, + 13.3860715 + ], + [ + 52.5208058, + 13.3855576 + ], + [ + 52.5208371, + 13.3853828 + ], + [ + 52.5208871, + 13.3851157 + ], + [ + 52.5209408, + 13.3848628 + ] + ] + }, + { + "osmId": "29384522", + "name": "Berliner Stadtbahn", + "lengthMeters": 512.6661498946805, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209408, + 13.3848628 + ], + [ + 52.5210193, + 13.3845607 + ], + [ + 52.5211966, + 13.3838694 + ], + [ + 52.5212824, + 13.383507 + ], + [ + 52.5213331, + 13.3832766 + ], + [ + 52.5213606, + 13.3831226 + ], + [ + 52.5213915, + 13.382918 + ], + [ + 52.5214142, + 13.3827268 + ], + [ + 52.5214322, + 13.3825133 + ], + [ + 52.5214414, + 13.3822803 + ], + [ + 52.5214453, + 13.3819754 + ], + [ + 52.521424, + 13.3809195 + ], + [ + 52.5214205, + 13.3807652 + ], + [ + 52.5214278, + 13.3804104 + ], + [ + 52.5214334, + 13.3802993 + ], + [ + 52.5214476, + 13.3801453 + ], + [ + 52.5214756, + 13.3798816 + ], + [ + 52.521512, + 13.3796385 + ], + [ + 52.5215506, + 13.3794388 + ], + [ + 52.5215961, + 13.379231 + ], + [ + 52.5216408, + 13.3790581 + ], + [ + 52.5216876, + 13.3788965 + ], + [ + 52.5217433, + 13.3787278 + ], + [ + 52.5217829, + 13.3786124 + ], + [ + 52.5218288, + 13.3784904 + ], + [ + 52.5218885, + 13.3783511 + ], + [ + 52.5219807, + 13.3781474 + ], + [ + 52.5220536, + 13.3780132 + ], + [ + 52.522189, + 13.3777774 + ] + ] + }, + { + "osmId": "29384659", + "name": "Berliner Stadtbahn", + "lengthMeters": 410.2335700470255, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5212403, + 13.3833187 + ], + [ + 52.5212631, + 13.3832107 + ], + [ + 52.5212912, + 13.3830417 + ], + [ + 52.5213227, + 13.3828554 + ], + [ + 52.52136, + 13.3824992 + ], + [ + 52.52137, + 13.3823419 + ], + [ + 52.5213744, + 13.3821879 + ], + [ + 52.5213774, + 13.3819761 + ], + [ + 52.521366, + 13.3814782 + ], + [ + 52.5213573, + 13.3810597 + ], + [ + 52.5213482, + 13.3807719 + ], + [ + 52.5213523, + 13.3805474 + ], + [ + 52.5213604, + 13.3803473 + ], + [ + 52.521372, + 13.3801859 + ], + [ + 52.521387, + 13.3800519 + ], + [ + 52.5214079, + 13.3798897 + ], + [ + 52.521428, + 13.37973 + ], + [ + 52.5214529, + 13.3795727 + ], + [ + 52.5214856, + 13.379409 + ], + [ + 52.5215348, + 13.3791905 + ], + [ + 52.5215832, + 13.378997 + ], + [ + 52.5216424, + 13.3788026 + ], + [ + 52.5217078, + 13.3786057 + ], + [ + 52.5217729, + 13.3784337 + ], + [ + 52.521837, + 13.3782796 + ], + [ + 52.5219038, + 13.3781359 + ], + [ + 52.521972, + 13.3779998 + ], + [ + 52.5220312, + 13.3778842 + ], + [ + 52.5221693, + 13.3776577 + ] + ] + }, + { + "osmId": "29385328", + "name": null, + "lengthMeters": 445.6154928412717, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495002, + 13.3959606 + ], + [ + 52.5495071, + 13.3959866 + ], + [ + 52.5495762, + 13.3962053 + ], + [ + 52.5496442, + 13.3963953 + ], + [ + 52.5497202, + 13.3965847 + ], + [ + 52.5497924, + 13.3967512 + ], + [ + 52.5498455, + 13.3968627 + ], + [ + 52.5499267, + 13.3970173 + ], + [ + 52.5500087, + 13.3971615 + ], + [ + 52.5500909, + 13.3972926 + ], + [ + 52.550177, + 13.3974215 + ], + [ + 52.5502914, + 13.3975745 + ], + [ + 52.5504345, + 13.39775 + ], + [ + 52.5505449, + 13.3978651 + ], + [ + 52.5505943, + 13.3979088 + ], + [ + 52.5507669, + 13.3980542 + ], + [ + 52.5508544, + 13.3981224 + ], + [ + 52.5509694, + 13.3982073 + ], + [ + 52.5510641, + 13.3982688 + ], + [ + 52.5511495, + 13.3983151 + ], + [ + 52.551209, + 13.3983471 + ], + [ + 52.5513072, + 13.3983911 + ], + [ + 52.5514104, + 13.3984376 + ], + [ + 52.5515601, + 13.3984844 + ], + [ + 52.5516942, + 13.3985115 + ], + [ + 52.551923, + 13.3985438 + ], + [ + 52.5521467, + 13.3985415 + ], + [ + 52.5523216, + 13.3985211 + ], + [ + 52.5523591, + 13.3985095 + ], + [ + 52.5525729, + 13.3984671 + ], + [ + 52.552889, + 13.3983822 + ] + ] + }, + { + "osmId": "29385430", + "name": null, + "lengthMeters": 439.3091910254746, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5525665, + 13.398405 + ], + [ + 52.5523373, + 13.3984309 + ], + [ + 52.5521917, + 13.3984346 + ], + [ + 52.5520566, + 13.398421 + ], + [ + 52.5519469, + 13.3984046 + ], + [ + 52.5518466, + 13.3983841 + ], + [ + 52.5517765, + 13.3983648 + ], + [ + 52.5517153, + 13.398348 + ], + [ + 52.5515736, + 13.3982931 + ], + [ + 52.5514394, + 13.3982336 + ], + [ + 52.5512077, + 13.3981004 + ], + [ + 52.5511448, + 13.3980526 + ], + [ + 52.5510515, + 13.3979848 + ], + [ + 52.5509454, + 13.3978986 + ], + [ + 52.5507913, + 13.3977593 + ], + [ + 52.5506972, + 13.3976619 + ], + [ + 52.55058, + 13.397529 + ], + [ + 52.5504462, + 13.3973691 + ], + [ + 52.5502782, + 13.3971089 + ], + [ + 52.550103, + 13.3968018 + ], + [ + 52.5500484, + 13.3966887 + ], + [ + 52.549976, + 13.3965317 + ], + [ + 52.5499129, + 13.396374 + ], + [ + 52.5499017, + 13.3963455 + ], + [ + 52.5498611, + 13.3962355 + ], + [ + 52.5498154, + 13.3961004 + ], + [ + 52.5497683, + 13.3959552 + ], + [ + 52.5496713, + 13.395595 + ], + [ + 52.5495867, + 13.3951875 + ], + [ + 52.549566, + 13.3950643 + ] + ] + }, + { + "osmId": "29421565", + "name": null, + "lengthMeters": 103.76895647598924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5900173, + 9.9930836 + ], + [ + 53.5893924, + 9.9919159 + ] + ] + }, + { + "osmId": "29422645", + "name": null, + "lengthMeters": 162.76315374921393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5514375, + 10.0031587 + ], + [ + 53.5516442, + 10.0047406 + ], + [ + 53.5517473, + 10.0055667 + ] + ] + }, + { + "osmId": "29494615", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 4308.4318164965425, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3418858, + 13.3427634 + ], + [ + 52.341905, + 13.342974 + ], + [ + 52.342174, + 13.3459892 + ], + [ + 52.3423121, + 13.3475419 + ], + [ + 52.3423717, + 13.3482031 + ], + [ + 52.3426612, + 13.3514505 + ], + [ + 52.3429161, + 13.3543152 + ], + [ + 52.3431729, + 13.3572206 + ], + [ + 52.3433038, + 13.3586668 + ], + [ + 52.3434703, + 13.3606083 + ], + [ + 52.343557, + 13.3616054 + ], + [ + 52.3435973, + 13.3620683 + ], + [ + 52.3436905, + 13.3631237 + ], + [ + 52.3438381, + 13.3647953 + ], + [ + 52.3438614, + 13.3650542 + ], + [ + 52.3439616, + 13.3661856 + ], + [ + 52.3440145, + 13.3667289 + ], + [ + 52.3442545, + 13.3694871 + ], + [ + 52.344344, + 13.3704957 + ], + [ + 52.3444586, + 13.3717878 + ], + [ + 52.3444853, + 13.3720938 + ], + [ + 52.3447126, + 13.3746486 + ], + [ + 52.3447259, + 13.3747983 + ], + [ + 52.3448683, + 13.3763668 + ], + [ + 52.3449876, + 13.3777178 + ], + [ + 52.3450121, + 13.3779647 + ], + [ + 52.3452239, + 13.3803782 + ], + [ + 52.3453359, + 13.3815997 + ], + [ + 52.3453415, + 13.3816538 + ], + [ + 52.3455033, + 13.3834736 + ], + [ + 52.3455074, + 13.3835186 + ], + [ + 52.3456038, + 13.3845628 + ], + [ + 52.3457759, + 13.3864665 + ], + [ + 52.3458116, + 13.3869229 + ], + [ + 52.3459095, + 13.3879626 + ], + [ + 52.3460219, + 13.389051 + ], + [ + 52.3461179, + 13.3898337 + ], + [ + 52.3462122, + 13.3905551 + ], + [ + 52.3463085, + 13.3912375 + ], + [ + 52.3464774, + 13.3923299 + ], + [ + 52.3466512, + 13.393325 + ], + [ + 52.3467419, + 13.3938263 + ], + [ + 52.346838, + 13.3943255 + ], + [ + 52.347048, + 13.3953686 + ], + [ + 52.3475112, + 13.3974585 + ], + [ + 52.3480566, + 13.3998641 + ], + [ + 52.3481404, + 13.4002614 + ], + [ + 52.3483588, + 13.4012076 + ], + [ + 52.3483742, + 13.4012773 + ], + [ + 52.3486971, + 13.4027373 + ], + [ + 52.3488022, + 13.4032048 + ], + [ + 52.3488373, + 13.403361 + ], + [ + 52.3491716, + 13.4048527 + ] + ] + }, + { + "osmId": "29573790", + "name": null, + "lengthMeters": 85.7251620522556, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3669157, + 13.4631671 + ], + [ + 52.367021, + 13.463169 + ], + [ + 52.3671382, + 13.4631668 + ], + [ + 52.3673264, + 13.463175 + ], + [ + 52.36748, + 13.4631952 + ], + [ + 52.3675231, + 13.4632029 + ], + [ + 52.3676845, + 13.4632367 + ] + ] + }, + { + "osmId": "29574936", + "name": "Sch\u00f6nefelder Kurve", + "lengthMeters": 884.5843044000073, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3424509, + 13.4144614 + ], + [ + 52.342788, + 13.414386 + ], + [ + 52.3430443, + 13.4143301 + ], + [ + 52.3435905, + 13.4141855 + ], + [ + 52.3440054, + 13.4140508 + ], + [ + 52.344772, + 13.4137881 + ], + [ + 52.3448985, + 13.4137437 + ], + [ + 52.3453255, + 13.4135911 + ], + [ + 52.3457906, + 13.4134342 + ], + [ + 52.3462571, + 13.4132876 + ], + [ + 52.3464413, + 13.4132397 + ], + [ + 52.3466888, + 13.4131874 + ], + [ + 52.3469385, + 13.413149 + ], + [ + 52.3471288, + 13.4131344 + ], + [ + 52.3473236, + 13.4131318 + ], + [ + 52.3475115, + 13.4131409 + ], + [ + 52.3477016, + 13.4131654 + ], + [ + 52.3478294, + 13.4131828 + ], + [ + 52.34801, + 13.4132182 + ], + [ + 52.3481902, + 13.413268 + ], + [ + 52.3483661, + 13.4133262 + ], + [ + 52.3485122, + 13.4133811 + ], + [ + 52.3487056, + 13.413468 + ], + [ + 52.3489563, + 13.4135969 + ], + [ + 52.3491816, + 13.4137307 + ], + [ + 52.3493744, + 13.4138624 + ], + [ + 52.349651, + 13.4140813 + ], + [ + 52.3498305, + 13.4142419 + ], + [ + 52.3500019, + 13.4144085 + ], + [ + 52.3501573, + 13.4145714 + ] + ] + }, + { + "osmId": "29583408", + "name": "Vogelfluglinie", + "lengthMeters": 334.42628316285777, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5850055, + 10.1207723 + ], + [ + 53.5856835, + 10.1218876 + ], + [ + 53.5860554, + 10.1225191 + ], + [ + 53.586246, + 10.1228381 + ], + [ + 53.5863515, + 10.1230161 + ], + [ + 53.5864335, + 10.1231583 + ], + [ + 53.5866866, + 10.1235976 + ], + [ + 53.586852, + 10.1238899 + ], + [ + 53.5870563, + 10.1242337 + ], + [ + 53.5871304, + 10.1243574 + ] + ] + }, + { + "osmId": "29649476", + "name": null, + "lengthMeters": 105.54511177651578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.454045, + 13.5107756 + ], + [ + 52.4538091, + 13.5111425 + ], + [ + 52.453566, + 13.5115168 + ], + [ + 52.4533538, + 13.5118431 + ] + ] + }, + { + "osmId": "29649486", + "name": null, + "lengthMeters": 244.65570366028237, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4533538, + 13.5118431 + ], + [ + 52.4530561, + 13.512303 + ], + [ + 52.4524721, + 13.5132136 + ], + [ + 52.4519762, + 13.5139716 + ], + [ + 52.4517481, + 13.5143113 + ] + ] + }, + { + "osmId": "29649964", + "name": null, + "lengthMeters": 195.29786355322182, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568857, + 13.506542 + ], + [ + 52.4568025, + 13.5066752 + ], + [ + 52.456719, + 13.5068053 + ], + [ + 52.4565925, + 13.5069999 + ], + [ + 52.4562243, + 13.5075169 + ], + [ + 52.4558562, + 13.5080198 + ], + [ + 52.4556723, + 13.5082762 + ], + [ + 52.4556222, + 13.5083459 + ], + [ + 52.4555617, + 13.5084344 + ] + ] + }, + { + "osmId": "29650584", + "name": null, + "lengthMeters": 529.6433455922181, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603315, + 13.5011458 + ], + [ + 52.4594759, + 13.5024725 + ], + [ + 52.458639, + 13.5037644 + ], + [ + 52.4582159, + 13.5044078 + ], + [ + 52.4579652, + 13.5048038 + ], + [ + 52.4575579, + 13.505446 + ], + [ + 52.4572485, + 13.5059511 + ], + [ + 52.4571295, + 13.5061475 + ], + [ + 52.4568857, + 13.506542 + ] + ] + }, + { + "osmId": "29650775", + "name": null, + "lengthMeters": 673.6883426551797, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4647037, + 13.493918 + ], + [ + 52.4645902, + 13.4941042 + ], + [ + 52.4644025, + 13.4944141 + ], + [ + 52.4642173, + 13.494735 + ], + [ + 52.4639624, + 13.495193 + ], + [ + 52.4637078, + 13.4956684 + ], + [ + 52.4630859, + 13.4968393 + ], + [ + 52.4629027, + 13.4971786 + ], + [ + 52.4627989, + 13.4973655 + ], + [ + 52.4626946, + 13.4975475 + ], + [ + 52.462578, + 13.4977406 + ], + [ + 52.4624605, + 13.4979281 + ], + [ + 52.4623402, + 13.498111 + ], + [ + 52.4622199, + 13.4982916 + ], + [ + 52.4622056, + 13.4983134 + ], + [ + 52.4613402, + 13.4995931 + ], + [ + 52.4604823, + 13.5009122 + ], + [ + 52.4604433, + 13.5009726 + ] + ] + }, + { + "osmId": "29653045", + "name": null, + "lengthMeters": 202.97756133209813, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690742, + 13.4628423 + ], + [ + 52.4690715, + 13.4629609 + ], + [ + 52.4690686, + 13.463136 + ], + [ + 52.4690689, + 13.4634096 + ], + [ + 52.469075, + 13.4636811 + ], + [ + 52.4690883, + 13.4640218 + ], + [ + 52.4691082, + 13.4643336 + ], + [ + 52.4691364, + 13.4646407 + ], + [ + 52.4691693, + 13.4649593 + ], + [ + 52.4692396, + 13.4655334 + ], + [ + 52.4692781, + 13.4658094 + ] + ] + }, + { + "osmId": "29653264", + "name": null, + "lengthMeters": 311.8531834904352, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4693496, + 13.4663587 + ], + [ + 52.4696267, + 13.4684114 + ], + [ + 52.4697032, + 13.4689516 + ], + [ + 52.4697705, + 13.4693669 + ], + [ + 52.4697879, + 13.4694685 + ], + [ + 52.4698058, + 13.4695658 + ], + [ + 52.4699365, + 13.4702764 + ], + [ + 52.4700325, + 13.4708216 + ] + ] + }, + { + "osmId": "29653618", + "name": null, + "lengthMeters": 122.80571541800927, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4701782, + 13.4575298 + ], + [ + 52.47017, + 13.4575592 + ], + [ + 52.4699493, + 13.4583534 + ], + [ + 52.4697267, + 13.4591843 + ] + ] + }, + { + "osmId": "29653893", + "name": null, + "lengthMeters": 205.5209128876727, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697588, + 13.4448608 + ], + [ + 52.4697062, + 13.4445135 + ], + [ + 52.4696078, + 13.4438786 + ], + [ + 52.4694162, + 13.4425954 + ], + [ + 52.4693782, + 13.4423656 + ], + [ + 52.4693466, + 13.4421642 + ], + [ + 52.4693139, + 13.4419623 + ], + [ + 52.469309, + 13.4419345 + ], + [ + 52.4693063, + 13.4419192 + ] + ] + }, + { + "osmId": "29655102", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 421.68394415932056, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4710914, + 13.47905 + ], + [ + 52.4704481, + 13.4742781 + ], + [ + 52.4702725, + 13.4729715 + ] + ] + }, + { + "osmId": "29658806", + "name": null, + "lengthMeters": 600.6348007162089, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530289, + 13.5126197 + ], + [ + 52.4527092, + 13.5131164 + ], + [ + 52.4525643, + 13.513336 + ], + [ + 52.4521695, + 13.5139492 + ], + [ + 52.4517355, + 13.5146191 + ], + [ + 52.4513716, + 13.5151891 + ], + [ + 52.4511283, + 13.5155938 + ], + [ + 52.4508116, + 13.5161687 + ], + [ + 52.4503948, + 13.5169885 + ], + [ + 52.4501828, + 13.517409 + ], + [ + 52.4500648, + 13.5176482 + ], + [ + 52.4499913, + 13.5178236 + ], + [ + 52.4499224, + 13.5180029 + ], + [ + 52.4498765, + 13.518143 + ], + [ + 52.4498258, + 13.5183133 + ], + [ + 52.4497876, + 13.5184588 + ], + [ + 52.44978, + 13.5184902 + ], + [ + 52.4497369, + 13.5186805 + ], + [ + 52.4497324, + 13.5187025 + ], + [ + 52.4497018, + 13.5188773 + ], + [ + 52.4496753, + 13.5190557 + ], + [ + 52.4496379, + 13.5193495 + ] + ] + }, + { + "osmId": "29661017", + "name": null, + "lengthMeters": 903.6316329488315, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4127816, + 13.5656568 + ], + [ + 52.4131021, + 13.5658732 + ], + [ + 52.4134328, + 13.5660688 + ], + [ + 52.4138775, + 13.5662846 + ], + [ + 52.4140953, + 13.5663737 + ], + [ + 52.4143744, + 13.5664717 + ], + [ + 52.4146711, + 13.5665543 + ], + [ + 52.4148872, + 13.5666025 + ], + [ + 52.4150568, + 13.5666266 + ], + [ + 52.4152562, + 13.5666399 + ], + [ + 52.4154122, + 13.5666407 + ], + [ + 52.4157473, + 13.5666053 + ], + [ + 52.4158553, + 13.5665855 + ], + [ + 52.4160943, + 13.5665288 + ], + [ + 52.416311, + 13.5664655 + ], + [ + 52.4166302, + 13.5663498 + ], + [ + 52.416831, + 13.5662625 + ], + [ + 52.417054, + 13.566154 + ], + [ + 52.4173018, + 13.5660183 + ], + [ + 52.417716, + 13.5657446 + ], + [ + 52.4178737, + 13.5656242 + ], + [ + 52.4180387, + 13.5654877 + ], + [ + 52.4182052, + 13.5653329 + ], + [ + 52.4183998, + 13.5651343 + ], + [ + 52.4185914, + 13.5649185 + ], + [ + 52.4188286, + 13.564633 + ], + [ + 52.4190127, + 13.5643974 + ], + [ + 52.4190154, + 13.5643939 + ], + [ + 52.4195298, + 13.563728 + ], + [ + 52.4200683, + 13.5630274 + ], + [ + 52.4201803, + 13.5628821 + ] + ] + }, + { + "osmId": "29661424", + "name": null, + "lengthMeters": 108.98188044831414, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3904543, + 13.5122431 + ], + [ + 52.3905237, + 13.5124082 + ], + [ + 52.3906044, + 13.5125879 + ], + [ + 52.3910415, + 13.5135287 + ] + ] + }, + { + "osmId": "29661437", + "name": null, + "lengthMeters": 502.25612155666073, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3905849, + 13.5121289 + ], + [ + 52.3904759, + 13.5118874 + ], + [ + 52.3904703, + 13.5118744 + ], + [ + 52.3902016, + 13.5112571 + ], + [ + 52.3900497, + 13.5108487 + ], + [ + 52.3899506, + 13.5105524 + ], + [ + 52.3898586, + 13.5102592 + ], + [ + 52.3895317, + 13.5091091 + ], + [ + 52.3894461, + 13.508839 + ], + [ + 52.3893574, + 13.5085762 + ], + [ + 52.3892872, + 13.5083813 + ], + [ + 52.3892075, + 13.5081728 + ], + [ + 52.3890523, + 13.5078052 + ], + [ + 52.3888711, + 13.507403 + ], + [ + 52.3886338, + 13.5068947 + ], + [ + 52.3883977, + 13.5063941 + ], + [ + 52.3883861, + 13.5063692 + ], + [ + 52.3882379, + 13.5060362 + ], + [ + 52.3881703, + 13.5059044 + ] + ] + }, + { + "osmId": "29998108", + "name": null, + "lengthMeters": 79.40411758639232, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1354909, + 11.6251875 + ], + [ + 48.1353757, + 11.6241315 + ] + ] + }, + { + "osmId": "30014331", + "name": null, + "lengthMeters": 899.2652438492629, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3984322, + 13.3894497 + ], + [ + 52.398234, + 13.3895848 + ], + [ + 52.3981045, + 13.389673 + ], + [ + 52.3978989, + 13.3898095 + ], + [ + 52.3972586, + 13.3902381 + ], + [ + 52.3965613, + 13.3906728 + ], + [ + 52.3963574, + 13.3907947 + ], + [ + 52.3961872, + 13.3909003 + ], + [ + 52.3948106, + 13.3917077 + ], + [ + 52.394028, + 13.3921731 + ], + [ + 52.39323, + 13.3926746 + ], + [ + 52.3923644, + 13.393237 + ], + [ + 52.3919423, + 13.3935162 + ], + [ + 52.3915702, + 13.3937536 + ], + [ + 52.3913966, + 13.3938687 + ], + [ + 52.3911316, + 13.3940445 + ], + [ + 52.3908853, + 13.3942078 + ] + ] + }, + { + "osmId": "30014333", + "name": null, + "lengthMeters": 190.28393600997072, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3986662, + 13.389366 + ], + [ + 52.398922, + 13.3892026 + ], + [ + 52.3991796, + 13.389038 + ], + [ + 52.3993642, + 13.3889201 + ], + [ + 52.3995098, + 13.3888322 + ], + [ + 52.3995574, + 13.3888035 + ], + [ + 52.3996634, + 13.3887438 + ], + [ + 52.3997223, + 13.3887107 + ], + [ + 52.3999041, + 13.3886077 + ], + [ + 52.4002715, + 13.3883956 + ] + ] + }, + { + "osmId": "30020695", + "name": null, + "lengthMeters": 99.89125519582255, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4496379, + 13.5193495 + ], + [ + 52.4495517, + 13.5208167 + ] + ] + }, + { + "osmId": "30020707", + "name": null, + "lengthMeters": 176.863663163957, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495517, + 13.5208167 + ], + [ + 52.449546, + 13.5209263 + ], + [ + 52.4495379, + 13.5213144 + ], + [ + 52.4495441, + 13.5217292 + ], + [ + 52.449569, + 13.5220767 + ], + [ + 52.4496097, + 13.5223971 + ], + [ + 52.4496617, + 13.5226906 + ], + [ + 52.449716, + 13.5229167 + ], + [ + 52.4497793, + 13.5231632 + ], + [ + 52.4498226, + 13.5233536 + ] + ] + }, + { + "osmId": "30032244", + "name": null, + "lengthMeters": 263.57858649314977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1363283, + 11.5648988 + ], + [ + 48.1363565, + 11.5648979 + ], + [ + 48.1363874, + 11.5648986 + ], + [ + 48.1364327, + 11.5649021 + ], + [ + 48.1364766, + 11.5649059 + ], + [ + 48.1365108, + 11.5649101 + ], + [ + 48.1365368, + 11.5649147 + ], + [ + 48.1365646, + 11.5649219 + ], + [ + 48.1366342, + 11.5649404 + ], + [ + 48.136821, + 11.5649991 + ], + [ + 48.1369882, + 11.5650386 + ], + [ + 48.1371662, + 11.5650719 + ], + [ + 48.1373654, + 11.5651045 + ], + [ + 48.1374536, + 11.5651177 + ], + [ + 48.1375232, + 11.5651269 + ], + [ + 48.1378597, + 11.5651849 + ], + [ + 48.1381706, + 11.5652454 + ], + [ + 48.1386792, + 11.565333 + ] + ] + }, + { + "osmId": "30041997", + "name": null, + "lengthMeters": 753.3792834877225, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5173051, + 13.5387664 + ], + [ + 52.5191266, + 13.5385646 + ], + [ + 52.5195164, + 13.5385214 + ], + [ + 52.5201559, + 13.5384434 + ], + [ + 52.5207745, + 13.538353 + ], + [ + 52.521486, + 13.5382207 + ], + [ + 52.5217163, + 13.5381696 + ], + [ + 52.5217996, + 13.5381511 + ], + [ + 52.5222327, + 13.5380432 + ], + [ + 52.5224601, + 13.5379891 + ], + [ + 52.523184, + 13.5377861 + ], + [ + 52.5233897, + 13.5377235 + ], + [ + 52.5236904, + 13.5376319 + ], + [ + 52.5238596, + 13.5375709 + ], + [ + 52.524028, + 13.5375004 + ] + ] + }, + { + "osmId": "30041999", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2455.622710660661, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5640052, + 13.514974 + ], + [ + 52.5633845, + 13.5157702 + ], + [ + 52.5633397, + 13.5158277 + ], + [ + 52.5617532, + 13.5178549 + ], + [ + 52.5616915, + 13.5179338 + ], + [ + 52.5599791, + 13.5201218 + ], + [ + 52.5594889, + 13.5207507 + ], + [ + 52.5594503, + 13.5207999 + ], + [ + 52.5585788, + 13.5219096 + ], + [ + 52.5583703, + 13.5221668 + ], + [ + 52.5581328, + 13.5224522 + ], + [ + 52.5577469, + 13.5228933 + ], + [ + 52.5573548, + 13.523318 + ], + [ + 52.5570538, + 13.5236274 + ], + [ + 52.5567507, + 13.5239208 + ], + [ + 52.5564336, + 13.5242177 + ], + [ + 52.5561057, + 13.5245147 + ], + [ + 52.5558707, + 13.5247126 + ], + [ + 52.5556559, + 13.5248895 + ], + [ + 52.5556304, + 13.5249105 + ], + [ + 52.5553449, + 13.5251369 + ], + [ + 52.555121, + 13.5253064 + ], + [ + 52.5548357, + 13.5255152 + ], + [ + 52.5545406, + 13.5257203 + ], + [ + 52.554246, + 13.5259112 + ], + [ + 52.5539294, + 13.5261113 + ], + [ + 52.5533416, + 13.5264492 + ], + [ + 52.5532699, + 13.5264904 + ], + [ + 52.5529437, + 13.5266555 + ], + [ + 52.5525935, + 13.5268253 + ], + [ + 52.5522119, + 13.5269939 + ], + [ + 52.5518291, + 13.5271482 + ], + [ + 52.5510468, + 13.5274416 + ], + [ + 52.5496778, + 13.5279438 + ], + [ + 52.5443213, + 13.5299086 + ] + ] + }, + { + "osmId": "30123805", + "name": null, + "lengthMeters": 680.3805893916615, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6053946, + 13.4167576 + ], + [ + 52.6054252, + 13.4168923 + ], + [ + 52.605477, + 13.4171137 + ], + [ + 52.6055171, + 13.4172847 + ], + [ + 52.6057663, + 13.4183623 + ], + [ + 52.6058527, + 13.4187349 + ], + [ + 52.6060687, + 13.4196558 + ], + [ + 52.6061059, + 13.4198029 + ], + [ + 52.6061234, + 13.4198587 + ], + [ + 52.6061495, + 13.4199371 + ], + [ + 52.6061704, + 13.4199851 + ], + [ + 52.6062229, + 13.4201057 + ], + [ + 52.6062723, + 13.4202022 + ], + [ + 52.6063089, + 13.4202737 + ], + [ + 52.6063385, + 13.4203319 + ], + [ + 52.606382, + 13.4204256 + ], + [ + 52.6064169, + 13.420512 + ], + [ + 52.606446, + 13.4206009 + ], + [ + 52.6064821, + 13.4207293 + ], + [ + 52.6066554, + 13.4215042 + ], + [ + 52.6070067, + 13.4230608 + ], + [ + 52.607073, + 13.4233684 + ], + [ + 52.6070902, + 13.4234534 + ], + [ + 52.6072487, + 13.424295 + ], + [ + 52.6072753, + 13.4244319 + ], + [ + 52.6073583, + 13.4248824 + ], + [ + 52.6075584, + 13.4259376 + ], + [ + 52.607593, + 13.4261187 + ] + ] + }, + { + "osmId": "30144209", + "name": null, + "lengthMeters": 2184.074715854602, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4442368, + 13.3628308 + ], + [ + 52.4440955, + 13.3629124 + ], + [ + 52.4437948, + 13.3630859 + ], + [ + 52.4434219, + 13.3632979 + ], + [ + 52.4427374, + 13.3636836 + ], + [ + 52.442054, + 13.3640833 + ], + [ + 52.4419619, + 13.3641405 + ], + [ + 52.4416078, + 13.3643498 + ], + [ + 52.4407447, + 13.3648581 + ], + [ + 52.440505, + 13.3649978 + ], + [ + 52.4395485, + 13.3655626 + ], + [ + 52.4388429, + 13.3659593 + ], + [ + 52.4370564, + 13.3669619 + ], + [ + 52.4370406, + 13.3669695 + ], + [ + 52.4365571, + 13.3672379 + ], + [ + 52.43577, + 13.3676969 + ], + [ + 52.4355943, + 13.3677993 + ], + [ + 52.4354912, + 13.3678651 + ], + [ + 52.4346417, + 13.3683741 + ], + [ + 52.4346061, + 13.3683963 + ], + [ + 52.4338042, + 13.368873 + ], + [ + 52.4328865, + 13.3693975 + ], + [ + 52.4321295, + 13.3698406 + ], + [ + 52.4304346, + 13.370839 + ], + [ + 52.4297006, + 13.3712715 + ], + [ + 52.4285076, + 13.3719735 + ], + [ + 52.4276823, + 13.3724684 + ], + [ + 52.4272836, + 13.3727241 + ], + [ + 52.4269913, + 13.3729161 + ], + [ + 52.4263728, + 13.3733246 + ], + [ + 52.4262301, + 13.3734184 + ], + [ + 52.426154, + 13.3734685 + ], + [ + 52.4258945, + 13.3736421 + ], + [ + 52.4257557, + 13.3737323 + ] + ] + }, + { + "osmId": "30144212", + "name": null, + "lengthMeters": 139.22321121933004, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4448248, + 13.3625467 + ], + [ + 52.4450956, + 13.3623886 + ], + [ + 52.445353, + 13.3622512 + ], + [ + 52.4460157, + 13.3619134 + ] + ] + }, + { + "osmId": "30217925", + "name": null, + "lengthMeters": 472.570947813067, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4762155, + 13.5366614 + ], + [ + 52.4768216, + 13.535266 + ], + [ + 52.4787018, + 13.5310024 + ] + ] + }, + { + "osmId": "30217927", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 589.3367307527105, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690821, + 13.5523227 + ], + [ + 52.4690199, + 13.552285 + ], + [ + 52.4683852, + 13.5519004 + ], + [ + 52.4678788, + 13.5516079 + ], + [ + 52.4670476, + 13.5510942 + ], + [ + 52.4669141, + 13.5510126 + ], + [ + 52.4665564, + 13.5508109 + ], + [ + 52.4663161, + 13.5506965 + ], + [ + 52.4660186, + 13.5506133 + ], + [ + 52.4657194, + 13.550574 + ], + [ + 52.4656313, + 13.5505624 + ], + [ + 52.4652613, + 13.5505782 + ], + [ + 52.4651058, + 13.5506041 + ], + [ + 52.4649464, + 13.5506553 + ], + [ + 52.4646597, + 13.5507769 + ], + [ + 52.4646087, + 13.5508024 + ], + [ + 52.4640142, + 13.5511577 + ] + ] + }, + { + "osmId": "30239023", + "name": null, + "lengthMeters": 226.56515786512298, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5298906, + 10.0200161 + ], + [ + 53.5299028, + 10.0200265 + ], + [ + 53.530458, + 10.0205488 + ], + [ + 53.5306046, + 10.0206864 + ], + [ + 53.5308319, + 10.0208998 + ], + [ + 53.5308851, + 10.0209497 + ], + [ + 53.5315618, + 10.0215606 + ], + [ + 53.5316234, + 10.0216162 + ], + [ + 53.5316773, + 10.0216636 + ] + ] + }, + { + "osmId": "30239032", + "name": null, + "lengthMeters": 306.23473445330893, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293007, + 10.0193252 + ], + [ + 53.5298114, + 10.019796 + ], + [ + 53.5309033, + 10.020787 + ], + [ + 53.5309206, + 10.0208008 + ], + [ + 53.5316339, + 10.0214317 + ], + [ + 53.5316728, + 10.021466 + ], + [ + 53.5317279, + 10.0215142 + ] + ] + }, + { + "osmId": "30239039", + "name": null, + "lengthMeters": 536.3921176218022, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5244536, + 10.0151289 + ], + [ + 53.5251365, + 10.0156313 + ], + [ + 53.5254518, + 10.0158801 + ], + [ + 53.5257611, + 10.0161343 + ], + [ + 53.5259036, + 10.0162565 + ], + [ + 53.5264218, + 10.0167385 + ], + [ + 53.5270499, + 10.0173501 + ], + [ + 53.5274229, + 10.0177135 + ], + [ + 53.5285523, + 10.0187755 + ], + [ + 53.5287127, + 10.0189248 + ] + ] + }, + { + "osmId": "30433557", + "name": null, + "lengthMeters": 665.197145339135, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281445, + 13.2769048 + ], + [ + 52.5281527, + 13.2771614 + ], + [ + 52.5281471, + 13.2774702 + ], + [ + 52.5281334, + 13.2777472 + ], + [ + 52.5280858, + 13.2782247 + ], + [ + 52.5280455, + 13.2785071 + ], + [ + 52.5279907, + 13.2788105 + ], + [ + 52.5279152, + 13.2791364 + ], + [ + 52.5278301, + 13.2794501 + ], + [ + 52.52775, + 13.2796953 + ], + [ + 52.5276558, + 13.279955 + ], + [ + 52.5274392, + 13.2804316 + ], + [ + 52.5272091, + 13.2808293 + ], + [ + 52.5269489, + 13.2812297 + ], + [ + 52.5267453, + 13.2814982 + ], + [ + 52.5265738, + 13.2816495 + ], + [ + 52.5260802, + 13.2820155 + ], + [ + 52.5257399, + 13.2821812 + ], + [ + 52.5254048, + 13.2822959 + ], + [ + 52.5248456, + 13.2824222 + ], + [ + 52.5241295, + 13.2825461 + ] + ] + }, + { + "osmId": "30434115", + "name": null, + "lengthMeters": 250.36857286107747, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4311962, + 13.2593416 + ], + [ + 52.431377, + 13.2599426 + ], + [ + 52.4315, + 13.260329 + ], + [ + 52.4315951, + 13.260622 + ], + [ + 52.4317978, + 13.2612087 + ], + [ + 52.4322796, + 13.2625776 + ] + ] + }, + { + "osmId": "30434118", + "name": null, + "lengthMeters": 1333.8395199326233, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4427654, + 13.2918282 + ], + [ + 52.44117, + 13.287295 + ], + [ + 52.4410842, + 13.2870709 + ], + [ + 52.4409288, + 13.286681 + ], + [ + 52.4404766, + 13.2855833 + ], + [ + 52.4403522, + 13.28528 + ], + [ + 52.4401258, + 13.2846847 + ], + [ + 52.4393234, + 13.2824273 + ], + [ + 52.4387411, + 13.2807858 + ], + [ + 52.4380845, + 13.2789375 + ], + [ + 52.4378065, + 13.278149 + ], + [ + 52.4375393, + 13.2773579 + ], + [ + 52.4368785, + 13.2753056 + ], + [ + 52.4367243, + 13.2748365 + ] + ] + }, + { + "osmId": "30494666", + "name": null, + "lengthMeters": 288.10366088650574, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4402023, + 10.0115585 + ], + [ + 53.440972, + 10.0108097 + ], + [ + 53.4413344, + 10.0104566 + ], + [ + 53.4421614, + 10.0095393 + ], + [ + 53.4424052, + 10.009272 + ] + ] + }, + { + "osmId": "30553758", + "name": null, + "lengthMeters": 689.2177220738412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5472773, + 10.0954982 + ], + [ + 53.5462654, + 10.0973413 + ], + [ + 53.5459615, + 10.097911 + ], + [ + 53.5458212, + 10.0981991 + ], + [ + 53.5457106, + 10.0984489 + ], + [ + 53.5452753, + 10.0995435 + ], + [ + 53.5444949, + 10.1015205 + ], + [ + 53.543843, + 10.1031836 + ], + [ + 53.5437074, + 10.1035194 + ], + [ + 53.5435793, + 10.1038365 + ] + ] + }, + { + "osmId": "30604686", + "name": null, + "lengthMeters": 153.99178481452773, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5396901, + 10.0289323 + ], + [ + 53.5397363, + 10.0292839 + ], + [ + 53.5397622, + 10.0295236 + ], + [ + 53.5397704, + 10.0296492 + ], + [ + 53.5397856, + 10.0298814 + ], + [ + 53.539795, + 10.0302975 + ], + [ + 53.5397886, + 10.030653 + ], + [ + 53.539772, + 10.031007 + ], + [ + 53.5397493, + 10.0312435 + ] + ] + }, + { + "osmId": "30604690", + "name": null, + "lengthMeters": 83.33121644452183, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.539755, + 10.031868 + ], + [ + 53.5397423, + 10.0319395 + ], + [ + 53.5396744, + 10.0322806 + ], + [ + 53.5396159, + 10.0325439 + ], + [ + 53.539489, + 10.033046 + ] + ] + }, + { + "osmId": "30604872", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 104.34505297654773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5378681, + 10.0387826 + ], + [ + 53.5377878, + 10.0391015 + ], + [ + 53.5376556, + 10.0396494 + ], + [ + 53.5375196, + 10.0402143 + ], + [ + 53.5375165, + 10.0402263 + ], + [ + 53.5375157, + 10.0402295 + ], + [ + 53.537514, + 10.0402366 + ], + [ + 53.5375125, + 10.0402438 + ] + ] + }, + { + "osmId": "30689379", + "name": null, + "lengthMeters": 620.8088305009651, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4474364, + 13.6243509 + ], + [ + 52.4476044, + 13.6243688 + ], + [ + 52.4476044, + 13.6243688 + ], + [ + 52.4476595, + 13.6243743 + ], + [ + 52.4477154, + 13.6243784 + ], + [ + 52.4478657, + 13.62439 + ], + [ + 52.4480982, + 13.6244171 + ], + [ + 52.4484244, + 13.6244552 + ], + [ + 52.4501461, + 13.6246546 + ], + [ + 52.4503363, + 13.6246786 + ], + [ + 52.450404, + 13.6246865 + ], + [ + 52.4504373, + 13.6246909 + ], + [ + 52.4505007, + 13.6246994 + ], + [ + 52.4505564, + 13.6247072 + ], + [ + 52.4507702, + 13.6247354 + ], + [ + 52.4507911, + 13.6247382 + ], + [ + 52.4508226, + 13.6247417 + ], + [ + 52.4511863, + 13.6247749 + ], + [ + 52.4512287, + 13.6247788 + ], + [ + 52.4513848, + 13.6247964 + ], + [ + 52.4515665, + 13.6248206 + ], + [ + 52.4516711, + 13.6248346 + ], + [ + 52.4523049, + 13.6249162 + ], + [ + 52.4530053, + 13.6249991 + ] + ] + }, + { + "osmId": "30691606", + "name": "Ostbahn", + "lengthMeters": 374.79957560370985, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026788, + 13.4811265 + ], + [ + 52.5025817, + 13.4806419 + ], + [ + 52.5025189, + 13.4802566 + ], + [ + 52.502471, + 13.4799564 + ], + [ + 52.5024187, + 13.4794557 + ], + [ + 52.5024072, + 13.479338 + ], + [ + 52.5023435, + 13.4786866 + ], + [ + 52.5023138, + 13.4781969 + ], + [ + 52.5022931, + 13.4777197 + ], + [ + 52.5022806, + 13.4773646 + ], + [ + 52.5022825, + 13.4770298 + ], + [ + 52.5022936, + 13.4767249 + ], + [ + 52.5023132, + 13.4762248 + ], + [ + 52.5023299, + 13.4759465 + ], + [ + 52.5023328, + 13.4758938 + ], + [ + 52.5023468, + 13.4756643 + ] + ] + }, + { + "osmId": "30691617", + "name": null, + "lengthMeters": 876.3084952339052, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042436, + 13.4864062 + ], + [ + 52.5046337, + 13.4872096 + ], + [ + 52.5050384, + 13.4879677 + ], + [ + 52.5056344, + 13.4890719 + ], + [ + 52.5060915, + 13.4899279 + ], + [ + 52.5062779, + 13.4902769 + ], + [ + 52.5064619, + 13.4906416 + ], + [ + 52.5066591, + 13.49105 + ], + [ + 52.5068446, + 13.4914457 + ], + [ + 52.5069039, + 13.4915747 + ], + [ + 52.5071501, + 13.4921041 + ], + [ + 52.5074033, + 13.4926268 + ], + [ + 52.5079568, + 13.4937168 + ], + [ + 52.5082143, + 13.4942191 + ], + [ + 52.50854, + 13.4948566 + ], + [ + 52.5087299, + 13.4952234 + ], + [ + 52.5093175, + 13.4963083 + ] + ] + }, + { + "osmId": "30706183", + "name": null, + "lengthMeters": 555.9991082631407, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.52599, + 13.5167495 + ], + [ + 52.5259543, + 13.5164003 + ], + [ + 52.5259122, + 13.5161035 + ], + [ + 52.5258587, + 13.5157811 + ], + [ + 52.5257174, + 13.5149411 + ], + [ + 52.5256625, + 13.5146352 + ], + [ + 52.5256286, + 13.5143601 + ], + [ + 52.5256129, + 13.5142326 + ], + [ + 52.525576, + 13.5138684 + ], + [ + 52.5255459, + 13.513446 + ], + [ + 52.5255321, + 13.5130954 + ], + [ + 52.5255257, + 13.5129351 + ], + [ + 52.5255017, + 13.5114996 + ], + [ + 52.5254905, + 13.5109079 + ], + [ + 52.5254833, + 13.5104814 + ], + [ + 52.5254786, + 13.5099901 + ], + [ + 52.5254797, + 13.5094949 + ], + [ + 52.5254877, + 13.508866 + ], + [ + 52.5254897, + 13.5086185 + ] + ] + }, + { + "osmId": "30711174", + "name": null, + "lengthMeters": 221.11109903084778, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054345, + 13.4488671 + ], + [ + 52.5072908, + 13.4500384 + ] + ] + }, + { + "osmId": "30711693", + "name": null, + "lengthMeters": 333.53582089869906, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5045709, + 13.4600761 + ], + [ + 52.504627, + 13.4597563 + ], + [ + 52.5047753, + 13.4589155 + ], + [ + 52.5048476, + 13.4585136 + ], + [ + 52.5049719, + 13.4578159 + ], + [ + 52.5050979, + 13.4570932 + ], + [ + 52.5052131, + 13.4564005 + ], + [ + 52.5053003, + 13.4558498 + ], + [ + 52.5053799, + 13.4553313 + ] + ] + }, + { + "osmId": "30711694", + "name": null, + "lengthMeters": 498.1784200340204, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053799, + 13.4553313 + ], + [ + 52.5054354, + 13.4549552 + ], + [ + 52.505484, + 13.4545964 + ], + [ + 52.5055624, + 13.4539805 + ], + [ + 52.5056299, + 13.4533827 + ], + [ + 52.5057195, + 13.4526427 + ], + [ + 52.5057559, + 13.4523717 + ], + [ + 52.5058544, + 13.4517165 + ], + [ + 52.5059465, + 13.4511618 + ], + [ + 52.5060175, + 13.4507767 + ], + [ + 52.5061051, + 13.4503575 + ], + [ + 52.5061125, + 13.4503241 + ], + [ + 52.5062507, + 13.4497432 + ], + [ + 52.5066197, + 13.4482819 + ] + ] + }, + { + "osmId": "30712995", + "name": null, + "lengthMeters": 243.67154311734157, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5496941, + 13.4097683 + ], + [ + 52.5496773, + 13.4101085 + ], + [ + 52.5496402, + 13.4107017 + ], + [ + 52.5496011, + 13.4112782 + ], + [ + 52.5495681, + 13.4117958 + ], + [ + 52.5495157, + 13.4125857 + ], + [ + 52.549467, + 13.4133526 + ] + ] + }, + { + "osmId": "30712996", + "name": null, + "lengthMeters": 492.88416328858045, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538898, + 13.3978419 + ], + [ + 52.5530854, + 13.3980985 + ], + [ + 52.5528535, + 13.3981472 + ], + [ + 52.5526285, + 13.3981698 + ], + [ + 52.5523673, + 13.398164 + ], + [ + 52.5523443, + 13.39816 + ], + [ + 52.552082, + 13.398114 + ], + [ + 52.5518534, + 13.3980463 + ], + [ + 52.5516125, + 13.3979474 + ], + [ + 52.5513442, + 13.3978033 + ], + [ + 52.5512589, + 13.3977494 + ], + [ + 52.5511275, + 13.397662 + ], + [ + 52.5509456, + 13.3975098 + ], + [ + 52.5509272, + 13.3974945 + ], + [ + 52.5508535, + 13.397411 + ], + [ + 52.5506681, + 13.3972011 + ], + [ + 52.5505011, + 13.3969839 + ], + [ + 52.5503438, + 13.3967498 + ], + [ + 52.5501882, + 13.3964733 + ], + [ + 52.5501389, + 13.3963689 + ], + [ + 52.5500402, + 13.3961597 + ], + [ + 52.5499544, + 13.3959566 + ], + [ + 52.5499406, + 13.3959228 + ] + ] + }, + { + "osmId": "30712997", + "name": null, + "lengthMeters": 150.62759857869602, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538998, + 13.3980118 + ], + [ + 52.5530679, + 13.3982676 + ], + [ + 52.5525665, + 13.398405 + ] + ] + }, + { + "osmId": "30712998", + "name": null, + "lengthMeters": 107.42322614610967, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538998, + 13.3980118 + ], + [ + 52.5534846, + 13.3981021 + ], + [ + 52.5531387, + 13.3981632 + ], + [ + 52.5530946, + 13.398171 + ], + [ + 52.5529413, + 13.3982089 + ] + ] + }, + { + "osmId": "30716716", + "name": null, + "lengthMeters": 120.00063598310064, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553708, + 13.4673686 + ], + [ + 52.553479, + 13.4672479 + ], + [ + 52.5531335, + 13.4670675 + ], + [ + 52.5529272, + 13.4669546 + ], + [ + 52.55283, + 13.4668892 + ], + [ + 52.5526935, + 13.4667727 + ] + ] + }, + { + "osmId": "30798388", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 155.84389706636378, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5472894, + 10.0326791 + ], + [ + 53.5480195, + 10.0321111 + ], + [ + 53.5482873, + 10.0318994 + ], + [ + 53.5485275, + 10.0317081 + ], + [ + 53.5485595, + 10.0316818 + ] + ] + }, + { + "osmId": "30816855", + "name": null, + "lengthMeters": 817.525331490462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1603854, + 11.5746717 + ], + [ + 48.1604391, + 11.5742443 + ], + [ + 48.1604591, + 11.5740858 + ], + [ + 48.1604777, + 11.5739561 + ], + [ + 48.1604897, + 11.5738628 + ], + [ + 48.1604996, + 11.5737914 + ], + [ + 48.1605156, + 11.5736326 + ], + [ + 48.1605257, + 11.5734403 + ], + [ + 48.1605316, + 11.5732333 + ], + [ + 48.1605344, + 11.5725654 + ], + [ + 48.1605397, + 11.5724145 + ], + [ + 48.1605455, + 11.5723137 + ], + [ + 48.1605567, + 11.57219 + ], + [ + 48.160573, + 11.5720665 + ], + [ + 48.16059, + 11.5719429 + ], + [ + 48.160623, + 11.5717656 + ], + [ + 48.1607019, + 11.5714141 + ], + [ + 48.1609793, + 11.570229 + ], + [ + 48.1611923, + 11.5693141 + ], + [ + 48.1612145, + 11.5691861 + ], + [ + 48.1612262, + 11.5690688 + ], + [ + 48.1612306, + 11.5689715 + ], + [ + 48.161231, + 11.5688529 + ], + [ + 48.1612207, + 11.5687302 + ], + [ + 48.1612064, + 11.568549 + ], + [ + 48.1612058, + 11.5685385 + ], + [ + 48.1611722, + 11.5679888 + ], + [ + 48.1610629, + 11.5667234 + ], + [ + 48.1609574, + 11.5655063 + ], + [ + 48.1609358, + 11.565053 + ], + [ + 48.1609274, + 11.5648437 + ], + [ + 48.16091, + 11.5641103 + ], + [ + 48.1609062, + 11.5638598 + ] + ] + }, + { + "osmId": "30859066", + "name": "Berliner Ringbahn", + "lengthMeters": 386.4081693527019, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494487, + 13.4130141 + ], + [ + 52.5495128, + 13.4118718 + ], + [ + 52.5496286, + 13.4099997 + ], + [ + 52.5496419, + 13.4093846 + ], + [ + 52.549637, + 13.4087703 + ], + [ + 52.5496222, + 13.4083142 + ], + [ + 52.5495978, + 13.4078628 + ], + [ + 52.5495697, + 13.4073186 + ] + ] + }, + { + "osmId": "30860009", + "name": null, + "lengthMeters": 76.85111632423263, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.554599, + 13.4302263 + ], + [ + 52.5545933, + 13.4305126 + ], + [ + 52.5545765, + 13.4313534 + ], + [ + 52.5545761, + 13.4313624 + ] + ] + }, + { + "osmId": "30886446", + "name": null, + "lengthMeters": 244.6422261367165, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5720071, + 13.4137604 + ], + [ + 52.5719612, + 13.4135949 + ], + [ + 52.5718675, + 13.4132568 + ], + [ + 52.5717524, + 13.4128266 + ], + [ + 52.5714719, + 13.4117882 + ], + [ + 52.5714565, + 13.4117283 + ], + [ + 52.5711633, + 13.4106484 + ], + [ + 52.571112, + 13.4104536 + ] + ] + }, + { + "osmId": "30887107", + "name": null, + "lengthMeters": 811.1900702075966, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6480138, + 13.2848733 + ], + [ + 52.648361, + 13.2849172 + ], + [ + 52.6488316, + 13.2849785 + ], + [ + 52.6509608, + 13.2853515 + ], + [ + 52.6514756, + 13.2854145 + ], + [ + 52.6533187, + 13.2855965 + ], + [ + 52.6552856, + 13.2858087 + ] + ] + }, + { + "osmId": "30908782", + "name": "Verbindungsbahn", + "lengthMeters": 144.40136882272972, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5623713, + 9.9460963 + ], + [ + 53.5623308, + 9.9463545 + ], + [ + 53.5622874, + 9.9466161 + ], + [ + 53.5622199, + 9.9469636 + ], + [ + 53.562192, + 9.9471088 + ], + [ + 53.5621471, + 9.9473058 + ], + [ + 53.5619545, + 9.9481652 + ] + ] + }, + { + "osmId": "30908783", + "name": "Verbindungsbahn", + "lengthMeters": 153.80821254904146, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5625115, + 9.9460429 + ], + [ + 53.5624703, + 9.9463401 + ], + [ + 53.5623987, + 9.9467834 + ], + [ + 53.5622747, + 9.947377 + ], + [ + 53.5621944, + 9.9477052 + ], + [ + 53.5620755, + 9.9481291 + ], + [ + 53.5620506, + 9.9482322 + ] + ] + }, + { + "osmId": "30929598", + "name": null, + "lengthMeters": 362.82156244687064, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4578284, + 9.9919874 + ], + [ + 53.4582574, + 9.9919813 + ], + [ + 53.4589931, + 9.9920343 + ], + [ + 53.459675, + 9.992192 + ], + [ + 53.4603324, + 9.9924641 + ], + [ + 53.4610379, + 9.9927928 + ] + ] + }, + { + "osmId": "30929599", + "name": null, + "lengthMeters": 1401.1836580228137, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4423484, + 10.0096306 + ], + [ + 53.4429984, + 10.0088211 + ], + [ + 53.4431412, + 10.0086422 + ], + [ + 53.4441106, + 10.007285 + ], + [ + 53.4450149, + 10.0059444 + ], + [ + 53.4464104, + 10.0038129 + ], + [ + 53.4468728, + 10.0031182 + ], + [ + 53.4472455, + 10.0026103 + ], + [ + 53.4479658, + 10.0015822 + ], + [ + 53.4489746, + 10.0000729 + ], + [ + 53.4495681, + 9.9991917 + ], + [ + 53.4498876, + 9.9987174 + ], + [ + 53.4513979, + 9.9963863 + ], + [ + 53.4518119, + 9.9958095 + ], + [ + 53.4518525, + 9.9957509 + ] + ] + }, + { + "osmId": "30929600", + "name": null, + "lengthMeters": 531.9716537292634, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4526768, + 9.9946181 + ], + [ + 53.4531987, + 9.9940647 + ], + [ + 53.4533379, + 9.9939366 + ], + [ + 53.4537569, + 9.9935511 + ], + [ + 53.4541935, + 9.9932407 + ], + [ + 53.45452, + 9.9930399 + ], + [ + 53.4546449, + 9.9929769 + ], + [ + 53.4549102, + 9.9928432 + ], + [ + 53.4555098, + 9.9926103 + ], + [ + 53.4557694, + 9.9925095 + ], + [ + 53.4557999, + 9.9925018 + ], + [ + 53.4561589, + 9.9923797 + ], + [ + 53.4562982, + 9.9923373 + ], + [ + 53.4566886, + 9.9922178 + ], + [ + 53.4571662, + 9.9920883 + ] + ] + }, + { + "osmId": "30929601", + "name": null, + "lengthMeters": 523.9695069442708, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4571737, + 9.9920169 + ], + [ + 53.4568381, + 9.9921067 + ], + [ + 53.4567243, + 9.9921373 + ], + [ + 53.4565578, + 9.9921803 + ], + [ + 53.4563232, + 9.9922595 + ], + [ + 53.4558504, + 9.9924167 + ], + [ + 53.4557864, + 9.992438 + ], + [ + 53.4554128, + 9.9925625 + ], + [ + 53.4549953, + 9.9927374 + ], + [ + 53.454632, + 9.9929113 + ], + [ + 53.4545972, + 9.9929279 + ], + [ + 53.454282, + 9.9931163 + ], + [ + 53.453836, + 9.99342 + ], + [ + 53.4537101, + 9.9935293 + ], + [ + 53.4533164, + 9.993871 + ], + [ + 53.4532664, + 9.9939144 + ], + [ + 53.4527422, + 9.9944703 + ] + ] + }, + { + "osmId": "30929602", + "name": null, + "lengthMeters": 1056.117464395286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4495319, + 9.9991573 + ], + [ + 53.4489517, + 10.0000254 + ], + [ + 53.4479422, + 10.001526 + ], + [ + 53.4472236, + 10.0025687 + ], + [ + 53.4468585, + 10.0030641 + ], + [ + 53.4463983, + 10.0037535 + ], + [ + 53.446025, + 10.0043238 + ], + [ + 53.444994, + 10.0058988 + ], + [ + 53.4440983, + 10.0072267 + ], + [ + 53.4437026, + 10.0077726 + ], + [ + 53.4431219, + 10.0085926 + ], + [ + 53.4429764, + 10.0087745 + ], + [ + 53.4424357, + 10.0094402 + ], + [ + 53.4423403, + 10.0095633 + ] + ] + }, + { + "osmId": "30929603", + "name": null, + "lengthMeters": 363.42317162780836, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4610455, + 9.9927202 + ], + [ + 53.4603534, + 9.9924056 + ], + [ + 53.4596825, + 9.9921304 + ], + [ + 53.4589983, + 9.991965 + ], + [ + 53.4582663, + 9.9918976 + ], + [ + 53.4578301, + 9.9919185 + ] + ] + }, + { + "osmId": "30929604", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 719.788055970989, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4469574, + 10.0026821 + ], + [ + 53.4474652, + 10.0019373 + ], + [ + 53.4475152, + 10.0018645 + ], + [ + 53.4478649, + 10.0013556 + ], + [ + 53.4483503, + 10.0006238 + ], + [ + 53.4488345, + 9.9999055 + ], + [ + 53.4492319, + 9.999316 + ], + [ + 53.4494685, + 9.9989659 + ], + [ + 53.4495753, + 9.9988078 + ], + [ + 53.4505298, + 9.9973888 + ], + [ + 53.4507983, + 9.9969897 + ], + [ + 53.4509351, + 9.9967863 + ], + [ + 53.4518171, + 9.9955019 + ] + ] + }, + { + "osmId": "30929605", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 433.3062498080336, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4518011, + 9.99539 + ], + [ + 53.4512626, + 9.9961612 + ], + [ + 53.4508683, + 9.9967569 + ], + [ + 53.4499138, + 9.9981701 + ], + [ + 53.4491182, + 9.9993479 + ], + [ + 53.448874, + 9.9997093 + ] + ] + }, + { + "osmId": "30929607", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 136.58542101465653, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4595444, + 9.9918936 + ], + [ + 53.4599535, + 9.9920371 + ], + [ + 53.4607392, + 9.9923707 + ] + ] + }, + { + "osmId": "30929608", + "name": null, + "lengthMeters": 144.5284826245743, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4591154, + 9.9914237 + ], + [ + 53.4589302, + 9.9913532 + ], + [ + 53.4587388, + 9.9913028 + ], + [ + 53.4582833, + 9.9911827 + ], + [ + 53.4578289, + 9.9911415 + ] + ] + }, + { + "osmId": "30929611", + "name": null, + "lengthMeters": 447.97598418502287, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4575435, + 9.9911157 + ], + [ + 53.457337, + 9.9911171 + ], + [ + 53.4570821, + 9.9911304 + ], + [ + 53.4569637, + 9.9911397 + ], + [ + 53.4566729, + 9.9911901 + ], + [ + 53.4563975, + 9.9912645 + ], + [ + 53.456104, + 9.9913476 + ], + [ + 53.4557851, + 9.9914617 + ], + [ + 53.4556741, + 9.9915022 + ], + [ + 53.4553023, + 9.9916846 + ], + [ + 53.4551034, + 9.9917937 + ], + [ + 53.4548421, + 9.9919603 + ], + [ + 53.4545606, + 9.9921599 + ], + [ + 53.4542541, + 9.9924105 + ], + [ + 53.4539146, + 9.9927134 + ], + [ + 53.453717, + 9.9929212 + ] + ] + }, + { + "osmId": "30929612", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 464.43217215665175, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4576014, + 9.9915775 + ], + [ + 53.4573746, + 9.9916041 + ], + [ + 53.4572074, + 9.9916276 + ], + [ + 53.4570197, + 9.9916674 + ], + [ + 53.4567276, + 9.9917446 + ], + [ + 53.4564053, + 9.9918507 + ], + [ + 53.4562199, + 9.9919127 + ], + [ + 53.4557592, + 9.9920551 + ], + [ + 53.4557149, + 9.9920701 + ], + [ + 53.455275, + 9.9922238 + ], + [ + 53.4552133, + 9.992247 + ], + [ + 53.4550542, + 9.9923067 + ], + [ + 53.4548279, + 9.9924076 + ], + [ + 53.4546151, + 9.9925166 + ], + [ + 53.4544523, + 9.9926125 + ], + [ + 53.4541295, + 9.9928206 + ], + [ + 53.4538814, + 9.9930175 + ], + [ + 53.4536032, + 9.9932583 + ], + [ + 53.453578, + 9.9932778 + ] + ] + }, + { + "osmId": "30929613", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 482.4346567724011, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4534423, + 9.9934898 + ], + [ + 53.4536245, + 9.9933258 + ], + [ + 53.4539222, + 9.9930682 + ], + [ + 53.4541407, + 9.9928952 + ], + [ + 53.454462, + 9.9926823 + ], + [ + 53.4546364, + 9.9925829 + ], + [ + 53.4546507, + 9.9925764 + ], + [ + 53.4548518, + 9.9924705 + ], + [ + 53.455063, + 9.9923724 + ], + [ + 53.4552038, + 9.9923175 + ], + [ + 53.4552758, + 9.9922894 + ], + [ + 53.4557216, + 9.9921337 + ], + [ + 53.4561532, + 9.9919954 + ], + [ + 53.4564113, + 9.9919107 + ], + [ + 53.4567365, + 9.9918045 + ], + [ + 53.4570149, + 9.9917311 + ], + [ + 53.4572069, + 9.9916865 + ], + [ + 53.4576032, + 9.9916233 + ] + ] + }, + { + "osmId": "30929614", + "name": null, + "lengthMeters": 292.6282091396385, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.457811, + 9.9905842 + ], + [ + 53.4580281, + 9.9905906 + ], + [ + 53.45848, + 9.9906994 + ], + [ + 53.4587439, + 9.9908011 + ], + [ + 53.4590018, + 9.9909364 + ], + [ + 53.4595461, + 9.9913137 + ], + [ + 53.4600602, + 9.9916846 + ], + [ + 53.4601559, + 9.9917537 + ], + [ + 53.4603119, + 9.9918416 + ] + ] + }, + { + "osmId": "30929616", + "name": "Niederelbebahn", + "lengthMeters": 757.0152747430715, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4645863, + 9.9794509 + ], + [ + 53.4645628, + 9.9795019 + ], + [ + 53.464455, + 9.9797686 + ], + [ + 53.464282, + 9.9803298 + ], + [ + 53.46384, + 9.9819024 + ], + [ + 53.4633694, + 9.9835528 + ], + [ + 53.4633003, + 9.9837669 + ], + [ + 53.4632274, + 9.983993 + ], + [ + 53.463002, + 9.9845567 + ], + [ + 53.4627248, + 9.9850821 + ], + [ + 53.4624597, + 9.9854945 + ], + [ + 53.4624448, + 9.9855119 + ], + [ + 53.4621688, + 9.9858344 + ], + [ + 53.4618546, + 9.9861168 + ], + [ + 53.4615478, + 9.9863291 + ], + [ + 53.4615195, + 9.9863487 + ], + [ + 53.4611627, + 9.9864954 + ], + [ + 53.4604317, + 9.9866102 + ], + [ + 53.460083, + 9.9866939 + ], + [ + 53.4600177, + 9.9867271 + ] + ] + }, + { + "osmId": "31028601", + "name": null, + "lengthMeters": 186.40047847014688, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006973, + 13.2829475 + ], + [ + 52.5002232, + 13.2814364 + ], + [ + 52.4999491, + 13.28057 + ], + [ + 52.4999274, + 13.2805014 + ] + ] + }, + { + "osmId": "31028606", + "name": null, + "lengthMeters": 187.3083823369298, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5004443, + 13.2830502 + ], + [ + 52.5004505, + 13.2830701 + ], + [ + 52.5004686, + 13.2831282 + ], + [ + 52.5004874, + 13.2831893 + ], + [ + 52.5005001, + 13.2832288 + ], + [ + 52.5009133, + 13.2845538 + ], + [ + 52.5010143, + 13.2848777 + ], + [ + 52.5010351, + 13.2849439 + ], + [ + 52.5010849, + 13.2851028 + ], + [ + 52.5011213, + 13.2852188 + ], + [ + 52.5011237, + 13.2852265 + ], + [ + 52.5011707, + 13.2853787 + ], + [ + 52.5012106, + 13.2855144 + ] + ] + }, + { + "osmId": "31049656", + "name": null, + "lengthMeters": 207.11889927485802, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4900888, + 13.2641305 + ], + [ + 52.489829, + 13.2637758 + ], + [ + 52.4895925, + 13.2634085 + ], + [ + 52.4893047, + 13.2629225 + ], + [ + 52.488967, + 13.2623037 + ], + [ + 52.4887826, + 13.2619565 + ] + ] + }, + { + "osmId": "31049756", + "name": null, + "lengthMeters": 141.97264069863246, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4219707, + 13.1807951 + ], + [ + 52.4218606, + 13.1806033 + ], + [ + 52.4217517, + 13.180407 + ], + [ + 52.4216376, + 13.1801977 + ], + [ + 52.4215477, + 13.1800298 + ], + [ + 52.4211255, + 13.1792262 + ] + ] + }, + { + "osmId": "31091161", + "name": null, + "lengthMeters": 252.81003332153318, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4594057, + 13.5763913 + ], + [ + 52.4596033, + 13.5756053 + ], + [ + 52.459808, + 13.5748318 + ], + [ + 52.4600801, + 13.573905 + ], + [ + 52.4602606, + 13.5733503 + ], + [ + 52.4603743, + 13.5730191 + ] + ] + }, + { + "osmId": "31091163", + "name": null, + "lengthMeters": 137.04053054785732, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4590707, + 13.5773793 + ], + [ + 52.4590668, + 13.5773987 + ], + [ + 52.4590242, + 13.5776072 + ], + [ + 52.458981, + 13.577829 + ], + [ + 52.4589635, + 13.577928 + ], + [ + 52.4588494, + 13.5785221 + ], + [ + 52.4587511, + 13.5791836 + ], + [ + 52.4587491, + 13.5791976 + ], + [ + 52.4587311, + 13.5793223 + ] + ] + }, + { + "osmId": "31091166", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 248.33474279787745, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4592746, + 13.576305 + ], + [ + 52.45958, + 13.5751459 + ], + [ + 52.459729, + 13.5746368 + ], + [ + 52.4600213, + 13.5737259 + ], + [ + 52.4601257, + 13.5734091 + ], + [ + 52.4601928, + 13.573213 + ], + [ + 52.4602594, + 13.5730185 + ] + ] + }, + { + "osmId": "31091171", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 199.7196393815549, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4591925, + 13.5764561 + ], + [ + 52.458964, + 13.5775551 + ], + [ + 52.458929, + 13.5777328 + ], + [ + 52.4587965, + 13.5784055 + ], + [ + 52.4586682, + 13.5792255 + ], + [ + 52.4586612, + 13.5792702 + ] + ] + }, + { + "osmId": "31094906", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 671.0084412873247, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4645945, + 13.4937926 + ], + [ + 52.464432, + 13.4940891 + ], + [ + 52.4636198, + 13.4956389 + ], + [ + 52.4633175, + 13.4961867 + ], + [ + 52.463165, + 13.4964591 + ], + [ + 52.4630104, + 13.496719 + ], + [ + 52.4628059, + 13.4970602 + ], + [ + 52.4625959, + 13.4973992 + ], + [ + 52.4623055, + 13.4978526 + ], + [ + 52.462011, + 13.4982993 + ], + [ + 52.4603664, + 13.500846 + ] + ] + }, + { + "osmId": "31094941", + "name": null, + "lengthMeters": 225.55412296368144, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.411423, + 13.57516 + ], + [ + 52.4119296, + 13.5745023 + ], + [ + 52.4119729, + 13.5744444 + ], + [ + 52.4123487, + 13.5739425 + ], + [ + 52.4130032, + 13.573075 + ] + ] + }, + { + "osmId": "31129247", + "name": null, + "lengthMeters": 336.89174511990285, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1386693, + 11.4024993 + ], + [ + 48.1387567, + 11.4027883 + ], + [ + 48.1388583, + 11.4031352 + ], + [ + 48.1389568, + 11.4035062 + ], + [ + 48.1390673, + 11.4039651 + ], + [ + 48.1391352, + 11.4042792 + ], + [ + 48.1392352, + 11.4047839 + ], + [ + 48.1393163, + 11.4052889 + ], + [ + 48.139374, + 11.4056782 + ], + [ + 48.139534, + 11.4068247 + ], + [ + 48.1395354, + 11.4068352 + ] + ] + }, + { + "osmId": "31129249", + "name": null, + "lengthMeters": 251.66350358182302, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1397571, + 11.4084111 + ], + [ + 48.1398181, + 11.4088453 + ], + [ + 48.139989, + 11.410071 + ], + [ + 48.1402229, + 11.4117301 + ] + ] + }, + { + "osmId": "31133451", + "name": "Stettiner Bahn", + "lengthMeters": 270.7284468675334, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5531926, + 13.3989607 + ], + [ + 52.5532783, + 13.3989399 + ], + [ + 52.5533564, + 13.3989199 + ], + [ + 52.5540501, + 13.3987497 + ], + [ + 52.5545338, + 13.3986276 + ], + [ + 52.5551522, + 13.3984636 + ], + [ + 52.555599, + 13.398352 + ] + ] + }, + { + "osmId": "31133725", + "name": "Stettiner Bahn", + "lengthMeters": 81.80774029674568, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5524652, + 13.3991421 + ], + [ + 52.5531926, + 13.3989607 + ] + ] + }, + { + "osmId": "31159182", + "name": "Ostbahn", + "lengthMeters": 824.5499546497726, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5130674, + 13.5540251 + ], + [ + 52.5131053, + 13.5535398 + ], + [ + 52.513132, + 13.5532584 + ], + [ + 52.5132462, + 13.5521968 + ], + [ + 52.5133701, + 13.5513054 + ], + [ + 52.5135137, + 13.5504762 + ], + [ + 52.5136652, + 13.5496753 + ], + [ + 52.513847, + 13.5488487 + ], + [ + 52.5139432, + 13.5484536 + ], + [ + 52.5140435, + 13.5480613 + ], + [ + 52.5145559, + 13.546126 + ], + [ + 52.514782, + 13.5452672 + ], + [ + 52.5149199, + 13.544706 + ], + [ + 52.514981, + 13.5444298 + ], + [ + 52.515043, + 13.5441321 + ], + [ + 52.5150972, + 13.5438395 + ], + [ + 52.5151456, + 13.5435365 + ], + [ + 52.5151728, + 13.543343 + ], + [ + 52.5152095, + 13.5430644 + ], + [ + 52.5152802, + 13.5424504 + ] + ] + }, + { + "osmId": "31159184", + "name": "Ostbahn", + "lengthMeters": 1970.6740468598773, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5130674, + 13.5540251 + ], + [ + 52.5130594, + 13.5541358 + ], + [ + 52.5130367, + 13.5544883 + ], + [ + 52.5129971, + 13.555101 + ], + [ + 52.5129628, + 13.5559514 + ], + [ + 52.5129411, + 13.5567611 + ], + [ + 52.5129199, + 13.5574885 + ], + [ + 52.512898, + 13.5600073 + ], + [ + 52.5128138, + 13.5627331 + ], + [ + 52.5126586, + 13.5676507 + ], + [ + 52.5126366, + 13.5682181 + ], + [ + 52.5125821, + 13.5691224 + ], + [ + 52.5125189, + 13.570025 + ], + [ + 52.5124596, + 13.5709088 + ], + [ + 52.5124156, + 13.5716946 + ], + [ + 52.5124062, + 13.5722682 + ], + [ + 52.512398, + 13.5727501 + ], + [ + 52.5123956, + 13.5732369 + ], + [ + 52.5123952, + 13.5742173 + ], + [ + 52.51239, + 13.5761606 + ], + [ + 52.512384, + 13.5765333 + ], + [ + 52.5123775, + 13.5769637 + ], + [ + 52.5122998, + 13.5795697 + ], + [ + 52.512189, + 13.5830974 + ] + ] + }, + { + "osmId": "31159186", + "name": null, + "lengthMeters": 496.2760074085164, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5152802, + 13.5424504 + ], + [ + 52.5152024, + 13.5430547 + ], + [ + 52.5151671, + 13.543288 + ], + [ + 52.515126, + 13.5435199 + ], + [ + 52.5150052, + 13.5441122 + ], + [ + 52.5148808, + 13.5446598 + ], + [ + 52.5146066, + 13.5457037 + ], + [ + 52.5143839, + 13.5465519 + ], + [ + 52.5142443, + 13.5470549 + ], + [ + 52.5141221, + 13.5474529 + ], + [ + 52.5139749, + 13.5478874 + ], + [ + 52.5138059, + 13.548316 + ], + [ + 52.5137422, + 13.5484637 + ], + [ + 52.5136, + 13.5487641 + ], + [ + 52.5134394, + 13.5490595 + ] + ] + }, + { + "osmId": "31159204", + "name": null, + "lengthMeters": 381.5661718462468, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080556, + 13.4925804 + ], + [ + 52.5084399, + 13.4932987 + ], + [ + 52.5085767, + 13.4935512 + ], + [ + 52.5086238, + 13.4936409 + ], + [ + 52.5095325, + 13.4953305 + ], + [ + 52.50961, + 13.4954733 + ], + [ + 52.509977, + 13.496149 + ], + [ + 52.5103309, + 13.4968008 + ] + ] + }, + { + "osmId": "31302831", + "name": null, + "lengthMeters": 1265.8959499887767, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5385006, + 13.5308546 + ], + [ + 52.5378622, + 13.5314629 + ], + [ + 52.53746, + 13.5318414 + ], + [ + 52.5373842, + 13.5319069 + ], + [ + 52.5373073, + 13.5319692 + ], + [ + 52.5372202, + 13.5320352 + ], + [ + 52.5371197, + 13.5321092 + ], + [ + 52.5370159, + 13.5321808 + ], + [ + 52.5369108, + 13.5322453 + ], + [ + 52.536798, + 13.5323133 + ], + [ + 52.536692, + 13.5323723 + ], + [ + 52.5365856, + 13.5324242 + ], + [ + 52.5364574, + 13.5324839 + ], + [ + 52.5363202, + 13.5325401 + ], + [ + 52.536208, + 13.5325866 + ], + [ + 52.5361972, + 13.5325907 + ], + [ + 52.5357459, + 13.5327636 + ], + [ + 52.5307192, + 13.5346895 + ], + [ + 52.5300845, + 13.5349288 + ], + [ + 52.5299969, + 13.5349618 + ], + [ + 52.529893, + 13.535001 + ], + [ + 52.5290281, + 13.535327 + ], + [ + 52.5285495, + 13.5355085 + ], + [ + 52.5284839, + 13.5355358 + ], + [ + 52.5284104, + 13.5355664 + ], + [ + 52.5283257, + 13.5356041 + ], + [ + 52.5282712, + 13.5356283 + ], + [ + 52.5280826, + 13.5357203 + ], + [ + 52.5279268, + 13.5358021 + ], + [ + 52.5277643, + 13.535875 + ], + [ + 52.5276002, + 13.5359426 + ] + ] + }, + { + "osmId": "31302838", + "name": null, + "lengthMeters": 543.6074901702531, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5241349, + 13.5374517 + ], + [ + 52.5242847, + 13.5373873 + ], + [ + 52.5244312, + 13.5373336 + ], + [ + 52.5248037, + 13.5372095 + ], + [ + 52.5248098, + 13.5372074 + ], + [ + 52.5248291, + 13.537201 + ], + [ + 52.5250737, + 13.5371098 + ], + [ + 52.5283056, + 13.5359233 + ], + [ + 52.5288501, + 13.5357234 + ], + [ + 52.5289063, + 13.5357028 + ] + ] + }, + { + "osmId": "31512117", + "name": null, + "lengthMeters": 82.23321731179297, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1325583, + 11.612081 + ], + [ + 48.1324634, + 11.6119487 + ], + [ + 48.1323695, + 11.611823 + ], + [ + 48.1323263, + 11.6117694 + ], + [ + 48.1319981, + 11.611358 + ] + ] + }, + { + "osmId": "31611009", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 3091.3933033232074, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4721964, + 13.5535441 + ], + [ + 52.4730322, + 13.5534122 + ], + [ + 52.4732554, + 13.553377 + ], + [ + 52.4734134, + 13.5533521 + ], + [ + 52.4747843, + 13.5531396 + ], + [ + 52.4761615, + 13.5529412 + ], + [ + 52.4768993, + 13.5528183 + ], + [ + 52.4796202, + 13.5523653 + ], + [ + 52.4797026, + 13.5523509 + ], + [ + 52.481845, + 13.5519754 + ], + [ + 52.4827351, + 13.5518194 + ], + [ + 52.4834236, + 13.5517032 + ], + [ + 52.4840274, + 13.5516838 + ], + [ + 52.4845933, + 13.5517115 + ], + [ + 52.4853117, + 13.551751 + ], + [ + 52.4858173, + 13.5517633 + ], + [ + 52.486145, + 13.5517525 + ], + [ + 52.4862197, + 13.5517389 + ], + [ + 52.4864442, + 13.5516979 + ], + [ + 52.4867354, + 13.5516179 + ], + [ + 52.4870891, + 13.5515301 + ], + [ + 52.4893004, + 13.5507092 + ], + [ + 52.4896656, + 13.5505653 + ], + [ + 52.4899252, + 13.5504296 + ], + [ + 52.4900593, + 13.550341 + ], + [ + 52.4901381, + 13.5502889 + ], + [ + 52.4901684, + 13.5502689 + ], + [ + 52.4904559, + 13.5500541 + ], + [ + 52.4953574, + 13.5458787 + ], + [ + 52.4960166, + 13.5453204 + ], + [ + 52.4960322, + 13.5453072 + ], + [ + 52.4961333, + 13.5452222 + ], + [ + 52.4964931, + 13.5449196 + ], + [ + 52.4975891, + 13.5440663 + ], + [ + 52.4977382, + 13.5439685 + ], + [ + 52.4977472, + 13.5439626 + ], + [ + 52.4980008, + 13.5437963 + ], + [ + 52.4988311, + 13.5432512 + ] + ] + }, + { + "osmId": "31692683", + "name": null, + "lengthMeters": 191.87187106274845, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4620578, + 13.5685224 + ], + [ + 52.4620323, + 13.568575 + ], + [ + 52.4619912, + 13.5686599 + ], + [ + 52.4618703, + 13.5689123 + ], + [ + 52.4618395, + 13.5689766 + ], + [ + 52.4617273, + 13.5692127 + ], + [ + 52.4615811, + 13.5695218 + ], + [ + 52.4614519, + 13.569801 + ], + [ + 52.4613178, + 13.5701015 + ], + [ + 52.461188, + 13.5704028 + ], + [ + 52.4610264, + 13.5707917 + ] + ] + }, + { + "osmId": "31768537", + "name": null, + "lengthMeters": 1008.6313656291135, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5858317, + 9.7396224 + ], + [ + 53.5858256, + 9.7399634 + ], + [ + 53.585798, + 9.7406338 + ], + [ + 53.5857303, + 9.7423195 + ], + [ + 53.585629, + 9.7444301 + ], + [ + 53.5855421, + 9.7462338 + ], + [ + 53.5854945, + 9.7467806 + ], + [ + 53.5854423, + 9.7472382 + ], + [ + 53.5854118, + 9.7474586 + ], + [ + 53.5853993, + 9.747549 + ], + [ + 53.5853124, + 9.7480443 + ], + [ + 53.5851673, + 9.7486526 + ], + [ + 53.5849986, + 9.7492193 + ], + [ + 53.5848365, + 9.7496754 + ], + [ + 53.5845671, + 9.750369 + ], + [ + 53.5841692, + 9.7513991 + ], + [ + 53.5839553, + 9.7519981 + ], + [ + 53.5838099, + 9.7524127 + ], + [ + 53.5836867, + 9.7528729 + ], + [ + 53.5835751, + 9.7533809 + ], + [ + 53.5834441, + 9.7540349 + ] + ] + }, + { + "osmId": "31912616", + "name": null, + "lengthMeters": 226.56244691302393, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120778, + 13.4272874 + ], + [ + 52.5120681, + 13.4276044 + ], + [ + 52.5120623, + 13.4277977 + ], + [ + 52.5120615, + 13.4278228 + ], + [ + 52.5120451, + 13.4280734 + ], + [ + 52.5120286, + 13.4283422 + ], + [ + 52.5120001, + 13.4285989 + ], + [ + 52.5119772, + 13.428806 + ], + [ + 52.511889, + 13.4295119 + ], + [ + 52.5118752, + 13.4296185 + ], + [ + 52.5118045, + 13.4301658 + ], + [ + 52.5117507, + 13.4305857 + ] + ] + }, + { + "osmId": "31964395", + "name": null, + "lengthMeters": 505.52752261564683, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4709341, + 13.4520695 + ], + [ + 52.4708846, + 13.4518192 + ], + [ + 52.4708376, + 13.4515643 + ], + [ + 52.4707254, + 13.4509109 + ], + [ + 52.4705454, + 13.4497675 + ], + [ + 52.4703672, + 13.4486601 + ], + [ + 52.4701861, + 13.4475417 + ], + [ + 52.470084, + 13.4469019 + ], + [ + 52.4699588, + 13.4461391 + ], + [ + 52.4697588, + 13.4448608 + ] + ] + }, + { + "osmId": "32013757", + "name": "U3", + "lengthMeters": 108.84367813202869, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4506648, + 13.280727 + ], + [ + 52.4505018, + 13.2803485 + ], + [ + 52.4504497, + 13.2802219 + ], + [ + 52.450354, + 13.2799753 + ], + [ + 52.4502652, + 13.2797056 + ], + [ + 52.4501608, + 13.2793541 + ] + ] + }, + { + "osmId": "32021645", + "name": null, + "lengthMeters": 144.6522743744414, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7164805, + 9.991712 + ], + [ + 53.7157992, + 9.9917485 + ], + [ + 53.715589, + 9.9917669 + ], + [ + 53.7154629, + 9.9917946 + ], + [ + 53.7153714, + 9.9918186 + ], + [ + 53.715183, + 9.9918442 + ] + ] + }, + { + "osmId": "32056904", + "name": null, + "lengthMeters": 335.3181954115712, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637396, + 9.9710716 + ], + [ + 53.5637827, + 9.9722119 + ], + [ + 53.5638187, + 9.973237 + ], + [ + 53.5638544, + 9.9747388 + ], + [ + 53.5638566, + 9.9750718 + ], + [ + 53.5638629, + 9.9761436 + ] + ] + }, + { + "osmId": "32129468", + "name": null, + "lengthMeters": 488.65267748687006, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5598603, + 9.930462 + ], + [ + 53.559916, + 9.9306284 + ], + [ + 53.5599645, + 9.9307627 + ], + [ + 53.5600156, + 9.9308923 + ], + [ + 53.5600723, + 9.9310192 + ], + [ + 53.5601373, + 9.9311569 + ], + [ + 53.5602048, + 9.9312853 + ], + [ + 53.560301, + 9.9314359 + ], + [ + 53.5603987, + 9.9315784 + ], + [ + 53.560511, + 9.9317109 + ], + [ + 53.5606036, + 9.9318053 + ], + [ + 53.5607106, + 9.9319037 + ], + [ + 53.5607943, + 9.9319734 + ], + [ + 53.5612023, + 9.9322873 + ], + [ + 53.5613883, + 9.9324385 + ], + [ + 53.5615978, + 9.9326237 + ], + [ + 53.5618116, + 9.9328429 + ], + [ + 53.5618642, + 9.9329024 + ], + [ + 53.5619774, + 9.9330307 + ], + [ + 53.5622033, + 9.9332744 + ], + [ + 53.5623104, + 9.9333779 + ], + [ + 53.5624881, + 9.9335342 + ], + [ + 53.5625779, + 9.9335997 + ], + [ + 53.5626425, + 9.9336428 + ], + [ + 53.5628026, + 9.933723 + ], + [ + 53.5629283, + 9.9337665 + ], + [ + 53.563062, + 9.9337918 + ], + [ + 53.5631575, + 9.9338007 + ], + [ + 53.5634118, + 9.9338058 + ], + [ + 53.5636035, + 9.9337878 + ] + ] + }, + { + "osmId": "32257187", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2999.359109004206, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.498815, + 13.5431886 + ], + [ + 52.4987423, + 13.543238 + ], + [ + 52.4977352, + 13.5438971 + ], + [ + 52.4977262, + 13.5439031 + ], + [ + 52.4975773, + 13.5440014 + ], + [ + 52.4964745, + 13.5448707 + ], + [ + 52.4961182, + 13.5451674 + ], + [ + 52.4960212, + 13.5452482 + ], + [ + 52.4960046, + 13.5452621 + ], + [ + 52.4953401, + 13.5458155 + ], + [ + 52.490431, + 13.5499823 + ], + [ + 52.4901446, + 13.5501988 + ], + [ + 52.4901257, + 13.5502118 + ], + [ + 52.4900422, + 13.5502694 + ], + [ + 52.4899045, + 13.5503644 + ], + [ + 52.4896578, + 13.5504985 + ], + [ + 52.4892943, + 13.5506407 + ], + [ + 52.4870756, + 13.5514309 + ], + [ + 52.4867297, + 13.5515535 + ], + [ + 52.4864432, + 13.5516211 + ], + [ + 52.4862185, + 13.5516575 + ], + [ + 52.486141, + 13.55167 + ], + [ + 52.485813, + 13.5517013 + ], + [ + 52.4853112, + 13.5516788 + ], + [ + 52.4845951, + 13.5516406 + ], + [ + 52.4840254, + 13.5516112 + ], + [ + 52.4834229, + 13.5516267 + ], + [ + 52.4827337, + 13.5517471 + ], + [ + 52.4818375, + 13.5519032 + ], + [ + 52.4796986, + 13.5522756 + ], + [ + 52.4796141, + 13.5522903 + ], + [ + 52.4768925, + 13.5527533 + ], + [ + 52.4761544, + 13.5528789 + ], + [ + 52.4747834, + 13.5530648 + ], + [ + 52.4734129, + 13.5532797 + ], + [ + 52.4732537, + 13.5533045 + ], + [ + 52.4730307, + 13.5533393 + ], + [ + 52.4730017, + 13.5533438 + ] + ] + }, + { + "osmId": "32354152", + "name": null, + "lengthMeters": 3190.6709975549434, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.370584, + 13.1103026 + ], + [ + 52.3706407, + 13.1103568 + ], + [ + 52.3711608, + 13.1108705 + ], + [ + 52.3719068, + 13.1116091 + ], + [ + 52.3719621, + 13.1116639 + ], + [ + 52.3732699, + 13.1129588 + ], + [ + 52.3734877, + 13.1131741 + ], + [ + 52.3738354, + 13.1135261 + ], + [ + 52.3744897, + 13.1141724 + ], + [ + 52.3750132, + 13.1146883 + ], + [ + 52.3750638, + 13.1147382 + ], + [ + 52.3765077, + 13.1161614 + ], + [ + 52.3780884, + 13.1177209 + ], + [ + 52.3786567, + 13.1182816 + ], + [ + 52.3795754, + 13.1191887 + ], + [ + 52.3796972, + 13.1193045 + ], + [ + 52.3798151, + 13.1194215 + ], + [ + 52.3802115, + 13.1198145 + ], + [ + 52.3815533, + 13.1211345 + ], + [ + 52.3819026, + 13.1214781 + ], + [ + 52.3825477, + 13.1221196 + ], + [ + 52.382816, + 13.122384 + ], + [ + 52.3829424, + 13.1225087 + ], + [ + 52.3830768, + 13.1226412 + ], + [ + 52.3831339, + 13.1226899 + ], + [ + 52.3832252, + 13.1227839 + ], + [ + 52.3841288, + 13.1236644 + ], + [ + 52.3845992, + 13.1241247 + ], + [ + 52.3855033, + 13.1250142 + ], + [ + 52.3861288, + 13.1256296 + ], + [ + 52.3863015, + 13.1257995 + ], + [ + 52.3876808, + 13.127158 + ], + [ + 52.3877637, + 13.1272405 + ], + [ + 52.389358, + 13.1288068 + ], + [ + 52.3907392, + 13.1301763 + ], + [ + 52.3911934, + 13.1306545 + ], + [ + 52.3914822, + 13.1309821 + ], + [ + 52.3915632, + 13.1310739 + ], + [ + 52.3918528, + 13.1314293 + ], + [ + 52.3922039, + 13.1318601 + ], + [ + 52.3926218, + 13.1324147 + ], + [ + 52.3930368, + 13.1329921 + ], + [ + 52.3934191, + 13.1335536 + ], + [ + 52.3934852, + 13.1336508 + ], + [ + 52.393913, + 13.1343211 + ], + [ + 52.3941064, + 13.1346367 + ], + [ + 52.3942911, + 13.1349496 + ], + [ + 52.3943791, + 13.1351004 + ], + [ + 52.3946437, + 13.1355756 + ], + [ + 52.3946741, + 13.13563 + ] + ] + }, + { + "osmId": "32489548", + "name": null, + "lengthMeters": 100.5233500060828, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5834866, + 10.0455613 + ], + [ + 53.5827507, + 10.0446768 + ] + ] + }, + { + "osmId": "32501044", + "name": null, + "lengthMeters": 1217.8995956280928, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3922334, + 13.1041071 + ], + [ + 52.3924657, + 13.1068195 + ], + [ + 52.3926542, + 13.1089798 + ], + [ + 52.3928269, + 13.1109897 + ], + [ + 52.3929334, + 13.1121952 + ], + [ + 52.3930587, + 13.1136502 + ], + [ + 52.3931937, + 13.1152103 + ], + [ + 52.393435, + 13.1179809 + ], + [ + 52.3936013, + 13.1199208 + ], + [ + 52.3936662, + 13.1206592 + ], + [ + 52.3936798, + 13.1208195 + ], + [ + 52.3937731, + 13.1218772 + ] + ] + }, + { + "osmId": "32501048", + "name": null, + "lengthMeters": 222.5959472108239, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.391914, + 13.1004448 + ], + [ + 52.3919431, + 13.1007603 + ], + [ + 52.3920372, + 13.1018466 + ], + [ + 52.3921892, + 13.1036047 + ], + [ + 52.3921974, + 13.1036921 + ] + ] + }, + { + "osmId": "32501050", + "name": null, + "lengthMeters": 234.3992935871271, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.391107, + 13.0911055 + ], + [ + 52.3912089, + 13.0922628 + ], + [ + 52.3913982, + 13.0945266 + ] + ] + }, + { + "osmId": "32501053", + "name": null, + "lengthMeters": 118.57482103180824, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3909236, + 13.0889928 + ], + [ + 52.3910736, + 13.0907228 + ] + ] + }, + { + "osmId": "32501056", + "name": null, + "lengthMeters": 354.74841786358377, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.391429, + 13.0948499 + ], + [ + 52.3914534, + 13.0951356 + ], + [ + 52.3916779, + 13.0976919 + ], + [ + 52.3917982, + 13.0991168 + ], + [ + 52.3918787, + 13.1000255 + ] + ] + }, + { + "osmId": "32501481", + "name": null, + "lengthMeters": 157.17153544985482, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3968106, + 13.1395468 + ], + [ + 52.3972896, + 13.1404134 + ], + [ + 52.3977787, + 13.1412341 + ] + ] + }, + { + "osmId": "32502284", + "name": null, + "lengthMeters": 516.4024634195018, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3906671, + 13.0810118 + ], + [ + 52.3906617, + 13.0811053 + ], + [ + 52.3905771, + 13.0826675 + ], + [ + 52.3905575, + 13.0835305 + ], + [ + 52.3905558, + 13.0840586 + ], + [ + 52.3905912, + 13.0849989 + ], + [ + 52.3906183, + 13.0853712 + ], + [ + 52.3906935, + 13.0863365 + ], + [ + 52.3907231, + 13.086669 + ], + [ + 52.3908831, + 13.0885204 + ], + [ + 52.3908877, + 13.0885798 + ] + ] + }, + { + "osmId": "32515015", + "name": "Berliner Stadtbahn", + "lengthMeters": 149.29220086324943, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5172404, + 13.3392168 + ], + [ + 52.5174438, + 13.3394467 + ], + [ + 52.5177264, + 13.3397501 + ], + [ + 52.5183486, + 13.3404621 + ] + ] + }, + { + "osmId": "32515017", + "name": "Berliner Stadtbahn", + "lengthMeters": 231.00244782591753, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5170867, + 13.3389859 + ], + [ + 52.5166563, + 13.3385092 + ], + [ + 52.5164885, + 13.3383223 + ], + [ + 52.5162105, + 13.3380081 + ], + [ + 52.5159551, + 13.3377272 + ], + [ + 52.5158287, + 13.3375884 + ], + [ + 52.5156961, + 13.3374479 + ], + [ + 52.5156033, + 13.3373592 + ], + [ + 52.5155251, + 13.3372892 + ], + [ + 52.5154535, + 13.3372299 + ], + [ + 52.5153406, + 13.3371433 + ] + ] + }, + { + "osmId": "32515019", + "name": "Berliner Stadtbahn", + "lengthMeters": 145.9467862660418, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5173104, + 13.3391639 + ], + [ + 52.5174994, + 13.3393829 + ], + [ + 52.5175819, + 13.3394709 + ], + [ + 52.5177692, + 13.3396707 + ], + [ + 52.5183967, + 13.3403742 + ] + ] + }, + { + "osmId": "32515021", + "name": "Berliner Stadtbahn", + "lengthMeters": 236.7664996619423, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.517156, + 13.3389353 + ], + [ + 52.5170896, + 13.3388601 + ], + [ + 52.5169603, + 13.3387157 + ], + [ + 52.5166907, + 13.3384144 + ], + [ + 52.5165677, + 13.3382762 + ], + [ + 52.5164911, + 13.3381936 + ], + [ + 52.5162774, + 13.337953 + ], + [ + 52.5161463, + 13.337807 + ], + [ + 52.5160808, + 13.3377335 + ], + [ + 52.5158907, + 13.3375239 + ], + [ + 52.5157421, + 13.3373578 + ], + [ + 52.5156067, + 13.3372109 + ], + [ + 52.5154963, + 13.3371022 + ], + [ + 52.5153842, + 13.3369962 + ] + ] + }, + { + "osmId": "32525114", + "name": null, + "lengthMeters": 180.12424228689576, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5057779, + 13.2821692 + ], + [ + 52.5052853, + 13.282095 + ], + [ + 52.5047971, + 13.2820795 + ], + [ + 52.5045735, + 13.2820819 + ], + [ + 52.5041603, + 13.2820992 + ] + ] + }, + { + "osmId": "32546757", + "name": null, + "lengthMeters": 518.2425635960996, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775603, + 13.3204994 + ], + [ + 52.4775208, + 13.3281512 + ] + ] + }, + { + "osmId": "32546932", + "name": null, + "lengthMeters": 198.3685278034145, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4779655, + 13.3430212 + ], + [ + 52.4779715, + 13.3436557 + ], + [ + 52.4779784, + 13.3454908 + ], + [ + 52.477979, + 13.345605 + ], + [ + 52.4779806, + 13.3459501 + ] + ] + }, + { + "osmId": "32546934", + "name": null, + "lengthMeters": 690.0290022851339, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775525, + 13.3328693 + ], + [ + 52.4775701, + 13.3331068 + ], + [ + 52.4775999, + 13.3335411 + ], + [ + 52.4777122, + 13.3350774 + ], + [ + 52.4778187, + 13.3366126 + ], + [ + 52.4778924, + 13.3376613 + ], + [ + 52.4779097, + 13.33789 + ], + [ + 52.4779375, + 13.3384179 + ], + [ + 52.4779463, + 13.3386886 + ], + [ + 52.4779523, + 13.3389814 + ], + [ + 52.4779539, + 13.3395441 + ], + [ + 52.4779654, + 13.3427979 + ], + [ + 52.4779655, + 13.3430212 + ] + ] + }, + { + "osmId": "32546936", + "name": null, + "lengthMeters": 253.3887456383081, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775201, + 13.3289094 + ], + [ + 52.4775009, + 13.3309657 + ], + [ + 52.4774987, + 13.3316598 + ], + [ + 52.4775024, + 13.3318701 + ], + [ + 52.4775068, + 13.3320691 + ], + [ + 52.4775363, + 13.3326483 + ] + ] + }, + { + "osmId": "32548087", + "name": null, + "lengthMeters": 188.53824931980552, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4747901, + 13.3655106 + ], + [ + 52.4744633, + 13.3657162 + ], + [ + 52.4741928, + 13.3658901 + ], + [ + 52.4740256, + 13.3660087 + ], + [ + 52.473886, + 13.3661155 + ], + [ + 52.4737406, + 13.3662323 + ], + [ + 52.4736324, + 13.366331 + ], + [ + 52.4735254, + 13.3664324 + ], + [ + 52.4733833, + 13.366573 + ], + [ + 52.4732628, + 13.3667019 + ] + ] + }, + { + "osmId": "32548091", + "name": null, + "lengthMeters": 193.47096724893973, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4732965, + 13.3667363 + ], + [ + 52.4733986, + 13.3666267 + ], + [ + 52.4735401, + 13.3664872 + ], + [ + 52.4736514, + 13.3663822 + ], + [ + 52.4737608, + 13.3662832 + ], + [ + 52.4739004, + 13.36617 + ], + [ + 52.4740418, + 13.3660628 + ], + [ + 52.4742071, + 13.3659452 + ], + [ + 52.4744748, + 13.3657707 + ], + [ + 52.4748677, + 13.3655272 + ] + ] + }, + { + "osmId": "32568079", + "name": null, + "lengthMeters": 120.35877195525822, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2045327, + 11.4563383 + ], + [ + 48.2044019, + 11.4547717 + ], + [ + 48.2043982, + 11.4547268 + ] + ] + }, + { + "osmId": "32572620", + "name": "Berliner Stadtbahn", + "lengthMeters": 284.98727998127345, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519677, + 13.413859 + ], + [ + 52.5196478, + 13.4139057 + ], + [ + 52.5193908, + 13.4142866 + ], + [ + 52.5193, + 13.4144075 + ], + [ + 52.5191062, + 13.414608 + ], + [ + 52.5190296, + 13.4146843 + ], + [ + 52.518936, + 13.4147649 + ], + [ + 52.5187743, + 13.4148886 + ], + [ + 52.51863, + 13.4149792 + ], + [ + 52.5184634, + 13.4150682 + ], + [ + 52.5182156, + 13.4151606 + ], + [ + 52.5179312, + 13.4152599 + ], + [ + 52.5177876, + 13.4153218 + ], + [ + 52.5174915, + 13.4154962 + ], + [ + 52.5174752, + 13.4155096 + ], + [ + 52.5173835, + 13.4155789 + ] + ] + }, + { + "osmId": "32572622", + "name": "Berliner Stadtbahn", + "lengthMeters": 103.16693709709631, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5200064, + 13.4134609 + ], + [ + 52.5203016, + 13.4130097 + ], + [ + 52.520689, + 13.4124282 + ] + ] + }, + { + "osmId": "32572624", + "name": "Berliner Stadtbahn", + "lengthMeters": 123.76609062599191, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.517213, + 13.4157314 + ], + [ + 52.5166346, + 13.4163519 + ], + [ + 52.5164497, + 13.4165162 + ], + [ + 52.5164029, + 13.41655 + ], + [ + 52.5163114, + 13.4166161 + ], + [ + 52.5162555, + 13.4166564 + ] + ] + }, + { + "osmId": "32572626", + "name": "Berliner Stadtbahn", + "lengthMeters": 286.2460168448937, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5173973, + 13.4156347 + ], + [ + 52.5174888, + 13.4155637 + ], + [ + 52.517643, + 13.4154608 + ], + [ + 52.5177889, + 13.4153844 + ], + [ + 52.5180348, + 13.4152796 + ], + [ + 52.5182711, + 13.4152019 + ], + [ + 52.5184831, + 13.4151137 + ], + [ + 52.5186455, + 13.415028 + ], + [ + 52.5188263, + 13.4149182 + ], + [ + 52.5191285, + 13.4146631 + ], + [ + 52.5192813, + 13.4144944 + ], + [ + 52.5194209, + 13.4143246 + ], + [ + 52.5196746, + 13.4139463 + ], + [ + 52.5197007, + 13.4139045 + ] + ] + }, + { + "osmId": "32572630", + "name": "Berliner Stadtbahn", + "lengthMeters": 123.90275102858696, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5162677, + 13.4167126 + ], + [ + 52.5164164, + 13.4166012 + ], + [ + 52.5164235, + 13.4165959 + ], + [ + 52.5164649, + 13.4165648 + ], + [ + 52.5166581, + 13.416394 + ], + [ + 52.5172264, + 13.4157859 + ] + ] + }, + { + "osmId": "32572632", + "name": "Berliner Stadtbahn", + "lengthMeters": 99.28637385085416, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5156116, + 13.4170177 + ], + [ + 52.515443, + 13.4171296 + ], + [ + 52.5152779, + 13.4172718 + ], + [ + 52.5151644, + 13.4173757 + ], + [ + 52.5150519, + 13.4174873 + ], + [ + 52.5149294, + 13.4176291 + ], + [ + 52.5148387, + 13.4177412 + ] + ] + }, + { + "osmId": "32572637", + "name": "Berliner Stadtbahn", + "lengthMeters": 89.04988541752272, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5149033, + 13.4177512 + ], + [ + 52.5149684, + 13.4176829 + ], + [ + 52.5150736, + 13.4175598 + ], + [ + 52.5151876, + 13.417433 + ], + [ + 52.5153014, + 13.4173253 + ], + [ + 52.515451, + 13.417202 + ], + [ + 52.5155956, + 13.4170969 + ] + ] + }, + { + "osmId": "32572639", + "name": "Berliner Stadtbahn", + "lengthMeters": 410.9083673803187, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.514637, + 13.4180657 + ], + [ + 52.5145813, + 13.4181651 + ], + [ + 52.5144687, + 13.418399 + ], + [ + 52.5144304, + 13.4184809 + ], + [ + 52.5143598, + 13.4186317 + ], + [ + 52.514173, + 13.4191496 + ], + [ + 52.5139454, + 13.4198802 + ], + [ + 52.5136411, + 13.4208981 + ], + [ + 52.5135472, + 13.4212005 + ], + [ + 52.5133554, + 13.4217692 + ], + [ + 52.5132535, + 13.4220529 + ], + [ + 52.5131521, + 13.4223307 + ], + [ + 52.5130195, + 13.4226669 + ], + [ + 52.5128392, + 13.4230666 + ], + [ + 52.5127456, + 13.4232602 + ] + ] + }, + { + "osmId": "32572641", + "name": "Berliner Stadtbahn", + "lengthMeters": 413.6283988166188, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127761, + 13.4232899 + ], + [ + 52.5128673, + 13.4231083 + ], + [ + 52.5130496, + 13.4227038 + ], + [ + 52.5131836, + 13.4223621 + ], + [ + 52.513285, + 13.4220839 + ], + [ + 52.5133876, + 13.4217993 + ], + [ + 52.5135795, + 13.4212375 + ], + [ + 52.5139766, + 13.4199071 + ], + [ + 52.5142074, + 13.4191812 + ], + [ + 52.5143895, + 13.4186785 + ], + [ + 52.5144964, + 13.4184377 + ], + [ + 52.5146147, + 13.4182123 + ], + [ + 52.5146918, + 13.4180757 + ] + ] + }, + { + "osmId": "32572643", + "name": "Berliner Stadtbahn", + "lengthMeters": 101.72136517129874, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126265, + 13.4235078 + ], + [ + 52.5126147, + 13.4235305 + ], + [ + 52.5123895, + 13.4240768 + ], + [ + 52.5122848, + 13.4244165 + ], + [ + 52.5122372, + 13.4245834 + ], + [ + 52.5122273, + 13.4246219 + ], + [ + 52.5121803, + 13.4248135 + ] + ] + }, + { + "osmId": "32572647", + "name": null, + "lengthMeters": 87.32411112254445, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120378, + 13.4259992 + ], + [ + 52.5119951, + 13.4267632 + ], + [ + 52.5119829, + 13.4270271 + ], + [ + 52.5119732, + 13.4272131 + ], + [ + 52.511969, + 13.4272846 + ] + ] + }, + { + "osmId": "32572698", + "name": "Berliner Stadtbahn", + "lengthMeters": 190.11296722021459, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5128373, + 13.423344 + ], + [ + 52.5128437, + 13.4233305 + ], + [ + 52.5129057, + 13.4231991 + ], + [ + 52.5130115, + 13.422975 + ], + [ + 52.5131481, + 13.4226609 + ], + [ + 52.5133895, + 13.4220203 + ], + [ + 52.5134435, + 13.4218717 + ], + [ + 52.5137598, + 13.4209827 + ] + ] + }, + { + "osmId": "32572700", + "name": "Berliner Stadtbahn", + "lengthMeters": 167.10219884492494, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126877, + 13.4235684 + ], + [ + 52.5125295, + 13.4239243 + ], + [ + 52.5124387, + 13.4241647 + ], + [ + 52.5123439, + 13.4244812 + ], + [ + 52.5122984, + 13.4246445 + ], + [ + 52.5122906, + 13.4246737 + ], + [ + 52.5122616, + 13.4247987 + ], + [ + 52.512181, + 13.4252422 + ], + [ + 52.5121373, + 13.4256262 + ], + [ + 52.5121253, + 13.4258193 + ] + ] + }, + { + "osmId": "32590373", + "name": null, + "lengthMeters": 99.5179326985618, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121253, + 13.4258193 + ], + [ + 52.5121137, + 13.4260076 + ], + [ + 52.5120988, + 13.4263532 + ], + [ + 52.5120913, + 13.4266219 + ], + [ + 52.5120778, + 13.4272874 + ] + ] + }, + { + "osmId": "32590375", + "name": null, + "lengthMeters": 104.29129764392094, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121701, + 13.42729 + ], + [ + 52.5121479, + 13.4265628 + ], + [ + 52.5121418, + 13.4262144 + ], + [ + 52.5121538, + 13.4258489 + ], + [ + 52.51216, + 13.425751 + ] + ] + }, + { + "osmId": "32590419", + "name": "Berliner Stadtbahn", + "lengthMeters": 213.6544773121162, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5146578, + 13.4182458 + ], + [ + 52.5145809, + 13.4183876 + ], + [ + 52.5144941, + 13.4185753 + ], + [ + 52.5144624, + 13.4186484 + ], + [ + 52.514434, + 13.4187172 + ], + [ + 52.5144297, + 13.4187288 + ], + [ + 52.5143201, + 13.4190243 + ], + [ + 52.5141926, + 13.4194062 + ], + [ + 52.5140767, + 13.4197527 + ], + [ + 52.5140479, + 13.4198417 + ], + [ + 52.5139817, + 13.4200545 + ], + [ + 52.5139144, + 13.4202735 + ], + [ + 52.513888, + 13.4203644 + ], + [ + 52.5137733, + 13.4207567 + ], + [ + 52.5137522, + 13.4208264 + ], + [ + 52.5137502, + 13.4208383 + ], + [ + 52.5137069, + 13.4209781 + ] + ] + }, + { + "osmId": "32590423", + "name": "Berliner Stadtbahn", + "lengthMeters": 77.80701496349931, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5155796, + 13.417179 + ], + [ + 52.5154561, + 13.4172698 + ], + [ + 52.5153374, + 13.4173772 + ], + [ + 52.5152055, + 13.4175045 + ], + [ + 52.5151315, + 13.417576 + ], + [ + 52.5149797, + 13.4177641 + ] + ] + }, + { + "osmId": "32590425", + "name": "Berliner Stadtbahn", + "lengthMeters": 124.35525631365658, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51629, + 13.4168157 + ], + [ + 52.516438, + 13.4167107 + ], + [ + 52.5164506, + 13.4167017 + ], + [ + 52.5164951, + 13.4166701 + ], + [ + 52.5166942, + 13.4164981 + ], + [ + 52.5172531, + 13.4158909 + ] + ] + }, + { + "osmId": "32590429", + "name": "Berliner Stadtbahn", + "lengthMeters": 288.74070365840146, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5174249, + 13.415746 + ], + [ + 52.5175185, + 13.4156708 + ], + [ + 52.5175247, + 13.4156667 + ], + [ + 52.517663, + 13.4155751 + ], + [ + 52.5178057, + 13.4154979 + ], + [ + 52.5179357, + 13.4154376 + ], + [ + 52.5180865, + 13.4153812 + ], + [ + 52.5182492, + 13.4153314 + ], + [ + 52.5184009, + 13.4152751 + ], + [ + 52.5185431, + 13.4152106 + ], + [ + 52.5185831, + 13.4151885 + ], + [ + 52.5187256, + 13.4151096 + ], + [ + 52.5188855, + 13.414999 + ], + [ + 52.5190302, + 13.4148826 + ], + [ + 52.5191703, + 13.4147585 + ], + [ + 52.5193233, + 13.4145899 + ], + [ + 52.5194567, + 13.4144296 + ], + [ + 52.5194689, + 13.4144137 + ], + [ + 52.5197169, + 13.4140395 + ], + [ + 52.5197458, + 13.4139936 + ] + ] + }, + { + "osmId": "32590431", + "name": "Berliner Stadtbahn", + "lengthMeters": 124.09937507203924, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5172405, + 13.4158433 + ], + [ + 52.5166777, + 13.4164502 + ], + [ + 52.5164416, + 13.4166542 + ], + [ + 52.51628, + 13.4167694 + ] + ] + }, + { + "osmId": "32590433", + "name": "Berliner Stadtbahn", + "lengthMeters": 103.45887841905682, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5200478, + 13.4135383 + ], + [ + 52.5200777, + 13.4134927 + ], + [ + 52.5201226, + 13.4134243 + ], + [ + 52.5201369, + 13.4134025 + ], + [ + 52.5204685, + 13.4129045 + ], + [ + 52.520562, + 13.4127691 + ], + [ + 52.5206501, + 13.4126495 + ], + [ + 52.5207458, + 13.4125283 + ] + ] + }, + { + "osmId": "32590435", + "name": "Berliner Stadtbahn", + "lengthMeters": 287.6698754494039, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197294, + 13.413961 + ], + [ + 52.5196923, + 13.4140142 + ], + [ + 52.5195841, + 13.4141726 + ], + [ + 52.5194416, + 13.4143813 + ], + [ + 52.5193046, + 13.4145485 + ], + [ + 52.5191546, + 13.4147116 + ], + [ + 52.5188744, + 13.4149571 + ], + [ + 52.5187049, + 13.4150651 + ], + [ + 52.5185349, + 13.4151631 + ], + [ + 52.5183905, + 13.4152253 + ], + [ + 52.5182421, + 13.4152773 + ], + [ + 52.5179431, + 13.4153778 + ], + [ + 52.5177915, + 13.4154502 + ], + [ + 52.5176491, + 13.4155278 + ], + [ + 52.5175233, + 13.4156115 + ], + [ + 52.5175146, + 13.4156173 + ], + [ + 52.5175107, + 13.4156199 + ], + [ + 52.5174127, + 13.415697 + ] + ] + }, + { + "osmId": "32590438", + "name": "Berliner Stadtbahn", + "lengthMeters": 103.34758649220647, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5207113, + 13.4124675 + ], + [ + 52.5206376, + 13.4125755 + ], + [ + 52.5200309, + 13.413508 + ] + ] + }, + { + "osmId": "32590440", + "name": "Berliner Stadtbahn", + "lengthMeters": 163.98016416765182, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209417, + 13.4120382 + ], + [ + 52.5210319, + 13.4119003 + ], + [ + 52.5214729, + 13.4112036 + ], + [ + 52.522008, + 13.410364 + ] + ] + }, + { + "osmId": "32590441", + "name": "Berliner Stadtbahn", + "lengthMeters": 103.05830737848898, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5206473, + 13.4123547 + ], + [ + 52.520284, + 13.412951 + ], + [ + 52.5199819, + 13.4134147 + ] + ] + }, + { + "osmId": "32590492", + "name": "Berliner Stadtbahn", + "lengthMeters": 117.64616664352012, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5227826, + 13.408705 + ], + [ + 52.5228253, + 13.4086013 + ], + [ + 52.5229342, + 13.4083285 + ], + [ + 52.5229892, + 13.4081797 + ], + [ + 52.5230178, + 13.4080977 + ], + [ + 52.5230469, + 13.4080056 + ], + [ + 52.5230894, + 13.4078651 + ], + [ + 52.5231039, + 13.4078145 + ], + [ + 52.5231147, + 13.4077771 + ], + [ + 52.5231372, + 13.4076897 + ], + [ + 52.5231834, + 13.4075003 + ], + [ + 52.5232228, + 13.4073145 + ], + [ + 52.5232504, + 13.4071558 + ] + ] + }, + { + "osmId": "32590501", + "name": "Berliner Stadtbahn", + "lengthMeters": 118.93712659265827, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.522843, + 13.4087683 + ], + [ + 52.5228871, + 13.4086603 + ], + [ + 52.5230009, + 13.4083792 + ], + [ + 52.5230588, + 13.408221 + ], + [ + 52.5231065, + 13.4080767 + ], + [ + 52.5231325, + 13.4079919 + ], + [ + 52.5231691, + 13.4078635 + ], + [ + 52.5232084, + 13.4077182 + ], + [ + 52.5232515, + 13.4075368 + ], + [ + 52.5232715, + 13.4074498 + ], + [ + 52.5232879, + 13.4073645 + ], + [ + 52.5233181, + 13.4072035 + ] + ] + }, + { + "osmId": "32590636", + "name": "Berliner Stadtbahn", + "lengthMeters": 211.17150365044284, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229728, + 13.4040018 + ], + [ + 52.5230734, + 13.404343 + ], + [ + 52.523113, + 13.4044807 + ], + [ + 52.5231427, + 13.4046065 + ], + [ + 52.5231644, + 13.4047002 + ], + [ + 52.5231843, + 13.4048009 + ], + [ + 52.5232222, + 13.4050083 + ], + [ + 52.5232406, + 13.4051375 + ], + [ + 52.5232596, + 13.4052886 + ], + [ + 52.523276, + 13.4054486 + ], + [ + 52.523287, + 13.4055962 + ], + [ + 52.5232944, + 13.4057424 + ], + [ + 52.5232982, + 13.4058151 + ], + [ + 52.5233, + 13.4059004 + ], + [ + 52.5233024, + 13.4060481 + ], + [ + 52.5233016, + 13.4062043 + ], + [ + 52.5232954, + 13.4063911 + ], + [ + 52.5232902, + 13.4065 + ], + [ + 52.523283, + 13.4066023 + ], + [ + 52.5232608, + 13.4068201 + ], + [ + 52.5232344, + 13.4070206 + ] + ] + }, + { + "osmId": "32590637", + "name": "Berliner Stadtbahn", + "lengthMeters": 213.90771743742513, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5228645, + 13.4035061 + ], + [ + 52.5227386, + 13.403062 + ], + [ + 52.5225823, + 13.4024118 + ], + [ + 52.5225041, + 13.402016 + ], + [ + 52.5224395, + 13.4016451 + ], + [ + 52.5224027, + 13.4013429 + ], + [ + 52.5223821, + 13.401092 + ], + [ + 52.522369, + 13.4008351 + ], + [ + 52.5223563, + 13.4004842 + ] + ] + }, + { + "osmId": "32590638", + "name": "Berliner Stadtbahn", + "lengthMeters": 217.59363538691764, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5230402, + 13.4039365 + ], + [ + 52.5231444, + 13.4042952 + ], + [ + 52.5231729, + 13.4043997 + ], + [ + 52.5232003, + 13.4045112 + ], + [ + 52.5232479, + 13.4047315 + ], + [ + 52.5232958, + 13.4049802 + ], + [ + 52.5233142, + 13.4051072 + ], + [ + 52.5233327, + 13.4052503 + ], + [ + 52.5233493, + 13.4054151 + ], + [ + 52.5233627, + 13.405583 + ], + [ + 52.523371, + 13.4057413 + ], + [ + 52.5233755, + 13.4058618 + ], + [ + 52.5233787, + 13.4059938 + ], + [ + 52.5233788, + 13.4060175 + ], + [ + 52.5233776, + 13.4061916 + ], + [ + 52.5233731, + 13.4063652 + ], + [ + 52.5233627, + 13.4065377 + ], + [ + 52.5233541, + 13.4066579 + ], + [ + 52.5233409, + 13.4068017 + ], + [ + 52.5233264, + 13.4069272 + ], + [ + 52.5233094, + 13.4070493 + ] + ] + }, + { + "osmId": "32590640", + "name": "Berliner Stadtbahn", + "lengthMeters": 216.40871702376688, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229778, + 13.4035108 + ], + [ + 52.5229735, + 13.4034991 + ], + [ + 52.5229299, + 13.4033042 + ], + [ + 52.5229133, + 13.403229 + ], + [ + 52.5228921, + 13.4031334 + ], + [ + 52.5228677, + 13.4030133 + ], + [ + 52.5228491, + 13.4029216 + ], + [ + 52.5227619, + 13.4024921 + ], + [ + 52.5226795, + 13.4020708 + ], + [ + 52.5226367, + 13.4018487 + ], + [ + 52.5225816, + 13.4015392 + ], + [ + 52.522564, + 13.4014407 + ], + [ + 52.5225444, + 13.4013207 + ], + [ + 52.5224755, + 13.4008994 + ], + [ + 52.5224688, + 13.4008581 + ], + [ + 52.5224469, + 13.4006773 + ], + [ + 52.5224276, + 13.4004482 + ] + ] + }, + { + "osmId": "32590642", + "name": "Berliner Stadtbahn", + "lengthMeters": 117.02792946312678, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232171, + 13.4071364 + ], + [ + 52.5231902, + 13.4072874 + ], + [ + 52.5231507, + 13.4074755 + ], + [ + 52.5231035, + 13.4076713 + ], + [ + 52.5230616, + 13.4078278 + ], + [ + 52.5230097, + 13.4079971 + ], + [ + 52.5229601, + 13.4081472 + ], + [ + 52.522903, + 13.4083012 + ], + [ + 52.5227889, + 13.4085756 + ], + [ + 52.5227467, + 13.408672 + ] + ] + }, + { + "osmId": "32590644", + "name": "Berliner Stadtbahn", + "lengthMeters": 214.11897213323306, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.52327, + 13.407037 + ], + [ + 52.5232972, + 13.4068287 + ], + [ + 52.5233187, + 13.4066108 + ], + [ + 52.523331, + 13.4063966 + ], + [ + 52.5233372, + 13.4062007 + ], + [ + 52.5233386, + 13.4060348 + ], + [ + 52.523336, + 13.4058958 + ], + [ + 52.5233315, + 13.4057437 + ], + [ + 52.5233245, + 13.4055908 + ], + [ + 52.5233119, + 13.4054406 + ], + [ + 52.5232963, + 13.4052694 + ], + [ + 52.523258, + 13.4050021 + ], + [ + 52.523216, + 13.4047647 + ], + [ + 52.5231944, + 13.404659 + ], + [ + 52.5231683, + 13.4045451 + ], + [ + 52.5231139, + 13.404339 + ], + [ + 52.5230059, + 13.4039753 + ] + ] + }, + { + "osmId": "32590647", + "name": "Berliner Stadtbahn", + "lengthMeters": 118.22005425461636, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232878, + 13.4071848 + ], + [ + 52.5232578, + 13.4073487 + ], + [ + 52.5232214, + 13.4075238 + ], + [ + 52.5231924, + 13.4076404 + ], + [ + 52.5231519, + 13.4078005 + ], + [ + 52.5230813, + 13.4080465 + ], + [ + 52.5230273, + 13.4082033 + ], + [ + 52.5229684, + 13.4083651 + ], + [ + 52.522859, + 13.4086374 + ], + [ + 52.5228162, + 13.4087405 + ] + ] + }, + { + "osmId": "32590649", + "name": "Berliner Stadtbahn", + "lengthMeters": 221.55817145112746, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5233394, + 13.4070599 + ], + [ + 52.523355, + 13.4069454 + ], + [ + 52.5233699, + 13.4068241 + ], + [ + 52.5233825, + 13.406705 + ], + [ + 52.5233938, + 13.4065641 + ], + [ + 52.523405, + 13.4063805 + ], + [ + 52.5234094, + 13.4061963 + ], + [ + 52.5234107, + 13.4060246 + ], + [ + 52.5234096, + 13.4059169 + ], + [ + 52.5234058, + 13.4058108 + ], + [ + 52.5233999, + 13.4056741 + ], + [ + 52.5233934, + 13.4055671 + ], + [ + 52.52338, + 13.4054072 + ], + [ + 52.5233711, + 13.4053131 + ], + [ + 52.5233618, + 13.4052246 + ], + [ + 52.5233276, + 13.404981 + ], + [ + 52.5233048, + 13.4048428 + ], + [ + 52.5232882, + 13.4047458 + ], + [ + 52.5232777, + 13.4046924 + ], + [ + 52.523247, + 13.4045486 + ], + [ + 52.5232125, + 13.4044044 + ], + [ + 52.5231759, + 13.4042665 + ], + [ + 52.5230746, + 13.4038839 + ] + ] + }, + { + "osmId": "32590651", + "name": "Berliner Stadtbahn", + "lengthMeters": 206.78079555809015, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5223479, + 13.4001809 + ], + [ + 52.5223433, + 13.4000411 + ], + [ + 52.5223247, + 13.3993877 + ], + [ + 52.52231, + 13.3989569 + ], + [ + 52.5223039, + 13.398747 + ], + [ + 52.522275, + 13.3983842 + ], + [ + 52.5222469, + 13.3981414 + ], + [ + 52.5222111, + 13.3979032 + ], + [ + 52.5221731, + 13.3977092 + ], + [ + 52.5221247, + 13.3974912 + ], + [ + 52.522043, + 13.3971938 + ] + ] + }, + { + "osmId": "32590653", + "name": "Berliner Stadtbahn", + "lengthMeters": 210.08624498589282, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5224146, + 13.4001473 + ], + [ + 52.5223975, + 13.3997227 + ], + [ + 52.522382, + 13.3991407 + ], + [ + 52.522378, + 13.3989607 + ], + [ + 52.5223678, + 13.3987177 + ], + [ + 52.5223519, + 13.3984423 + ], + [ + 52.5223252, + 13.3981361 + ], + [ + 52.5222657, + 13.3977845 + ], + [ + 52.5222022, + 13.3974875 + ], + [ + 52.5221014, + 13.397115 + ] + ] + }, + { + "osmId": "32590890", + "name": "Berliner Stadtbahn", + "lengthMeters": 205.65061243277393, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5220137, + 13.3972293 + ], + [ + 52.52209, + 13.3975144 + ], + [ + 52.522139, + 13.397727 + ], + [ + 52.5221751, + 13.3979217 + ], + [ + 52.5222128, + 13.3981563 + ], + [ + 52.5222411, + 13.3983991 + ], + [ + 52.5222678, + 13.3987563 + ], + [ + 52.5222754, + 13.3989649 + ], + [ + 52.5222907, + 13.3993861 + ], + [ + 52.5223086, + 13.4000628 + ], + [ + 52.5223111, + 13.400202 + ] + ] + }, + { + "osmId": "32590892", + "name": "Berliner Stadtbahn", + "lengthMeters": 110.66504900318625, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5217378, + 13.396396 + ], + [ + 52.5211101, + 13.3951267 + ] + ] + }, + { + "osmId": "32590894", + "name": "Berliner Stadtbahn", + "lengthMeters": 208.22479194636898, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5220784, + 13.3971548 + ], + [ + 52.5221655, + 13.397477 + ], + [ + 52.5222342, + 13.3978073 + ], + [ + 52.5222909, + 13.3981532 + ], + [ + 52.5223192, + 13.3984541 + ], + [ + 52.5223376, + 13.3987723 + ], + [ + 52.5223479, + 13.3990801 + ], + [ + 52.5223569, + 13.3993728 + ], + [ + 52.5223679, + 13.3997304 + ], + [ + 52.5223828, + 13.400164 + ] + ] + }, + { + "osmId": "32590896", + "name": "Berliner Stadtbahn", + "lengthMeters": 110.40769290517503, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5217954, + 13.3963149 + ], + [ + 52.5216499, + 13.3960224 + ], + [ + 52.5211698, + 13.3950477 + ] + ] + }, + { + "osmId": "32590898", + "name": "Berliner Stadtbahn", + "lengthMeters": 110.97458157436247, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210824, + 13.395161 + ], + [ + 52.5214246, + 13.3958732 + ], + [ + 52.5217079, + 13.396439 + ] + ] + }, + { + "osmId": "32590900", + "name": "Berliner Stadtbahn", + "lengthMeters": 162.39730521373764, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5207545, + 13.3943865 + ], + [ + 52.5206504, + 13.3941517 + ], + [ + 52.5205428, + 13.3938874 + ], + [ + 52.5205263, + 13.393847 + ], + [ + 52.5204196, + 13.3934947 + ], + [ + 52.5203263, + 13.3931306 + ], + [ + 52.5202626, + 13.3927806 + ], + [ + 52.5202251, + 13.3925089 + ], + [ + 52.5202119, + 13.3923718 + ], + [ + 52.5201956, + 13.3922022 + ] + ] + }, + { + "osmId": "32590902", + "name": "Berliner Stadtbahn", + "lengthMeters": 110.49813217936102, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5211447, + 13.3950802 + ], + [ + 52.5215338, + 13.3958774 + ], + [ + 52.5217691, + 13.3963507 + ] + ] + }, + { + "osmId": "32590904", + "name": "Berliner Stadtbahn", + "lengthMeters": 157.69562425996452, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5208102, + 13.39431 + ], + [ + 52.5207078, + 13.3940812 + ], + [ + 52.5206674, + 13.3939786 + ], + [ + 52.5205914, + 13.3937787 + ], + [ + 52.5204807, + 13.3934383 + ], + [ + 52.5204686, + 13.3933918 + ], + [ + 52.5203884, + 13.3930825 + ], + [ + 52.5203264, + 13.3927438 + ], + [ + 52.5202928, + 13.3924846 + ], + [ + 52.5202651, + 13.3921908 + ] + ] + }, + { + "osmId": "32591069", + "name": "Berliner Stadtbahn", + "lengthMeters": 307.38291941146315, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5228864, + 13.37696 + ], + [ + 52.52305, + 13.3767947 + ], + [ + 52.5232704, + 13.3765743 + ], + [ + 52.5234786, + 13.3763622 + ], + [ + 52.523681, + 13.376159 + ], + [ + 52.5238461, + 13.3759844 + ], + [ + 52.5239683, + 13.3758508 + ], + [ + 52.524079, + 13.3757187 + ], + [ + 52.5241982, + 13.3755643 + ], + [ + 52.5242858, + 13.3754364 + ], + [ + 52.5243915, + 13.3752658 + ], + [ + 52.5244756, + 13.3751154 + ], + [ + 52.5245614, + 13.3749459 + ], + [ + 52.5246405, + 13.3747795 + ], + [ + 52.5247022, + 13.3746414 + ], + [ + 52.5247528, + 13.3745118 + ], + [ + 52.5248463, + 13.3742596 + ], + [ + 52.5248508, + 13.3742474 + ], + [ + 52.5249357, + 13.3740206 + ] + ] + }, + { + "osmId": "32591073", + "name": "Berliner Stadtbahn", + "lengthMeters": 243.81910867697547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5228352, + 13.3768875 + ], + [ + 52.5229942, + 13.3767303 + ], + [ + 52.523006, + 13.3767187 + ], + [ + 52.5230523, + 13.376672 + ], + [ + 52.5232738, + 13.3764483 + ], + [ + 52.5234696, + 13.3762451 + ], + [ + 52.5237328, + 13.3759737 + ], + [ + 52.5239536, + 13.3757308 + ], + [ + 52.5240442, + 13.3756206 + ], + [ + 52.5241589, + 13.3754588 + ], + [ + 52.5242574, + 13.3753109 + ], + [ + 52.5243345, + 13.3751713 + ], + [ + 52.524404, + 13.37505 + ], + [ + 52.5245153, + 13.3748319 + ], + [ + 52.5245693, + 13.3747249 + ] + ] + }, + { + "osmId": "32591076", + "name": "Berliner Stadtbahn", + "lengthMeters": 242.17299882139295, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249357, + 13.3740206 + ], + [ + 52.5250109, + 13.3737837 + ], + [ + 52.5250727, + 13.3735647 + ], + [ + 52.5251193, + 13.3733907 + ], + [ + 52.5251589, + 13.3732156 + ], + [ + 52.5251902, + 13.373058 + ], + [ + 52.5252252, + 13.3728462 + ], + [ + 52.5252503, + 13.3726693 + ], + [ + 52.5252759, + 13.3724416 + ], + [ + 52.525299, + 13.3721777 + ], + [ + 52.5253147, + 13.3719395 + ], + [ + 52.5253246, + 13.3717278 + ], + [ + 52.5253315, + 13.3715216 + ], + [ + 52.5253391, + 13.3713112 + ], + [ + 52.5253415, + 13.3709259 + ], + [ + 52.525344, + 13.3706944 + ], + [ + 52.5253444, + 13.3706215 + ], + [ + 52.5253447, + 13.3705514 + ] + ] + }, + { + "osmId": "32591077", + "name": "Berliner Stadtbahn", + "lengthMeters": 305.1263991992193, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5248995, + 13.3740177 + ], + [ + 52.5248239, + 13.3742171 + ], + [ + 52.5248182, + 13.3742327 + ], + [ + 52.5247918, + 13.3743055 + ], + [ + 52.524693, + 13.3745593 + ], + [ + 52.5245978, + 13.3747806 + ], + [ + 52.5244682, + 13.3750487 + ], + [ + 52.5243733, + 13.3752174 + ], + [ + 52.524298, + 13.3753446 + ], + [ + 52.5241953, + 13.375503 + ], + [ + 52.5241003, + 13.3756284 + ], + [ + 52.5239839, + 13.3757715 + ], + [ + 52.523878, + 13.3758948 + ], + [ + 52.5236696, + 13.3761118 + ], + [ + 52.523506, + 13.3762758 + ], + [ + 52.5233916, + 13.3763916 + ], + [ + 52.5231248, + 13.3766603 + ], + [ + 52.5228599, + 13.3769273 + ] + ] + }, + { + "osmId": "32591078", + "name": "Berliner Stadtbahn", + "lengthMeters": 160.98551964793063, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5248393, + 13.3740135 + ], + [ + 52.5249835, + 13.3735356 + ], + [ + 52.525028, + 13.3733506 + ], + [ + 52.5250688, + 13.3731526 + ], + [ + 52.525099, + 13.3729922 + ], + [ + 52.5251256, + 13.3728089 + ], + [ + 52.525152, + 13.3726212 + ], + [ + 52.5251681, + 13.3724539 + ], + [ + 52.5251814, + 13.3722947 + ], + [ + 52.5251909, + 13.3721406 + ], + [ + 52.5251945, + 13.3719381 + ], + [ + 52.5251956, + 13.3718164 + ], + [ + 52.5251963, + 13.3717365 + ] + ] + }, + { + "osmId": "32673807", + "name": "U1", + "lengthMeters": 160.96166624445806, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998087, + 13.3676329 + ], + [ + 52.4997409, + 13.3681814 + ], + [ + 52.4997212, + 13.368354 + ], + [ + 52.4996937, + 13.368615 + ], + [ + 52.4996652, + 13.3689345 + ], + [ + 52.4996422, + 13.3692571 + ], + [ + 52.4996225, + 13.3696077 + ], + [ + 52.4995962, + 13.3699831 + ] + ] + }, + { + "osmId": "32673836", + "name": "U1", + "lengthMeters": 293.1341923433679, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4996368, + 13.3700365 + ], + [ + 52.4996453, + 13.3697501 + ], + [ + 52.4996566, + 13.3695139 + ], + [ + 52.499676, + 13.3691911 + ], + [ + 52.4996949, + 13.3689276 + ], + [ + 52.4997204, + 13.3686341 + ], + [ + 52.4997539, + 13.3683148 + ], + [ + 52.4998386, + 13.3676264 + ], + [ + 52.4999591, + 13.3666372 + ], + [ + 52.5000097, + 13.3662357 + ], + [ + 52.5000278, + 13.3659862 + ], + [ + 52.5000359, + 13.3657624 + ] + ] + }, + { + "osmId": "32673996", + "name": "U1", + "lengthMeters": 129.12216673365708, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5000178, + 13.3657593 + ], + [ + 52.5000097, + 13.3659821 + ], + [ + 52.4999903, + 13.3662306 + ], + [ + 52.4999584, + 13.3664801 + ], + [ + 52.4999122, + 13.3668713 + ], + [ + 52.4998087, + 13.3676329 + ] + ] + }, + { + "osmId": "32674079", + "name": "U1", + "lengthMeters": 1245.4641426008402, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4994202, + 13.3741781 + ], + [ + 52.4994194, + 13.3744092 + ], + [ + 52.4994294, + 13.3746026 + ], + [ + 52.4994507, + 13.3750812 + ], + [ + 52.4994567, + 13.3752329 + ], + [ + 52.4994574, + 13.3754006 + ], + [ + 52.4994536, + 13.3755616 + ], + [ + 52.4994401, + 13.3757527 + ], + [ + 52.4993989, + 13.3761879 + ], + [ + 52.4993391, + 13.3768887 + ], + [ + 52.499327, + 13.3771071 + ], + [ + 52.4993277, + 13.3772794 + ], + [ + 52.4993328, + 13.3774161 + ], + [ + 52.4993452, + 13.3775534 + ], + [ + 52.4993763, + 13.3778334 + ], + [ + 52.499393, + 13.3779866 + ], + [ + 52.4993992, + 13.3781024 + ], + [ + 52.499403, + 13.3782098 + ], + [ + 52.4994023, + 13.3783553 + ], + [ + 52.4993952, + 13.3784548 + ], + [ + 52.4993021, + 13.3794067 + ], + [ + 52.4992825, + 13.3795563 + ], + [ + 52.4992639, + 13.3796738 + ], + [ + 52.4992349, + 13.3798336 + ], + [ + 52.4991796, + 13.380119 + ], + [ + 52.4990896, + 13.3805908 + ], + [ + 52.4990527, + 13.3808002 + ], + [ + 52.499032, + 13.3809358 + ], + [ + 52.4990235, + 13.3810063 + ], + [ + 52.4990165, + 13.3810779 + ], + [ + 52.4990106, + 13.3811479 + ], + [ + 52.4990065, + 13.381219 + ], + [ + 52.4990019, + 13.381364 + ], + [ + 52.4990017, + 13.3814721 + ], + [ + 52.4990073, + 13.3816238 + ], + [ + 52.4990158, + 13.3817611 + ], + [ + 52.4990245, + 13.3818705 + ], + [ + 52.4990301, + 13.3819265 + ], + [ + 52.4990517, + 13.3821513 + ], + [ + 52.4990676, + 13.382303 + ], + [ + 52.4990768, + 13.3824517 + ], + [ + 52.4990867, + 13.3826136 + ], + [ + 52.4990992, + 13.3830034 + ], + [ + 52.4991, + 13.3833963 + ], + [ + 52.4990969, + 13.3834583 + ], + [ + 52.4990959, + 13.3834944 + ], + [ + 52.4990946, + 13.3835289 + ], + [ + 52.4990819, + 13.3837202 + ], + [ + 52.4990504, + 13.3840715 + ], + [ + 52.4990286, + 13.3842314 + ], + [ + 52.4989978, + 13.3844784 + ], + [ + 52.4989565, + 13.3847511 + ], + [ + 52.4989083, + 13.384999 + ], + [ + 52.4988574, + 13.3852652 + ], + [ + 52.4987904, + 13.3855655 + ], + [ + 52.4986837, + 13.3860015 + ], + [ + 52.498408, + 13.3871214 + ], + [ + 52.4980424, + 13.3886356 + ], + [ + 52.4979179, + 13.3892384 + ], + [ + 52.4978728, + 13.3895258 + ], + [ + 52.4978043, + 13.3899601 + ], + [ + 52.4977557, + 13.3904115 + ], + [ + 52.4977411, + 13.3907329 + ], + [ + 52.4977343, + 13.3911065 + ], + [ + 52.4977358, + 13.3911941 + ], + [ + 52.4977379, + 13.3912799 + ], + [ + 52.4977808, + 13.3920879 + ] + ] + }, + { + "osmId": "32699829", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 818.3761587234158, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3418943, + 13.3424211 + ], + [ + 52.3416828, + 13.3400647 + ], + [ + 52.3416583, + 13.3397836 + ], + [ + 52.3416154, + 13.3392911 + ], + [ + 52.3414569, + 13.3375159 + ], + [ + 52.3411643, + 13.3342463 + ], + [ + 52.3409254, + 13.3315444 + ], + [ + 52.3408321, + 13.3305008 + ] + ] + }, + { + "osmId": "32699831", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 657.2654861461057, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3407957, + 13.3300841 + ], + [ + 52.3406477, + 13.3284352 + ], + [ + 52.3405654, + 13.3275087 + ], + [ + 52.3403595, + 13.3252047 + ], + [ + 52.3401165, + 13.322471 + ], + [ + 52.3400006, + 13.3211607 + ], + [ + 52.3399431, + 13.3205106 + ] + ] + }, + { + "osmId": "32699833", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 287.4826897276622, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3399044, + 13.3200355 + ], + [ + 52.3398621, + 13.3194957 + ], + [ + 52.3396844, + 13.3164168 + ], + [ + 52.3396536, + 13.3158242 + ] + ] + }, + { + "osmId": "32752623", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 300.8012717619864, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5316942, + 10.0216138 + ], + [ + 53.5316431, + 10.0215662 + ], + [ + 53.5315778, + 10.021508 + ], + [ + 53.5308998, + 10.0209037 + ], + [ + 53.5308458, + 10.0208537 + ], + [ + 53.5306247, + 10.0206442 + ], + [ + 53.5297893, + 10.0198527 + ], + [ + 53.5293232, + 10.0194232 + ] + ] + }, + { + "osmId": "32762082", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 256.02590286410543, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377581, + 13.1771949 + ], + [ + 52.5375389, + 13.1785744 + ], + [ + 52.5375134, + 13.1787409 + ], + [ + 52.5371776, + 13.1808581 + ] + ] + }, + { + "osmId": "32762086", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 216.01613068816326, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368298, + 13.1829774 + ], + [ + 52.5366986, + 13.1837954 + ], + [ + 52.536629, + 13.1842158 + ], + [ + 52.5364704, + 13.1852009 + ], + [ + 52.5363237, + 13.1860609 + ] + ] + }, + { + "osmId": "32779576", + "name": null, + "lengthMeters": 141.80713572728285, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3591083, + 13.0973532 + ], + [ + 52.3589945, + 13.097391 + ], + [ + 52.3589512, + 13.0974439 + ], + [ + 52.3589009, + 13.0975329 + ], + [ + 52.3588781, + 13.0976376 + ], + [ + 52.3588725, + 13.0977479 + ], + [ + 52.3588775, + 13.0978413 + ], + [ + 52.3589024, + 13.0979404 + ], + [ + 52.3589311, + 13.0980249 + ], + [ + 52.3589746, + 13.0981115 + ], + [ + 52.3590268, + 13.0981757 + ], + [ + 52.3590884, + 13.0982219 + ], + [ + 52.3591402, + 13.0982386 + ], + [ + 52.3591943, + 13.0982483 + ], + [ + 52.359267, + 13.0982296 + ], + [ + 52.3593347, + 13.0981874 + ], + [ + 52.3595671, + 13.0979998 + ] + ] + }, + { + "osmId": "32779577", + "name": null, + "lengthMeters": 135.98617185126952, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3591989, + 13.0973751 + ], + [ + 52.3590939, + 13.0973761 + ], + [ + 52.3590307, + 13.0973995 + ], + [ + 52.3589781, + 13.0974629 + ], + [ + 52.3589355, + 13.097558 + ], + [ + 52.3589134, + 13.0976496 + ], + [ + 52.3589093, + 13.0977505 + ], + [ + 52.3589153, + 13.0978323 + ], + [ + 52.3589339, + 13.097914 + ], + [ + 52.3589659, + 13.098 + ], + [ + 52.3590084, + 13.0980699 + ], + [ + 52.3590482, + 13.0981278 + ], + [ + 52.359105, + 13.0981675 + ], + [ + 52.35915, + 13.0981867 + ], + [ + 52.3591938, + 13.098188 + ], + [ + 52.3592603, + 13.0981787 + ], + [ + 52.3593235, + 13.0981344 + ], + [ + 52.3595282, + 13.0979707 + ] + ] + }, + { + "osmId": "32790485", + "name": null, + "lengthMeters": 1261.379280479815, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0746832, + 11.6504611 + ], + [ + 48.0744257, + 11.6497317 + ], + [ + 48.0739598, + 11.6483836 + ], + [ + 48.073737, + 11.6477504 + ], + [ + 48.0734977, + 11.6471047 + ], + [ + 48.0733428, + 11.6467119 + ], + [ + 48.0731798, + 11.6463827 + ], + [ + 48.0728952, + 11.6458225 + ], + [ + 48.0727525, + 11.6455947 + ], + [ + 48.0723812, + 11.6451148 + ], + [ + 48.0720333, + 11.6447568 + ], + [ + 48.0716023, + 11.6443399 + ], + [ + 48.0713104, + 11.6440841 + ], + [ + 48.0710116, + 11.6438704 + ], + [ + 48.0705245, + 11.6436004 + ], + [ + 48.0705028, + 11.6435884 + ], + [ + 48.0702778, + 11.6434841 + ], + [ + 48.0697782, + 11.6432863 + ], + [ + 48.069287, + 11.6429869 + ], + [ + 48.0691544, + 11.6428791 + ], + [ + 48.0689882, + 11.6427062 + ], + [ + 48.068809, + 11.6424369 + ], + [ + 48.068675, + 11.6421479 + ], + [ + 48.0685851, + 11.6418461 + ], + [ + 48.068424, + 11.6412954 + ], + [ + 48.0681501, + 11.6403725 + ], + [ + 48.0679358, + 11.6396527 + ], + [ + 48.0678777, + 11.6393499 + ], + [ + 48.0678444, + 11.6391141 + ], + [ + 48.0678211, + 11.6389171 + ], + [ + 48.0678245, + 11.6385935 + ], + [ + 48.0678358, + 11.6382331 + ] + ] + }, + { + "osmId": "32790486", + "name": null, + "lengthMeters": 170.42287936951564, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0687483, + 11.6318122 + ], + [ + 48.0687229, + 11.6318918 + ], + [ + 48.0687063, + 11.6319687 + ], + [ + 48.0683949, + 11.6340415 + ] + ] + }, + { + "osmId": "32913063", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 102.70140991303981, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.12372, + 11.599373 + ], + [ + 48.1231553, + 11.5982781 + ] + ] + }, + { + "osmId": "32958633", + "name": null, + "lengthMeters": 250.70417761986488, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5475618, + 10.002359 + ], + [ + 53.5476208, + 10.0017986 + ], + [ + 53.5476643, + 10.0013536 + ], + [ + 53.547695, + 10.0010602 + ], + [ + 53.5477074, + 10.0009165 + ], + [ + 53.5477198, + 10.0007519 + ], + [ + 53.5477287, + 10.0006028 + ], + [ + 53.5477346, + 10.0004615 + ], + [ + 53.5477395, + 10.0003074 + ], + [ + 53.5477477, + 9.9998246 + ], + [ + 53.5477472, + 9.9993988 + ], + [ + 53.5477374, + 9.9989071 + ], + [ + 53.54774, + 9.9987424 + ], + [ + 53.5477446, + 9.9986477 + ], + [ + 53.5477486, + 9.9985889 + ] + ] + }, + { + "osmId": "33112741", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 611.3488137986793, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3396344, + 13.315495 + ], + [ + 52.3395654, + 13.3142028 + ], + [ + 52.3394511, + 13.3120896 + ], + [ + 52.3393961, + 13.3110049 + ], + [ + 52.3392913, + 13.3090777 + ], + [ + 52.3391563, + 13.3065305 + ] + ] + }, + { + "osmId": "33112743", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 289.89790651696796, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3396136, + 13.3158481 + ], + [ + 52.3396451, + 13.3164238 + ], + [ + 52.3397565, + 13.3184223 + ], + [ + 52.3398247, + 13.319499 + ], + [ + 52.3398702, + 13.3200942 + ] + ] + }, + { + "osmId": "33242868", + "name": null, + "lengthMeters": 1476.088390206289, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402865, + 11.4121876 + ], + [ + 48.1403384, + 11.4125578 + ], + [ + 48.1405541, + 11.4140948 + ], + [ + 48.1407121, + 11.4152217 + ], + [ + 48.1409969, + 11.4172526 + ], + [ + 48.1412923, + 11.4193585 + ], + [ + 48.1413729, + 11.4199229 + ], + [ + 48.1415023, + 11.4208462 + ], + [ + 48.1416358, + 11.4217983 + ], + [ + 48.1416762, + 11.4220867 + ], + [ + 48.1418399, + 11.4232535 + ], + [ + 48.14194, + 11.423961 + ], + [ + 48.1419638, + 11.4241292 + ], + [ + 48.1419799, + 11.4242325 + ], + [ + 48.1420268, + 11.4245773 + ], + [ + 48.1421541, + 11.4255127 + ], + [ + 48.1422022, + 11.425922 + ], + [ + 48.1422368, + 11.4262824 + ], + [ + 48.1422654, + 11.4266309 + ], + [ + 48.1422863, + 11.4269544 + ], + [ + 48.1423148, + 11.4273762 + ], + [ + 48.1423763, + 11.4283942 + ], + [ + 48.1424604, + 11.4298114 + ], + [ + 48.1424727, + 11.430019 + ], + [ + 48.1425017, + 11.4305067 + ], + [ + 48.1425248, + 11.4308562 + ], + [ + 48.1425586, + 11.4311967 + ], + [ + 48.1426155, + 11.4317495 + ] + ] + }, + { + "osmId": "33742483", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 455.0612827419214, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3492869, + 13.4053701 + ], + [ + 52.3494368, + 13.4060355 + ], + [ + 52.3496065, + 13.406794 + ], + [ + 52.3500756, + 13.4088928 + ], + [ + 52.3503157, + 13.4099366 + ], + [ + 52.3505818, + 13.4111205 + ], + [ + 52.3506982, + 13.4116588 + ] + ] + }, + { + "osmId": "33847108", + "name": "Lehrter Bahn", + "lengthMeters": 3285.9716710795665, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5376375, + 13.1430037 + ], + [ + 52.5376886, + 13.1422802 + ], + [ + 52.5377544, + 13.1413469 + ], + [ + 52.5377768, + 13.1410115 + ], + [ + 52.5378189, + 13.1404266 + ], + [ + 52.5379065, + 13.1391849 + ], + [ + 52.5379794, + 13.1381705 + ], + [ + 52.5381948, + 13.1350957 + ], + [ + 52.5384127, + 13.1320139 + ], + [ + 52.5385125, + 13.1306029 + ], + [ + 52.5386107, + 13.1292121 + ], + [ + 52.538662, + 13.1284816 + ], + [ + 52.5388141, + 13.1263219 + ], + [ + 52.5390103, + 13.1235382 + ], + [ + 52.5391525, + 13.1215197 + ], + [ + 52.5391993, + 13.1206247 + ], + [ + 52.5393061, + 13.1185838 + ], + [ + 52.5393583, + 13.1177312 + ], + [ + 52.5393954, + 13.1171239 + ], + [ + 52.5394636, + 13.1160818 + ], + [ + 52.5394916, + 13.1156829 + ], + [ + 52.5395437, + 13.1149442 + ], + [ + 52.5397985, + 13.1113281 + ], + [ + 52.5399964, + 13.1084643 + ], + [ + 52.5401995, + 13.1056084 + ], + [ + 52.5403887, + 13.10291 + ], + [ + 52.5404025, + 13.1027148 + ], + [ + 52.5404988, + 13.1013409 + ], + [ + 52.5405839, + 13.1001258 + ], + [ + 52.5408344, + 13.0967612 + ], + [ + 52.540981, + 13.0948765 + ], + [ + 52.540992, + 13.0947324 + ] + ] + }, + { + "osmId": "34062052", + "name": null, + "lengthMeters": 634.6449481097169, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.195125, + 11.5917776 + ], + [ + 48.1929465, + 11.5917896 + ], + [ + 48.1928386, + 11.5917893 + ], + [ + 48.1927486, + 11.591789 + ], + [ + 48.1926594, + 11.5917894 + ], + [ + 48.1926124, + 11.5917806 + ], + [ + 48.1924121, + 11.5917428 + ], + [ + 48.1921627, + 11.5916151 + ], + [ + 48.1918689, + 11.5913833 + ], + [ + 48.1917327, + 11.5912342 + ], + [ + 48.1916862, + 11.5911832 + ], + [ + 48.1916251, + 11.5910947 + ], + [ + 48.1916157, + 11.591081 + ], + [ + 48.1915069, + 11.5909244 + ], + [ + 48.1913465, + 11.5906062 + ], + [ + 48.1912185, + 11.5903082 + ], + [ + 48.191147, + 11.5901052 + ], + [ + 48.1910723, + 11.5898689 + ], + [ + 48.1910093, + 11.5896272 + ], + [ + 48.190907, + 11.5890761 + ], + [ + 48.190889, + 11.588898 + ], + [ + 48.1908292, + 11.5883461 + ], + [ + 48.1908213, + 11.5882793 + ] + ] + }, + { + "osmId": "34207368", + "name": null, + "lengthMeters": 75.07904195278758, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4674071, + 9.9955586 + ], + [ + 53.468056, + 9.9958721 + ] + ] + }, + { + "osmId": "34207369", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 79.48920330848804, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4673007, + 9.9956275 + ], + [ + 53.4679848, + 9.995976 + ] + ] + }, + { + "osmId": "34207370", + "name": null, + "lengthMeters": 83.43745870961828, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4679323, + 9.9960532 + ], + [ + 53.467215, + 9.9956831 + ] + ] + }, + { + "osmId": "34207371", + "name": null, + "lengthMeters": 86.07487475442771, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4671591, + 9.9957193 + ], + [ + 53.467899, + 9.9961015 + ] + ] + }, + { + "osmId": "34207372", + "name": null, + "lengthMeters": 213.80704361173446, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4653137, + 9.9948133 + ], + [ + 53.4659225, + 9.9950889 + ], + [ + 53.4664898, + 9.9953795 + ], + [ + 53.466919, + 9.9955954 + ], + [ + 53.4671591, + 9.9957193 + ] + ] + }, + { + "osmId": "34207373", + "name": null, + "lengthMeters": 182.70460473793594, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4668948, + 9.9955267 + ], + [ + 53.4661813, + 9.9951547 + ], + [ + 53.4659385, + 9.9950281 + ], + [ + 53.4653195, + 9.9947433 + ] + ] + }, + { + "osmId": "34207375", + "name": null, + "lengthMeters": 240.54917736367227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4653413, + 9.9944799 + ], + [ + 53.4656233, + 9.9946307 + ], + [ + 53.4674071, + 9.9955586 + ] + ] + }, + { + "osmId": "34207376", + "name": null, + "lengthMeters": 247.05505684384525, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4653462, + 9.9944211 + ], + [ + 53.4674699, + 9.995518 + ] + ] + }, + { + "osmId": "34207377", + "name": null, + "lengthMeters": 233.4919030536568, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4610379, + 9.9927928 + ], + [ + 53.4611915, + 9.9928701 + ], + [ + 53.4617231, + 9.9931379 + ], + [ + 53.4623537, + 9.9934545 + ], + [ + 53.4624308, + 9.9934935 + ], + [ + 53.4630492, + 9.9938062 + ] + ] + }, + { + "osmId": "34207378", + "name": null, + "lengthMeters": 153.46091584803713, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4623652, + 9.9933985 + ], + [ + 53.4620227, + 9.9932244 + ], + [ + 53.4617658, + 9.9930915 + ], + [ + 53.4617318, + 9.9930741 + ], + [ + 53.4612687, + 9.9928353 + ], + [ + 53.4610586, + 9.992727 + ], + [ + 53.4610455, + 9.9927202 + ] + ] + }, + { + "osmId": "34207381", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 205.53789618504226, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4610355, + 9.9923694 + ], + [ + 53.4611018, + 9.9924023 + ], + [ + 53.4611764, + 9.9924432 + ], + [ + 53.4612788, + 9.9924993 + ], + [ + 53.461803, + 9.9927493 + ], + [ + 53.4624695, + 9.9930888 + ], + [ + 53.4625485, + 9.9931292 + ], + [ + 53.462806, + 9.9932608 + ] + ] + }, + { + "osmId": "34207387", + "name": null, + "lengthMeters": 210.01533354637755, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4680871, + 9.9958313 + ], + [ + 53.4681976, + 9.9958884 + ], + [ + 53.4687531, + 9.9961568 + ], + [ + 53.468955, + 9.9962399 + ], + [ + 53.469177, + 9.9963312 + ], + [ + 53.4699146, + 9.9966294 + ] + ] + }, + { + "osmId": "34207388", + "name": null, + "lengthMeters": 212.65850911294376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.468056, + 9.9958721 + ], + [ + 53.4680676, + 9.9958791 + ], + [ + 53.4687389, + 9.9962126 + ], + [ + 53.4689469, + 9.9962999 + ], + [ + 53.4691529, + 9.9963864 + ], + [ + 53.4699066, + 9.9966777 + ] + ] + }, + { + "osmId": "34207389", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 218.3426204459244, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4679848, + 9.995976 + ], + [ + 53.4688963, + 9.9964212 + ], + [ + 53.4698771, + 9.9968559 + ] + ] + }, + { + "osmId": "34207390", + "name": null, + "lengthMeters": 222.60694986543342, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4698619, + 9.9969472 + ], + [ + 53.4689293, + 9.9965402 + ], + [ + 53.4682848, + 9.9962379 + ], + [ + 53.4679323, + 9.9960532 + ] + ] + }, + { + "osmId": "34207391", + "name": null, + "lengthMeters": 225.28702171719277, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.467899, + 9.9961015 + ], + [ + 53.4682236, + 9.9962608 + ], + [ + 53.4689241, + 9.9966042 + ], + [ + 53.4692939, + 9.9967712 + ], + [ + 53.4698479, + 9.9970314 + ] + ] + }, + { + "osmId": "34207392", + "name": null, + "lengthMeters": 101.18090245753146, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4716896, + 9.9978375 + ], + [ + 53.4715686, + 9.9977744 + ], + [ + 53.4709097, + 9.9974308 + ], + [ + 53.4708206, + 9.9973841 + ] + ] + }, + { + "osmId": "34207393", + "name": null, + "lengthMeters": 101.41818602928566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4708705, + 9.9971012 + ], + [ + 53.4709591, + 9.9971395 + ], + [ + 53.4717435, + 9.9975444 + ] + ] + }, + { + "osmId": "34207394", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 98.28918317896297, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4708331, + 9.9973126 + ], + [ + 53.4709238, + 9.99736 + ], + [ + 53.4715793, + 9.9977004 + ], + [ + 53.4716774, + 9.9977523 + ] + ] + }, + { + "osmId": "34207395", + "name": null, + "lengthMeters": 101.45428661957557, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4708809, + 9.9970423 + ], + [ + 53.4709655, + 9.9970844 + ], + [ + 53.4716776, + 9.9974461 + ], + [ + 53.4717538, + 9.9974883 + ] + ] + }, + { + "osmId": "34207396", + "name": null, + "lengthMeters": 349.9292620652567, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717538, + 9.9974883 + ], + [ + 53.474763, + 9.9990357 + ] + ] + }, + { + "osmId": "34207397", + "name": null, + "lengthMeters": 349.93031914116324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717435, + 9.9975444 + ], + [ + 53.4747524, + 9.9990935 + ] + ] + }, + { + "osmId": "34207398", + "name": null, + "lengthMeters": 349.9312007679583, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717029, + 9.9977656 + ], + [ + 53.4747123, + 9.999312 + ] + ] + }, + { + "osmId": "34207399", + "name": null, + "lengthMeters": 349.9419898559745, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4747003, + 9.9993773 + ], + [ + 53.4716896, + 9.9978375 + ] + ] + }, + { + "osmId": "34207400", + "name": null, + "lengthMeters": 349.93612773146776, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.471668, + 9.9979552 + ], + [ + 53.4746771, + 9.9995035 + ] + ] + }, + { + "osmId": "34207401", + "name": null, + "lengthMeters": 101.12062239209993, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4707991, + 9.9975046 + ], + [ + 53.4708696, + 9.9975368 + ], + [ + 53.4715416, + 9.9978883 + ], + [ + 53.471668, + 9.9979552 + ] + ] + }, + { + "osmId": "34207402", + "name": null, + "lengthMeters": 176.63368038387165, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.474763, + 9.9990357 + ], + [ + 53.4749404, + 9.9991225 + ], + [ + 53.4762819, + 9.999817 + ] + ] + }, + { + "osmId": "34207403", + "name": null, + "lengthMeters": 176.1616370813426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4747524, + 9.9990935 + ], + [ + 53.4762677, + 9.9998703 + ] + ] + }, + { + "osmId": "34207409", + "name": null, + "lengthMeters": 555.7282561323144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4765784, + 10.0000233 + ], + [ + 53.4767036, + 10.0000793 + ], + [ + 53.4772077, + 10.0003186 + ], + [ + 53.4774877, + 10.0004404 + ], + [ + 53.4781691, + 10.0007368 + ], + [ + 53.4792024, + 10.0011862 + ], + [ + 53.4794751, + 10.0013022 + ], + [ + 53.4803209, + 10.0016621 + ], + [ + 53.481416, + 10.0021314 + ] + ] + }, + { + "osmId": "34207411", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 564.5845423955277, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4765115, + 10.0002206 + ], + [ + 53.477181, + 10.0005389 + ], + [ + 53.4791062, + 10.0013916 + ], + [ + 53.4799868, + 10.0017816 + ], + [ + 53.4814269, + 10.0023553 + ] + ] + }, + { + "osmId": "34207413", + "name": null, + "lengthMeters": 566.0652217050097, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4814179, + 10.0024224 + ], + [ + 53.4799793, + 10.0018373 + ], + [ + 53.4790979, + 10.0014526 + ], + [ + 53.4771689, + 10.0006108 + ], + [ + 53.4764884, + 10.0002888 + ] + ] + }, + { + "osmId": "34207415", + "name": null, + "lengthMeters": 568.2038229814816, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4764543, + 10.0003895 + ], + [ + 53.4771518, + 10.0007116 + ], + [ + 53.4790888, + 10.0015289 + ], + [ + 53.4799668, + 10.0018994 + ], + [ + 53.4814101, + 10.002481 + ] + ] + }, + { + "osmId": "34207417", + "name": null, + "lengthMeters": 554.5350215386449, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4814242, + 10.0020705 + ], + [ + 53.4807824, + 10.0017976 + ], + [ + 53.4801951, + 10.0015745 + ], + [ + 53.4800625, + 10.0015184 + ], + [ + 53.4794224, + 10.0012237 + ], + [ + 53.4792113, + 10.0011265 + ], + [ + 53.4781848, + 10.000679 + ], + [ + 53.4774984, + 10.0003798 + ], + [ + 53.4772211, + 10.0002589 + ], + [ + 53.4765972, + 9.9999678 + ] + ] + }, + { + "osmId": "34207419", + "name": null, + "lengthMeters": 190.881198792442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4935625, + 10.0049705 + ], + [ + 53.4918555, + 10.0046652 + ] + ] + }, + { + "osmId": "34207421", + "name": null, + "lengthMeters": 1122.9072034326282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4817119, + 10.0022441 + ], + [ + 53.4817599, + 10.0022594 + ], + [ + 53.4833817, + 10.0028271 + ], + [ + 53.484654, + 10.0032167 + ], + [ + 53.4851698, + 10.0033573 + ], + [ + 53.4854207, + 10.0034247 + ], + [ + 53.4855438, + 10.0034574 + ], + [ + 53.4856125, + 10.0034782 + ], + [ + 53.486322, + 10.0036632 + ], + [ + 53.4864575, + 10.0036952 + ], + [ + 53.4872197, + 10.0038641 + ], + [ + 53.4874517, + 10.003918 + ], + [ + 53.4877359, + 10.0039758 + ], + [ + 53.4882546, + 10.0040818 + ], + [ + 53.4884997, + 10.0041267 + ], + [ + 53.4891814, + 10.0042526 + ], + [ + 53.4906223, + 10.0045175 + ], + [ + 53.4908303, + 10.0045538 + ], + [ + 53.4916969, + 10.0047039 + ] + ] + }, + { + "osmId": "34207425", + "name": null, + "lengthMeters": 388.29610566832514, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.485058, + 10.0036163 + ], + [ + 53.4843799, + 10.0034181 + ], + [ + 53.4839791, + 10.0032992 + ], + [ + 53.4831617, + 10.0030372 + ], + [ + 53.4816298, + 10.0025023 + ] + ] + }, + { + "osmId": "34207427", + "name": null, + "lengthMeters": 390.23210615411494, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.481622, + 10.002561 + ], + [ + 53.4831156, + 10.003097 + ], + [ + 53.4831662, + 10.0031112 + ], + [ + 53.4843915, + 10.0034842 + ], + [ + 53.4850668, + 10.0036834 + ] + ] + }, + { + "osmId": "34207430", + "name": null, + "lengthMeters": 148.19799593263969, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4815035, + 10.0014567 + ], + [ + 53.4814397, + 10.0014982 + ], + [ + 53.4813231, + 10.0015645 + ], + [ + 53.4812285, + 10.0016079 + ], + [ + 53.4811444, + 10.0016449 + ], + [ + 53.4810618, + 10.0016673 + ], + [ + 53.4809815, + 10.0016879 + ], + [ + 53.4808961, + 10.0017014 + ], + [ + 53.4806813, + 10.001684 + ], + [ + 53.4801951, + 10.0015745 + ] + ] + }, + { + "osmId": "34207431", + "name": null, + "lengthMeters": 76.92420212760688, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4825077, + 9.9972182 + ], + [ + 53.4825645, + 9.9976799 + ], + [ + 53.4826023, + 9.9979869 + ], + [ + 53.48262, + 9.9981688 + ], + [ + 53.4826315, + 9.9983611 + ] + ] + }, + { + "osmId": "34207508", + "name": null, + "lengthMeters": 465.9572074338605, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.481819, + 9.9920739 + ], + [ + 53.4817493, + 9.9915426 + ], + [ + 53.4816626, + 9.9909283 + ], + [ + 53.4816506, + 9.9908525 + ], + [ + 53.4815567, + 9.9902099 + ], + [ + 53.4813641, + 9.9888965 + ], + [ + 53.4812282, + 9.9879854 + ], + [ + 53.4812133, + 9.9878854 + ], + [ + 53.4810675, + 9.9869079 + ], + [ + 53.4808214, + 9.9852348 + ] + ] + }, + { + "osmId": "34287551", + "name": null, + "lengthMeters": 1112.825181558642, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5351067, + 10.0247176 + ], + [ + 53.5353472, + 10.0248571 + ], + [ + 53.5354711, + 10.0249206 + ], + [ + 53.535591, + 10.024975 + ], + [ + 53.5357317, + 10.0250271 + ], + [ + 53.5358862, + 10.0250773 + ], + [ + 53.5360025, + 10.025107 + ], + [ + 53.5361312, + 10.0251336 + ], + [ + 53.5362495, + 10.0251503 + ], + [ + 53.5363574, + 10.0251615 + ], + [ + 53.5364566, + 10.0251606 + ], + [ + 53.5365735, + 10.0251556 + ], + [ + 53.5366795, + 10.0251444 + ], + [ + 53.5368771, + 10.0251062 + ], + [ + 53.5370607, + 10.0250466 + ], + [ + 53.537179, + 10.0249968 + ], + [ + 53.5372952, + 10.0249374 + ], + [ + 53.5374438, + 10.0248513 + ], + [ + 53.5376169, + 10.0247251 + ], + [ + 53.5376982, + 10.0246596 + ], + [ + 53.5377786, + 10.0245883 + ], + [ + 53.5378713, + 10.0244963 + ], + [ + 53.5379728, + 10.0243885 + ], + [ + 53.5380565, + 10.0242978 + ], + [ + 53.5381538, + 10.0241699 + ], + [ + 53.5382596, + 10.0240187 + ], + [ + 53.5383983, + 10.0238086 + ], + [ + 53.5384933, + 10.0236393 + ], + [ + 53.5385763, + 10.0234773 + ], + [ + 53.5386521, + 10.0233106 + ], + [ + 53.5386617, + 10.0232895 + ], + [ + 53.5387451, + 10.0230757 + ], + [ + 53.5388577, + 10.0227731 + ], + [ + 53.5389336, + 10.0225336 + ], + [ + 53.5390167, + 10.0222397 + ], + [ + 53.5390565, + 10.0220911 + ], + [ + 53.5390915, + 10.0219578 + ], + [ + 53.5391415, + 10.0217299 + ], + [ + 53.5391526, + 10.0216674 + ], + [ + 53.5392025, + 10.0213853 + ], + [ + 53.539248, + 10.0211095 + ], + [ + 53.5392842, + 10.020867 + ], + [ + 53.5394618, + 10.0196341 + ], + [ + 53.5397588, + 10.0175724 + ], + [ + 53.5397633, + 10.0175408 + ], + [ + 53.5398692, + 10.0167974 + ], + [ + 53.5400877, + 10.015263 + ], + [ + 53.5403397, + 10.013625 + ], + [ + 53.540353, + 10.0135382 + ] + ] + }, + { + "osmId": "34287554", + "name": null, + "lengthMeters": 306.46782706559316, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5341627, + 10.0236896 + ], + [ + 53.531741, + 10.0214756 + ] + ] + }, + { + "osmId": "34287556", + "name": null, + "lengthMeters": 306.36407862937176, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.531741, + 10.0214756 + ], + [ + 53.5316852, + 10.0214256 + ], + [ + 53.5309467, + 10.0207642 + ], + [ + 53.5308893, + 10.0207117 + ], + [ + 53.5293165, + 10.0192738 + ] + ] + }, + { + "osmId": "34287558", + "name": null, + "lengthMeters": 387.2282087159018, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5275544, + 10.0177737 + ], + [ + 53.5274716, + 10.0176959 + ], + [ + 53.526991, + 10.0172227 + ], + [ + 53.5259317, + 10.0162183 + ], + [ + 53.525866, + 10.0161563 + ], + [ + 53.5257735, + 10.0160764 + ], + [ + 53.5254666, + 10.0158231 + ], + [ + 53.5251533, + 10.0155783 + ], + [ + 53.5244687, + 10.0150708 + ] + ] + }, + { + "osmId": "34287559", + "name": null, + "lengthMeters": 278.1137692152512, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5267402, + 10.0168109 + ], + [ + 53.5264005, + 10.0164905 + ], + [ + 53.5258455, + 10.0159763 + ], + [ + 53.5258108, + 10.0159429 + ], + [ + 53.5257277, + 10.015871 + ], + [ + 53.5254387, + 10.0156327 + ], + [ + 53.5251397, + 10.015398 + ], + [ + 53.524506, + 10.0149268 + ] + ] + }, + { + "osmId": "34287561", + "name": null, + "lengthMeters": 1221.786981881212, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5404983, + 10.0113475 + ], + [ + 53.5404432, + 10.0116175 + ], + [ + 53.5403842, + 10.0119686 + ], + [ + 53.5402137, + 10.0130798 + ], + [ + 53.5401446, + 10.0135269 + ], + [ + 53.5399925, + 10.0145086 + ], + [ + 53.539948, + 10.0148022 + ], + [ + 53.5397443, + 10.016119 + ], + [ + 53.5394868, + 10.017731 + ], + [ + 53.5393742, + 10.0184626 + ], + [ + 53.5389792, + 10.0210296 + ], + [ + 53.5389127, + 10.0214023 + ], + [ + 53.5388301, + 10.0217895 + ], + [ + 53.5388215, + 10.0218329 + ], + [ + 53.5387681, + 10.0220486 + ], + [ + 53.5387059, + 10.0222822 + ], + [ + 53.5386379, + 10.0224886 + ], + [ + 53.5385248, + 10.0227757 + ], + [ + 53.5383984, + 10.0230772 + ], + [ + 53.5382633, + 10.0233355 + ], + [ + 53.5381763, + 10.0234817 + ], + [ + 53.5380889, + 10.0236185 + ], + [ + 53.5380068, + 10.0237364 + ], + [ + 53.5379056, + 10.0238732 + ], + [ + 53.5378031, + 10.0239934 + ], + [ + 53.5377112, + 10.0240966 + ], + [ + 53.5376458, + 10.0241653 + ], + [ + 53.5375727, + 10.0242357 + ], + [ + 53.537507, + 10.0242915 + ], + [ + 53.5374039, + 10.0243735 + ], + [ + 53.5373216, + 10.0244352 + ], + [ + 53.5372286, + 10.0244982 + ], + [ + 53.5370966, + 10.0245784 + ], + [ + 53.5369784, + 10.0246377 + ], + [ + 53.5368581, + 10.0246884 + ], + [ + 53.5367348, + 10.0247323 + ], + [ + 53.5366545, + 10.024755 + ], + [ + 53.5365434, + 10.0247818 + ], + [ + 53.5364626, + 10.0247937 + ], + [ + 53.5363818, + 10.0248027 + ], + [ + 53.5362577, + 10.0248101 + ], + [ + 53.536155, + 10.0248082 + ], + [ + 53.5360527, + 10.0247991 + ], + [ + 53.5359084, + 10.0247772 + ], + [ + 53.5358823, + 10.0247719 + ], + [ + 53.5358393, + 10.0247634 + ], + [ + 53.5357703, + 10.0247451 + ], + [ + 53.5356907, + 10.0247247 + ], + [ + 53.5356161, + 10.0247005 + ], + [ + 53.5353581, + 10.0246032 + ], + [ + 53.5352705, + 10.024564 + ], + [ + 53.5351751, + 10.0245127 + ], + [ + 53.5350583, + 10.024442 + ] + ] + }, + { + "osmId": "34287562", + "name": null, + "lengthMeters": 305.5604316712377, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5318392, + 10.0211826 + ], + [ + 53.5326608, + 10.0219304 + ], + [ + 53.5334577, + 10.022658 + ], + [ + 53.5341681, + 10.0233062 + ], + [ + 53.5342551, + 10.0233858 + ] + ] + }, + { + "osmId": "34287565", + "name": null, + "lengthMeters": 189.30336175330453, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.524525, + 10.0148535 + ], + [ + 53.5247886, + 10.0150439 + ], + [ + 53.5248515, + 10.0150878 + ], + [ + 53.5250771, + 10.0152545 + ], + [ + 53.5253081, + 10.0154253 + ], + [ + 53.5254803, + 10.0155595 + ], + [ + 53.5255144, + 10.0155877 + ], + [ + 53.5256161, + 10.0156728 + ], + [ + 53.5257679, + 10.0157998 + ], + [ + 53.5257906, + 10.0158217 + ], + [ + 53.5259671, + 10.0160004 + ], + [ + 53.526053, + 10.0161039 + ] + ] + }, + { + "osmId": "34287567", + "name": null, + "lengthMeters": 237.03716157091097, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5190021, + 10.0113695 + ], + [ + 53.5189977, + 10.0113677 + ], + [ + 53.5189337, + 10.0113419 + ], + [ + 53.5187158, + 10.0112539 + ], + [ + 53.516939, + 10.0104675 + ] + ] + }, + { + "osmId": "34287569", + "name": null, + "lengthMeters": 228.45998042707757, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5189581, + 10.0114667 + ], + [ + 53.5189539, + 10.0114649 + ], + [ + 53.5169662, + 10.0106196 + ] + ] + }, + { + "osmId": "34287571", + "name": null, + "lengthMeters": 225.94727788083648, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5169793, + 10.0106929 + ], + [ + 53.5189495, + 10.0115293 + ] + ] + }, + { + "osmId": "34287573", + "name": null, + "lengthMeters": 359.68878230586176, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5164634, + 10.0102626 + ], + [ + 53.513655, + 10.009039 + ], + [ + 53.5133334, + 10.0088896 + ] + ] + }, + { + "osmId": "34287575", + "name": null, + "lengthMeters": 365.66115937288816, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5164962, + 10.0104171 + ], + [ + 53.5133136, + 10.0090251 + ] + ] + }, + { + "osmId": "34287577", + "name": null, + "lengthMeters": 368.5310349610401, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5133038, + 10.0090923 + ], + [ + 53.516512, + 10.0104912 + ] + ] + }, + { + "osmId": "34287581", + "name": null, + "lengthMeters": 2348.940192258855, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4850668, + 10.0036834 + ], + [ + 53.4857711, + 10.0038586 + ], + [ + 53.4864803, + 10.0040378 + ], + [ + 53.4868622, + 10.0041431 + ], + [ + 53.4884837, + 10.0044882 + ], + [ + 53.4891376, + 10.0046055 + ], + [ + 53.4901754, + 10.0047741 + ], + [ + 53.4909741, + 10.0049048 + ], + [ + 53.4926105, + 10.0051778 + ], + [ + 53.4942795, + 10.0054563 + ], + [ + 53.4951562, + 10.0056475 + ], + [ + 53.4954279, + 10.0057067 + ], + [ + 53.4956596, + 10.0057572 + ], + [ + 53.4961417, + 10.0059038 + ], + [ + 53.497102, + 10.0061957 + ], + [ + 53.4975839, + 10.0063434 + ], + [ + 53.5002076, + 10.0071474 + ], + [ + 53.5005254, + 10.0072461 + ], + [ + 53.5012596, + 10.0074745 + ], + [ + 53.5017683, + 10.007615 + ], + [ + 53.5026393, + 10.0078557 + ], + [ + 53.5031191, + 10.0079726 + ], + [ + 53.5032491, + 10.0080043 + ], + [ + 53.5035828, + 10.0080675 + ], + [ + 53.5045128, + 10.0082402 + ], + [ + 53.5049202, + 10.0083097 + ], + [ + 53.5051597, + 10.0083506 + ], + [ + 53.5058573, + 10.0083775 + ], + [ + 53.5059886, + 10.0083932 + ] + ] + }, + { + "osmId": "34287582", + "name": null, + "lengthMeters": 2333.9115714512386, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5058454, + 10.0083107 + ], + [ + 53.5051581, + 10.0082601 + ], + [ + 53.5045091, + 10.0081707 + ], + [ + 53.5041943, + 10.0081128 + ], + [ + 53.5035869, + 10.0079897 + ], + [ + 53.5032561, + 10.0079407 + ], + [ + 53.5031256, + 10.0079099 + ], + [ + 53.5026572, + 10.0077993 + ], + [ + 53.5017734, + 10.0075499 + ], + [ + 53.5012665, + 10.0074069 + ], + [ + 53.500218, + 10.007086 + ], + [ + 53.4971103, + 10.006142 + ], + [ + 53.497046, + 10.0061217 + ], + [ + 53.4956597, + 10.0056849 + ], + [ + 53.4942892, + 10.0053991 + ], + [ + 53.492623, + 10.0051149 + ], + [ + 53.4909838, + 10.0048418 + ], + [ + 53.4901785, + 10.004711 + ], + [ + 53.4891236, + 10.0045396 + ], + [ + 53.488489, + 10.0044302 + ], + [ + 53.4882963, + 10.004392 + ], + [ + 53.4868671, + 10.0040778 + ], + [ + 53.4864892, + 10.0039878 + ], + [ + 53.4857754, + 10.0037892 + ], + [ + 53.485058, + 10.0036163 + ] + ] + }, + { + "osmId": "34287583", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 2367.3639767336845, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4816467, + 10.002376 + ], + [ + 53.4817723, + 10.0024219 + ], + [ + 53.4832698, + 10.0029397 + ], + [ + 53.4833076, + 10.0029538 + ], + [ + 53.4833452, + 10.0029677 + ], + [ + 53.4843877, + 10.0032912 + ], + [ + 53.4850723, + 10.003488 + ], + [ + 53.4851114, + 10.0034984 + ], + [ + 53.4865092, + 10.0038639 + ], + [ + 53.4868745, + 10.0039528 + ], + [ + 53.4883107, + 10.0042581 + ], + [ + 53.4884997, + 10.0042973 + ], + [ + 53.488654, + 10.0043182 + ], + [ + 53.4891331, + 10.0044154 + ], + [ + 53.4901837, + 10.004593 + ], + [ + 53.4909913, + 10.0047186 + ], + [ + 53.4916441, + 10.0048086 + ], + [ + 53.4922958, + 10.0049193 + ], + [ + 53.4926331, + 10.0049776 + ], + [ + 53.4943011, + 10.0052663 + ], + [ + 53.4956677, + 10.0055654 + ], + [ + 53.4970576, + 10.0059932 + ], + [ + 53.4971225, + 10.0060132 + ], + [ + 53.4974275, + 10.0061075 + ], + [ + 53.4991936, + 10.0066535 + ], + [ + 53.4995974, + 10.0067701 + ], + [ + 53.5002294, + 10.0069525 + ], + [ + 53.5007742, + 10.0070979 + ], + [ + 53.5012745, + 10.007227 + ], + [ + 53.5023836, + 10.0075207 + ], + [ + 53.5026946, + 10.007603 + ] + ] + }, + { + "osmId": "34287584", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 2620.62027547851, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4816388, + 10.0024352 + ], + [ + 53.4831785, + 10.0029813 + ], + [ + 53.4843858, + 10.0033547 + ], + [ + 53.4850734, + 10.0035506 + ], + [ + 53.4864964, + 10.0039227 + ], + [ + 53.4868722, + 10.0040105 + ], + [ + 53.4885128, + 10.0043629 + ], + [ + 53.4891279, + 10.0044846 + ], + [ + 53.4901823, + 10.004661 + ], + [ + 53.490988, + 10.0047714 + ], + [ + 53.4926328, + 10.0050631 + ], + [ + 53.4943078, + 10.0053352 + ], + [ + 53.495681, + 10.0056297 + ], + [ + 53.4971303, + 10.0060775 + ], + [ + 53.4991961, + 10.0067188 + ], + [ + 53.5002311, + 10.0070165 + ], + [ + 53.5008946, + 10.0071906 + ], + [ + 53.5012699, + 10.007289 + ], + [ + 53.5028563, + 10.0077067 + ], + [ + 53.5036531, + 10.007882 + ], + [ + 53.5037844, + 10.0079081 + ], + [ + 53.5038559, + 10.0079222 + ], + [ + 53.5038939, + 10.00793 + ], + [ + 53.5049468, + 10.0081329 + ] + ] + }, + { + "osmId": "34287585", + "name": null, + "lengthMeters": 1168.861057152644, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5131551, + 10.0088167 + ], + [ + 53.5125843, + 10.0086006 + ], + [ + 53.5124695, + 10.0085603 + ], + [ + 53.5116774, + 10.0083252 + ], + [ + 53.5111826, + 10.0082327 + ], + [ + 53.5107389, + 10.0081751 + ], + [ + 53.5100009, + 10.0081369 + ], + [ + 53.5098304, + 10.0081397 + ], + [ + 53.5095989, + 10.0081473 + ], + [ + 53.5091215, + 10.008163 + ], + [ + 53.5088607, + 10.0081666 + ], + [ + 53.5069898, + 10.0081965 + ], + [ + 53.5060119, + 10.008123 + ], + [ + 53.5049651, + 10.0080413 + ], + [ + 53.5039024, + 10.0078548 + ], + [ + 53.5038565, + 10.0078466 + ], + [ + 53.503794, + 10.0078308 + ], + [ + 53.503655, + 10.0078117 + ], + [ + 53.5029283, + 10.0076624 + ], + [ + 53.5026946, + 10.007603 + ] + ] + }, + { + "osmId": "34287589", + "name": null, + "lengthMeters": 85.63297206524544, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5228641, + 10.0091996 + ], + [ + 53.5228336, + 10.0093214 + ], + [ + 53.5227976, + 10.0094491 + ], + [ + 53.5227611, + 10.0095682 + ], + [ + 53.5227191, + 10.0096822 + ], + [ + 53.522704, + 10.0097246 + ], + [ + 53.5226697, + 10.0098149 + ], + [ + 53.5226239, + 10.0099135 + ], + [ + 53.5225755, + 10.0100077 + ], + [ + 53.5224979, + 10.0101516 + ], + [ + 53.5224327, + 10.0102587 + ] + ] + }, + { + "osmId": "34287593", + "name": null, + "lengthMeters": 428.59359040514977, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5210562, + 10.0115119 + ], + [ + 53.5208831, + 10.0115932 + ], + [ + 53.5206909, + 10.0116462 + ], + [ + 53.5205504, + 10.0116608 + ], + [ + 53.5204292, + 10.0116572 + ], + [ + 53.5202678, + 10.0116293 + ], + [ + 53.5200079, + 10.0115434 + ], + [ + 53.5198891, + 10.0114866 + ], + [ + 53.5197188, + 10.0113944 + ], + [ + 53.5195682, + 10.0112989 + ], + [ + 53.5191101, + 10.0110161 + ], + [ + 53.5190546, + 10.0109777 + ], + [ + 53.5189454, + 10.0109027 + ], + [ + 53.5186464, + 10.010725 + ], + [ + 53.5185235, + 10.0106662 + ], + [ + 53.518254, + 10.01054 + ], + [ + 53.51824, + 10.0105363 + ], + [ + 53.5181256, + 10.0104889 + ], + [ + 53.5176972, + 10.0103326 + ], + [ + 53.517339, + 10.0102019 + ] + ] + }, + { + "osmId": "34561386", + "name": null, + "lengthMeters": 286.8373463050551, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6381818, + 13.2055279 + ], + [ + 52.6386752, + 13.2053008 + ], + [ + 52.6397044, + 13.2048557 + ], + [ + 52.6406765, + 13.2044469 + ] + ] + }, + { + "osmId": "34561394", + "name": null, + "lengthMeters": 280.2647009946246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6383596, + 13.2058015 + ], + [ + 52.6384913, + 13.2057453 + ], + [ + 52.6385393, + 13.2057245 + ], + [ + 52.6389088, + 13.2055647 + ], + [ + 52.639578, + 13.2052707 + ], + [ + 52.6396026, + 13.2052599 + ], + [ + 52.6407957, + 13.2047358 + ] + ] + }, + { + "osmId": "34561396", + "name": null, + "lengthMeters": 597.3995276014568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6410618, + 13.204276 + ], + [ + 52.6415573, + 13.2040533 + ], + [ + 52.6416877, + 13.2039947 + ], + [ + 52.6421169, + 13.2038468 + ], + [ + 52.6423243, + 13.2037881 + ], + [ + 52.6426223, + 13.2037266 + ], + [ + 52.6428409, + 13.2037041 + ], + [ + 52.643052, + 13.2036942 + ], + [ + 52.6440749, + 13.203646 + ], + [ + 52.6451685, + 13.2036108 + ], + [ + 52.6457, + 13.2035937 + ], + [ + 52.6463955, + 13.2036131 + ] + ] + }, + { + "osmId": "34561453", + "name": null, + "lengthMeters": 182.6238798474817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.592103, + 13.4110249 + ], + [ + 52.5921668, + 13.4112137 + ], + [ + 52.5922287, + 13.4113721 + ], + [ + 52.5922565, + 13.4114467 + ], + [ + 52.5922742, + 13.4114933 + ], + [ + 52.5922874, + 13.4115257 + ], + [ + 52.5923025, + 13.4115564 + ], + [ + 52.5923188, + 13.4115825 + ], + [ + 52.5923387, + 13.411612 + ], + [ + 52.5923587, + 13.411636 + ], + [ + 52.5923755, + 13.4116525 + ], + [ + 52.592396, + 13.411668 + ], + [ + 52.592419, + 13.4116815 + ], + [ + 52.5924486, + 13.411695 + ], + [ + 52.5924861, + 13.4117044 + ], + [ + 52.5925263, + 13.4116977 + ], + [ + 52.5925673, + 13.4116848 + ], + [ + 52.592612, + 13.4116597 + ], + [ + 52.5926566, + 13.4116147 + ], + [ + 52.5926835, + 13.4115763 + ], + [ + 52.592709, + 13.4115311 + ], + [ + 52.5927301, + 13.4114873 + ], + [ + 52.5927488, + 13.41142 + ], + [ + 52.5927599, + 13.4113604 + ], + [ + 52.5927662, + 13.4112853 + ], + [ + 52.592765, + 13.4112104 + ], + [ + 52.5927569, + 13.4111416 + ], + [ + 52.5927449, + 13.411084 + ], + [ + 52.5927173, + 13.4110026 + ], + [ + 52.5926935, + 13.4109564 + ], + [ + 52.5926694, + 13.4109162 + ], + [ + 52.5926403, + 13.4108804 + ], + [ + 52.5926091, + 13.4108509 + ], + [ + 52.5925669, + 13.410828 + ], + [ + 52.5925196, + 13.4108156 + ], + [ + 52.5924778, + 13.4108161 + ], + [ + 52.5924525, + 13.4108216 + ], + [ + 52.5924163, + 13.4108372 + ], + [ + 52.5923682, + 13.4108568 + ], + [ + 52.5923283, + 13.4108728 + ], + [ + 52.5923061, + 13.4108797 + ] + ] + }, + { + "osmId": "34699666", + "name": null, + "lengthMeters": 92.00966196952895, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5877667, + 10.0414496 + ], + [ + 53.5878171, + 10.0409644 + ], + [ + 53.5878765, + 10.040392 + ], + [ + 53.5878798, + 10.0403718 + ], + [ + 53.5879139, + 10.040165 + ], + [ + 53.5879273, + 10.0400833 + ] + ] + }, + { + "osmId": "35001684", + "name": null, + "lengthMeters": 184.7506974238872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6670167, + 10.2313679 + ], + [ + 53.6674443, + 10.2322686 + ], + [ + 53.6677036, + 10.232772 + ], + [ + 53.6679461, + 10.2333207 + ], + [ + 53.6680519, + 10.23356 + ] + ] + }, + { + "osmId": "35001685", + "name": null, + "lengthMeters": 165.55527046905115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6683409, + 10.2342117 + ], + [ + 53.6681505, + 10.2336652 + ], + [ + 53.6679837, + 10.2331115 + ], + [ + 53.6677987, + 10.2326226 + ], + [ + 53.6675719, + 10.2320633 + ] + ] + }, + { + "osmId": "35091319", + "name": null, + "lengthMeters": 1469.9990941640333, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5751542, + 9.9296811 + ], + [ + 53.5756098, + 9.9292457 + ], + [ + 53.575962, + 9.9289198 + ], + [ + 53.5764998, + 9.9284592 + ], + [ + 53.5770445, + 9.9280216 + ], + [ + 53.5771555, + 9.9279333 + ], + [ + 53.5775016, + 9.9276698 + ], + [ + 53.5777047, + 9.9275152 + ], + [ + 53.5783504, + 9.9270183 + ], + [ + 53.5789752, + 9.9265402 + ], + [ + 53.5796228, + 9.9260448 + ], + [ + 53.580881, + 9.9250779 + ], + [ + 53.5816377, + 9.9245036 + ], + [ + 53.5832087, + 9.9232961 + ], + [ + 53.5843353, + 9.9224319 + ], + [ + 53.5855489, + 9.9215063 + ], + [ + 53.5867214, + 9.9206052 + ], + [ + 53.5871354, + 9.9202832 + ] + ] + }, + { + "osmId": "35200838", + "name": null, + "lengthMeters": 99.99312870772178, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5524652, + 13.3991421 + ], + [ + 52.5527276, + 13.399023 + ], + [ + 52.5533421, + 13.3988177 + ] + ] + }, + { + "osmId": "35200839", + "name": null, + "lengthMeters": 182.09206275920172, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5524652, + 13.3991421 + ], + [ + 52.5521962, + 13.3992638 + ], + [ + 52.5518202, + 13.399431 + ], + [ + 52.5512847, + 13.39967 + ], + [ + 52.5508938, + 13.3998954 + ] + ] + }, + { + "osmId": "35323402", + "name": null, + "lengthMeters": 178.57136123786847, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4194407, + 13.176355 + ], + [ + 52.4193181, + 13.1761241 + ], + [ + 52.4191926, + 13.1758807 + ], + [ + 52.4190962, + 13.1756839 + ], + [ + 52.4189948, + 13.1754718 + ], + [ + 52.4188227, + 13.1751043 + ], + [ + 52.4184462, + 13.1742885 + ] + ] + }, + { + "osmId": "35381210", + "name": null, + "lengthMeters": 301.0726360375967, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1853159, + 11.6441544 + ], + [ + 48.1856766, + 11.6443355 + ], + [ + 48.1858238, + 11.6444184 + ], + [ + 48.1860381, + 11.6445392 + ], + [ + 48.1864081, + 11.6447552 + ], + [ + 48.1874427, + 11.6453592 + ], + [ + 48.1878489, + 11.6455877 + ] + ] + }, + { + "osmId": "35604591", + "name": null, + "lengthMeters": 1180.4388938830173, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5712005, + 9.9888438 + ], + [ + 53.568977, + 9.9887406 + ], + [ + 53.5678237, + 9.9886894 + ], + [ + 53.5676364, + 9.988682 + ], + [ + 53.5672178, + 9.9886527 + ], + [ + 53.5668801, + 9.9886489 + ], + [ + 53.5666585, + 9.9886696 + ], + [ + 53.5664985, + 9.9886911 + ], + [ + 53.5662809, + 9.9887369 + ], + [ + 53.5660722, + 9.9887933 + ], + [ + 53.5641664, + 9.9893264 + ], + [ + 53.5638828, + 9.989391 + ], + [ + 53.5636336, + 9.9894092 + ], + [ + 53.5635132, + 9.9894037 + ], + [ + 53.5632384, + 9.9893727 + ], + [ + 53.5630342, + 9.9893306 + ], + [ + 53.562873, + 9.9892738 + ], + [ + 53.5627262, + 9.9892171 + ], + [ + 53.5619722, + 9.9888422 + ], + [ + 53.5612855, + 9.9885144 + ], + [ + 53.5612103, + 9.9884815 + ], + [ + 53.5611094, + 9.9884492 + ], + [ + 53.5609894, + 9.9884183 + ], + [ + 53.5608756, + 9.9883967 + ], + [ + 53.5606958, + 9.9883807 + ] + ] + }, + { + "osmId": "35738491", + "name": "Vogelfluglinie", + "lengthMeters": 6836.002689760086, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6143605, + 10.1657226 + ], + [ + 53.6149897, + 10.1663968 + ], + [ + 53.6164761, + 10.1679853 + ], + [ + 53.6170162, + 10.1685673 + ], + [ + 53.619573, + 10.171311 + ], + [ + 53.6202316, + 10.17203 + ], + [ + 53.62033, + 10.1721302 + ], + [ + 53.6211483, + 10.1730421 + ], + [ + 53.6215313, + 10.1734968 + ], + [ + 53.6218531, + 10.1739134 + ], + [ + 53.6221228, + 10.1742955 + ], + [ + 53.6224017, + 10.1747296 + ], + [ + 53.6228137, + 10.1754242 + ], + [ + 53.622899, + 10.1755746 + ], + [ + 53.6230486, + 10.1758595 + ], + [ + 53.6232488, + 10.176263 + ], + [ + 53.6235128, + 10.1768402 + ], + [ + 53.6235958, + 10.1770333 + ], + [ + 53.6239015, + 10.1777842 + ], + [ + 53.6239824, + 10.1780056 + ], + [ + 53.6240291, + 10.1781318 + ], + [ + 53.6242221, + 10.1786573 + ], + [ + 53.6254564, + 10.1822598 + ], + [ + 53.6266341, + 10.1857057 + ], + [ + 53.6269967, + 10.1867622 + ], + [ + 53.6272795, + 10.1875448 + ], + [ + 53.6275609, + 10.1882565 + ], + [ + 53.627613, + 10.1883761 + ], + [ + 53.6277741, + 10.1887456 + ], + [ + 53.6280192, + 10.1892665 + ], + [ + 53.62826, + 10.1897263 + ], + [ + 53.6285264, + 10.1902377 + ], + [ + 53.6288112, + 10.1906996 + ], + [ + 53.6288593, + 10.1907776 + ], + [ + 53.6290162, + 10.1910178 + ], + [ + 53.6291509, + 10.1912245 + ], + [ + 53.6294985, + 10.1916804 + ], + [ + 53.6298321, + 10.1920986 + ], + [ + 53.6302962, + 10.1926269 + ], + [ + 53.6307516, + 10.1930842 + ], + [ + 53.6312577, + 10.1935489 + ], + [ + 53.6332401, + 10.1953073 + ], + [ + 53.6333739, + 10.1954236 + ], + [ + 53.6338239, + 10.1958145 + ], + [ + 53.63609, + 10.1978294 + ], + [ + 53.6368346, + 10.1984852 + ], + [ + 53.6389389, + 10.2003386 + ], + [ + 53.6395832, + 10.2009061 + ], + [ + 53.6413658, + 10.2024952 + ], + [ + 53.6429811, + 10.2039268 + ], + [ + 53.6437641, + 10.2046105 + ], + [ + 53.6438274, + 10.204669 + ], + [ + 53.6447679, + 10.2054755 + ], + [ + 53.6453808, + 10.2059534 + ], + [ + 53.6459565, + 10.2063418 + ], + [ + 53.6463326, + 10.2065704 + ], + [ + 53.646778, + 10.206826 + ], + [ + 53.6469476, + 10.2069245 + ], + [ + 53.6479466, + 10.2074963 + ], + [ + 53.6496434, + 10.2084676 + ], + [ + 53.6497433, + 10.2085248 + ], + [ + 53.6512776, + 10.2094015 + ], + [ + 53.6525587, + 10.2101336 + ], + [ + 53.6530467, + 10.2104409 + ], + [ + 53.6533079, + 10.2105956 + ], + [ + 53.6541178, + 10.2112103 + ], + [ + 53.6546098, + 10.2116131 + ], + [ + 53.6550112, + 10.211945 + ], + [ + 53.6561949, + 10.2129014 + ], + [ + 53.657436, + 10.2139042 + ], + [ + 53.6582242, + 10.2145883 + ], + [ + 53.6589396, + 10.215289 + ], + [ + 53.659788, + 10.2161844 + ], + [ + 53.6605004, + 10.2170548 + ], + [ + 53.6611035, + 10.2178568 + ], + [ + 53.661635, + 10.2186517 + ], + [ + 53.6617915, + 10.2188857 + ], + [ + 53.6622601, + 10.219651 + ], + [ + 53.6627783, + 10.220599 + ], + [ + 53.6631258, + 10.2212429 + ], + [ + 53.6633755, + 10.2217801 + ], + [ + 53.66347, + 10.2219834 + ], + [ + 53.6638836, + 10.2229135 + ] + ] + }, + { + "osmId": "35738742", + "name": null, + "lengthMeters": 1045.7812085845321, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5714972, + 10.0828055 + ], + [ + 53.5721269, + 10.0850371 + ], + [ + 53.5727621, + 10.0874028 + ], + [ + 53.5729575, + 10.0881937 + ], + [ + 53.573761, + 10.0928248 + ], + [ + 53.5742076, + 10.0956547 + ], + [ + 53.5742956, + 10.0962127 + ], + [ + 53.5744475, + 10.0968751 + ], + [ + 53.574679, + 10.0976581 + ] + ] + }, + { + "osmId": "36106216", + "name": null, + "lengthMeters": 410.78061333104614, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494539, + 13.4037102 + ], + [ + 52.5495379, + 13.4054229 + ], + [ + 52.5495686, + 13.4060151 + ], + [ + 52.5496658, + 13.4078669 + ], + [ + 52.549693, + 13.4084437 + ], + [ + 52.5497038, + 13.4088183 + ], + [ + 52.5497069, + 13.4091067 + ], + [ + 52.5497036, + 13.4094373 + ], + [ + 52.5496941, + 13.4097683 + ] + ] + }, + { + "osmId": "36783566", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 146.97361739376035, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5167451, + 13.5386808 + ], + [ + 52.51673, + 13.5386826 + ], + [ + 52.5154267, + 13.5388357 + ] + ] + }, + { + "osmId": "36784503", + "name": null, + "lengthMeters": 1089.9351518182311, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5131455, + 13.5546917 + ], + [ + 52.513153, + 13.5545171 + ], + [ + 52.5131809, + 13.5538641 + ], + [ + 52.5132101, + 13.5534669 + ], + [ + 52.5132803, + 13.5528105 + ], + [ + 52.5133882, + 13.5521017 + ], + [ + 52.5135448, + 13.5513354 + ], + [ + 52.5137408, + 13.5505993 + ], + [ + 52.5140644, + 13.5496452 + ], + [ + 52.5146901, + 13.5478834 + ], + [ + 52.5149612, + 13.5468731 + ], + [ + 52.5151212, + 13.5460357 + ], + [ + 52.5154004, + 13.5440381 + ], + [ + 52.5154626, + 13.5434708 + ], + [ + 52.5155072, + 13.5429024 + ], + [ + 52.5155362, + 13.5422668 + ], + [ + 52.5155405, + 13.5418191 + ], + [ + 52.5155298, + 13.5412753 + ], + [ + 52.5155005, + 13.5407894 + ], + [ + 52.5154596, + 13.5403083 + ], + [ + 52.5154178, + 13.5399369 + ], + [ + 52.5153426, + 13.5393762 + ] + ] + }, + { + "osmId": "36784505", + "name": null, + "lengthMeters": 441.8316114319579, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5132393, + 13.5493991 + ], + [ + 52.513098, + 13.5496185 + ], + [ + 52.512837, + 13.5499658 + ], + [ + 52.5126246, + 13.5502183 + ], + [ + 52.5124022, + 13.5504493 + ], + [ + 52.5122866, + 13.550556 + ], + [ + 52.5119586, + 13.5508376 + ], + [ + 52.511729, + 13.550991 + ], + [ + 52.5114937, + 13.5511275 + ], + [ + 52.5112611, + 13.5512306 + ], + [ + 52.5110374, + 13.5513149 + ], + [ + 52.5107914, + 13.5513853 + ], + [ + 52.5105485, + 13.5514367 + ], + [ + 52.5104078, + 13.5514541 + ], + [ + 52.5100628, + 13.5514737 + ], + [ + 52.5098232, + 13.5514542 + ], + [ + 52.5097576, + 13.551445 + ], + [ + 52.5095974, + 13.5514214 + ] + ] + }, + { + "osmId": "36784507", + "name": null, + "lengthMeters": 116.26093908333877, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5125176, + 13.572253 + ], + [ + 52.512547, + 13.5724202 + ], + [ + 52.5125782, + 13.5727125 + ], + [ + 52.5125932, + 13.5728928 + ], + [ + 52.5126069, + 13.5731354 + ], + [ + 52.5126139, + 13.5733619 + ], + [ + 52.5126142, + 13.5739567 + ] + ] + }, + { + "osmId": "36785317", + "name": null, + "lengthMeters": 121.32257969978136, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381919, + 13.6344989 + ], + [ + 52.5382287, + 13.6343319 + ], + [ + 52.5385593, + 13.6328098 + ] + ] + }, + { + "osmId": "36785319", + "name": null, + "lengthMeters": 276.3167951836158, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5123307, + 13.5712767 + ], + [ + 52.5121985, + 13.5709044 + ], + [ + 52.512054, + 13.5705848 + ], + [ + 52.5119336, + 13.5703457 + ], + [ + 52.5117956, + 13.5700967 + ], + [ + 52.5115428, + 13.5696708 + ], + [ + 52.5112625, + 13.5691971 + ], + [ + 52.5106846, + 13.5682358 + ] + ] + }, + { + "osmId": "36785394", + "name": null, + "lengthMeters": 991.7099141767358, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118627, + 13.6062403 + ], + [ + 52.5118387, + 13.6056861 + ], + [ + 52.5118005, + 13.6047815 + ], + [ + 52.5117834, + 13.6040432 + ], + [ + 52.5117762, + 13.6033124 + ], + [ + 52.511769, + 13.6024103 + ], + [ + 52.5117614, + 13.6014593 + ], + [ + 52.511759, + 13.6010494 + ], + [ + 52.5117639, + 13.6005337 + ], + [ + 52.5117887, + 13.5996526 + ], + [ + 52.5118963, + 13.5968363 + ], + [ + 52.5119344, + 13.5959692 + ], + [ + 52.5119889, + 13.5950625 + ], + [ + 52.5120536, + 13.5941297 + ], + [ + 52.5120922, + 13.5934678 + ], + [ + 52.5121224, + 13.5927819 + ], + [ + 52.5121596, + 13.5916159 + ] + ] + }, + { + "osmId": "36789614", + "name": null, + "lengthMeters": 2870.80620581524, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5178507, + 13.6721423 + ], + [ + 52.5181469, + 13.675131 + ], + [ + 52.5192814, + 13.6872509 + ], + [ + 52.5192928, + 13.6873691 + ], + [ + 52.5193036, + 13.6874828 + ], + [ + 52.5194454, + 13.6889683 + ], + [ + 52.5196523, + 13.6912076 + ], + [ + 52.5208756, + 13.7046968 + ], + [ + 52.5208886, + 13.7048406 + ], + [ + 52.5209048, + 13.7050117 + ], + [ + 52.5217622, + 13.7140817 + ] + ] + }, + { + "osmId": "36789616", + "name": null, + "lengthMeters": 202.42079826743134, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5179352, + 13.6721192 + ], + [ + 52.5181111, + 13.6740011 + ], + [ + 52.5181612, + 13.674515 + ], + [ + 52.518196, + 13.6749096 + ], + [ + 52.518201, + 13.6749628 + ], + [ + 52.518214, + 13.6750754 + ] + ] + }, + { + "osmId": "36789617", + "name": null, + "lengthMeters": 1963.8767164116502, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5155668, + 13.6458407 + ], + [ + 52.5154885, + 13.645185 + ], + [ + 52.5153536, + 13.6442219 + ], + [ + 52.5152607, + 13.6434899 + ], + [ + 52.5150723, + 13.6415494 + ], + [ + 52.5140186, + 13.6302694 + ], + [ + 52.5135624, + 13.6254875 + ], + [ + 52.5132826, + 13.6222663 + ], + [ + 52.5131763, + 13.6206104 + ], + [ + 52.5131727, + 13.6205451 + ], + [ + 52.5131679, + 13.6204753 + ], + [ + 52.5130966, + 13.6192826 + ], + [ + 52.5130517, + 13.6185024 + ], + [ + 52.5130048, + 13.617717 + ], + [ + 52.5129565, + 13.6171486 + ] + ] + }, + { + "osmId": "36845843", + "name": null, + "lengthMeters": 95.216525681625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5681785, + 9.96982 + ], + [ + 53.5678505, + 9.9698332 + ], + [ + 53.5673227, + 9.9698682 + ] + ] + }, + { + "osmId": "36853643", + "name": null, + "lengthMeters": 298.6303294636729, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3477811, + 13.6280684 + ], + [ + 52.3475459, + 13.6282553 + ], + [ + 52.347348, + 13.628406 + ], + [ + 52.3472876, + 13.6284531 + ], + [ + 52.3471196, + 13.6285711 + ], + [ + 52.3463757, + 13.6291649 + ], + [ + 52.3461555, + 13.629328 + ], + [ + 52.345909, + 13.6295426 + ], + [ + 52.3453594, + 13.6299671 + ] + ] + }, + { + "osmId": "36853644", + "name": null, + "lengthMeters": 449.7349650466327, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512259, + 13.2859988 + ], + [ + 52.5119288, + 13.2859647 + ], + [ + 52.5116805, + 13.2859162 + ], + [ + 52.5114834, + 13.2858604 + ], + [ + 52.5113752, + 13.2858276 + ], + [ + 52.5112204, + 13.2857767 + ], + [ + 52.5110695, + 13.2857177 + ], + [ + 52.5108762, + 13.2856384 + ], + [ + 52.5106589, + 13.2855309 + ], + [ + 52.5102453, + 13.2853113 + ], + [ + 52.5095606, + 13.2848399 + ], + [ + 52.509124, + 13.2845008 + ], + [ + 52.5086524, + 13.2840901 + ], + [ + 52.5085222, + 13.2839756 + ], + [ + 52.5084581, + 13.2839179 + ] + ] + }, + { + "osmId": "36854717", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 124.0577059308777, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0160589, + 11.5852065 + ], + [ + 48.0171198, + 11.5846903 + ] + ] + }, + { + "osmId": "36854718", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 3334.9536975598003, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0083956, + 11.5924902 + ], + [ + 48.0075594, + 11.5940553 + ], + [ + 48.0071096, + 11.5948959 + ], + [ + 48.0066591, + 11.5957219 + ], + [ + 48.0058155, + 11.5973253 + ], + [ + 48.005323, + 11.5982363 + ], + [ + 48.0046464, + 11.5994903 + ], + [ + 48.0044207, + 11.5999117 + ], + [ + 48.0038613, + 11.6009558 + ], + [ + 48.0030743, + 11.6024271 + ], + [ + 48.002171, + 11.6041068 + ], + [ + 48.0008218, + 11.6066156 + ], + [ + 48.0001373, + 11.6078884 + ], + [ + 47.9999271, + 11.6082826 + ], + [ + 47.9985964, + 11.6107785 + ], + [ + 47.9982515, + 11.6114254 + ], + [ + 47.9977074, + 11.6124391 + ], + [ + 47.997136, + 11.6134961 + ], + [ + 47.9963531, + 11.6149411 + ], + [ + 47.9959981, + 11.615596 + ], + [ + 47.9954519, + 11.6166146 + ], + [ + 47.9941042, + 11.619128 + ], + [ + 47.993206, + 11.620803 + ], + [ + 47.9924515, + 11.62221 + ], + [ + 47.9918845, + 11.6232657 + ], + [ + 47.9909913, + 11.6249286 + ], + [ + 47.9906247, + 11.6256111 + ], + [ + 47.9896765, + 11.6273865 + ], + [ + 47.9896364, + 11.6274616 + ] + ] + }, + { + "osmId": "36966114", + "name": "Schenkendorfbr\u00fccke", + "lengthMeters": 106.2031175623564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1767212, + 11.58853 + ], + [ + 48.1776663, + 11.5887368 + ] + ] + }, + { + "osmId": "37014709", + "name": null, + "lengthMeters": 343.74050212335015, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0625351, + 11.6122715 + ], + [ + 48.0628884, + 11.6122889 + ], + [ + 48.0631178, + 11.6123001 + ], + [ + 48.0651502, + 11.6124 + ], + [ + 48.0654258, + 11.6124152 + ], + [ + 48.0656247, + 11.6124262 + ] + ] + }, + { + "osmId": "37042989", + "name": "Berliner Ringbahn", + "lengthMeters": 251.66892254746475, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482424, + 13.3821645 + ], + [ + 52.5482067, + 13.3817969 + ], + [ + 52.5481701, + 13.3815268 + ], + [ + 52.5481254, + 13.381218 + ], + [ + 52.5480356, + 13.3806824 + ], + [ + 52.5479158, + 13.380117 + ], + [ + 52.5476107, + 13.378911 + ], + [ + 52.5475369, + 13.3786421 + ] + ] + }, + { + "osmId": "37043132", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 604.7895771580118, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6108876, + 13.4543778 + ], + [ + 52.6107817, + 13.4545212 + ], + [ + 52.6104244, + 13.4550052 + ], + [ + 52.6100293, + 13.4555426 + ], + [ + 52.6094406, + 13.4563376 + ], + [ + 52.6091321, + 13.4567574 + ], + [ + 52.6084316, + 13.457705 + ], + [ + 52.6078948, + 13.4584312 + ], + [ + 52.6066887, + 13.4600709 + ] + ] + }, + { + "osmId": "37045503", + "name": null, + "lengthMeters": 560.8198009363715, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4961224, + 13.4908446 + ], + [ + 52.4961155, + 13.490867 + ], + [ + 52.4960759, + 13.4909954 + ], + [ + 52.4959782, + 13.4912851 + ], + [ + 52.4958705, + 13.4915787 + ], + [ + 52.4956911, + 13.4920293 + ], + [ + 52.4946229, + 13.4945141 + ], + [ + 52.4945772, + 13.494622 + ], + [ + 52.4941692, + 13.4955458 + ], + [ + 52.4935495, + 13.4969699 + ], + [ + 52.4932516, + 13.4976498 + ] + ] + }, + { + "osmId": "37250629", + "name": null, + "lengthMeters": 554.6970176010514, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5626992, + 13.557793 + ], + [ + 52.5619051, + 13.5571172 + ], + [ + 52.5615133, + 13.5567729 + ], + [ + 52.5594006, + 13.5549501 + ], + [ + 52.5582835, + 13.5539753 + ] + ] + }, + { + "osmId": "37262114", + "name": null, + "lengthMeters": 301.69503126240795, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5074717, + 13.4438389 + ], + [ + 52.5074856, + 13.4437615 + ], + [ + 52.5076078, + 13.4431257 + ], + [ + 52.5076645, + 13.4428486 + ], + [ + 52.5076823, + 13.4427613 + ], + [ + 52.5077734, + 13.4423943 + ], + [ + 52.5079467, + 13.4417896 + ], + [ + 52.5083542, + 13.4405451 + ], + [ + 52.5086023, + 13.4398015 + ] + ] + }, + { + "osmId": "37262733", + "name": null, + "lengthMeters": 93.38265538792274, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1544294, + 11.511546 + ], + [ + 48.1544816, + 11.5115054 + ], + [ + 48.154529, + 11.5114871 + ], + [ + 48.1545618, + 11.5114815 + ], + [ + 48.1545989, + 11.5114795 + ], + [ + 48.1546485, + 11.5114793 + ], + [ + 48.1546808, + 11.5114786 + ], + [ + 48.1552608, + 11.5114849 + ] + ] + }, + { + "osmId": "37262993", + "name": null, + "lengthMeters": 725.0629996751112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1637588, + 11.5069364 + ], + [ + 48.1637263, + 11.5070203 + ], + [ + 48.1637014, + 11.5070776 + ], + [ + 48.1634824, + 11.5075817 + ], + [ + 48.1631984, + 11.5081836 + ], + [ + 48.1628459, + 11.5088998 + ], + [ + 48.1625613, + 11.5094492 + ], + [ + 48.1622732, + 11.5099888 + ], + [ + 48.1621948, + 11.5101474 + ], + [ + 48.162113, + 11.5102977 + ], + [ + 48.1621021, + 11.5103167 + ], + [ + 48.1619725, + 11.5105419 + ], + [ + 48.1618281, + 11.5107865 + ], + [ + 48.1617159, + 11.510957 + ], + [ + 48.1616023, + 11.5111184 + ], + [ + 48.1615601, + 11.5111691 + ], + [ + 48.1615162, + 11.5112145 + ], + [ + 48.16147, + 11.511251 + ], + [ + 48.1614252, + 11.5112826 + ], + [ + 48.1613831, + 11.5113063 + ], + [ + 48.1613358, + 11.5113271 + ], + [ + 48.1612717, + 11.511348 + ], + [ + 48.1611861, + 11.5113647 + ], + [ + 48.1611122, + 11.5113737 + ], + [ + 48.1610078, + 11.5113839 + ], + [ + 48.1598161, + 11.5114362 + ], + [ + 48.15943, + 11.5114389 + ], + [ + 48.1590745, + 11.5114439 + ], + [ + 48.1588622, + 11.5114475 + ], + [ + 48.1587441, + 11.5114495 + ], + [ + 48.1586542, + 11.5114502 + ] + ] + }, + { + "osmId": "37337881", + "name": null, + "lengthMeters": 77.36807559606363, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.485983, + 13.2575897 + ], + [ + 52.4861038, + 13.2577354 + ], + [ + 52.4863276, + 13.2579841 + ], + [ + 52.4865436, + 13.2582654 + ] + ] + }, + { + "osmId": "37409644", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 383.9933021354392, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0108374, + 11.5888595 + ], + [ + 48.0105002, + 11.5892508 + ], + [ + 48.0101959, + 11.5896477 + ], + [ + 48.0100398, + 11.5898602 + ], + [ + 48.0097393, + 11.5902692 + ], + [ + 48.0093295, + 11.5908739 + ], + [ + 48.0090413, + 11.5913388 + ], + [ + 48.0088138, + 11.591734 + ], + [ + 48.0083956, + 11.5924902 + ] + ] + }, + { + "osmId": "37427016", + "name": null, + "lengthMeters": 83.375947957138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505282, + 13.3171611 + ], + [ + 52.5052821, + 13.3170931 + ], + [ + 52.5052822, + 13.3170718 + ], + [ + 52.5052908, + 13.3165069 + ], + [ + 52.5052948, + 13.3163621 + ], + [ + 52.5053002, + 13.3162178 + ], + [ + 52.5053145, + 13.3159308 + ] + ] + }, + { + "osmId": "37427017", + "name": null, + "lengthMeters": 82.7164142698158, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5051738, + 13.3171438 + ], + [ + 52.505186, + 13.3169192 + ], + [ + 52.5052411, + 13.3159267 + ] + ] + }, + { + "osmId": "37427022", + "name": null, + "lengthMeters": 110.41937076673075, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5052609, + 13.3155776 + ], + [ + 52.5053516, + 13.313953 + ] + ] + }, + { + "osmId": "37427024", + "name": null, + "lengthMeters": 82.44371064608964, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5052088, + 13.3159256 + ], + [ + 52.5051525, + 13.3169144 + ], + [ + 52.5051405, + 13.3171385 + ] + ] + }, + { + "osmId": "37427028", + "name": null, + "lengthMeters": 370.183582654536, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505374, + 13.3135652 + ], + [ + 52.5054183, + 13.3127541 + ], + [ + 52.5054589, + 13.3119391 + ], + [ + 52.5054889, + 13.3112093 + ], + [ + 52.505508, + 13.3105337 + ], + [ + 52.505511, + 13.3102862 + ], + [ + 52.5055106, + 13.3100387 + ], + [ + 52.5055075, + 13.3097903 + ], + [ + 52.5055028, + 13.3095392 + ], + [ + 52.5054953, + 13.3093253 + ], + [ + 52.5054854, + 13.3091093 + ], + [ + 52.5054657, + 13.3087728 + ], + [ + 52.5054312, + 13.308354 + ], + [ + 52.5054259, + 13.3082909 + ], + [ + 52.5054129, + 13.3081521 + ], + [ + 52.505409, + 13.3081135 + ] + ] + }, + { + "osmId": "37427030", + "name": null, + "lengthMeters": 110.4764353793798, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053195, + 13.3139481 + ], + [ + 52.5053136, + 13.3140557 + ], + [ + 52.5052285, + 13.3155735 + ] + ] + }, + { + "osmId": "37427032", + "name": null, + "lengthMeters": 216.32513418262036, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054885, + 13.3067576 + ], + [ + 52.5054695, + 13.3064819 + ], + [ + 52.5054463, + 13.3062062 + ], + [ + 52.505425, + 13.3059961 + ], + [ + 52.5053979, + 13.3057501 + ], + [ + 52.5053824, + 13.3056372 + ], + [ + 52.5053788, + 13.3056111 + ], + [ + 52.5053638, + 13.3054939 + ], + [ + 52.505341, + 13.305339 + ], + [ + 52.5053376, + 13.3053158 + ], + [ + 52.5053304, + 13.3052719 + ], + [ + 52.5053004, + 13.3050884 + ], + [ + 52.5052957, + 13.30506 + ], + [ + 52.5052584, + 13.3048365 + ], + [ + 52.5052101, + 13.3045781 + ], + [ + 52.5051375, + 13.304239 + ], + [ + 52.5050907, + 13.304012 + ], + [ + 52.505042, + 13.3037874 + ], + [ + 52.5050245, + 13.3037042 + ], + [ + 52.5050167, + 13.303667 + ] + ] + }, + { + "osmId": "37427035", + "name": null, + "lengthMeters": 213.1904077824796, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054056, + 13.3067856 + ], + [ + 52.5053733, + 13.306517 + ], + [ + 52.5053386, + 13.3062473 + ], + [ + 52.5053001, + 13.3059832 + ], + [ + 52.5052609, + 13.3057427 + ], + [ + 52.5051964, + 13.3053799 + ], + [ + 52.5051884, + 13.3053355 + ], + [ + 52.5051597, + 13.3051768 + ], + [ + 52.5051498, + 13.3051253 + ], + [ + 52.5051099, + 13.3049184 + ], + [ + 52.5051085, + 13.3049109 + ], + [ + 52.505059, + 13.304661 + ], + [ + 52.5050116, + 13.3044327 + ], + [ + 52.5049517, + 13.3041442 + ], + [ + 52.504888, + 13.303857 + ], + [ + 52.5048679, + 13.3037662 + ] + ] + }, + { + "osmId": "37427037", + "name": null, + "lengthMeters": 210.19992627887063, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5052681, + 13.3068316 + ], + [ + 52.5052005, + 13.3062921 + ], + [ + 52.5051115, + 13.305718 + ], + [ + 52.5049846, + 13.305061 + ], + [ + 52.5049424, + 13.3048613 + ], + [ + 52.5049389, + 13.3048445 + ], + [ + 52.5049315, + 13.3048097 + ], + [ + 52.5049169, + 13.3047407 + ], + [ + 52.5048785, + 13.3045563 + ], + [ + 52.5048315, + 13.3043411 + ], + [ + 52.504726, + 13.3038609 + ] + ] + }, + { + "osmId": "37427039", + "name": null, + "lengthMeters": 208.7081956606752, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5052385, + 13.3068419 + ], + [ + 52.5051438, + 13.3063177 + ], + [ + 52.5050863, + 13.306036 + ], + [ + 52.5050255, + 13.3057542 + ], + [ + 52.5049596, + 13.3054539 + ], + [ + 52.5048378, + 13.3049059 + ], + [ + 52.5048333, + 13.3048849 + ], + [ + 52.5048215, + 13.3048307 + ], + [ + 52.5047776, + 13.3046348 + ], + [ + 52.5046219, + 13.3039303 + ] + ] + }, + { + "osmId": "37427050", + "name": null, + "lengthMeters": 194.91330542207362, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038595, + 13.3006699 + ], + [ + 52.5039059, + 13.3008801 + ], + [ + 52.5041158, + 13.3018306 + ], + [ + 52.5042251, + 13.3023229 + ], + [ + 52.5044286, + 13.3032397 + ], + [ + 52.5044581, + 13.3033765 + ] + ] + }, + { + "osmId": "37427051", + "name": null, + "lengthMeters": 121.2567232077357, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5037494, + 13.3007143 + ], + [ + 52.503792, + 13.300907 + ], + [ + 52.5038872, + 13.3013374 + ], + [ + 52.5041211, + 13.3023985 + ] + ] + }, + { + "osmId": "37427059", + "name": null, + "lengthMeters": 167.54934610403973, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5045157, + 13.3029064 + ], + [ + 52.5044712, + 13.3027009 + ], + [ + 52.5042461, + 13.3016956 + ], + [ + 52.5040728, + 13.3009016 + ], + [ + 52.5040003, + 13.3005803 + ] + ] + }, + { + "osmId": "37427062", + "name": null, + "lengthMeters": 194.49893601548865, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044957, + 13.303354 + ], + [ + 52.5044654, + 13.3032156 + ], + [ + 52.5043703, + 13.3027881 + ], + [ + 52.5042361, + 13.3021895 + ], + [ + 52.5041463, + 13.3017813 + ], + [ + 52.5040558, + 13.3013696 + ], + [ + 52.5039589, + 13.300929 + ], + [ + 52.5038983, + 13.3006532 + ] + ] + }, + { + "osmId": "37427064", + "name": null, + "lengthMeters": 207.6239053816564, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5045854, + 13.3039546 + ], + [ + 52.5045907, + 13.3039789 + ], + [ + 52.504594, + 13.3039939 + ], + [ + 52.5047836, + 13.3048516 + ], + [ + 52.5049042, + 13.3054038 + ], + [ + 52.5049603, + 13.3056679 + ], + [ + 52.5050195, + 13.3059598 + ], + [ + 52.5050892, + 13.306332 + ], + [ + 52.5051362, + 13.3065957 + ], + [ + 52.5051808, + 13.3068608 + ] + ] + }, + { + "osmId": "37427065", + "name": null, + "lengthMeters": 206.63482625180183, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044791, + 13.3040255 + ], + [ + 52.504484, + 13.3040472 + ], + [ + 52.5044894, + 13.3040709 + ], + [ + 52.5046707, + 13.3048713 + ], + [ + 52.5047337, + 13.3051371 + ], + [ + 52.5047985, + 13.3054028 + ], + [ + 52.5049041, + 13.3058323 + ], + [ + 52.5050316, + 13.3063502 + ], + [ + 52.5050924, + 13.3066106 + ], + [ + 52.5051499, + 13.3068723 + ] + ] + }, + { + "osmId": "37665124", + "name": null, + "lengthMeters": 394.2435563005563, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1368891, + 11.6147878 + ], + [ + 48.1368815, + 11.614657 + ], + [ + 48.1368257, + 11.6140127 + ], + [ + 48.136785, + 11.613532 + ], + [ + 48.1367326, + 11.6130242 + ], + [ + 48.1366767, + 11.6123281 + ], + [ + 48.1366358, + 11.611786 + ], + [ + 48.1365759, + 11.6109927 + ], + [ + 48.136506, + 11.6101397 + ], + [ + 48.1364831, + 11.6099326 + ], + [ + 48.1364238, + 11.6095231 + ] + ] + }, + { + "osmId": "37704644", + "name": null, + "lengthMeters": 213.25200588787357, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142358, + 13.5428584 + ], + [ + 52.5143056, + 13.5424627 + ], + [ + 52.5144098, + 13.5419792 + ], + [ + 52.5145269, + 13.5415739 + ], + [ + 52.5146212, + 13.5412758 + ], + [ + 52.5147478, + 13.5409618 + ], + [ + 52.5148687, + 13.5406933 + ], + [ + 52.5149567, + 13.5405236 + ], + [ + 52.5150168, + 13.5404246 + ], + [ + 52.5151709, + 13.540157 + ] + ] + }, + { + "osmId": "37730476", + "name": null, + "lengthMeters": 1378.9750655042894, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140523, + 13.2212452 + ], + [ + 52.5142635, + 13.2210413 + ], + [ + 52.5144378, + 13.220893 + ], + [ + 52.5145637, + 13.2207952 + ], + [ + 52.5146836, + 13.2207097 + ], + [ + 52.5148103, + 13.220623 + ], + [ + 52.514943, + 13.2205413 + ], + [ + 52.5151258, + 13.2204444 + ], + [ + 52.5152453, + 13.2203907 + ], + [ + 52.5154407, + 13.2203081 + ], + [ + 52.5155892, + 13.2202549 + ], + [ + 52.5157271, + 13.220214 + ], + [ + 52.5157663, + 13.2202043 + ], + [ + 52.5157866, + 13.2201993 + ], + [ + 52.5158073, + 13.2201942 + ], + [ + 52.5158787, + 13.2201781 + ], + [ + 52.5159741, + 13.220162 + ], + [ + 52.5161092, + 13.2201397 + ], + [ + 52.5162341, + 13.2201172 + ], + [ + 52.5164087, + 13.2200972 + ], + [ + 52.5166338, + 13.2200804 + ], + [ + 52.516886, + 13.2200586 + ], + [ + 52.5174038, + 13.2200051 + ], + [ + 52.517761, + 13.2199784 + ], + [ + 52.5178651, + 13.2199691 + ], + [ + 52.5193408, + 13.219838 + ], + [ + 52.5194082, + 13.219832 + ], + [ + 52.5195798, + 13.2198121 + ], + [ + 52.5197717, + 13.2197885 + ], + [ + 52.5199749, + 13.2197683 + ], + [ + 52.5203272, + 13.219736 + ], + [ + 52.5205489, + 13.2197184 + ], + [ + 52.5207331, + 13.2197042 + ], + [ + 52.520909, + 13.2196962 + ], + [ + 52.520991, + 13.2196959 + ], + [ + 52.5210871, + 13.219696 + ], + [ + 52.5212002, + 13.2197046 + ], + [ + 52.5213313, + 13.2197153 + ], + [ + 52.5214692, + 13.2197397 + ], + [ + 52.5216171, + 13.2197686 + ], + [ + 52.5217457, + 13.2198016 + ], + [ + 52.5218525, + 13.2198349 + ], + [ + 52.5219923, + 13.2198831 + ], + [ + 52.5221145, + 13.2199274 + ], + [ + 52.5222192, + 13.2199695 + ], + [ + 52.5223301, + 13.2200228 + ], + [ + 52.5224657, + 13.2200947 + ], + [ + 52.522587, + 13.2201658 + ], + [ + 52.5226694, + 13.2202148 + ], + [ + 52.5227751, + 13.2202857 + ], + [ + 52.5231668, + 13.2205278 + ], + [ + 52.5234603, + 13.2207133 + ], + [ + 52.5238231, + 13.2209453 + ], + [ + 52.5241534, + 13.2211523 + ], + [ + 52.5244771, + 13.2213569 + ], + [ + 52.5246802, + 13.2214849 + ], + [ + 52.5249941, + 13.2216841 + ], + [ + 52.5254388, + 13.2219704 + ], + [ + 52.5258861, + 13.222246 + ], + [ + 52.5260303, + 13.2223382 + ], + [ + 52.5260386, + 13.222343 + ] + ] + }, + { + "osmId": "37730477", + "name": null, + "lengthMeters": 357.0563088555732, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.514023, + 13.2211912 + ], + [ + 52.5138088, + 13.221402 + ], + [ + 52.5136098, + 13.2215988 + ], + [ + 52.5134313, + 13.2218024 + ], + [ + 52.5132829, + 13.2219813 + ], + [ + 52.5131047, + 13.2222362 + ], + [ + 52.51269, + 13.222877 + ], + [ + 52.5125435, + 13.2231145 + ], + [ + 52.5122904, + 13.2235296 + ], + [ + 52.5120816, + 13.2238654 + ], + [ + 52.5118703, + 13.2242041 + ], + [ + 52.5116175, + 13.2246152 + ], + [ + 52.5116063, + 13.2246336 + ] + ] + }, + { + "osmId": "37810574", + "name": null, + "lengthMeters": 199.21114340282483, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3726768, + 13.145493 + ], + [ + 52.3726843, + 13.145681 + ], + [ + 52.3726953, + 13.1458137 + ], + [ + 52.3727132, + 13.1459039 + ], + [ + 52.3727846, + 13.1460665 + ], + [ + 52.3728529, + 13.1461654 + ], + [ + 52.3729363, + 13.1462474 + ], + [ + 52.3730173, + 13.1462867 + ], + [ + 52.3731002, + 13.1462992 + ], + [ + 52.3731932, + 13.1462926 + ], + [ + 52.3732821, + 13.14624 + ], + [ + 52.3733564, + 13.1461782 + ], + [ + 52.3734233, + 13.1460802 + ], + [ + 52.3734829, + 13.1459868 + ], + [ + 52.3735171, + 13.1458745 + ], + [ + 52.3735486, + 13.1457125 + ], + [ + 52.3735601, + 13.1455801 + ], + [ + 52.3735606, + 13.1454876 + ], + [ + 52.3735462, + 13.1453613 + ], + [ + 52.3735182, + 13.145243 + ], + [ + 52.3734401, + 13.1450511 + ] + ] + }, + { + "osmId": "37831035", + "name": "S\u00fcdring", + "lengthMeters": 234.63186761024676, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417398, + 11.5297917 + ], + [ + 48.142209, + 11.5309548 + ], + [ + 48.1424266, + 11.5315471 + ], + [ + 48.142564, + 11.5321479 + ], + [ + 48.1426269, + 11.5325285 + ], + [ + 48.1426345, + 11.5326276 + ] + ] + }, + { + "osmId": "37831036", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 527.3219704350153, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1361712, + 11.5272053 + ], + [ + 48.135894, + 11.527482 + ], + [ + 48.1356581, + 11.5277826 + ], + [ + 48.135232, + 11.5283688 + ], + [ + 48.135133, + 11.5285049 + ], + [ + 48.13456, + 11.5293499 + ], + [ + 48.1345469, + 11.5293692 + ], + [ + 48.1343971, + 11.5295901 + ], + [ + 48.13427, + 11.5297746 + ], + [ + 48.1337107, + 11.5305863 + ], + [ + 48.1333609, + 11.5310964 + ], + [ + 48.1332139, + 11.5312972 + ], + [ + 48.1332143, + 11.5312979 + ], + [ + 48.1330475, + 11.5315412 + ], + [ + 48.1327089, + 11.5320472 + ] + ] + }, + { + "osmId": "37831038", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 382.77719437204854, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402463, + 11.5271973 + ], + [ + 48.140144, + 11.5271033 + ], + [ + 48.1400154, + 11.5269956 + ], + [ + 48.1397498, + 11.5268055 + ], + [ + 48.1394312, + 11.5266368 + ], + [ + 48.139108, + 11.5264992 + ], + [ + 48.138832, + 11.5264231 + ], + [ + 48.1385186, + 11.52637 + ], + [ + 48.1382907, + 11.5263477 + ], + [ + 48.1380603, + 11.5263552 + ], + [ + 48.1377568, + 11.5263956 + ], + [ + 48.1374393, + 11.5264737 + ], + [ + 48.1372492, + 11.5265358 + ], + [ + 48.1370818, + 11.526605 + ], + [ + 48.1370498, + 11.5266197 + ], + [ + 48.1369314, + 11.5266741 + ] + ] + }, + { + "osmId": "37831040", + "name": "S\u00fcdring", + "lengthMeters": 104.60666095165598, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412884, + 11.5286793 + ], + [ + 48.1412869, + 11.5286762 + ], + [ + 48.1412373, + 11.5285707 + ], + [ + 48.1411798, + 11.5284589 + ], + [ + 48.1410707, + 11.5282526 + ], + [ + 48.1409613, + 11.5280761 + ], + [ + 48.1408605, + 11.5279166 + ], + [ + 48.1407474, + 11.527758 + ], + [ + 48.1406572, + 11.5276394 + ] + ] + }, + { + "osmId": "37837289", + "name": null, + "lengthMeters": 798.2321432613144, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5816748, + 9.9245618 + ], + [ + 53.5832352, + 9.9233641 + ], + [ + 53.5843522, + 9.922506 + ], + [ + 53.58557, + 9.9215824 + ], + [ + 53.5857005, + 9.9214777 + ], + [ + 53.5872961, + 9.9202458 + ], + [ + 53.5877259, + 9.9198796 + ], + [ + 53.5881827, + 9.9194634 + ] + ] + }, + { + "osmId": "37861668", + "name": null, + "lengthMeters": 300.09374073695676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1676885, + 11.5360995 + ], + [ + 48.1679797, + 11.5357269 + ], + [ + 48.1681464, + 11.5354935 + ], + [ + 48.1682952, + 11.5352687 + ], + [ + 48.1683861, + 11.5351337 + ], + [ + 48.1695877, + 11.5332287 + ] + ] + }, + { + "osmId": "37879798", + "name": null, + "lengthMeters": 526.6983064006292, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6610693, + 10.2438609 + ], + [ + 53.6609997, + 10.2442611 + ], + [ + 53.6609122, + 10.2446397 + ], + [ + 53.6608113, + 10.2449858 + ], + [ + 53.660623, + 10.2455677 + ], + [ + 53.660413, + 10.2461493 + ], + [ + 53.660082, + 10.2468765 + ], + [ + 53.660067, + 10.2469093 + ], + [ + 53.6599129, + 10.2472479 + ], + [ + 53.6599026, + 10.2472705 + ], + [ + 53.6597722, + 10.2475569 + ], + [ + 53.6595149, + 10.2480855 + ], + [ + 53.6595019, + 10.2481124 + ], + [ + 53.6583938, + 10.2503893 + ] + ] + }, + { + "osmId": "38038934", + "name": null, + "lengthMeters": 79.73796819576782, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3732393, + 13.1419126 + ], + [ + 52.3731257, + 13.1419405 + ], + [ + 52.3730977, + 13.1419532 + ], + [ + 52.3730863, + 13.1419584 + ], + [ + 52.3730731, + 13.1419661 + ], + [ + 52.3730445, + 13.141982 + ], + [ + 52.3730344, + 13.1419887 + ], + [ + 52.3730249, + 13.141996 + ], + [ + 52.3730139, + 13.1420041 + ], + [ + 52.3730056, + 13.1420113 + ], + [ + 52.3729818, + 13.1420329 + ], + [ + 52.3729712, + 13.1420434 + ], + [ + 52.3729642, + 13.1420507 + ], + [ + 52.3729518, + 13.1420648 + ], + [ + 52.3729431, + 13.1420748 + ], + [ + 52.3729346, + 13.1420857 + ], + [ + 52.3729279, + 13.1420942 + ], + [ + 52.3729208, + 13.1421035 + ], + [ + 52.3729107, + 13.1421182 + ], + [ + 52.3728999, + 13.1421339 + ], + [ + 52.3728949, + 13.1421421 + ], + [ + 52.3728887, + 13.1421525 + ], + [ + 52.3728723, + 13.1421804 + ], + [ + 52.3728355, + 13.1422518 + ], + [ + 52.3728096, + 13.1423226 + ], + [ + 52.3727917, + 13.1423782 + ], + [ + 52.3727708, + 13.1424633 + ], + [ + 52.3727564, + 13.1425425 + ], + [ + 52.3727452, + 13.1426265 + ] + ] + }, + { + "osmId": "38070874", + "name": "Dresdner Bahn", + "lengthMeters": 166.84839601661798, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4679245, + 13.3625131 + ], + [ + 52.4669459, + 13.3621651 + ], + [ + 52.4669168, + 13.362155 + ], + [ + 52.4668114, + 13.3621189 + ], + [ + 52.4664584, + 13.3619888 + ] + ] + }, + { + "osmId": "38070876", + "name": "Tempelhofer Kurve", + "lengthMeters": 363.77944252323914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4661091, + 13.3620247 + ], + [ + 52.4663731, + 13.3620756 + ], + [ + 52.4665738, + 13.3621317 + ], + [ + 52.4676892, + 13.3625282 + ], + [ + 52.4681035, + 13.3626749 + ], + [ + 52.4688741, + 13.36295 + ], + [ + 52.4690136, + 13.3630051 + ], + [ + 52.4693065, + 13.3631445 + ] + ] + }, + { + "osmId": "38084505", + "name": null, + "lengthMeters": 374.0800337128724, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4755743, + 13.3480146 + ], + [ + 52.4733531, + 13.3452601 + ], + [ + 52.4731101, + 13.3449194 + ], + [ + 52.4729215, + 13.3446233 + ] + ] + }, + { + "osmId": "38322888", + "name": "Verbindungsbahn", + "lengthMeters": 132.80351297047943, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5612554, + 9.9544458 + ], + [ + 53.5614835, + 9.9560549 + ], + [ + 53.5615466, + 9.9563952 + ] + ] + }, + { + "osmId": "38322890", + "name": "Verbindungsbahn", + "lengthMeters": 358.4942927380707, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636926, + 9.9656426 + ], + [ + 53.5636983, + 9.9657172 + ], + [ + 53.5637045, + 9.9658296 + ], + [ + 53.5637059, + 9.9658697 + ], + [ + 53.5637457, + 9.9669861 + ], + [ + 53.5637695, + 9.967656 + ], + [ + 53.5637766, + 9.9678552 + ], + [ + 53.5637917, + 9.968275 + ], + [ + 53.5638036, + 9.9686036 + ], + [ + 53.5638028, + 9.9688925 + ], + [ + 53.5638011, + 9.9695647 + ], + [ + 53.563795, + 9.9697933 + ], + [ + 53.5638006, + 9.9703164 + ], + [ + 53.5638162, + 9.971064 + ] + ] + }, + { + "osmId": "38491919", + "name": null, + "lengthMeters": 95.54324324844767, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3966815, + 13.1393197 + ], + [ + 52.3962874, + 13.1385998 + ], + [ + 52.3961584, + 13.1383523 + ], + [ + 52.3961147, + 13.1382617 + ] + ] + }, + { + "osmId": "38491921", + "name": null, + "lengthMeters": 329.67172286908, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.483028, + 13.2550035 + ], + [ + 52.4833001, + 13.2552097 + ], + [ + 52.4834813, + 13.2553735 + ], + [ + 52.483757, + 13.2556332 + ], + [ + 52.4839864, + 13.255835 + ], + [ + 52.484491, + 13.2562714 + ], + [ + 52.48464, + 13.2563979 + ], + [ + 52.4848124, + 13.2565519 + ], + [ + 52.4849579, + 13.2566863 + ], + [ + 52.4850186, + 13.2567488 + ], + [ + 52.4853091, + 13.2570556 + ], + [ + 52.4854547, + 13.2572308 + ], + [ + 52.4855969, + 13.2574158 + ] + ] + }, + { + "osmId": "38491922", + "name": null, + "lengthMeters": 1477.512709908331, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793681, + 13.2519436 + ], + [ + 52.4786776, + 13.2511169 + ], + [ + 52.4782238, + 13.25056 + ], + [ + 52.4777635, + 13.2499393 + ], + [ + 52.4774002, + 13.2493707 + ], + [ + 52.4770559, + 13.2487605 + ], + [ + 52.4763841, + 13.2474929 + ], + [ + 52.4759105, + 13.2465937 + ], + [ + 52.4757096, + 13.2462149 + ], + [ + 52.4753732, + 13.2456104 + ], + [ + 52.4751126, + 13.2451743 + ], + [ + 52.4748687, + 13.2447988 + ], + [ + 52.4747135, + 13.2445717 + ], + [ + 52.4744694, + 13.244238 + ], + [ + 52.4740914, + 13.2437441 + ], + [ + 52.4733785, + 13.2428406 + ], + [ + 52.4722529, + 13.241414 + ], + [ + 52.4718513, + 13.240905 + ], + [ + 52.4715295, + 13.2404972 + ], + [ + 52.4709968, + 13.2398222 + ], + [ + 52.4704644, + 13.2391474 + ], + [ + 52.4703234, + 13.2389687 + ], + [ + 52.4697827, + 13.2382848 + ], + [ + 52.4693453, + 13.2377316 + ] + ] + }, + { + "osmId": "38494153", + "name": null, + "lengthMeters": 178.21501278319406, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080831, + 13.4398852 + ], + [ + 52.5080636, + 13.4399517 + ], + [ + 52.5080605, + 13.4399629 + ], + [ + 52.5079682, + 13.4402989 + ], + [ + 52.5078572, + 13.4407476 + ], + [ + 52.5077872, + 13.4410787 + ], + [ + 52.5077123, + 13.4414733 + ], + [ + 52.5076427, + 13.4419321 + ], + [ + 52.5075879, + 13.4423806 + ] + ] + }, + { + "osmId": "38494155", + "name": null, + "lengthMeters": 441.3325058680876, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4978775, + 13.4870678 + ], + [ + 52.4975687, + 13.4877185 + ], + [ + 52.4973983, + 13.4880774 + ], + [ + 52.4971855, + 13.4885615 + ], + [ + 52.4969825, + 13.4890554 + ], + [ + 52.4960098, + 13.4915456 + ], + [ + 52.4958725, + 13.4918795 + ], + [ + 52.4956393, + 13.4924468 + ] + ] + }, + { + "osmId": "38494157", + "name": null, + "lengthMeters": 94.72066438527631, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5075491, + 13.4427906 + ], + [ + 52.5079012, + 13.4415162 + ] + ] + }, + { + "osmId": "38494159", + "name": null, + "lengthMeters": 269.79027036798783, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5094249, + 13.4365682 + ], + [ + 52.5094111, + 13.4366001 + ], + [ + 52.5085988, + 13.4384873 + ], + [ + 52.5085456, + 13.4386172 + ], + [ + 52.5083531, + 13.4391074 + ], + [ + 52.508207, + 13.4394991 + ], + [ + 52.5080831, + 13.4398852 + ] + ] + }, + { + "osmId": "38494160", + "name": null, + "lengthMeters": 2136.6365012498145, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4610613, + 13.570834 + ], + [ + 52.4612249, + 13.5704422 + ], + [ + 52.4613546, + 13.5701423 + ], + [ + 52.4614886, + 13.5698418 + ], + [ + 52.461817, + 13.5691411 + ], + [ + 52.4619049, + 13.5689575 + ], + [ + 52.4626406, + 13.5674206 + ], + [ + 52.4627911, + 13.567103 + ], + [ + 52.4632585, + 13.5660616 + ], + [ + 52.4637173, + 13.5650301 + ], + [ + 52.4639533, + 13.5644959 + ], + [ + 52.4641472, + 13.5640558 + ], + [ + 52.4652116, + 13.5616399 + ], + [ + 52.4662989, + 13.5591605 + ], + [ + 52.4679225, + 13.5555291 + ], + [ + 52.4689018, + 13.5532963 + ], + [ + 52.4700214, + 13.5507271 + ], + [ + 52.470039, + 13.5506883 + ], + [ + 52.470339, + 13.5500256 + ], + [ + 52.4712846, + 13.5479128 + ], + [ + 52.471727, + 13.5468838 + ], + [ + 52.4723922, + 13.545364 + ] + ] + }, + { + "osmId": "38494162", + "name": null, + "lengthMeters": 158.1574871741955, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603241, + 13.5728296 + ], + [ + 52.4604542, + 13.5724506 + ], + [ + 52.4604569, + 13.5724429 + ], + [ + 52.4604724, + 13.5723977 + ], + [ + 52.460628, + 13.5719613 + ], + [ + 52.4607793, + 13.5715545 + ], + [ + 52.4609107, + 13.5712113 + ], + [ + 52.4610613, + 13.570834 + ] + ] + }, + { + "osmId": "38503913", + "name": null, + "lengthMeters": 237.87137806517774, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5085852, + 13.4395299 + ], + [ + 52.5088877, + 13.4387517 + ], + [ + 52.5091254, + 13.4381401 + ], + [ + 52.5093746, + 13.4375326 + ], + [ + 52.5095067, + 13.4372258 + ], + [ + 52.5096246, + 13.4369456 + ], + [ + 52.5097689, + 13.4366029 + ] + ] + }, + { + "osmId": "38747946", + "name": null, + "lengthMeters": 1683.3205288700626, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4514911, + 13.6943538 + ], + [ + 52.4514813, + 13.6947902 + ], + [ + 52.4514839, + 13.6952144 + ], + [ + 52.4514976, + 13.6954365 + ], + [ + 52.451505, + 13.6955392 + ], + [ + 52.4515153, + 13.6956466 + ], + [ + 52.4515353, + 13.6958287 + ], + [ + 52.4515523, + 13.6959505 + ], + [ + 52.4515953, + 13.6962657 + ], + [ + 52.4516227, + 13.6964722 + ], + [ + 52.4526, + 13.7030965 + ], + [ + 52.4534598, + 13.7089144 + ], + [ + 52.4538305, + 13.711439 + ], + [ + 52.4543218, + 13.7147766 + ], + [ + 52.4547606, + 13.717739 + ], + [ + 52.4548785, + 13.7185351 + ] + ] + }, + { + "osmId": "38844805", + "name": null, + "lengthMeters": 272.20289660180083, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.397734, + 13.1410643 + ], + [ + 52.3973191, + 13.1403643 + ], + [ + 52.3970726, + 13.1399073 + ], + [ + 52.3964987, + 13.1388295 + ], + [ + 52.3963745, + 13.1385951 + ], + [ + 52.396117, + 13.1380554 + ] + ] + }, + { + "osmId": "38900219", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 804.8771714071909, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.200724, + 11.5304252 + ], + [ + 48.2007792, + 11.5305104 + ], + [ + 48.2018835, + 11.5322136 + ], + [ + 48.2021083, + 11.5325585 + ], + [ + 48.203174, + 11.5341932 + ], + [ + 48.2034408, + 11.5345994 + ], + [ + 48.2040528, + 11.5355432 + ], + [ + 48.2046685, + 11.5364933 + ], + [ + 48.204996, + 11.5369987 + ], + [ + 48.2050364, + 11.5370604 + ], + [ + 48.205063, + 11.5371002 + ], + [ + 48.2052366, + 11.5373626 + ], + [ + 48.2053674, + 11.5375604 + ], + [ + 48.2055198, + 11.5377884 + ], + [ + 48.2056741, + 11.5380164 + ], + [ + 48.2057912, + 11.5381802 + ] + ] + }, + { + "osmId": "38927398", + "name": null, + "lengthMeters": 4664.338309193991, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3347211, + 13.073766 + ], + [ + 52.3349773, + 13.0741014 + ], + [ + 52.3352433, + 13.0744433 + ], + [ + 52.3357785, + 13.0751 + ], + [ + 52.3365892, + 13.0761186 + ], + [ + 52.3380508, + 13.0779423 + ], + [ + 52.3389494, + 13.0790364 + ], + [ + 52.3393458, + 13.0794822 + ], + [ + 52.3396537, + 13.0798128 + ], + [ + 52.3400861, + 13.0802534 + ], + [ + 52.3401999, + 13.0803631 + ], + [ + 52.3409779, + 13.081127 + ], + [ + 52.341244, + 13.0813896 + ], + [ + 52.3426488, + 13.0827758 + ], + [ + 52.3427246, + 13.0828506 + ], + [ + 52.3432218, + 13.0833384 + ], + [ + 52.3442011, + 13.0843033 + ], + [ + 52.3457823, + 13.0858613 + ], + [ + 52.3477097, + 13.0877606 + ], + [ + 52.349192, + 13.0892177 + ], + [ + 52.3492735, + 13.0892977 + ], + [ + 52.3506442, + 13.0906435 + ], + [ + 52.3508068, + 13.0908031 + ], + [ + 52.3518737, + 13.0918541 + ], + [ + 52.3538793, + 13.0938208 + ], + [ + 52.3552373, + 13.0951526 + ], + [ + 52.3553778, + 13.0952925 + ], + [ + 52.3565239, + 13.0964338 + ], + [ + 52.3568798, + 13.0967882 + ], + [ + 52.3582406, + 13.0981435 + ], + [ + 52.3585236, + 13.0984184 + ], + [ + 52.3587714, + 13.0986595 + ], + [ + 52.3588305, + 13.0987184 + ], + [ + 52.3588897, + 13.098775 + ], + [ + 52.3590065, + 13.0988904 + ], + [ + 52.3603124, + 13.1001654 + ], + [ + 52.3643768, + 13.104177 + ], + [ + 52.3646667, + 13.1044574 + ], + [ + 52.3664787, + 13.1062532 + ], + [ + 52.3665941, + 13.106361 + ], + [ + 52.3671908, + 13.1069514 + ], + [ + 52.3677152, + 13.1074658 + ], + [ + 52.3685135, + 13.1082576 + ], + [ + 52.3691324, + 13.1088672 + ], + [ + 52.3703099, + 13.1100297 + ] + ] + }, + { + "osmId": "38959142", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 248.4247039111978, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904674, + 11.5172112 + ], + [ + 48.1922873, + 11.5191551 + ] + ] + }, + { + "osmId": "38959143", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 983.8652972570712, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1942273, + 11.5212437 + ], + [ + 48.1947549, + 11.5218117 + ], + [ + 48.1949947, + 11.5220779 + ], + [ + 48.1953937, + 11.5225208 + ], + [ + 48.1956069, + 11.5227707 + ], + [ + 48.195741, + 11.522936 + ], + [ + 48.1957856, + 11.5229921 + ], + [ + 48.1960044, + 11.5232706 + ], + [ + 48.1961882, + 11.5235237 + ], + [ + 48.1964791, + 11.5239316 + ], + [ + 48.1966966, + 11.5242528 + ], + [ + 48.1968477, + 11.5244859 + ], + [ + 48.1968544, + 11.5244962 + ], + [ + 48.1968835, + 11.5245417 + ], + [ + 48.1969163, + 11.5245919 + ], + [ + 48.1972072, + 11.5250372 + ], + [ + 48.1975993, + 11.5256375 + ], + [ + 48.1977523, + 11.5258717 + ], + [ + 48.1981121, + 11.5264236 + ], + [ + 48.1984007, + 11.5268663 + ], + [ + 48.1984259, + 11.5269045 + ], + [ + 48.1986053, + 11.5271764 + ], + [ + 48.1991874, + 11.5280657 + ], + [ + 48.1993582, + 11.5283281 + ], + [ + 48.2006571, + 11.5303231 + ] + ] + }, + { + "osmId": "38959148", + "name": null, + "lengthMeters": 298.2502871914103, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1661313, + 11.4883817 + ], + [ + 48.1666211, + 11.4891937 + ], + [ + 48.1670845, + 11.4899574 + ], + [ + 48.1676873, + 11.4909219 + ], + [ + 48.1679443, + 11.4913453 + ] + ] + }, + { + "osmId": "38959507", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 324.56471529955354, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1640249, + 11.4849259 + ], + [ + 48.1642502, + 11.4852709 + ], + [ + 48.1645074, + 11.4856854 + ], + [ + 48.1647595, + 11.4860923 + ], + [ + 48.1653671, + 11.4870716 + ], + [ + 48.1655086, + 11.4872997 + ], + [ + 48.1660153, + 11.4881266 + ] + ] + }, + { + "osmId": "38959508", + "name": null, + "lengthMeters": 320.3609524928487, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1640189, + 11.4850116 + ], + [ + 48.1642283, + 11.4853338 + ], + [ + 48.164474, + 11.4857293 + ], + [ + 48.1647259, + 11.4861357 + ], + [ + 48.1653378, + 11.4871174 + ], + [ + 48.1654766, + 11.48734 + ], + [ + 48.1659926, + 11.4881582 + ] + ] + }, + { + "osmId": "38959511", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 88.85256138208234, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1574917, + 11.4812049 + ], + [ + 48.1577605, + 11.4811526 + ], + [ + 48.1579665, + 11.4811277 + ], + [ + 48.1582874, + 11.4811023 + ] + ] + }, + { + "osmId": "39007897", + "name": null, + "lengthMeters": 673.7083832445403, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1504578, + 11.4845854 + ], + [ + 48.1506039, + 11.4843716 + ], + [ + 48.1507625, + 11.4841788 + ], + [ + 48.1509947, + 11.4839493 + ], + [ + 48.1511068, + 11.4838386 + ], + [ + 48.151453, + 11.483543 + ], + [ + 48.1518126, + 11.483273 + ], + [ + 48.1521403, + 11.4830509 + ], + [ + 48.152458, + 11.482847 + ], + [ + 48.1526931, + 11.4827046 + ], + [ + 48.1527863, + 11.4826481 + ], + [ + 48.1529197, + 11.4825737 + ], + [ + 48.1531139, + 11.4824708 + ], + [ + 48.1534629, + 11.4822794 + ], + [ + 48.1537845, + 11.4821224 + ], + [ + 48.154013, + 11.4820102 + ], + [ + 48.1542669, + 11.481891 + ], + [ + 48.1546113, + 11.4817558 + ], + [ + 48.1550803, + 11.4815879 + ], + [ + 48.1560248, + 11.4812241 + ] + ] + }, + { + "osmId": "39007898", + "name": null, + "lengthMeters": 147.0405341407034, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1496869, + 11.4861904 + ], + [ + 48.1497921, + 11.4860198 + ], + [ + 48.1499255, + 11.4857611 + ], + [ + 48.1500578, + 11.4854567 + ], + [ + 48.1501856, + 11.4851444 + ], + [ + 48.1503114, + 11.4848538 + ], + [ + 48.1504578, + 11.4845854 + ] + ] + }, + { + "osmId": "39007901", + "name": null, + "lengthMeters": 754.6596586124138, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.16408, + 11.4779944 + ], + [ + 48.1639143, + 11.4780582 + ], + [ + 48.1638952, + 11.478066 + ], + [ + 48.1635427, + 11.4782095 + ], + [ + 48.1633449, + 11.47829 + ], + [ + 48.1622055, + 11.4787589 + ], + [ + 48.1618149, + 11.4789103 + ], + [ + 48.1610238, + 11.4792138 + ], + [ + 48.160434, + 11.4794401 + ], + [ + 48.159055, + 11.4799747 + ], + [ + 48.1589916, + 11.4799993 + ], + [ + 48.1587973, + 11.4800707 + ], + [ + 48.1584, + 11.4802192 + ], + [ + 48.1575088, + 11.4805363 + ] + ] + }, + { + "osmId": "39007902", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 157.78235860632964, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1531009, + 11.4827903 + ], + [ + 48.15334, + 11.4826983 + ], + [ + 48.1537308, + 11.4825691 + ], + [ + 48.1540655, + 11.4824694 + ], + [ + 48.1544853, + 11.4823252 + ] + ] + }, + { + "osmId": "39007909", + "name": null, + "lengthMeters": 1344.0395318962383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1470314, + 11.4899359 + ], + [ + 48.1472358, + 11.4894566 + ], + [ + 48.1474228, + 11.4890565 + ], + [ + 48.1476181, + 11.4886692 + ], + [ + 48.147832, + 11.4883008 + ], + [ + 48.1481868, + 11.4877401 + ], + [ + 48.1485086, + 11.4872971 + ], + [ + 48.1488349, + 11.4868742 + ], + [ + 48.1493191, + 11.4862928 + ], + [ + 48.1498844, + 11.4856722 + ], + [ + 48.1506083, + 11.4849094 + ], + [ + 48.1508999, + 11.4846313 + ], + [ + 48.1511242, + 11.4844395 + ], + [ + 48.1513363, + 11.4842663 + ], + [ + 48.1514936, + 11.484152 + ], + [ + 48.1517488, + 11.4839715 + ], + [ + 48.1519046, + 11.4838661 + ], + [ + 48.1522051, + 11.4836798 + ], + [ + 48.1524494, + 11.4835375 + ], + [ + 48.1527357, + 11.4833664 + ], + [ + 48.1530272, + 11.4831969 + ], + [ + 48.1533211, + 11.4830305 + ], + [ + 48.15354, + 11.4829066 + ], + [ + 48.1538316, + 11.4827771 + ], + [ + 48.1540841, + 11.482661 + ], + [ + 48.1544228, + 11.482508 + ], + [ + 48.1547082, + 11.4823816 + ], + [ + 48.1547987, + 11.4823423 + ], + [ + 48.1549928, + 11.4822581 + ], + [ + 48.1552814, + 11.4821283 + ], + [ + 48.1557323, + 11.4819306 + ], + [ + 48.1561932, + 11.4817412 + ], + [ + 48.1565456, + 11.4815987 + ], + [ + 48.1567342, + 11.4815248 + ], + [ + 48.1569973, + 11.4814398 + ], + [ + 48.1573105, + 11.4813533 + ] + ] + }, + { + "osmId": "39007911", + "name": null, + "lengthMeters": 526.6179840248305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1473334, + 11.4879661 + ], + [ + 48.1468355, + 11.488637 + ], + [ + 48.1465811, + 11.4890189 + ], + [ + 48.1464406, + 11.489259 + ], + [ + 48.1461163, + 11.4898369 + ], + [ + 48.1459448, + 11.4901948 + ], + [ + 48.1457748, + 11.4906167 + ], + [ + 48.1456943, + 11.4908309 + ], + [ + 48.1455839, + 11.4911531 + ], + [ + 48.1455045, + 11.4914423 + ], + [ + 48.1454162, + 11.4917694 + ], + [ + 48.1453359, + 11.4921024 + ], + [ + 48.1452232, + 11.4927024 + ], + [ + 48.1451342, + 11.493322 + ], + [ + 48.1450622, + 11.4939471 + ], + [ + 48.1450592, + 11.4939744 + ] + ] + }, + { + "osmId": "39007912", + "name": null, + "lengthMeters": 540.1858808500654, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.164084, + 11.478257 + ], + [ + 48.1633921, + 11.4785161 + ], + [ + 48.1617297, + 11.4791026 + ], + [ + 48.1611007, + 11.4793316 + ], + [ + 48.160466, + 11.479577 + ], + [ + 48.1593691, + 11.48001 + ] + ] + }, + { + "osmId": "39116024", + "name": null, + "lengthMeters": 135.89399883154363, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257064, + 13.536719 + ], + [ + 52.5253849, + 13.5368305 + ], + [ + 52.5252059, + 13.5368843 + ], + [ + 52.5248363, + 13.5369824 + ], + [ + 52.5245038, + 13.5370745 + ] + ] + }, + { + "osmId": "39116050", + "name": null, + "lengthMeters": 107.11148204217221, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5274963, + 13.5359809 + ], + [ + 52.5273356, + 13.5360457 + ], + [ + 52.5271765, + 13.5361198 + ], + [ + 52.5269835, + 13.5362201 + ], + [ + 52.5268371, + 13.5362922 + ], + [ + 52.5267036, + 13.5363492 + ], + [ + 52.5265685, + 13.5364048 + ] + ] + }, + { + "osmId": "39232656", + "name": null, + "lengthMeters": 354.4614392765659, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5283659, + 13.4677909 + ], + [ + 52.528472, + 13.4671715 + ], + [ + 52.5285143, + 13.4669261 + ], + [ + 52.5286857, + 13.4658614 + ], + [ + 52.5287292, + 13.4655916 + ], + [ + 52.5289719, + 13.4641858 + ], + [ + 52.5290959, + 13.4634902 + ], + [ + 52.5291275, + 13.463304 + ], + [ + 52.5292226, + 13.462744 + ] + ] + }, + { + "osmId": "39316570", + "name": null, + "lengthMeters": 1365.1152723822697, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1762059, + 11.4734402 + ], + [ + 48.1754595, + 11.473721 + ], + [ + 48.1741508, + 11.4742288 + ], + [ + 48.1704727, + 11.4756686 + ], + [ + 48.1696729, + 11.4759794 + ], + [ + 48.1693583, + 11.4761017 + ], + [ + 48.1688746, + 11.4762902 + ], + [ + 48.1680763, + 11.4766013 + ], + [ + 48.1670271, + 11.4770331 + ], + [ + 48.1651925, + 11.4778116 + ], + [ + 48.1643394, + 11.4781566 + ] + ] + }, + { + "osmId": "39316571", + "name": null, + "lengthMeters": 1359.9867088650515, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1761754, + 11.4732397 + ], + [ + 48.1754346, + 11.4735629 + ], + [ + 48.174783, + 11.4738244 + ], + [ + 48.1745909, + 11.4738993 + ], + [ + 48.17413, + 11.4740791 + ], + [ + 48.1738777, + 11.4741776 + ], + [ + 48.1732402, + 11.4744265 + ], + [ + 48.1729898, + 11.4745243 + ], + [ + 48.1711359, + 11.4752481 + ], + [ + 48.1704414, + 11.4755233 + ], + [ + 48.1692384, + 11.4759923 + ], + [ + 48.1688451, + 11.4761424 + ], + [ + 48.1670009, + 11.4768704 + ], + [ + 48.16578, + 11.477338 + ], + [ + 48.1651557, + 11.4775814 + ], + [ + 48.1643452, + 11.477892 + ] + ] + }, + { + "osmId": "39316574", + "name": null, + "lengthMeters": 669.6333754302946, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1975955, + 11.4652006 + ], + [ + 48.1966881, + 11.4655767 + ], + [ + 48.1963812, + 11.4657022 + ], + [ + 48.1956671, + 11.4659942 + ], + [ + 48.1951428, + 11.4662044 + ], + [ + 48.1950563, + 11.4662408 + ], + [ + 48.1950155, + 11.4662579 + ], + [ + 48.1945918, + 11.4664267 + ], + [ + 48.1944941, + 11.4664654 + ], + [ + 48.1944495, + 11.4664831 + ], + [ + 48.1932149, + 11.4669833 + ], + [ + 48.1917819, + 11.4675573 + ] + ] + }, + { + "osmId": "39316575", + "name": null, + "lengthMeters": 321.0842925923166, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.19755, + 11.4649481 + ], + [ + 48.1972997, + 11.4650627 + ], + [ + 48.197013, + 11.4651901 + ], + [ + 48.1966411, + 11.4653476 + ], + [ + 48.1956529, + 11.4657303 + ], + [ + 48.1947621, + 11.4660743 + ] + ] + }, + { + "osmId": "39352629", + "name": null, + "lengthMeters": 1020.8626190816415, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2077125, + 11.4611218 + ], + [ + 48.2068537, + 11.4614666 + ], + [ + 48.2060128, + 11.4617987 + ], + [ + 48.205252, + 11.4620967 + ], + [ + 48.204264, + 11.4624821 + ], + [ + 48.2039127, + 11.462622 + ], + [ + 48.2033877, + 11.4628312 + ], + [ + 48.2024659, + 11.4632049 + ], + [ + 48.2016368, + 11.4635514 + ], + [ + 48.201195, + 11.4637349 + ], + [ + 48.2007694, + 11.4639097 + ], + [ + 48.2000576, + 11.4641954 + ], + [ + 48.1998618, + 11.4642742 + ], + [ + 48.1992845, + 11.4645096 + ], + [ + 48.1988448, + 11.464688 + ] + ] + }, + { + "osmId": "39352631", + "name": null, + "lengthMeters": 1557.1064504208148, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2440547, + 11.4469454 + ], + [ + 48.2440428, + 11.4469493 + ], + [ + 48.2432724, + 11.4472037 + ], + [ + 48.2426888, + 11.4474132 + ], + [ + 48.2421031, + 11.4476319 + ], + [ + 48.2403852, + 11.4483057 + ], + [ + 48.2387411, + 11.4489504 + ], + [ + 48.2387211, + 11.4489582 + ], + [ + 48.2369339, + 11.4496584 + ], + [ + 48.2350545, + 11.4503928 + ], + [ + 48.2315299, + 11.4517701 + ], + [ + 48.2304919, + 11.4521738 + ] + ] + }, + { + "osmId": "39371071", + "name": null, + "lengthMeters": 3899.5628536910594, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2419037, + 11.4475485 + ], + [ + 48.2386445, + 11.4488297 + ], + [ + 48.2332644, + 11.4509456 + ], + [ + 48.2315135, + 11.4516292 + ], + [ + 48.2285917, + 11.4527797 + ], + [ + 48.2244033, + 11.4544194 + ], + [ + 48.2212534, + 11.4556514 + ], + [ + 48.2151842, + 11.4580312 + ], + [ + 48.2145949, + 11.4582562 + ], + [ + 48.2140539, + 11.4584527 + ], + [ + 48.2136673, + 11.4585838 + ], + [ + 48.2132799, + 11.4587122 + ], + [ + 48.2129204, + 11.4588291 + ], + [ + 48.212498, + 11.4589713 + ], + [ + 48.2119563, + 11.4591599 + ], + [ + 48.2111949, + 11.4594573 + ], + [ + 48.2110091, + 11.459532 + ], + [ + 48.2106816, + 11.4596611 + ], + [ + 48.209292, + 11.460202 + ], + [ + 48.2086412, + 11.4604727 + ], + [ + 48.2079603, + 11.4607713 + ] + ] + }, + { + "osmId": "39371075", + "name": null, + "lengthMeters": 1129.3705053798126, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.207648, + 11.4609137 + ], + [ + 48.2074894, + 11.4609896 + ], + [ + 48.2068263, + 11.4612837 + ], + [ + 48.2060013, + 11.4616308 + ], + [ + 48.2039955, + 11.462414 + ], + [ + 48.2035676, + 11.4625806 + ], + [ + 48.2024413, + 11.4630191 + ], + [ + 48.202023, + 11.4631838 + ], + [ + 48.2016018, + 11.4633342 + ], + [ + 48.2011926, + 11.4634687 + ], + [ + 48.2007387, + 11.4636044 + ], + [ + 48.2004343, + 11.4636921 + ], + [ + 48.200273, + 11.4637448 + ], + [ + 48.2001457, + 11.4637825 + ], + [ + 48.1998139, + 11.4639046 + ], + [ + 48.199282, + 11.4641185 + ], + [ + 48.1987575, + 11.4643745 + ], + [ + 48.1983085, + 11.464596 + ], + [ + 48.1978368, + 11.464822 + ] + ] + }, + { + "osmId": "39371086", + "name": null, + "lengthMeters": 104.37096145181009, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2191648, + 11.4567785 + ], + [ + 48.2182556, + 11.4571285 + ] + ] + }, + { + "osmId": "39371098", + "name": null, + "lengthMeters": 289.2643500771562, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2509974, + 11.4452801 + ], + [ + 48.2503288, + 11.4454194 + ], + [ + 48.2501947, + 11.4454475 + ], + [ + 48.2500927, + 11.4454689 + ], + [ + 48.2496483, + 11.4455601 + ], + [ + 48.2484203, + 11.445813 + ] + ] + }, + { + "osmId": "39372529", + "name": null, + "lengthMeters": 378.93793521246664, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2476823, + 11.4458811 + ], + [ + 48.2484153, + 11.4457035 + ], + [ + 48.249391, + 11.4454605 + ], + [ + 48.2495834, + 11.4454117 + ], + [ + 48.2502559, + 11.4452521 + ], + [ + 48.2508206, + 11.4451358 + ], + [ + 48.2510488, + 11.445088 + ] + ] + }, + { + "osmId": "39372534", + "name": null, + "lengthMeters": 381.01344613110825, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2510628, + 11.4449784 + ], + [ + 48.2500778, + 11.445222 + ], + [ + 48.2495792, + 11.4453504 + ], + [ + 48.2486315, + 11.4455778 + ], + [ + 48.2476823, + 11.4458188 + ] + ] + }, + { + "osmId": "39688743", + "name": "Fernbahn", + "lengthMeters": 1423.9875482233845, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434169, + 11.5160443 + ], + [ + 48.1434495, + 11.5167845 + ], + [ + 48.1434629, + 11.5170886 + ], + [ + 48.1434702, + 11.5174169 + ], + [ + 48.1434716, + 11.5177598 + ], + [ + 48.1434688, + 11.5181042 + ], + [ + 48.14346, + 11.5184644 + ], + [ + 48.1434478, + 11.5187741 + ], + [ + 48.1434308, + 11.5190978 + ], + [ + 48.1433882, + 11.5198119 + ], + [ + 48.1433571, + 11.5202949 + ], + [ + 48.1433092, + 11.5209498 + ], + [ + 48.143256, + 11.5216221 + ], + [ + 48.1432553, + 11.5216357 + ], + [ + 48.1428585, + 11.5269793 + ], + [ + 48.1427997, + 11.5278029 + ], + [ + 48.1427664, + 11.5282539 + ], + [ + 48.1426744, + 11.5294847 + ], + [ + 48.1426483, + 11.5298872 + ], + [ + 48.1426335, + 11.5301447 + ], + [ + 48.1426215, + 11.5304004 + ], + [ + 48.1425977, + 11.5309842 + ], + [ + 48.1425801, + 11.5315646 + ], + [ + 48.1425694, + 11.5320391 + ], + [ + 48.1425398, + 11.5329379 + ], + [ + 48.1425337, + 11.5332564 + ], + [ + 48.1424855, + 11.5346163 + ], + [ + 48.1424765, + 11.5349624 + ], + [ + 48.142468, + 11.5351534 + ], + [ + 48.1424677, + 11.5351607 + ] + ] + }, + { + "osmId": "39688751", + "name": null, + "lengthMeters": 326.99466251109385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1407033, + 11.5575271 + ], + [ + 48.1408612, + 11.5553006 + ], + [ + 48.1409132, + 11.554587 + ], + [ + 48.1409467, + 11.5542056 + ], + [ + 48.1410241, + 11.5531466 + ] + ] + }, + { + "osmId": "39688756", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 960.6545906907664, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1414835, + 11.5421091 + ], + [ + 48.1415868, + 11.5409327 + ], + [ + 48.1416532, + 11.5400505 + ], + [ + 48.1417853, + 11.5382958 + ], + [ + 48.1419454, + 11.5361853 + ], + [ + 48.1420569, + 11.5345484 + ], + [ + 48.1420987, + 11.5333421 + ], + [ + 48.1421385, + 11.5321296 + ], + [ + 48.1421205, + 11.5315027 + ], + [ + 48.1421107, + 11.5313415 + ], + [ + 48.1420973, + 11.531179 + ], + [ + 48.142078, + 11.5309938 + ], + [ + 48.1420506, + 11.5307892 + ], + [ + 48.1420251, + 11.5306103 + ], + [ + 48.1419938, + 11.5304372 + ], + [ + 48.1419449, + 11.5302041 + ], + [ + 48.141898, + 11.5300181 + ], + [ + 48.1418142, + 11.5297242 + ], + [ + 48.1417428, + 11.5295017 + ], + [ + 48.1417184, + 11.5294318 + ], + [ + 48.1416828, + 11.5293295 + ] + ] + }, + { + "osmId": "39881970", + "name": null, + "lengthMeters": 390.96681072117724, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.142673, + 11.5336693 + ], + [ + 48.1426601, + 11.5338887 + ], + [ + 48.1426472, + 11.5340402 + ], + [ + 48.1426063, + 11.5346387 + ], + [ + 48.1425887, + 11.5349926 + ], + [ + 48.14259, + 11.5351622 + ], + [ + 48.1425921, + 11.5352502 + ], + [ + 48.1426042, + 11.5356265 + ], + [ + 48.142609, + 11.5357894 + ], + [ + 48.1426105, + 11.5358199 + ], + [ + 48.1426302, + 11.5364841 + ], + [ + 48.1426314, + 11.536524 + ], + [ + 48.1426404, + 11.5367684 + ], + [ + 48.1426496, + 11.5371714 + ], + [ + 48.1426517, + 11.5375113 + ], + [ + 48.1426493, + 11.5377387 + ], + [ + 48.1426437, + 11.537884 + ], + [ + 48.1426404, + 11.538011 + ], + [ + 48.1426371, + 11.5381361 + ], + [ + 48.1426231, + 11.5385449 + ], + [ + 48.1426173, + 11.538672 + ], + [ + 48.1426031, + 11.5389281 + ] + ] + }, + { + "osmId": "39881971", + "name": null, + "lengthMeters": 518.3854703585067, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420247, + 11.5522731 + ], + [ + 48.1421688, + 11.5531148 + ], + [ + 48.1422258, + 11.5535036 + ], + [ + 48.1422633, + 11.5538842 + ], + [ + 48.1422782, + 11.5542154 + ], + [ + 48.1422779, + 11.554449 + ], + [ + 48.1422676, + 11.5547193 + ], + [ + 48.1422429, + 11.555061 + ], + [ + 48.1422124, + 11.555336 + ], + [ + 48.1421596, + 11.5556678 + ], + [ + 48.1420827, + 11.5561031 + ], + [ + 48.1419932, + 11.5565947 + ], + [ + 48.1419458, + 11.5568602 + ], + [ + 48.1418809, + 11.557131 + ], + [ + 48.1417938, + 11.5574857 + ], + [ + 48.1417472, + 11.5576804 + ], + [ + 48.1416116, + 11.5582524 + ], + [ + 48.1414507, + 11.5589831 + ], + [ + 48.14144, + 11.5590316 + ] + ] + }, + { + "osmId": "39881979", + "name": null, + "lengthMeters": 102.03600331583485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412423, + 11.5544205 + ], + [ + 48.1412661, + 11.5539439 + ], + [ + 48.1412665, + 11.5537361 + ], + [ + 48.1412639, + 11.55322 + ], + [ + 48.1412636, + 11.5530467 + ] + ] + }, + { + "osmId": "39881981", + "name": null, + "lengthMeters": 119.15960269219185, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411399, + 11.5533811 + ], + [ + 48.141156, + 11.5530184 + ], + [ + 48.141181, + 11.551835 + ], + [ + 48.1411822, + 11.5517766 + ] + ] + }, + { + "osmId": "39890073", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 95.65960275998526, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4408954, + 10.0106816 + ], + [ + 53.4401495, + 10.0114012 + ] + ] + }, + { + "osmId": "39923767", + "name": null, + "lengthMeters": 334.73610115550036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.66413, + 10.2222116 + ], + [ + 53.6642132, + 10.2218286 + ], + [ + 53.6645336, + 10.2203796 + ], + [ + 53.6645898, + 10.2200458 + ], + [ + 53.6646941, + 10.2193386 + ], + [ + 53.6648825, + 10.2180899 + ], + [ + 53.6649435, + 10.2173351 + ] + ] + }, + { + "osmId": "39974238", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1291.7949747208577, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1428803, + 11.5256049 + ], + [ + 48.1428792, + 11.5256202 + ], + [ + 48.1427868, + 11.5269624 + ], + [ + 48.142724, + 11.5278177 + ], + [ + 48.1426011, + 11.5294742 + ], + [ + 48.142572, + 11.5298752 + ], + [ + 48.1425431, + 11.5304083 + ], + [ + 48.1425155, + 11.5312332 + ], + [ + 48.1424886, + 11.5321168 + ], + [ + 48.1424577, + 11.5332498 + ], + [ + 48.1424176, + 11.5346313 + ], + [ + 48.142382, + 11.5354931 + ], + [ + 48.1423431, + 11.5363836 + ], + [ + 48.1423173, + 11.5370077 + ], + [ + 48.1423167, + 11.5370245 + ], + [ + 48.1423065, + 11.5373064 + ], + [ + 48.142244, + 11.5385176 + ], + [ + 48.1421616, + 11.5397001 + ], + [ + 48.1419178, + 11.5429483 + ] + ] + }, + { + "osmId": "39974239", + "name": null, + "lengthMeters": 202.60039164418876, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415767, + 11.5466192 + ], + [ + 48.1415776, + 11.5466076 + ], + [ + 48.1416628, + 11.5456679 + ], + [ + 48.141733, + 11.5448884 + ], + [ + 48.1417592, + 11.5445144 + ], + [ + 48.1418036, + 11.5439102 + ] + ] + }, + { + "osmId": "39980060", + "name": "Kramerkurve", + "lengthMeters": 1040.9156671308197, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3442665, + 13.271699 + ], + [ + 52.3441843, + 13.272222 + ], + [ + 52.3440916, + 13.2727292 + ], + [ + 52.343976, + 13.2732298 + ], + [ + 52.3438425, + 13.2737445 + ], + [ + 52.3436835, + 13.2742519 + ], + [ + 52.3434769, + 13.274816 + ], + [ + 52.3433773, + 13.2750644 + ], + [ + 52.3432893, + 13.2752667 + ], + [ + 52.3432175, + 13.2754235 + ], + [ + 52.3431443, + 13.2755803 + ], + [ + 52.3430733, + 13.2757243 + ], + [ + 52.3429415, + 13.2759743 + ], + [ + 52.3428807, + 13.2760865 + ], + [ + 52.3428264, + 13.2761836 + ], + [ + 52.3427533, + 13.2763061 + ], + [ + 52.3426775, + 13.2764306 + ], + [ + 52.342591, + 13.2765674 + ], + [ + 52.3425026, + 13.2767024 + ], + [ + 52.3424172, + 13.2768264 + ], + [ + 52.3423338, + 13.276946 + ], + [ + 52.3422244, + 13.2770923 + ], + [ + 52.3421213, + 13.2772242 + ], + [ + 52.3420254, + 13.2773413 + ], + [ + 52.3419234, + 13.2774621 + ], + [ + 52.3418057, + 13.2775951 + ], + [ + 52.3416329, + 13.277776 + ], + [ + 52.34148, + 13.2779235 + ], + [ + 52.3413579, + 13.2780361 + ], + [ + 52.3412132, + 13.2781583 + ], + [ + 52.3410737, + 13.2782718 + ], + [ + 52.3408853, + 13.2784121 + ], + [ + 52.3407296, + 13.2785151 + ], + [ + 52.3405727, + 13.2786151 + ], + [ + 52.3404401, + 13.2786925 + ], + [ + 52.340325, + 13.278755 + ], + [ + 52.3401964, + 13.2788173 + ], + [ + 52.3400713, + 13.2788758 + ], + [ + 52.3398917, + 13.2789492 + ], + [ + 52.3397342, + 13.2790055 + ], + [ + 52.3396019, + 13.2790487 + ], + [ + 52.3394761, + 13.2790856 + ], + [ + 52.3392965, + 13.2791295 + ], + [ + 52.339143, + 13.2791588 + ], + [ + 52.339031, + 13.2791762 + ], + [ + 52.3389221, + 13.2791877 + ], + [ + 52.3388131, + 13.2791968 + ], + [ + 52.3386983, + 13.279202 + ], + [ + 52.3385836, + 13.2792021 + ], + [ + 52.3384657, + 13.2792003 + ], + [ + 52.3383681, + 13.2791941 + ], + [ + 52.3382229, + 13.2791828 + ], + [ + 52.3381054, + 13.2791686 + ], + [ + 52.3379556, + 13.2791431 + ], + [ + 52.3378679, + 13.2791255 + ], + [ + 52.3377802, + 13.2791067 + ], + [ + 52.3376921, + 13.279085 + ], + [ + 52.3376041, + 13.2790608 + ], + [ + 52.3375015, + 13.27903 + ], + [ + 52.3373981, + 13.2789979 + ], + [ + 52.3372618, + 13.2789491 + ], + [ + 52.3371255, + 13.2788979 + ] + ] + }, + { + "osmId": "39991315", + "name": null, + "lengthMeters": 835.9593574635504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5030916, + 10.0075732 + ], + [ + 53.5038677, + 10.0077428 + ], + [ + 53.5042404, + 10.0078125 + ], + [ + 53.504956, + 10.007912 + ], + [ + 53.5060078, + 10.0080231 + ], + [ + 53.5060956, + 10.0080258 + ], + [ + 53.5066101, + 10.0080714 + ], + [ + 53.5070174, + 10.0080726 + ], + [ + 53.507101, + 10.0080762 + ], + [ + 53.5088607, + 10.0080587 + ], + [ + 53.5098293, + 10.0080283 + ], + [ + 53.5102559, + 10.0080172 + ], + [ + 53.5104813, + 10.0080217 + ], + [ + 53.5105951, + 10.0080296 + ] + ] + }, + { + "osmId": "39998470", + "name": null, + "lengthMeters": 89.64285447735028, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411629, + 11.5469131 + ], + [ + 48.14118, + 11.5466493 + ], + [ + 48.1412392, + 11.5457104 + ] + ] + }, + { + "osmId": "40014576", + "name": null, + "lengthMeters": 248.68150391496846, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1250528, + 11.6020054 + ], + [ + 48.1252743, + 11.6024842 + ], + [ + 48.1255458, + 11.6030082 + ], + [ + 48.1257765, + 11.603387 + ], + [ + 48.1260875, + 11.6038728 + ], + [ + 48.1265194, + 11.604525 + ] + ] + }, + { + "osmId": "40014580", + "name": null, + "lengthMeters": 470.3077298379096, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0587471, + 11.612018 + ], + [ + 48.0584119, + 11.6119936 + ], + [ + 48.058068, + 11.611963 + ], + [ + 48.0577775, + 11.6119225 + ], + [ + 48.0573512, + 11.6118349 + ], + [ + 48.0571422, + 11.6117786 + ], + [ + 48.0568304, + 11.6116946 + ], + [ + 48.0565738, + 11.6116095 + ], + [ + 48.056317, + 11.611514 + ], + [ + 48.0559838, + 11.6113633 + ], + [ + 48.0557891, + 11.6112828 + ], + [ + 48.0553146, + 11.6110581 + ], + [ + 48.0546253, + 11.6107317 + ] + ] + }, + { + "osmId": "40014590", + "name": null, + "lengthMeters": 85.91917434992112, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1270754, + 11.6041204 + ], + [ + 48.1270631, + 11.6041009 + ], + [ + 48.1269246, + 11.6038815 + ], + [ + 48.1265553, + 11.6032644 + ] + ] + }, + { + "osmId": "40017220", + "name": null, + "lengthMeters": 108.14451268971942, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1248126, + 11.6015134 + ], + [ + 48.1250074, + 11.6018689 + ], + [ + 48.1251031, + 11.6020485 + ], + [ + 48.1254422, + 11.6026235 + ] + ] + }, + { + "osmId": "40017222", + "name": null, + "lengthMeters": 790.0099518587203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1495907, + 11.4854113 + ], + [ + 48.1497061, + 11.4852751 + ], + [ + 48.1501691, + 11.48473 + ], + [ + 48.1502161, + 11.4846746 + ], + [ + 48.1502484, + 11.4846365 + ], + [ + 48.1503991, + 11.484459 + ], + [ + 48.1507313, + 11.484101 + ], + [ + 48.1510411, + 11.4838039 + ], + [ + 48.1510567, + 11.4837904 + ], + [ + 48.1514254, + 11.4834714 + ], + [ + 48.1516406, + 11.483303 + ], + [ + 48.1518577, + 11.4831511 + ], + [ + 48.1521161, + 11.4829764 + ], + [ + 48.1524371, + 11.4827728 + ], + [ + 48.1526465, + 11.4826459 + ], + [ + 48.1527657, + 11.4825731 + ], + [ + 48.1530952, + 11.4823892 + ], + [ + 48.1534455, + 11.4822034 + ], + [ + 48.1537678, + 11.4820397 + ], + [ + 48.1539996, + 11.4819337 + ], + [ + 48.1542546, + 11.481819 + ], + [ + 48.1545988, + 11.4816761 + ], + [ + 48.1550699, + 11.4815116 + ], + [ + 48.1560248, + 11.4812241 + ] + ] + }, + { + "osmId": "40017223", + "name": null, + "lengthMeters": 419.82529759845545, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2145943, + 11.4585111 + ], + [ + 48.2160497, + 11.4579793 + ], + [ + 48.2166151, + 11.4577698 + ], + [ + 48.2169731, + 11.4576365 + ], + [ + 48.2173239, + 11.457499 + ], + [ + 48.2179686, + 11.4572464 + ], + [ + 48.2182556, + 11.4571285 + ] + ] + }, + { + "osmId": "40017225", + "name": null, + "lengthMeters": 1177.988125585222, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.228225, + 11.4530613 + ], + [ + 48.2270672, + 11.4535149 + ], + [ + 48.2248224, + 11.4543945 + ], + [ + 48.2225261, + 11.4552943 + ], + [ + 48.2203398, + 11.4561633 + ], + [ + 48.2186522, + 11.4568257 + ], + [ + 48.2179769, + 11.4570908 + ] + ] + }, + { + "osmId": "40067791", + "name": null, + "lengthMeters": 276.098384130518, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1424642, + 11.5408041 + ], + [ + 48.1424249, + 11.5412905 + ], + [ + 48.1424006, + 11.5416866 + ], + [ + 48.1423682, + 11.5422576 + ], + [ + 48.142311, + 11.5434182 + ], + [ + 48.1423093, + 11.5434632 + ], + [ + 48.1422983, + 11.543666 + ], + [ + 48.1422382, + 11.5445092 + ] + ] + }, + { + "osmId": "40067792", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1993.6904626738574, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419488, + 11.5429559 + ], + [ + 48.1419493, + 11.5429502 + ], + [ + 48.1419498, + 11.5429437 + ], + [ + 48.1421142, + 11.5407732 + ], + [ + 48.1421956, + 11.5397033 + ], + [ + 48.1422741, + 11.5385243 + ], + [ + 48.1423385, + 11.5372982 + ], + [ + 48.14235, + 11.53703 + ], + [ + 48.1423776, + 11.5363869 + ], + [ + 48.1424121, + 11.5355003 + ], + [ + 48.142435, + 11.534957 + ], + [ + 48.1424488, + 11.534628 + ], + [ + 48.1424887, + 11.5332426 + ], + [ + 48.1425282, + 11.5320375 + ], + [ + 48.1425494, + 11.5311354 + ], + [ + 48.1425723, + 11.53039 + ], + [ + 48.1426028, + 11.5298935 + ], + [ + 48.142631, + 11.5294778 + ], + [ + 48.1427248, + 11.5282446 + ], + [ + 48.1427543, + 11.5278586 + ], + [ + 48.1428195, + 11.5269635 + ], + [ + 48.14315, + 11.5223686 + ], + [ + 48.1432037, + 11.5216224 + ], + [ + 48.1433417, + 11.5198025 + ], + [ + 48.143389, + 11.5190799 + ], + [ + 48.1434151, + 11.5184829 + ], + [ + 48.1434236, + 11.5177697 + ], + [ + 48.1434129, + 11.5170806 + ], + [ + 48.1433998, + 11.5167978 + ], + [ + 48.143372, + 11.5161957 + ] + ] + }, + { + "osmId": "40067805", + "name": null, + "lengthMeters": 209.8124029612463, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.14223, + 11.5438871 + ], + [ + 48.142283, + 11.5432365 + ], + [ + 48.1422927, + 11.5431171 + ], + [ + 48.1423698, + 11.5424153 + ], + [ + 48.1423866, + 11.5422533 + ], + [ + 48.1424411, + 11.5417295 + ], + [ + 48.1424972, + 11.5410883 + ] + ] + }, + { + "osmId": "40067816", + "name": null, + "lengthMeters": 123.59961119290493, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416895, + 11.549023 + ], + [ + 48.1416461, + 11.5495985 + ], + [ + 48.1416258, + 11.5498959 + ], + [ + 48.1416099, + 11.5506832 + ] + ] + }, + { + "osmId": "40067820", + "name": null, + "lengthMeters": 434.21615383110714, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426805, + 11.5388905 + ], + [ + 48.1426937, + 11.5386303 + ], + [ + 48.1426992, + 11.5384929 + ], + [ + 48.1427133, + 11.5381425 + ], + [ + 48.1427186, + 11.5379919 + ], + [ + 48.1427225, + 11.5378809 + ], + [ + 48.1427308, + 11.537637 + ], + [ + 48.142728, + 11.537213 + ], + [ + 48.1427197, + 11.536521 + ], + [ + 48.1427159, + 11.5356673 + ], + [ + 48.1427156, + 11.5356001 + ], + [ + 48.1427138, + 11.5349637 + ], + [ + 48.142752, + 11.5339585 + ], + [ + 48.1427623, + 11.533498 + ], + [ + 48.1427538, + 11.5330429 + ] + ] + }, + { + "osmId": "40105247", + "name": null, + "lengthMeters": 226.05006206014718, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1262319, + 11.6031418 + ], + [ + 48.1265125, + 11.6036786 + ], + [ + 48.1265974, + 11.6038275 + ], + [ + 48.1269209, + 11.6043451 + ], + [ + 48.1269247, + 11.6043509 + ], + [ + 48.1272835, + 11.6048929 + ], + [ + 48.1276066, + 11.605381 + ] + ] + }, + { + "osmId": "40105257", + "name": null, + "lengthMeters": 183.12627766461583, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.124979, + 11.60088 + ], + [ + 48.1249867, + 11.6008915 + ], + [ + 48.1251839, + 11.6011597 + ], + [ + 48.1256118, + 11.6017417 + ], + [ + 48.1258304, + 11.6021052 + ], + [ + 48.1260413, + 11.6024729 + ], + [ + 48.1261335, + 11.6026338 + ] + ] + }, + { + "osmId": "40105258", + "name": null, + "lengthMeters": 181.15764443396142, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1260982, + 11.6026588 + ], + [ + 48.1260144, + 11.6025114 + ], + [ + 48.1257802, + 11.6021082 + ], + [ + 48.12558, + 11.6017864 + ], + [ + 48.1251668, + 11.6012184 + ], + [ + 48.1249546, + 11.600925 + ] + ] + }, + { + "osmId": "40105264", + "name": null, + "lengthMeters": 213.6199834589271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1289106, + 11.6073402 + ], + [ + 48.1290817, + 11.6075997 + ], + [ + 48.1291116, + 11.6076424 + ], + [ + 48.1300395, + 11.6090325 + ], + [ + 48.1302751, + 11.6093661 + ] + ] + }, + { + "osmId": "40105265", + "name": null, + "lengthMeters": 116.69566702665827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1285965, + 11.6061751 + ], + [ + 48.1287921, + 11.6065001 + ], + [ + 48.1289157, + 11.6067401 + ], + [ + 48.129094, + 11.6070668 + ], + [ + 48.1292893, + 11.6073534 + ] + ] + }, + { + "osmId": "40119446", + "name": null, + "lengthMeters": 1512.8788975093094, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1431909, + 11.5167123 + ], + [ + 48.1432071, + 11.5170475 + ], + [ + 48.1432218, + 11.5177634 + ], + [ + 48.1432185, + 11.5184853 + ], + [ + 48.1431993, + 11.5190418 + ], + [ + 48.1431595, + 11.519758 + ], + [ + 48.1430411, + 11.5213515 + ], + [ + 48.1429684, + 11.5223576 + ], + [ + 48.1427466, + 11.5254296 + ], + [ + 48.1425449, + 11.5282224 + ], + [ + 48.1424257, + 11.5298281 + ], + [ + 48.1423169, + 11.5322888 + ], + [ + 48.1422827, + 11.5334496 + ], + [ + 48.1422439, + 11.5346237 + ], + [ + 48.1422134, + 11.5350354 + ], + [ + 48.1420604, + 11.537014 + ] + ] + }, + { + "osmId": "40119448", + "name": null, + "lengthMeters": 99.65515730208926, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.14097, + 11.5493641 + ], + [ + 48.1410133, + 11.5487431 + ], + [ + 48.1410554, + 11.5480272 + ] + ] + }, + { + "osmId": "40119456", + "name": null, + "lengthMeters": 226.46113481084527, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418088, + 11.5374298 + ], + [ + 48.1418786, + 11.5365031 + ], + [ + 48.1418812, + 11.536466 + ], + [ + 48.1418884, + 11.5363618 + ], + [ + 48.1419018, + 11.5361692 + ], + [ + 48.1419285, + 11.5357411 + ], + [ + 48.1419392, + 11.5354421 + ], + [ + 48.1419483, + 11.5351898 + ], + [ + 48.1419766, + 11.5343892 + ] + ] + }, + { + "osmId": "40119461", + "name": null, + "lengthMeters": 302.6532972421913, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1413774, + 11.5571591 + ], + [ + 48.1413882, + 11.5570028 + ], + [ + 48.1414803, + 11.5558058 + ], + [ + 48.1415993, + 11.5542093 + ], + [ + 48.1416276, + 11.5538232 + ], + [ + 48.1416401, + 11.5536395 + ], + [ + 48.141645, + 11.5534692 + ], + [ + 48.1416486, + 11.553278 + ], + [ + 48.1416493, + 11.5531024 + ] + ] + }, + { + "osmId": "40119463", + "name": null, + "lengthMeters": 235.33720421646376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412423, + 11.5544205 + ], + [ + 48.1411693, + 11.5553527 + ], + [ + 48.1410084, + 11.5575727 + ] + ] + }, + { + "osmId": "40119464", + "name": null, + "lengthMeters": 150.84254601034127, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411982, + 11.5532784 + ], + [ + 48.1412033, + 11.5526105 + ], + [ + 48.1412033, + 11.5525679 + ], + [ + 48.1412021, + 11.5524153 + ], + [ + 48.1412044, + 11.5521605 + ], + [ + 48.1412106, + 11.5519852 + ], + [ + 48.1412223, + 11.5517863 + ], + [ + 48.1412622, + 11.5512499 + ] + ] + }, + { + "osmId": "40119471", + "name": null, + "lengthMeters": 247.64980655492406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1405118, + 11.5541462 + ], + [ + 48.1404684, + 11.5545723 + ], + [ + 48.140453, + 11.5547229 + ], + [ + 48.1403984, + 11.5552222 + ], + [ + 48.1403241, + 11.556229 + ], + [ + 48.1402325, + 11.5574566 + ] + ] + }, + { + "osmId": "40119474", + "name": null, + "lengthMeters": 348.15109830405356, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1399336, + 11.557412 + ], + [ + 48.1400219, + 11.5561801 + ], + [ + 48.1400944, + 11.5551708 + ], + [ + 48.1401134, + 11.5549406 + ], + [ + 48.1401387, + 11.5547157 + ], + [ + 48.1401762, + 11.5544675 + ], + [ + 48.1402134, + 11.5542683 + ], + [ + 48.1402586, + 11.5540466 + ], + [ + 48.1404006, + 11.5533631 + ], + [ + 48.1405246, + 11.5528255 + ] + ] + }, + { + "osmId": "40138060", + "name": null, + "lengthMeters": 133.28054636993662, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4527328, + 9.9940696 + ], + [ + 53.4531824, + 9.993527 + ], + [ + 53.4535445, + 9.993123 + ], + [ + 53.453717, + 9.9929212 + ] + ] + }, + { + "osmId": "40152332", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 547.100112410086, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5150208, + 13.5388838 + ], + [ + 52.5145547, + 13.5389275 + ], + [ + 52.5143982, + 13.5389422 + ], + [ + 52.5140891, + 13.5389812 + ], + [ + 52.5120821, + 13.5392348 + ], + [ + 52.5114901, + 13.5392979 + ], + [ + 52.5114848, + 13.5392985 + ], + [ + 52.5101158, + 13.5395108 + ] + ] + }, + { + "osmId": "40154293", + "name": null, + "lengthMeters": 329.84933099116205, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5711986, + 9.9889196 + ], + [ + 53.5712876, + 9.988932 + ], + [ + 53.5713726, + 9.9889503 + ], + [ + 53.5717551, + 9.9890485 + ], + [ + 53.5718576, + 9.9890738 + ], + [ + 53.571981, + 9.9890822 + ], + [ + 53.5721579, + 9.9890933 + ], + [ + 53.5732272, + 9.9891416 + ], + [ + 53.5732475, + 9.9891397 + ], + [ + 53.5734459, + 9.9891476 + ], + [ + 53.5736011, + 9.9891299 + ], + [ + 53.5737674, + 9.9890996 + ], + [ + 53.5738661, + 9.9890724 + ], + [ + 53.5739628, + 9.9890415 + ], + [ + 53.5741475, + 9.988962 + ] + ] + }, + { + "osmId": "40154294", + "name": null, + "lengthMeters": 860.0756623955738, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5634998, + 9.9894807 + ], + [ + 53.5636419, + 9.9894878 + ], + [ + 53.5638853, + 9.9894696 + ], + [ + 53.5641699, + 9.9894025 + ], + [ + 53.566098, + 9.9888643 + ], + [ + 53.5662884, + 9.9888113 + ], + [ + 53.5664981, + 9.988771 + ], + [ + 53.566681, + 9.9887426 + ], + [ + 53.5668733, + 9.9887262 + ], + [ + 53.5670419, + 9.9887229 + ], + [ + 53.5672161, + 9.9887313 + ], + [ + 53.5676343, + 9.988752 + ], + [ + 53.5678212, + 9.9887586 + ], + [ + 53.5689797, + 9.9888045 + ], + [ + 53.5695315, + 9.9888296 + ], + [ + 53.5700924, + 9.988859 + ], + [ + 53.5711986, + 9.9889196 + ] + ] + }, + { + "osmId": "40206168", + "name": null, + "lengthMeters": 1087.9272620464915, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2154993, + 11.6762742 + ], + [ + 48.2156846, + 11.6763971 + ], + [ + 48.2159425, + 11.6765432 + ], + [ + 48.2165944, + 11.6768976 + ], + [ + 48.2170572, + 11.6771364 + ], + [ + 48.2176423, + 11.6774093 + ], + [ + 48.2182197, + 11.6776487 + ], + [ + 48.2186665, + 11.677807 + ], + [ + 48.2192473, + 11.6779867 + ], + [ + 48.2195296, + 11.6780622 + ], + [ + 48.2196839, + 11.6781035 + ], + [ + 48.2203361, + 11.6782562 + ], + [ + 48.2214164, + 11.6784753 + ], + [ + 48.2221269, + 11.6786406 + ], + [ + 48.2229717, + 11.6788419 + ], + [ + 48.2241972, + 11.6791486 + ], + [ + 48.2249308, + 11.679318 + ], + [ + 48.2250211, + 11.6793381 + ], + [ + 48.2250361, + 11.6793414 + ] + ] + }, + { + "osmId": "40348430", + "name": null, + "lengthMeters": 130.71631216781984, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419779, + 11.5330095 + ], + [ + 48.1419856, + 11.5326232 + ], + [ + 48.1419884, + 11.5322323 + ], + [ + 48.1419843, + 11.5320885 + ], + [ + 48.1419781, + 11.5319934 + ], + [ + 48.1419669, + 11.5318704 + ], + [ + 48.1419503, + 11.5317398 + ], + [ + 48.1418866, + 11.5312615 + ] + ] + }, + { + "osmId": "40348442", + "name": null, + "lengthMeters": 104.30726717140766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1410716, + 11.5273722 + ], + [ + 48.1410576, + 11.5278908 + ], + [ + 48.1410723, + 11.5283398 + ], + [ + 48.1411373, + 11.528766 + ] + ] + }, + { + "osmId": "40348446", + "name": "S\u00fcdring", + "lengthMeters": 269.5198100515832, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1427538, + 11.5330429 + ], + [ + 48.1427297, + 11.5327638 + ], + [ + 48.1426988, + 11.5325124 + ], + [ + 48.1426082, + 11.5320745 + ], + [ + 48.1424699, + 11.5315212 + ], + [ + 48.1422523, + 11.5309289 + ], + [ + 48.1417756, + 11.52976 + ] + ] + }, + { + "osmId": "40348452", + "name": null, + "lengthMeters": 1256.564007184431, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1423971, + 11.5332623 + ], + [ + 48.1424369, + 11.532116 + ], + [ + 48.1424952, + 11.5304365 + ], + [ + 48.1425308, + 11.5298558 + ], + [ + 48.1425597, + 11.5294695 + ], + [ + 48.1426522, + 11.5282357 + ], + [ + 48.142744, + 11.5269578 + ], + [ + 48.1428527, + 11.5254444 + ], + [ + 48.1430743, + 11.5223593 + ], + [ + 48.1431281, + 11.5216098 + ], + [ + 48.1432664, + 11.5197762 + ], + [ + 48.1433117, + 11.519062 + ], + [ + 48.1433359, + 11.5184908 + ], + [ + 48.1433429, + 11.5177647 + ], + [ + 48.1433231, + 11.5170608 + ], + [ + 48.1433028, + 11.5163991 + ] + ] + }, + { + "osmId": "40348468", + "name": null, + "lengthMeters": 93.38911885815837, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434345, + 11.5145604 + ], + [ + 48.1434488, + 11.5148735 + ], + [ + 48.1434931, + 11.515816 + ] + ] + }, + { + "osmId": "40348469", + "name": "Fernbahn", + "lengthMeters": 91.71543527738525, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434514, + 11.5159428 + ], + [ + 48.143392, + 11.5147099 + ] + ] + }, + { + "osmId": "40348471", + "name": "Fernbahn", + "lengthMeters": 87.47430099834851, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433613, + 11.5148683 + ], + [ + 48.1434169, + 11.5160443 + ] + ] + }, + { + "osmId": "40348472", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 85.16953641388334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.143372, + 11.5161957 + ], + [ + 48.1433237, + 11.5150501 + ] + ] + }, + { + "osmId": "40348473", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 82.25762867472288, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1432907, + 11.5151763 + ], + [ + 48.1433436, + 11.5162821 + ] + ] + }, + { + "osmId": "40348474", + "name": null, + "lengthMeters": 81.19364612322997, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433028, + 11.5163991 + ], + [ + 48.1432479, + 11.5153079 + ] + ] + }, + { + "osmId": "40348476", + "name": null, + "lengthMeters": 77.82291270325888, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1431392, + 11.5156663 + ], + [ + 48.1431909, + 11.5167123 + ] + ] + }, + { + "osmId": "40428754", + "name": null, + "lengthMeters": 775.7370895213161, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1454415, + 11.4976038 + ], + [ + 48.1449452, + 11.5023146 + ], + [ + 48.1446204, + 11.5053791 + ], + [ + 48.144501, + 11.506521 + ], + [ + 48.1443527, + 11.5079311 + ] + ] + }, + { + "osmId": "40428755", + "name": null, + "lengthMeters": 407.68780971184214, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1461899, + 11.492062 + ], + [ + 48.1461885, + 11.492073 + ], + [ + 48.1461325, + 11.492601 + ], + [ + 48.1460659, + 11.4930966 + ], + [ + 48.1460414, + 11.4932475 + ], + [ + 48.1460149, + 11.4934105 + ], + [ + 48.1458766, + 11.4942016 + ], + [ + 48.145762, + 11.4948237 + ], + [ + 48.1456427, + 11.4954643 + ], + [ + 48.1455551, + 11.4959343 + ], + [ + 48.1455017, + 11.4962503 + ], + [ + 48.1454465, + 11.4966378 + ], + [ + 48.1454219, + 11.4969185 + ], + [ + 48.1453704, + 11.4974114 + ] + ] + }, + { + "osmId": "40428761", + "name": null, + "lengthMeters": 232.618148677595, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434753, + 11.511431 + ], + [ + 48.1434533, + 11.5117185 + ], + [ + 48.1434296, + 11.512093 + ], + [ + 48.1434172, + 11.5123564 + ], + [ + 48.1434092, + 11.5126016 + ], + [ + 48.143404, + 11.5131668 + ], + [ + 48.1434047, + 11.5135056 + ], + [ + 48.1434051, + 11.5137338 + ], + [ + 48.143417, + 11.5140991 + ], + [ + 48.1434345, + 11.5145604 + ] + ] + }, + { + "osmId": "40428763", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1280.2742393837334, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1447028, + 11.4980895 + ], + [ + 48.1446681, + 11.4984192 + ], + [ + 48.1444724, + 11.5002761 + ], + [ + 48.1442519, + 11.502369 + ], + [ + 48.1441806, + 11.5030503 + ], + [ + 48.1439137, + 11.5056006 + ], + [ + 48.1436887, + 11.50775 + ], + [ + 48.1436874, + 11.5077631 + ], + [ + 48.1436364, + 11.5082501 + ], + [ + 48.143368, + 11.5108146 + ], + [ + 48.1432937, + 11.5116979 + ], + [ + 48.1432598, + 11.5122962 + ], + [ + 48.1432584, + 11.5123251 + ], + [ + 48.1432479, + 11.5126041 + ], + [ + 48.1432409, + 11.5129464 + ], + [ + 48.1432362, + 11.5137338 + ], + [ + 48.1432907, + 11.5151763 + ] + ] + }, + { + "osmId": "40428764", + "name": null, + "lengthMeters": 99.52651947482693, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438094, + 11.5140713 + ], + [ + 48.1437055, + 11.5145289 + ], + [ + 48.1436039, + 11.5148545 + ], + [ + 48.1434661, + 11.5153083 + ] + ] + }, + { + "osmId": "40428774", + "name": null, + "lengthMeters": 2246.6220879958432, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476127, + 11.4682328 + ], + [ + 48.1476053, + 11.4682561 + ], + [ + 48.1473914, + 11.4689124 + ], + [ + 48.1471855, + 11.46958 + ], + [ + 48.1470874, + 11.4699516 + ], + [ + 48.1469739, + 11.4704332 + ], + [ + 48.1468755, + 11.470955 + ], + [ + 48.1468354, + 11.4712162 + ], + [ + 48.1467929, + 11.4714925 + ], + [ + 48.1467386, + 11.4719609 + ], + [ + 48.1466936, + 11.4724426 + ], + [ + 48.1466254, + 11.4734036 + ], + [ + 48.1465992, + 11.4737563 + ], + [ + 48.1464826, + 11.4753237 + ], + [ + 48.1464202, + 11.4761391 + ], + [ + 48.146316, + 11.4774999 + ], + [ + 48.146238, + 11.4784913 + ], + [ + 48.1460789, + 11.480708 + ], + [ + 48.145998, + 11.4818016 + ], + [ + 48.1458216, + 11.4841976 + ], + [ + 48.1458043, + 11.4844178 + ], + [ + 48.1456594, + 11.4863136 + ], + [ + 48.1455886, + 11.4873537 + ], + [ + 48.1455301, + 11.4882129 + ], + [ + 48.1454571, + 11.4895567 + ], + [ + 48.1454047, + 11.4903374 + ], + [ + 48.1453437, + 11.4908917 + ], + [ + 48.1452735, + 11.4913943 + ], + [ + 48.1450782, + 11.492659 + ], + [ + 48.1450498, + 11.4928769 + ], + [ + 48.1449909, + 11.4933285 + ], + [ + 48.1449182, + 11.4940017 + ], + [ + 48.1447822, + 11.4953566 + ], + [ + 48.1446514, + 11.4967078 + ], + [ + 48.1445081, + 11.4980411 + ] + ] + }, + { + "osmId": "40428779", + "name": null, + "lengthMeters": 888.2719598351032, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1439477, + 11.5037957 + ], + [ + 48.143536, + 11.5077114 + ], + [ + 48.1435329, + 11.507741 + ], + [ + 48.1434641, + 11.5083954 + ], + [ + 48.1432142, + 11.5107844 + ], + [ + 48.1431917, + 11.5110395 + ], + [ + 48.1431349, + 11.511682 + ], + [ + 48.143094, + 11.5123074 + ], + [ + 48.1430765, + 11.5125949 + ], + [ + 48.1430655, + 11.5137338 + ], + [ + 48.1431392, + 11.5156663 + ] + ] + }, + { + "osmId": "40428780", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1270.1985640218054, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433237, + 11.5150501 + ], + [ + 48.1432722, + 11.5137338 + ], + [ + 48.1432838, + 11.5126055 + ], + [ + 48.1432987, + 11.5123296 + ], + [ + 48.1433326, + 11.5117018 + ], + [ + 48.1433983, + 11.5108206 + ], + [ + 48.1436665, + 11.5082578 + ], + [ + 48.1436792, + 11.5081364 + ], + [ + 48.1436805, + 11.5081242 + ], + [ + 48.1438055, + 11.5069302 + ], + [ + 48.1439437, + 11.5056095 + ], + [ + 48.1442108, + 11.5030574 + ], + [ + 48.1442814, + 11.5023801 + ], + [ + 48.1445048, + 11.5002849 + ], + [ + 48.1447378, + 11.4980989 + ] + ] + }, + { + "osmId": "40446371", + "name": null, + "lengthMeters": 326.5468375891695, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1421023, + 11.5186396 + ], + [ + 48.1421602, + 11.5185445 + ], + [ + 48.1423054, + 11.5182928 + ], + [ + 48.1424378, + 11.5180362 + ], + [ + 48.1425084, + 11.5178845 + ], + [ + 48.1426057, + 11.5176592 + ], + [ + 48.1427115, + 11.5173874 + ], + [ + 48.1428099, + 11.5171047 + ], + [ + 48.1428796, + 11.5168918 + ], + [ + 48.1435518, + 11.5148339 + ] + ] + }, + { + "osmId": "40446384", + "name": null, + "lengthMeters": 618.1540706830291, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419907, + 11.5191789 + ], + [ + 48.1419333, + 11.519356 + ], + [ + 48.1418797, + 11.51955 + ], + [ + 48.1418594, + 11.5196453 + ], + [ + 48.1418237, + 11.5198269 + ], + [ + 48.1417804, + 11.5201056 + ], + [ + 48.1417338, + 11.5204831 + ], + [ + 48.141685, + 11.5210115 + ], + [ + 48.1415066, + 11.5229661 + ], + [ + 48.1414595, + 11.523535 + ], + [ + 48.1414374, + 11.523822 + ], + [ + 48.1414176, + 11.5241076 + ], + [ + 48.1413345, + 11.5253038 + ], + [ + 48.1413068, + 11.5255913 + ], + [ + 48.1412972, + 11.5256906 + ], + [ + 48.1412583, + 11.5260079 + ], + [ + 48.1411779, + 11.5265734 + ], + [ + 48.1411041, + 11.527081 + ], + [ + 48.1410825, + 11.5272507 + ], + [ + 48.1410716, + 11.5273722 + ] + ] + }, + { + "osmId": "40446386", + "name": null, + "lengthMeters": 479.2872480401002, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1366736, + 11.526264 + ], + [ + 48.1369525, + 11.5258881 + ], + [ + 48.1380603, + 11.5243955 + ], + [ + 48.1387897, + 11.5234126 + ], + [ + 48.1398669, + 11.5219258 + ] + ] + }, + { + "osmId": "40478854", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 384.8796195032544, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402527, + 11.5271221 + ], + [ + 48.1401618, + 11.5270382 + ], + [ + 48.1400342, + 11.5269377 + ], + [ + 48.1397636, + 11.5267514 + ], + [ + 48.1394481, + 11.5265741 + ], + [ + 48.1391165, + 11.5264326 + ], + [ + 48.1388387, + 11.5263513 + ], + [ + 48.1385243, + 11.526297 + ], + [ + 48.1382931, + 11.5262801 + ], + [ + 48.138061, + 11.526285 + ], + [ + 48.1377536, + 11.5263203 + ], + [ + 48.1374336, + 11.5264042 + ], + [ + 48.1372392, + 11.5264648 + ], + [ + 48.1370699, + 11.526541 + ], + [ + 48.1369174, + 11.5266097 + ] + ] + }, + { + "osmId": "40478860", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 586.9124758231817, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1366129, + 11.526778 + ], + [ + 48.1361495, + 11.5271494 + ], + [ + 48.1358665, + 11.527431 + ], + [ + 48.1356212, + 11.5277289 + ], + [ + 48.1350955, + 11.5284449 + ], + [ + 48.1342197, + 11.5297227 + ], + [ + 48.1338513, + 11.5302597 + ], + [ + 48.1334106, + 11.5308982 + ], + [ + 48.1331761, + 11.531238 + ], + [ + 48.1326653, + 11.5319795 + ] + ] + }, + { + "osmId": "40478861", + "name": null, + "lengthMeters": 589.3033398070327, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1326121, + 11.5318969 + ], + [ + 48.1331255, + 11.5311589 + ], + [ + 48.1350415, + 11.5283584 + ], + [ + 48.1355585, + 11.5276379 + ], + [ + 48.1358103, + 11.5273271 + ], + [ + 48.1364934, + 11.5264973 + ] + ] + }, + { + "osmId": "40518097", + "name": null, + "lengthMeters": 120.47207069726555, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1458869, + 11.4949631 + ], + [ + 48.1459787, + 11.4941105 + ], + [ + 48.146006, + 11.4938165 + ], + [ + 48.1460663, + 11.4933621 + ] + ] + }, + { + "osmId": "40518098", + "name": null, + "lengthMeters": 92.48646171050592, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1459959, + 11.4925449 + ], + [ + 48.1463608, + 11.4914247 + ] + ] + }, + { + "osmId": "40518099", + "name": null, + "lengthMeters": 97.51856724717979, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1460663, + 11.4933621 + ], + [ + 48.1461694, + 11.4926751 + ], + [ + 48.146213, + 11.4922288 + ], + [ + 48.1462288, + 11.4920714 + ] + ] + }, + { + "osmId": "40518101", + "name": null, + "lengthMeters": 776.5443310608968, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1507366, + 11.4837975 + ], + [ + 48.1507531, + 11.4837845 + ], + [ + 48.1510074, + 11.4835917 + ], + [ + 48.1513714, + 11.4833269 + ], + [ + 48.1516744, + 11.4831138 + ], + [ + 48.1520764, + 11.4828427 + ], + [ + 48.1523979, + 11.4826377 + ], + [ + 48.1525635, + 11.4825379 + ], + [ + 48.1527283, + 11.4824386 + ], + [ + 48.1530605, + 11.4822527 + ], + [ + 48.1532138, + 11.4821678 + ], + [ + 48.1534576, + 11.4820412 + ], + [ + 48.1537283, + 11.4819075 + ], + [ + 48.1538107, + 11.4818693 + ], + [ + 48.153972, + 11.4817946 + ], + [ + 48.1542275, + 11.4816782 + ], + [ + 48.1545734, + 11.4815371 + ], + [ + 48.1549619, + 11.4814035 + ], + [ + 48.1549762, + 11.4813986 + ], + [ + 48.1558759, + 11.4811196 + ], + [ + 48.1570433, + 11.480749 + ], + [ + 48.15723, + 11.4806893 + ], + [ + 48.1573627, + 11.480641 + ] + ] + }, + { + "osmId": "40518102", + "name": null, + "lengthMeters": 249.53372285428568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1488122, + 11.4857947 + ], + [ + 48.1486094, + 11.4861608 + ], + [ + 48.1485069, + 11.4863634 + ], + [ + 48.1482465, + 11.4869031 + ], + [ + 48.1477486, + 11.4879733 + ], + [ + 48.14772, + 11.488034 + ], + [ + 48.147492, + 11.4885129 + ] + ] + }, + { + "osmId": "40518103", + "name": null, + "lengthMeters": 775.6924957945982, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1573623, + 11.4805835 + ], + [ + 48.1570353, + 11.4806953 + ], + [ + 48.1553198, + 11.4812321 + ], + [ + 48.1549678, + 11.4813488 + ], + [ + 48.1549535, + 11.4813537 + ], + [ + 48.1545638, + 11.4814878 + ], + [ + 48.1542173, + 11.481628 + ], + [ + 48.1539604, + 11.4817425 + ], + [ + 48.1537184, + 11.4818565 + ], + [ + 48.1534841, + 11.4819748 + ], + [ + 48.1534009, + 11.4820168 + ], + [ + 48.1532283, + 11.4821075 + ], + [ + 48.1530487, + 11.4822035 + ], + [ + 48.1527154, + 11.4823915 + ], + [ + 48.152382, + 11.4825932 + ], + [ + 48.1520613, + 11.4827972 + ], + [ + 48.1516601, + 11.4830698 + ], + [ + 48.1513543, + 11.4832817 + ], + [ + 48.1509892, + 11.4835448 + ], + [ + 48.1507425, + 11.4837348 + ] + ] + }, + { + "osmId": "40528323", + "name": null, + "lengthMeters": 87.27210872312627, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4507841, + 13.7519953 + ], + [ + 52.4507219, + 13.752183 + ], + [ + 52.4506347, + 13.7524268 + ], + [ + 52.4505687, + 13.7526289 + ], + [ + 52.4505179, + 13.7527806 + ], + [ + 52.4505048, + 13.7528175 + ], + [ + 52.4504015, + 13.7531196 + ] + ] + }, + { + "osmId": "40545541", + "name": "Abstellbahn", + "lengthMeters": 117.4785907389846, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476047, + 11.4876006 + ], + [ + 48.1473587, + 11.4880069 + ], + [ + 48.1472335, + 11.4882051 + ], + [ + 48.1471447, + 11.4883534 + ], + [ + 48.1470614, + 11.4884869 + ], + [ + 48.1468852, + 11.4887599 + ] + ] + }, + { + "osmId": "40545542", + "name": "Abstellbahn", + "lengthMeters": 111.21213885488194, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476337, + 11.4876514 + ], + [ + 48.147334, + 11.4881308 + ], + [ + 48.1471777, + 11.4883856 + ], + [ + 48.1470971, + 11.4885062 + ], + [ + 48.1469485, + 11.4887432 + ] + ] + }, + { + "osmId": "40545543", + "name": "Abstellbahn", + "lengthMeters": 1940.7300614648848, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476337, + 11.4876514 + ], + [ + 48.1478944, + 11.4872566 + ], + [ + 48.1481824, + 11.4868271 + ], + [ + 48.1484621, + 11.4863104 + ], + [ + 48.1486425, + 11.4858456 + ], + [ + 48.148755, + 11.4854673 + ], + [ + 48.1488368, + 11.4850803 + ], + [ + 48.1488859, + 11.4847597 + ], + [ + 48.1489115, + 11.4845145 + ], + [ + 48.1489255, + 11.4842646 + ], + [ + 48.1489312, + 11.4839967 + ], + [ + 48.1489253, + 11.4837266 + ], + [ + 48.1488848, + 11.4832992 + ], + [ + 48.148824, + 11.4828811 + ], + [ + 48.1487544, + 11.482568 + ], + [ + 48.1486181, + 11.4820441 + ], + [ + 48.1482032, + 11.48045 + ], + [ + 48.148123, + 11.4800044 + ], + [ + 48.1480523, + 11.4795288 + ], + [ + 48.1479976, + 11.4789223 + ], + [ + 48.147971, + 11.4784241 + ], + [ + 48.1478648, + 11.4761608 + ], + [ + 48.1478155, + 11.4750567 + ], + [ + 48.1477754, + 11.4740621 + ], + [ + 48.1477768, + 11.4735282 + ], + [ + 48.147808, + 11.4729704 + ], + [ + 48.1478439, + 11.4724763 + ], + [ + 48.1478843, + 11.4719207 + ], + [ + 48.148041, + 11.4698456 + ], + [ + 48.1481049, + 11.4692438 + ], + [ + 48.148229, + 11.4685746 + ], + [ + 48.1484833, + 11.4676791 + ], + [ + 48.1491019, + 11.4658809 + ], + [ + 48.1494968, + 11.4647023 + ], + [ + 48.149687, + 11.4641404 + ], + [ + 48.1500901, + 11.4630776 + ] + ] + }, + { + "osmId": "40545545", + "name": null, + "lengthMeters": 77.05494063092222, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1463464, + 11.4890315 + ], + [ + 48.1463082, + 11.4900685 + ] + ] + }, + { + "osmId": "40545546", + "name": null, + "lengthMeters": 1405.2999455355084, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1477099, + 11.4693715 + ], + [ + 48.1474894, + 11.4700954 + ], + [ + 48.1473702, + 11.4705742 + ], + [ + 48.1472906, + 11.4708943 + ], + [ + 48.1471394, + 11.4716297 + ], + [ + 48.1470698, + 11.4720729 + ], + [ + 48.1470054, + 11.4725189 + ], + [ + 48.1469215, + 11.4734454 + ], + [ + 48.146837, + 11.4745416 + ], + [ + 48.1467735, + 11.4753643 + ], + [ + 48.1465558, + 11.4783605 + ], + [ + 48.1464684, + 11.4796439 + ], + [ + 48.1463937, + 11.4807415 + ], + [ + 48.1463817, + 11.4813342 + ], + [ + 48.1463827, + 11.4818166 + ], + [ + 48.1464007, + 11.4835094 + ], + [ + 48.1464175, + 11.4854736 + ], + [ + 48.1464184, + 11.4857849 + ], + [ + 48.1464193, + 11.4861336 + ], + [ + 48.1464215, + 11.4869312 + ], + [ + 48.1463998, + 11.4875796 + ], + [ + 48.1463815, + 11.4880771 + ] + ] + }, + { + "osmId": "40545554", + "name": "Fernbahn", + "lengthMeters": 132.54702224007693, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1456285, + 11.4901433 + ], + [ + 48.1456379, + 11.4908809 + ], + [ + 48.1456326, + 11.4914028 + ], + [ + 48.1456172, + 11.4919291 + ] + ] + }, + { + "osmId": "40545555", + "name": "Fernbahn", + "lengthMeters": 1255.9416756420617, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1447793, + 11.4981101 + ], + [ + 48.1445476, + 11.5002922 + ], + [ + 48.1443243, + 11.5023948 + ], + [ + 48.1442537, + 11.5030675 + ], + [ + 48.1439859, + 11.5056185 + ], + [ + 48.1438468, + 11.506943 + ], + [ + 48.1437079, + 11.5082663 + ], + [ + 48.143436, + 11.5108279 + ], + [ + 48.1433621, + 11.5117051 + ], + [ + 48.1433348, + 11.5123321 + ], + [ + 48.1433218, + 11.5125955 + ], + [ + 48.1433193, + 11.5137338 + ], + [ + 48.1433613, + 11.5148683 + ] + ] + }, + { + "osmId": "40545556", + "name": "Fernbahn", + "lengthMeters": 1207.5011061098169, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1466247, + 11.4739489 + ], + [ + 48.1465251, + 11.4753296 + ], + [ + 48.1464637, + 11.4761598 + ], + [ + 48.1463063, + 11.4783178 + ], + [ + 48.1462616, + 11.4789215 + ], + [ + 48.146129, + 11.4807133 + ], + [ + 48.146065, + 11.4816252 + ], + [ + 48.146052, + 11.4818107 + ], + [ + 48.1458846, + 11.4841959 + ], + [ + 48.1457303, + 11.4863213 + ], + [ + 48.1456713, + 11.4872225 + ], + [ + 48.1456416, + 11.4876759 + ], + [ + 48.1456281, + 11.487981 + ], + [ + 48.1456186, + 11.4882655 + ], + [ + 48.1456089, + 11.4887045 + ], + [ + 48.1456077, + 11.4891069 + ], + [ + 48.1456089, + 11.489267 + ], + [ + 48.1456149, + 11.4896024 + ], + [ + 48.1456285, + 11.4901433 + ] + ] + }, + { + "osmId": "40545557", + "name": null, + "lengthMeters": 404.34177364034485, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.144969, + 11.4968806 + ], + [ + 48.1452452, + 11.4950949 + ], + [ + 48.1453297, + 11.4945479 + ], + [ + 48.1454492, + 11.4937685 + ], + [ + 48.1455051, + 11.4933743 + ], + [ + 48.1455534, + 11.4930085 + ], + [ + 48.1455825, + 11.4927547 + ], + [ + 48.1456107, + 11.4924824 + ], + [ + 48.1456335, + 11.4922209 + ], + [ + 48.1456496, + 11.4919795 + ], + [ + 48.1456656, + 11.4915399 + ] + ] + }, + { + "osmId": "40545558", + "name": "Fernbahn", + "lengthMeters": 537.7051728545117, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1466577, + 11.4739578 + ], + [ + 48.146673, + 11.4737498 + ], + [ + 48.1466976, + 11.4734138 + ], + [ + 48.1467359, + 11.4729492 + ], + [ + 48.146781, + 11.4724674 + ], + [ + 48.146837, + 11.4719949 + ], + [ + 48.1469033, + 11.4715295 + ], + [ + 48.1469453, + 11.4712682 + ], + [ + 48.1469901, + 11.4709995 + ], + [ + 48.1470361, + 11.4707619 + ], + [ + 48.14709, + 11.4704948 + ], + [ + 48.1471375, + 11.470277 + ], + [ + 48.1472233, + 11.4699133 + ], + [ + 48.1472989, + 11.4696185 + ], + [ + 48.1474151, + 11.4691975 + ], + [ + 48.1475338, + 11.4688083 + ], + [ + 48.1478114, + 11.4679405 + ], + [ + 48.1478245, + 11.4679 + ], + [ + 48.1478292, + 11.4678855 + ], + [ + 48.1480897, + 11.467097 + ] + ] + }, + { + "osmId": "40545559", + "name": "Fernbahn", + "lengthMeters": 107.72531287897516, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1456656, + 11.4915399 + ], + [ + 48.1456761, + 11.4907862 + ], + [ + 48.1456628, + 11.4900884 + ] + ] + }, + { + "osmId": "40545562", + "name": "Fernbahn", + "lengthMeters": 93.52475134786054, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1448116, + 11.4981188 + ], + [ + 48.144864, + 11.4976749 + ], + [ + 48.144969, + 11.4968806 + ] + ] + }, + { + "osmId": "40545563", + "name": null, + "lengthMeters": 1290.948804873166, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1432479, + 11.5153079 + ], + [ + 48.143189, + 11.5137338 + ], + [ + 48.1431955, + 11.5129437 + ], + [ + 48.1431984, + 11.5125965 + ], + [ + 48.1432166, + 11.5123043 + ], + [ + 48.1432546, + 11.511694 + ], + [ + 48.1433225, + 11.5108057 + ], + [ + 48.143591, + 11.5082407 + ], + [ + 48.1436055, + 11.5081023 + ], + [ + 48.1438683, + 11.5055911 + ], + [ + 48.1441353, + 11.5030396 + ], + [ + 48.1442073, + 11.5023568 + ], + [ + 48.1444281, + 11.5002689 + ], + [ + 48.1446597, + 11.4980779 + ] + ] + }, + { + "osmId": "40545564", + "name": null, + "lengthMeters": 403.9066549981149, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451516, + 11.492681 + ], + [ + 48.1450724, + 11.4932006 + ], + [ + 48.1449767, + 11.4940159 + ], + [ + 48.1448326, + 11.4953604 + ], + [ + 48.1446915, + 11.4967226 + ], + [ + 48.1445544, + 11.4980496 + ] + ] + }, + { + "osmId": "40549677", + "name": null, + "lengthMeters": 393.4970515953813, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1297847, + 11.5364776 + ], + [ + 48.1299446, + 11.5360908 + ], + [ + 48.13012, + 11.5357119 + ], + [ + 48.1303132, + 11.5353399 + ], + [ + 48.1305167, + 11.5349875 + ], + [ + 48.1320571, + 11.5327045 + ], + [ + 48.1321531, + 11.5325622 + ] + ] + }, + { + "osmId": "40549681", + "name": null, + "lengthMeters": 112.93837088652948, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1313196, + 11.5334598 + ], + [ + 48.132047, + 11.5323977 + ] + ] + }, + { + "osmId": "40643932", + "name": null, + "lengthMeters": 1119.104665062158, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126142, + 13.5777325 + ], + [ + 52.5126486, + 13.5780379 + ], + [ + 52.5127118, + 13.5785712 + ], + [ + 52.5128301, + 13.5790452 + ], + [ + 52.5130115, + 13.5795705 + ], + [ + 52.5132432, + 13.5800995 + ], + [ + 52.5134928, + 13.5805982 + ], + [ + 52.5141131, + 13.5818562 + ], + [ + 52.5166292, + 13.5870514 + ], + [ + 52.5170326, + 13.5876784 + ], + [ + 52.5172415, + 13.5879279 + ], + [ + 52.5176061, + 13.5883093 + ], + [ + 52.5179915, + 13.5885939 + ], + [ + 52.5185805, + 13.5889083 + ], + [ + 52.5193355, + 13.5890815 + ] + ] + }, + { + "osmId": "40643933", + "name": null, + "lengthMeters": 1506.9194218237753, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5193355, + 13.5890815 + ], + [ + 52.5198385, + 13.5891317 + ], + [ + 52.5201023, + 13.5891284 + ], + [ + 52.520362, + 13.5891072 + ], + [ + 52.5211222, + 13.5890346 + ], + [ + 52.5218083, + 13.5889569 + ], + [ + 52.5225259, + 13.5888718 + ], + [ + 52.5228763, + 13.5888396 + ], + [ + 52.5232077, + 13.5888323 + ], + [ + 52.5235439, + 13.5888595 + ], + [ + 52.5240108, + 13.5888945 + ], + [ + 52.5243833, + 13.5889296 + ], + [ + 52.5247457, + 13.5889966 + ], + [ + 52.5250725, + 13.5890825 + ], + [ + 52.5255912, + 13.5892615 + ], + [ + 52.5260329, + 13.5894132 + ], + [ + 52.5265511, + 13.5896243 + ], + [ + 52.5267935, + 13.5897392 + ], + [ + 52.5270334, + 13.5898647 + ], + [ + 52.5273768, + 13.5900511 + ], + [ + 52.527781, + 13.5902651 + ], + [ + 52.5285704, + 13.5906901 + ], + [ + 52.5297185, + 13.5913075 + ], + [ + 52.5301064, + 13.5915021 + ], + [ + 52.5306149, + 13.5917153 + ], + [ + 52.5309215, + 13.5918421 + ], + [ + 52.5312233, + 13.5919919 + ], + [ + 52.5315177, + 13.5921724 + ], + [ + 52.5317177, + 13.5923164 + ], + [ + 52.5319107, + 13.5924865 + ], + [ + 52.5321235, + 13.5927004 + ], + [ + 52.5322849, + 13.5928821 + ], + [ + 52.5324398, + 13.593085 + ] + ] + }, + { + "osmId": "40643936", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 881.8408394721695, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020311, + 13.5418339 + ], + [ + 52.5020429, + 13.5418276 + ], + [ + 52.5021564, + 13.5417661 + ], + [ + 52.5027495, + 13.5414411 + ], + [ + 52.5028641, + 13.5413783 + ], + [ + 52.503437, + 13.5410644 + ], + [ + 52.5038103, + 13.5408892 + ], + [ + 52.5043534, + 13.5406712 + ], + [ + 52.5049496, + 13.5404789 + ], + [ + 52.5051438, + 13.5404275 + ], + [ + 52.5051929, + 13.5404145 + ], + [ + 52.5058525, + 13.5402617 + ], + [ + 52.506842, + 13.5400906 + ], + [ + 52.5071432, + 13.5400396 + ], + [ + 52.507984, + 13.5398971 + ], + [ + 52.508701, + 13.5397904 + ], + [ + 52.5094243, + 13.5396827 + ], + [ + 52.509646, + 13.5396464 + ], + [ + 52.509683, + 13.5396404 + ], + [ + 52.5098144, + 13.5396189 + ] + ] + }, + { + "osmId": "40680172", + "name": null, + "lengthMeters": 119.42598670093881, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1719638, + 11.5286378 + ], + [ + 48.1717449, + 11.5285841 + ], + [ + 48.1716112, + 11.5285514 + ], + [ + 48.1715508, + 11.5285392 + ], + [ + 48.1714632, + 11.5285293 + ], + [ + 48.1713251, + 11.5285225 + ], + [ + 48.1708954, + 11.5285348 + ] + ] + }, + { + "osmId": "40680528", + "name": null, + "lengthMeters": 125.35622022476446, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.167388, + 11.5363949 + ], + [ + 48.1672068, + 11.5365907 + ], + [ + 48.166452, + 11.5373366 + ] + ] + }, + { + "osmId": "40691988", + "name": null, + "lengthMeters": 578.4210768534393, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0153056, + 11.719555 + ], + [ + 48.0155134, + 11.7195457 + ], + [ + 48.0160147, + 11.7195414 + ], + [ + 48.0166976, + 11.7194693 + ], + [ + 48.0169333, + 11.7194443 + ], + [ + 48.0169905, + 11.7194377 + ], + [ + 48.0170865, + 11.7194255 + ], + [ + 48.0171257, + 11.7194206 + ], + [ + 48.0172904, + 11.7194007 + ], + [ + 48.0186541, + 11.7192425 + ], + [ + 48.0190376, + 11.7191963 + ], + [ + 48.0193725, + 11.719156 + ], + [ + 48.0194582, + 11.7191403 + ], + [ + 48.0195028, + 11.7191323 + ], + [ + 48.019551, + 11.7191218 + ], + [ + 48.0198989, + 11.7190456 + ], + [ + 48.0200853, + 11.7190001 + ], + [ + 48.0204879, + 11.7189415 + ] + ] + }, + { + "osmId": "40691991", + "name": null, + "lengthMeters": 609.567756258243, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0735368, + 11.6634997 + ], + [ + 48.073857, + 11.6630973 + ], + [ + 48.0742, + 11.6626383 + ], + [ + 48.0746516, + 11.6619887 + ], + [ + 48.07495, + 11.6615745 + ], + [ + 48.0753988, + 11.6609608 + ], + [ + 48.0755649, + 11.6607273 + ], + [ + 48.0758905, + 11.6602523 + ], + [ + 48.0760148, + 11.6600751 + ], + [ + 48.0761151, + 11.6599247 + ], + [ + 48.0763444, + 11.659574 + ], + [ + 48.0764381, + 11.6594329 + ], + [ + 48.0764573, + 11.6594026 + ], + [ + 48.0766988, + 11.6590222 + ], + [ + 48.0768606, + 11.6587545 + ], + [ + 48.0769735, + 11.6585679 + ], + [ + 48.0770852, + 11.6583879 + ], + [ + 48.0771809, + 11.6582377 + ], + [ + 48.0773069, + 11.6580446 + ], + [ + 48.077471, + 11.6577939 + ] + ] + }, + { + "osmId": "40987908", + "name": null, + "lengthMeters": 139.135426523714, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.490456, + 13.3746099 + ], + [ + 52.4908318, + 13.3748603 + ], + [ + 52.4909452, + 13.3749231 + ], + [ + 52.4912072, + 13.3750505 + ], + [ + 52.4913183, + 13.3751155 + ], + [ + 52.4915504, + 13.3752623 + ], + [ + 52.4916305, + 13.3753144 + ] + ] + }, + { + "osmId": "41081855", + "name": "Verbindungsbahn", + "lengthMeters": 353.2387756389383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5601624, + 9.9355752 + ], + [ + 53.5604754, + 9.9356855 + ], + [ + 53.5607131, + 9.9358163 + ], + [ + 53.5608667, + 9.9359165 + ], + [ + 53.5609315, + 9.9359587 + ], + [ + 53.5611251, + 9.9361187 + ], + [ + 53.5613417, + 9.9363309 + ], + [ + 53.5615131, + 9.9365356 + ], + [ + 53.5617164, + 9.9368073 + ], + [ + 53.5618922, + 9.937098 + ], + [ + 53.5620651, + 9.9374108 + ], + [ + 53.5623156, + 9.9379827 + ], + [ + 53.5624371, + 9.938338 + ], + [ + 53.5625445, + 9.9387568 + ] + ] + }, + { + "osmId": "41086959", + "name": null, + "lengthMeters": 246.3244431464472, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1329148, + 11.6126321 + ], + [ + 48.1331894, + 11.6130814 + ], + [ + 48.1332854, + 11.6132442 + ], + [ + 48.133375, + 11.6134049 + ], + [ + 48.1334736, + 11.6135916 + ], + [ + 48.1335781, + 11.6138178 + ], + [ + 48.1336388, + 11.6139566 + ], + [ + 48.1337101, + 11.61413 + ], + [ + 48.1337909, + 11.6143443 + ], + [ + 48.133873, + 11.6145808 + ], + [ + 48.13394, + 11.614787 + ], + [ + 48.1339987, + 11.6149786 + ], + [ + 48.1340455, + 11.615139 + ], + [ + 48.1341151, + 11.6153909 + ] + ] + }, + { + "osmId": "41206111", + "name": null, + "lengthMeters": 257.05976116747246, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1843881, + 11.6293365 + ], + [ + 48.184434, + 11.6292098 + ], + [ + 48.1847211, + 11.628417 + ], + [ + 48.1853836, + 11.6266073 + ], + [ + 48.1854953, + 11.6262927 + ] + ] + }, + { + "osmId": "41206113", + "name": null, + "lengthMeters": 172.74561426541356, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1836324, + 11.6313723 + ], + [ + 48.1843881, + 11.6293365 + ] + ] + }, + { + "osmId": "41259897", + "name": null, + "lengthMeters": 578.9926585022907, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553078, + 13.414277 + ], + [ + 52.5527905, + 13.4142254 + ], + [ + 52.5521801, + 13.4141059 + ], + [ + 52.5513641, + 13.4139265 + ], + [ + 52.5508873, + 13.4138422 + ], + [ + 52.5507928, + 13.413826 + ], + [ + 52.5507322, + 13.4138149 + ], + [ + 52.5505894, + 13.4137898 + ], + [ + 52.5505202, + 13.4137783 + ], + [ + 52.5496965, + 13.413633 + ], + [ + 52.5493619, + 13.4135734 + ], + [ + 52.5489936, + 13.4135167 + ], + [ + 52.548627, + 13.4134562 + ], + [ + 52.5481445, + 13.4133739 + ], + [ + 52.5479031, + 13.4133325 + ] + ] + }, + { + "osmId": "41259899", + "name": null, + "lengthMeters": 88.70057021504581, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5540019, + 13.414706 + ], + [ + 52.5540532, + 13.4147179 + ], + [ + 52.5541927, + 13.4147444 + ], + [ + 52.5543259, + 13.4147639 + ], + [ + 52.5544706, + 13.4147753 + ], + [ + 52.5546092, + 13.4147719 + ], + [ + 52.5547967, + 13.4147441 + ] + ] + }, + { + "osmId": "41293414", + "name": null, + "lengthMeters": 313.09956992518954, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6541998, + 10.2586807 + ], + [ + 53.653943, + 10.2590906 + ], + [ + 53.6538078, + 10.2592795 + ], + [ + 53.6537968, + 10.2592948 + ], + [ + 53.6537854, + 10.259315 + ], + [ + 53.6537788, + 10.2593268 + ], + [ + 53.6535952, + 10.2596529 + ], + [ + 53.6533514, + 10.2601292 + ], + [ + 53.6530223, + 10.2607737 + ], + [ + 53.6527654, + 10.2612912 + ], + [ + 53.6526665, + 10.2614903 + ], + [ + 53.6524674, + 10.2619461 + ], + [ + 53.6523482, + 10.2622438 + ] + ] + }, + { + "osmId": "41310484", + "name": null, + "lengthMeters": 260.9282578439411, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6549603, + 10.2818614 + ], + [ + 53.6555962, + 10.2822754 + ], + [ + 53.6562966, + 10.282743 + ], + [ + 53.6563522, + 10.2827802 + ], + [ + 53.6571444, + 10.2833091 + ] + ] + }, + { + "osmId": "41322015", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 81.17944646971866, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4264312, + 13.5619603 + ], + [ + 52.4271298, + 13.562308 + ] + ] + }, + { + "osmId": "41361221", + "name": null, + "lengthMeters": 76.17452364253946, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6619952, + 10.2862413 + ], + [ + 53.6619091, + 10.2861942 + ], + [ + 53.6617628, + 10.2861142 + ], + [ + 53.6615268, + 10.2860029 + ], + [ + 53.6613376, + 10.2859184 + ] + ] + }, + { + "osmId": "41386243", + "name": null, + "lengthMeters": 107.73942582340673, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1793455, + 11.6445473 + ], + [ + 48.180295, + 11.6442578 + ] + ] + }, + { + "osmId": "41386245", + "name": null, + "lengthMeters": 432.29824810804786, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.181106, + 11.6439653 + ], + [ + 48.181289, + 11.6438971 + ], + [ + 48.1817263, + 11.6437562 + ], + [ + 48.1819444, + 11.6437054 + ], + [ + 48.1821622, + 11.6436619 + ], + [ + 48.1824897, + 11.6436167 + ], + [ + 48.1826664, + 11.6436001 + ], + [ + 48.1828927, + 11.6435899 + ], + [ + 48.1831851, + 11.6435914 + ], + [ + 48.183525, + 11.6436162 + ], + [ + 48.1836801, + 11.6436357 + ], + [ + 48.1837542, + 11.643645 + ], + [ + 48.1839799, + 11.6436864 + ], + [ + 48.1842884, + 11.6437559 + ], + [ + 48.184569, + 11.6438439 + ], + [ + 48.184948, + 11.6439845 + ] + ] + }, + { + "osmId": "41386278", + "name": "Nordring", + "lengthMeters": 1535.8303976241064, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1749218, + 11.6453308 + ], + [ + 48.175836, + 11.6453527 + ], + [ + 48.1765723, + 11.6453417 + ], + [ + 48.1773452, + 11.6453236 + ], + [ + 48.1775845, + 11.6453013 + ], + [ + 48.177863, + 11.6452692 + ], + [ + 48.1780969, + 11.6452235 + ], + [ + 48.1783509, + 11.6451551 + ], + [ + 48.1785887, + 11.6450813 + ], + [ + 48.1788048, + 11.6449958 + ], + [ + 48.1790287, + 11.6448922 + ], + [ + 48.1792585, + 11.6447675 + ], + [ + 48.1795057, + 11.6446185 + ], + [ + 48.1797496, + 11.6444396 + ], + [ + 48.1800074, + 11.6442518 + ], + [ + 48.1802751, + 11.6439983 + ], + [ + 48.1804318, + 11.6438301 + ], + [ + 48.1805781, + 11.643672 + ], + [ + 48.1807287, + 11.6434827 + ], + [ + 48.1808861, + 11.6432762 + ], + [ + 48.1810275, + 11.6430694 + ], + [ + 48.1811794, + 11.6428229 + ], + [ + 48.1813251, + 11.6425661 + ], + [ + 48.1814253, + 11.6423696 + ], + [ + 48.1815274, + 11.64215 + ], + [ + 48.1816569, + 11.6418506 + ], + [ + 48.1817988, + 11.6414934 + ], + [ + 48.1819094, + 11.6411718 + ], + [ + 48.1820324, + 11.6407692 + ], + [ + 48.1821197, + 11.6403944 + ], + [ + 48.182213, + 11.6398905 + ], + [ + 48.1822878, + 11.6393076 + ], + [ + 48.1823473, + 11.6386512 + ], + [ + 48.182361, + 11.6384994 + ], + [ + 48.1824112, + 11.6379275 + ], + [ + 48.1825231, + 11.6366292 + ], + [ + 48.1826556, + 11.6351203 + ], + [ + 48.1827289, + 11.6343923 + ], + [ + 48.1827592, + 11.6341861 + ], + [ + 48.1827849, + 11.6340117 + ], + [ + 48.1828357, + 11.6337266 + ], + [ + 48.1828919, + 11.6334616 + ], + [ + 48.1829642, + 11.6331886 + ], + [ + 48.183098, + 11.6327606 + ] + ] + }, + { + "osmId": "41664543", + "name": null, + "lengthMeters": 364.6001942500865, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1300219, + 11.609484 + ], + [ + 48.1308744, + 11.6104782 + ], + [ + 48.1313588, + 11.6110744 + ], + [ + 48.1316518, + 11.6114775 + ], + [ + 48.1319388, + 11.6118815 + ], + [ + 48.1324825, + 11.6127198 + ] + ] + }, + { + "osmId": "41664811", + "name": null, + "lengthMeters": 655.7114121889955, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1331552, + 11.6138351 + ], + [ + 48.1333167, + 11.6142385 + ], + [ + 48.1334546, + 11.6145767 + ], + [ + 48.133623, + 11.6150696 + ], + [ + 48.1337184, + 11.6154049 + ], + [ + 48.1338182, + 11.6158366 + ], + [ + 48.1338524, + 11.6160084 + ], + [ + 48.1339106, + 11.6163404 + ], + [ + 48.1339411, + 11.6165286 + ], + [ + 48.1339871, + 11.6168345 + ], + [ + 48.1341363, + 11.6179185 + ], + [ + 48.1344456, + 11.6201432 + ], + [ + 48.1347441, + 11.6222819 + ] + ] + }, + { + "osmId": "41664812", + "name": null, + "lengthMeters": 97.52989349721794, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1349338, + 11.6236096 + ], + [ + 48.1350706, + 11.6246791 + ], + [ + 48.135089, + 11.6249027 + ] + ] + }, + { + "osmId": "41664822", + "name": null, + "lengthMeters": 1025.8924299299433, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335291, + 11.6384481 + ], + [ + 48.1335647, + 11.6380998 + ], + [ + 48.1337301, + 11.6364829 + ], + [ + 48.1337481, + 11.6363041 + ], + [ + 48.133749, + 11.6362954 + ], + [ + 48.1338664, + 11.6350485 + ], + [ + 48.1338721, + 11.6349922 + ], + [ + 48.1338789, + 11.6349248 + ], + [ + 48.1340189, + 11.6335457 + ], + [ + 48.1341031, + 11.632712 + ], + [ + 48.1341609, + 11.6321157 + ], + [ + 48.1341703, + 11.632017 + ], + [ + 48.1341792, + 11.6319297 + ], + [ + 48.1342181, + 11.6315463 + ], + [ + 48.1343014, + 11.6306987 + ], + [ + 48.1343624, + 11.6300802 + ], + [ + 48.1344357, + 11.6293037 + ], + [ + 48.1346083, + 11.6274584 + ], + [ + 48.1346142, + 11.6273946 + ], + [ + 48.1346434, + 11.6270824 + ], + [ + 48.1346755, + 11.6267771 + ], + [ + 48.1347154, + 11.6264732 + ], + [ + 48.1347622, + 11.626169 + ], + [ + 48.134855, + 11.6256472 + ], + [ + 48.1350217, + 11.6248187 + ] + ] + }, + { + "osmId": "41823215", + "name": null, + "lengthMeters": 1180.025778541502, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0907352, + 11.643134 + ], + [ + 48.0910387, + 11.6428197 + ], + [ + 48.0913749, + 11.6425248 + ], + [ + 48.091739, + 11.6422328 + ], + [ + 48.0920079, + 11.6420603 + ], + [ + 48.0922842, + 11.6419707 + ], + [ + 48.0926295, + 11.6419138 + ], + [ + 48.092862, + 11.64193 + ], + [ + 48.0930916, + 11.6419839 + ], + [ + 48.0933749, + 11.6420992 + ], + [ + 48.0936657, + 11.642243 + ], + [ + 48.0947118, + 11.6427958 + ], + [ + 48.095778, + 11.6433593 + ], + [ + 48.0961364, + 11.6435386 + ], + [ + 48.0963262, + 11.6436384 + ], + [ + 48.0964799, + 11.6437415 + ], + [ + 48.0975248, + 11.644572 + ], + [ + 48.0977505, + 11.6447287 + ], + [ + 48.0980952, + 11.6449323 + ], + [ + 48.0991204, + 11.6454379 + ], + [ + 48.1001214, + 11.6458524 + ], + [ + 48.1006468, + 11.6460699 + ] + ] + }, + { + "osmId": "41823216", + "name": null, + "lengthMeters": 111.77717777997262, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0899283, + 11.6440315 + ], + [ + 48.0899615, + 11.6439937 + ], + [ + 48.0902155, + 11.6437118 + ], + [ + 48.0904655, + 11.6434309 + ], + [ + 48.0907352, + 11.643134 + ] + ] + }, + { + "osmId": "41893764", + "name": null, + "lengthMeters": 182.84947822802053, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549071, + 13.4164459 + ], + [ + 52.5491444, + 13.4162164 + ], + [ + 52.5493422, + 13.4154685 + ], + [ + 52.5493848, + 13.4152815 + ], + [ + 52.5494406, + 13.4150032 + ], + [ + 52.5494732, + 13.4147981 + ], + [ + 52.549514, + 13.414428 + ], + [ + 52.5495252, + 13.4142195 + ], + [ + 52.5495307, + 13.4140196 + ], + [ + 52.5495311, + 13.4139667 + ], + [ + 52.5495318, + 13.4138805 + ] + ] + }, + { + "osmId": "41893766", + "name": "Berliner Ringbahn", + "lengthMeters": 760.1751328904257, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406589, + 13.4377036 + ], + [ + 52.5408708, + 13.4372354 + ], + [ + 52.5410424, + 13.4368372 + ], + [ + 52.5412059, + 13.4364391 + ], + [ + 52.5413611, + 13.4360436 + ], + [ + 52.5415059, + 13.435657 + ], + [ + 52.5417094, + 13.4351109 + ], + [ + 52.5418339, + 13.4347747 + ], + [ + 52.5420256, + 13.4342584 + ], + [ + 52.5420485, + 13.4341955 + ], + [ + 52.5420934, + 13.434075 + ], + [ + 52.5420965, + 13.4340667 + ], + [ + 52.5420998, + 13.4340584 + ], + [ + 52.5421448, + 13.4339391 + ], + [ + 52.5422661, + 13.4336093 + ], + [ + 52.5423499, + 13.4333753 + ], + [ + 52.5424411, + 13.433107 + ], + [ + 52.5425113, + 13.4328836 + ], + [ + 52.5426099, + 13.4325416 + ], + [ + 52.5427264, + 13.4320969 + ], + [ + 52.5430685, + 13.4307677 + ], + [ + 52.5430787, + 13.4307289 + ], + [ + 52.5431577, + 13.4304287 + ], + [ + 52.543261, + 13.430058 + ], + [ + 52.5433768, + 13.429674 + ], + [ + 52.5434995, + 13.4292931 + ], + [ + 52.5438098, + 13.4283792 + ], + [ + 52.5438142, + 13.4283651 + ], + [ + 52.543976, + 13.4279074 + ] + ] + }, + { + "osmId": "41893771", + "name": "Berliner Ringbahn", + "lengthMeters": 759.8179712033573, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5439484, + 13.427882 + ], + [ + 52.5437843, + 13.4283408 + ], + [ + 52.5437791, + 13.4283562 + ], + [ + 52.5434686, + 13.429264 + ], + [ + 52.5433437, + 13.4296502 + ], + [ + 52.5432292, + 13.430033 + ], + [ + 52.543126, + 13.4304052 + ], + [ + 52.5430465, + 13.4307053 + ], + [ + 52.5430362, + 13.4307462 + ], + [ + 52.5426937, + 13.4320763 + ], + [ + 52.5425777, + 13.4325169 + ], + [ + 52.5424795, + 13.432857 + ], + [ + 52.5424096, + 13.4330781 + ], + [ + 52.5423175, + 13.4333492 + ], + [ + 52.5422376, + 13.4335711 + ], + [ + 52.5421167, + 13.4338997 + ], + [ + 52.5420917, + 13.4339673 + ], + [ + 52.5420694, + 13.4340277 + ], + [ + 52.5420668, + 13.4340354 + ], + [ + 52.5420482, + 13.4340852 + ], + [ + 52.5419882, + 13.4342461 + ], + [ + 52.5419419, + 13.4343727 + ], + [ + 52.5415892, + 13.4353216 + ], + [ + 52.5414474, + 13.4357017 + ], + [ + 52.5412645, + 13.4361777 + ], + [ + 52.5411281, + 13.4365213 + ], + [ + 52.5408622, + 13.4371481 + ], + [ + 52.5406259, + 13.4376665 + ] + ] + }, + { + "osmId": "41917133", + "name": null, + "lengthMeters": 184.64037855219988, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412653, + 11.550604 + ], + [ + 48.1412996, + 11.5501487 + ], + [ + 48.1414133, + 11.5486638 + ], + [ + 48.141454, + 11.5481317 + ] + ] + }, + { + "osmId": "41970926", + "name": null, + "lengthMeters": 431.2613886400314, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1071554, + 11.5980246 + ], + [ + 48.1067912, + 11.5981911 + ], + [ + 48.1063377, + 11.5983947 + ], + [ + 48.1055244, + 11.5987598 + ], + [ + 48.1050395, + 11.5989853 + ], + [ + 48.1048831, + 11.5990479 + ], + [ + 48.1035378, + 11.5996672 + ], + [ + 48.1034437, + 11.5997086 + ] + ] + }, + { + "osmId": "41970928", + "name": null, + "lengthMeters": 714.5043305059726, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.114867, + 11.5951722 + ], + [ + 48.1146561, + 11.5951947 + ], + [ + 48.1144239, + 11.5952195 + ], + [ + 48.1139261, + 11.5953031 + ], + [ + 48.1134604, + 11.5954033 + ], + [ + 48.1129708, + 11.5955304 + ], + [ + 48.1124129, + 11.5957217 + ], + [ + 48.112001, + 11.5958928 + ], + [ + 48.1118965, + 11.595944 + ], + [ + 48.1111647, + 11.5962695 + ], + [ + 48.1108443, + 11.5964132 + ], + [ + 48.1106046, + 11.5965205 + ], + [ + 48.1100642, + 11.5967581 + ], + [ + 48.1099961, + 11.5967875 + ], + [ + 48.1089896, + 11.5972227 + ], + [ + 48.1086303, + 11.5973767 + ] + ] + }, + { + "osmId": "41970930", + "name": null, + "lengthMeters": 275.0068195897276, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1175692, + 11.5955816 + ], + [ + 48.1174614, + 11.5955513 + ], + [ + 48.1170816, + 11.5954428 + ], + [ + 48.1165378, + 11.5952982 + ], + [ + 48.1163136, + 11.5952546 + ], + [ + 48.1160909, + 11.5952161 + ], + [ + 48.115933, + 11.5951922 + ], + [ + 48.1157731, + 11.5951804 + ], + [ + 48.1154767, + 11.5951625 + ], + [ + 48.1152309, + 11.5951554 + ], + [ + 48.1151179, + 11.5951587 + ] + ] + }, + { + "osmId": "41970933", + "name": null, + "lengthMeters": 541.0506717931122, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1249546, + 11.600925 + ], + [ + 48.1244035, + 11.6002 + ], + [ + 48.1238754, + 11.5994978 + ], + [ + 48.1233986, + 11.598866 + ], + [ + 48.1230857, + 11.5984475 + ], + [ + 48.1229569, + 11.5982753 + ], + [ + 48.1225993, + 11.597803 + ], + [ + 48.1222495, + 11.5973684 + ], + [ + 48.1219051, + 11.597004 + ], + [ + 48.1215334, + 11.5966977 + ], + [ + 48.1213403, + 11.5965697 + ], + [ + 48.1211433, + 11.5964635 + ] + ] + }, + { + "osmId": "42039750", + "name": null, + "lengthMeters": 800.3421433025426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1078773, + 11.5976995 + ], + [ + 48.1080759, + 11.5976303 + ], + [ + 48.1086156, + 11.597455 + ], + [ + 48.1090007, + 11.5972945 + ], + [ + 48.1100063, + 11.5968474 + ], + [ + 48.1100761, + 11.5968164 + ], + [ + 48.1106165, + 11.5965762 + ], + [ + 48.1111744, + 11.596329 + ], + [ + 48.1118812, + 11.5960108 + ], + [ + 48.1120049, + 11.5959548 + ], + [ + 48.1124768, + 11.5957699 + ], + [ + 48.1129863, + 11.5956127 + ], + [ + 48.113472, + 11.5954835 + ], + [ + 48.1139686, + 11.5953796 + ], + [ + 48.1143843, + 11.5953095 + ], + [ + 48.1148688, + 11.5952489 + ] + ] + }, + { + "osmId": "42039753", + "name": null, + "lengthMeters": 377.21725294265144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1151197, + 11.5952344 + ], + [ + 48.1152327, + 11.5952312 + ], + [ + 48.1154772, + 11.5952339 + ], + [ + 48.1155626, + 11.5952392 + ], + [ + 48.1157696, + 11.595252 + ], + [ + 48.1160863, + 11.5952924 + ], + [ + 48.1165339, + 11.5953753 + ], + [ + 48.117071, + 11.595526 + ], + [ + 48.11757, + 11.595666 + ], + [ + 48.1176513, + 11.5956883 + ], + [ + 48.1184742, + 11.5959141 + ] + ] + }, + { + "osmId": "42039759", + "name": null, + "lengthMeters": 242.23584126150718, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1229198, + 11.5984112 + ], + [ + 48.1231808, + 11.5988445 + ], + [ + 48.1235616, + 11.5994495 + ], + [ + 48.1240359, + 11.6001986 + ], + [ + 48.1240787, + 11.6002714 + ], + [ + 48.1241892, + 11.6004593 + ], + [ + 48.1242713, + 11.6006104 + ], + [ + 48.1243866, + 11.6008226 + ] + ] + }, + { + "osmId": "42039761", + "name": null, + "lengthMeters": 477.06039145222553, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1186871, + 11.5959689 + ], + [ + 48.1188529, + 11.5960037 + ], + [ + 48.1194439, + 11.5961135 + ], + [ + 48.1199785, + 11.5961952 + ], + [ + 48.1202152, + 11.5962345 + ], + [ + 48.1205849, + 11.5963205 + ], + [ + 48.1207857, + 11.5963961 + ], + [ + 48.1208531, + 11.5964205 + ], + [ + 48.1211919, + 11.5965833 + ], + [ + 48.1214599, + 11.5967512 + ], + [ + 48.1217286, + 11.5969578 + ], + [ + 48.1219385, + 11.5971455 + ], + [ + 48.1222236, + 11.5974474 + ], + [ + 48.1225282, + 11.5978381 + ], + [ + 48.1226462, + 11.5979964 + ] + ] + }, + { + "osmId": "42106838", + "name": null, + "lengthMeters": 109.35437505465981, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1765087, + 11.6314168 + ], + [ + 48.1765391, + 11.6313911 + ], + [ + 48.1765633, + 11.6313677 + ], + [ + 48.176585, + 11.6313424 + ], + [ + 48.1766044, + 11.6313096 + ], + [ + 48.1766207, + 11.6312752 + ], + [ + 48.1766347, + 11.631232 + ], + [ + 48.176641, + 11.6312105 + ], + [ + 48.1766463, + 11.6311882 + ], + [ + 48.1766503, + 11.6311655 + ], + [ + 48.1766527, + 11.6311436 + ], + [ + 48.176655, + 11.6311212 + ], + [ + 48.1766562, + 11.6310988 + ], + [ + 48.1766555, + 11.6310747 + ], + [ + 48.176654, + 11.6310505 + ], + [ + 48.1766517, + 11.6310272 + ], + [ + 48.1766483, + 11.6310039 + ], + [ + 48.176644, + 11.6309829 + ], + [ + 48.1766386, + 11.6309624 + ], + [ + 48.1766328, + 11.6309423 + ], + [ + 48.1766257, + 11.6309222 + ], + [ + 48.176618, + 11.6309045 + ], + [ + 48.1766093, + 11.6308874 + ], + [ + 48.1765998, + 11.6308719 + ], + [ + 48.1765899, + 11.6308569 + ], + [ + 48.1765761, + 11.6308403 + ], + [ + 48.1765616, + 11.6308247 + ], + [ + 48.1765463, + 11.6308103 + ], + [ + 48.1765304, + 11.6307975 + ], + [ + 48.1765183, + 11.6307892 + ], + [ + 48.1765061, + 11.6307809 + ], + [ + 48.1764936, + 11.6307743 + ], + [ + 48.1764804, + 11.6307687 + ], + [ + 48.1764669, + 11.6307652 + ], + [ + 48.1764534, + 11.6307637 + ], + [ + 48.176432, + 11.6307612 + ], + [ + 48.1764036, + 11.6307617 + ], + [ + 48.1763893, + 11.6307646 + ], + [ + 48.1763755, + 11.6307688 + ], + [ + 48.1763618, + 11.6307756 + ], + [ + 48.176348, + 11.6307829 + ], + [ + 48.1763346, + 11.6307923 + ], + [ + 48.1763212, + 11.6308022 + ], + [ + 48.1763098, + 11.6308112 + ], + [ + 48.1762992, + 11.6308208 + ], + [ + 48.1762884, + 11.6308327 + ], + [ + 48.1762786, + 11.6308456 + ], + [ + 48.1762695, + 11.6308593 + ], + [ + 48.1762608, + 11.6308745 + ], + [ + 48.1762524, + 11.6308891 + ], + [ + 48.1762443, + 11.6309047 + ], + [ + 48.1762366, + 11.6309237 + ], + [ + 48.1762303, + 11.6309427 + ], + [ + 48.1762242, + 11.6309618 + ], + [ + 48.1762188, + 11.630982 + ], + [ + 48.1762139, + 11.6310115 + ], + [ + 48.1762097, + 11.6310409 + ], + [ + 48.1762024, + 11.6310993 + ] + ] + }, + { + "osmId": "42126312", + "name": null, + "lengthMeters": 315.17022430377926, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4919354, + 13.502531 + ], + [ + 52.4919378, + 13.5025186 + ], + [ + 52.4921009, + 13.5017254 + ], + [ + 52.4922513, + 13.50111 + ], + [ + 52.4923542, + 13.5007623 + ], + [ + 52.4923837, + 13.5006786 + ], + [ + 52.4924736, + 13.5004238 + ], + [ + 52.4925991, + 13.500092 + ], + [ + 52.4927418, + 13.4997695 + ], + [ + 52.492895, + 13.4994715 + ], + [ + 52.4930645, + 13.4991872 + ], + [ + 52.4934103, + 13.4986426 + ] + ] + }, + { + "osmId": "42126338", + "name": null, + "lengthMeters": 1741.6887826239933, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4913917, + 13.5047782 + ], + [ + 52.4912492, + 13.5052796 + ], + [ + 52.4910816, + 13.5057806 + ], + [ + 52.4908847, + 13.5063035 + ], + [ + 52.4906514, + 13.5068695 + ], + [ + 52.4901944, + 13.5079362 + ], + [ + 52.4893333, + 13.5098626 + ], + [ + 52.4891474, + 13.5102783 + ], + [ + 52.4889932, + 13.5106077 + ], + [ + 52.4888457, + 13.5109057 + ], + [ + 52.4887124, + 13.511158 + ], + [ + 52.4886904, + 13.5111996 + ], + [ + 52.4885346, + 13.5114787 + ], + [ + 52.4883694, + 13.5117603 + ], + [ + 52.48805, + 13.5122513 + ], + [ + 52.4879072, + 13.5124617 + ], + [ + 52.4878034, + 13.5126146 + ], + [ + 52.487369, + 13.5132544 + ], + [ + 52.4869537, + 13.5138584 + ], + [ + 52.4866906, + 13.5142411 + ], + [ + 52.4861942, + 13.5149775 + ], + [ + 52.4858133, + 13.5155608 + ], + [ + 52.4855723, + 13.5159462 + ], + [ + 52.4854319, + 13.5161896 + ], + [ + 52.485234, + 13.5165637 + ], + [ + 52.4851052, + 13.5168228 + ], + [ + 52.4849292, + 13.5171944 + ], + [ + 52.484362, + 13.5184223 + ], + [ + 52.4843037, + 13.5185502 + ], + [ + 52.4840754, + 13.5190504 + ], + [ + 52.4840413, + 13.5191251 + ], + [ + 52.4832772, + 13.5208588 + ], + [ + 52.4832363, + 13.5209517 + ], + [ + 52.483162, + 13.5211207 + ], + [ + 52.4824475, + 13.5227389 + ], + [ + 52.4823481, + 13.522964 + ], + [ + 52.4822512, + 13.5231721 + ], + [ + 52.4817334, + 13.5242855 + ], + [ + 52.4816105, + 13.5245564 + ], + [ + 52.4815673, + 13.5246524 + ] + ] + }, + { + "osmId": "42126342", + "name": null, + "lengthMeters": 175.26934870376698, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4913604, + 13.5047493 + ], + [ + 52.4914914, + 13.5042247 + ], + [ + 52.4916161, + 13.5036988 + ], + [ + 52.4917107, + 13.5032409 + ], + [ + 52.4918996, + 13.5023178 + ] + ] + }, + { + "osmId": "42126446", + "name": "Stralsunder Kurve", + "lengthMeters": 1039.4807885212624, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4975891, + 13.5376306 + ], + [ + 52.4976433, + 13.5377905 + ], + [ + 52.4977167, + 13.537993 + ], + [ + 52.497788, + 13.5381777 + ], + [ + 52.4980223, + 13.5387071 + ], + [ + 52.498238, + 13.5391206 + ], + [ + 52.4983993, + 13.5393915 + ], + [ + 52.4986903, + 13.539805 + ], + [ + 52.4988009, + 13.539946 + ], + [ + 52.4989583, + 13.5401175 + ], + [ + 52.499254, + 13.5404144 + ], + [ + 52.4995797, + 13.5406776 + ], + [ + 52.4998704, + 13.5408667 + ], + [ + 52.5001262, + 13.5409947 + ], + [ + 52.5004873, + 13.5411301 + ], + [ + 52.5008444, + 13.5412124 + ], + [ + 52.5011444, + 13.5412363 + ], + [ + 52.5014041, + 13.5412303 + ], + [ + 52.5016214, + 13.5412036 + ], + [ + 52.5018751, + 13.541148 + ], + [ + 52.50202, + 13.5410971 + ], + [ + 52.5023682, + 13.5409619 + ], + [ + 52.5025522, + 13.54088 + ], + [ + 52.5028774, + 13.5407211 + ], + [ + 52.5034282, + 13.5404546 + ], + [ + 52.5037354, + 13.5403038 + ], + [ + 52.5046095, + 13.5398822 + ], + [ + 52.505285, + 13.5395515 + ], + [ + 52.5054689, + 13.5394658 + ], + [ + 52.5059428, + 13.5392384 + ] + ] + }, + { + "osmId": "42126834", + "name": null, + "lengthMeters": 91.53329553184537, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126509, + 13.5735722 + ], + [ + 52.5126486, + 13.5733074 + ], + [ + 52.5126458, + 13.5731333 + ], + [ + 52.5126354, + 13.5728877 + ], + [ + 52.51262, + 13.5726996 + ], + [ + 52.512585, + 13.5724036 + ], + [ + 52.5125575, + 13.5722334 + ] + ] + }, + { + "osmId": "42126837", + "name": null, + "lengthMeters": 77.70848094278817, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5125719, + 13.5765901 + ], + [ + 52.5125705, + 13.5769476 + ], + [ + 52.5125722, + 13.5771028 + ], + [ + 52.5125777, + 13.5773126 + ], + [ + 52.512585, + 13.5775196 + ], + [ + 52.5126142, + 13.5777325 + ] + ] + }, + { + "osmId": "42143877", + "name": "Berliner Ringbahn", + "lengthMeters": 507.1758899418131, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5421941, + 13.3659384 + ], + [ + 52.5415225, + 13.3644458 + ], + [ + 52.5404873, + 13.3622118 + ], + [ + 52.5399882, + 13.3610117 + ], + [ + 52.5394992, + 13.3598896 + ] + ] + }, + { + "osmId": "42146224", + "name": null, + "lengthMeters": 167.0010374337074, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5445806, + 13.4266913 + ], + [ + 52.5446352, + 13.4265515 + ], + [ + 52.5446392, + 13.4265413 + ], + [ + 52.5447349, + 13.426291 + ], + [ + 52.5449456, + 13.4257586 + ], + [ + 52.5451662, + 13.4252311 + ], + [ + 52.5452167, + 13.4251136 + ], + [ + 52.5452362, + 13.4250691 + ], + [ + 52.5453262, + 13.4248754 + ], + [ + 52.545395, + 13.4247299 + ], + [ + 52.5454299, + 13.4246561 + ] + ] + }, + { + "osmId": "42147566", + "name": null, + "lengthMeters": 571.0298648928037, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3558018, + 13.4094821 + ], + [ + 52.3553123, + 13.4096403 + ], + [ + 52.3550728, + 13.4097174 + ], + [ + 52.3548372, + 13.4098121 + ], + [ + 52.3545801, + 13.4099172 + ], + [ + 52.354305, + 13.4100307 + ], + [ + 52.3539679, + 13.4101698 + ], + [ + 52.3534307, + 13.4103743 + ], + [ + 52.3527214, + 13.4106458 + ], + [ + 52.3507953, + 13.4113495 + ] + ] + }, + { + "osmId": "42149646", + "name": null, + "lengthMeters": 97.40216732039508, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4461128, + 13.3618631 + ], + [ + 52.4469505, + 13.361443 + ] + ] + }, + { + "osmId": "42150587", + "name": null, + "lengthMeters": 259.0313617273331, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483362, + 13.3845507 + ], + [ + 52.5483457, + 13.385142 + ], + [ + 52.5483462, + 13.3854575 + ], + [ + 52.5483434, + 13.3857944 + ], + [ + 52.5483398, + 13.3863115 + ], + [ + 52.5483372, + 13.3868707 + ], + [ + 52.5483365, + 13.387017 + ], + [ + 52.5483458, + 13.3874208 + ], + [ + 52.5483547, + 13.3877353 + ], + [ + 52.548357, + 13.3877975 + ], + [ + 52.5483612, + 13.387964 + ], + [ + 52.5483787, + 13.3883794 + ] + ] + }, + { + "osmId": "42212762", + "name": null, + "lengthMeters": 694.3329947599162, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1016368, + 11.6007825 + ], + [ + 48.1007948, + 11.6014261 + ], + [ + 48.1004585, + 11.6016693 + ], + [ + 48.100363, + 11.6017303 + ], + [ + 48.0997987, + 11.6020902 + ], + [ + 48.0992731, + 11.6024241 + ], + [ + 48.0982017, + 11.6031394 + ], + [ + 48.0979995, + 11.6032744 + ], + [ + 48.0976798, + 11.6034878 + ], + [ + 48.0968595, + 11.6040354 + ], + [ + 48.0966878, + 11.6041481 + ], + [ + 48.0964657, + 11.6043131 + ], + [ + 48.0963271, + 11.6044238 + ], + [ + 48.0961297, + 11.6046027 + ], + [ + 48.0959849, + 11.6047402 + ] + ] + }, + { + "osmId": "42212764", + "name": null, + "lengthMeters": 401.0014487917268, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1008394, + 11.6013132 + ], + [ + 48.1004802, + 11.6015486 + ], + [ + 48.0999803, + 11.601859 + ], + [ + 48.0989285, + 11.6024794 + ], + [ + 48.0985456, + 11.6027004 + ], + [ + 48.0978359, + 11.6031411 + ], + [ + 48.0975012, + 11.6033549 + ] + ] + }, + { + "osmId": "42212766", + "name": null, + "lengthMeters": 97.03013252615564, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1016368, + 11.6007825 + ], + [ + 48.1008864, + 11.6012819 + ], + [ + 48.1008394, + 11.6013132 + ] + ] + }, + { + "osmId": "42219566", + "name": null, + "lengthMeters": 369.379128966957, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0622993, + 11.6122062 + ], + [ + 48.0609639, + 11.6121363 + ], + [ + 48.0605197, + 11.6121138 + ], + [ + 48.0590583, + 11.6120379 + ], + [ + 48.0589794, + 11.6120335 + ] + ] + }, + { + "osmId": "42219568", + "name": null, + "lengthMeters": 1900.8609438801286, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0975012, + 11.6033549 + ], + [ + 48.0973623, + 11.6034424 + ], + [ + 48.0971386, + 11.6035837 + ], + [ + 48.0969095, + 11.6037304 + ], + [ + 48.0965404, + 11.6039674 + ], + [ + 48.0960124, + 11.6043057 + ], + [ + 48.0955596, + 11.6045814 + ], + [ + 48.0951088, + 11.604841 + ], + [ + 48.0948475, + 11.6049808 + ], + [ + 48.0942709, + 11.6052892 + ], + [ + 48.0937109, + 11.6055534 + ], + [ + 48.0936546, + 11.60558 + ], + [ + 48.0933065, + 11.6057362 + ], + [ + 48.0930334, + 11.605849 + ], + [ + 48.092946, + 11.6058851 + ], + [ + 48.0925799, + 11.6060307 + ], + [ + 48.0922533, + 11.606145 + ], + [ + 48.0918265, + 11.6062935 + ], + [ + 48.0917799, + 11.6063072 + ], + [ + 48.091744, + 11.6063178 + ], + [ + 48.0913379, + 11.6064373 + ], + [ + 48.090786, + 11.6065888 + ], + [ + 48.0897001, + 11.6068678 + ], + [ + 48.0880162, + 11.6073005 + ], + [ + 48.0861398, + 11.6077758 + ], + [ + 48.0846773, + 11.6081462 + ], + [ + 48.0846549, + 11.6081519 + ], + [ + 48.0843744, + 11.6082229 + ], + [ + 48.0825962, + 11.6086733 + ], + [ + 48.0809078, + 11.6091009 + ] + ] + }, + { + "osmId": "42219570", + "name": null, + "lengthMeters": 343.72285433815205, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0656257, + 11.6123775 + ], + [ + 48.0654296, + 11.6123668 + ], + [ + 48.065148, + 11.6123515 + ], + [ + 48.0631186, + 11.61225 + ], + [ + 48.0628889, + 11.6122385 + ], + [ + 48.0625363, + 11.6122209 + ] + ] + }, + { + "osmId": "42220072", + "name": null, + "lengthMeters": 299.0257240424957, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3453594, + 13.6299671 + ], + [ + 52.3459929, + 13.6295941 + ], + [ + 52.3463023, + 13.6293881 + ], + [ + 52.3467008, + 13.6291306 + ], + [ + 52.3470071, + 13.6288958 + ], + [ + 52.347154, + 13.6287888 + ], + [ + 52.34732, + 13.6286679 + ], + [ + 52.347381, + 13.6286251 + ], + [ + 52.3475416, + 13.6285 + ], + [ + 52.3475985, + 13.6284556 + ], + [ + 52.3478372, + 13.628265 + ] + ] + }, + { + "osmId": "42221412", + "name": null, + "lengthMeters": 944.594803042729, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.054326, + 11.6105876 + ], + [ + 48.0540969, + 11.6104767 + ], + [ + 48.0530468, + 11.6099684 + ], + [ + 48.0521347, + 11.6095295 + ], + [ + 48.0515116, + 11.609225 + ], + [ + 48.0511306, + 11.6090393 + ], + [ + 48.0508683, + 11.6089143 + ], + [ + 48.0506843, + 11.6088266 + ], + [ + 48.0505289, + 11.6087512 + ], + [ + 48.0500875, + 11.6085372 + ], + [ + 48.0494821, + 11.6082336 + ], + [ + 48.0491917, + 11.6080624 + ], + [ + 48.0489708, + 11.6079322 + ], + [ + 48.0488139, + 11.6078254 + ], + [ + 48.0485085, + 11.6076176 + ], + [ + 48.0482556, + 11.6074223 + ], + [ + 48.0480023, + 11.6072136 + ], + [ + 48.0475145, + 11.6067667 + ], + [ + 48.0472483, + 11.6064868 + ], + [ + 48.0470738, + 11.6063033 + ], + [ + 48.0465477, + 11.6057075 + ] + ] + }, + { + "osmId": "42221414", + "name": null, + "lengthMeters": 844.7099390130064, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.034524, + 11.5921305 + ], + [ + 48.0344223, + 11.5920196 + ], + [ + 48.0337125, + 11.5912455 + ], + [ + 48.0332695, + 11.5907444 + ], + [ + 48.0328151, + 11.5902304 + ], + [ + 48.0311437, + 11.5883399 + ], + [ + 48.0305985, + 11.5877247 + ], + [ + 48.0301292, + 11.5871935 + ], + [ + 48.0297922, + 11.586812 + ], + [ + 48.0291313, + 11.5860636 + ], + [ + 48.0285413, + 11.5853822 + ], + [ + 48.0284599, + 11.5852887 + ] + ] + }, + { + "osmId": "42221418", + "name": null, + "lengthMeters": 84.0464408264104, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0413348, + 11.5998134 + ], + [ + 48.040733, + 11.5991294 + ] + ] + }, + { + "osmId": "42221420", + "name": null, + "lengthMeters": 826.1055151206958, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.040733, + 11.5991294 + ], + [ + 48.040109, + 11.5984394 + ], + [ + 48.0393735, + 11.5976261 + ], + [ + 48.0389824, + 11.5971852 + ], + [ + 48.038057, + 11.5961418 + ], + [ + 48.0374474, + 11.5954498 + ], + [ + 48.0367021, + 11.5946037 + ], + [ + 48.0365689, + 11.5944521 + ], + [ + 48.0353466, + 11.5930606 + ], + [ + 48.035069, + 11.5927462 + ], + [ + 48.0348015, + 11.5924392 + ] + ] + }, + { + "osmId": "42221422", + "name": null, + "lengthMeters": 703.6862806413278, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0463818, + 11.6055239 + ], + [ + 48.0458256, + 11.6049005 + ], + [ + 48.0457328, + 11.6047965 + ], + [ + 48.0447335, + 11.6036704 + ], + [ + 48.0433078, + 11.6020638 + ], + [ + 48.0431084, + 11.6018377 + ], + [ + 48.0422879, + 11.600907 + ], + [ + 48.0418197, + 11.6003644 + ], + [ + 48.0417709, + 11.600309 + ], + [ + 48.0413348, + 11.5998134 + ] + ] + }, + { + "osmId": "42300834", + "name": "Berliner Ringbahn", + "lengthMeters": 99.61961394759521, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5294422, + 13.2943823 + ], + [ + 52.529629, + 13.2958226 + ] + ] + }, + { + "osmId": "42300835", + "name": "Berliner Ringbahn", + "lengthMeters": 99.3122341646576, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5296695, + 13.2958055 + ], + [ + 52.5294775, + 13.2943717 + ] + ] + }, + { + "osmId": "42300837", + "name": "Berliner Ringbahn", + "lengthMeters": 1012.825188359112, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5294775, + 13.2943717 + ], + [ + 52.5294555, + 13.2942098 + ], + [ + 52.5292648, + 13.2927963 + ], + [ + 52.5291776, + 13.292031 + ], + [ + 52.5291126, + 13.2913812 + ], + [ + 52.5291063, + 13.2913179 + ], + [ + 52.5290192, + 13.2902466 + ], + [ + 52.5290161, + 13.2902041 + ], + [ + 52.528949, + 13.2892851 + ], + [ + 52.5288653, + 13.2884544 + ], + [ + 52.5288477, + 13.2883236 + ], + [ + 52.5288379, + 13.288251 + ], + [ + 52.5288069, + 13.2880213 + ], + [ + 52.5287308, + 13.2875829 + ], + [ + 52.5286416, + 13.2871644 + ], + [ + 52.5285904, + 13.2869706 + ], + [ + 52.5285335, + 13.2867549 + ], + [ + 52.5284245, + 13.2863917 + ], + [ + 52.5283025, + 13.2860364 + ], + [ + 52.528266, + 13.2859457 + ], + [ + 52.5281467, + 13.2856488 + ], + [ + 52.5279769, + 13.2852812 + ], + [ + 52.5278026, + 13.2849485 + ], + [ + 52.5276196, + 13.284643 + ], + [ + 52.5276121, + 13.2846317 + ], + [ + 52.5274398, + 13.2843726 + ], + [ + 52.5272501, + 13.2841143 + ], + [ + 52.5269336, + 13.2837574 + ], + [ + 52.5265592, + 13.2834082 + ], + [ + 52.5261642, + 13.2831207 + ], + [ + 52.52586, + 13.2829499 + ], + [ + 52.5255398, + 13.2828149 + ], + [ + 52.5251539, + 13.2827042 + ] + ] + }, + { + "osmId": "42301631", + "name": "Berliner Ringbahn", + "lengthMeters": 659.5690771114323, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297152, + 13.2964776 + ], + [ + 52.5298398, + 13.297483 + ], + [ + 52.5299, + 13.2979437 + ], + [ + 52.5301136, + 13.2995812 + ], + [ + 52.5301973, + 13.300244 + ], + [ + 52.5304105, + 13.3018029 + ], + [ + 52.5305805, + 13.3029786 + ], + [ + 52.5309773, + 13.3058417 + ], + [ + 52.5309983, + 13.3059968 + ] + ] + }, + { + "osmId": "42301632", + "name": "Berliner Ringbahn", + "lengthMeters": 78.28358647926979, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320726, + 13.313732 + ], + [ + 52.5319197, + 13.3126023 + ] + ] + }, + { + "osmId": "42301633", + "name": "Berliner Ringbahn", + "lengthMeters": 421.15523625508064, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5319197, + 13.3126023 + ], + [ + 52.5314154, + 13.3088369 + ], + [ + 52.5311049, + 13.3065219 + ] + ] + }, + { + "osmId": "42301634", + "name": "Berliner Ringbahn", + "lengthMeters": 78.28301405362198, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318832, + 13.3126153 + ], + [ + 52.5320358, + 13.3137451 + ] + ] + }, + { + "osmId": "42301635", + "name": "Berliner Ringbahn", + "lengthMeters": 77.63811523140875, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320358, + 13.3137451 + ], + [ + 52.5320624, + 13.3139238 + ], + [ + 52.5321025, + 13.3142245 + ], + [ + 52.5321344, + 13.3144791 + ], + [ + 52.5321603, + 13.3146721 + ], + [ + 52.5321757, + 13.3147879 + ], + [ + 52.5321861, + 13.3148659 + ] + ] + }, + { + "osmId": "42301637", + "name": "Berliner Ringbahn", + "lengthMeters": 659.4155572364044, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310335, + 13.3059823 + ], + [ + 52.531012, + 13.3058284 + ], + [ + 52.5304468, + 13.301788 + ], + [ + 52.5302353, + 13.3002297 + ], + [ + 52.5301481, + 13.2995652 + ], + [ + 52.5299415, + 13.2979373 + ], + [ + 52.5298811, + 13.2974706 + ], + [ + 52.5297509, + 13.2964651 + ] + ] + }, + { + "osmId": "42301639", + "name": "Berliner Ringbahn", + "lengthMeters": 421.0358438386869, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310732, + 13.306535 + ], + [ + 52.5313795, + 13.3088484 + ], + [ + 52.5313967, + 13.3089779 + ], + [ + 52.5317737, + 13.3117742 + ], + [ + 52.5318832, + 13.3126153 + ] + ] + }, + { + "osmId": "42302167", + "name": "Berliner Ringbahn", + "lengthMeters": 355.9479857008858, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5358239, + 13.3444013 + ], + [ + 52.5358589, + 13.3448966 + ], + [ + 52.5358741, + 13.3451158 + ], + [ + 52.5358874, + 13.3453019 + ], + [ + 52.5359129, + 13.3456324 + ], + [ + 52.5359377, + 13.3459143 + ], + [ + 52.5359784, + 13.3463049 + ], + [ + 52.5360081, + 13.3465323 + ], + [ + 52.5360573, + 13.3468558 + ], + [ + 52.5361113, + 13.3471577 + ], + [ + 52.536191, + 13.3475525 + ], + [ + 52.5362765, + 13.3479457 + ], + [ + 52.5364475, + 13.3485889 + ], + [ + 52.5365453, + 13.3489608 + ], + [ + 52.5366048, + 13.3491988 + ], + [ + 52.5366627, + 13.3494441 + ] + ] + }, + { + "osmId": "42527051", + "name": null, + "lengthMeters": 245.61020208594954, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412651, + 11.5476581 + ], + [ + 48.1411958, + 11.5486184 + ], + [ + 48.1411117, + 11.5493993 + ], + [ + 48.1410349, + 11.5501158 + ], + [ + 48.1409737, + 11.5506644 + ], + [ + 48.1409439, + 11.550932 + ] + ] + }, + { + "osmId": "42527053", + "name": null, + "lengthMeters": 105.86864121699648, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1413664, + 11.5487165 + ], + [ + 48.1413606, + 11.5487951 + ], + [ + 48.1413269, + 11.5492503 + ], + [ + 48.1413058, + 11.5495353 + ], + [ + 48.1412614, + 11.5501346 + ] + ] + }, + { + "osmId": "42527057", + "name": null, + "lengthMeters": 227.17786042441787, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415314, + 11.5476357 + ], + [ + 48.1415188, + 11.5478049 + ], + [ + 48.1414917, + 11.548169 + ], + [ + 48.1413437, + 11.5501553 + ], + [ + 48.1413047, + 11.5506785 + ] + ] + }, + { + "osmId": "42555479", + "name": null, + "lengthMeters": 298.1066134852434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5475044, + 10.0023635 + ], + [ + 53.5474535, + 10.0028598 + ], + [ + 53.5474323, + 10.0030862 + ], + [ + 53.5474214, + 10.0032621 + ], + [ + 53.5474249, + 10.0034676 + ], + [ + 53.5474366, + 10.0037029 + ], + [ + 53.5474577, + 10.0039043 + ], + [ + 53.5474963, + 10.0041471 + ], + [ + 53.5475446, + 10.0043838 + ], + [ + 53.5476431, + 10.0047171 + ], + [ + 53.5476899, + 10.0048629 + ], + [ + 53.5477966, + 10.0051146 + ], + [ + 53.5479156, + 10.0053341 + ], + [ + 53.5480466, + 10.0055334 + ], + [ + 53.5481638, + 10.0056957 + ], + [ + 53.5482986, + 10.0058507 + ], + [ + 53.5484437, + 10.0059915 + ], + [ + 53.5485529, + 10.006073 + ] + ] + }, + { + "osmId": "42561748", + "name": null, + "lengthMeters": 380.50322914736614, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6135412, + 10.1240817 + ], + [ + 53.6163491, + 10.1273788 + ] + ] + }, + { + "osmId": "42561749", + "name": null, + "lengthMeters": 99.67212951843845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6071097, + 10.1179101 + ], + [ + 53.6071847, + 10.1179812 + ], + [ + 53.6077994, + 10.1185718 + ], + [ + 53.6078887, + 10.1186575 + ] + ] + }, + { + "osmId": "42562067", + "name": null, + "lengthMeters": 334.05413458297926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6649435, + 10.2173351 + ], + [ + 53.6647801, + 10.2180552 + ], + [ + 53.6646704, + 10.2188382 + ], + [ + 53.6645977, + 10.2192927 + ], + [ + 53.6644365, + 10.2202543 + ], + [ + 53.66413, + 10.2222116 + ] + ] + }, + { + "osmId": "42562068", + "name": null, + "lengthMeters": 1253.5768106364892, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.66413, + 10.2222116 + ], + [ + 53.6640442, + 10.2227371 + ], + [ + 53.6638612, + 10.2238247 + ], + [ + 53.6633018, + 10.2275154 + ], + [ + 53.6625695, + 10.2326739 + ], + [ + 53.6617252, + 10.2391112 + ], + [ + 53.6615082, + 10.2407132 + ] + ] + }, + { + "osmId": "42562506", + "name": null, + "lengthMeters": 312.40323918137, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6523482, + 10.2622438 + ], + [ + 53.6524527, + 10.2620619 + ], + [ + 53.6525179, + 10.2619484 + ], + [ + 53.652729, + 10.2615812 + ], + [ + 53.6528507, + 10.2613521 + ], + [ + 53.6530948, + 10.260882 + ], + [ + 53.6531138, + 10.2608445 + ], + [ + 53.6534222, + 10.2602362 + ], + [ + 53.6538511, + 10.2593863 + ], + [ + 53.6539768, + 10.259132 + ], + [ + 53.6541998, + 10.2586807 + ] + ] + }, + { + "osmId": "42562507", + "name": null, + "lengthMeters": 1702.2781350110547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6523482, + 10.2622438 + ], + [ + 53.6523169, + 10.2623054 + ], + [ + 53.6521936, + 10.2625483 + ], + [ + 53.6521093, + 10.2627144 + ], + [ + 53.6509154, + 10.2650664 + ], + [ + 53.6508705, + 10.2651586 + ], + [ + 53.6507732, + 10.2653501 + ], + [ + 53.6501499, + 10.2666266 + ], + [ + 53.6500819, + 10.2667658 + ], + [ + 53.6499331, + 10.2671053 + ], + [ + 53.6498106, + 10.2674654 + ], + [ + 53.6496951, + 10.2678787 + ], + [ + 53.6496306, + 10.2681962 + ], + [ + 53.6495569, + 10.2686993 + ], + [ + 53.6495122, + 10.2691519 + ], + [ + 53.6494251, + 10.2700149 + ], + [ + 53.6494209, + 10.2700557 + ], + [ + 53.6493952, + 10.2703106 + ], + [ + 53.6493893, + 10.2703951 + ], + [ + 53.6493234, + 10.2713361 + ], + [ + 53.6493182, + 10.2715332 + ], + [ + 53.649321, + 10.2717743 + ], + [ + 53.6493459, + 10.2722363 + ], + [ + 53.6494155, + 10.2729284 + ], + [ + 53.6494893, + 10.2734442 + ], + [ + 53.6495738, + 10.273926 + ], + [ + 53.649642, + 10.274244 + ], + [ + 53.6496972, + 10.2744922 + ], + [ + 53.6497886, + 10.2748198 + ], + [ + 53.6498477, + 10.2750234 + ], + [ + 53.6499558, + 10.2753506 + ], + [ + 53.650075, + 10.2757234 + ], + [ + 53.6502006, + 10.2760775 + ], + [ + 53.6503516, + 10.2764475 + ], + [ + 53.6505384, + 10.2768433 + ], + [ + 53.6507292, + 10.2772188 + ], + [ + 53.6508564, + 10.2774334 + ], + [ + 53.6509722, + 10.2776148 + ], + [ + 53.6521237, + 10.2792543 + ], + [ + 53.6522393, + 10.2794189 + ], + [ + 53.65226, + 10.279446 + ], + [ + 53.6523007, + 10.2794994 + ], + [ + 53.652512, + 10.2797765 + ], + [ + 53.6528672, + 10.280193 + ], + [ + 53.6530788, + 10.2804357 + ], + [ + 53.6531614, + 10.2805357 + ], + [ + 53.6531846, + 10.280566 + ], + [ + 53.6533157, + 10.2807076 + ], + [ + 53.6534844, + 10.2808374 + ], + [ + 53.6538093, + 10.2810873 + ], + [ + 53.6538262, + 10.2811003 + ], + [ + 53.6539532, + 10.281198 + ], + [ + 53.6549603, + 10.2818614 + ] + ] + }, + { + "osmId": "42692183", + "name": "Verbindungsbahn", + "lengthMeters": 358.4188997303495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.563848, + 9.9710609 + ], + [ + 53.5638383, + 9.9703019 + ], + [ + 53.5638645, + 9.9696544 + ], + [ + 53.5638699, + 9.969554 + ], + [ + 53.5638982, + 9.968975 + ], + [ + 53.5639001, + 9.9688964 + ], + [ + 53.5639042, + 9.9687252 + ], + [ + 53.5639036, + 9.9685874 + ], + [ + 53.5639032, + 9.9684751 + ], + [ + 53.5638884, + 9.9678585 + ], + [ + 53.563856, + 9.9670238 + ], + [ + 53.5638546, + 9.9669876 + ], + [ + 53.5638323, + 9.9664121 + ], + [ + 53.5638216, + 9.9661372 + ], + [ + 53.5638082, + 9.9658821 + ], + [ + 53.5637969, + 9.9657129 + ], + [ + 53.5637921, + 9.9656447 + ] + ] + }, + { + "osmId": "42692184", + "name": "Verbindungsbahn", + "lengthMeters": 128.68392815256595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637419, + 9.9650831 + ], + [ + 53.5636751, + 9.9643282 + ], + [ + 53.5636632, + 9.964173 + ], + [ + 53.563653, + 9.9640328 + ], + [ + 53.5636442, + 9.963879 + ], + [ + 53.5636361, + 9.96371 + ], + [ + 53.5636153, + 9.9631476 + ] + ] + }, + { + "osmId": "42709802", + "name": null, + "lengthMeters": 297.54082816441706, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5830229, + 9.7582932 + ], + [ + 53.5829988, + 9.7586522 + ], + [ + 53.5829135, + 9.7594913 + ], + [ + 53.5828333, + 9.760296 + ], + [ + 53.5827351, + 9.7610811 + ], + [ + 53.5826709, + 9.7615852 + ], + [ + 53.5825264, + 9.7627203 + ] + ] + }, + { + "osmId": "42709804", + "name": null, + "lengthMeters": 2081.6991477318725, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5824971, + 9.7629389 + ], + [ + 53.5823803, + 9.7638116 + ], + [ + 53.5820815, + 9.7662532 + ], + [ + 53.5818984, + 9.7673342 + ], + [ + 53.5816785, + 9.7688416 + ], + [ + 53.5816683, + 9.7689065 + ], + [ + 53.5815151, + 9.7698819 + ], + [ + 53.5814034, + 9.7706279 + ], + [ + 53.5811878, + 9.7720672 + ], + [ + 53.5810247, + 9.7735112 + ], + [ + 53.5809024, + 9.7754246 + ], + [ + 53.5809008, + 9.7762638 + ], + [ + 53.5809, + 9.7766602 + ], + [ + 53.580899, + 9.7775139 + ], + [ + 53.5808984, + 9.7780357 + ], + [ + 53.5809668, + 9.7837514 + ], + [ + 53.58099, + 9.7856889 + ], + [ + 53.5810373, + 9.7906675 + ], + [ + 53.5810434, + 9.7913106 + ], + [ + 53.5810685, + 9.7939582 + ], + [ + 53.5810705, + 9.7941678 + ] + ] + }, + { + "osmId": "42710039", + "name": null, + "lengthMeters": 741.4577505326789, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5805818, + 9.8011962 + ], + [ + 53.5804896, + 9.8017768 + ], + [ + 53.580225, + 9.8034437 + ], + [ + 53.580112, + 9.8041313 + ], + [ + 53.5800982, + 9.804207 + ], + [ + 53.5799703, + 9.8049076 + ], + [ + 53.579789, + 9.8056802 + ], + [ + 53.5796831, + 9.8060763 + ], + [ + 53.5793846, + 9.8071928 + ], + [ + 53.5788701, + 9.8091507 + ], + [ + 53.578702, + 9.8096261 + ], + [ + 53.5784014, + 9.8104759 + ], + [ + 53.5780082, + 9.8114837 + ] + ] + }, + { + "osmId": "42710040", + "name": null, + "lengthMeters": 470.4711598213578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5810705, + 9.7941678 + ], + [ + 53.5810901, + 9.7957667 + ], + [ + 53.581091, + 9.7959379 + ], + [ + 53.5810914, + 9.7962152 + ], + [ + 53.5810922, + 9.7967426 + ], + [ + 53.5810923, + 9.7968315 + ], + [ + 53.5810901, + 9.7969562 + ], + [ + 53.5810856, + 9.7972179 + ], + [ + 53.5810804, + 9.7973278 + ], + [ + 53.5810649, + 9.7976591 + ], + [ + 53.5810122, + 9.7983321 + ], + [ + 53.5809443, + 9.7988333 + ], + [ + 53.5809091, + 9.7990926 + ], + [ + 53.5807412, + 9.8001622 + ], + [ + 53.5805818, + 9.8011962 + ] + ] + }, + { + "osmId": "42711271", + "name": "Pinneberger S-Bahn", + "lengthMeters": 136.44495347391273, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5634853, + 9.9389664 + ], + [ + 53.5634569, + 9.9390805 + ], + [ + 53.5633624, + 9.9394728 + ], + [ + 53.5633136, + 9.9397325 + ], + [ + 53.5632637, + 9.9400634 + ], + [ + 53.5632321, + 9.9403419 + ], + [ + 53.5631838, + 9.9409582 + ] + ] + }, + { + "osmId": "42712750", + "name": "Verbindungsbahn", + "lengthMeters": 79.99083579037014, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5515172, + 10.0084394 + ], + [ + 53.5517918, + 10.0082946 + ], + [ + 53.5519484, + 10.0082248 + ], + [ + 53.5521138, + 10.0081525 + ], + [ + 53.5522111, + 10.0081243 + ] + ] + }, + { + "osmId": "42754417", + "name": null, + "lengthMeters": 1857.4253453456574, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.645653, + 9.8117918 + ], + [ + 53.6443491, + 9.8137439 + ], + [ + 53.6439063, + 9.8144069 + ], + [ + 53.6438985, + 9.8144185 + ], + [ + 53.6434548, + 9.8150758 + ], + [ + 53.6430218, + 9.8157172 + ], + [ + 53.6429292, + 9.8158544 + ], + [ + 53.6424822, + 9.8165221 + ], + [ + 53.6418206, + 9.8174858 + ], + [ + 53.6408821, + 9.8189178 + ], + [ + 53.6403345, + 9.8198615 + ], + [ + 53.6394511, + 9.821566 + ], + [ + 53.6392152, + 9.8220166 + ], + [ + 53.6352185, + 9.8298379 + ], + [ + 53.6340879, + 9.8320427 + ] + ] + }, + { + "osmId": "42754418", + "name": null, + "lengthMeters": 1988.0676774972367, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6341185, + 9.8320869 + ], + [ + 53.634854, + 9.8306692 + ], + [ + 53.6352503, + 9.8298896 + ], + [ + 53.6353243, + 9.829744 + ], + [ + 53.6364862, + 9.8274583 + ], + [ + 53.6372532, + 9.8259494 + ], + [ + 53.6384137, + 9.8236957 + ], + [ + 53.6394841, + 9.8216077 + ], + [ + 53.6403678, + 9.8199046 + ], + [ + 53.6409156, + 9.8189784 + ], + [ + 53.6411134, + 9.8186504 + ], + [ + 53.641846, + 9.8175444 + ], + [ + 53.6425061, + 9.8165847 + ], + [ + 53.6429766, + 9.8159311 + ], + [ + 53.6435955, + 9.8150969 + ], + [ + 53.6439751, + 9.8145678 + ], + [ + 53.6446619, + 9.8135247 + ], + [ + 53.6448381, + 9.8132446 + ], + [ + 53.6454993, + 9.8121438 + ], + [ + 53.6465555, + 9.810515 + ] + ] + }, + { + "osmId": "42756227", + "name": null, + "lengthMeters": 131.9145893075115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5876172, + 9.9225378 + ], + [ + 53.5880114, + 9.9218015 + ], + [ + 53.5883998, + 9.921036 + ] + ] + }, + { + "osmId": "42757299", + "name": null, + "lengthMeters": 163.18550064506775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5222215, + 10.0139026 + ], + [ + 53.52236, + 10.0139938 + ], + [ + 53.5225362, + 10.0141065 + ], + [ + 53.5227983, + 10.0142533 + ], + [ + 53.523209, + 10.0144749 + ], + [ + 53.52361, + 10.0147001 + ] + ] + }, + { + "osmId": "42764947", + "name": "Harburger S-Bahn", + "lengthMeters": 320.09861936987375, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5501966, + 10.0200477 + ], + [ + 53.5501853, + 10.0200788 + ], + [ + 53.5500632, + 10.0204465 + ], + [ + 53.5499054, + 10.0207847 + ], + [ + 53.5497443, + 10.0210507 + ], + [ + 53.5495338, + 10.021325 + ], + [ + 53.5493742, + 10.0214903 + ], + [ + 53.5492632, + 10.0215931 + ], + [ + 53.549062, + 10.021762 + ], + [ + 53.5483967, + 10.0222621 + ], + [ + 53.5481248, + 10.0224522 + ], + [ + 53.5478477, + 10.0226341 + ] + ] + }, + { + "osmId": "42764948", + "name": null, + "lengthMeters": 81.89197499114212, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5495959, + 10.0130323 + ], + [ + 53.5495962, + 10.0137637 + ], + [ + 53.5496222, + 10.01427 + ] + ] + }, + { + "osmId": "42764949", + "name": "Harburger S-Bahn", + "lengthMeters": 127.92187135432289, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5504706, + 10.0180397 + ], + [ + 53.5504433, + 10.0177541 + ], + [ + 53.5504023, + 10.0174657 + ], + [ + 53.5503104, + 10.016996 + ], + [ + 53.5501251, + 10.0161988 + ] + ] + }, + { + "osmId": "42764950", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 111.69503001724225, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5524839, + 10.0259694 + ], + [ + 53.5524805, + 10.0260656 + ], + [ + 53.5524785, + 10.0261137 + ], + [ + 53.5524619, + 10.0263787 + ], + [ + 53.5524512, + 10.0265021 + ], + [ + 53.5524382, + 10.0266343 + ], + [ + 53.5524058, + 10.0268951 + ], + [ + 53.5523664, + 10.027146 + ], + [ + 53.5523392, + 10.0272923 + ], + [ + 53.5523124, + 10.0274265 + ], + [ + 53.5522761, + 10.0275882 + ], + [ + 53.5522699, + 10.0276135 + ] + ] + }, + { + "osmId": "42764951", + "name": "Verbindungsbahn", + "lengthMeters": 144.53454027641484, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5508671, + 10.0086721 + ], + [ + 53.5506883, + 10.0089603 + ], + [ + 53.5505327, + 10.0092414 + ], + [ + 53.5504455, + 10.0094313 + ], + [ + 53.5503916, + 10.0095459 + ], + [ + 53.5502431, + 10.0099059 + ], + [ + 53.5500729, + 10.01039 + ] + ] + }, + { + "osmId": "42764952", + "name": null, + "lengthMeters": 76.75001237273031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5522699, + 10.0276135 + ], + [ + 53.5522378, + 10.0277444 + ], + [ + 53.5521662, + 10.0279754 + ], + [ + 53.5521259, + 10.0281046 + ], + [ + 53.5521093, + 10.0281526 + ], + [ + 53.5520205, + 10.0283875 + ], + [ + 53.5519263, + 10.028618 + ] + ] + }, + { + "osmId": "42764960", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 258.5097219294757, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5495959, + 10.0130323 + ], + [ + 53.5495615, + 10.0139509 + ], + [ + 53.5495656, + 10.0140609 + ], + [ + 53.5495767, + 10.0143568 + ], + [ + 53.549599, + 10.0146741 + ], + [ + 53.5496292, + 10.0149517 + ], + [ + 53.549675, + 10.0152609 + ], + [ + 53.5497834, + 10.0158124 + ], + [ + 53.5499708, + 10.0165975 + ], + [ + 53.5500264, + 10.0168169 + ] + ] + }, + { + "osmId": "42764965", + "name": null, + "lengthMeters": 190.09336919427165, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5496522, + 10.0140064 + ], + [ + 53.5496958, + 10.0146476 + ], + [ + 53.5497172, + 10.0148604 + ], + [ + 53.5497652, + 10.0151927 + ], + [ + 53.5498296, + 10.0155347 + ], + [ + 53.5499657, + 10.0161759 + ], + [ + 53.5501139, + 10.0167594 + ] + ] + }, + { + "osmId": "42764979", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 100.06274244627211, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.551982, + 10.022406 + ], + [ + 53.5515623, + 10.0215037 + ], + [ + 53.5514383, + 10.0211997 + ] + ] + }, + { + "osmId": "42764985", + "name": null, + "lengthMeters": 116.69182284911717, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.553799, + 10.0253157 + ], + [ + 53.5536397, + 10.0252154 + ], + [ + 53.5534794, + 10.0250963 + ], + [ + 53.5533447, + 10.0249839 + ], + [ + 53.5532264, + 10.024873 + ], + [ + 53.5531115, + 10.0247526 + ], + [ + 53.5530275, + 10.0246562 + ], + [ + 53.5528829, + 10.0244719 + ] + ] + }, + { + "osmId": "42765190", + "name": null, + "lengthMeters": 148.06669826480373, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5359231, + 10.0253839 + ], + [ + 53.5358792, + 10.0253668 + ], + [ + 53.5358323, + 10.0253486 + ], + [ + 53.535748, + 10.0253104 + ], + [ + 53.5356507, + 10.0252637 + ], + [ + 53.5355042, + 10.0251883 + ], + [ + 53.5353671, + 10.0251157 + ], + [ + 53.5352841, + 10.0250673 + ], + [ + 53.535095, + 10.0249468 + ], + [ + 53.5349876, + 10.0248744 + ], + [ + 53.5349331, + 10.0248368 + ], + [ + 53.5347981, + 10.0247382 + ], + [ + 53.5346697, + 10.0246395 + ] + ] + }, + { + "osmId": "42765191", + "name": null, + "lengthMeters": 305.6239088768542, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5316091, + 10.021866 + ], + [ + 53.5310678, + 10.0213496 + ], + [ + 53.5308211, + 10.0211135 + ], + [ + 53.5304237, + 10.0207119 + ], + [ + 53.5300959, + 10.0203544 + ], + [ + 53.5292377, + 10.0195301 + ] + ] + }, + { + "osmId": "42765192", + "name": null, + "lengthMeters": 307.67830109165084, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5340417, + 10.0240846 + ], + [ + 53.5316091, + 10.021866 + ] + ] + }, + { + "osmId": "42765193", + "name": null, + "lengthMeters": 382.7368213917432, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5393024, + 10.026478 + ], + [ + 53.5362066, + 10.02551 + ], + [ + 53.5359231, + 10.0253839 + ] + ] + }, + { + "osmId": "42793993", + "name": null, + "lengthMeters": 272.6979370901592, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537795, + 10.0251585 + ], + [ + 53.5535221, + 10.0249286 + ], + [ + 53.5533976, + 10.0248072 + ], + [ + 53.5532389, + 10.0246354 + ], + [ + 53.5530973, + 10.0244661 + ], + [ + 53.553047, + 10.0244103 + ], + [ + 53.5529189, + 10.0242387 + ], + [ + 53.5528094, + 10.0240698 + ], + [ + 53.5527053, + 10.0238981 + ], + [ + 53.5526022, + 10.0237087 + ], + [ + 53.5525151, + 10.0235313 + ], + [ + 53.5524403, + 10.0233669 + ], + [ + 53.5523686, + 10.0231971 + ], + [ + 53.552283, + 10.0229828 + ], + [ + 53.5521965, + 10.0227686 + ], + [ + 53.5521144, + 10.022566 + ], + [ + 53.5520277, + 10.0223652 + ] + ] + }, + { + "osmId": "42793998", + "name": null, + "lengthMeters": 89.18651460488925, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5515231, + 10.0215647 + ], + [ + 53.5513047, + 10.0209672 + ], + [ + 53.5512368, + 10.0207369 + ], + [ + 53.5511612, + 10.0204802 + ], + [ + 53.5511373, + 10.0203833 + ] + ] + }, + { + "osmId": "42793999", + "name": null, + "lengthMeters": 161.68937579466626, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5519247, + 10.0226783 + ], + [ + 53.5520934, + 10.0230934 + ], + [ + 53.5522056, + 10.0233449 + ], + [ + 53.5522849, + 10.0235143 + ], + [ + 53.5523863, + 10.0237179 + ], + [ + 53.5525208, + 10.0239828 + ], + [ + 53.5525941, + 10.0241245 + ], + [ + 53.5526498, + 10.0242225 + ], + [ + 53.5527071, + 10.0243206 + ], + [ + 53.5527797, + 10.0244374 + ], + [ + 53.5528556, + 10.0245499 + ] + ] + }, + { + "osmId": "42794002", + "name": "City-S-Bahn", + "lengthMeters": 848.3587526855385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.555751, + 10.0047738 + ], + [ + 53.5558489, + 10.0045999 + ], + [ + 53.555936, + 10.0044203 + ], + [ + 53.5560166, + 10.0042541 + ], + [ + 53.5561488, + 10.0039694 + ], + [ + 53.55629, + 10.0036346 + ], + [ + 53.5563905, + 10.0033787 + ], + [ + 53.5564759, + 10.0031452 + ], + [ + 53.5565466, + 10.0029141 + ], + [ + 53.556614, + 10.0026446 + ], + [ + 53.5566667, + 10.0024224 + ], + [ + 53.5567161, + 10.002156 + ], + [ + 53.556766, + 10.0018579 + ], + [ + 53.5568013, + 10.0015353 + ], + [ + 53.5568247, + 10.0011685 + ], + [ + 53.5568341, + 10.0008164 + ], + [ + 53.5568318, + 10.000558 + ], + [ + 53.5568206, + 10.0002974 + ], + [ + 53.5567905, + 9.9999468 + ], + [ + 53.5567334, + 9.9995569 + ], + [ + 53.5566855, + 9.9993086 + ], + [ + 53.5566287, + 9.9990514 + ], + [ + 53.5565503, + 9.998774 + ], + [ + 53.5564701, + 9.9985157 + ], + [ + 53.5563253, + 9.9981576 + ], + [ + 53.5562344, + 9.9979585 + ], + [ + 53.5561352, + 9.9977567 + ], + [ + 53.556009, + 9.9975371 + ], + [ + 53.5558603, + 9.9973146 + ], + [ + 53.5557782, + 9.9972037 + ], + [ + 53.5557235, + 9.9971297 + ], + [ + 53.5555477, + 9.9969306 + ], + [ + 53.5554719, + 9.9968443 + ], + [ + 53.5553964, + 9.9967744 + ], + [ + 53.5552247, + 9.9966281 + ], + [ + 53.5550358, + 9.9964891 + ], + [ + 53.5548615, + 9.9963921 + ], + [ + 53.5544764, + 9.9961871 + ], + [ + 53.5540854, + 9.9959636 + ], + [ + 53.5537924, + 9.9957583 + ], + [ + 53.5536372, + 9.9956335 + ], + [ + 53.5535073, + 9.9955155 + ] + ] + }, + { + "osmId": "42794003", + "name": "City-S-Bahn", + "lengthMeters": 265.72244774208696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.556755, + 10.0015167 + ], + [ + 53.5567164, + 10.0018197 + ], + [ + 53.5566677, + 10.0021299 + ], + [ + 53.5566178, + 10.0023936 + ], + [ + 53.5565639, + 10.002621 + ], + [ + 53.556495, + 10.0028711 + ], + [ + 53.5564188, + 10.0031091 + ], + [ + 53.5563338, + 10.0033386 + ], + [ + 53.5562414, + 10.0035708 + ], + [ + 53.556087, + 10.003889 + ], + [ + 53.5559346, + 10.0041442 + ], + [ + 53.55585, + 10.0042832 + ], + [ + 53.555684, + 10.0045346 + ], + [ + 53.5554944, + 10.0048181 + ] + ] + }, + { + "osmId": "42794011", + "name": "Verbindungsbahn", + "lengthMeters": 204.6983811904953, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5548792, + 10.0060199 + ], + [ + 53.5550656, + 10.0057471 + ], + [ + 53.5552413, + 10.0054807 + ], + [ + 53.5554112, + 10.0052148 + ], + [ + 53.5554919, + 10.0050778 + ], + [ + 53.5556792, + 10.0047464 + ], + [ + 53.5558168, + 10.0044688 + ], + [ + 53.5559094, + 10.0042606 + ], + [ + 53.5559714, + 10.0041069 + ], + [ + 53.556043, + 10.00391 + ], + [ + 53.5560747, + 10.0038138 + ], + [ + 53.5561021, + 10.0037297 + ] + ] + }, + { + "osmId": "42815536", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 79.90167613114286, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521781, + 10.0274066 + ], + [ + 53.5521561, + 10.0275174 + ], + [ + 53.5520955, + 10.0277707 + ], + [ + 53.5520451, + 10.0279549 + ], + [ + 53.5519591, + 10.0282117 + ], + [ + 53.5518539, + 10.0284807 + ] + ] + }, + { + "osmId": "42815538", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 94.72168597489812, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552009, + 10.0237945 + ], + [ + 53.5520282, + 10.0238604 + ], + [ + 53.5521214, + 10.0241809 + ], + [ + 53.5522126, + 10.0245946 + ], + [ + 53.5522892, + 10.025142 + ] + ] + }, + { + "osmId": "42815540", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 88.8504044018834, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552324, + 10.0260888 + ], + [ + 53.5523084, + 10.0264427 + ], + [ + 53.5522902, + 10.0266495 + ], + [ + 53.5522513, + 10.0269713 + ], + [ + 53.5522409, + 10.0270529 + ], + [ + 53.5522077, + 10.0272517 + ], + [ + 53.5521781, + 10.0274066 + ] + ] + }, + { + "osmId": "42815541", + "name": null, + "lengthMeters": 147.40429353570153, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518539, + 10.0284807 + ], + [ + 53.5517752, + 10.0286603 + ], + [ + 53.5516776, + 10.0288577 + ], + [ + 53.5515121, + 10.0291389 + ], + [ + 53.5513383, + 10.0293936 + ], + [ + 53.5511086, + 10.0296714 + ], + [ + 53.5510523, + 10.0297396 + ], + [ + 53.5508548, + 10.0299127 + ] + ] + }, + { + "osmId": "42815553", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 207.48833655184322, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5509294, + 10.0202625 + ], + [ + 53.5509125, + 10.0202066 + ], + [ + 53.5505812, + 10.0189534 + ], + [ + 53.5503027, + 10.0179033 + ], + [ + 53.550175, + 10.0175209 + ], + [ + 53.5501438, + 10.0174155 + ] + ] + }, + { + "osmId": "42815556", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 102.66371065879031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538737, + 10.0256153 + ], + [ + 53.5547784, + 10.0259255 + ] + ] + }, + { + "osmId": "42815557", + "name": "Vogelfluglinie", + "lengthMeters": 1013.3433961713126, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6028166, + 10.1510702 + ], + [ + 53.6025861, + 10.1506872 + ], + [ + 53.6020743, + 10.149837 + ], + [ + 53.6014992, + 10.1488525 + ], + [ + 53.6004757, + 10.1470966 + ], + [ + 53.5994762, + 10.1453929 + ], + [ + 53.5982353, + 10.1432709 + ], + [ + 53.5976276, + 10.1422286 + ], + [ + 53.5970783, + 10.1412864 + ], + [ + 53.5964117, + 10.1401459 + ] + ] + }, + { + "osmId": "42815560", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 171.003168994544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5499753, + 10.0168513 + ], + [ + 53.5499216, + 10.0166273 + ], + [ + 53.5497321, + 10.0158373 + ], + [ + 53.5496352, + 10.015284 + ], + [ + 53.5495841, + 10.0149351 + ], + [ + 53.5495549, + 10.0146792 + ], + [ + 53.5495538, + 10.0146643 + ], + [ + 53.5495325, + 10.0143834 + ] + ] + }, + { + "osmId": "42815568", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 245.36938877211708, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521546, + 10.0236607 + ], + [ + 53.5521038, + 10.0234986 + ], + [ + 53.5520452, + 10.0233186 + ], + [ + 53.5515844, + 10.0221003 + ], + [ + 53.5513052, + 10.021381 + ], + [ + 53.5511517, + 10.0209533 + ], + [ + 53.5510224, + 10.0205683 + ], + [ + 53.5510006, + 10.0204968 + ] + ] + }, + { + "osmId": "42815569", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 247.84517798092284, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5510386, + 10.0204652 + ], + [ + 53.5510597, + 10.0205318 + ], + [ + 53.5511747, + 10.0208832 + ], + [ + 53.5513348, + 10.0213332 + ], + [ + 53.551456, + 10.0216473 + ], + [ + 53.5516165, + 10.0220619 + ], + [ + 53.5518852, + 10.0227501 + ], + [ + 53.5519578, + 10.0229352 + ], + [ + 53.5520863, + 10.0232666 + ], + [ + 53.5521858, + 10.023573 + ], + [ + 53.5522071, + 10.0236566 + ] + ] + }, + { + "osmId": "42815570", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 245.80199051240555, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5508769, + 10.0205995 + ], + [ + 53.5509008, + 10.0206735 + ], + [ + 53.5510238, + 10.021047 + ], + [ + 53.5510337, + 10.0210763 + ], + [ + 53.5512264, + 10.0216515 + ], + [ + 53.5514452, + 10.0222581 + ], + [ + 53.552009, + 10.0237945 + ] + ] + }, + { + "osmId": "42815573", + "name": "Verbindungsbahn", + "lengthMeters": 185.73135688380694, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5569849, + 9.9978627 + ], + [ + 53.556938, + 9.9980682 + ], + [ + 53.5569022, + 9.9982633 + ], + [ + 53.5568744, + 9.9984318 + ], + [ + 53.5568558, + 9.9985533 + ], + [ + 53.556839, + 9.9986951 + ], + [ + 53.5568159, + 9.9989048 + ], + [ + 53.5568098, + 9.9989798 + ], + [ + 53.5567976, + 9.9991282 + ], + [ + 53.5567677, + 9.9995604 + ], + [ + 53.5567186, + 10.0002402 + ], + [ + 53.5566926, + 10.0005739 + ], + [ + 53.5566889, + 10.0006208 + ] + ] + }, + { + "osmId": "42816890", + "name": null, + "lengthMeters": 120.58812097207232, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5609944, + 10.0372775 + ], + [ + 53.5609071, + 10.0370661 + ], + [ + 53.5608868, + 10.0370212 + ], + [ + 53.5608816, + 10.0370104 + ], + [ + 53.560538, + 10.0362891 + ], + [ + 53.5603461, + 10.0358154 + ] + ] + }, + { + "osmId": "42832631", + "name": null, + "lengthMeters": 1376.9324727437488, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5130406, + 10.009146 + ], + [ + 53.512702, + 10.0090532 + ], + [ + 53.5123735, + 10.0089754 + ], + [ + 53.5119108, + 10.0088948 + ], + [ + 53.511474, + 10.0088481 + ], + [ + 53.5111234, + 10.0088301 + ], + [ + 53.5105098, + 10.0088453 + ], + [ + 53.5100604, + 10.0088725 + ], + [ + 53.5095925, + 10.0089032 + ], + [ + 53.5092731, + 10.0089156 + ], + [ + 53.5086143, + 10.0089129 + ], + [ + 53.5080657, + 10.0088909 + ], + [ + 53.5074699, + 10.0088811 + ], + [ + 53.5062993, + 10.008846 + ], + [ + 53.5058177, + 10.0088281 + ], + [ + 53.5053287, + 10.0087917 + ], + [ + 53.5050918, + 10.0087635 + ], + [ + 53.5048449, + 10.0087245 + ], + [ + 53.5046004, + 10.0086857 + ], + [ + 53.5043468, + 10.0086334 + ], + [ + 53.5041035, + 10.0085798 + ], + [ + 53.5038748, + 10.0085153 + ], + [ + 53.5035176, + 10.0084117 + ], + [ + 53.5027009, + 10.0081093 + ], + [ + 53.5019422, + 10.0078187 + ], + [ + 53.5012906, + 10.0075605 + ], + [ + 53.5007508, + 10.007402 + ] + ] + }, + { + "osmId": "42832638", + "name": null, + "lengthMeters": 610.5247365297575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4961658, + 10.0061536 + ], + [ + 53.4964191, + 10.0062358 + ], + [ + 53.4964918, + 10.0062594 + ], + [ + 53.496738, + 10.0063254 + ], + [ + 53.4974562, + 10.0065982 + ], + [ + 53.497903, + 10.0067771 + ], + [ + 53.4984645, + 10.0069459 + ], + [ + 53.499779, + 10.0073342 + ], + [ + 53.4998969, + 10.0073568 + ], + [ + 53.5004769, + 10.007456 + ], + [ + 53.5009027, + 10.0075367 + ], + [ + 53.5013089, + 10.0076342 + ], + [ + 53.5013592, + 10.0076538 + ], + [ + 53.5015701, + 10.007736 + ] + ] + }, + { + "osmId": "42833503", + "name": null, + "lengthMeters": 345.23024802279036, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993628, + 13.5429165 + ], + [ + 52.4997474, + 13.5427207 + ], + [ + 52.4999303, + 13.5426634 + ], + [ + 52.5001967, + 13.5425901 + ], + [ + 52.5004792, + 13.5425471 + ], + [ + 52.5007433, + 13.5425451 + ], + [ + 52.5010323, + 13.542598 + ], + [ + 52.5013249, + 13.5426999 + ], + [ + 52.5015366, + 13.542822 + ], + [ + 52.5017492, + 13.5429637 + ], + [ + 52.5020641, + 13.5432408 + ], + [ + 52.5023033, + 13.5434881 + ], + [ + 52.5023153, + 13.5435012 + ] + ] + }, + { + "osmId": "42836956", + "name": "Verbindungsbahn", + "lengthMeters": 75.91310078980875, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.562706, + 9.9454244 + ], + [ + 53.5627945, + 9.9448635 + ], + [ + 53.5628612, + 9.9443056 + ] + ] + }, + { + "osmId": "42836957", + "name": "Verbindungsbahn", + "lengthMeters": 148.18529592410448, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5621856, + 9.9481446 + ], + [ + 53.5622482, + 9.9478674 + ], + [ + 53.5624111, + 9.9471605 + ], + [ + 53.5624779, + 9.9468449 + ], + [ + 53.5625445, + 9.9464946 + ], + [ + 53.5626168, + 9.946024 + ] + ] + }, + { + "osmId": "42836959", + "name": "Verbindungsbahn", + "lengthMeters": 91.43057986666872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628612, + 9.9443056 + ], + [ + 53.562967, + 9.9429327 + ] + ] + }, + { + "osmId": "42836960", + "name": "Verbindungsbahn", + "lengthMeters": 84.66070897658257, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.562967, + 9.9429327 + ], + [ + 53.5630566, + 9.9420312 + ], + [ + 53.5630748, + 9.9418305 + ], + [ + 53.5630858, + 9.9416667 + ] + ] + }, + { + "osmId": "42836961", + "name": "City-S-Bahn", + "lengthMeters": 530.7617676960997, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5622237, + 9.933568 + ], + [ + 53.5625679, + 9.9340167 + ], + [ + 53.5628678, + 9.9343651 + ], + [ + 53.5631089, + 9.9346151 + ], + [ + 53.5633479, + 9.9348175 + ], + [ + 53.5635228, + 9.9349373 + ], + [ + 53.5637108, + 9.9350424 + ], + [ + 53.5638895, + 9.9351154 + ], + [ + 53.5640988, + 9.9351764 + ], + [ + 53.5643454, + 9.9352164 + ], + [ + 53.564643, + 9.9352081 + ], + [ + 53.5649478, + 9.9351528 + ], + [ + 53.5651844, + 9.9350809 + ], + [ + 53.5654084, + 9.9349997 + ], + [ + 53.5658575, + 9.9348247 + ], + [ + 53.566145, + 9.9347126 + ], + [ + 53.5664674, + 9.934607 + ], + [ + 53.5666991, + 9.9345561 + ] + ] + }, + { + "osmId": "42836962", + "name": "City-S-Bahn", + "lengthMeters": 329.45166390983854, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5594851, + 9.9323042 + ], + [ + 53.5596487, + 9.9322351 + ], + [ + 53.5598074, + 9.9321929 + ], + [ + 53.5599987, + 9.9321539 + ], + [ + 53.5602194, + 9.9321485 + ], + [ + 53.5604127, + 9.9321672 + ], + [ + 53.5606277, + 9.9322106 + ], + [ + 53.5608697, + 9.9322986 + ], + [ + 53.5610897, + 9.9324079 + ], + [ + 53.5613314, + 9.9325749 + ], + [ + 53.5615766, + 9.9327988 + ], + [ + 53.5619288, + 9.9331852 + ], + [ + 53.5622237, + 9.933568 + ] + ] + }, + { + "osmId": "42836964", + "name": "Verbindungsbahn", + "lengthMeters": 331.66222331580985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5590014, + 9.9326751 + ], + [ + 53.5591903, + 9.9325647 + ], + [ + 53.5594063, + 9.9324613 + ], + [ + 53.5596104, + 9.9323894 + ], + [ + 53.5598819, + 9.9323244 + ], + [ + 53.5601814, + 9.9323093 + ], + [ + 53.5604033, + 9.9323271 + ], + [ + 53.5606521, + 9.9323884 + ], + [ + 53.5609132, + 9.9324947 + ], + [ + 53.5611667, + 9.9326401 + ], + [ + 53.5614197, + 9.9328421 + ], + [ + 53.5616227, + 9.9330419 + ], + [ + 53.5618275, + 9.9332851 + ] + ] + }, + { + "osmId": "42836965", + "name": "Verbindungsbahn", + "lengthMeters": 116.36428336131762, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629069, + 9.936596 + ], + [ + 53.5628633, + 9.9362653 + ], + [ + 53.562805, + 9.9359259 + ], + [ + 53.5627414, + 9.9356118 + ], + [ + 53.5626603, + 9.935282 + ], + [ + 53.5625607, + 9.9349398 + ] + ] + }, + { + "osmId": "42836966", + "name": "Verbindungsbahn", + "lengthMeters": 378.73112848583673, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5618142, + 9.9333709 + ], + [ + 53.5616089, + 9.9331195 + ], + [ + 53.5613982, + 9.9329136 + ], + [ + 53.5611503, + 9.9327154 + ], + [ + 53.5608958, + 9.9325694 + ], + [ + 53.5606422, + 9.9324637 + ], + [ + 53.5604016, + 9.9324051 + ], + [ + 53.5601789, + 9.93238 + ], + [ + 53.5598839, + 9.9323934 + ], + [ + 53.5596096, + 9.9324676 + ], + [ + 53.5594178, + 9.9325362 + ], + [ + 53.5592285, + 9.9326284 + ], + [ + 53.5590126, + 9.9327404 + ], + [ + 53.5588155, + 9.9328655 + ], + [ + 53.5585997, + 9.9330223 + ] + ] + }, + { + "osmId": "42836968", + "name": "Verbindungsbahn", + "lengthMeters": 133.77911380711467, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5625607, + 9.9349398 + ], + [ + 53.5624123, + 9.9344928 + ], + [ + 53.5622324, + 9.9340721 + ], + [ + 53.5620356, + 9.9337046 + ], + [ + 53.5618142, + 9.9333709 + ] + ] + }, + { + "osmId": "42836974", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 170.9715713032851, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530533, + 9.9345004 + ], + [ + 53.5531141, + 9.9345073 + ], + [ + 53.5534379, + 9.934516 + ], + [ + 53.55356, + 9.9345229 + ], + [ + 53.5541956, + 9.9345557 + ], + [ + 53.5542763, + 9.9345595 + ], + [ + 53.5543234, + 9.9345612 + ], + [ + 53.5545902, + 9.9345732 + ] + ] + }, + { + "osmId": "42836976", + "name": "City-S-Bahn", + "lengthMeters": 258.804424868471, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5553795, + 9.9344544 + ], + [ + 53.5551292, + 9.9344994 + ], + [ + 53.5549818, + 9.9345152 + ], + [ + 53.5548539, + 9.9345154 + ], + [ + 53.5546735, + 9.9345091 + ], + [ + 53.5545945, + 9.9345045 + ], + [ + 53.5544689, + 9.9344994 + ], + [ + 53.5539493, + 9.9344755 + ], + [ + 53.5535655, + 9.9344586 + ], + [ + 53.5534439, + 9.934453 + ], + [ + 53.5533813, + 9.9344499 + ], + [ + 53.5530547, + 9.9344213 + ] + ] + }, + { + "osmId": "42836977", + "name": "City-S-Bahn", + "lengthMeters": 79.66224847462097, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530547, + 9.9344213 + ], + [ + 53.5528666, + 9.9343973 + ], + [ + 53.552703, + 9.9343815 + ], + [ + 53.5523993, + 9.9343693 + ], + [ + 53.5523392, + 9.9343664 + ] + ] + }, + { + "osmId": "42836978", + "name": "City-S-Bahn", + "lengthMeters": 180.84146431270023, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518521, + 9.9344026 + ], + [ + 53.551726, + 9.9344255 + ], + [ + 53.5515785, + 9.93446 + ], + [ + 53.5513297, + 9.9345341 + ], + [ + 53.5502824, + 9.9348962 + ], + [ + 53.5502544, + 9.9349073 + ] + ] + }, + { + "osmId": "42836980", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 191.62294673967716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5547756, + 9.9346503 + ], + [ + 53.5542584, + 9.9346268 + ], + [ + 53.5541908, + 9.9346244 + ], + [ + 53.5535556, + 9.934594 + ], + [ + 53.5534237, + 9.9345877 + ], + [ + 53.5533764, + 9.9345828 + ], + [ + 53.553053, + 9.934569 + ] + ] + }, + { + "osmId": "42836981", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 85.9209590505382, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.553053, + 9.934569 + ], + [ + 53.552826, + 9.9345828 + ], + [ + 53.5524665, + 9.9346184 + ], + [ + 53.5522822, + 9.9346529 + ] + ] + }, + { + "osmId": "42836984", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 314.0290497715047, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5594888, + 9.9282219 + ], + [ + 53.5594704, + 9.9287493 + ], + [ + 53.559451, + 9.9292335 + ], + [ + 53.5594408, + 9.9294295 + ], + [ + 53.5594298, + 9.9295886 + ], + [ + 53.5594176, + 9.9297395 + ], + [ + 53.559403, + 9.9298893 + ], + [ + 53.5593852, + 9.9300458 + ], + [ + 53.5593632, + 9.9302043 + ], + [ + 53.5593395, + 9.9303528 + ], + [ + 53.5593103, + 9.9305176 + ], + [ + 53.5592775, + 9.9306764 + ], + [ + 53.5592432, + 9.930821 + ], + [ + 53.5592139, + 9.9309376 + ], + [ + 53.5591813, + 9.9310582 + ], + [ + 53.5591472, + 9.9311714 + ], + [ + 53.5591125, + 9.9312835 + ], + [ + 53.5590676, + 9.9314181 + ], + [ + 53.5590199, + 9.9315521 + ], + [ + 53.5589729, + 9.9316714 + ], + [ + 53.5589195, + 9.9317948 + ], + [ + 53.5588551, + 9.931935 + ], + [ + 53.5587965, + 9.9320531 + ], + [ + 53.558734, + 9.9321701 + ], + [ + 53.5586701, + 9.9322845 + ], + [ + 53.5586007, + 9.9323991 + ], + [ + 53.5585212, + 9.9325197 + ] + ] + }, + { + "osmId": "42836985", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 91.8348337972038, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5585212, + 9.9325197 + ], + [ + 53.5583896, + 9.9327009 + ], + [ + 53.5582383, + 9.9328806 + ], + [ + 53.5581197, + 9.933006 + ], + [ + 53.5579124, + 9.9331914 + ], + [ + 53.5578242, + 9.9332549 + ] + ] + }, + { + "osmId": "42836987", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 170.70518266379744, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5568792, + 9.9338075 + ], + [ + 53.5560958, + 9.9342143 + ], + [ + 53.556031, + 9.9342486 + ], + [ + 53.5558068, + 9.9343665 + ], + [ + 53.5556242, + 9.9344404 + ], + [ + 53.5555159, + 9.9344866 + ], + [ + 53.5554054, + 9.9345266 + ] + ] + }, + { + "osmId": "42836989", + "name": "City-S-Bahn", + "lengthMeters": 230.19452852437513, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5579549, + 9.933084 + ], + [ + 53.5574217, + 9.9334193 + ], + [ + 53.5569874, + 9.9336664 + ], + [ + 53.5559912, + 9.934184 + ] + ] + }, + { + "osmId": "42836990", + "name": "City-S-Bahn", + "lengthMeters": 108.06979597992766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.558866, + 9.9325144 + ], + [ + 53.5579549, + 9.933084 + ] + ] + }, + { + "osmId": "42836992", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 298.34025718611207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5588179, + 9.9324421 + ], + [ + 53.5588927, + 9.9322991 + ], + [ + 53.5589634, + 9.9321537 + ], + [ + 53.5590212, + 9.9320236 + ], + [ + 53.5590849, + 9.9318708 + ], + [ + 53.5591478, + 9.9317051 + ], + [ + 53.5591939, + 9.9315697 + ], + [ + 53.5592352, + 9.9314393 + ], + [ + 53.5592847, + 9.9312705 + ], + [ + 53.5593321, + 9.9310884 + ], + [ + 53.559376, + 9.9308978 + ], + [ + 53.559416, + 9.9306919 + ], + [ + 53.5594485, + 9.930505 + ], + [ + 53.5594726, + 9.9303368 + ], + [ + 53.5594936, + 9.9301631 + ], + [ + 53.5595083, + 9.9300028 + ], + [ + 53.5595196, + 9.9298294 + ], + [ + 53.5595286, + 9.929664 + ], + [ + 53.5595377, + 9.9294744 + ], + [ + 53.5595455, + 9.9292882 + ], + [ + 53.5595549, + 9.929064 + ], + [ + 53.5595671, + 9.9287376 + ], + [ + 53.559578, + 9.9283662 + ], + [ + 53.5595806, + 9.9282338 + ] + ] + }, + { + "osmId": "42836997", + "name": "Verbindungsbahn", + "lengthMeters": 100.38059401485229, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5581513, + 9.9331865 + ], + [ + 53.5590014, + 9.9326751 + ] + ] + }, + { + "osmId": "42836998", + "name": "Verbindungsbahn", + "lengthMeters": 78.80003269209722, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5585997, + 9.9330223 + ], + [ + 53.5579362, + 9.9334414 + ] + ] + }, + { + "osmId": "42836999", + "name": "Verbindungsbahn", + "lengthMeters": 253.60071056529293, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5579362, + 9.9334414 + ], + [ + 53.5575007, + 9.9337971 + ], + [ + 53.5571776, + 9.9340118 + ], + [ + 53.5569625, + 9.9341499 + ], + [ + 53.5566719, + 9.9342971 + ], + [ + 53.5565863, + 9.9343442 + ], + [ + 53.5562603, + 9.9345107 + ], + [ + 53.5560284, + 9.9345948 + ], + [ + 53.5557833, + 9.9346544 + ] + ] + }, + { + "osmId": "42837000", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 92.97630892174496, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557833, + 9.9346544 + ], + [ + 53.5560339, + 9.9346116 + ], + [ + 53.5562659, + 9.9345397 + ], + [ + 53.5562772, + 9.9345353 + ], + [ + 53.5566054, + 9.9344082 + ] + ] + }, + { + "osmId": "42837003", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 140.00196190786363, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5572229, + 9.9340873 + ], + [ + 53.5572527, + 9.9340704 + ], + [ + 53.5575221, + 9.9338855 + ], + [ + 53.5577079, + 9.9337414 + ], + [ + 53.5577845, + 9.9336791 + ], + [ + 53.5580639, + 9.9334248 + ], + [ + 53.5583439, + 9.9331326 + ] + ] + }, + { + "osmId": "42837004", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 177.3475184426927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518722, + 9.9347344 + ], + [ + 53.5517237, + 9.9347675 + ], + [ + 53.5513228, + 9.9348566 + ], + [ + 53.5503217, + 9.9350794 + ], + [ + 53.5503074, + 9.9350843 + ], + [ + 53.5502914, + 9.9350899 + ] + ] + }, + { + "osmId": "42838498", + "name": "Pinneberger S-Bahn", + "lengthMeters": 100.71668224243916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5635075, + 9.9390419 + ], + [ + 53.5635512, + 9.9388916 + ], + [ + 53.5636184, + 9.9386949 + ], + [ + 53.5636701, + 9.9385389 + ], + [ + 53.5637943, + 9.9382114 + ], + [ + 53.5639905, + 9.9377548 + ] + ] + }, + { + "osmId": "42838499", + "name": "Pinneberger S-Bahn", + "lengthMeters": 375.7800396610535, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639905, + 9.9377548 + ], + [ + 53.5641251, + 9.9374485 + ], + [ + 53.5642712, + 9.9371426 + ], + [ + 53.5645659, + 9.9365731 + ], + [ + 53.5649197, + 9.9360021 + ], + [ + 53.5650808, + 9.9357927 + ], + [ + 53.5653546, + 9.9354767 + ], + [ + 53.5656337, + 9.9352179 + ], + [ + 53.5659178, + 9.9350027 + ], + [ + 53.5662182, + 9.9348356 + ], + [ + 53.5665062, + 9.9347095 + ], + [ + 53.5667048, + 9.9346494 + ] + ] + }, + { + "osmId": "42838500", + "name": "Pinneberger S-Bahn", + "lengthMeters": 147.56504813190168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5621856, + 9.9481446 + ], + [ + 53.5622522, + 9.947813 + ], + [ + 53.5623191, + 9.9474574 + ], + [ + 53.5624307, + 9.9467942 + ], + [ + 53.5625038, + 9.9463559 + ], + [ + 53.5625573, + 9.9460004 + ] + ] + }, + { + "osmId": "42921509", + "name": null, + "lengthMeters": 526.9256499089628, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639431, + 9.8360738 + ], + [ + 53.5638419, + 9.836397 + ], + [ + 53.5636721, + 9.8369348 + ], + [ + 53.5636225, + 9.8370774 + ], + [ + 53.5633568, + 9.8378246 + ], + [ + 53.5629107, + 9.8389567 + ], + [ + 53.5624358, + 9.8399498 + ], + [ + 53.5617561, + 9.8411791 + ], + [ + 53.5615936, + 9.8414859 + ], + [ + 53.5610959, + 9.842405 + ] + ] + }, + { + "osmId": "42925840", + "name": null, + "lengthMeters": 317.03131464038296, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5610169, + 9.8425491 + ], + [ + 53.5609773, + 9.8426271 + ], + [ + 53.5605492, + 9.8434168 + ], + [ + 53.560397, + 9.8437026 + ], + [ + 53.5601286, + 9.8443322 + ], + [ + 53.5598352, + 9.8450316 + ], + [ + 53.55933, + 9.8464024 + ] + ] + }, + { + "osmId": "42937599", + "name": "Vogelfluglinie", + "lengthMeters": 195.4916320149525, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6650414, + 10.2256013 + ], + [ + 53.6648422, + 10.22507 + ], + [ + 53.6648014, + 10.2249668 + ], + [ + 53.6645837, + 10.2244162 + ], + [ + 53.6644952, + 10.2241938 + ], + [ + 53.6640706, + 10.2231277 + ] + ] + }, + { + "osmId": "42937810", + "name": null, + "lengthMeters": 303.988480608182, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6488383, + 10.1616788 + ], + [ + 53.6482798, + 10.1610776 + ], + [ + 53.6481563, + 10.1609442 + ], + [ + 53.6480298, + 10.1608107 + ], + [ + 53.6478991, + 10.1606881 + ], + [ + 53.647769, + 10.1605715 + ], + [ + 53.6471427, + 10.1600436 + ], + [ + 53.6469947, + 10.1599295 + ], + [ + 53.6468809, + 10.1598418 + ], + [ + 53.6466347, + 10.1596752 + ], + [ + 53.6464199, + 10.15956 + ] + ] + }, + { + "osmId": "42938019", + "name": "Vogelfluglinie", + "lengthMeters": 605.9772697926662, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6068634, + 10.1572108 + ], + [ + 53.6068077, + 10.1571341 + ], + [ + 53.6064461, + 10.1566565 + ], + [ + 53.6059931, + 10.1560228 + ], + [ + 53.6059613, + 10.1559787 + ], + [ + 53.6059177, + 10.155918 + ], + [ + 53.6049943, + 10.1545392 + ], + [ + 53.6048692, + 10.1543527 + ], + [ + 53.6048383, + 10.1543066 + ], + [ + 53.6045359, + 10.153855 + ], + [ + 53.6044177, + 10.1536786 + ], + [ + 53.6042956, + 10.1534963 + ], + [ + 53.6038655, + 10.152855 + ], + [ + 53.6036079, + 10.152431 + ], + [ + 53.6029794, + 10.1513471 + ], + [ + 53.6028556, + 10.1511364 + ], + [ + 53.6028166, + 10.1510702 + ] + ] + }, + { + "osmId": "42938020", + "name": "Vogelfluglinie", + "lengthMeters": 1011.3561697449599, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5963953, + 10.1402086 + ], + [ + 53.5970476, + 10.1413187 + ], + [ + 53.5982087, + 10.143312 + ], + [ + 53.5994529, + 10.1454307 + ], + [ + 53.6004663, + 10.1471591 + ], + [ + 53.600787, + 10.1477122 + ], + [ + 53.6014754, + 10.1489131 + ], + [ + 53.6020448, + 10.1498861 + ], + [ + 53.6024301, + 10.1505245 + ], + [ + 53.6025598, + 10.1507377 + ], + [ + 53.6026008, + 10.1508054 + ], + [ + 53.6027867, + 10.1511128 + ] + ] + }, + { + "osmId": "42949442", + "name": null, + "lengthMeters": 94.63495503201617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6529724, + 10.1879962 + ], + [ + 53.6529646, + 10.1875518 + ], + [ + 53.6529599, + 10.1870573 + ], + [ + 53.6529747, + 10.1865611 + ] + ] + }, + { + "osmId": "42949443", + "name": null, + "lengthMeters": 500.879478694068, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6530828, + 10.1825979 + ], + [ + 53.6531083, + 10.1821909 + ], + [ + 53.6531384, + 10.1817802 + ], + [ + 53.6531892, + 10.181366 + ], + [ + 53.6532607, + 10.1809 + ], + [ + 53.6542201, + 10.1752545 + ] + ] + }, + { + "osmId": "42969701", + "name": null, + "lengthMeters": 153.48680488124688, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6515304, + 10.1635934 + ], + [ + 53.6512245, + 10.1635069 + ], + [ + 53.6510042, + 10.1634198 + ], + [ + 53.650791, + 10.1633195 + ], + [ + 53.650637, + 10.163231 + ], + [ + 53.6501994, + 10.1629924 + ] + ] + }, + { + "osmId": "42975172", + "name": null, + "lengthMeters": 92.18125857522266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5719183, + 13.5747624 + ], + [ + 52.5719815, + 13.5747468 + ], + [ + 52.5720506, + 13.5747351 + ], + [ + 52.5721132, + 13.5747268 + ], + [ + 52.5721635, + 13.5747249 + ], + [ + 52.5722314, + 13.5747292 + ], + [ + 52.5723011, + 13.5747356 + ], + [ + 52.572374, + 13.5747508 + ], + [ + 52.57249, + 13.5747706 + ], + [ + 52.5727427, + 13.5748224 + ] + ] + }, + { + "osmId": "42977468", + "name": null, + "lengthMeters": 174.1952362206599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6550407, + 10.1675331 + ], + [ + 53.654963, + 10.1671823 + ], + [ + 53.6548501, + 10.1667917 + ], + [ + 53.6547069, + 10.1663903 + ], + [ + 53.6545767, + 10.1660836 + ], + [ + 53.6543733, + 10.165642 + ], + [ + 53.6542974, + 10.1655063 + ], + [ + 53.654201, + 10.1653263 + ] + ] + }, + { + "osmId": "42977470", + "name": null, + "lengthMeters": 103.75051520323481, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6526973, + 10.1637984 + ], + [ + 53.6524151, + 10.1637028 + ], + [ + 53.6521932, + 10.1636476 + ], + [ + 53.6519267, + 10.1635832 + ], + [ + 53.6517764, + 10.1635485 + ] + ] + }, + { + "osmId": "42977471", + "name": null, + "lengthMeters": 304.21713482687016, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6544359, + 10.1634105 + ], + [ + 53.6541468, + 10.163594 + ], + [ + 53.6538446, + 10.1637421 + ], + [ + 53.653717, + 10.1637901 + ], + [ + 53.6535761, + 10.1638192 + ], + [ + 53.6533567, + 10.1638644 + ], + [ + 53.653165, + 10.1638902 + ], + [ + 53.6529926, + 10.1638941 + ], + [ + 53.652739, + 10.1638844 + ], + [ + 53.6524454, + 10.1638378 + ], + [ + 53.6522979, + 10.1638124 + ], + [ + 53.6521138, + 10.1637597 + ], + [ + 53.6519112, + 10.1636991 + ], + [ + 53.6517479, + 10.1636647 + ] + ] + }, + { + "osmId": "42989386", + "name": null, + "lengthMeters": 294.5892342020983, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1225116, + 11.6126499 + ], + [ + 48.1225489, + 11.6122294 + ], + [ + 48.1225608, + 11.6120458 + ], + [ + 48.1226002, + 11.6117176 + ], + [ + 48.1226533, + 11.611375 + ], + [ + 48.1226719, + 11.6112936 + ], + [ + 48.1227811, + 11.6108914 + ], + [ + 48.1229321, + 11.6104198 + ], + [ + 48.1230485, + 11.6099083 + ], + [ + 48.1230576, + 11.60977 + ], + [ + 48.1230593, + 11.6095991 + ], + [ + 48.1230902, + 11.6088191 + ] + ] + }, + { + "osmId": "42989450", + "name": null, + "lengthMeters": 306.95966505263743, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1249416, + 11.605293 + ], + [ + 48.1247616, + 11.6054828 + ], + [ + 48.1246164, + 11.6056377 + ], + [ + 48.1245848, + 11.6056726 + ], + [ + 48.1245139, + 11.6057508 + ], + [ + 48.1241243, + 11.6061741 + ], + [ + 48.1239145, + 11.6064057 + ], + [ + 48.1235764, + 11.6067732 + ], + [ + 48.1234448, + 11.6069698 + ], + [ + 48.1233496, + 11.6071717 + ], + [ + 48.1232769, + 11.6073394 + ], + [ + 48.1232204, + 11.6075034 + ], + [ + 48.123163, + 11.6077532 + ], + [ + 48.1231236, + 11.6080612 + ], + [ + 48.1231081, + 11.6081819 + ] + ] + }, + { + "osmId": "42989502", + "name": null, + "lengthMeters": 166.3173607824839, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1229321, + 11.6104198 + ], + [ + 48.1230273, + 11.6101581 + ], + [ + 48.1230786, + 11.6100154 + ], + [ + 48.1231338, + 11.6098731 + ], + [ + 48.123283, + 11.6096761 + ], + [ + 48.123963, + 11.6088397 + ] + ] + }, + { + "osmId": "42989634", + "name": null, + "lengthMeters": 136.7913357345079, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1229338, + 11.607766 + ], + [ + 48.123015, + 11.6089634 + ], + [ + 48.1230436, + 11.6093016 + ], + [ + 48.1230525, + 11.6094712 + ], + [ + 48.1230593, + 11.6095991 + ] + ] + }, + { + "osmId": "43011610", + "name": "Berliner Ringbahn", + "lengthMeters": 531.1413163801533, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240018, + 13.4649773 + ], + [ + 52.5239987, + 13.4649939 + ], + [ + 52.5239703, + 13.4651468 + ], + [ + 52.5238676, + 13.4656407 + ], + [ + 52.5237846, + 13.4659845 + ], + [ + 52.5237053, + 13.4663005 + ], + [ + 52.5235919, + 13.4667451 + ], + [ + 52.523585, + 13.466772 + ], + [ + 52.5235454, + 13.4669274 + ], + [ + 52.523458, + 13.4672337 + ], + [ + 52.5233629, + 13.4675328 + ], + [ + 52.5232547, + 13.4678378 + ], + [ + 52.5231387, + 13.4681373 + ], + [ + 52.522965, + 13.4685347 + ], + [ + 52.522872, + 13.4687289 + ], + [ + 52.5227768, + 13.4689175 + ], + [ + 52.5226625, + 13.469128 + ], + [ + 52.5225215, + 13.4693641 + ], + [ + 52.5223855, + 13.4695756 + ], + [ + 52.5222472, + 13.4697797 + ], + [ + 52.5220574, + 13.4700323 + ], + [ + 52.521861, + 13.4702704 + ], + [ + 52.5217174, + 13.470425 + ], + [ + 52.5216132, + 13.470533 + ], + [ + 52.5216045, + 13.4705415 + ], + [ + 52.521381, + 13.4707692 + ], + [ + 52.5211451, + 13.470961 + ] + ] + }, + { + "osmId": "43011626", + "name": "Stettiner Bahn", + "lengthMeters": 200.13872426727298, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482964, + 13.3894656 + ], + [ + 52.5483567, + 13.3906025 + ], + [ + 52.548424, + 13.391736 + ], + [ + 52.5484267, + 13.3917847 + ], + [ + 52.5484634, + 13.3924127 + ] + ] + }, + { + "osmId": "43011633", + "name": "Stettiner Bahn", + "lengthMeters": 608.6233839890199, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485933, + 13.3945881 + ], + [ + 52.5486929, + 13.3954278 + ], + [ + 52.5487634, + 13.3958559 + ], + [ + 52.5488446, + 13.3962805 + ], + [ + 52.5490465, + 13.396988 + ], + [ + 52.5491904, + 13.3973624 + ], + [ + 52.5495184, + 13.3979952 + ], + [ + 52.5498414, + 13.3984358 + ], + [ + 52.5498632, + 13.3984592 + ], + [ + 52.5501229, + 13.3987377 + ], + [ + 52.5504801, + 13.3990072 + ], + [ + 52.5508495, + 13.3991928 + ], + [ + 52.5512091, + 13.3992855 + ], + [ + 52.5512698, + 13.3993011 + ], + [ + 52.55153, + 13.3993168 + ], + [ + 52.5518024, + 13.3992928 + ], + [ + 52.5520824, + 13.3992334 + ], + [ + 52.552148, + 13.3992195 + ], + [ + 52.5524652, + 13.3991421 + ] + ] + }, + { + "osmId": "43103820", + "name": null, + "lengthMeters": 325.32307154873297, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4974933, + 13.2886531 + ], + [ + 52.4975985, + 13.2885195 + ], + [ + 52.4977059, + 13.2883994 + ], + [ + 52.4978756, + 13.2882322 + ], + [ + 52.4979909, + 13.2881339 + ], + [ + 52.4981033, + 13.2880447 + ], + [ + 52.4982374, + 13.2879555 + ], + [ + 52.4983122, + 13.2879097 + ], + [ + 52.4983831, + 13.2878731 + ], + [ + 52.4984819, + 13.2878258 + ], + [ + 52.498581, + 13.2877863 + ], + [ + 52.4988072, + 13.287721 + ], + [ + 52.4990565, + 13.2876875 + ], + [ + 52.4993552, + 13.2877034 + ], + [ + 52.4995072, + 13.2877325 + ], + [ + 52.4996709, + 13.2877783 + ], + [ + 52.4998225, + 13.2878391 + ], + [ + 52.4999735, + 13.2879155 + ], + [ + 52.5001052, + 13.287995 + ], + [ + 52.5002471, + 13.2880948 + ] + ] + }, + { + "osmId": "43114812", + "name": null, + "lengthMeters": 578.2782542939206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.545671, + 9.9720136 + ], + [ + 53.5455716, + 9.9724354 + ], + [ + 53.5453934, + 9.9730317 + ], + [ + 53.5449339, + 9.9744366 + ], + [ + 53.5445143, + 9.9757396 + ], + [ + 53.5442249, + 9.9766601 + ], + [ + 53.544216, + 9.9766898 + ], + [ + 53.5442049, + 9.9767305 + ], + [ + 53.5441889, + 9.9767984 + ], + [ + 53.5441748, + 9.9768717 + ], + [ + 53.54416, + 9.9769741 + ], + [ + 53.5441499, + 9.9770774 + ], + [ + 53.5441441, + 9.9771798 + ], + [ + 53.5441413, + 9.9774284 + ], + [ + 53.5441542, + 9.9779906 + ], + [ + 53.5441797, + 9.9785519 + ], + [ + 53.5442486, + 9.9799498 + ], + [ + 53.5442554, + 9.9801354 + ] + ] + }, + { + "osmId": "43114822", + "name": null, + "lengthMeters": 304.5692044269144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5462591, + 9.9734142 + ], + [ + 53.5462336, + 9.9731008 + ], + [ + 53.5462209, + 9.9728162 + ], + [ + 53.546218, + 9.9723757 + ], + [ + 53.5462205, + 9.9723156 + ], + [ + 53.5462383, + 9.9718901 + ], + [ + 53.5462514, + 9.9716885 + ], + [ + 53.5462653, + 9.9714548 + ], + [ + 53.5463058, + 9.9710608 + ], + [ + 53.546423, + 9.9702626 + ], + [ + 53.5465686, + 9.9694782 + ], + [ + 53.5465972, + 9.9693465 + ], + [ + 53.5466842, + 9.9689114 + ] + ] + }, + { + "osmId": "43114823", + "name": null, + "lengthMeters": 586.9087929649129, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5488219, + 9.9809288 + ], + [ + 53.5486715, + 9.980617 + ], + [ + 53.5485311, + 9.9803556 + ], + [ + 53.5482222, + 9.9798383 + ], + [ + 53.5479523, + 9.9794008 + ], + [ + 53.547727, + 9.9790353 + ], + [ + 53.5475721, + 9.9787574 + ], + [ + 53.5474124, + 9.978448 + ], + [ + 53.5472514, + 9.9780917 + ], + [ + 53.547097, + 9.9777022 + ], + [ + 53.5469822, + 9.9773456 + ], + [ + 53.5468639, + 9.976939 + ], + [ + 53.5467551, + 9.976452 + ], + [ + 53.5466717, + 9.9760177 + ], + [ + 53.5464127, + 9.974577 + ], + [ + 53.5463951, + 9.9744601 + ], + [ + 53.5463141, + 9.9739119 + ], + [ + 53.5462591, + 9.9734142 + ] + ] + }, + { + "osmId": "43121121", + "name": null, + "lengthMeters": 438.76204299685776, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6312969, + 9.837202 + ], + [ + 53.632288, + 9.8354409 + ], + [ + 53.6328801, + 9.8343017 + ], + [ + 53.6334283, + 9.8332162 + ], + [ + 53.6339279, + 9.8322449 + ] + ] + }, + { + "osmId": "43121123", + "name": null, + "lengthMeters": 2976.7327804212678, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6340549, + 9.8319931 + ], + [ + 53.6351867, + 9.8297862 + ], + [ + 53.6387373, + 9.8228492 + ], + [ + 53.6394164, + 9.8215295 + ], + [ + 53.6403051, + 9.8198278 + ], + [ + 53.6408533, + 9.8188719 + ], + [ + 53.6417967, + 9.8174446 + ], + [ + 53.6424145, + 9.8165248 + ], + [ + 53.6433089, + 9.815193 + ], + [ + 53.6442779, + 9.8137503 + ], + [ + 53.646985, + 9.8097141 + ], + [ + 53.6500807, + 9.8050983 + ], + [ + 53.6510046, + 9.8036915 + ], + [ + 53.6516086, + 9.8028161 + ], + [ + 53.6516528, + 9.802752 + ], + [ + 53.6520179, + 9.8022071 + ], + [ + 53.6526063, + 9.8013387 + ], + [ + 53.6528475, + 9.8009978 + ], + [ + 53.6530342, + 9.8007276 + ], + [ + 53.6531716, + 9.8005113 + ] + ] + }, + { + "osmId": "43121125", + "name": null, + "lengthMeters": 1821.5831108047025, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.620417, + 9.8586268 + ], + [ + 53.6211619, + 9.8571852 + ], + [ + 53.6215294, + 9.8564842 + ], + [ + 53.6219539, + 9.8556497 + ], + [ + 53.6221688, + 9.8552352 + ], + [ + 53.6223049, + 9.8549603 + ], + [ + 53.6227687, + 9.8540583 + ], + [ + 53.6237123, + 9.8521973 + ], + [ + 53.6238148, + 9.8519946 + ], + [ + 53.6238186, + 9.8519872 + ], + [ + 53.626402, + 9.8469105 + ], + [ + 53.6278702, + 9.84394 + ], + [ + 53.6295163, + 9.8406337 + ], + [ + 53.6296496, + 9.8403558 + ], + [ + 53.6302875, + 9.8390685 + ], + [ + 53.6310539, + 9.8376209 + ] + ] + }, + { + "osmId": "43121127", + "name": null, + "lengthMeters": 333.20362487682235, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6597167, + 9.7909496 + ], + [ + 53.6602071, + 9.7902709 + ], + [ + 53.6606909, + 9.7895668 + ], + [ + 53.6610009, + 9.7891181 + ], + [ + 53.6611582, + 9.7888827 + ], + [ + 53.6617029, + 9.7880486 + ], + [ + 53.661973, + 9.7876235 + ] + ] + }, + { + "osmId": "43121128", + "name": null, + "lengthMeters": 6267.605015507213, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6620459, + 9.78752 + ], + [ + 53.6625236, + 9.7868147 + ], + [ + 53.6630117, + 9.786108 + ], + [ + 53.6647744, + 9.7835348 + ], + [ + 53.6653858, + 9.7823901 + ], + [ + 53.6660005, + 9.781239 + ], + [ + 53.6673095, + 9.7783037 + ], + [ + 53.6677221, + 9.7773784 + ], + [ + 53.6688635, + 9.7748189 + ], + [ + 53.6717632, + 9.7683674 + ], + [ + 53.6727294, + 9.766116 + ], + [ + 53.6735017, + 9.7643338 + ], + [ + 53.6752841, + 9.7602728 + ], + [ + 53.6759929, + 9.7586651 + ], + [ + 53.6766454, + 9.7571853 + ], + [ + 53.676841, + 9.7567527 + ], + [ + 53.6780342, + 9.7541132 + ], + [ + 53.6785944, + 9.7528273 + ], + [ + 53.6795911, + 9.7505372 + ], + [ + 53.6820947, + 9.7447991 + ], + [ + 53.6823944, + 9.744165 + ], + [ + 53.6832867, + 9.7422771 + ], + [ + 53.68514, + 9.7380329 + ], + [ + 53.685905, + 9.7362875 + ], + [ + 53.6877277, + 9.7320672 + ], + [ + 53.6880817, + 9.7312572 + ], + [ + 53.6891538, + 9.7288282 + ], + [ + 53.6897749, + 9.7273935 + ], + [ + 53.6902143, + 9.7264301 + ], + [ + 53.6902991, + 9.7262503 + ], + [ + 53.6907248, + 9.7253285 + ], + [ + 53.6907341, + 9.7253076 + ], + [ + 53.692176, + 9.7222935 + ], + [ + 53.6923041, + 9.7220446 + ], + [ + 53.6927653, + 9.7211485 + ], + [ + 53.6933915, + 9.7200426 + ], + [ + 53.6940258, + 9.7191002 + ], + [ + 53.6942433, + 9.7187852 + ], + [ + 53.6946041, + 9.7182884 + ], + [ + 53.6952166, + 9.7174989 + ], + [ + 53.695965, + 9.7166143 + ], + [ + 53.696137, + 9.7164118 + ], + [ + 53.6964498, + 9.7160434 + ], + [ + 53.6969445, + 9.7154649 + ], + [ + 53.6970338, + 9.7153631 + ], + [ + 53.6977209, + 9.714543 + ], + [ + 53.6977688, + 9.7144849 + ] + ] + }, + { + "osmId": "43178580", + "name": null, + "lengthMeters": 400.776560618796, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5575909, + 10.027935 + ], + [ + 53.5578287, + 10.0281631 + ], + [ + 53.5579699, + 10.0282791 + ], + [ + 53.5580937, + 10.028369 + ], + [ + 53.5582376, + 10.0284603 + ], + [ + 53.558451, + 10.0285822 + ], + [ + 53.558591, + 10.0286451 + ], + [ + 53.5586978, + 10.0286868 + ], + [ + 53.5589436, + 10.0287705 + ], + [ + 53.5591602, + 10.0288231 + ], + [ + 53.5593934, + 10.0288491 + ], + [ + 53.5596712, + 10.028862 + ], + [ + 53.559988, + 10.0288172 + ], + [ + 53.5602534, + 10.0287682 + ], + [ + 53.5603521, + 10.0287501 + ], + [ + 53.5605677, + 10.0286761 + ], + [ + 53.5610763, + 10.0284978 + ] + ] + }, + { + "osmId": "43178581", + "name": null, + "lengthMeters": 403.7268564930288, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5575739, + 10.0279751 + ], + [ + 53.5577933, + 10.0281866 + ], + [ + 53.5579575, + 10.0283232 + ], + [ + 53.5580862, + 10.0284196 + ], + [ + 53.558243, + 10.0285236 + ], + [ + 53.5584274, + 10.0286291 + ], + [ + 53.5585986, + 10.0287034 + ], + [ + 53.5586907, + 10.0287461 + ], + [ + 53.5589385, + 10.0288304 + ], + [ + 53.5591578, + 10.0288834 + ], + [ + 53.5591973, + 10.0288871 + ], + [ + 53.5593924, + 10.0289096 + ], + [ + 53.5596702, + 10.0289225 + ], + [ + 53.5599854, + 10.0288741 + ], + [ + 53.5602512, + 10.0288242 + ], + [ + 53.5603639, + 10.0287971 + ], + [ + 53.5605795, + 10.0287285 + ], + [ + 53.561083, + 10.0285566 + ] + ] + }, + { + "osmId": "43178582", + "name": null, + "lengthMeters": 340.2827177703348, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5549481, + 10.0254627 + ], + [ + 53.5549716, + 10.0254856 + ], + [ + 53.5555519, + 10.025765 + ], + [ + 53.5557818, + 10.0259033 + ], + [ + 53.5559797, + 10.0260375 + ], + [ + 53.5561392, + 10.0261734 + ], + [ + 53.556341, + 10.0263611 + ], + [ + 53.5564847, + 10.0265099 + ], + [ + 53.5566675, + 10.0267334 + ], + [ + 53.5569049, + 10.0270541 + ], + [ + 53.5571052, + 10.0273373 + ], + [ + 53.5572363, + 10.0275184 + ], + [ + 53.5574019, + 10.0277227 + ], + [ + 53.5575909, + 10.027935 + ] + ] + }, + { + "osmId": "43178583", + "name": null, + "lengthMeters": 457.9880598330911, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5539479, + 10.0249205 + ], + [ + 53.5540875, + 10.0250894 + ], + [ + 53.5541641, + 10.025168 + ], + [ + 53.5542586, + 10.0252531 + ], + [ + 53.5543536, + 10.0253306 + ], + [ + 53.5544132, + 10.0253709 + ], + [ + 53.5544729, + 10.0254058 + ], + [ + 53.5545907, + 10.0254716 + ], + [ + 53.5547751, + 10.025549 + ], + [ + 53.5551339, + 10.0256572 + ], + [ + 53.5553571, + 10.0257379 + ], + [ + 53.5555564, + 10.0258333 + ], + [ + 53.5557599, + 10.025948 + ], + [ + 53.5559347, + 10.026068 + ], + [ + 53.5559429, + 10.0260732 + ], + [ + 53.5561237, + 10.0262146 + ], + [ + 53.5563232, + 10.0264009 + ], + [ + 53.5564687, + 10.0265663 + ], + [ + 53.5566478, + 10.0267666 + ], + [ + 53.5568808, + 10.0270902 + ], + [ + 53.5570891, + 10.0273789 + ], + [ + 53.5572215, + 10.0275588 + ], + [ + 53.5573871, + 10.0277619 + ], + [ + 53.5575523, + 10.0279515 + ], + [ + 53.5575739, + 10.0279751 + ] + ] + }, + { + "osmId": "43178584", + "name": null, + "lengthMeters": 528.0012571063137, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5529766, + 10.0162597 + ], + [ + 53.5531032, + 10.0164205 + ], + [ + 53.5532241, + 10.016545 + ], + [ + 53.5533211, + 10.0166181 + ], + [ + 53.5534124, + 10.0166825 + ], + [ + 53.5535261, + 10.0167489 + ], + [ + 53.5536543, + 10.0167926 + ], + [ + 53.5537334, + 10.016816 + ], + [ + 53.5538512, + 10.016842 + ], + [ + 53.554142, + 10.0168957 + ], + [ + 53.5545268, + 10.0169722 + ], + [ + 53.5548761, + 10.0170369 + ], + [ + 53.5551099, + 10.0170864 + ], + [ + 53.5553066, + 10.0171691 + ], + [ + 53.5554692, + 10.0172715 + ], + [ + 53.5554947, + 10.0172924 + ], + [ + 53.555638, + 10.0174097 + ], + [ + 53.5557574, + 10.0175397 + ], + [ + 53.5559038, + 10.0177324 + ], + [ + 53.5559719, + 10.0178314 + ], + [ + 53.5560366, + 10.0179353 + ], + [ + 53.5560667, + 10.0179849 + ], + [ + 53.5560944, + 10.0180372 + ], + [ + 53.5561456, + 10.0181504 + ], + [ + 53.5567051, + 10.0193877 + ], + [ + 53.5569244, + 10.0198726 + ] + ] + }, + { + "osmId": "43178586", + "name": null, + "lengthMeters": 215.79300523231154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537137, + 10.0242161 + ], + [ + 53.5535463, + 10.0237308 + ], + [ + 53.5535199, + 10.023633 + ], + [ + 53.5534247, + 10.0232322 + ], + [ + 53.5532949, + 10.0225977 + ], + [ + 53.5531825, + 10.0219262 + ], + [ + 53.5531526, + 10.0216941 + ], + [ + 53.5530798, + 10.0211474 + ] + ] + }, + { + "osmId": "43178587", + "name": null, + "lengthMeters": 935.0686156201748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5558572, + 10.0404128 + ], + [ + 53.5558331, + 10.0400478 + ], + [ + 53.555804, + 10.0397539 + ], + [ + 53.5556307, + 10.0383113 + ], + [ + 53.5554775, + 10.0371503 + ], + [ + 53.5552954, + 10.0357266 + ], + [ + 53.5551131, + 10.0343425 + ], + [ + 53.5550054, + 10.0335078 + ], + [ + 53.5549506, + 10.0330488 + ], + [ + 53.5548646, + 10.032406 + ], + [ + 53.5547597, + 10.0315959 + ], + [ + 53.5545724, + 10.0301451 + ], + [ + 53.5545143, + 10.0296775 + ], + [ + 53.5544718, + 10.0292085 + ], + [ + 53.5544566, + 10.0288809 + ], + [ + 53.5544441, + 10.0282036 + ], + [ + 53.554436, + 10.0276192 + ], + [ + 53.5544266, + 10.0271585 + ], + [ + 53.5544076, + 10.0267206 + ], + [ + 53.5543881, + 10.0265056 + ] + ] + }, + { + "osmId": "43178591", + "name": null, + "lengthMeters": 199.65727787136544, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5549481, + 10.0254627 + ], + [ + 53.5547895, + 10.0253425 + ], + [ + 53.5545674, + 10.0251521 + ], + [ + 53.5542849, + 10.0248821 + ], + [ + 53.554152, + 10.0247315 + ], + [ + 53.5540397, + 10.0245414 + ], + [ + 53.5538997, + 10.0242769 + ], + [ + 53.5538166, + 10.0240796 + ], + [ + 53.5537233, + 10.0238377 + ], + [ + 53.5536472, + 10.0236395 + ], + [ + 53.5536223, + 10.0235432 + ] + ] + }, + { + "osmId": "43178592", + "name": null, + "lengthMeters": 138.319612390004, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5528273, + 10.0197029 + ], + [ + 53.5528251, + 10.020027 + ], + [ + 53.5528485, + 10.0204188 + ], + [ + 53.5529369, + 10.0210799 + ], + [ + 53.5530149, + 10.0217658 + ] + ] + }, + { + "osmId": "43178593", + "name": null, + "lengthMeters": 77.16832454510748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5534975, + 10.0240405 + ], + [ + 53.5536136, + 10.0243168 + ], + [ + 53.5537849, + 10.0246751 + ], + [ + 53.5538834, + 10.0248464 + ], + [ + 53.5539479, + 10.0249205 + ] + ] + }, + { + "osmId": "43178594", + "name": null, + "lengthMeters": 160.49649134575273, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530149, + 10.0217658 + ], + [ + 53.5530359, + 10.0219538 + ], + [ + 53.5531001, + 10.0223896 + ], + [ + 53.5531503, + 10.0226875 + ], + [ + 53.5532204, + 10.0230766 + ], + [ + 53.5533005, + 10.0234059 + ], + [ + 53.5533952, + 10.0237537 + ], + [ + 53.5534452, + 10.0239028 + ], + [ + 53.5534975, + 10.0240405 + ] + ] + }, + { + "osmId": "43178634", + "name": null, + "lengthMeters": 169.06375679599148, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6060227, + 10.116537 + ], + [ + 53.6057017, + 10.1162187 + ], + [ + 53.6052354, + 10.1156919 + ], + [ + 53.6047563, + 10.1151214 + ] + ] + }, + { + "osmId": "43178636", + "name": null, + "lengthMeters": 228.41950751869513, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6155733, + 10.1260223 + ], + [ + 53.6151532, + 10.1254013 + ], + [ + 53.6147931, + 10.1249218 + ], + [ + 53.6139607, + 10.1238804 + ] + ] + }, + { + "osmId": "43179776", + "name": null, + "lengthMeters": 577.4587749511086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6137038, + 10.1235568 + ], + [ + 53.6131805, + 10.1229008 + ], + [ + 53.6125655, + 10.1221371 + ], + [ + 53.6122101, + 10.1217229 + ], + [ + 53.6118567, + 10.1213485 + ], + [ + 53.6101573, + 10.1197413 + ], + [ + 53.6099455, + 10.119558 + ], + [ + 53.6097251, + 10.1193918 + ], + [ + 53.6095031, + 10.1192583 + ], + [ + 53.609249, + 10.1191384 + ] + ] + }, + { + "osmId": "43179785", + "name": null, + "lengthMeters": 88.46065428490058, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6071572, + 10.1177649 + ], + [ + 53.6078502, + 10.1184234 + ] + ] + }, + { + "osmId": "43180316", + "name": null, + "lengthMeters": 155.79341106826092, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.609249, + 10.1191384 + ], + [ + 53.6088783, + 10.1189668 + ], + [ + 53.60871, + 10.1188786 + ], + [ + 53.6084832, + 10.1187209 + ], + [ + 53.6082828, + 10.1185687 + ], + [ + 53.6079554, + 10.1182596 + ] + ] + }, + { + "osmId": "43185550", + "name": null, + "lengthMeters": 146.5566874609448, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.562366, + 10.0280403 + ], + [ + 53.5617076, + 10.0282738 + ], + [ + 53.5612877, + 10.0284228 + ], + [ + 53.5610763, + 10.0284978 + ] + ] + }, + { + "osmId": "43326649", + "name": null, + "lengthMeters": 650.3373292245676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6047563, + 10.1151214 + ], + [ + 53.6044333, + 10.1146882 + ], + [ + 53.6011971, + 10.1100896 + ], + [ + 53.6010251, + 10.1098324 + ], + [ + 53.6008689, + 10.1095771 + ], + [ + 53.600707, + 10.1092865 + ], + [ + 53.6005281, + 10.1089126 + ], + [ + 53.6003917, + 10.1085929 + ] + ] + }, + { + "osmId": "43327613", + "name": null, + "lengthMeters": 529.5212627311461, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5611647, + 9.8425103 + ], + [ + 53.5616998, + 9.8416158 + ], + [ + 53.5619368, + 9.8412052 + ], + [ + 53.5621561, + 9.8407803 + ], + [ + 53.562445, + 9.8401341 + ], + [ + 53.5627471, + 9.8394168 + ], + [ + 53.5629424, + 9.838978 + ], + [ + 53.5633907, + 9.837885 + ], + [ + 53.5636783, + 9.8370291 + ], + [ + 53.5639787, + 9.8360923 + ] + ] + }, + { + "osmId": "43329156", + "name": null, + "lengthMeters": 307.32591649573385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6464128, + 10.159606 + ], + [ + 53.6466266, + 10.1597216 + ], + [ + 53.6468704, + 10.1598811 + ], + [ + 53.6469825, + 10.1599669 + ], + [ + 53.6471348, + 10.1600835 + ], + [ + 53.6473963, + 10.1603254 + ], + [ + 53.64761, + 10.1605513 + ], + [ + 53.6479057, + 10.16091 + ], + [ + 53.6481726, + 10.1612582 + ], + [ + 53.6483755, + 10.1615015 + ], + [ + 53.6487905, + 10.16193 + ] + ] + }, + { + "osmId": "43329157", + "name": null, + "lengthMeters": 224.53716557721447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6519168, + 10.1638935 + ], + [ + 53.6522046, + 10.1640533 + ], + [ + 53.652633, + 10.1642708 + ], + [ + 53.6532978, + 10.1646424 + ], + [ + 53.6534386, + 10.1647334 + ], + [ + 53.6535839, + 10.1648404 + ], + [ + 53.6537315, + 10.1649616 + ], + [ + 53.6538151, + 10.1650383 + ] + ] + }, + { + "osmId": "43329158", + "name": null, + "lengthMeters": 1088.9807357366735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6544493, + 10.1634786 + ], + [ + 53.6547829, + 10.1631885 + ], + [ + 53.6551114, + 10.1628855 + ], + [ + 53.6553172, + 10.1626953 + ], + [ + 53.655784, + 10.162264 + ], + [ + 53.6562285, + 10.1618631 + ], + [ + 53.6567014, + 10.1614701 + ], + [ + 53.6575782, + 10.1608542 + ], + [ + 53.6584469, + 10.1602112 + ], + [ + 53.6592128, + 10.159615 + ], + [ + 53.6596858, + 10.1592469 + ], + [ + 53.6609545, + 10.1582589 + ], + [ + 53.6620817, + 10.157387 + ], + [ + 53.6633052, + 10.1564407 + ] + ] + }, + { + "osmId": "43329236", + "name": null, + "lengthMeters": 243.5054235801951, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6530453, + 10.1825898 + ], + [ + 53.6529551, + 10.1837848 + ], + [ + 53.6529206, + 10.184612 + ], + [ + 53.6529073, + 10.1850542 + ], + [ + 53.6528889, + 10.1856907 + ], + [ + 53.652885, + 10.1858269 + ], + [ + 53.6528834, + 10.1860847 + ], + [ + 53.6528877, + 10.1862714 + ] + ] + }, + { + "osmId": "43329237", + "name": null, + "lengthMeters": 309.20399718225127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6529724, + 10.1879962 + ], + [ + 53.6530173, + 10.1886021 + ], + [ + 53.6530712, + 10.189096 + ], + [ + 53.653142, + 10.1895796 + ], + [ + 53.6532407, + 10.1901122 + ], + [ + 53.6533643, + 10.1906301 + ], + [ + 53.6534147, + 10.1908181 + ], + [ + 53.6534681, + 10.1910069 + ], + [ + 53.6536608, + 10.1915687 + ], + [ + 53.6539363, + 10.1923393 + ] + ] + }, + { + "osmId": "43329450", + "name": null, + "lengthMeters": 80.82877934534847, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6636032, + 10.2873617 + ], + [ + 53.663567, + 10.2873287 + ], + [ + 53.6635649, + 10.2873257 + ], + [ + 53.663417, + 10.2871902 + ], + [ + 53.6632668, + 10.2870692 + ], + [ + 53.6629425, + 10.2868548 + ] + ] + }, + { + "osmId": "43335179", + "name": null, + "lengthMeters": 323.8071571523964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5579168, + 9.9898958 + ], + [ + 53.5580495, + 9.9898322 + ], + [ + 53.558483, + 9.9895509 + ], + [ + 53.5587543, + 9.9893875 + ], + [ + 53.5590953, + 9.9891808 + ], + [ + 53.5593752, + 9.9889889 + ], + [ + 53.5594683, + 9.9889364 + ], + [ + 53.5597313, + 9.9887863 + ], + [ + 53.5599765, + 9.988664 + ], + [ + 53.5601513, + 9.9885945 + ], + [ + 53.5602975, + 9.9885531 + ], + [ + 53.5604534, + 9.988532 + ], + [ + 53.5606941, + 9.9885186 + ] + ] + }, + { + "osmId": "43337222", + "name": null, + "lengthMeters": 420.6500265536493, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5591211, + 9.969124 + ], + [ + 53.5602086, + 9.9695478 + ], + [ + 53.5612451, + 9.9697766 + ], + [ + 53.5615817, + 9.9698703 + ], + [ + 53.5619966, + 9.9700209 + ], + [ + 53.5621461, + 9.9700635 + ], + [ + 53.5623053, + 9.9700918 + ], + [ + 53.562448, + 9.9701051 + ], + [ + 53.5625903, + 9.9701038 + ], + [ + 53.5628483, + 9.9700688 + ] + ] + }, + { + "osmId": "43337223", + "name": null, + "lengthMeters": 155.41091084176145, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5698106, + 9.9693305 + ], + [ + 53.5701102, + 9.9691996 + ], + [ + 53.5702942, + 9.9691593 + ], + [ + 53.5705815, + 9.9691188 + ], + [ + 53.5708289, + 9.9691032 + ], + [ + 53.5711617, + 9.969091 + ], + [ + 53.5711955, + 9.9690928 + ] + ] + }, + { + "osmId": "43400170", + "name": null, + "lengthMeters": 166.466944578965, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3731461, + 13.10362 + ], + [ + 52.3731689, + 13.1039876 + ], + [ + 52.373191, + 13.1041804 + ], + [ + 52.3732163, + 13.1043666 + ], + [ + 52.373243, + 13.1045155 + ], + [ + 52.3732673, + 13.1046398 + ], + [ + 52.3732882, + 13.1047341 + ], + [ + 52.373339, + 13.104939 + ], + [ + 52.3734313, + 13.1052732 + ], + [ + 52.3735844, + 13.1057349 + ], + [ + 52.3736449, + 13.1059044 + ] + ] + }, + { + "osmId": "43624971", + "name": null, + "lengthMeters": 242.78241678454125, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.589267, + 10.0292277 + ], + [ + 53.5891856, + 10.0301638 + ], + [ + 53.589131, + 10.0306363 + ], + [ + 53.5891211, + 10.0307095 + ], + [ + 53.5890433, + 10.0313099 + ], + [ + 53.5889433, + 10.0322263 + ], + [ + 53.58892, + 10.0324307 + ], + [ + 53.588906, + 10.0325822 + ], + [ + 53.5888881, + 10.0328486 + ] + ] + }, + { + "osmId": "43624974", + "name": null, + "lengthMeters": 77.32145725759631, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5894046, + 10.0280809 + ], + [ + 53.5893757, + 10.0282437 + ], + [ + 53.5893513, + 10.0284047 + ], + [ + 53.5893157, + 10.0286948 + ], + [ + 53.5893003, + 10.0288604 + ], + [ + 53.589267, + 10.0292277 + ] + ] + }, + { + "osmId": "43624975", + "name": null, + "lengthMeters": 452.026296772948, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5895316, + 10.0288815 + ], + [ + 53.5895546, + 10.0286743 + ], + [ + 53.5896029, + 10.0282399 + ], + [ + 53.5896531, + 10.02786 + ], + [ + 53.5897153, + 10.0275002 + ], + [ + 53.5898618, + 10.0267501 + ], + [ + 53.5899244, + 10.0263862 + ], + [ + 53.5899781, + 10.0260193 + ], + [ + 53.590022, + 10.0256479 + ], + [ + 53.5900365, + 10.0254727 + ], + [ + 53.5900529, + 10.0252735 + ], + [ + 53.5900743, + 10.0248971 + ], + [ + 53.5901024, + 10.0237514 + ], + [ + 53.5901156, + 10.0233739 + ], + [ + 53.5901412, + 10.0229976 + ], + [ + 53.5902005, + 10.0223849 + ], + [ + 53.5902249, + 10.0221622 + ] + ] + }, + { + "osmId": "43624976", + "name": null, + "lengthMeters": 328.2221413855648, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5902014, + 10.0221241 + ], + [ + 53.590175, + 10.0223654 + ], + [ + 53.5900713, + 10.0233684 + ], + [ + 53.5900467, + 10.0237421 + ], + [ + 53.5900061, + 10.0248902 + ], + [ + 53.589982, + 10.0252674 + ], + [ + 53.5899449, + 10.0256399 + ], + [ + 53.5898917, + 10.0260067 + ], + [ + 53.5898255, + 10.026368 + ], + [ + 53.5897926, + 10.026512 + ], + [ + 53.5897395, + 10.0267443 + ], + [ + 53.589675, + 10.0269886 + ] + ] + }, + { + "osmId": "43624977", + "name": null, + "lengthMeters": 78.16960578111343, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.589675, + 10.0269886 + ], + [ + 53.5894978, + 10.0276517 + ], + [ + 53.5894467, + 10.0278707 + ], + [ + 53.5894046, + 10.0280809 + ] + ] + }, + { + "osmId": "43624978", + "name": null, + "lengthMeters": 116.50435558724237, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5879036, + 10.0408881 + ], + [ + 53.5879282, + 10.0407192 + ], + [ + 53.5879556, + 10.040545 + ], + [ + 53.5879971, + 10.0403544 + ], + [ + 53.5880299, + 10.0402191 + ], + [ + 53.5880664, + 10.0400829 + ], + [ + 53.5881068, + 10.0399594 + ], + [ + 53.5881589, + 10.0398314 + ], + [ + 53.5882485, + 10.0395967 + ], + [ + 53.5883024, + 10.0394906 + ], + [ + 53.5883798, + 10.0393423 + ] + ] + }, + { + "osmId": "43624979", + "name": null, + "lengthMeters": 187.47882241733814, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5888236, + 10.0345258 + ], + [ + 53.5888079, + 10.0348695 + ], + [ + 53.5887997, + 10.0350316 + ], + [ + 53.5887838, + 10.0352141 + ], + [ + 53.5887593, + 10.0354648 + ], + [ + 53.588707, + 10.0359547 + ], + [ + 53.588673, + 10.0362311 + ], + [ + 53.5886423, + 10.0364329 + ], + [ + 53.5886083, + 10.0366233 + ], + [ + 53.5886077, + 10.0366264 + ], + [ + 53.5885646, + 10.036846 + ], + [ + 53.588473, + 10.0372929 + ] + ] + }, + { + "osmId": "43624994", + "name": null, + "lengthMeters": 171.95662653442977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.58837, + 10.0388041 + ], + [ + 53.5884749, + 10.0381761 + ], + [ + 53.5885616, + 10.0375381 + ], + [ + 53.5885981, + 10.0372699 + ], + [ + 53.5886327, + 10.0369382 + ], + [ + 53.5887018, + 10.0362617 + ] + ] + }, + { + "osmId": "43624997", + "name": null, + "lengthMeters": 156.5144466080809, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5878844, + 10.0415063 + ], + [ + 53.58802, + 10.0407504 + ], + [ + 53.5881558, + 10.0399934 + ], + [ + 53.5882916, + 10.0392364 + ] + ] + }, + { + "osmId": "43625000", + "name": null, + "lengthMeters": 286.42344549955754, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.588473, + 10.0372929 + ], + [ + 53.5883395, + 10.0378793 + ], + [ + 53.588152, + 10.0386226 + ], + [ + 53.5879051, + 10.0396155 + ], + [ + 53.5878261, + 10.0399901 + ], + [ + 53.5876951, + 10.0406626 + ], + [ + 53.5875717, + 10.041354 + ] + ] + }, + { + "osmId": "43625001", + "name": null, + "lengthMeters": 286.5182309712049, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.588473, + 10.0372929 + ], + [ + 53.5882429, + 10.0384177 + ], + [ + 53.5881564, + 10.0387992 + ], + [ + 53.5879633, + 10.0395966 + ], + [ + 53.5879027, + 10.039915 + ], + [ + 53.587846, + 10.0403128 + ], + [ + 53.5878456, + 10.0403156 + ], + [ + 53.5877406, + 10.041437 + ] + ] + }, + { + "osmId": "43625002", + "name": null, + "lengthMeters": 163.63492836511872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5889365, + 10.0384543 + ], + [ + 53.5889757, + 10.0384175 + ], + [ + 53.5890421, + 10.0383552 + ], + [ + 53.589132, + 10.0382823 + ], + [ + 53.5892463, + 10.0381955 + ], + [ + 53.5893258, + 10.0381415 + ], + [ + 53.5894015, + 10.0380995 + ], + [ + 53.5894886, + 10.0380583 + ], + [ + 53.5895564, + 10.038035 + ], + [ + 53.5896507, + 10.0380079 + ], + [ + 53.5897897, + 10.0379741 + ], + [ + 53.5898806, + 10.0379583 + ], + [ + 53.5899667, + 10.0379474 + ], + [ + 53.5900605, + 10.0379435 + ], + [ + 53.5901677, + 10.03795 + ], + [ + 53.590353, + 10.0379669 + ] + ] + }, + { + "osmId": "43625007", + "name": null, + "lengthMeters": 222.04225088431383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5851665, + 10.04719 + ], + [ + 53.585235, + 10.0472333 + ], + [ + 53.5853639, + 10.0473071 + ], + [ + 53.5854868, + 10.0473633 + ], + [ + 53.5856795, + 10.0474335 + ], + [ + 53.5858624, + 10.0475067 + ], + [ + 53.5859298, + 10.0475325 + ], + [ + 53.5859955, + 10.0475544 + ], + [ + 53.58609, + 10.0475713 + ], + [ + 53.5861457, + 10.0475698 + ], + [ + 53.5862044, + 10.0475593 + ], + [ + 53.5862434, + 10.0475441 + ], + [ + 53.5863023, + 10.0475186 + ], + [ + 53.5863586, + 10.0474901 + ], + [ + 53.5864175, + 10.0474516 + ], + [ + 53.58647, + 10.0474181 + ], + [ + 53.586515, + 10.0473757 + ], + [ + 53.5865784, + 10.0473049 + ], + [ + 53.5866318, + 10.0472356 + ], + [ + 53.5866682, + 10.0471776 + ], + [ + 53.5867203, + 10.047089 + ], + [ + 53.5867569, + 10.0470106 + ], + [ + 53.5867985, + 10.046904 + ], + [ + 53.5868332, + 10.0467998 + ], + [ + 53.5868921, + 10.0466136 + ] + ] + }, + { + "osmId": "43625010", + "name": null, + "lengthMeters": 121.71801703958783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5870147, + 10.0461547 + ], + [ + 53.5870606, + 10.0459925 + ], + [ + 53.5870979, + 10.0458481 + ], + [ + 53.5871336, + 10.045663 + ], + [ + 53.5871395, + 10.0456352 + ], + [ + 53.5873586, + 10.0444067 + ] + ] + }, + { + "osmId": "43625023", + "name": null, + "lengthMeters": 120.66264123266588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875691, + 10.0416948 + ], + [ + 53.5875414, + 10.0418791 + ], + [ + 53.5875214, + 10.0420204 + ], + [ + 53.5874944, + 10.0422317 + ], + [ + 53.5874709, + 10.0424322 + ], + [ + 53.5874179, + 10.0429497 + ], + [ + 53.5874006, + 10.0431216 + ], + [ + 53.5873901, + 10.0432127 + ], + [ + 53.5873795, + 10.0433088 + ], + [ + 53.5873729, + 10.0433639 + ], + [ + 53.5873664, + 10.0434145 + ], + [ + 53.5873571, + 10.043487 + ] + ] + }, + { + "osmId": "43625024", + "name": null, + "lengthMeters": 109.10842131253573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875601, + 10.0416906 + ], + [ + 53.5875354, + 10.0418264 + ], + [ + 53.5874807, + 10.0421041 + ], + [ + 53.5874446, + 10.0422726 + ], + [ + 53.5873983, + 10.0424748 + ], + [ + 53.5873622, + 10.042632 + ], + [ + 53.5873283, + 10.0427756 + ], + [ + 53.5872916, + 10.0429382 + ], + [ + 53.5872254, + 10.043244 + ] + ] + }, + { + "osmId": "43625031", + "name": null, + "lengthMeters": 131.80523294267655, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.58748, + 10.0437363 + ], + [ + 53.5878259, + 10.0418263 + ] + ] + }, + { + "osmId": "43709072", + "name": null, + "lengthMeters": 231.6419733556773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5909226, + 10.0678502 + ], + [ + 53.5910971, + 10.0682246 + ], + [ + 53.5912546, + 10.0686102 + ], + [ + 53.5913758, + 10.0689671 + ], + [ + 53.5914597, + 10.0692642 + ], + [ + 53.5915313, + 10.069605 + ], + [ + 53.5915962, + 10.0700182 + ], + [ + 53.591609, + 10.0701322 + ], + [ + 53.5916426, + 10.0704325 + ], + [ + 53.591691, + 10.071042 + ] + ] + }, + { + "osmId": "43733505", + "name": null, + "lengthMeters": 266.45839607572225, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.592835, + 10.0771409 + ], + [ + 53.593235, + 10.0790171 + ], + [ + 53.59332, + 10.0794123 + ], + [ + 53.5934693, + 10.0800259 + ], + [ + 53.5935545, + 10.0803858 + ], + [ + 53.5936721, + 10.0809234 + ] + ] + }, + { + "osmId": "43733511", + "name": null, + "lengthMeters": 490.55949864591, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.591728, + 10.0697536 + ], + [ + 53.5916413, + 10.0694517 + ], + [ + 53.5915585, + 10.0691996 + ], + [ + 53.5914625, + 10.0689462 + ], + [ + 53.5913097, + 10.0686091 + ], + [ + 53.5911814, + 10.0683115 + ], + [ + 53.5909469, + 10.0678084 + ], + [ + 53.5906825, + 10.0672407 + ], + [ + 53.5902936, + 10.066398 + ], + [ + 53.5900601, + 10.0659424 + ], + [ + 53.589925, + 10.0656167 + ], + [ + 53.5897335, + 10.0652284 + ], + [ + 53.589591, + 10.0649762 + ], + [ + 53.5894231, + 10.0647329 + ], + [ + 53.5892914, + 10.0645772 + ], + [ + 53.5892036, + 10.0644813 + ], + [ + 53.5891051, + 10.0643846 + ], + [ + 53.5889893, + 10.0642835 + ], + [ + 53.5888792, + 10.0642003 + ] + ] + }, + { + "osmId": "43734343", + "name": null, + "lengthMeters": 429.135494401499, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5999493, + 10.1073302 + ], + [ + 53.5989356, + 10.1043307 + ], + [ + 53.5986691, + 10.1034784 + ], + [ + 53.5985802, + 10.1032079 + ], + [ + 53.5984782, + 10.1028409 + ], + [ + 53.5982442, + 10.1019725 + ], + [ + 53.5981438, + 10.1015881 + ] + ] + }, + { + "osmId": "43735567", + "name": null, + "lengthMeters": 1679.9240087335438, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2006627, + 11.6585328 + ], + [ + 48.2009365, + 11.6588906 + ], + [ + 48.2015068, + 11.6596359 + ], + [ + 48.201563, + 11.6597094 + ], + [ + 48.2016609, + 11.6598373 + ], + [ + 48.2017359, + 11.6599355 + ], + [ + 48.2021999, + 11.6605429 + ], + [ + 48.2027389, + 11.6612524 + ], + [ + 48.2038233, + 11.6626669 + ], + [ + 48.2046293, + 11.6637224 + ], + [ + 48.2054183, + 11.6647531 + ], + [ + 48.2067702, + 11.6665193 + ], + [ + 48.2080707, + 11.6682251 + ], + [ + 48.2089038, + 11.6693124 + ], + [ + 48.2094764, + 11.6700615 + ], + [ + 48.2097417, + 11.6704085 + ], + [ + 48.2098321, + 11.6705268 + ], + [ + 48.2106978, + 11.6716594 + ], + [ + 48.2111019, + 11.6721784 + ], + [ + 48.2112073, + 11.6723076 + ], + [ + 48.2115155, + 11.6726854 + ], + [ + 48.2117516, + 11.6729622 + ], + [ + 48.211996, + 11.6732378 + ], + [ + 48.2120974, + 11.6733439 + ] + ] + }, + { + "osmId": "43779349", + "name": null, + "lengthMeters": 548.0854417623397, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1791996, + 11.5391332 + ], + [ + 48.1832856, + 11.5393838 + ], + [ + 48.1841252, + 11.5393954 + ] + ] + }, + { + "osmId": "43779754", + "name": null, + "lengthMeters": 558.0999358509455, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1841001, + 11.5393228 + ], + [ + 48.179084, + 11.539062 + ] + ] + }, + { + "osmId": "43887963", + "name": null, + "lengthMeters": 196.8840301844783, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061514, + 13.5621135 + ], + [ + 52.506847, + 13.562977 + ], + [ + 52.5075492, + 13.5638987 + ] + ] + }, + { + "osmId": "43887969", + "name": null, + "lengthMeters": 765.860725246752, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5003087, + 13.549357 + ], + [ + 52.5003804, + 13.5495965 + ], + [ + 52.500477, + 13.5499302 + ], + [ + 52.5005503, + 13.5501936 + ], + [ + 52.5008937, + 13.5514609 + ], + [ + 52.5009665, + 13.5517199 + ], + [ + 52.5010349, + 13.5519591 + ], + [ + 52.5011267, + 13.5522723 + ], + [ + 52.5012216, + 13.5525845 + ], + [ + 52.5013521, + 13.552996 + ], + [ + 52.5014337, + 13.5532458 + ], + [ + 52.5015061, + 13.553462 + ], + [ + 52.501653, + 13.5538893 + ], + [ + 52.5018566, + 13.5544679 + ], + [ + 52.5020346, + 13.5549349 + ], + [ + 52.5022166, + 13.5553975 + ], + [ + 52.5024979, + 13.5560825 + ], + [ + 52.5028129, + 13.5568024 + ], + [ + 52.5031464, + 13.557515 + ], + [ + 52.503397, + 13.5580262 + ], + [ + 52.5036389, + 13.5584929 + ], + [ + 52.5038895, + 13.5589552 + ] + ] + }, + { + "osmId": "43892123", + "name": null, + "lengthMeters": 508.86492983163004, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1926437, + 11.594854 + ], + [ + 48.1924906, + 11.594789 + ], + [ + 48.1923434, + 11.5947035 + ], + [ + 48.1922131, + 11.5946069 + ], + [ + 48.1920831, + 11.5944808 + ], + [ + 48.1918679, + 11.5942243 + ], + [ + 48.1917614, + 11.5940499 + ], + [ + 48.1917072, + 11.5939612 + ], + [ + 48.1916559, + 11.593882 + ], + [ + 48.1915976, + 11.593789 + ], + [ + 48.1914385, + 11.5935068 + ], + [ + 48.1913298, + 11.5932436 + ], + [ + 48.1912366, + 11.5929803 + ], + [ + 48.1911786, + 11.5927368 + ], + [ + 48.1911306, + 11.5924914 + ], + [ + 48.1910866, + 11.5920904 + ], + [ + 48.1910781, + 11.5915344 + ], + [ + 48.1910716, + 11.5910613 + ], + [ + 48.1910575, + 11.5904195 + ], + [ + 48.1909496, + 11.5894562 + ], + [ + 48.190907, + 11.5890761 + ] + ] + }, + { + "osmId": "43913945", + "name": null, + "lengthMeters": 86.97014095343805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5852982, + 9.9867664 + ], + [ + 53.5846304, + 9.9860805 + ] + ] + }, + { + "osmId": "43913946", + "name": null, + "lengthMeters": 84.95063404561839, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5861847, + 9.9876485 + ], + [ + 53.5855271, + 9.9869934 + ] + ] + }, + { + "osmId": "43913952", + "name": null, + "lengthMeters": 129.79281012512376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5899656, + 9.9935799 + ], + [ + 53.5900155, + 9.9937861 + ], + [ + 53.590091, + 9.9941296 + ], + [ + 53.5900997, + 9.9941693 + ], + [ + 53.5901533, + 9.9945283 + ], + [ + 53.590193, + 9.9949478 + ], + [ + 53.5902166, + 9.9954866 + ] + ] + }, + { + "osmId": "43913953", + "name": null, + "lengthMeters": 163.30617566690805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5892304, + 9.9913857 + ], + [ + 53.5890184, + 9.9909897 + ], + [ + 53.5888326, + 9.9906355 + ], + [ + 53.5887234, + 9.9904272 + ], + [ + 53.5885977, + 9.9902027 + ], + [ + 53.5884937, + 9.9900363 + ], + [ + 53.5884244, + 9.9899441 + ], + [ + 53.5883453, + 9.9898479 + ], + [ + 53.5882526, + 9.9897422 + ], + [ + 53.5881796, + 9.9896787 + ] + ] + }, + { + "osmId": "43913965", + "name": null, + "lengthMeters": 138.78963612478543, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5901813, + 9.9936858 + ], + [ + 53.5901586, + 9.9935159 + ], + [ + 53.5901341, + 9.9933284 + ], + [ + 53.5901103, + 9.9931958 + ], + [ + 53.5900508, + 9.9930202 + ], + [ + 53.589996, + 9.9928592 + ], + [ + 53.5899329, + 9.9927098 + ], + [ + 53.5895275, + 9.9919428 + ] + ] + }, + { + "osmId": "43913966", + "name": null, + "lengthMeters": 120.87191017858927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5910344, + 9.994604 + ], + [ + 53.5907901, + 9.9943072 + ], + [ + 53.5905776, + 9.9940099 + ], + [ + 53.5903707, + 9.9936772 + ], + [ + 53.5902102, + 9.9934149 + ] + ] + }, + { + "osmId": "43936745", + "name": null, + "lengthMeters": 118.84364046349812, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1912865, + 11.5899673 + ], + [ + 48.1912576, + 11.5900949 + ], + [ + 48.1912185, + 11.5903082 + ], + [ + 48.1911591, + 11.5906593 + ], + [ + 48.1911198, + 11.590972 + ], + [ + 48.1910855, + 11.5912883 + ], + [ + 48.1910781, + 11.5915344 + ] + ] + }, + { + "osmId": "44063208", + "name": null, + "lengthMeters": 276.26542576090344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6255656, + 10.1382062 + ], + [ + 53.6258125, + 10.1384662 + ], + [ + 53.6261328, + 10.1389101 + ], + [ + 53.6265343, + 10.1394244 + ], + [ + 53.6270106, + 10.1399936 + ], + [ + 53.6274707, + 10.1405182 + ], + [ + 53.6275539, + 10.1406131 + ], + [ + 53.6275833, + 10.140645 + ] + ] + }, + { + "osmId": "44063806", + "name": null, + "lengthMeters": 398.7067123642203, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5106846, + 13.5682358 + ], + [ + 52.5104089, + 13.5677748 + ], + [ + 52.5103202, + 13.5676407 + ], + [ + 52.5101249, + 13.5673452 + ], + [ + 52.5083359, + 13.5649145 + ], + [ + 52.507966, + 13.5643996 + ] + ] + }, + { + "osmId": "44065817", + "name": null, + "lengthMeters": 1111.1724005868955, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519342, + 13.5889868 + ], + [ + 52.5186008, + 13.5888079 + ], + [ + 52.5180185, + 13.5885102 + ], + [ + 52.5176423, + 13.5882239 + ], + [ + 52.5172989, + 13.5878657 + ], + [ + 52.5170759, + 13.5875991 + ], + [ + 52.5166708, + 13.586989 + ], + [ + 52.5164847, + 13.5866619 + ], + [ + 52.5141584, + 13.5817957 + ], + [ + 52.5135303, + 13.5805411 + ], + [ + 52.5132828, + 13.5800271 + ], + [ + 52.5130553, + 13.57951 + ], + [ + 52.5128734, + 13.5790137 + ], + [ + 52.5127524, + 13.5785418 + ], + [ + 52.5126818, + 13.5780057 + ], + [ + 52.5126516, + 13.577722 + ] + ] + }, + { + "osmId": "44065818", + "name": null, + "lengthMeters": 76.60404294290885, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126516, + 13.577722 + ], + [ + 52.5126163, + 13.5773532 + ], + [ + 52.5126082, + 13.5769958 + ], + [ + 52.512614, + 13.5765949 + ] + ] + }, + { + "osmId": "44092095", + "name": "AEG-Versuchstunnel", + "lengthMeters": 357.6918648807048, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5416472, + 13.3880175 + ], + [ + 52.541696, + 13.3879562 + ], + [ + 52.5417096, + 13.3878677 + ], + [ + 52.5413799, + 13.3862473 + ], + [ + 52.5412755, + 13.3860374 + ], + [ + 52.5411354, + 13.3859206 + ], + [ + 52.5409949, + 13.3858922 + ], + [ + 52.5408462, + 13.3858991 + ], + [ + 52.540558, + 13.3860209 + ], + [ + 52.5404715, + 13.3859926 + ], + [ + 52.5404142, + 13.3858749 + ], + [ + 52.5401465, + 13.3850729 + ], + [ + 52.5400356, + 13.3849713 + ], + [ + 52.5398964, + 13.3849106 + ], + [ + 52.5397535, + 13.3848884 + ] + ] + }, + { + "osmId": "44329793", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 175.04194969962973, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521053, + 10.0236748 + ], + [ + 53.5519176, + 10.0232336 + ], + [ + 53.5515374, + 10.0221757 + ], + [ + 53.5512711, + 10.0214293 + ] + ] + }, + { + "osmId": "44329795", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 164.81451868141977, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5512738, + 10.0215752 + ], + [ + 53.551309, + 10.0216703 + ], + [ + 53.551506, + 10.0222014 + ], + [ + 53.5518866, + 10.0232627 + ], + [ + 53.5520666, + 10.0236817 + ] + ] + }, + { + "osmId": "44329798", + "name": null, + "lengthMeters": 242.97799745383298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502039, + 10.0166891 + ], + [ + 53.5500607, + 10.0161221 + ], + [ + 53.549922, + 10.0155013 + ], + [ + 53.5497957, + 10.0148742 + ], + [ + 53.5497013, + 10.0140545 + ], + [ + 53.5496898, + 10.0138371 + ], + [ + 53.5496842, + 10.0135718 + ], + [ + 53.549693, + 10.0131543 + ] + ] + }, + { + "osmId": "44329803", + "name": null, + "lengthMeters": 128.06859953417586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502718, + 10.0173269 + ], + [ + 53.5506119, + 10.018638 + ], + [ + 53.5507221, + 10.0191109 + ] + ] + }, + { + "osmId": "44329811", + "name": "Verbindungsbahn", + "lengthMeters": 156.98284824619336, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5498893, + 10.0115059 + ], + [ + 53.5500403, + 10.0108798 + ], + [ + 53.5501758, + 10.0104322 + ], + [ + 53.550284, + 10.010114 + ], + [ + 53.5504048, + 10.0098122 + ], + [ + 53.5505694, + 10.0094802 + ], + [ + 53.5505755, + 10.0094682 + ], + [ + 53.5505844, + 10.0094558 + ] + ] + }, + { + "osmId": "44329812", + "name": null, + "lengthMeters": 148.85681272040046, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5499302, + 10.0115322 + ], + [ + 53.5499933, + 10.0112372 + ], + [ + 53.5501502, + 10.0106769 + ], + [ + 53.5502722, + 10.0103303 + ], + [ + 53.5503903, + 10.0100604 + ], + [ + 53.5504644, + 10.0099068 + ], + [ + 53.55059, + 10.0096674 + ], + [ + 53.5506026, + 10.0096418 + ], + [ + 53.5506146, + 10.0096173 + ] + ] + }, + { + "osmId": "44329825", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 195.16842375405906, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5509903, + 10.0081587 + ], + [ + 53.5508969, + 10.0082797 + ], + [ + 53.5508045, + 10.0084124 + ], + [ + 53.5507335, + 10.0085461 + ], + [ + 53.5504683, + 10.0090459 + ], + [ + 53.5504188, + 10.0091546 + ], + [ + 53.5502216, + 10.0095878 + ], + [ + 53.5501129, + 10.0098476 + ], + [ + 53.5499038, + 10.0104545 + ] + ] + }, + { + "osmId": "44418463", + "name": null, + "lengthMeters": 365.90776991283855, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5578699, + 13.3976163 + ], + [ + 52.5578464, + 13.3976209 + ], + [ + 52.557687, + 13.3976463 + ], + [ + 52.5573667, + 13.3976866 + ], + [ + 52.5569849, + 13.3977391 + ], + [ + 52.5565261, + 13.3978117 + ], + [ + 52.556323, + 13.3978564 + ], + [ + 52.5559964, + 13.3979331 + ], + [ + 52.5551744, + 13.3981379 + ], + [ + 52.5550827, + 13.3981618 + ], + [ + 52.5548091, + 13.3982331 + ], + [ + 52.5547935, + 13.398237 + ], + [ + 52.5546061, + 13.398286 + ] + ] + }, + { + "osmId": "44418464", + "name": "Stettiner Bahn", + "lengthMeters": 129.79687633162465, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5585033, + 13.3983417 + ], + [ + 52.5583757, + 13.3982741 + ], + [ + 52.5581876, + 13.3981746 + ], + [ + 52.5578835, + 13.3980549 + ], + [ + 52.5576234, + 13.3979819 + ], + [ + 52.5574653, + 13.397947 + ], + [ + 52.5573666, + 13.3979252 + ] + ] + }, + { + "osmId": "44418472", + "name": "Stettiner Bahn", + "lengthMeters": 331.4082673146635, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5586355, + 13.3986844 + ], + [ + 52.5589206, + 13.3988814 + ], + [ + 52.5591023, + 13.3990193 + ], + [ + 52.5592531, + 13.3991526 + ], + [ + 52.5592735, + 13.399173 + ], + [ + 52.5594648, + 13.3993638 + ], + [ + 52.5597447, + 13.3996592 + ], + [ + 52.5599516, + 13.399919 + ], + [ + 52.5603013, + 13.4004233 + ], + [ + 52.5604585, + 13.4006742 + ], + [ + 52.560996, + 13.4015934 + ] + ] + }, + { + "osmId": "44466545", + "name": "Siemensbahn", + "lengthMeters": 396.8139032299922, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5338688, + 13.2759329 + ], + [ + 52.5335641, + 13.2759897 + ], + [ + 52.5333518, + 13.2760598 + ], + [ + 52.5331568, + 13.2761501 + ], + [ + 52.5329843, + 13.2762518 + ], + [ + 52.5327132, + 13.2764606 + ], + [ + 52.5325045, + 13.2766538 + ], + [ + 52.5323117, + 13.2768693 + ], + [ + 52.5321094, + 13.277094 + ], + [ + 52.5314397, + 13.2778815 + ], + [ + 52.5307678, + 13.2786542 + ] + ] + }, + { + "osmId": "44525342", + "name": "U3", + "lengthMeters": 1606.915718940517, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4500214, + 13.2787221 + ], + [ + 52.4499432, + 13.2782272 + ], + [ + 52.4498909, + 13.2776859 + ], + [ + 52.4498698, + 13.2771998 + ], + [ + 52.4498724, + 13.2767153 + ], + [ + 52.4499173, + 13.2758827 + ], + [ + 52.4499601, + 13.2752368 + ], + [ + 52.4502386, + 13.2710369 + ], + [ + 52.4502596, + 13.2706268 + ], + [ + 52.4503473, + 13.2697996 + ], + [ + 52.4503692, + 13.2695958 + ], + [ + 52.4504044, + 13.2690737 + ], + [ + 52.4504272, + 13.2687116 + ], + [ + 52.4504512, + 13.268352 + ], + [ + 52.4504681, + 13.2679802 + ], + [ + 52.4504875, + 13.2673335 + ], + [ + 52.4507805, + 13.262811 + ], + [ + 52.4508585, + 13.2615058 + ], + [ + 52.4508845, + 13.2609133 + ], + [ + 52.4508983, + 13.2601349 + ], + [ + 52.4508879, + 13.259429 + ], + [ + 52.4508539, + 13.2587016 + ], + [ + 52.4507946, + 13.2578928 + ], + [ + 52.4506878, + 13.2567974 + ], + [ + 52.4505654, + 13.2559436 + ], + [ + 52.4504423, + 13.2551981 + ] + ] + }, + { + "osmId": "44584453", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1089.233622165629, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5458144, + 13.1428667 + ], + [ + 52.5464613, + 13.1403775 + ], + [ + 52.5469643, + 13.13844 + ], + [ + 52.5472088, + 13.1374941 + ], + [ + 52.5476769, + 13.1356831 + ], + [ + 52.5479646, + 13.1345701 + ], + [ + 52.5484648, + 13.1326348 + ], + [ + 52.5489278, + 13.1308436 + ], + [ + 52.5493615, + 13.129157 + ], + [ + 52.5495741, + 13.1283351 + ], + [ + 52.5496491, + 13.1280436 + ] + ] + }, + { + "osmId": "44584457", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 481.8456042186225, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5497945, + 13.1274777 + ], + [ + 52.5498226, + 13.127368 + ], + [ + 52.5498576, + 13.1272277 + ], + [ + 52.5505483, + 13.1245425 + ], + [ + 52.551188, + 13.1220516 + ], + [ + 52.5514629, + 13.1209901 + ], + [ + 52.5514826, + 13.1209142 + ] + ] + }, + { + "osmId": "44584468", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 476.5587144030151, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5438036, + 13.1505754 + ], + [ + 52.5443141, + 13.148618 + ], + [ + 52.5449937, + 13.1460126 + ], + [ + 52.5454929, + 13.1440986 + ] + ] + }, + { + "osmId": "44584472", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 425.7038711060283, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5421244, + 13.1570237 + ], + [ + 52.5421681, + 13.1568561 + ], + [ + 52.5426116, + 13.1551532 + ], + [ + 52.5428811, + 13.1541186 + ], + [ + 52.5435956, + 13.1513753 + ], + [ + 52.5436316, + 13.151237 + ] + ] + }, + { + "osmId": "44597620", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 310.26478126920983, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.551713, + 13.1200084 + ], + [ + 52.5519462, + 13.1190731 + ], + [ + 52.5521471, + 13.1182672 + ], + [ + 52.5524636, + 13.1170461 + ], + [ + 52.5526416, + 13.1163615 + ], + [ + 52.5527394, + 13.1159853 + ], + [ + 52.5527934, + 13.1157775 + ] + ] + }, + { + "osmId": "44641758", + "name": null, + "lengthMeters": 85.88715690907657, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255866, + 13.2412234 + ], + [ + 52.5254821, + 13.241656 + ], + [ + 52.5253832, + 13.2421159 + ], + [ + 52.525349, + 13.2422844 + ], + [ + 52.5253237, + 13.2424167 + ] + ] + }, + { + "osmId": "44641759", + "name": null, + "lengthMeters": 182.42196418490886, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240887, + 13.2447581 + ], + [ + 52.5238837, + 13.244869 + ], + [ + 52.5236764, + 13.2449347 + ], + [ + 52.5234688, + 13.2450005 + ], + [ + 52.5232233, + 13.2450921 + ], + [ + 52.5231009, + 13.2451469 + ], + [ + 52.5229797, + 13.2452102 + ], + [ + 52.5227475, + 13.2453451 + ], + [ + 52.5225222, + 13.2455237 + ] + ] + }, + { + "osmId": "44699860", + "name": null, + "lengthMeters": 237.569240145821, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5499406, + 13.3959228 + ], + [ + 52.5498316, + 13.3956038 + ], + [ + 52.5497786, + 13.3954354 + ], + [ + 52.5497389, + 13.3952919 + ], + [ + 52.5496841, + 13.395076 + ], + [ + 52.5496585, + 13.3949478 + ], + [ + 52.5496387, + 13.394846 + ], + [ + 52.5495918, + 13.3945791 + ], + [ + 52.549549, + 13.3942676 + ], + [ + 52.5495137, + 13.3938865 + ], + [ + 52.549489, + 13.3934717 + ], + [ + 52.5494621, + 13.3929049 + ], + [ + 52.5494475, + 13.3925554 + ], + [ + 52.5494474, + 13.3925524 + ], + [ + 52.5494473, + 13.3925491 + ] + ] + }, + { + "osmId": "44699861", + "name": null, + "lengthMeters": 186.1630309488278, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491604, + 13.3935359 + ], + [ + 52.5491704, + 13.3937654 + ], + [ + 52.5491949, + 13.3943327 + ], + [ + 52.5492071, + 13.3945209 + ], + [ + 52.5492244, + 13.39472 + ], + [ + 52.5492398, + 13.3948858 + ], + [ + 52.549261, + 13.3950647 + ], + [ + 52.5492845, + 13.3952434 + ], + [ + 52.5493133, + 13.3954185 + ], + [ + 52.5493422, + 13.3955777 + ], + [ + 52.5493753, + 13.3957397 + ], + [ + 52.5494064, + 13.3958743 + ], + [ + 52.5494459, + 13.3960384 + ], + [ + 52.5494925, + 13.3962148 + ] + ] + }, + { + "osmId": "44700614", + "name": null, + "lengthMeters": 222.94375085554685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5546061, + 13.398286 + ], + [ + 52.5542203, + 13.3983783 + ], + [ + 52.5534267, + 13.3985818 + ], + [ + 52.5526253, + 13.3987962 + ] + ] + }, + { + "osmId": "44701816", + "name": null, + "lengthMeters": 149.10969918987243, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.470946, + 13.3839929 + ], + [ + 52.4710179, + 13.3836466 + ], + [ + 52.4710789, + 13.3833217 + ], + [ + 52.4711141, + 13.3831099 + ], + [ + 52.4711461, + 13.3828927 + ], + [ + 52.4711748, + 13.3826633 + ], + [ + 52.4712022, + 13.3824157 + ], + [ + 52.4712261, + 13.3821132 + ], + [ + 52.4712385, + 13.3818732 + ], + [ + 52.4712395, + 13.3818525 + ] + ] + }, + { + "osmId": "44731601", + "name": null, + "lengthMeters": 107.3769297368538, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4732709, + 13.3641464 + ], + [ + 52.4723372, + 13.3637419 + ] + ] + }, + { + "osmId": "44732152", + "name": null, + "lengthMeters": 77.92612847933337, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.473943, + 13.3644723 + ], + [ + 52.4734204, + 13.3642202 + ], + [ + 52.4732709, + 13.3641464 + ] + ] + }, + { + "osmId": "44733097", + "name": null, + "lengthMeters": 133.37564132417256, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.475912, + 13.3648139 + ], + [ + 52.4747901, + 13.3655106 + ] + ] + }, + { + "osmId": "44733408", + "name": "Anhalter Bahn", + "lengthMeters": 516.7641563926861, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4431042, + 13.3485066 + ], + [ + 52.4428442, + 13.3481647 + ], + [ + 52.4423926, + 13.3475584 + ], + [ + 52.4419806, + 13.3469909 + ], + [ + 52.4415414, + 13.3463695 + ], + [ + 52.4410686, + 13.3456816 + ], + [ + 52.4397809, + 13.3437798 + ], + [ + 52.4395959, + 13.3435088 + ] + ] + }, + { + "osmId": "44733616", + "name": "Anhalter Bahn", + "lengthMeters": 448.4817064261321, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4368345, + 13.3394315 + ], + [ + 52.4363591, + 13.3387282 + ], + [ + 52.4358909, + 13.3380429 + ], + [ + 52.4349782, + 13.3367301 + ], + [ + 52.4345414, + 13.3360927 + ], + [ + 52.4340491, + 13.3353644 + ], + [ + 52.4338247, + 13.3350278 + ] + ] + }, + { + "osmId": "44733617", + "name": "Anhalter Bahn", + "lengthMeters": 305.3153837726505, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4390158, + 13.3426519 + ], + [ + 52.4384798, + 13.3418595 + ], + [ + 52.4378877, + 13.3409847 + ], + [ + 52.437871, + 13.3409601 + ], + [ + 52.4375787, + 13.340529 + ], + [ + 52.4371532, + 13.3399011 + ], + [ + 52.4369748, + 13.339639 + ] + ] + }, + { + "osmId": "44733618", + "name": "Anhalter Bahn", + "lengthMeters": 306.26348912002504, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4369442, + 13.3396742 + ], + [ + 52.4371272, + 13.3399464 + ], + [ + 52.4375641, + 13.3405882 + ], + [ + 52.437847, + 13.3410037 + ], + [ + 52.4378636, + 13.3410284 + ], + [ + 52.4384553, + 13.3419044 + ], + [ + 52.438992, + 13.3426956 + ] + ] + }, + { + "osmId": "44733619", + "name": null, + "lengthMeters": 173.0813019330869, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4379319, + 13.340843 + ], + [ + 52.4383927, + 13.3415351 + ], + [ + 52.4387218, + 13.3420201 + ], + [ + 52.4388305, + 13.3421759 + ], + [ + 52.4389054, + 13.3422885 + ], + [ + 52.4390875, + 13.3425535 + ] + ] + }, + { + "osmId": "44734162", + "name": "Anhalter Bahn", + "lengthMeters": 1099.5620302084199, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4277594, + 13.3259992 + ], + [ + 52.4265649, + 13.324234 + ], + [ + 52.4263335, + 13.3238846 + ], + [ + 52.426103, + 13.3235321 + ], + [ + 52.4258935, + 13.3232023 + ], + [ + 52.4256843, + 13.3228711 + ], + [ + 52.4252241, + 13.3221279 + ], + [ + 52.4247745, + 13.3214018 + ], + [ + 52.4245685, + 13.3210703 + ], + [ + 52.4243594, + 13.3207386 + ], + [ + 52.4241664, + 13.3204372 + ], + [ + 52.42397, + 13.3201384 + ], + [ + 52.423876, + 13.3199985 + ], + [ + 52.4237811, + 13.3198604 + ], + [ + 52.423654, + 13.319677 + ], + [ + 52.4235263, + 13.3194957 + ], + [ + 52.4233893, + 13.319308 + ], + [ + 52.4232515, + 13.3191229 + ], + [ + 52.4230381, + 13.3188463 + ], + [ + 52.4227989, + 13.3185449 + ], + [ + 52.4226606, + 13.3183762 + ], + [ + 52.4225216, + 13.31821 + ], + [ + 52.4222727, + 13.3179205 + ], + [ + 52.422022, + 13.3176306 + ], + [ + 52.421736, + 13.317308 + ], + [ + 52.4215377, + 13.3170905 + ], + [ + 52.4210293, + 13.3165434 + ], + [ + 52.4207909, + 13.3162933 + ], + [ + 52.4205514, + 13.3160468 + ], + [ + 52.4203685, + 13.3158609 + ], + [ + 52.4201846, + 13.3156785 + ], + [ + 52.4201756, + 13.3156696 + ] + ] + }, + { + "osmId": "44734163", + "name": "Anhalter Bahn", + "lengthMeters": 1558.6393773657671, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4180585, + 13.313815 + ], + [ + 52.4178884, + 13.3136849 + ], + [ + 52.4167739, + 13.3128307 + ], + [ + 52.416237, + 13.3124209 + ], + [ + 52.4159414, + 13.3122021 + ], + [ + 52.4156458, + 13.311987 + ], + [ + 52.4150643, + 13.311585 + ], + [ + 52.414524, + 13.3112266 + ], + [ + 52.4140199, + 13.3109121 + ], + [ + 52.4137453, + 13.3107473 + ], + [ + 52.4134703, + 13.3105835 + ], + [ + 52.4132537, + 13.3104602 + ], + [ + 52.4128757, + 13.3102494 + ], + [ + 52.4122766, + 13.3099345 + ], + [ + 52.4121008, + 13.309844 + ], + [ + 52.4116578, + 13.3096278 + ], + [ + 52.4110534, + 13.3093405 + ], + [ + 52.4104325, + 13.3090446 + ], + [ + 52.4098271, + 13.3087624 + ], + [ + 52.4095453, + 13.3086362 + ], + [ + 52.4092631, + 13.3085125 + ], + [ + 52.4086357, + 13.3082475 + ], + [ + 52.4080257, + 13.3079941 + ], + [ + 52.4061806, + 13.3072243 + ], + [ + 52.404779, + 13.3066404 + ] + ] + }, + { + "osmId": "44734164", + "name": "Anhalter Bahn", + "lengthMeters": 123.54851287685297, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4192994, + 13.3148449 + ], + [ + 52.4190339, + 13.3146124 + ], + [ + 52.4187936, + 13.3144088 + ], + [ + 52.4185525, + 13.3142106 + ], + [ + 52.4183105, + 13.3140146 + ] + ] + }, + { + "osmId": "44820820", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 9350.142079389798, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6569114, + 13.1858194 + ], + [ + 52.6565065, + 13.1843233 + ], + [ + 52.6564456, + 13.1841068 + ], + [ + 52.6564047, + 13.1839725 + ], + [ + 52.65595, + 13.1824792 + ], + [ + 52.6553865, + 13.180841 + ], + [ + 52.6547959, + 13.179244 + ], + [ + 52.6539768, + 13.1772888 + ], + [ + 52.6532752, + 13.175695 + ], + [ + 52.653137, + 13.1753811 + ], + [ + 52.6451904, + 13.1574175 + ], + [ + 52.6439544, + 13.1546082 + ], + [ + 52.6412996, + 13.1486071 + ], + [ + 52.6412647, + 13.1485282 + ], + [ + 52.6372858, + 13.1395258 + ], + [ + 52.6349478, + 13.1342204 + ], + [ + 52.6349066, + 13.1341271 + ], + [ + 52.6343959, + 13.1329682 + ], + [ + 52.6333046, + 13.1305262 + ], + [ + 52.6295213, + 13.1219653 + ], + [ + 52.6294823, + 13.121877 + ], + [ + 52.6292702, + 13.1213972 + ], + [ + 52.6290305, + 13.120852 + ], + [ + 52.6289861, + 13.120747 + ], + [ + 52.6289475, + 13.1206644 + ], + [ + 52.6285287, + 13.1197278 + ], + [ + 52.6284028, + 13.1194463 + ], + [ + 52.6277871, + 13.1180543 + ], + [ + 52.6276169, + 13.1176694 + ], + [ + 52.6265806, + 13.1153263 + ], + [ + 52.6265424, + 13.11524 + ], + [ + 52.6254878, + 13.1128557 + ], + [ + 52.6244677, + 13.1105494 + ], + [ + 52.6242159, + 13.1099801 + ], + [ + 52.6214571, + 13.1037433 + ], + [ + 52.6192587, + 13.0987737 + ], + [ + 52.6191846, + 13.0986062 + ], + [ + 52.619134, + 13.0984913 + ], + [ + 52.6162593, + 13.0919618 + ], + [ + 52.614925, + 13.0889654 + ], + [ + 52.6138299, + 13.0865252 + ], + [ + 52.6135911, + 13.0859931 + ], + [ + 52.6132867, + 13.0853147 + ], + [ + 52.6131335, + 13.0849846 + ], + [ + 52.6121663, + 13.0828999 + ], + [ + 52.6120204, + 13.0825854 + ], + [ + 52.6107081, + 13.0798888 + ], + [ + 52.6095436, + 13.0776209 + ], + [ + 52.6091508, + 13.076856 + ], + [ + 52.6081863, + 13.0750337 + ], + [ + 52.6077948, + 13.074294 + ], + [ + 52.6075385, + 13.0738099 + ] + ] + }, + { + "osmId": "44823869", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 628.06003116247, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6652376, + 13.2321354 + ], + [ + 52.6646719, + 13.2289044 + ], + [ + 52.6644859, + 13.2278439 + ], + [ + 52.664309, + 13.2268288 + ], + [ + 52.6636801, + 13.2231833 + ] + ] + }, + { + "osmId": "44823870", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 189.35878031533167, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6705024, + 13.2617205 + ], + [ + 52.6700635, + 13.2594639 + ], + [ + 52.6699823, + 13.2590464 + ] + ] + }, + { + "osmId": "44823871", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 194.35985111735172, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6633491, + 13.2212957 + ], + [ + 52.6628898, + 13.2187139 + ], + [ + 52.6628676, + 13.2185891 + ], + [ + 52.6628572, + 13.2185302 + ] + ] + }, + { + "osmId": "44823872", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 132.51211883392963, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6636801, + 13.2231833 + ], + [ + 52.6633491, + 13.2212957 + ] + ] + }, + { + "osmId": "44823876", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 443.24828307050257, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6665149, + 13.2394529 + ], + [ + 52.6658617, + 13.2357122 + ], + [ + 52.6658287, + 13.2355225 + ], + [ + 52.6655331, + 13.2338249 + ], + [ + 52.6654117, + 13.2331367 + ] + ] + }, + { + "osmId": "44829139", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 157.635186887111, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6618138, + 13.2125672 + ], + [ + 52.6617738, + 13.2123255 + ], + [ + 52.6614231, + 13.2103204 + ] + ] + }, + { + "osmId": "44829140", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 216.40311999409903, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6627037, + 13.2176544 + ], + [ + 52.6622552, + 13.2150945 + ], + [ + 52.662189, + 13.2147186 + ], + [ + 52.6621633, + 13.2145718 + ] + ] + }, + { + "osmId": "44908516", + "name": "Stettiner Bahn", + "lengthMeters": 252.5067643016991, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489148, + 13.3931601 + ], + [ + 52.5488146, + 13.3912933 + ], + [ + 52.5487581, + 13.3901723 + ], + [ + 52.5487211, + 13.3894393 + ] + ] + }, + { + "osmId": "44908522", + "name": "Stettiner Bahn", + "lengthMeters": 141.11835471126162, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5487598, + 13.3879524 + ], + [ + 52.5487131, + 13.3875277 + ], + [ + 52.5486207, + 13.3868497 + ], + [ + 52.5485408, + 13.3861528 + ], + [ + 52.5485148, + 13.385905 + ] + ] + }, + { + "osmId": "44908527", + "name": null, + "lengthMeters": 97.51199249389119, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.548987, + 13.3894263 + ], + [ + 52.5490279, + 13.3903152 + ], + [ + 52.5490424, + 13.3906962 + ], + [ + 52.549047, + 13.3908021 + ], + [ + 52.54905, + 13.3908647 + ] + ] + }, + { + "osmId": "44908530", + "name": "Berliner Ringbahn", + "lengthMeters": 80.38885416355336, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5486588, + 13.3894369 + ], + [ + 52.5486265, + 13.3889218 + ], + [ + 52.5485822, + 13.3882547 + ] + ] + }, + { + "osmId": "44908532", + "name": "Berliner Ringbahn", + "lengthMeters": 194.27726124889597, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5488118, + 13.3922991 + ], + [ + 52.5488041, + 13.3921535 + ], + [ + 52.5487361, + 13.39087 + ], + [ + 52.5487176, + 13.3905263 + ], + [ + 52.5486588, + 13.3894369 + ] + ] + }, + { + "osmId": "44908540", + "name": "Berliner Ringbahn", + "lengthMeters": 168.58242930158477, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483866, + 13.3858583 + ], + [ + 52.5483893, + 13.3859213 + ], + [ + 52.5483915, + 13.385985 + ], + [ + 52.5483975, + 13.3861471 + ], + [ + 52.5484127, + 13.3864651 + ], + [ + 52.5484482, + 13.3874005 + ], + [ + 52.5484549, + 13.387563 + ], + [ + 52.5484588, + 13.3876704 + ], + [ + 52.5484637, + 13.3878435 + ], + [ + 52.5484759, + 13.388347 + ] + ] + }, + { + "osmId": "44908545", + "name": null, + "lengthMeters": 86.25945958277448, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491767, + 13.3894723 + ], + [ + 52.5491632, + 13.3892015 + ], + [ + 52.5491583, + 13.3891004 + ], + [ + 52.5491438, + 13.3887491 + ], + [ + 52.549136, + 13.3885913 + ], + [ + 52.5491132, + 13.3882667 + ], + [ + 52.5491082, + 13.3882018 + ] + ] + }, + { + "osmId": "44908549", + "name": null, + "lengthMeters": 80.23303309206456, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549327, + 13.3894051 + ], + [ + 52.5493068, + 13.3890629 + ], + [ + 52.549268, + 13.3886396 + ], + [ + 52.5492129, + 13.3882349 + ] + ] + }, + { + "osmId": "44908553", + "name": null, + "lengthMeters": 198.70789703750688, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.548441, + 13.3894684 + ], + [ + 52.5485007, + 13.3906028 + ], + [ + 52.5485137, + 13.3908512 + ], + [ + 52.548532, + 13.3911988 + ], + [ + 52.5485588, + 13.3916807 + ], + [ + 52.5485992, + 13.3923956 + ] + ] + }, + { + "osmId": "45046057", + "name": null, + "lengthMeters": 128.17342917938547, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.560337, + 9.990206 + ], + [ + 53.5603829, + 9.9901475 + ], + [ + 53.5612092, + 9.9890896 + ], + [ + 53.5612548, + 9.9890319 + ] + ] + }, + { + "osmId": "45046058", + "name": null, + "lengthMeters": 269.75315796693843, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5583086, + 9.9933522 + ], + [ + 53.5588592, + 9.9922288 + ], + [ + 53.5591199, + 9.9917131 + ], + [ + 53.559301, + 9.9914097 + ], + [ + 53.5593973, + 9.9912655 + ], + [ + 53.5596006, + 9.9910194 + ], + [ + 53.5598977, + 9.9906998 + ], + [ + 53.5599999, + 9.9905911 + ], + [ + 53.560044, + 9.9905502 + ] + ] + }, + { + "osmId": "45100025", + "name": null, + "lengthMeters": 3365.3149934480834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1393306, + 11.5606526 + ], + [ + 48.1393286, + 11.5606109 + ], + [ + 48.1393181, + 11.5604467 + ], + [ + 48.1392966, + 11.5600865 + ], + [ + 48.1392887, + 11.5598834 + ], + [ + 48.139273, + 11.5590982 + ], + [ + 48.1392684, + 11.5588551 + ], + [ + 48.1392683, + 11.5588081 + ], + [ + 48.13927, + 11.5586461 + ], + [ + 48.1392654, + 11.5584564 + ], + [ + 48.1392613, + 11.5582935 + ], + [ + 48.1392544, + 11.5581644 + ], + [ + 48.1392445, + 11.5580519 + ], + [ + 48.1392195, + 11.5578187 + ], + [ + 48.1392091, + 11.55768 + ], + [ + 48.1392037, + 11.5575409 + ], + [ + 48.1391833, + 11.5560658 + ], + [ + 48.1391814, + 11.5559508 + ], + [ + 48.1391794, + 11.5558203 + ], + [ + 48.1391675, + 11.5554003 + ], + [ + 48.1391477, + 11.5547007 + ], + [ + 48.1391229, + 11.5539504 + ], + [ + 48.1390614, + 11.5520815 + ], + [ + 48.1390524, + 11.5518096 + ], + [ + 48.1390466, + 11.5516426 + ], + [ + 48.1390422, + 11.5515147 + ], + [ + 48.1390245, + 11.5510286 + ], + [ + 48.1390086, + 11.5505893 + ], + [ + 48.1389964, + 11.5501467 + ], + [ + 48.1389929, + 11.5500036 + ], + [ + 48.1389893, + 11.5498467 + ], + [ + 48.1389853, + 11.5497466 + ], + [ + 48.1389816, + 11.5495656 + ], + [ + 48.1389756, + 11.5492408 + ], + [ + 48.138976, + 11.5492044 + ], + [ + 48.1389775, + 11.5490976 + ], + [ + 48.1389904, + 11.5489184 + ], + [ + 48.1390135, + 11.5487158 + ], + [ + 48.1391538, + 11.5477772 + ], + [ + 48.139195, + 11.5475224 + ], + [ + 48.1392258, + 11.54732 + ], + [ + 48.1392337, + 11.5472559 + ], + [ + 48.1392532, + 11.5471179 + ], + [ + 48.139274, + 11.546949 + ], + [ + 48.1392874, + 11.5468205 + ], + [ + 48.139309, + 11.5465872 + ], + [ + 48.1393231, + 11.5463768 + ], + [ + 48.1393454, + 11.5460133 + ], + [ + 48.1393728, + 11.5455285 + ], + [ + 48.1394671, + 11.5439476 + ], + [ + 48.1395697, + 11.5421977 + ], + [ + 48.1396005, + 11.5416738 + ], + [ + 48.1396098, + 11.5415257 + ], + [ + 48.1396313, + 11.5411657 + ], + [ + 48.1396682, + 11.5405815 + ], + [ + 48.1397687, + 11.5391139 + ], + [ + 48.1398246, + 11.5382992 + ], + [ + 48.139828, + 11.5382499 + ], + [ + 48.1398417, + 11.5380497 + ], + [ + 48.1398456, + 11.5379943 + ], + [ + 48.1399153, + 11.5367831 + ], + [ + 48.1399708, + 11.5355039 + ], + [ + 48.139991, + 11.5351608 + ], + [ + 48.1400034, + 11.5348989 + ], + [ + 48.1400158, + 11.5347178 + ], + [ + 48.1400578, + 11.5340419 + ], + [ + 48.140068, + 11.5338771 + ], + [ + 48.140087, + 11.5335999 + ], + [ + 48.1401208, + 11.5330522 + ], + [ + 48.1402157, + 11.5314977 + ], + [ + 48.1402844, + 11.5304794 + ], + [ + 48.1403029, + 11.5302277 + ], + [ + 48.1403591, + 11.5292577 + ], + [ + 48.1404296, + 11.5282096 + ], + [ + 48.1404532, + 11.5278274 + ], + [ + 48.1406241, + 11.5256595 + ], + [ + 48.140716, + 11.5244763 + ], + [ + 48.1407332, + 11.5242523 + ], + [ + 48.1407543, + 11.5240014 + ], + [ + 48.1407856, + 11.5236005 + ], + [ + 48.1408272, + 11.5231907 + ], + [ + 48.1408652, + 11.52285 + ], + [ + 48.1409424, + 11.5221485 + ], + [ + 48.1410089, + 11.5215723 + ], + [ + 48.1411226, + 11.5205815 + ], + [ + 48.1412373, + 11.5195933 + ], + [ + 48.1412995, + 11.5190756 + ], + [ + 48.1413049, + 11.5190152 + ], + [ + 48.1413045, + 11.51898 + ], + [ + 48.1413042, + 11.5189434 + ], + [ + 48.1412923, + 11.5188675 + ], + [ + 48.1412794, + 11.518802 + ], + [ + 48.1412514, + 11.5187489 + ], + [ + 48.141226, + 11.5187084 + ], + [ + 48.1412013, + 11.5186832 + ], + [ + 48.1411711, + 11.5186602 + ], + [ + 48.1411451, + 11.5186488 + ], + [ + 48.141084, + 11.5186285 + ], + [ + 48.1402462, + 11.5184134 + ], + [ + 48.1401625, + 11.5183888 + ], + [ + 48.1400969, + 11.5183669 + ], + [ + 48.1399683, + 11.5183222 + ], + [ + 48.1399282, + 11.5183076 + ], + [ + 48.139549, + 11.5181692 + ], + [ + 48.1391901, + 11.5180252 + ] + ] + }, + { + "osmId": "45283160", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1903.008837675397, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5775087, + 13.4976746 + ], + [ + 52.5769006, + 13.498461 + ], + [ + 52.5764513, + 13.4990344 + ], + [ + 52.5762911, + 13.4992388 + ], + [ + 52.5745226, + 13.5015084 + ], + [ + 52.5731609, + 13.5032486 + ], + [ + 52.5727528, + 13.5037702 + ], + [ + 52.5716688, + 13.5051568 + ], + [ + 52.5714511, + 13.5054352 + ], + [ + 52.5679553, + 13.5099065 + ], + [ + 52.5657672, + 13.5127049 + ], + [ + 52.5652508, + 13.5133724 + ], + [ + 52.5650774, + 13.5135955 + ], + [ + 52.564128, + 13.5148171 + ], + [ + 52.5640052, + 13.514974 + ] + ] + }, + { + "osmId": "45284149", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1330.90813083513, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5871108, + 13.4853739 + ], + [ + 52.5853607, + 13.4876202 + ], + [ + 52.5825174, + 13.4912693 + ], + [ + 52.5801465, + 13.4943011 + ], + [ + 52.579955, + 13.4945461 + ], + [ + 52.5776657, + 13.4974734 + ] + ] + }, + { + "osmId": "45339534", + "name": "ehem. Stettiner Bahn", + "lengthMeters": 96.39895044518185, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5398066, + 13.3799201 + ], + [ + 52.5406652, + 13.3797229 + ] + ] + }, + { + "osmId": "45396011", + "name": null, + "lengthMeters": 144.08374520759412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5645125, + 9.8155322 + ], + [ + 53.5647374, + 9.8163461 + ], + [ + 53.5647813, + 9.8164964 + ], + [ + 53.5648876, + 9.8168384 + ], + [ + 53.5649348, + 9.8170008 + ], + [ + 53.5649839, + 9.817186 + ], + [ + 53.565022, + 9.8173386 + ], + [ + 53.5650612, + 9.8175076 + ] + ] + }, + { + "osmId": "45396012", + "name": null, + "lengthMeters": 198.52168532697004, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5646456, + 9.8154294 + ], + [ + 53.565001, + 9.8167376 + ], + [ + 53.5650294, + 9.8168492 + ], + [ + 53.565055, + 9.8169601 + ], + [ + 53.5650844, + 9.8170939 + ], + [ + 53.5650871, + 9.817105 + ], + [ + 53.5651248, + 9.8172967 + ], + [ + 53.5651557, + 9.8174644 + ], + [ + 53.5651843, + 9.8176283 + ], + [ + 53.5652834, + 9.8182297 + ] + ] + }, + { + "osmId": "45661919", + "name": null, + "lengthMeters": 76.0456284335926, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5083562, + 13.4767731 + ], + [ + 52.508231, + 13.4768725 + ], + [ + 52.5081329, + 13.476957 + ], + [ + 52.5080312, + 13.4770512 + ], + [ + 52.5079652, + 13.4771133 + ], + [ + 52.507899, + 13.477182 + ], + [ + 52.5078555, + 13.477229 + ], + [ + 52.5077643, + 13.4773327 + ] + ] + }, + { + "osmId": "45662296", + "name": null, + "lengthMeters": 245.1404253579762, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118245, + 13.475708 + ], + [ + 52.5113108, + 13.4758351 + ], + [ + 52.5109579, + 13.4759209 + ], + [ + 52.5102482, + 13.4760923 + ], + [ + 52.5096996, + 13.4762293 + ], + [ + 52.5096441, + 13.4762432 + ] + ] + }, + { + "osmId": "45662297", + "name": null, + "lengthMeters": 126.7150500249364, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5134288, + 13.4753326 + ], + [ + 52.5129856, + 13.4754231 + ], + [ + 52.512572, + 13.4755257 + ], + [ + 52.5123004, + 13.4755931 + ] + ] + }, + { + "osmId": "45669403", + "name": null, + "lengthMeters": 143.40937032995126, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.497083, + 13.4871164 + ], + [ + 52.4970025, + 13.487223 + ], + [ + 52.4969321, + 13.4873316 + ], + [ + 52.4968783, + 13.4874273 + ], + [ + 52.4967939, + 13.4875913 + ], + [ + 52.4967432, + 13.4877025 + ], + [ + 52.4966867, + 13.4878318 + ], + [ + 52.496602, + 13.4880213 + ], + [ + 52.4964728, + 13.4883113 + ], + [ + 52.4963715, + 13.4885236 + ], + [ + 52.4962687, + 13.4887503 + ] + ] + }, + { + "osmId": "45669739", + "name": null, + "lengthMeters": 237.57088041075073, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983854, + 13.4859617 + ], + [ + 52.4981031, + 13.4866103 + ], + [ + 52.4975517, + 13.4879468 + ], + [ + 52.4971813, + 13.4888604 + ] + ] + }, + { + "osmId": "45670556", + "name": null, + "lengthMeters": 786.8681070669924, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4929893, + 13.4982442 + ], + [ + 52.492057, + 13.500369 + ], + [ + 52.4904256, + 13.5040871 + ], + [ + 52.4893372, + 13.5065569 + ], + [ + 52.4888477, + 13.5076678 + ] + ] + }, + { + "osmId": "45869055", + "name": null, + "lengthMeters": 126.41481658294106, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5688382, + 13.4454495 + ], + [ + 52.5689368, + 13.4453846 + ], + [ + 52.569024, + 13.4453257 + ], + [ + 52.5691147, + 13.4452698 + ], + [ + 52.5692091, + 13.4452206 + ], + [ + 52.569547, + 13.445072 + ], + [ + 52.5696311, + 13.4450389 + ], + [ + 52.5696927, + 13.4450177 + ], + [ + 52.5697722, + 13.4449988 + ], + [ + 52.5699322, + 13.4449687 + ] + ] + }, + { + "osmId": "45869062", + "name": null, + "lengthMeters": 151.44128191434865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.566929, + 13.4393156 + ], + [ + 52.5670606, + 13.4397988 + ], + [ + 52.5670749, + 13.4398476 + ], + [ + 52.5670923, + 13.4398952 + ], + [ + 52.5671127, + 13.4399405 + ], + [ + 52.567139, + 13.4399825 + ], + [ + 52.5671634, + 13.4400151 + ], + [ + 52.5671934, + 13.4400412 + ], + [ + 52.5672524, + 13.4400742 + ], + [ + 52.5672753, + 13.4400801 + ], + [ + 52.5673024, + 13.4400817 + ], + [ + 52.5673298, + 13.4400777 + ], + [ + 52.5673703, + 13.4400637 + ], + [ + 52.567415, + 13.4400401 + ], + [ + 52.56778, + 13.4398195 + ], + [ + 52.5678286, + 13.439781 + ], + [ + 52.5678644, + 13.439746 + ], + [ + 52.5679707, + 13.4396402 + ] + ] + }, + { + "osmId": "45869063", + "name": null, + "lengthMeters": 146.72269232504763, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5679707, + 13.4396402 + ], + [ + 52.5679208, + 13.4396737 + ], + [ + 52.5678675, + 13.4397053 + ], + [ + 52.5678355, + 13.4397295 + ], + [ + 52.567753, + 13.4397866 + ], + [ + 52.5674184, + 13.4399957 + ], + [ + 52.5673806, + 13.440017 + ], + [ + 52.5673386, + 13.4400297 + ], + [ + 52.5673014, + 13.4400364 + ], + [ + 52.5672706, + 13.4400345 + ], + [ + 52.5672402, + 13.4400215 + ], + [ + 52.5672091, + 13.4400055 + ], + [ + 52.5671846, + 13.439983 + ], + [ + 52.5671588, + 13.4399527 + ], + [ + 52.567135, + 13.4399118 + ], + [ + 52.5671138, + 13.4398668 + ], + [ + 52.5671006, + 13.4398297 + ], + [ + 52.566929, + 13.4393156 + ] + ] + }, + { + "osmId": "46107068", + "name": null, + "lengthMeters": 84.78501492560785, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2488502, + 11.6322323 + ], + [ + 48.2486699, + 11.6320385 + ], + [ + 48.2485092, + 11.6318841 + ], + [ + 48.2483226, + 11.6317284 + ], + [ + 48.2482003, + 11.6316373 + ] + ] + }, + { + "osmId": "46113994", + "name": null, + "lengthMeters": 1061.7492840140505, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1776663, + 11.5887368 + ], + [ + 48.1784962, + 11.5889104 + ], + [ + 48.1792457, + 11.5890918 + ], + [ + 48.1793217, + 11.5891102 + ], + [ + 48.1795387, + 11.5891674 + ], + [ + 48.1796887, + 11.5892099 + ], + [ + 48.179849, + 11.589251 + ], + [ + 48.17998, + 11.5892852 + ], + [ + 48.1816279, + 11.589719 + ], + [ + 48.1835786, + 11.5902326 + ], + [ + 48.1839671, + 11.5903303 + ], + [ + 48.1840068, + 11.5903435 + ], + [ + 48.1851601, + 11.5906504 + ], + [ + 48.1853786, + 11.590733 + ], + [ + 48.1857586, + 11.5909363 + ], + [ + 48.1861317, + 11.5911532 + ], + [ + 48.1863862, + 11.5913196 + ], + [ + 48.1864868, + 11.591374 + ], + [ + 48.186535, + 11.5913964 + ], + [ + 48.1865866, + 11.5914192 + ], + [ + 48.1866388, + 11.5914414 + ], + [ + 48.1866788, + 11.5914553 + ], + [ + 48.1867179, + 11.5914669 + ], + [ + 48.1867705, + 11.5914821 + ], + [ + 48.1870064, + 11.591547 + ] + ] + }, + { + "osmId": "46138142", + "name": null, + "lengthMeters": 602.1255366985521, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537664, + 13.4139794 + ], + [ + 52.5537518, + 13.4141648 + ], + [ + 52.5537447, + 13.4142573 + ], + [ + 52.5537377, + 13.4143478 + ], + [ + 52.5537353, + 13.4143788 + ], + [ + 52.5537334, + 13.4144032 + ], + [ + 52.5537233, + 13.4145442 + ], + [ + 52.5537168, + 13.4146355 + ], + [ + 52.5537127, + 13.4146928 + ], + [ + 52.5537025, + 13.4147819 + ], + [ + 52.5536955, + 13.4148426 + ], + [ + 52.5535748, + 13.4159475 + ], + [ + 52.5534273, + 13.4173154 + ], + [ + 52.5533145, + 13.4183873 + ], + [ + 52.5532989, + 13.4185309 + ], + [ + 52.553267, + 13.4188062 + ], + [ + 52.5531438, + 13.4199246 + ], + [ + 52.5530299, + 13.4209451 + ], + [ + 52.5528878, + 13.4222325 + ], + [ + 52.5528698, + 13.4224138 + ], + [ + 52.5528344, + 13.4227514 + ] + ] + }, + { + "osmId": "46138145", + "name": null, + "lengthMeters": 255.94523385666216, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5709911, + 13.4093394 + ], + [ + 52.5709868, + 13.4093112 + ], + [ + 52.5709812, + 13.4092784 + ], + [ + 52.5709135, + 13.4089125 + ], + [ + 52.5708529, + 13.4086012 + ], + [ + 52.5708173, + 13.4084374 + ], + [ + 52.5707736, + 13.408266 + ], + [ + 52.5707544, + 13.4081984 + ], + [ + 52.5703983, + 13.4070293 + ], + [ + 52.570332, + 13.406806 + ], + [ + 52.5700897, + 13.4058628 + ] + ] + }, + { + "osmId": "46138159", + "name": null, + "lengthMeters": 192.7587414265446, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5702025, + 13.4076756 + ], + [ + 52.5703876, + 13.4084488 + ], + [ + 52.5703917, + 13.4084656 + ], + [ + 52.5705429, + 13.4090875 + ], + [ + 52.5705747, + 13.4092097 + ], + [ + 52.5705914, + 13.4092682 + ], + [ + 52.5706135, + 13.4093348 + ], + [ + 52.5706292, + 13.4093804 + ], + [ + 52.570675, + 13.4094974 + ], + [ + 52.5706947, + 13.4095455 + ], + [ + 52.5707214, + 13.4096084 + ], + [ + 52.570741, + 13.4096579 + ], + [ + 52.5707531, + 13.4096921 + ], + [ + 52.5707663, + 13.4097386 + ], + [ + 52.5707742, + 13.40977 + ], + [ + 52.570781, + 13.409806 + ], + [ + 52.5707829, + 13.4098196 + ], + [ + 52.5707845, + 13.4098356 + ], + [ + 52.5707868, + 13.4098623 + ], + [ + 52.5707873, + 13.40989 + ], + [ + 52.5707874, + 13.4099181 + ], + [ + 52.5707865, + 13.4099352 + ], + [ + 52.5707839, + 13.4099593 + ], + [ + 52.5707806, + 13.4099788 + ], + [ + 52.5707769, + 13.410002 + ], + [ + 52.5707705, + 13.4100315 + ], + [ + 52.5707624, + 13.4100616 + ], + [ + 52.570753, + 13.4100872 + ], + [ + 52.570742, + 13.4101153 + ], + [ + 52.570728, + 13.410142 + ], + [ + 52.5707142, + 13.4101655 + ], + [ + 52.5706979, + 13.4101892 + ], + [ + 52.5706774, + 13.4102155 + ], + [ + 52.5706576, + 13.4102369 + ] + ] + }, + { + "osmId": "46154760", + "name": null, + "lengthMeters": 173.8173573651349, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1030787, + 11.599881 + ], + [ + 48.1029384, + 11.5999574 + ], + [ + 48.1026955, + 11.600094 + ], + [ + 48.1024441, + 11.6002452 + ], + [ + 48.1021954, + 11.6004031 + ], + [ + 48.1019999, + 11.6005359 + ], + [ + 48.1017427, + 11.6007106 + ], + [ + 48.1016882, + 11.6007476 + ], + [ + 48.1016368, + 11.6007825 + ] + ] + }, + { + "osmId": "46267113", + "name": "Isartalbahn", + "lengthMeters": 417.43613750195135, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0778265, + 11.5271999 + ], + [ + 48.0776054, + 11.5273083 + ], + [ + 48.0774792, + 11.5273793 + ], + [ + 48.077371, + 11.5274373 + ], + [ + 48.0772788, + 11.5274847 + ], + [ + 48.0771856, + 11.5275433 + ], + [ + 48.0769932, + 11.5276647 + ], + [ + 48.0768103, + 11.5277978 + ], + [ + 48.076671, + 11.5279122 + ], + [ + 48.0765084, + 11.5280503 + ], + [ + 48.076346, + 11.5282013 + ], + [ + 48.076115, + 11.5284411 + ], + [ + 48.0759344, + 11.5286455 + ], + [ + 48.0758185, + 11.5287886 + ], + [ + 48.0757031, + 11.5289392 + ], + [ + 48.0755706, + 11.5291267 + ], + [ + 48.0753493, + 11.5294649 + ], + [ + 48.0751659, + 11.5297756 + ], + [ + 48.0749373, + 11.5301591 + ], + [ + 48.0748024, + 11.5303677 + ] + ] + }, + { + "osmId": "46491011", + "name": null, + "lengthMeters": 466.5389691572406, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426345, + 11.5326276 + ], + [ + 48.1426496, + 11.5329076 + ], + [ + 48.1426505, + 11.5331929 + ], + [ + 48.1425628, + 11.5346283 + ], + [ + 48.1425479, + 11.5349712 + ], + [ + 48.1425376, + 11.5352555 + ], + [ + 48.1425284, + 11.5355094 + ], + [ + 48.1425225, + 11.5358217 + ], + [ + 48.1425329, + 11.5365269 + ], + [ + 48.1425388, + 11.5367744 + ], + [ + 48.1425494, + 11.5372172 + ], + [ + 48.1425583, + 11.5376058 + ], + [ + 48.1425621, + 11.5380101 + ], + [ + 48.1425621, + 11.5380962 + ], + [ + 48.1425565, + 11.5385702 + ], + [ + 48.1425559, + 11.5386255 + ], + [ + 48.1425485, + 11.5389056 + ] + ] + }, + { + "osmId": "46543450", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 300.8660038097701, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6049196, + 9.9245054 + ], + [ + 53.6049369, + 9.9246106 + ], + [ + 53.6055657, + 9.9289336 + ] + ] + }, + { + "osmId": "46596643", + "name": "Anhalter Bahn", + "lengthMeters": 520.6597516134366, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4336671, + 13.3347904 + ], + [ + 52.4331612, + 13.3340147 + ], + [ + 52.4327675, + 13.3334101 + ], + [ + 52.4323069, + 13.3327088 + ], + [ + 52.4318772, + 13.3320691 + ], + [ + 52.4308131, + 13.3304988 + ], + [ + 52.4306073, + 13.3301962 + ], + [ + 52.4302102, + 13.3296108 + ] + ] + }, + { + "osmId": "46673514", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 479.6466271936016, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.095797, + 11.5333754 + ], + [ + 48.0973097, + 11.5339977 + ], + [ + 48.0974846, + 11.5340697 + ], + [ + 48.0999564, + 11.5350867 + ] + ] + }, + { + "osmId": "46830931", + "name": "Kramerkurve", + "lengthMeters": 2913.774981916491, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.332384, + 13.2705763 + ], + [ + 52.3322881, + 13.2701111 + ], + [ + 52.3322094, + 13.2696913 + ], + [ + 52.3320647, + 13.2688348 + ], + [ + 52.3319311, + 13.2680078 + ], + [ + 52.3318292, + 13.267335 + ], + [ + 52.3317516, + 13.266705 + ], + [ + 52.3316972, + 13.2661401 + ], + [ + 52.3316582, + 13.265598 + ], + [ + 52.3316382, + 13.2651409 + ], + [ + 52.3316291, + 13.2647122 + ], + [ + 52.3316334, + 13.2643713 + ], + [ + 52.331648, + 13.2640117 + ], + [ + 52.3316681, + 13.2636999 + ], + [ + 52.3317028, + 13.263278 + ], + [ + 52.3317595, + 13.2628061 + ], + [ + 52.3318266, + 13.2623687 + ], + [ + 52.3319144, + 13.2618968 + ], + [ + 52.3320184, + 13.2614401 + ], + [ + 52.3320988, + 13.261123 + ], + [ + 52.3321846, + 13.2608201 + ], + [ + 52.3322441, + 13.2606184 + ], + [ + 52.3323766, + 13.2602218 + ], + [ + 52.3325257, + 13.2598167 + ], + [ + 52.3326948, + 13.2594074 + ], + [ + 52.3328781, + 13.2590108 + ], + [ + 52.3330571, + 13.2586559 + ], + [ + 52.3332592, + 13.2582973 + ], + [ + 52.3334746, + 13.257958 + ], + [ + 52.33361, + 13.2577568 + ], + [ + 52.3337543, + 13.2575545 + ], + [ + 52.3339322, + 13.2573304 + ], + [ + 52.3341214, + 13.2571074 + ], + [ + 52.3342705, + 13.2569441 + ], + [ + 52.3345254, + 13.2566873 + ], + [ + 52.3346438, + 13.2565768 + ], + [ + 52.3348015, + 13.2564399 + ], + [ + 52.3349585, + 13.2563193 + ], + [ + 52.3352365, + 13.2561133 + ], + [ + 52.3354879, + 13.2559609 + ], + [ + 52.3356726, + 13.2558605 + ], + [ + 52.3358763, + 13.255762 + ], + [ + 52.3360405, + 13.2556862 + ], + [ + 52.3362038, + 13.2556259 + ], + [ + 52.336316, + 13.2555874 + ], + [ + 52.3365043, + 13.2555319 + ], + [ + 52.3367065, + 13.2554876 + ], + [ + 52.3369493, + 13.2554421 + ], + [ + 52.3371991, + 13.2554149 + ], + [ + 52.3374614, + 13.2554072 + ], + [ + 52.337604, + 13.2554112 + ], + [ + 52.3378023, + 13.255426 + ], + [ + 52.3380143, + 13.2554608 + ], + [ + 52.3381888, + 13.2554895 + ], + [ + 52.3382305, + 13.2554983 + ], + [ + 52.3383777, + 13.2555278 + ], + [ + 52.338561, + 13.2555809 + ], + [ + 52.3387242, + 13.2556365 + ], + [ + 52.3389552, + 13.2557291 + ], + [ + 52.3392658, + 13.2558739 + ], + [ + 52.3393988, + 13.2559518 + ], + [ + 52.3395345, + 13.2560348 + ], + [ + 52.3397189, + 13.2561529 + ], + [ + 52.3398758, + 13.2562636 + ], + [ + 52.3401589, + 13.2564921 + ], + [ + 52.3403384, + 13.2566491 + ], + [ + 52.340499, + 13.2568059 + ], + [ + 52.340661, + 13.2569728 + ], + [ + 52.3407996, + 13.2571278 + ], + [ + 52.3409939, + 13.2573572 + ], + [ + 52.341175, + 13.2575905 + ], + [ + 52.3413175, + 13.2577877 + ], + [ + 52.3414518, + 13.2579929 + ], + [ + 52.3415928, + 13.2582141 + ], + [ + 52.3417216, + 13.2584346 + ], + [ + 52.3418935, + 13.2587412 + ], + [ + 52.3420371, + 13.259026 + ], + [ + 52.3422132, + 13.2594162 + ], + [ + 52.3423892, + 13.2598409 + ], + [ + 52.3425508, + 13.2602799 + ], + [ + 52.3426547, + 13.2605946 + ], + [ + 52.3427475, + 13.2608995 + ], + [ + 52.3428726, + 13.2613684 + ], + [ + 52.3429949, + 13.2618584 + ], + [ + 52.343083, + 13.2622503 + ], + [ + 52.3437488, + 13.2651093 + ], + [ + 52.3440206, + 13.2662907 + ], + [ + 52.3440958, + 13.2666497 + ], + [ + 52.3441608, + 13.2669815 + ], + [ + 52.3442099, + 13.2672741 + ], + [ + 52.3442657, + 13.2676453 + ], + [ + 52.3443106, + 13.2680209 + ], + [ + 52.3443434, + 13.2683681 + ], + [ + 52.344372, + 13.2687123 + ], + [ + 52.3443877, + 13.269024 + ], + [ + 52.3443967, + 13.2693284 + ], + [ + 52.3444015, + 13.2696419 + ], + [ + 52.3443974, + 13.2699904 + ], + [ + 52.3443876, + 13.270306 + ], + [ + 52.3443728, + 13.2706194 + ], + [ + 52.3443516, + 13.2709062 + ], + [ + 52.3443195, + 13.2712658 + ], + [ + 52.3442851, + 13.2715559 + ], + [ + 52.3442665, + 13.271699 + ] + ] + }, + { + "osmId": "46843154", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 208.9606232244165, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4554334, + 13.5082498 + ], + [ + 52.455356, + 13.5083674 + ], + [ + 52.4552645, + 13.508506 + ], + [ + 52.4550989, + 13.5087615 + ], + [ + 52.4547954, + 13.5092306 + ], + [ + 52.4541584, + 13.5102156 + ], + [ + 52.4541418, + 13.5102417 + ], + [ + 52.4540638, + 13.5103613 + ] + ] + }, + { + "osmId": "46843155", + "name": null, + "lengthMeters": 1037.6620061803821, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4104849, + 13.5763016 + ], + [ + 52.410317, + 13.5765267 + ], + [ + 52.4100775, + 13.5768325 + ], + [ + 52.409918, + 13.577062 + ], + [ + 52.4098865, + 13.5771073 + ], + [ + 52.4096298, + 13.577449 + ], + [ + 52.4095458, + 13.5775609 + ], + [ + 52.4092163, + 13.5780514 + ], + [ + 52.4087841, + 13.5787669 + ], + [ + 52.4081451, + 13.5798246 + ], + [ + 52.4067801, + 13.5821216 + ], + [ + 52.405987, + 13.5834653 + ], + [ + 52.4053996, + 13.5844108 + ], + [ + 52.4050381, + 13.5849687 + ], + [ + 52.4049517, + 13.5851057 + ], + [ + 52.4045954, + 13.5856323 + ], + [ + 52.4042091, + 13.5862044 + ], + [ + 52.4039462, + 13.5865956 + ], + [ + 52.403756, + 13.5868831 + ] + ] + }, + { + "osmId": "46872097", + "name": "Anhalter Bahn", + "lengthMeters": 2834.8711307934336, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3236656, + 13.2742333 + ], + [ + 52.3237048, + 13.274245 + ], + [ + 52.3238769, + 13.2742941 + ], + [ + 52.3254506, + 13.2747575 + ], + [ + 52.3257219, + 13.2748377 + ], + [ + 52.3267779, + 13.2751475 + ], + [ + 52.3274357, + 13.2753414 + ], + [ + 52.3276212, + 13.2753946 + ], + [ + 52.3282427, + 13.2755801 + ], + [ + 52.3286995, + 13.2757294 + ], + [ + 52.329201, + 13.2758989 + ], + [ + 52.329772, + 13.2761055 + ], + [ + 52.3303364, + 13.2763236 + ], + [ + 52.3309938, + 13.2765867 + ], + [ + 52.3315025, + 13.2767943 + ], + [ + 52.3326852, + 13.2772811 + ], + [ + 52.3330966, + 13.2774504 + ], + [ + 52.3335642, + 13.2776435 + ], + [ + 52.334628, + 13.278082 + ], + [ + 52.3347464, + 13.2781305 + ], + [ + 52.3351514, + 13.2782939 + ], + [ + 52.3361113, + 13.278689 + ], + [ + 52.3365167, + 13.2788563 + ], + [ + 52.3374525, + 13.2792401 + ], + [ + 52.3380366, + 13.2794806 + ], + [ + 52.3398546, + 13.2802271 + ], + [ + 52.3415415, + 13.2809219 + ], + [ + 52.3426354, + 13.2813727 + ], + [ + 52.3432132, + 13.2816089 + ], + [ + 52.3442757, + 13.2820466 + ], + [ + 52.344932, + 13.282315 + ], + [ + 52.3464834, + 13.2829449 + ], + [ + 52.3475078, + 13.2833615 + ], + [ + 52.3476768, + 13.2834318 + ], + [ + 52.3483873, + 13.2837182 + ], + [ + 52.3484784, + 13.2837541 + ] + ] + }, + { + "osmId": "46897174", + "name": null, + "lengthMeters": 318.77077718821334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5638391, + 9.9348674 + ], + [ + 53.5639171, + 9.9348287 + ], + [ + 53.5639275, + 9.9348243 + ], + [ + 53.5639554, + 9.9348124 + ], + [ + 53.5639985, + 9.934794 + ], + [ + 53.564417, + 9.9346786 + ], + [ + 53.5645138, + 9.9346576 + ], + [ + 53.5647661, + 9.9346028 + ], + [ + 53.5652747, + 9.9344988 + ], + [ + 53.5664102, + 9.934338 + ], + [ + 53.5666811, + 9.9342737 + ] + ] + }, + { + "osmId": "46897175", + "name": null, + "lengthMeters": 187.50870151308087, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.572149, + 9.9327815 + ], + [ + 53.5721766, + 9.9327771 + ], + [ + 53.5724397, + 9.932682 + ], + [ + 53.5727638, + 9.9325215 + ], + [ + 53.5730227, + 9.9323511 + ], + [ + 53.5733626, + 9.9320654 + ], + [ + 53.5737104, + 9.9317543 + ] + ] + }, + { + "osmId": "46897179", + "name": "Pinneberger S-Bahn", + "lengthMeters": 1027.513721522316, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6032885, + 9.8923636 + ], + [ + 53.6033041, + 9.8923322 + ], + [ + 53.6035864, + 9.8917788 + ], + [ + 53.6041788, + 9.8907454 + ], + [ + 53.6049506, + 9.8892558 + ], + [ + 53.6052742, + 9.8886718 + ], + [ + 53.6055739, + 9.8882115 + ], + [ + 53.6061092, + 9.8874314 + ], + [ + 53.6064642, + 9.8869303 + ], + [ + 53.6067673, + 9.8864634 + ], + [ + 53.6070981, + 9.8858839 + ], + [ + 53.6075275, + 9.8849939 + ], + [ + 53.6079288, + 9.8839617 + ], + [ + 53.608672, + 9.8819643 + ], + [ + 53.6090098, + 9.881136 + ], + [ + 53.6092549, + 9.8805793 + ] + ] + }, + { + "osmId": "46897191", + "name": "Pinneberger S-Bahn", + "lengthMeters": 530.9811533246556, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5996171, + 9.8995728 + ], + [ + 53.5999777, + 9.8987861 + ], + [ + 53.6002718, + 9.8981723 + ], + [ + 53.6007794, + 9.8971913 + ], + [ + 53.6008342, + 9.8970774 + ], + [ + 53.6011254, + 9.8965095 + ], + [ + 53.6014741, + 9.8958675 + ], + [ + 53.6016245, + 9.8955778 + ], + [ + 53.6016979, + 9.8954362 + ], + [ + 53.6020144, + 9.8948356 + ], + [ + 53.602143, + 9.8945788 + ], + [ + 53.6024054, + 9.8940808 + ], + [ + 53.6024464, + 9.894002 + ], + [ + 53.6027249, + 9.8934664 + ] + ] + }, + { + "osmId": "46897194", + "name": null, + "lengthMeters": 341.2824606691469, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5964577, + 9.9055699 + ], + [ + 53.5970848, + 9.904281 + ], + [ + 53.5975217, + 9.9034088 + ], + [ + 53.5979756, + 9.9025105 + ], + [ + 53.5984262, + 9.9016021 + ] + ] + }, + { + "osmId": "46897195", + "name": null, + "lengthMeters": 185.53812658094273, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5965749, + 9.9056615 + ], + [ + 53.5969028, + 9.9049084 + ], + [ + 53.5970114, + 9.9046893 + ], + [ + 53.5972202, + 9.904268 + ], + [ + 53.597641, + 9.9035028 + ] + ] + }, + { + "osmId": "46897196", + "name": null, + "lengthMeters": 344.58909086602233, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5953931, + 9.9077829 + ], + [ + 53.5951117, + 9.9083144 + ], + [ + 53.5950094, + 9.9085165 + ], + [ + 53.5948758, + 9.9087761 + ], + [ + 53.5945772, + 9.9093525 + ], + [ + 53.5943026, + 9.9098912 + ], + [ + 53.5938665, + 9.9107734 + ], + [ + 53.5934444, + 9.9116241 + ], + [ + 53.593381, + 9.9117536 + ] + ] + }, + { + "osmId": "46897197", + "name": null, + "lengthMeters": 363.22944873536306, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5930504, + 9.9125806 + ], + [ + 53.5934964, + 9.9117337 + ], + [ + 53.5936072, + 9.9115057 + ], + [ + 53.5942368, + 9.9102575 + ], + [ + 53.5943481, + 9.9100354 + ], + [ + 53.5943655, + 9.9100019 + ], + [ + 53.594558, + 9.9096323 + ], + [ + 53.5945766, + 9.9095966 + ], + [ + 53.5950284, + 9.9087257 + ], + [ + 53.5950403, + 9.9087059 + ], + [ + 53.5951892, + 9.908421 + ] + ] + }, + { + "osmId": "46897218", + "name": "Verbindungsbahn", + "lengthMeters": 399.13136320409046, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5612044, + 9.9544598 + ], + [ + 53.5611978, + 9.9543944 + ], + [ + 53.5611634, + 9.9540951 + ], + [ + 53.5611339, + 9.9535772 + ], + [ + 53.5611364, + 9.9530617 + ], + [ + 53.5611585, + 9.9526765 + ], + [ + 53.5611859, + 9.9523707 + ], + [ + 53.5612065, + 9.9521559 + ], + [ + 53.5612765, + 9.9516297 + ], + [ + 53.5613863, + 9.9509505 + ], + [ + 53.5615786, + 9.9499756 + ], + [ + 53.5618222, + 9.9489074 + ], + [ + 53.5618874, + 9.9486198 + ] + ] + }, + { + "osmId": "46897223", + "name": "Verbindungsbahn", + "lengthMeters": 132.84538327756837, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5614992, + 9.9564083 + ], + [ + 53.5614263, + 9.9560134 + ], + [ + 53.5612044, + 9.9544598 + ] + ] + }, + { + "osmId": "46897224", + "name": "Verbindungsbahn", + "lengthMeters": 143.15339038952033, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5614688, + 9.9564203 + ], + [ + 53.5615069, + 9.9565857 + ], + [ + 53.5615374, + 9.9567063 + ], + [ + 53.5616372, + 9.9570527 + ], + [ + 53.5617578, + 9.9573536 + ], + [ + 53.5618556, + 9.9576172 + ], + [ + 53.5621145, + 9.9582883 + ] + ] + }, + { + "osmId": "46897225", + "name": null, + "lengthMeters": 179.49860863624784, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5593362, + 9.9912851 + ], + [ + 53.5591553, + 9.9915688 + ], + [ + 53.559015, + 9.9918263 + ], + [ + 53.5588291, + 9.9921973 + ], + [ + 53.558277, + 9.9933318 + ] + ] + }, + { + "osmId": "46897226", + "name": null, + "lengthMeters": 270.4802647707472, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629212, + 9.9860152 + ], + [ + 53.562693, + 9.9864066 + ], + [ + 53.5626684, + 9.9864496 + ], + [ + 53.5621807, + 9.9873162 + ], + [ + 53.5619634, + 9.9876991 + ], + [ + 53.5617034, + 9.9881544 + ], + [ + 53.5616097, + 9.9883079 + ], + [ + 53.5615904, + 9.9883395 + ], + [ + 53.5615307, + 9.9884324 + ], + [ + 53.56142, + 9.988593 + ], + [ + 53.5613292, + 9.9887204 + ], + [ + 53.5612792, + 9.9887875 + ], + [ + 53.5612468, + 9.9888278 + ], + [ + 53.5611945, + 9.9888928 + ] + ] + }, + { + "osmId": "46897227", + "name": null, + "lengthMeters": 103.44872408272391, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5712254, + 9.9329697 + ], + [ + 53.572149, + 9.9327815 + ] + ] + }, + { + "osmId": "46897228", + "name": null, + "lengthMeters": 124.94458058389756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5721566, + 9.9326095 + ], + [ + 53.5721794, + 9.9325876 + ], + [ + 53.5722473, + 9.9325224 + ], + [ + 53.572834, + 9.9319591 + ], + [ + 53.5731288, + 9.9316609 + ] + ] + }, + { + "osmId": "46897779", + "name": null, + "lengthMeters": 764.8135713785334, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6021643, + 9.8905696 + ], + [ + 53.6016496, + 9.8919367 + ], + [ + 53.6013806, + 9.8926455 + ], + [ + 53.6010507, + 9.893529 + ], + [ + 53.6008206, + 9.8941349 + ], + [ + 53.6002595, + 9.8956078 + ], + [ + 53.5989557, + 9.8990414 + ], + [ + 53.5984722, + 9.9003488 + ] + ] + }, + { + "osmId": "46910121", + "name": null, + "lengthMeters": 461.6900185823694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5739152, + 9.9322745 + ], + [ + 53.5740556, + 9.9322381 + ], + [ + 53.5742598, + 9.9321854 + ], + [ + 53.574453, + 9.9321489 + ], + [ + 53.5745614, + 9.9321364 + ], + [ + 53.574863, + 9.932112 + ], + [ + 53.5756576, + 9.9320364 + ], + [ + 53.5759591, + 9.9319967 + ], + [ + 53.5764421, + 9.9319236 + ], + [ + 53.5769069, + 9.931848 + ], + [ + 53.5775282, + 9.9316975 + ], + [ + 53.5780424, + 9.9315611 + ] + ] + }, + { + "osmId": "46910122", + "name": null, + "lengthMeters": 857.1958292833535, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5748479, + 9.9305419 + ], + [ + 53.5754465, + 9.9298872 + ], + [ + 53.5762498, + 9.9290191 + ], + [ + 53.5768, + 9.9284636 + ], + [ + 53.5771548, + 9.9281273 + ], + [ + 53.5777321, + 9.9276149 + ], + [ + 53.577956, + 9.9274329 + ], + [ + 53.5783728, + 9.9270943 + ], + [ + 53.5789956, + 9.9266148 + ], + [ + 53.5796435, + 9.9261154 + ], + [ + 53.5809013, + 9.925148 + ], + [ + 53.5816748, + 9.9245618 + ] + ] + }, + { + "osmId": "46910124", + "name": null, + "lengthMeters": 363.19231963228043, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.581483, + 9.9297581 + ], + [ + 53.5810923, + 9.9299833 + ], + [ + 53.5806953, + 9.9301886 + ], + [ + 53.5804921, + 9.9302932 + ], + [ + 53.5803008, + 9.9303916 + ], + [ + 53.5801541, + 9.9304671 + ], + [ + 53.579638, + 9.9307328 + ], + [ + 53.5795513, + 9.9307775 + ], + [ + 53.5794492, + 9.9308302 + ], + [ + 53.5791548, + 9.9309822 + ], + [ + 53.5787764, + 9.931171 + ], + [ + 53.5783589, + 9.9313608 + ] + ] + }, + { + "osmId": "46910125", + "name": null, + "lengthMeters": 366.38919099571683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5783714, + 9.9314614 + ], + [ + 53.5784812, + 9.9314277 + ], + [ + 53.5788028, + 9.9313211 + ], + [ + 53.5792425, + 9.9311497 + ], + [ + 53.5794621, + 9.9310555 + ], + [ + 53.5795927, + 9.9309948 + ], + [ + 53.5796787, + 9.9309548 + ], + [ + 53.5799183, + 9.9308299 + ], + [ + 53.5801127, + 9.9307286 + ], + [ + 53.5802124, + 9.9306704 + ], + [ + 53.5805175, + 9.9304925 + ], + [ + 53.5806197, + 9.9304392 + ], + [ + 53.5811475, + 9.9301154 + ], + [ + 53.5815177, + 9.9298531 + ] + ] + }, + { + "osmId": "46910126", + "name": null, + "lengthMeters": 80.97871096542414, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5742381, + 9.9312124 + ], + [ + 53.5748479, + 9.9305419 + ] + ] + }, + { + "osmId": "46910128", + "name": null, + "lengthMeters": 624.2036346635052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5815177, + 9.9298531 + ], + [ + 53.5820166, + 9.9294702 + ], + [ + 53.5826573, + 9.9289569 + ], + [ + 53.5833222, + 9.9283348 + ], + [ + 53.5837926, + 9.9278586 + ], + [ + 53.5841026, + 9.9275197 + ], + [ + 53.5843239, + 9.92728 + ], + [ + 53.584612, + 9.9269428 + ], + [ + 53.5851336, + 9.9263098 + ], + [ + 53.5854526, + 9.9258903 + ], + [ + 53.5856331, + 9.925653 + ], + [ + 53.5857799, + 9.925448 + ], + [ + 53.5862364, + 9.924803 + ] + ] + }, + { + "osmId": "47096334", + "name": null, + "lengthMeters": 459.8544366899079, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1448953, + 11.4985052 + ], + [ + 48.1449475, + 11.4980777 + ], + [ + 48.1450916, + 11.4969739 + ], + [ + 48.1451187, + 11.4968032 + ], + [ + 48.1451923, + 11.4963396 + ], + [ + 48.1453733, + 11.4953362 + ], + [ + 48.1454507, + 11.4949181 + ], + [ + 48.1455618, + 11.4943067 + ], + [ + 48.1456543, + 11.4938571 + ], + [ + 48.145708, + 11.4936212 + ], + [ + 48.1457493, + 11.4934419 + ], + [ + 48.1458866, + 11.492924 + ], + [ + 48.1459959, + 11.4925449 + ] + ] + }, + { + "osmId": "47200980", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 121.78866849365268, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.550882, + 10.0202987 + ], + [ + 53.5508642, + 10.0202429 + ], + [ + 53.5507127, + 10.0196982 + ], + [ + 53.5504333, + 10.0186173 + ] + ] + }, + { + "osmId": "47200982", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 84.1075515763162, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497584, + 10.0109815 + ], + [ + 53.5496594, + 10.0115328 + ], + [ + 53.549578, + 10.0122164 + ] + ] + }, + { + "osmId": "47214377", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1872.6102800950798, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5873521, + 13.485146 + ], + [ + 52.588495, + 13.4837152 + ], + [ + 52.590525, + 13.4811736 + ], + [ + 52.5940606, + 13.4765615 + ], + [ + 52.5945018, + 13.4759962 + ], + [ + 52.5967388, + 13.4731302 + ], + [ + 52.5980098, + 13.4715018 + ], + [ + 52.5984393, + 13.4709519 + ], + [ + 52.5987256, + 13.4705854 + ], + [ + 52.6002553, + 13.4686238 + ], + [ + 52.6006445, + 13.4681247 + ] + ] + }, + { + "osmId": "47215987", + "name": null, + "lengthMeters": 1086.229486215272, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2250477, + 11.6792213 + ], + [ + 48.2250328, + 11.6792179 + ], + [ + 48.2249352, + 11.6791956 + ], + [ + 48.2242106, + 11.6790611 + ], + [ + 48.2229853, + 11.6787848 + ], + [ + 48.222126, + 11.6785839 + ], + [ + 48.2214206, + 11.6784165 + ], + [ + 48.2203372, + 11.6781949 + ], + [ + 48.2202824, + 11.6781821 + ], + [ + 48.2196766, + 11.6780406 + ], + [ + 48.2192526, + 11.6779277 + ], + [ + 48.2186736, + 11.6777453 + ], + [ + 48.2182358, + 11.6775897 + ], + [ + 48.2176415, + 11.6773508 + ], + [ + 48.2170703, + 11.677084 + ], + [ + 48.2166046, + 11.6768415 + ], + [ + 48.2159542, + 11.676492 + ], + [ + 48.2156967, + 11.6763437 + ], + [ + 48.2155183, + 11.6762265 + ] + ] + }, + { + "osmId": "47234558", + "name": null, + "lengthMeters": 117.41262170552478, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1489707, + 11.4439698 + ], + [ + 48.1491394, + 11.4441747 + ], + [ + 48.1492327, + 11.4442965 + ], + [ + 48.1492719, + 11.4443476 + ], + [ + 48.1494749, + 11.4446244 + ], + [ + 48.1497199, + 11.4449915 + ], + [ + 48.1497487, + 11.4450378 + ] + ] + }, + { + "osmId": "47234573", + "name": null, + "lengthMeters": 437.1250637791786, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1298195, + 11.6088795 + ], + [ + 48.1303853, + 11.6096191 + ], + [ + 48.1306422, + 11.6099361 + ], + [ + 48.131537, + 11.6110438 + ], + [ + 48.132014, + 11.6116672 + ], + [ + 48.1320853, + 11.6117577 + ], + [ + 48.1324323, + 11.6122317 + ], + [ + 48.1326448, + 11.6125349 + ], + [ + 48.1327731, + 11.6127596 + ] + ] + }, + { + "osmId": "47234574", + "name": null, + "lengthMeters": 323.89682873647376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342242, + 11.6163628 + ], + [ + 48.1343278, + 11.61688 + ], + [ + 48.1345281, + 11.6179187 + ], + [ + 48.1347153, + 11.6189824 + ], + [ + 48.1349853, + 11.6205752 + ] + ] + }, + { + "osmId": "47251286", + "name": null, + "lengthMeters": 642.8936343129241, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6480967, + 13.2037531 + ], + [ + 52.6484282, + 13.2037368 + ], + [ + 52.6492516, + 13.2037037 + ], + [ + 52.6492697, + 13.2037022 + ], + [ + 52.6504619, + 13.2036526 + ], + [ + 52.6538765, + 13.2035106 + ] + ] + }, + { + "osmId": "47251288", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 634.4260963144109, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6585075, + 13.1939335 + ], + [ + 52.6592894, + 13.198395 + ], + [ + 52.6600913, + 13.2029703 + ] + ] + }, + { + "osmId": "47316701", + "name": null, + "lengthMeters": 217.67683798837936, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6521857, + 13.4286414 + ], + [ + 52.6515807, + 13.4287717 + ], + [ + 52.6515396, + 13.4287805 + ], + [ + 52.6509862, + 13.4289568 + ], + [ + 52.6504597, + 13.4291908 + ], + [ + 52.6502699, + 13.4292783 + ] + ] + }, + { + "osmId": "47316702", + "name": "Stettiner Bahn", + "lengthMeters": 481.9591456367251, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6254777, + 13.4807188 + ], + [ + 52.6245972, + 13.4797694 + ], + [ + 52.6243017, + 13.4794601 + ], + [ + 52.6242167, + 13.4793669 + ], + [ + 52.6236932, + 13.4788214 + ], + [ + 52.6231432, + 13.4782648 + ], + [ + 52.6226172, + 13.4777143 + ], + [ + 52.6218249, + 13.4768759 + ] + ] + }, + { + "osmId": "47346045", + "name": "Kremmener Bahn", + "lengthMeters": 697.3421915593331, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5782753, + 13.3353258 + ], + [ + 52.5782825, + 13.3355802 + ], + [ + 52.5783244, + 13.3370684 + ], + [ + 52.5783257, + 13.3371159 + ], + [ + 52.5783404, + 13.3375961 + ], + [ + 52.5783833, + 13.3389998 + ], + [ + 52.5783907, + 13.3400013 + ], + [ + 52.5783676, + 13.3414015 + ], + [ + 52.5783193, + 13.3440368 + ], + [ + 52.578295, + 13.345357 + ], + [ + 52.57829, + 13.3455938 + ], + [ + 52.5782884, + 13.3456391 + ] + ] + }, + { + "osmId": "47365655", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 435.29490272257925, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5341583, + 13.1989148 + ], + [ + 52.5341755, + 13.1988294 + ], + [ + 52.5341899, + 13.19876 + ], + [ + 52.5342274, + 13.1985577 + ], + [ + 52.5344067, + 13.1974793 + ], + [ + 52.5346374, + 13.1960268 + ], + [ + 52.5347067, + 13.1955909 + ], + [ + 52.5348518, + 13.194647 + ], + [ + 52.5351694, + 13.1926981 + ] + ] + }, + { + "osmId": "47365656", + "name": null, + "lengthMeters": 147.54929176013627, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290252, + 13.2315263 + ], + [ + 52.529105, + 13.2308622 + ], + [ + 52.5291658, + 13.2304052 + ], + [ + 52.5292849, + 13.2293874 + ] + ] + }, + { + "osmId": "47365658", + "name": null, + "lengthMeters": 718.5941413710934, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5024606, + 13.2950853 + ], + [ + 52.5022955, + 13.2945051 + ], + [ + 52.5022664, + 13.294408 + ], + [ + 52.5022466, + 13.2943336 + ], + [ + 52.5018287, + 13.2928604 + ], + [ + 52.5015274, + 13.2917982 + ], + [ + 52.5011887, + 13.2906003 + ], + [ + 52.5008855, + 13.289534 + ], + [ + 52.5008393, + 13.2893706 + ], + [ + 52.5007696, + 13.2891237 + ], + [ + 52.5005638, + 13.2883998 + ], + [ + 52.4999671, + 13.286294 + ], + [ + 52.4999506, + 13.2862342 + ], + [ + 52.4997324, + 13.2854617 + ] + ] + }, + { + "osmId": "47365659", + "name": null, + "lengthMeters": 368.08257775082006, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505358, + 13.3081436 + ], + [ + 52.5053716, + 13.3082686 + ], + [ + 52.5053795, + 13.3083406 + ], + [ + 52.5053828, + 13.3083681 + ], + [ + 52.505388, + 13.3084227 + ], + [ + 52.5054237, + 13.3087892 + ], + [ + 52.5054488, + 13.3091177 + ], + [ + 52.5054603, + 13.3093327 + ], + [ + 52.505469, + 13.3095457 + ], + [ + 52.5054743, + 13.309792 + ], + [ + 52.5054772, + 13.3100397 + ], + [ + 52.5054761, + 13.3102879 + ], + [ + 52.505473, + 13.3105355 + ], + [ + 52.5054546, + 13.3112063 + ], + [ + 52.5054254, + 13.311935 + ], + [ + 52.5053853, + 13.3127484 + ], + [ + 52.5053415, + 13.3135607 + ] + ] + }, + { + "osmId": "47365663", + "name": null, + "lengthMeters": 268.88479505150707, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4844664, + 13.5177405 + ], + [ + 52.4843811, + 13.5179352 + ], + [ + 52.4840938, + 13.5185931 + ], + [ + 52.4840411, + 13.5187139 + ], + [ + 52.4836763, + 13.519541 + ], + [ + 52.4830506, + 13.5209595 + ] + ] + }, + { + "osmId": "47365667", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 247.70485613183405, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4243196, + 13.5607995 + ], + [ + 52.4245827, + 13.5609716 + ], + [ + 52.4252166, + 13.5612977 + ], + [ + 52.4254602, + 13.5614316 + ], + [ + 52.4258631, + 13.5616531 + ], + [ + 52.4264312, + 13.5619603 + ] + ] + }, + { + "osmId": "47365669", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 295.903490174859, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4256966, + 13.5614973 + ], + [ + 52.4240475, + 13.5604463 + ], + [ + 52.4232008, + 13.5599868 + ] + ] + }, + { + "osmId": "47365671", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 602.0158954751711, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4638902, + 13.5513265 + ], + [ + 52.4644602, + 13.5509583 + ], + [ + 52.4647423, + 13.5508109 + ], + [ + 52.4647911, + 13.5507892 + ], + [ + 52.4649636, + 13.5507227 + ], + [ + 52.4651082, + 13.5506855 + ], + [ + 52.4652775, + 13.5506501 + ], + [ + 52.465353, + 13.5506471 + ], + [ + 52.4656266, + 13.5506362 + ], + [ + 52.4659368, + 13.5506683 + ], + [ + 52.466019, + 13.5506768 + ], + [ + 52.4663116, + 13.5507827 + ], + [ + 52.4665836, + 13.5508944 + ], + [ + 52.4667507, + 13.5509843 + ], + [ + 52.4668095, + 13.551021 + ], + [ + 52.4669283, + 13.5510951 + ], + [ + 52.4679013, + 13.5516955 + ], + [ + 52.4683708, + 13.5519656 + ], + [ + 52.4690597, + 13.5523883 + ] + ] + }, + { + "osmId": "47365672", + "name": null, + "lengthMeters": 717.1941285677544, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4723922, + 13.545364 + ], + [ + 52.4724089, + 13.5453221 + ], + [ + 52.4733985, + 13.5430798 + ], + [ + 52.4734201, + 13.5430304 + ], + [ + 52.4747487, + 13.5399871 + ], + [ + 52.4747539, + 13.5399753 + ], + [ + 52.4753461, + 13.5386225 + ], + [ + 52.4756804, + 13.537859 + ], + [ + 52.4761647, + 13.5367754 + ] + ] + }, + { + "osmId": "47368601", + "name": null, + "lengthMeters": 157.97739953918037, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3938749, + 13.1230381 + ], + [ + 52.393971, + 13.1241695 + ], + [ + 52.3939957, + 13.1244465 + ], + [ + 52.3940357, + 13.1249349 + ], + [ + 52.3940714, + 13.1253327 + ], + [ + 52.3940722, + 13.1253437 + ] + ] + }, + { + "osmId": "47368603", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 814.3848658194211, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6728582, + 13.2737804 + ], + [ + 52.6728344, + 13.2736484 + ], + [ + 52.6723792, + 13.2713307 + ], + [ + 52.6723395, + 13.2711255 + ], + [ + 52.671468, + 13.2666364 + ], + [ + 52.6709001, + 13.2637549 + ], + [ + 52.6706137, + 13.2622835 + ] + ] + }, + { + "osmId": "47368604", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 450.00599698496455, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6614231, + 13.2103204 + ], + [ + 52.6607019, + 13.2062062 + ], + [ + 52.660308, + 13.2039597 + ], + [ + 52.6602994, + 13.2039104 + ] + ] + }, + { + "osmId": "47368605", + "name": null, + "lengthMeters": 931.5877755535737, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6585075, + 13.1939335 + ], + [ + 52.6585975, + 13.1945523 + ], + [ + 52.6586202, + 13.1947804 + ], + [ + 52.6586212, + 13.1947903 + ], + [ + 52.6586325, + 13.1949042 + ], + [ + 52.6586677, + 13.1954705 + ], + [ + 52.6586762, + 13.1959034 + ], + [ + 52.6586672, + 13.1963958 + ], + [ + 52.6586509, + 13.1967347 + ], + [ + 52.6586187, + 13.1971331 + ], + [ + 52.6585224, + 13.197848 + ], + [ + 52.6584776, + 13.1980725 + ], + [ + 52.6583869, + 13.1985269 + ], + [ + 52.658299, + 13.1988807 + ], + [ + 52.6582111, + 13.199201 + ], + [ + 52.6581267, + 13.1994506 + ], + [ + 52.6579961, + 13.199837 + ], + [ + 52.6579318, + 13.1999992 + ], + [ + 52.6579088, + 13.2000525 + ], + [ + 52.6577403, + 13.2004434 + ], + [ + 52.6576393, + 13.2006479 + ], + [ + 52.6574495, + 13.2009991 + ], + [ + 52.6573102, + 13.2012199 + ], + [ + 52.6569242, + 13.2017725 + ], + [ + 52.6566959, + 13.2020416 + ], + [ + 52.6563786, + 13.202366 + ], + [ + 52.6561838, + 13.2025337 + ], + [ + 52.6559626, + 13.202712 + ], + [ + 52.6555855, + 13.2029407 + ], + [ + 52.6551319, + 13.2031372 + ], + [ + 52.6549523, + 13.2031974 + ], + [ + 52.6547516, + 13.2032408 + ], + [ + 52.6544885, + 13.2032853 + ], + [ + 52.6540735, + 13.2033198 + ] + ] + }, + { + "osmId": "47368606", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 787.8479948155007, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6601316, + 13.2029786 + ], + [ + 52.6598639, + 13.2011702 + ], + [ + 52.6593745, + 13.1983524 + ], + [ + 52.6593665, + 13.1983066 + ], + [ + 52.6588779, + 13.1958236 + ], + [ + 52.6581701, + 13.1917571 + ] + ] + }, + { + "osmId": "47368608", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 184.80634886276866, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6613179, + 13.2099635 + ], + [ + 52.6615769, + 13.2114604 + ], + [ + 52.6617774, + 13.2125969 + ] + ] + }, + { + "osmId": "47368609", + "name": null, + "lengthMeters": 1910.124244276231, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6686856, + 13.3038792 + ], + [ + 52.6669321, + 13.3033173 + ], + [ + 52.6662567, + 13.3030989 + ], + [ + 52.6661302, + 13.3030542 + ], + [ + 52.6659932, + 13.3030089 + ], + [ + 52.6658652, + 13.3029605 + ], + [ + 52.6657385, + 13.3029086 + ], + [ + 52.6656123, + 13.3028528 + ], + [ + 52.6654884, + 13.3027924 + ], + [ + 52.6653661, + 13.3027245 + ], + [ + 52.6652447, + 13.3026548 + ], + [ + 52.6651243, + 13.3025786 + ], + [ + 52.6650041, + 13.3024963 + ], + [ + 52.6648848, + 13.3024092 + ], + [ + 52.6647671, + 13.3023181 + ], + [ + 52.6646522, + 13.3022222 + ], + [ + 52.6645389, + 13.3021237 + ], + [ + 52.6644258, + 13.3020189 + ], + [ + 52.6643142, + 13.30191 + ], + [ + 52.6642045, + 13.3017957 + ], + [ + 52.6640973, + 13.3016781 + ], + [ + 52.6639908, + 13.3015558 + ], + [ + 52.6638877, + 13.3014305 + ], + [ + 52.6637847, + 13.3013004 + ], + [ + 52.6636823, + 13.3011645 + ], + [ + 52.6635832, + 13.3010245 + ], + [ + 52.6634866, + 13.3008816 + ], + [ + 52.6633921, + 13.3007348 + ], + [ + 52.6633002, + 13.300584 + ], + [ + 52.6632095, + 13.30043 + ], + [ + 52.6631214, + 13.3002722 + ], + [ + 52.6630358, + 13.3001104 + ], + [ + 52.6629524, + 13.299946 + ], + [ + 52.6628721, + 13.299779 + ], + [ + 52.6627937, + 13.2996065 + ], + [ + 52.662718, + 13.2994324 + ], + [ + 52.6626443, + 13.2992542 + ], + [ + 52.6625743, + 13.2990735 + ], + [ + 52.6625052, + 13.2988899 + ], + [ + 52.6624402, + 13.2987028 + ], + [ + 52.6623775, + 13.2985135 + ], + [ + 52.6623169, + 13.2983203 + ], + [ + 52.6622602, + 13.2981246 + ], + [ + 52.6622071, + 13.2979302 + ], + [ + 52.6621552, + 13.2977302 + ], + [ + 52.6621075, + 13.2975298 + ], + [ + 52.6620622, + 13.2973262 + ], + [ + 52.6620204, + 13.2971214 + ], + [ + 52.6619811, + 13.2969143 + ], + [ + 52.661945, + 13.2967087 + ], + [ + 52.6619122, + 13.2964983 + ], + [ + 52.6618821, + 13.296288 + ], + [ + 52.6618565, + 13.2960772 + ], + [ + 52.6618326, + 13.2958643 + ], + [ + 52.661812, + 13.2956483 + ], + [ + 52.6617954, + 13.2954351 + ], + [ + 52.6617815, + 13.2952232 + ], + [ + 52.6617717, + 13.2950087 + ], + [ + 52.6617639, + 13.2947933 + ], + [ + 52.6617598, + 13.2945762 + ], + [ + 52.661759, + 13.2943593 + ], + [ + 52.6617611, + 13.2941437 + ], + [ + 52.6617665, + 13.2939289 + ], + [ + 52.6617754, + 13.2937152 + ], + [ + 52.6617877, + 13.2935005 + ], + [ + 52.6618042, + 13.2932862 + ], + [ + 52.6618245, + 13.2930725 + ], + [ + 52.6618482, + 13.2928613 + ], + [ + 52.6618768, + 13.2926506 + ], + [ + 52.6619088, + 13.2924414 + ], + [ + 52.6619443, + 13.2922337 + ], + [ + 52.6619842, + 13.2920279 + ], + [ + 52.6620269, + 13.2918237 + ], + [ + 52.6620743, + 13.2916224 + ], + [ + 52.6621248, + 13.2914218 + ], + [ + 52.6621783, + 13.2912255 + ], + [ + 52.6622355, + 13.2910335 + ], + [ + 52.6622968, + 13.2908426 + ], + [ + 52.6623607, + 13.2906545 + ], + [ + 52.6624283, + 13.2904696 + ], + [ + 52.6625, + 13.290288 + ], + [ + 52.662574, + 13.2901105 + ], + [ + 52.6626517, + 13.2899371 + ], + [ + 52.6627325, + 13.2897666 + ], + [ + 52.6628165, + 13.2896005 + ], + [ + 52.6629031, + 13.2894378 + ], + [ + 52.6629915, + 13.2892812 + ], + [ + 52.6630832, + 13.2891297 + ], + [ + 52.6631783, + 13.2889807 + ], + [ + 52.663276, + 13.2888375 + ], + [ + 52.6633763, + 13.2886979 + ], + [ + 52.6634803, + 13.2885618 + ], + [ + 52.6635843, + 13.2884351 + ], + [ + 52.6636924, + 13.2883102 + ], + [ + 52.6638022, + 13.2881921 + ], + [ + 52.6639147, + 13.2880789 + ], + [ + 52.6640294, + 13.2879718 + ], + [ + 52.6641448, + 13.2878694 + ], + [ + 52.6642626, + 13.2877718 + ], + [ + 52.6643823, + 13.2876819 + ], + [ + 52.6645032, + 13.2875979 + ], + [ + 52.6646253, + 13.2875194 + ], + [ + 52.6647484, + 13.2874476 + ], + [ + 52.6648742, + 13.2873799 + ], + [ + 52.6650009, + 13.2873191 + ], + [ + 52.6651281, + 13.2872652 + ], + [ + 52.6652587, + 13.2872168 + ], + [ + 52.6653868, + 13.2871764 + ], + [ + 52.6655155, + 13.2871412 + ], + [ + 52.6656458, + 13.2871125 + ], + [ + 52.6657759, + 13.2870904 + ], + [ + 52.6659081, + 13.2870753 + ], + [ + 52.66604, + 13.2870657 + ], + [ + 52.6661686, + 13.2870632 + ], + [ + 52.6662968, + 13.2870654 + ], + [ + 52.66636, + 13.287069 + ] + ] + }, + { + "osmId": "47368611", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 768.4949408355576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6705657, + 13.2622577 + ], + [ + 52.6714342, + 13.2666849 + ], + [ + 52.6723022, + 13.2711438 + ], + [ + 52.6723536, + 13.2714041 + ], + [ + 52.6726867, + 13.2731052 + ] + ] + }, + { + "osmId": "47385149", + "name": null, + "lengthMeters": 257.1611660113225, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.529118, + 13.3660575 + ], + [ + 52.529024, + 13.3661399 + ], + [ + 52.5288345, + 13.3662964 + ], + [ + 52.5286362, + 13.3664472 + ], + [ + 52.5285093, + 13.3665368 + ], + [ + 52.5283187, + 13.3666647 + ], + [ + 52.5280712, + 13.3668099 + ], + [ + 52.527821, + 13.366945 + ], + [ + 52.527547, + 13.3670924 + ], + [ + 52.5272913, + 13.3672461 + ], + [ + 52.5269728, + 13.3674637 + ] + ] + }, + { + "osmId": "47452694", + "name": null, + "lengthMeters": 343.58648117112466, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151767, + 11.4560395 + ], + [ + 48.1518367, + 11.4557861 + ], + [ + 48.1518878, + 11.4555866 + ], + [ + 48.1519935, + 11.4551255 + ], + [ + 48.1520638, + 11.4547655 + ], + [ + 48.1521247, + 11.4543393 + ], + [ + 48.1521483, + 11.4541105 + ], + [ + 48.1521606, + 11.4539502 + ], + [ + 48.1521661, + 11.4538147 + ], + [ + 48.1521803, + 11.4535482 + ], + [ + 48.1521808, + 11.4535174 + ], + [ + 48.1521861, + 11.4532365 + ], + [ + 48.1521765, + 11.4529391 + ], + [ + 48.1521675, + 11.452795 + ], + [ + 48.1521563, + 11.4526122 + ], + [ + 48.152125, + 11.452339 + ], + [ + 48.1520867, + 11.4520466 + ], + [ + 48.1520403, + 11.4517787 + ], + [ + 48.15199, + 11.4515305 + ] + ] + }, + { + "osmId": "47496137", + "name": null, + "lengthMeters": 431.1766439970606, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791558, + 13.3600077 + ], + [ + 52.4792164, + 13.3597861 + ], + [ + 52.4792708, + 13.3595773 + ], + [ + 52.479391, + 13.3591181 + ], + [ + 52.4794606, + 13.3588261 + ], + [ + 52.4795182, + 13.3585321 + ], + [ + 52.4796062, + 13.3580168 + ], + [ + 52.4796656, + 13.3574974 + ], + [ + 52.4796821, + 13.357194 + ], + [ + 52.4796884, + 13.3568927 + ], + [ + 52.4796909, + 13.3564637 + ], + [ + 52.4796739, + 13.3560886 + ], + [ + 52.4796429, + 13.3556097 + ], + [ + 52.4795986, + 13.3551391 + ], + [ + 52.4795536, + 13.3547921 + ], + [ + 52.4795087, + 13.3544679 + ], + [ + 52.4794619, + 13.3541781 + ], + [ + 52.4794039, + 13.3538363 + ] + ] + }, + { + "osmId": "47640520", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 4692.5497020224475, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.429813, + 13.7496755 + ], + [ + 52.4301746, + 13.7491186 + ], + [ + 52.4303101, + 13.7489022 + ], + [ + 52.4305034, + 13.7485587 + ], + [ + 52.4306634, + 13.7482587 + ], + [ + 52.4308498, + 13.7478939 + ], + [ + 52.4309842, + 13.7476182 + ], + [ + 52.4311428, + 13.7472729 + ], + [ + 52.4313179, + 13.7468631 + ], + [ + 52.4315035, + 13.746404 + ], + [ + 52.4316515, + 13.7460099 + ], + [ + 52.4317416, + 13.7457516 + ], + [ + 52.4317944, + 13.7455935 + ], + [ + 52.4318386, + 13.7454604 + ], + [ + 52.4319747, + 13.74503 + ], + [ + 52.4320501, + 13.7447695 + ], + [ + 52.4321165, + 13.7445334 + ], + [ + 52.4322203, + 13.7441439 + ], + [ + 52.4323226, + 13.7437292 + ], + [ + 52.4324296, + 13.7432349 + ], + [ + 52.4324321, + 13.7432221 + ], + [ + 52.4325192, + 13.7427847 + ], + [ + 52.4325652, + 13.7425309 + ], + [ + 52.4325826, + 13.7424348 + ], + [ + 52.4326008, + 13.7423346 + ], + [ + 52.4327077, + 13.7416669 + ], + [ + 52.4327968, + 13.7409979 + ], + [ + 52.4328402, + 13.7406182 + ], + [ + 52.4328894, + 13.7401882 + ], + [ + 52.4329673, + 13.7394822 + ], + [ + 52.4330171, + 13.739002 + ], + [ + 52.4330257, + 13.7389203 + ], + [ + 52.4330404, + 13.73878 + ], + [ + 52.4331433, + 13.7378768 + ], + [ + 52.4332301, + 13.7370736 + ], + [ + 52.4333444, + 13.7360278 + ], + [ + 52.4333511, + 13.7359691 + ], + [ + 52.4333914, + 13.7356136 + ], + [ + 52.4334736, + 13.7348362 + ], + [ + 52.4335062, + 13.734574 + ], + [ + 52.4335091, + 13.734551 + ], + [ + 52.4335729, + 13.7340384 + ], + [ + 52.4336762, + 13.7332803 + ], + [ + 52.4337967, + 13.7325483 + ], + [ + 52.4339459, + 13.7317915 + ], + [ + 52.4340561, + 13.7312934 + ], + [ + 52.4340808, + 13.7311937 + ], + [ + 52.4340842, + 13.7311798 + ], + [ + 52.4342739, + 13.7304144 + ], + [ + 52.4344865, + 13.7296452 + ], + [ + 52.4347363, + 13.7288647 + ], + [ + 52.4350612, + 13.7279322 + ], + [ + 52.4353074, + 13.727295 + ], + [ + 52.4356237, + 13.7265618 + ], + [ + 52.4361148, + 13.7255447 + ], + [ + 52.4362949, + 13.7252081 + ], + [ + 52.4363918, + 13.7250271 + ], + [ + 52.4366798, + 13.7245347 + ], + [ + 52.4368268, + 13.7243002 + ], + [ + 52.4369286, + 13.7241378 + ], + [ + 52.4371171, + 13.723837 + ], + [ + 52.4375948, + 13.7231747 + ], + [ + 52.4376606, + 13.7230898 + ], + [ + 52.437989, + 13.7226658 + ], + [ + 52.4382283, + 13.7223888 + ], + [ + 52.438385, + 13.7222073 + ], + [ + 52.4389289, + 13.7216293 + ], + [ + 52.4394732, + 13.7211062 + ], + [ + 52.4400184, + 13.7206348 + ], + [ + 52.4404881, + 13.7202709 + ], + [ + 52.4405864, + 13.7201948 + ], + [ + 52.441449, + 13.7196031 + ], + [ + 52.4426497, + 13.7187698 + ], + [ + 52.4429015, + 13.7185805 + ], + [ + 52.4431523, + 13.7183792 + ], + [ + 52.4436401, + 13.7179473 + ], + [ + 52.4439659, + 13.717631 + ], + [ + 52.4442871, + 13.7172957 + ], + [ + 52.4444585, + 13.7171067 + ], + [ + 52.4445912, + 13.7169604 + ], + [ + 52.4448958, + 13.7166034 + ], + [ + 52.4453008, + 13.716094 + ], + [ + 52.4456893, + 13.7155679 + ], + [ + 52.445881, + 13.7153066 + ], + [ + 52.4461754, + 13.7148602 + ], + [ + 52.4464018, + 13.7144941 + ], + [ + 52.4466315, + 13.7141119 + ], + [ + 52.446861, + 13.7137123 + ], + [ + 52.4471694, + 13.7131402 + ], + [ + 52.4474618, + 13.7125594 + ], + [ + 52.4477448, + 13.7119581 + ], + [ + 52.4480112, + 13.711345 + ], + [ + 52.4482518, + 13.7107777 + ], + [ + 52.4484972, + 13.7101161 + ], + [ + 52.4486607, + 13.7096453 + ], + [ + 52.4489529, + 13.7087609 + ], + [ + 52.4492177, + 13.7078514 + ], + [ + 52.4493787, + 13.7072374 + ], + [ + 52.4495369, + 13.7066008 + ], + [ + 52.449704, + 13.7058385 + ], + [ + 52.449897, + 13.7048097 + ], + [ + 52.4500625, + 13.7037388 + ], + [ + 52.4502198, + 13.7024644 + ], + [ + 52.4502484, + 13.7021936 + ], + [ + 52.4503562, + 13.7011732 + ], + [ + 52.4508321, + 13.6964761 + ], + [ + 52.4510196, + 13.6946405 + ], + [ + 52.4510559, + 13.6942732 + ] + ] + }, + { + "osmId": "47688567", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2155.3945845539124, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3980476, + 13.5271571 + ], + [ + 52.398094, + 13.5272527 + ], + [ + 52.3981963, + 13.5274637 + ], + [ + 52.3983749, + 13.5278288 + ], + [ + 52.3985757, + 13.5282745 + ], + [ + 52.3991998, + 13.5295902 + ], + [ + 52.399329, + 13.5298627 + ], + [ + 52.3993456, + 13.5298976 + ], + [ + 52.3997673, + 13.5307867 + ], + [ + 52.4005991, + 13.5325671 + ], + [ + 52.4014102, + 13.5343139 + ], + [ + 52.4015582, + 13.5346278 + ], + [ + 52.4023219, + 13.536248 + ], + [ + 52.4027223, + 13.5371161 + ], + [ + 52.4027848, + 13.5372517 + ], + [ + 52.4032171, + 13.5381731 + ], + [ + 52.4036055, + 13.539007 + ], + [ + 52.4037649, + 13.5393493 + ], + [ + 52.4045592, + 13.5409974 + ], + [ + 52.4046121, + 13.5411021 + ], + [ + 52.4047597, + 13.5413922 + ], + [ + 52.4053037, + 13.5424378 + ], + [ + 52.4061726, + 13.5439645 + ], + [ + 52.4074775, + 13.54601 + ], + [ + 52.4078876, + 13.5465898 + ], + [ + 52.4080009, + 13.5467501 + ], + [ + 52.4084844, + 13.5474011 + ], + [ + 52.4089824, + 13.5480498 + ], + [ + 52.40956, + 13.5487612 + ], + [ + 52.4103763, + 13.5496963 + ], + [ + 52.4106266, + 13.549957 + ], + [ + 52.4110677, + 13.5504125 + ] + ] + }, + { + "osmId": "47688571", + "name": null, + "lengthMeters": 755.8345854072238, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3933524, + 13.5174103 + ], + [ + 52.3936884, + 13.5180991 + ], + [ + 52.3938737, + 13.5184878 + ], + [ + 52.3966517, + 13.5244677 + ], + [ + 52.396855, + 13.5248349 + ], + [ + 52.3972241, + 13.5255037 + ], + [ + 52.3975559, + 13.5261585 + ] + ] + }, + { + "osmId": "47688574", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 98.7850763273275, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3867944, + 13.5028075 + ], + [ + 52.3868697, + 13.5029726 + ], + [ + 52.3873345, + 13.5039632 + ] + ] + }, + { + "osmId": "47690146", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2994.8958112763617, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4152632, + 13.5539833 + ], + [ + 52.414901, + 13.5536609 + ], + [ + 52.4146303, + 13.5534306 + ], + [ + 52.4134231, + 13.5524318 + ], + [ + 52.4128693, + 13.5519597 + ], + [ + 52.4123315, + 13.5514827 + ], + [ + 52.4122422, + 13.5514035 + ], + [ + 52.4116549, + 13.5508347 + ], + [ + 52.4111148, + 13.5502938 + ], + [ + 52.4110992, + 13.5502776 + ], + [ + 52.410674, + 13.5498354 + ], + [ + 52.4106104, + 13.5497692 + ], + [ + 52.4094395, + 13.5484171 + ], + [ + 52.4087397, + 13.5475425 + ], + [ + 52.408096, + 13.546667 + ], + [ + 52.4079422, + 13.546448 + ], + [ + 52.4074615, + 13.5457634 + ], + [ + 52.4070902, + 13.5451849 + ], + [ + 52.4062949, + 13.543945 + ], + [ + 52.4054499, + 13.5424474 + ], + [ + 52.4048395, + 13.541293 + ], + [ + 52.4046854, + 13.5410017 + ], + [ + 52.4046418, + 13.5409192 + ], + [ + 52.4046322, + 13.5408992 + ], + [ + 52.4038932, + 13.5393526 + ], + [ + 52.4036838, + 13.5389044 + ], + [ + 52.4024275, + 13.5362159 + ], + [ + 52.4016416, + 13.534534 + ], + [ + 52.4015935, + 13.5344311 + ], + [ + 52.4013203, + 13.5338479 + ], + [ + 52.400612, + 13.5323357 + ], + [ + 52.4002285, + 13.5315171 + ], + [ + 52.3994191, + 13.5297891 + ], + [ + 52.3994028, + 13.5297545 + ], + [ + 52.3987254, + 13.5283084 + ], + [ + 52.3982819, + 13.5273519 + ], + [ + 52.3982709, + 13.5273282 + ], + [ + 52.3980595, + 13.5268725 + ], + [ + 52.3977237, + 13.5261484 + ], + [ + 52.3973254, + 13.5252661 + ], + [ + 52.3968737, + 13.5242428 + ], + [ + 52.396551, + 13.5235497 + ], + [ + 52.3964273, + 13.5232839 + ] + ] + }, + { + "osmId": "47697998", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 353.85006028600884, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3964273, + 13.5232839 + ], + [ + 52.3960093, + 13.5223966 + ], + [ + 52.395416, + 13.5211369 + ], + [ + 52.3953838, + 13.5210668 + ], + [ + 52.3948909, + 13.5200104 + ], + [ + 52.3947471, + 13.5197088 + ], + [ + 52.3946234, + 13.5194495 + ], + [ + 52.3945708, + 13.5193358 + ], + [ + 52.3944857, + 13.5191521 + ] + ] + }, + { + "osmId": "47699481", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 618.8999521653611, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5600961, + 13.0880184 + ], + [ + 52.5583848, + 13.0945963 + ], + [ + 52.5583028, + 13.0949113 + ], + [ + 52.5579078, + 13.0964364 + ] + ] + }, + { + "osmId": "47699482", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 317.0100900539943, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371158, + 13.1815877 + ], + [ + 52.5371208, + 13.1815568 + ], + [ + 52.5373753, + 13.1799759 + ], + [ + 52.5374531, + 13.1795118 + ], + [ + 52.5375743, + 13.1787572 + ], + [ + 52.5377358, + 13.1777683 + ], + [ + 52.5378515, + 13.1770593 + ] + ] + }, + { + "osmId": "47699490", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 146.84755329942485, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5352082, + 13.1924581 + ], + [ + 52.5354989, + 13.1907065 + ], + [ + 52.5355577, + 13.1903644 + ] + ] + }, + { + "osmId": "47973407", + "name": null, + "lengthMeters": 211.823977768499, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5185229, + 13.6782562 + ], + [ + 52.5184782, + 13.6774904 + ], + [ + 52.518452, + 13.6767753 + ], + [ + 52.5184542, + 13.6757413 + ], + [ + 52.5184158, + 13.6751337 + ] + ] + }, + { + "osmId": "48117545", + "name": null, + "lengthMeters": 431.7899432545454, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6182173, + 13.4727936 + ], + [ + 52.6186127, + 13.473211 + ], + [ + 52.6202077, + 13.474939 + ], + [ + 52.6214666, + 13.4762959 + ] + ] + }, + { + "osmId": "48117546", + "name": null, + "lengthMeters": 430.3624485758173, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6214279, + 13.4763523 + ], + [ + 52.6214005, + 13.4763213 + ], + [ + 52.6213762, + 13.4762949 + ], + [ + 52.6205312, + 13.4753798 + ], + [ + 52.62015, + 13.4749715 + ], + [ + 52.6195048, + 13.4742661 + ], + [ + 52.6186879, + 13.4733561 + ], + [ + 52.6182173, + 13.4727936 + ] + ] + }, + { + "osmId": "48117548", + "name": null, + "lengthMeters": 209.20461959641062, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6231747, + 13.4778828 + ], + [ + 52.6228348, + 13.4776705 + ], + [ + 52.6225839, + 13.477499 + ], + [ + 52.6224005, + 13.4773507 + ], + [ + 52.622126, + 13.4770714 + ], + [ + 52.6218965, + 13.4768379 + ], + [ + 52.6215147, + 13.4764469 + ] + ] + }, + { + "osmId": "48244728", + "name": null, + "lengthMeters": 86.2182500837153, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5841216, + 9.985533 + ], + [ + 53.5837842, + 9.9851727 + ], + [ + 53.5837252, + 9.9851131 + ], + [ + 53.5836995, + 9.9850838 + ], + [ + 53.5834598, + 9.9848531 + ] + ] + }, + { + "osmId": "48388761", + "name": null, + "lengthMeters": 331.1465321335078, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5540808, + 13.4089407 + ], + [ + 52.5540836, + 13.4088909 + ], + [ + 52.554094, + 13.4087113 + ], + [ + 52.5541038, + 13.4085436 + ], + [ + 52.5541665, + 13.4074799 + ], + [ + 52.5541718, + 13.4073886 + ], + [ + 52.5542429, + 13.4061572 + ], + [ + 52.5543569, + 13.4041972 + ], + [ + 52.5543615, + 13.4041167 + ], + [ + 52.5543644, + 13.4040649 + ] + ] + }, + { + "osmId": "48420834", + "name": null, + "lengthMeters": 324.87288656296494, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2061941, + 11.3950346 + ], + [ + 48.205948, + 11.3994029 + ] + ] + }, + { + "osmId": "48420836", + "name": null, + "lengthMeters": 1383.1070045397519, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2056423, + 11.3635535 + ], + [ + 48.2056588, + 11.3637416 + ], + [ + 48.2061441, + 11.3692571 + ], + [ + 48.2068957, + 11.3777559 + ], + [ + 48.2069194, + 11.3780364 + ], + [ + 48.2069585, + 11.3785006 + ], + [ + 48.206998, + 11.3791875 + ], + [ + 48.2070157, + 11.3796955 + ], + [ + 48.2070134, + 11.3802641 + ], + [ + 48.2070041, + 11.3806947 + ], + [ + 48.2069833, + 11.3811989 + ], + [ + 48.2069332, + 11.3820799 + ] + ] + }, + { + "osmId": "48420838", + "name": null, + "lengthMeters": 2174.0912196457525, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2051163, + 11.3529467 + ], + [ + 48.2047515, + 11.3539432 + ], + [ + 48.2045242, + 11.3545502 + ], + [ + 48.204327, + 11.3550769 + ], + [ + 48.2038925, + 11.356189 + ], + [ + 48.203469, + 11.3572423 + ], + [ + 48.2032562, + 11.3577484 + ], + [ + 48.2026435, + 11.3592039 + ], + [ + 48.2021626, + 11.3603019 + ], + [ + 48.2016205, + 11.361501 + ], + [ + 48.2012709, + 11.3622447 + ], + [ + 48.2012435, + 11.3623013 + ], + [ + 48.2008967, + 11.3630323 + ], + [ + 48.2005376, + 11.3637652 + ], + [ + 48.2000548, + 11.3647348 + ], + [ + 48.1993205, + 11.3661731 + ], + [ + 48.1985705, + 11.3675918 + ], + [ + 48.1980911, + 11.3684864 + ], + [ + 48.1959212, + 11.3724709 + ], + [ + 48.1947102, + 11.3746903 + ], + [ + 48.1938367, + 11.3762901 + ], + [ + 48.1936509, + 11.376638 + ] + ] + }, + { + "osmId": "48420844", + "name": null, + "lengthMeters": 869.3512219141211, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2069117, + 11.3824716 + ], + [ + 48.2067441, + 11.3854125 + ], + [ + 48.2066535, + 11.3869954 + ], + [ + 48.2063932, + 11.3915947 + ], + [ + 48.2062395, + 11.3941594 + ] + ] + }, + { + "osmId": "48420851", + "name": null, + "lengthMeters": 872.6747460115828, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2036725, + 11.4426373 + ], + [ + 48.203683, + 11.4436159 + ], + [ + 48.2036913, + 11.4441825 + ], + [ + 48.20371, + 11.444949 + ], + [ + 48.2037361, + 11.4457425 + ], + [ + 48.203778, + 11.4467522 + ], + [ + 48.2038222, + 11.4476305 + ], + [ + 48.2038546, + 11.4482525 + ], + [ + 48.2039013, + 11.4489488 + ], + [ + 48.20395, + 11.4496254 + ], + [ + 48.2040345, + 11.4507042 + ], + [ + 48.2043298, + 11.4543631 + ] + ] + }, + { + "osmId": "48420852", + "name": null, + "lengthMeters": 110.0338305824059, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2036763, + 11.4411526 + ], + [ + 48.2036712, + 11.4418886 + ], + [ + 48.2036725, + 11.4426373 + ] + ] + }, + { + "osmId": "48420853", + "name": null, + "lengthMeters": 296.0825917509481, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2046054, + 11.4577179 + ], + [ + 48.2046731, + 11.4585222 + ], + [ + 48.2047156, + 11.4589072 + ], + [ + 48.2047676, + 11.4592737 + ], + [ + 48.2048215, + 11.4595643 + ], + [ + 48.2048846, + 11.4598629 + ], + [ + 48.2050127, + 11.4604023 + ], + [ + 48.2051734, + 11.4610796 + ], + [ + 48.2052242, + 11.4613172 + ], + [ + 48.2052725, + 11.4615707 + ] + ] + }, + { + "osmId": "48420854", + "name": null, + "lengthMeters": 117.72360237491336, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2043584, + 11.4547333 + ], + [ + 48.2043622, + 11.4547792 + ], + [ + 48.2044911, + 11.4563093 + ] + ] + }, + { + "osmId": "48439818", + "name": null, + "lengthMeters": 621.3807027841027, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1587868, + 11.440265 + ], + [ + 48.1587901, + 11.4402593 + ], + [ + 48.1591675, + 11.4396094 + ], + [ + 48.1598218, + 11.4384487 + ], + [ + 48.1604652, + 11.4372808 + ], + [ + 48.1606701, + 11.436905 + ], + [ + 48.1607421, + 11.4367724 + ], + [ + 48.1617526, + 11.4349217 + ], + [ + 48.1621861, + 11.4341247 + ], + [ + 48.1623552, + 11.4338184 + ] + ] + }, + { + "osmId": "48439819", + "name": null, + "lengthMeters": 731.8481698542989, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1596736, + 11.4388753 + ], + [ + 48.1595081, + 11.4391545 + ], + [ + 48.1592088, + 11.4396718 + ], + [ + 48.1587154, + 11.4404865 + ], + [ + 48.1584657, + 11.4408925 + ], + [ + 48.1582472, + 11.4412397 + ], + [ + 48.1578531, + 11.4418412 + ], + [ + 48.1576589, + 11.4421188 + ], + [ + 48.1574872, + 11.4423642 + ], + [ + 48.1569358, + 11.4431517 + ], + [ + 48.1568893, + 11.4432229 + ], + [ + 48.1568666, + 11.4432522 + ], + [ + 48.1563159, + 11.4439989 + ], + [ + 48.155211, + 11.445497 + ], + [ + 48.155003, + 11.4458138 + ] + ] + }, + { + "osmId": "48439820", + "name": null, + "lengthMeters": 613.9426023132471, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1622762, + 11.4337233 + ], + [ + 48.1621169, + 11.4340239 + ], + [ + 48.1621131, + 11.4340312 + ], + [ + 48.1616869, + 11.4348419 + ], + [ + 48.160705, + 11.4367225 + ], + [ + 48.1604333, + 11.4372448 + ], + [ + 48.1598336, + 11.4383566 + ], + [ + 48.1594266, + 11.4390684 + ], + [ + 48.1591429, + 11.4395721 + ], + [ + 48.1588033, + 11.4401561 + ] + ] + }, + { + "osmId": "48446748", + "name": null, + "lengthMeters": 134.8736043512918, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1532682, + 11.4487864 + ], + [ + 48.1531309, + 11.4491092 + ], + [ + 48.1531042, + 11.449172 + ], + [ + 48.1529398, + 11.4495898 + ], + [ + 48.1528275, + 11.4499158 + ], + [ + 48.15277, + 11.4500796 + ], + [ + 48.1526757, + 11.4503709 + ] + ] + }, + { + "osmId": "48446751", + "name": null, + "lengthMeters": 380.4279133092542, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1525158, + 11.4507461 + ], + [ + 48.152562, + 11.4497573 + ], + [ + 48.1526036, + 11.44901 + ], + [ + 48.1526349, + 11.4485664 + ], + [ + 48.1526652, + 11.4481365 + ], + [ + 48.1527104, + 11.4476212 + ], + [ + 48.1527552, + 11.4471098 + ], + [ + 48.1528537, + 11.4460538 + ], + [ + 48.1528913, + 11.4456508 + ] + ] + }, + { + "osmId": "48446753", + "name": null, + "lengthMeters": 367.9512824353302, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522921, + 11.453794 + ], + [ + 48.1525501, + 11.4519551 + ], + [ + 48.1525999, + 11.4516598 + ], + [ + 48.1527426, + 11.4508897 + ], + [ + 48.1528265, + 11.4505491 + ], + [ + 48.1528781, + 11.4503398 + ], + [ + 48.1530087, + 11.4498702 + ], + [ + 48.1531632, + 11.4493888 + ], + [ + 48.1532685, + 11.4490788 + ] + ] + }, + { + "osmId": "48446754", + "name": null, + "lengthMeters": 2112.6366944930487, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1535594, + 11.439029 + ], + [ + 48.1536858, + 11.4377038 + ], + [ + 48.1536998, + 11.4375565 + ], + [ + 48.1538788, + 11.435677 + ], + [ + 48.1538869, + 11.4355892 + ], + [ + 48.1538959, + 11.4354964 + ], + [ + 48.153936, + 11.4350732 + ], + [ + 48.1540644, + 11.4337179 + ], + [ + 48.1542295, + 11.4319757 + ], + [ + 48.1544306, + 11.4298536 + ], + [ + 48.1544472, + 11.4296786 + ], + [ + 48.1545596, + 11.4284822 + ], + [ + 48.1546947, + 11.4270728 + ], + [ + 48.1547139, + 11.4268753 + ], + [ + 48.1552049, + 11.421717 + ], + [ + 48.1553986, + 11.4196494 + ], + [ + 48.1554735, + 11.4188739 + ], + [ + 48.1557396, + 11.4160202 + ], + [ + 48.1559192, + 11.4141059 + ], + [ + 48.1559505, + 11.4137726 + ], + [ + 48.1559942, + 11.4133228 + ], + [ + 48.1560407, + 11.4128438 + ], + [ + 48.1561313, + 11.4119122 + ], + [ + 48.1562224, + 11.410974 + ], + [ + 48.156236, + 11.4108333 + ] + ] + }, + { + "osmId": "48446755", + "name": null, + "lengthMeters": 384.7677431703438, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1532516, + 11.44927 + ], + [ + 48.1531882, + 11.4494816 + ], + [ + 48.1530634, + 11.4499003 + ], + [ + 48.1528997, + 11.4505789 + ], + [ + 48.1527993, + 11.4510456 + ], + [ + 48.1527257, + 11.4514339 + ], + [ + 48.1526003, + 11.4521978 + ], + [ + 48.1525313, + 11.4526955 + ], + [ + 48.1525207, + 11.4527721 + ], + [ + 48.1523756, + 11.4537128 + ], + [ + 48.1523075, + 11.4541101 + ], + [ + 48.1522827, + 11.4542363 + ] + ] + }, + { + "osmId": "48446756", + "name": null, + "lengthMeters": 324.169288014741, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1524375, + 11.4535886 + ], + [ + 48.1525147, + 11.4530651 + ], + [ + 48.1526372, + 11.4522231 + ], + [ + 48.1527604, + 11.4514504 + ], + [ + 48.1528341, + 11.4510592 + ], + [ + 48.1529318, + 11.4505981 + ], + [ + 48.1530789, + 11.4499837 + ], + [ + 48.1532157, + 11.4495074 + ], + [ + 48.1532476, + 11.4494019 + ] + ] + }, + { + "osmId": "48446761", + "name": null, + "lengthMeters": 820.9450569619776, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1499131, + 11.4455113 + ], + [ + 48.1501314, + 11.4459224 + ], + [ + 48.1503831, + 11.4464886 + ], + [ + 48.1504982, + 11.4467545 + ], + [ + 48.1506076, + 11.4470276 + ], + [ + 48.15069, + 11.4472675 + ], + [ + 48.1507701, + 11.4475008 + ], + [ + 48.1508882, + 11.4478804 + ], + [ + 48.1509615, + 11.4481214 + ], + [ + 48.1512268, + 11.4491605 + ], + [ + 48.1514435, + 11.4500794 + ], + [ + 48.1515064, + 11.4503677 + ], + [ + 48.1515618, + 11.4506611 + ], + [ + 48.1516201, + 11.4509826 + ], + [ + 48.1516662, + 11.4513166 + ], + [ + 48.151681, + 11.4514097 + ], + [ + 48.1517225, + 11.4517692 + ], + [ + 48.1517535, + 11.4521424 + ], + [ + 48.1517677, + 11.4523653 + ], + [ + 48.1517787, + 11.4525979 + ], + [ + 48.1517872, + 11.4529359 + ], + [ + 48.1517898, + 11.4530445 + ], + [ + 48.1517905, + 11.453231 + ], + [ + 48.1517863, + 11.4534502 + ], + [ + 48.1517811, + 11.4536588 + ], + [ + 48.1517714, + 11.4538655 + ], + [ + 48.151761, + 11.4540678 + ], + [ + 48.151747, + 11.454259 + ], + [ + 48.1517306, + 11.4544561 + ], + [ + 48.1517087, + 11.4546568 + ], + [ + 48.1516778, + 11.4549288 + ], + [ + 48.1516395, + 11.4551949 + ], + [ + 48.151582, + 11.4555491 + ], + [ + 48.151515, + 11.455902 + ] + ] + }, + { + "osmId": "48446762", + "name": null, + "lengthMeters": 180.36583693071964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.152045, + 11.4530064 + ], + [ + 48.15199, + 11.453422 + ], + [ + 48.1518753, + 11.4542909 + ], + [ + 48.1518513, + 11.4544749 + ], + [ + 48.1517879, + 11.4549023 + ], + [ + 48.1517139, + 11.4553863 + ] + ] + }, + { + "osmId": "48446763", + "name": null, + "lengthMeters": 458.44410401385477, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1515521, + 11.4559245 + ], + [ + 48.1516214, + 11.4555618 + ], + [ + 48.1516811, + 11.4552016 + ], + [ + 48.1517185, + 11.4549322 + ], + [ + 48.1517499, + 11.454665 + ], + [ + 48.1517708, + 11.4544628 + ], + [ + 48.1517874, + 11.4542598 + ], + [ + 48.1518107, + 11.4538661 + ], + [ + 48.1518268, + 11.4534475 + ], + [ + 48.1518312, + 11.4531793 + ], + [ + 48.1518288, + 11.4529235 + ], + [ + 48.1518208, + 11.4526235 + ], + [ + 48.1517762, + 11.4519086 + ], + [ + 48.1517528, + 11.4517019 + ], + [ + 48.1517204, + 11.4513977 + ], + [ + 48.1516661, + 11.4510136 + ], + [ + 48.151603, + 11.4506434 + ], + [ + 48.1515427, + 11.4503436 + ], + [ + 48.151483, + 11.4500585 + ], + [ + 48.1514373, + 11.4498553 + ] + ] + }, + { + "osmId": "48446771", + "name": null, + "lengthMeters": 145.41758167835502, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522827, + 11.4542363 + ], + [ + 48.1520418, + 11.4554986 + ], + [ + 48.1519759, + 11.4557605 + ], + [ + 48.1518895, + 11.4561043 + ] + ] + }, + { + "osmId": "48446772", + "name": null, + "lengthMeters": 87.64894001716237, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151706, + 11.456888 + ], + [ + 48.1515568, + 11.4575009 + ], + [ + 48.1514144, + 11.457985 + ] + ] + }, + { + "osmId": "48446776", + "name": null, + "lengthMeters": 1406.172685720812, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1467928, + 11.4740279 + ], + [ + 48.146691, + 11.4753528 + ], + [ + 48.1466326, + 11.4761712 + ], + [ + 48.1464773, + 11.4783471 + ], + [ + 48.146434, + 11.4789387 + ], + [ + 48.1463028, + 11.4807318 + ], + [ + 48.1462748, + 11.4813258 + ], + [ + 48.146274, + 11.481655 + ], + [ + 48.1462736, + 11.4818327 + ], + [ + 48.1462689, + 11.4844205 + ], + [ + 48.1462607, + 11.4866567 + ], + [ + 48.1462547, + 11.4869324 + ], + [ + 48.1462355, + 11.4873468 + ], + [ + 48.1461838, + 11.4879169 + ], + [ + 48.1461331, + 11.4883064 + ], + [ + 48.1460343, + 11.4888779 + ], + [ + 48.1459777, + 11.4891367 + ], + [ + 48.1459126, + 11.4894347 + ], + [ + 48.1455857, + 11.4907306 + ], + [ + 48.1454, + 11.4914666 + ], + [ + 48.1452666, + 11.4920707 + ], + [ + 48.1452326, + 11.4922512 + ], + [ + 48.1451516, + 11.492681 + ] + ] + }, + { + "osmId": "48446778", + "name": null, + "lengthMeters": 78.3675204359951, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151387, + 11.4567181 + ], + [ + 48.1512398, + 11.4571946 + ], + [ + 48.1510836, + 11.4576715 + ] + ] + }, + { + "osmId": "48446781", + "name": null, + "lengthMeters": 127.83390660721076, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1513301, + 11.456687 + ], + [ + 48.1512304, + 11.4570283 + ], + [ + 48.1511298, + 11.4573543 + ], + [ + 48.1510366, + 11.4576309 + ], + [ + 48.1508265, + 11.4582353 + ] + ] + }, + { + "osmId": "48446787", + "name": null, + "lengthMeters": 97.75091814118522, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1532476, + 11.4494019 + ], + [ + 48.1532887, + 11.4492782 + ], + [ + 48.1534043, + 11.4489303 + ], + [ + 48.1535255, + 11.4486031 + ], + [ + 48.1536664, + 11.448244 + ] + ] + }, + { + "osmId": "48446788", + "name": null, + "lengthMeters": 95.92891951736829, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1536669, + 11.4481376 + ], + [ + 48.1535336, + 11.4484735 + ], + [ + 48.1534155, + 11.4487729 + ], + [ + 48.1532516, + 11.44927 + ] + ] + }, + { + "osmId": "48446789", + "name": null, + "lengthMeters": 89.21619149816449, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1532685, + 11.4490788 + ], + [ + 48.1533094, + 11.4489596 + ], + [ + 48.1533117, + 11.4489527 + ], + [ + 48.1534265, + 11.4486175 + ], + [ + 48.1535425, + 11.4483304 + ], + [ + 48.1536349, + 11.4481128 + ], + [ + 48.1536673, + 11.4480364 + ] + ] + }, + { + "osmId": "48448083", + "name": null, + "lengthMeters": 322.4741254629126, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1534368, + 11.4489341 + ], + [ + 48.1535837, + 11.4478637 + ], + [ + 48.1536452, + 11.4474496 + ], + [ + 48.1537345, + 11.4469486 + ], + [ + 48.1538062, + 11.4466377 + ], + [ + 48.1538267, + 11.4465489 + ], + [ + 48.1538713, + 11.4463783 + ], + [ + 48.1539108, + 11.4462271 + ], + [ + 48.1540123, + 11.4458934 + ], + [ + 48.1541176, + 11.4456043 + ], + [ + 48.1542191, + 11.4453462 + ], + [ + 48.1544264, + 11.4448958 + ] + ] + }, + { + "osmId": "48448092", + "name": null, + "lengthMeters": 406.9969528591568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1516003, + 11.4576715 + ], + [ + 48.1515722, + 11.4577724 + ], + [ + 48.1514998, + 11.4580319 + ], + [ + 48.1513474, + 11.4585407 + ], + [ + 48.1512871, + 11.4587421 + ], + [ + 48.1509909, + 11.459727 + ], + [ + 48.1507404, + 11.4605605 + ], + [ + 48.1505277, + 11.4612604 + ], + [ + 48.1503331, + 11.4619043 + ], + [ + 48.150095, + 11.462672 + ] + ] + }, + { + "osmId": "48448097", + "name": null, + "lengthMeters": 202.99356190201775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1526019, + 11.4532016 + ], + [ + 48.1524792, + 11.4537928 + ], + [ + 48.1523205, + 11.4544771 + ], + [ + 48.1520171, + 11.4557935 + ] + ] + }, + { + "osmId": "48448482", + "name": null, + "lengthMeters": 1401.9337775287645, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1464209, + 11.4880811 + ], + [ + 48.1464387, + 11.4875795 + ], + [ + 48.14646, + 11.4869351 + ], + [ + 48.1464539, + 11.4857803 + ], + [ + 48.1464523, + 11.4854704 + ], + [ + 48.1464284, + 11.4827736 + ], + [ + 48.1464269, + 11.4826723 + ], + [ + 48.1464175, + 11.4813371 + ], + [ + 48.1464277, + 11.4808872 + ], + [ + 48.1464309, + 11.4807455 + ], + [ + 48.1464567, + 11.4803106 + ], + [ + 48.1464818, + 11.4799219 + ], + [ + 48.1468125, + 11.4753698 + ], + [ + 48.1468725, + 11.4745452 + ], + [ + 48.1469523, + 11.4734497 + ], + [ + 48.1470415, + 11.4725278 + ], + [ + 48.1471006, + 11.4720834 + ], + [ + 48.1471754, + 11.4716439 + ], + [ + 48.1473268, + 11.4709141 + ], + [ + 48.147526, + 11.4701369 + ], + [ + 48.1476812, + 11.469624 + ], + [ + 48.1477425, + 11.4694216 + ] + ] + }, + { + "osmId": "48449643", + "name": null, + "lengthMeters": 535.1785085038333, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.150095, + 11.462672 + ], + [ + 48.1498986, + 11.4632099 + ], + [ + 48.1496391, + 11.4639204 + ], + [ + 48.1492115, + 11.4650641 + ], + [ + 48.1489556, + 11.4657486 + ], + [ + 48.1487281, + 11.4663646 + ], + [ + 48.1485007, + 11.4669803 + ], + [ + 48.1483182, + 11.4674933 + ], + [ + 48.1481292, + 11.4680542 + ], + [ + 48.1479503, + 11.4686083 + ], + [ + 48.1478188, + 11.4690259 + ] + ] + }, + { + "osmId": "48458225", + "name": null, + "lengthMeters": 411.4896908855077, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1459464, + 11.4844322 + ], + [ + 48.1458102, + 11.4863299 + ], + [ + 48.1457413, + 11.4872726 + ], + [ + 48.1457264, + 11.4875082 + ], + [ + 48.1457124, + 11.4877452 + ], + [ + 48.1456965, + 11.4882269 + ], + [ + 48.1456882, + 11.4884856 + ], + [ + 48.1456954, + 11.4892667 + ], + [ + 48.1457005, + 11.4899588 + ] + ] + }, + { + "osmId": "48458227", + "name": null, + "lengthMeters": 75.05839753505042, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.149473, + 11.4637432 + ], + [ + 48.1491219, + 11.4646073 + ] + ] + }, + { + "osmId": "48460560", + "name": null, + "lengthMeters": 97.93304293965508, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1479436, + 11.4431019 + ], + [ + 48.1480918, + 11.4432218 + ], + [ + 48.148263, + 11.4433705 + ], + [ + 48.1484286, + 11.4435274 + ], + [ + 48.1485604, + 11.4436585 + ], + [ + 48.1486904, + 11.4437992 + ] + ] + }, + { + "osmId": "48460561", + "name": null, + "lengthMeters": 97.36095530841283, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1487023, + 11.443745 + ], + [ + 48.1485767, + 11.4436139 + ], + [ + 48.1484468, + 11.4434839 + ], + [ + 48.1483723, + 11.4434144 + ], + [ + 48.1482795, + 11.4433285 + ], + [ + 48.1481087, + 11.4431789 + ], + [ + 48.1479579, + 11.4430559 + ] + ] + }, + { + "osmId": "48460562", + "name": null, + "lengthMeters": 1922.6516154331962, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1294859, + 11.4317372 + ], + [ + 48.1303831, + 11.4322847 + ], + [ + 48.1313176, + 11.4328512 + ], + [ + 48.137176, + 11.4364356 + ], + [ + 48.1389567, + 11.4375252 + ], + [ + 48.1413835, + 11.4390101 + ], + [ + 48.1445032, + 11.4409191 + ], + [ + 48.1454932, + 11.4415334 + ] + ] + }, + { + "osmId": "48460563", + "name": null, + "lengthMeters": 1921.581552589961, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1454994, + 11.4414812 + ], + [ + 48.1445153, + 11.440867 + ], + [ + 48.131331, + 11.4327971 + ], + [ + 48.1303964, + 11.4322289 + ], + [ + 48.1295014, + 11.4316891 + ] + ] + }, + { + "osmId": "48464382", + "name": null, + "lengthMeters": 235.31003862752888, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1462516, + 11.441872 + ], + [ + 48.1462543, + 11.4418737 + ], + [ + 48.1470222, + 11.4423423 + ], + [ + 48.1473295, + 11.4425355 + ], + [ + 48.1476319, + 11.4427351 + ], + [ + 48.1478155, + 11.4428663 + ], + [ + 48.1478947, + 11.4429284 + ], + [ + 48.1481826, + 11.443163 + ] + ] + }, + { + "osmId": "48464383", + "name": null, + "lengthMeters": 305.93700953978345, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457683, + 11.4411918 + ], + [ + 48.1457807, + 11.4412035 + ], + [ + 48.1461143, + 11.4415168 + ], + [ + 48.1462389, + 11.4416206 + ], + [ + 48.1463727, + 11.4417291 + ], + [ + 48.1464762, + 11.4418078 + ], + [ + 48.1466411, + 11.4419319 + ], + [ + 48.1469106, + 11.4421233 + ], + [ + 48.1469878, + 11.4421763 + ], + [ + 48.1470628, + 11.4422331 + ], + [ + 48.1472368, + 11.442364 + ], + [ + 48.1473527, + 11.4424551 + ], + [ + 48.1474081, + 11.4424981 + ], + [ + 48.1474628, + 11.4425414 + ], + [ + 48.1476299, + 11.4426832 + ], + [ + 48.1478247, + 11.4428498 + ], + [ + 48.1479805, + 11.4429898 + ], + [ + 48.1481826, + 11.443163 + ] + ] + }, + { + "osmId": "48464384", + "name": null, + "lengthMeters": 1921.0589374990648, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1295182, + 11.4316286 + ], + [ + 48.1304097, + 11.432173 + ], + [ + 48.1313418, + 11.432741 + ], + [ + 48.1362746, + 11.4357612 + ], + [ + 48.1440898, + 11.4405468 + ], + [ + 48.1445275, + 11.4408148 + ], + [ + 48.1450507, + 11.4411361 + ], + [ + 48.1455116, + 11.4414191 + ] + ] + }, + { + "osmId": "48464385", + "name": null, + "lengthMeters": 450.8265656642841, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1431255, + 11.4364053 + ], + [ + 48.1431944, + 11.4368912 + ], + [ + 48.1432472, + 11.4371966 + ], + [ + 48.1432818, + 11.4373537 + ], + [ + 48.1433197, + 11.4375189 + ], + [ + 48.1433585, + 11.4376732 + ], + [ + 48.1433941, + 11.4377903 + ], + [ + 48.1434433, + 11.437959 + ], + [ + 48.1434883, + 11.4380928 + ], + [ + 48.1435331, + 11.4382198 + ], + [ + 48.1435789, + 11.4383478 + ], + [ + 48.1436406, + 11.4385014 + ], + [ + 48.1437023, + 11.4386444 + ], + [ + 48.1438235, + 11.4388957 + ], + [ + 48.1439554, + 11.4391311 + ], + [ + 48.1440788, + 11.4393426 + ], + [ + 48.1442218, + 11.4395546 + ], + [ + 48.1444063, + 11.4397913 + ], + [ + 48.14454, + 11.4399442 + ], + [ + 48.1447408, + 11.4401594 + ], + [ + 48.1450373, + 11.4404584 + ], + [ + 48.1455572, + 11.4409777 + ] + ] + }, + { + "osmId": "48468022", + "name": null, + "lengthMeters": 98.92843208680321, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1520548, + 11.4550785 + ], + [ + 48.1521894, + 11.4544315 + ], + [ + 48.1522441, + 11.4540879 + ], + [ + 48.1522921, + 11.453794 + ] + ] + }, + { + "osmId": "48468792", + "name": null, + "lengthMeters": 95.52756996772999, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1540246, + 11.4470678 + ], + [ + 48.1540866, + 11.4469055 + ], + [ + 48.1541826, + 11.4466191 + ], + [ + 48.1542988, + 11.4462301 + ], + [ + 48.1543761, + 11.4458956 + ] + ] + }, + { + "osmId": "48556996", + "name": null, + "lengthMeters": 1063.3928398348487, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1463679, + 11.4914035 + ], + [ + 48.1465438, + 11.4909309 + ], + [ + 48.1468205, + 11.4902582 + ], + [ + 48.1469508, + 11.4899569 + ], + [ + 48.1470343, + 11.4897648 + ], + [ + 48.1471934, + 11.4894066 + ], + [ + 48.14738, + 11.4890107 + ], + [ + 48.1475842, + 11.4886275 + ], + [ + 48.147689, + 11.4884385 + ], + [ + 48.1477954, + 11.4882539 + ], + [ + 48.1479766, + 11.487959 + ], + [ + 48.1481641, + 11.4876735 + ], + [ + 48.1484181, + 11.4873248 + ], + [ + 48.1484827, + 11.487236 + ], + [ + 48.1488121, + 11.4868141 + ], + [ + 48.1490522, + 11.4865213 + ], + [ + 48.1492965, + 11.4862334 + ], + [ + 48.1495783, + 11.4859205 + ], + [ + 48.1498621, + 11.4856225 + ], + [ + 48.1505836, + 11.4848645 + ], + [ + 48.1509102, + 11.4845402 + ], + [ + 48.151303, + 11.4841864 + ], + [ + 48.1516541, + 11.483925 + ], + [ + 48.1518802, + 11.4837785 + ], + [ + 48.1520831, + 11.4836417 + ], + [ + 48.1524422, + 11.4834286 + ], + [ + 48.152862, + 11.4831829 + ], + [ + 48.1532124, + 11.482979 + ], + [ + 48.1535375, + 11.4827851 + ], + [ + 48.1536725, + 11.4827031 + ] + ] + }, + { + "osmId": "48556997", + "name": null, + "lengthMeters": 248.05683120136834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.147492, + 11.4885129 + ], + [ + 48.1471217, + 11.4893139 + ], + [ + 48.1469341, + 11.4897595 + ], + [ + 48.1467608, + 11.4902053 + ], + [ + 48.1467005, + 11.4903669 + ], + [ + 48.1465511, + 11.4907678 + ], + [ + 48.1463342, + 11.4913671 + ] + ] + }, + { + "osmId": "48559761", + "name": null, + "lengthMeters": 92.85815661688197, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1487632, + 11.4657376 + ], + [ + 48.1491219, + 11.4646073 + ] + ] + }, + { + "osmId": "48559762", + "name": null, + "lengthMeters": 364.8709834230924, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1489354, + 11.4645172 + ], + [ + 48.1492007, + 11.4636653 + ], + [ + 48.1492572, + 11.4634823 + ], + [ + 48.1494608, + 11.4627931 + ], + [ + 48.1495943, + 11.4623342 + ], + [ + 48.1498324, + 11.4615413 + ], + [ + 48.1500196, + 11.4609177 + ], + [ + 48.1502167, + 11.4602675 + ], + [ + 48.1502913, + 11.4600388 + ] + ] + }, + { + "osmId": "48559763", + "name": null, + "lengthMeters": 472.4934882195641, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1513712, + 11.4572375 + ], + [ + 48.1512985, + 11.4574772 + ], + [ + 48.1512068, + 11.4577552 + ], + [ + 48.151131, + 11.4579861 + ], + [ + 48.1507628, + 11.459108 + ], + [ + 48.1505608, + 11.4597168 + ], + [ + 48.1504152, + 11.4601811 + ], + [ + 48.1504071, + 11.4602073 + ], + [ + 48.1501589, + 11.4610116 + ], + [ + 48.1499721, + 11.4616338 + ], + [ + 48.1497336, + 11.4624282 + ], + [ + 48.1496294, + 11.4627838 + ], + [ + 48.1496074, + 11.4628587 + ], + [ + 48.1495655, + 11.4630018 + ] + ] + }, + { + "osmId": "48559764", + "name": null, + "lengthMeters": 169.3194956782034, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457205, + 11.4914676 + ], + [ + 48.1457051, + 11.4918481 + ], + [ + 48.1456621, + 11.4924824 + ], + [ + 48.1456029, + 11.4930222 + ], + [ + 48.145503, + 11.4937227 + ] + ] + }, + { + "osmId": "48561192", + "name": null, + "lengthMeters": 821.530933052675, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426543, + 11.4317417 + ], + [ + 48.1425933, + 11.4311899 + ], + [ + 48.1425614, + 11.4308397 + ], + [ + 48.1425374, + 11.4304867 + ], + [ + 48.142509, + 11.4300133 + ], + [ + 48.1424968, + 11.4298086 + ], + [ + 48.1424119, + 11.4283905 + ], + [ + 48.1423512, + 11.4273665 + ], + [ + 48.1423248, + 11.4269465 + ], + [ + 48.1423048, + 11.4266205 + ], + [ + 48.1422764, + 11.4262658 + ], + [ + 48.1422406, + 11.4259092 + ], + [ + 48.1421907, + 11.4254974 + ], + [ + 48.1421405, + 11.4251214 + ], + [ + 48.1420615, + 11.4245645 + ], + [ + 48.142012, + 11.4242158 + ], + [ + 48.1419979, + 11.4241142 + ], + [ + 48.1419857, + 11.4240275 + ], + [ + 48.1419753, + 11.423954 + ], + [ + 48.1417119, + 11.422076 + ], + [ + 48.1416714, + 11.4217877 + ], + [ + 48.1415347, + 11.4208133 + ] + ] + }, + { + "osmId": "48561557", + "name": null, + "lengthMeters": 252.18580657557334, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402586, + 11.4117203 + ], + [ + 48.1400248, + 11.4100615 + ], + [ + 48.139854, + 11.4088352 + ], + [ + 48.1397925, + 11.4083942 + ] + ] + }, + { + "osmId": "48562573", + "name": null, + "lengthMeters": 386.29531795924566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1397076, + 11.4077886 + ], + [ + 48.1395638, + 11.4067645 + ], + [ + 48.1394098, + 11.4056682 + ], + [ + 48.1393511, + 11.4052747 + ], + [ + 48.1392701, + 11.4047605 + ], + [ + 48.139174, + 11.404263 + ], + [ + 48.1391051, + 11.4039369 + ], + [ + 48.1389974, + 11.4034851 + ], + [ + 48.1389813, + 11.4034238 + ], + [ + 48.1388986, + 11.4031084 + ], + [ + 48.1388041, + 11.4027741 + ] + ] + }, + { + "osmId": "48562576", + "name": null, + "lengthMeters": 584.4945765284261, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1371309, + 11.397173 + ], + [ + 48.1368286, + 11.3962279 + ], + [ + 48.1366338, + 11.3956152 + ], + [ + 48.1361304, + 11.3940404 + ], + [ + 48.1359791, + 11.3935777 + ], + [ + 48.1358375, + 11.3931478 + ], + [ + 48.1357184, + 11.392841 + ], + [ + 48.1355479, + 11.3924084 + ], + [ + 48.1355124, + 11.3923204 + ], + [ + 48.1354584, + 11.3921943 + ], + [ + 48.1353436, + 11.3919261 + ], + [ + 48.1352992, + 11.3918223 + ], + [ + 48.1350682, + 11.3913021 + ], + [ + 48.1346092, + 11.3902797 + ] + ] + }, + { + "osmId": "48562581", + "name": null, + "lengthMeters": 78.54554532886517, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.137427, + 11.398134 + ], + [ + 48.1371309, + 11.397173 + ] + ] + }, + { + "osmId": "48591696", + "name": "U3", + "lengthMeters": 796.862596674307, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4643416, + 13.2965526 + ], + [ + 52.464519, + 13.2969805 + ], + [ + 52.4647136, + 13.2975024 + ], + [ + 52.4649531, + 13.2982353 + ], + [ + 52.4649935, + 13.2983852 + ], + [ + 52.4651064, + 13.2989334 + ], + [ + 52.4651814, + 13.2994165 + ], + [ + 52.4652405, + 13.3000115 + ], + [ + 52.4652583, + 13.3002144 + ], + [ + 52.4654941, + 13.3029823 + ], + [ + 52.4655105, + 13.3031636 + ], + [ + 52.4657182, + 13.305612 + ], + [ + 52.4657301, + 13.3057095 + ], + [ + 52.4658157, + 13.3061678 + ], + [ + 52.4658877, + 13.3064552 + ], + [ + 52.4659718, + 13.306746 + ], + [ + 52.4660674, + 13.3070092 + ], + [ + 52.4661664, + 13.3072701 + ], + [ + 52.4663452, + 13.3076465 + ] + ] + }, + { + "osmId": "48600714", + "name": null, + "lengthMeters": 786.3273320478114, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.120782, + 11.426284 + ], + [ + 48.1216034, + 11.426785 + ], + [ + 48.1230302, + 11.4276597 + ], + [ + 48.1244541, + 11.4285285 + ], + [ + 48.1256288, + 11.4292456 + ], + [ + 48.1262165, + 11.4296063 + ], + [ + 48.1268078, + 11.4299705 + ], + [ + 48.1273286, + 11.4302897 + ] + ] + }, + { + "osmId": "48601047", + "name": null, + "lengthMeters": 1345.1230979386607, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1079879, + 11.416056 + ], + [ + 48.1084056, + 11.4164431 + ], + [ + 48.1090646, + 11.4170578 + ], + [ + 48.109733, + 11.4176754 + ], + [ + 48.1110666, + 11.4189153 + ], + [ + 48.1126199, + 11.4203558 + ], + [ + 48.1131684, + 11.4208665 + ], + [ + 48.1137179, + 11.4213747 + ], + [ + 48.1144738, + 11.4220775 + ], + [ + 48.1148611, + 11.4224309 + ], + [ + 48.1152664, + 11.4227772 + ], + [ + 48.1156925, + 11.4231126 + ], + [ + 48.1161241, + 11.4234222 + ], + [ + 48.1165712, + 11.4237103 + ], + [ + 48.1170215, + 11.4239879 + ], + [ + 48.1177665, + 11.4244419 + ], + [ + 48.1185146, + 11.4248995 + ] + ] + }, + { + "osmId": "48601048", + "name": null, + "lengthMeters": 1597.8686221503008, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1205733, + 11.4262852 + ], + [ + 48.1202705, + 11.4261014 + ], + [ + 48.1189394, + 11.4252883 + ], + [ + 48.118563, + 11.4250583 + ], + [ + 48.1169956, + 11.4241048 + ], + [ + 48.1160906, + 11.4235257 + ], + [ + 48.1156591, + 11.4232069 + ], + [ + 48.1152296, + 11.4228725 + ], + [ + 48.1136764, + 11.4214791 + ], + [ + 48.1110221, + 11.4190157 + ], + [ + 48.1105589, + 11.418583 + ], + [ + 48.1096935, + 11.4177746 + ], + [ + 48.1083617, + 11.4165492 + ], + [ + 48.1080372, + 11.4162509 + ], + [ + 48.1079388, + 11.4161605 + ] + ] + }, + { + "osmId": "48601049", + "name": null, + "lengthMeters": 1596.684532725755, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1205845, + 11.4262322 + ], + [ + 48.118578, + 11.4250043 + ], + [ + 48.1184619, + 11.4249336 + ], + [ + 48.1170082, + 11.4240481 + ], + [ + 48.1161083, + 11.4234712 + ], + [ + 48.1156768, + 11.4231579 + ], + [ + 48.1152474, + 11.4228262 + ], + [ + 48.1136954, + 11.4214326 + ], + [ + 48.1110425, + 11.4189687 + ], + [ + 48.1097135, + 11.4177279 + ], + [ + 48.1083825, + 11.4165002 + ], + [ + 48.1079607, + 11.4161113 + ] + ] + }, + { + "osmId": "48602512", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 2750.5976143362736, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0728356, + 11.3780209 + ], + [ + 48.0730596, + 11.3782284 + ], + [ + 48.0733222, + 11.3784769 + ], + [ + 48.0737639, + 11.3788888 + ], + [ + 48.0740942, + 11.379198 + ], + [ + 48.0747206, + 11.3797865 + ], + [ + 48.0754536, + 11.3804664 + ], + [ + 48.0763856, + 11.3813459 + ], + [ + 48.0773666, + 11.3822568 + ], + [ + 48.0783398, + 11.3831712 + ], + [ + 48.0805674, + 11.3852514 + ], + [ + 48.0811657, + 11.3858479 + ], + [ + 48.0816288, + 11.3863341 + ], + [ + 48.0819587, + 11.3867161 + ], + [ + 48.0825383, + 11.3874099 + ], + [ + 48.0833302, + 11.3884087 + ], + [ + 48.0854795, + 11.3910927 + ], + [ + 48.0876292, + 11.3937898 + ], + [ + 48.0919201, + 11.3991786 + ], + [ + 48.0926405, + 11.4000729 + ] + ] + }, + { + "osmId": "48602513", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 4015.560439376395, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0981547, + 11.406849 + ], + [ + 48.0976156, + 11.406258 + ], + [ + 48.0965222, + 11.4050168 + ], + [ + 48.0955411, + 11.4038085 + ], + [ + 48.0948155, + 11.4029046 + ], + [ + 48.0945808, + 11.4025894 + ], + [ + 48.0942452, + 11.4021659 + ], + [ + 48.0927668, + 11.400313 + ], + [ + 48.0918963, + 11.3992235 + ], + [ + 48.0876018, + 11.3938346 + ], + [ + 48.0833058, + 11.3884442 + ], + [ + 48.0825023, + 11.3874841 + ], + [ + 48.0819273, + 11.3867763 + ], + [ + 48.0815927, + 11.3863939 + ], + [ + 48.0811374, + 11.385918 + ], + [ + 48.0805354, + 11.3853328 + ], + [ + 48.0783151, + 11.3832394 + ], + [ + 48.0763654, + 11.3814058 + ], + [ + 48.0746912, + 11.379836 + ], + [ + 48.0740009, + 11.3791913 + ], + [ + 48.0737465, + 11.3789561 + ], + [ + 48.0736967, + 11.3789084 + ], + [ + 48.0733003, + 11.3785288 + ], + [ + 48.0730393, + 11.3782779 + ], + [ + 48.072501, + 11.3777989 + ], + [ + 48.0722167, + 11.377545 + ], + [ + 48.0717527, + 11.3771608 + ], + [ + 48.0713056, + 11.3767915 + ], + [ + 48.0709704, + 11.3765278 + ], + [ + 48.0705883, + 11.3762398 + ], + [ + 48.0700417, + 11.3758242 + ], + [ + 48.0690748, + 11.3750622 + ] + ] + }, + { + "osmId": "48602514", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 4160.90336223245, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0981347, + 11.406895 + ], + [ + 48.0975889, + 11.4063018 + ], + [ + 48.096497, + 11.4050626 + ], + [ + 48.0955158, + 11.4038542 + ], + [ + 48.0947942, + 11.402947 + ], + [ + 48.0945593, + 11.402631 + ], + [ + 48.094222, + 11.402208 + ], + [ + 48.0932686, + 11.4010158 + ], + [ + 48.0927428, + 11.4003582 + ], + [ + 48.0920266, + 11.3994655 + ], + [ + 48.0875768, + 11.3938783 + ], + [ + 48.0832804, + 11.3884877 + ], + [ + 48.0824765, + 11.3875207 + ], + [ + 48.0819053, + 11.3868136 + ], + [ + 48.0815688, + 11.3864322 + ], + [ + 48.0811137, + 11.385962 + ], + [ + 48.0805127, + 11.3853807 + ], + [ + 48.0782931, + 11.3832875 + ], + [ + 48.0763496, + 11.3814535 + ], + [ + 48.07467, + 11.3798819 + ], + [ + 48.0737241, + 11.3789992 + ], + [ + 48.0732761, + 11.3785891 + ], + [ + 48.0731973, + 11.3785193 + ], + [ + 48.0730123, + 11.3783555 + ], + [ + 48.0721563, + 11.3776081 + ], + [ + 48.0717124, + 11.3772428 + ], + [ + 48.0713187, + 11.3769321 + ], + [ + 48.069404, + 11.3754865 + ], + [ + 48.0689226, + 11.375113 + ], + [ + 48.0686574, + 11.3748957 + ], + [ + 48.0684299, + 11.3747004 + ], + [ + 48.0681699, + 11.3744773 + ], + [ + 48.0678927, + 11.3742126 + ] + ] + }, + { + "osmId": "48602516", + "name": null, + "lengthMeters": 794.5151536423233, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0983586, + 11.4069875 + ], + [ + 48.0989736, + 11.4076221 + ], + [ + 48.0995979, + 11.408243 + ], + [ + 48.1001905, + 11.4088163 + ], + [ + 48.1009047, + 11.4094841 + ], + [ + 48.1027692, + 11.4112167 + ], + [ + 48.1034764, + 11.4118663 + ], + [ + 48.1043913, + 11.4127183 + ] + ] + }, + { + "osmId": "48602517", + "name": null, + "lengthMeters": 1233.7993902090802, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0983153, + 11.4070883 + ], + [ + 48.0995444, + 11.4083473 + ], + [ + 48.100144, + 11.4089209 + ], + [ + 48.1008737, + 11.4096046 + ], + [ + 48.1026177, + 11.4112258 + ], + [ + 48.1027287, + 11.4113268 + ], + [ + 48.1034272, + 11.4119701 + ], + [ + 48.1044714, + 11.4129463 + ], + [ + 48.1049273, + 11.413372 + ], + [ + 48.1054118, + 11.413812 + ], + [ + 48.1060582, + 11.4144202 + ], + [ + 48.1077019, + 11.4159448 + ] + ] + }, + { + "osmId": "48602518", + "name": null, + "lengthMeters": 1233.7037152802725, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1077243, + 11.4158947 + ], + [ + 48.1060816, + 11.4143668 + ], + [ + 48.1054348, + 11.4137633 + ], + [ + 48.1049496, + 11.4133191 + ], + [ + 48.1044876, + 11.4128904 + ], + [ + 48.1034487, + 11.4119222 + ], + [ + 48.102741, + 11.4112651 + ], + [ + 48.1008792, + 11.4095363 + ], + [ + 48.1001715, + 11.4088762 + ], + [ + 48.0995676, + 11.4082995 + ], + [ + 48.0983363, + 11.4070435 + ] + ] + }, + { + "osmId": "48603655", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 134.80074698026954, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0678927, + 11.3742126 + ], + [ + 48.0681482, + 11.3744217 + ], + [ + 48.0683143, + 11.3745417 + ], + [ + 48.0685142, + 11.3746631 + ], + [ + 48.0686602, + 11.3747624 + ], + [ + 48.0689847, + 11.3749975 + ] + ] + }, + { + "osmId": "48604231", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 1313.7770719200066, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0673692, + 11.3736174 + ], + [ + 48.066811, + 11.3730592 + ], + [ + 48.0661705, + 11.3724137 + ], + [ + 48.0633452, + 11.3695589 + ], + [ + 48.0604837, + 11.3666438 + ], + [ + 48.0599006, + 11.3660585 + ], + [ + 48.0595828, + 11.3657595 + ], + [ + 48.0593223, + 11.3655291 + ], + [ + 48.0589742, + 11.365247 + ], + [ + 48.0588077, + 11.3651245 + ], + [ + 48.0586207, + 11.3649955 + ], + [ + 48.0584357, + 11.3648744 + ], + [ + 48.0582448, + 11.3647577 + ], + [ + 48.058026, + 11.3646323 + ], + [ + 48.0578054, + 11.3645167 + ], + [ + 48.0573676, + 11.3643212 + ] + ] + }, + { + "osmId": "48604236", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 1312.274229134852, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0573614, + 11.3643727 + ], + [ + 48.0577943, + 11.3645686 + ], + [ + 48.0580099, + 11.3646806 + ], + [ + 48.0582294, + 11.3648063 + ], + [ + 48.0584182, + 11.3649213 + ], + [ + 48.0586038, + 11.3650419 + ], + [ + 48.0587991, + 11.3651748 + ], + [ + 48.0589588, + 11.3652929 + ], + [ + 48.0593056, + 11.3655705 + ], + [ + 48.0594338, + 11.3656832 + ], + [ + 48.0595658, + 11.3657993 + ], + [ + 48.0598796, + 11.3661004 + ], + [ + 48.0604593, + 11.3666874 + ], + [ + 48.0635756, + 11.3698567 + ], + [ + 48.0666494, + 11.3729732 + ], + [ + 48.0668829, + 11.3732082 + ], + [ + 48.067345, + 11.3736734 + ] + ] + }, + { + "osmId": "48604238", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 135.48648562282662, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0689847, + 11.3749975 + ], + [ + 48.0685337, + 11.3746342 + ], + [ + 48.0682317, + 11.3743874 + ], + [ + 48.067916, + 11.3741218 + ] + ] + }, + { + "osmId": "48654912", + "name": null, + "lengthMeters": 115.5264166333825, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5723477, + 10.0692347 + ], + [ + 53.5723086, + 10.0691642 + ], + [ + 53.5722717, + 10.0690897 + ], + [ + 53.5722332, + 10.0690016 + ], + [ + 53.572202, + 10.0689207 + ], + [ + 53.5721701, + 10.0688258 + ], + [ + 53.5721383, + 10.068714 + ], + [ + 53.5721023, + 10.0685836 + ], + [ + 53.5720316, + 10.0682738 + ], + [ + 53.5719046, + 10.0676689 + ] + ] + }, + { + "osmId": "48654914", + "name": null, + "lengthMeters": 1122.2753750910529, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5682409, + 10.0498053 + ], + [ + 53.5683239, + 10.0502799 + ], + [ + 53.5683699, + 10.0505829 + ], + [ + 53.5683954, + 10.0507434 + ], + [ + 53.5684239, + 10.0509431 + ], + [ + 53.5684663, + 10.0513189 + ], + [ + 53.5685679, + 10.0521604 + ], + [ + 53.5686588, + 10.0528605 + ], + [ + 53.5687038, + 10.0531688 + ], + [ + 53.5687263, + 10.0533002 + ], + [ + 53.5687486, + 10.0534156 + ], + [ + 53.5687821, + 10.0535743 + ], + [ + 53.5689356, + 10.0542066 + ], + [ + 53.5694906, + 10.0565047 + ], + [ + 53.5695789, + 10.056889 + ], + [ + 53.5697832, + 10.0576824 + ], + [ + 53.5700275, + 10.0586567 + ], + [ + 53.5701965, + 10.0593746 + ], + [ + 53.5704735, + 10.0606791 + ], + [ + 53.5705933, + 10.0612686 + ], + [ + 53.5706799, + 10.0616814 + ], + [ + 53.571134, + 10.0640024 + ], + [ + 53.5712149, + 10.0644086 + ], + [ + 53.5714604, + 10.0658774 + ] + ] + }, + { + "osmId": "48704438", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 462.0700718162927, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4208173, + 13.7580708 + ], + [ + 52.4219785, + 13.7570557 + ], + [ + 52.4234662, + 13.7557552 + ], + [ + 52.42378, + 13.7554809 + ], + [ + 52.4243471, + 13.7549852 + ], + [ + 52.4244245, + 13.7549192 + ], + [ + 52.424485, + 13.7548675 + ] + ] + }, + { + "osmId": "48923442", + "name": null, + "lengthMeters": 136.2601326922509, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5066882, + 13.4896737 + ], + [ + 52.5069397, + 13.4904225 + ], + [ + 52.5070423, + 13.490712 + ], + [ + 52.5071476, + 13.4909919 + ], + [ + 52.5073173, + 13.4913997 + ] + ] + }, + { + "osmId": "49070853", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 135.98852245317653, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.110383, + 11.5362521 + ], + [ + 48.1103648, + 11.5362526 + ], + [ + 48.1099699, + 11.5362629 + ], + [ + 48.1094326, + 11.5362762 + ], + [ + 48.1091602, + 11.536283 + ] + ] + }, + { + "osmId": "49070854", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 969.4951274513703, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1003232, + 11.5352394 + ], + [ + 48.100735, + 11.5354123 + ], + [ + 48.1007741, + 11.535428 + ], + [ + 48.1014402, + 11.5356865 + ], + [ + 48.1016187, + 11.5357547 + ], + [ + 48.1021011, + 11.5359196 + ], + [ + 48.1023501, + 11.5359923 + ], + [ + 48.102611, + 11.5360673 + ], + [ + 48.1028977, + 11.5361387 + ], + [ + 48.1031166, + 11.5361937 + ], + [ + 48.103393, + 11.5362517 + ], + [ + 48.1036588, + 11.5363001 + ], + [ + 48.1038561, + 11.5363318 + ], + [ + 48.1041745, + 11.5363717 + ], + [ + 48.1044474, + 11.5364008 + ], + [ + 48.1048204, + 11.5364323 + ], + [ + 48.1049515, + 11.5364391 + ], + [ + 48.1052272, + 11.5364535 + ], + [ + 48.1056596, + 11.5364633 + ], + [ + 48.1062468, + 11.5364791 + ], + [ + 48.1065625, + 11.5364803 + ], + [ + 48.1068751, + 11.5364766 + ], + [ + 48.107088, + 11.5364712 + ], + [ + 48.1078336, + 11.5364506 + ], + [ + 48.1085863, + 11.5364264 + ], + [ + 48.108959, + 11.5364036 + ] + ] + }, + { + "osmId": "49070855", + "name": null, + "lengthMeters": 819.4091879253041, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1089534, + 11.5362164 + ], + [ + 48.1062447, + 11.5362863 + ], + [ + 48.1052375, + 11.5363038 + ], + [ + 48.1048158, + 11.5363003 + ], + [ + 48.1044585, + 11.536273 + ], + [ + 48.1041767, + 11.5362478 + ], + [ + 48.1038684, + 11.5362131 + ], + [ + 48.1036728, + 11.5361856 + ], + [ + 48.1034612, + 11.5361523 + ], + [ + 48.1031586, + 11.5360856 + ], + [ + 48.1030047, + 11.5360413 + ], + [ + 48.1028652, + 11.5360073 + ], + [ + 48.1026461, + 11.5359508 + ], + [ + 48.1023196, + 11.535865 + ], + [ + 48.1021095, + 11.535821 + ], + [ + 48.1019406, + 11.535789 + ], + [ + 48.1017797, + 11.5357449 + ], + [ + 48.1016145, + 11.5356923 + ] + ] + }, + { + "osmId": "49249104", + "name": null, + "lengthMeters": 185.30493657265848, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6603077, + 13.535166 + ], + [ + 52.6602756, + 13.5351076 + ], + [ + 52.6600963, + 13.5347744 + ], + [ + 52.6600715, + 13.5347302 + ], + [ + 52.659942, + 13.534493 + ], + [ + 52.6598398, + 13.5343054 + ], + [ + 52.659625, + 13.5339044 + ], + [ + 52.6593789, + 13.5334495 + ], + [ + 52.6593683, + 13.5334298 + ], + [ + 52.6591963, + 13.5331188 + ] + ] + }, + { + "osmId": "49250350", + "name": null, + "lengthMeters": 221.07237167956873, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6613009, + 13.5369319 + ], + [ + 52.6614102, + 13.5371634 + ], + [ + 52.6614842, + 13.5373157 + ], + [ + 52.6616707, + 13.5377295 + ], + [ + 52.6619463, + 13.5384071 + ], + [ + 52.6620029, + 13.5385462 + ], + [ + 52.6622139, + 13.5391339 + ], + [ + 52.6622941, + 13.5393573 + ], + [ + 52.6623157, + 13.5394174 + ], + [ + 52.6623921, + 13.5396654 + ] + ] + }, + { + "osmId": "49250352", + "name": null, + "lengthMeters": 187.3982762322236, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6591111, + 13.5329615 + ], + [ + 52.6590736, + 13.53289 + ], + [ + 52.6588247, + 13.5324159 + ], + [ + 52.6585529, + 13.5319028 + ], + [ + 52.6579992, + 13.5308736 + ] + ] + }, + { + "osmId": "49250353", + "name": "Stettiner Bahn", + "lengthMeters": 1294.5062331943238, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6667665, + 13.5580979 + ], + [ + 52.6645028, + 13.5486137 + ], + [ + 52.6642059, + 13.5473701 + ], + [ + 52.6633662, + 13.5438521 + ], + [ + 52.6627773, + 13.5414053 + ], + [ + 52.6625231, + 13.5404224 + ], + [ + 52.6624735, + 13.5402561 + ] + ] + }, + { + "osmId": "49677303", + "name": null, + "lengthMeters": 103.61833436221573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080422, + 13.4506002 + ], + [ + 52.5082661, + 13.4507389 + ], + [ + 52.5085049, + 13.4508669 + ], + [ + 52.5085749, + 13.4509064 + ], + [ + 52.5086242, + 13.4509337 + ], + [ + 52.5089238, + 13.4510954 + ] + ] + }, + { + "osmId": "49791216", + "name": null, + "lengthMeters": 2365.757992638049, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.206954, + 11.3461296 + ], + [ + 48.2066176, + 11.3469127 + ], + [ + 48.2062523, + 11.3477632 + ], + [ + 48.2059829, + 11.3483902 + ], + [ + 48.2057224, + 11.349007 + ], + [ + 48.2055181, + 11.3495206 + ], + [ + 48.2053666, + 11.3499178 + ], + [ + 48.2051722, + 11.3504567 + ], + [ + 48.2050148, + 11.3509183 + ], + [ + 48.2048654, + 11.351383 + ], + [ + 48.204584, + 11.3523253 + ], + [ + 48.2045112, + 11.3526135 + ], + [ + 48.2044031, + 11.3530221 + ], + [ + 48.2040621, + 11.3543965 + ], + [ + 48.2039205, + 11.3549776 + ], + [ + 48.2038437, + 11.3552676 + ], + [ + 48.2037711, + 11.3555419 + ], + [ + 48.203614, + 11.3561042 + ], + [ + 48.2034485, + 11.356656 + ], + [ + 48.2033693, + 11.3569009 + ], + [ + 48.2032808, + 11.3571739 + ], + [ + 48.2031155, + 11.3576604 + ], + [ + 48.2029373, + 11.358152 + ], + [ + 48.2026706, + 11.3588418 + ], + [ + 48.2024151, + 11.3594583 + ], + [ + 48.2020898, + 11.3602003 + ], + [ + 48.2015447, + 11.3614093 + ], + [ + 48.2011792, + 11.3621883 + ], + [ + 48.200966, + 11.3626454 + ], + [ + 48.200035, + 11.3645322 + ], + [ + 48.1991127, + 11.3663397 + ], + [ + 48.1982211, + 11.3680222 + ], + [ + 48.1980223, + 11.3683849 + ], + [ + 48.1971491, + 11.3699691 + ], + [ + 48.1968032, + 11.3705862 + ], + [ + 48.1958222, + 11.3723272 + ], + [ + 48.1956646, + 11.372618 + ], + [ + 48.1955415, + 11.3728392 + ] + ] + }, + { + "osmId": "49791217", + "name": null, + "lengthMeters": 109.8320686168733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1936091, + 11.3765769 + ], + [ + 48.193793, + 11.3762377 + ], + [ + 48.1942232, + 11.3754164 + ] + ] + }, + { + "osmId": "50053580", + "name": null, + "lengthMeters": 881.9329690223038, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4107571, + 13.3090264 + ], + [ + 52.4115926, + 13.3094271 + ], + [ + 52.4122448, + 13.3097656 + ], + [ + 52.4123361, + 13.309813 + ], + [ + 52.4125467, + 13.3099256 + ], + [ + 52.413143, + 13.3102445 + ], + [ + 52.4136782, + 13.3105307 + ], + [ + 52.4138451, + 13.3106241 + ], + [ + 52.4139667, + 13.310691 + ], + [ + 52.4143088, + 13.3108837 + ], + [ + 52.4148101, + 13.3111955 + ], + [ + 52.4149388, + 13.3112755 + ], + [ + 52.4155834, + 13.3117111 + ], + [ + 52.4156913, + 13.311784 + ], + [ + 52.4161136, + 13.3120986 + ], + [ + 52.4163153, + 13.3122496 + ], + [ + 52.4171255, + 13.3129031 + ], + [ + 52.418134, + 13.313727 + ] + ] + }, + { + "osmId": "50161725", + "name": null, + "lengthMeters": 373.0332381511314, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1492013, + 11.4643638 + ], + [ + 48.1495541, + 11.4631968 + ], + [ + 48.1496433, + 11.4628918 + ], + [ + 48.1497708, + 11.4624533 + ], + [ + 48.1500098, + 11.4616573 + ], + [ + 48.1501962, + 11.4610367 + ], + [ + 48.1505868, + 11.4597846 + ] + ] + }, + { + "osmId": "50367281", + "name": null, + "lengthMeters": 464.8445838071874, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5105161, + 13.5395218 + ], + [ + 52.5108545, + 13.5394972 + ], + [ + 52.5111888, + 13.5395053 + ], + [ + 52.5113057, + 13.5395081 + ], + [ + 52.51168, + 13.5395704 + ], + [ + 52.5119688, + 13.5396804 + ], + [ + 52.5121889, + 13.5398003 + ], + [ + 52.5124618, + 13.5399822 + ], + [ + 52.5127099, + 13.5402152 + ], + [ + 52.5129531, + 13.540508 + ], + [ + 52.5131799, + 13.5408578 + ], + [ + 52.5134036, + 13.5412853 + ], + [ + 52.5135915, + 13.5417469 + ], + [ + 52.5137268, + 13.5421879 + ], + [ + 52.5138342, + 13.5426683 + ] + ] + }, + { + "osmId": "50480135", + "name": null, + "lengthMeters": 98.43083063540385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1556407, + 11.5112876 + ], + [ + 48.1556193, + 11.5112985 + ], + [ + 48.1556013, + 11.511308 + ], + [ + 48.1555715, + 11.5113221 + ], + [ + 48.1555521, + 11.5113298 + ], + [ + 48.1555383, + 11.5113344 + ], + [ + 48.1555217, + 11.5113391 + ], + [ + 48.1555097, + 11.5113418 + ], + [ + 48.155497, + 11.5113438 + ], + [ + 48.1554847, + 11.5113453 + ], + [ + 48.1554711, + 11.5113465 + ], + [ + 48.1554429, + 11.5113473 + ], + [ + 48.1553579, + 11.5113479 + ], + [ + 48.1553277, + 11.5113482 + ], + [ + 48.1547608, + 11.5113463 + ] + ] + }, + { + "osmId": "50634296", + "name": null, + "lengthMeters": 2199.304457906635, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6154793, + 9.8658836 + ], + [ + 53.6147097, + 9.8671 + ], + [ + 53.6123676, + 9.8707748 + ], + [ + 53.6116188, + 9.8719299 + ], + [ + 53.610907, + 9.873042 + ], + [ + 53.6105579, + 9.8735782 + ], + [ + 53.609496, + 9.8752326 + ], + [ + 53.6088996, + 9.8761685 + ], + [ + 53.60806, + 9.8775282 + ], + [ + 53.6073705, + 9.878703 + ], + [ + 53.6068678, + 9.8796195 + ], + [ + 53.6063349, + 9.8806569 + ], + [ + 53.6057343, + 9.8818821 + ], + [ + 53.6052377, + 9.8829538 + ], + [ + 53.6048483, + 9.8838395 + ], + [ + 53.6044732, + 9.884717 + ], + [ + 53.6038207, + 9.886293 + ], + [ + 53.6032929, + 9.8876122 + ], + [ + 53.6026752, + 9.8892388 + ], + [ + 53.6022251, + 9.8904142 + ] + ] + }, + { + "osmId": "50988797", + "name": null, + "lengthMeters": 229.21367669446576, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.16218, + 11.647482 + ], + [ + 48.1617975, + 11.6475677 + ], + [ + 48.1613983, + 11.6476551 + ], + [ + 48.1608455, + 11.6477653 + ], + [ + 48.1605738, + 11.6478192 + ], + [ + 48.1602951, + 11.6478658 + ], + [ + 48.1601371, + 11.6478928 + ] + ] + }, + { + "osmId": "50988800", + "name": null, + "lengthMeters": 1079.4228926063129, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1526863, + 11.6489234 + ], + [ + 48.1521975, + 11.6489887 + ], + [ + 48.1517591, + 11.6490423 + ], + [ + 48.1513336, + 11.6490858 + ], + [ + 48.1511264, + 11.649102 + ], + [ + 48.1509159, + 11.6491184 + ], + [ + 48.1505885, + 11.6491451 + ], + [ + 48.1501298, + 11.6491925 + ], + [ + 48.149811, + 11.6492255 + ], + [ + 48.1496149, + 11.6492473 + ], + [ + 48.1495201, + 11.6492569 + ], + [ + 48.149032, + 11.6493065 + ], + [ + 48.1488358, + 11.6493268 + ], + [ + 48.1487521, + 11.6493354 + ], + [ + 48.1487172, + 11.6493403 + ], + [ + 48.1486829, + 11.6493435 + ], + [ + 48.1483229, + 11.6493842 + ], + [ + 48.1480068, + 11.64942 + ], + [ + 48.147745, + 11.6494496 + ], + [ + 48.1473739, + 11.6495043 + ], + [ + 48.1470223, + 11.6495655 + ], + [ + 48.1453634, + 11.6497412 + ], + [ + 48.1436905, + 11.6499135 + ], + [ + 48.1430056, + 11.6499888 + ] + ] + }, + { + "osmId": "50988986", + "name": null, + "lengthMeters": 82.04901777153019, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1693282, + 11.6455821 + ], + [ + 48.1688976, + 11.645674 + ], + [ + 48.168597, + 11.6457304 + ] + ] + }, + { + "osmId": "50989682", + "name": null, + "lengthMeters": 684.3961743888605, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.176301, + 11.6451801 + ], + [ + 48.1758783, + 11.6452221 + ], + [ + 48.1757071, + 11.6452339 + ], + [ + 48.1754519, + 11.645247 + ], + [ + 48.1749159, + 11.6452697 + ], + [ + 48.1737049, + 11.6452857 + ], + [ + 48.1736535, + 11.6452861 + ], + [ + 48.1730331, + 11.645291 + ], + [ + 48.1719553, + 11.6453016 + ], + [ + 48.1711064, + 11.6453063 + ], + [ + 48.1708013, + 11.6453248 + ], + [ + 48.1706203, + 11.6453415 + ], + [ + 48.1702672, + 11.6453851 + ], + [ + 48.17015, + 11.6454026 + ] + ] + }, + { + "osmId": "51012877", + "name": null, + "lengthMeters": 408.74948400799883, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367444, + 13.348593 + ], + [ + 52.5367565, + 13.3489494 + ], + [ + 52.5367702, + 13.349991 + ], + [ + 52.5367908, + 13.3506374 + ], + [ + 52.5368387, + 13.3512597 + ], + [ + 52.5370582, + 13.3538228 + ], + [ + 52.5370814, + 13.3542116 + ], + [ + 52.5371002, + 13.3546015 + ] + ] + }, + { + "osmId": "51012879", + "name": null, + "lengthMeters": 499.3478892634504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371002, + 13.3546015 + ], + [ + 52.537101, + 13.3548488 + ], + [ + 52.5370923, + 13.355119 + ], + [ + 52.5370749, + 13.3554565 + ], + [ + 52.5370443, + 13.3557777 + ], + [ + 52.5369987, + 13.3561224 + ], + [ + 52.5369408, + 13.3564522 + ], + [ + 52.536859, + 13.3568323 + ], + [ + 52.536833, + 13.356936 + ], + [ + 52.5367969, + 13.3570795 + ], + [ + 52.5366903, + 13.357433 + ], + [ + 52.5365813, + 13.3577554 + ], + [ + 52.5362592, + 13.3585215 + ], + [ + 52.536114, + 13.3588072 + ], + [ + 52.5359503, + 13.359111 + ], + [ + 52.5357762, + 13.3593935 + ], + [ + 52.5356005, + 13.3596614 + ], + [ + 52.5354219, + 13.3599025 + ], + [ + 52.5352603, + 13.3601089 + ], + [ + 52.53509, + 13.3602926 + ], + [ + 52.5348246, + 13.360565 + ] + ] + }, + { + "osmId": "51012880", + "name": null, + "lengthMeters": 294.7388097579515, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5405794, + 13.3621196 + ], + [ + 52.5413752, + 13.3638114 + ], + [ + 52.5415437, + 13.3642232 + ], + [ + 52.5416998, + 13.3645946 + ], + [ + 52.5418372, + 13.3649502 + ], + [ + 52.5421252, + 13.3656566 + ] + ] + }, + { + "osmId": "51012882", + "name": null, + "lengthMeters": 170.2599859189716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406129, + 13.3620788 + ], + [ + 52.5404258, + 13.3616844 + ], + [ + 52.5402276, + 13.3613114 + ], + [ + 52.5398587, + 13.3607208 + ], + [ + 52.5395473, + 13.3602802 + ] + ] + }, + { + "osmId": "51097603", + "name": null, + "lengthMeters": 827.5550807262881, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5729447, + 13.5666467 + ], + [ + 52.5724869, + 13.5662552 + ], + [ + 52.5721848, + 13.5660009 + ], + [ + 52.5716272, + 13.5655097 + ], + [ + 52.5707578, + 13.5647644 + ], + [ + 52.5699039, + 13.5640271 + ], + [ + 52.5693603, + 13.5635589 + ], + [ + 52.5687105, + 13.5629966 + ], + [ + 52.5681379, + 13.5625024 + ], + [ + 52.5675504, + 13.5619887 + ], + [ + 52.5669307, + 13.5614599 + ], + [ + 52.5663538, + 13.5609596 + ] + ] + }, + { + "osmId": "51097604", + "name": null, + "lengthMeters": 145.78622529081244, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5740789, + 13.5675387 + ], + [ + 52.573516, + 13.5670528 + ], + [ + 52.5732663, + 13.5668385 + ], + [ + 52.5732331, + 13.5668092 + ], + [ + 52.5731394, + 13.5667285 + ], + [ + 52.5730373, + 13.5666381 + ], + [ + 52.5730093, + 13.566615 + ], + [ + 52.5729178, + 13.5665368 + ] + ] + }, + { + "osmId": "51097605", + "name": null, + "lengthMeters": 225.07379543534975, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5666553, + 13.5614015 + ], + [ + 52.5667225, + 13.5614587 + ], + [ + 52.568373, + 13.5628865 + ], + [ + 52.5684471, + 13.5629506 + ] + ] + }, + { + "osmId": "51268879", + "name": "Berliner Stadtbahn", + "lengthMeters": 123.84913744022342, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512742, + 13.3357783 + ], + [ + 52.5126918, + 13.3357524 + ], + [ + 52.5124741, + 13.3356427 + ], + [ + 52.512055, + 13.3354281 + ], + [ + 52.5116998, + 13.3352505 + ], + [ + 52.5116777, + 13.3352388 + ] + ] + }, + { + "osmId": "51268880", + "name": null, + "lengthMeters": 551.9301983558931, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119077, + 13.3352366 + ], + [ + 52.5112432, + 13.3348934 + ], + [ + 52.5111935, + 13.3348682 + ], + [ + 52.5111839, + 13.3348633 + ], + [ + 52.5105764, + 13.3345552 + ], + [ + 52.5103429, + 13.3344287 + ], + [ + 52.5102289, + 13.3343603 + ], + [ + 52.5100656, + 13.334251 + ], + [ + 52.5099254, + 13.3341454 + ], + [ + 52.5097748, + 13.3340205 + ], + [ + 52.5096508, + 13.3339155 + ], + [ + 52.5094116, + 13.3337056 + ], + [ + 52.5091708, + 13.3334951 + ], + [ + 52.509019, + 13.3333605 + ], + [ + 52.5088106, + 13.3331769 + ], + [ + 52.5087729, + 13.3331446 + ], + [ + 52.5084283, + 13.332845 + ], + [ + 52.5080431, + 13.3325137 + ], + [ + 52.5078549, + 13.3323545 + ], + [ + 52.5078474, + 13.3323481 + ], + [ + 52.5074238, + 13.3319841 + ], + [ + 52.5073833, + 13.3319519 + ] + ] + }, + { + "osmId": "51268884", + "name": "Berliner Stadtbahn", + "lengthMeters": 85.89500226518877, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5138169, + 13.3363829 + ], + [ + 52.513895, + 13.3364236 + ], + [ + 52.5141942, + 13.336573 + ], + [ + 52.5145553, + 13.3367557 + ] + ] + }, + { + "osmId": "51317083", + "name": null, + "lengthMeters": 138.6517655131992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5532239, + 13.4791043 + ], + [ + 52.5532274, + 13.4791899 + ], + [ + 52.553233, + 13.4793254 + ], + [ + 52.5532339, + 13.4793477 + ], + [ + 52.5532482, + 13.4794311 + ], + [ + 52.5532613, + 13.4795081 + ], + [ + 52.5532814, + 13.4795811 + ], + [ + 52.5533044, + 13.4796492 + ], + [ + 52.5533361, + 13.4797228 + ], + [ + 52.553343, + 13.4797368 + ], + [ + 52.5533868, + 13.4798254 + ], + [ + 52.5537608, + 13.4805827 + ], + [ + 52.5537944, + 13.4806587 + ], + [ + 52.5538647, + 13.4808097 + ] + ] + }, + { + "osmId": "51372959", + "name": null, + "lengthMeters": 395.83489904634934, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1216409, + 11.5927901 + ], + [ + 48.1218376, + 11.5939217 + ], + [ + 48.1220239, + 11.5949453 + ], + [ + 48.1220704, + 11.5951548 + ], + [ + 48.1221466, + 11.5954982 + ], + [ + 48.1222559, + 11.5959405 + ], + [ + 48.122383, + 11.5963984 + ], + [ + 48.1225482, + 11.5969049 + ], + [ + 48.1226639, + 11.5972185 + ], + [ + 48.1227201, + 11.5973591 + ], + [ + 48.1228801, + 11.5977591 + ] + ] + }, + { + "osmId": "51372971", + "name": null, + "lengthMeters": 99.8613627581864, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1185067, + 11.5765229 + ], + [ + 48.1188511, + 11.5777653 + ] + ] + }, + { + "osmId": "51372972", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 190.73697383729038, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1261439, + 11.5454381 + ], + [ + 48.1263575, + 11.5450113 + ], + [ + 48.1266452, + 11.5444111 + ], + [ + 48.1268193, + 11.5440599 + ], + [ + 48.1269039, + 11.5438891 + ], + [ + 48.1271615, + 11.5433694 + ] + ] + }, + { + "osmId": "51372975", + "name": null, + "lengthMeters": 197.99719188215883, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188039, + 11.5605836 + ], + [ + 48.1181327, + 11.5619916 + ], + [ + 48.1177691, + 11.5627542 + ] + ] + }, + { + "osmId": "51813824", + "name": null, + "lengthMeters": 1388.73904150539, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1633444, + 11.432232 + ], + [ + 48.1638117, + 11.4313752 + ], + [ + 48.1652913, + 11.4286761 + ], + [ + 48.1653103, + 11.4286414 + ], + [ + 48.1654994, + 11.4282998 + ], + [ + 48.1663082, + 11.4268208 + ], + [ + 48.1675364, + 11.4245742 + ], + [ + 48.1688081, + 11.4222459 + ], + [ + 48.1696514, + 11.4206903 + ], + [ + 48.1705638, + 11.4190146 + ], + [ + 48.1708865, + 11.4184234 + ], + [ + 48.1712578, + 11.417745 + ] + ] + }, + { + "osmId": "51813825", + "name": null, + "lengthMeters": 1804.5095328416562, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1815104, + 11.3988826 + ], + [ + 48.181355, + 11.3991655 + ], + [ + 48.1800247, + 11.401609 + ], + [ + 48.1796086, + 11.4023744 + ], + [ + 48.1792047, + 11.4031212 + ], + [ + 48.1791929, + 11.403143 + ], + [ + 48.1781769, + 11.4050224 + ], + [ + 48.1777901, + 11.4057466 + ], + [ + 48.1765682, + 11.4079827 + ], + [ + 48.1752347, + 11.4103917 + ], + [ + 48.1746307, + 11.4114983 + ], + [ + 48.1733505, + 11.4138367 + ], + [ + 48.1729491, + 11.4145592 + ], + [ + 48.1728969, + 11.4146564 + ], + [ + 48.1716966, + 11.4168694 + ], + [ + 48.1712286, + 11.4177108 + ] + ] + }, + { + "osmId": "51813826", + "name": null, + "lengthMeters": 2340.7944870501856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1800646, + 11.4014203 + ], + [ + 48.1802086, + 11.4011561 + ], + [ + 48.181311, + 11.3991097 + ], + [ + 48.182161, + 11.3975508 + ], + [ + 48.1834289, + 11.3952299 + ], + [ + 48.1847184, + 11.3928808 + ], + [ + 48.1859318, + 11.3906504 + ], + [ + 48.1859885, + 11.3905462 + ], + [ + 48.1860528, + 11.3904281 + ], + [ + 48.1867927, + 11.3890677 + ], + [ + 48.1880661, + 11.3867269 + ], + [ + 48.1892838, + 11.3844879 + ], + [ + 48.1901279, + 11.3829359 + ], + [ + 48.1909996, + 11.3813331 + ], + [ + 48.191413, + 11.3805763 + ], + [ + 48.1925621, + 11.3784728 + ], + [ + 48.1926203, + 11.3783663 + ], + [ + 48.1933896, + 11.376976 + ] + ] + }, + { + "osmId": "51813827", + "name": null, + "lengthMeters": 1556.7995983041064, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1800419, + 11.4013819 + ], + [ + 48.1799598, + 11.4015307 + ], + [ + 48.1791103, + 11.4030715 + ], + [ + 48.1782114, + 11.4047018 + ], + [ + 48.1775753, + 11.4058517 + ], + [ + 48.1770065, + 11.4068503 + ], + [ + 48.1767696, + 11.4072598 + ], + [ + 48.1763343, + 11.4080438 + ], + [ + 48.1762461, + 11.4082039 + ], + [ + 48.1761595, + 11.4083605 + ], + [ + 48.1757466, + 11.4091373 + ], + [ + 48.1753785, + 11.4098565 + ], + [ + 48.1752737, + 11.4100594 + ], + [ + 48.1752136, + 11.410177 + ], + [ + 48.1751505, + 11.41029 + ], + [ + 48.1746287, + 11.4112762 + ], + [ + 48.1741227, + 11.4122009 + ], + [ + 48.1730518, + 11.4141582 + ], + [ + 48.1723194, + 11.4154967 + ], + [ + 48.1720744, + 11.4159444 + ], + [ + 48.1716156, + 11.4167775 + ], + [ + 48.1711601, + 11.4176096 + ] + ] + }, + { + "osmId": "51972592", + "name": null, + "lengthMeters": 83.30517969082165, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0702778, + 11.6434841 + ], + [ + 48.0696309, + 11.6429186 + ] + ] + }, + { + "osmId": "51982539", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 129.791421736624, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0149534, + 11.5857663 + ], + [ + 48.0150004, + 11.5857417 + ], + [ + 48.0153292, + 11.5855698 + ], + [ + 48.0159029, + 11.5852813 + ], + [ + 48.0160544, + 11.5852087 + ], + [ + 48.0160589, + 11.5852065 + ] + ] + }, + { + "osmId": "51982540", + "name": null, + "lengthMeters": 641.8321987149908, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0208091, + 11.5831074 + ], + [ + 48.0216126, + 11.5826953 + ], + [ + 48.0219966, + 11.5825109 + ], + [ + 48.0227995, + 11.5821351 + ], + [ + 48.0229152, + 11.5820843 + ], + [ + 48.0232082, + 11.5819454 + ], + [ + 48.0233419, + 11.5818969 + ], + [ + 48.0234767, + 11.5818587 + ], + [ + 48.0236144, + 11.581828 + ], + [ + 48.0237746, + 11.5818008 + ], + [ + 48.0239309, + 11.5817904 + ], + [ + 48.0241302, + 11.5817932 + ], + [ + 48.0242953, + 11.5818038 + ], + [ + 48.0244948, + 11.581834 + ], + [ + 48.024667, + 11.5818763 + ], + [ + 48.024834, + 11.5819318 + ], + [ + 48.0249632, + 11.5819814 + ], + [ + 48.025132, + 11.5820587 + ], + [ + 48.0252754, + 11.5821335 + ], + [ + 48.0254774, + 11.5822603 + ], + [ + 48.0256945, + 11.5824054 + ], + [ + 48.0259883, + 11.5826439 + ], + [ + 48.02628, + 11.5829457 + ] + ] + }, + { + "osmId": "51982541", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 3335.8815907246144, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 47.9896623, + 11.6274934 + ], + [ + 47.9897029, + 11.6274176 + ], + [ + 47.9904104, + 11.6260961 + ], + [ + 47.9906507, + 11.6256473 + ], + [ + 47.9910192, + 11.6249621 + ], + [ + 47.9919133, + 11.6232996 + ], + [ + 47.9924784, + 11.6222489 + ], + [ + 47.9932348, + 11.6208374 + ], + [ + 47.9941334, + 11.6191605 + ], + [ + 47.9954798, + 11.6166479 + ], + [ + 47.9960257, + 11.615629 + ], + [ + 47.9963814, + 11.6149741 + ], + [ + 47.9971742, + 11.6135107 + ], + [ + 47.9977367, + 11.6124723 + ], + [ + 47.9986268, + 11.6108117 + ], + [ + 47.999961, + 11.6083222 + ], + [ + 48.0001705, + 11.6079313 + ], + [ + 48.0008555, + 11.606654 + ], + [ + 48.0022023, + 11.6041425 + ], + [ + 48.0031038, + 11.6024614 + ], + [ + 48.0039241, + 11.6009253 + ], + [ + 48.004451, + 11.599946 + ], + [ + 48.004676, + 11.5995279 + ], + [ + 48.0053497, + 11.5982674 + ], + [ + 48.0058448, + 11.5973442 + ], + [ + 48.0066917, + 11.5957658 + ], + [ + 48.00759, + 11.5940864 + ], + [ + 48.0084321, + 11.5925185 + ] + ] + }, + { + "osmId": "52578095", + "name": null, + "lengthMeters": 247.52066760212332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4894442, + 13.4588498 + ], + [ + 52.4894342, + 13.4588494 + ], + [ + 52.4892537, + 13.4588402 + ], + [ + 52.4890758, + 13.4588482 + ], + [ + 52.488913, + 13.4588699 + ], + [ + 52.4887667, + 13.4588983 + ], + [ + 52.4886061, + 13.458947 + ], + [ + 52.4884724, + 13.458998 + ], + [ + 52.4883545, + 13.4590534 + ], + [ + 52.4882389, + 13.4591137 + ], + [ + 52.4881325, + 13.4591758 + ], + [ + 52.4880357, + 13.4592424 + ], + [ + 52.487848, + 13.4593748 + ], + [ + 52.4876924, + 13.4595166 + ], + [ + 52.4875255, + 13.4596903 + ], + [ + 52.4873591, + 13.4598858 + ] + ] + }, + { + "osmId": "52580073", + "name": null, + "lengthMeters": 222.19570682160557, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073008, + 13.4499966 + ], + [ + 52.5054348, + 13.4488221 + ] + ] + }, + { + "osmId": "52704771", + "name": null, + "lengthMeters": 186.92474929782318, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6327348, + 13.2896988 + ], + [ + 52.6327037, + 13.2897386 + ], + [ + 52.632689, + 13.289756 + ], + [ + 52.6324367, + 13.2900598 + ], + [ + 52.6322807, + 13.2902405 + ], + [ + 52.6321593, + 13.2904013 + ], + [ + 52.6319931, + 13.2906045 + ], + [ + 52.6319202, + 13.2906936 + ], + [ + 52.6315602, + 13.2911351 + ], + [ + 52.631554, + 13.2911429 + ], + [ + 52.6315009, + 13.2912077 + ], + [ + 52.6314465, + 13.2912748 + ], + [ + 52.6313852, + 13.2913496 + ] + ] + }, + { + "osmId": "52782251", + "name": null, + "lengthMeters": 156.8816870851268, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4498226, + 13.5233536 + ], + [ + 52.4497033, + 13.5226745 + ], + [ + 52.4496515, + 13.5223803 + ], + [ + 52.4496119, + 13.5220749 + ], + [ + 52.4495857, + 13.5217112 + ], + [ + 52.4495803, + 13.5213697 + ], + [ + 52.4495848, + 13.5210879 + ] + ] + }, + { + "osmId": "52782252", + "name": null, + "lengthMeters": 165.7088029232287, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4765637, + 13.3645679 + ], + [ + 52.476521, + 13.3645949 + ], + [ + 52.4763712, + 13.3646925 + ], + [ + 52.476034, + 13.3649069 + ], + [ + 52.4751745, + 13.3654535 + ] + ] + }, + { + "osmId": "52782253", + "name": null, + "lengthMeters": 179.77617479288165, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4766879, + 13.365085 + ], + [ + 52.4768379, + 13.3649639 + ], + [ + 52.4770022, + 13.3648205 + ], + [ + 52.477085, + 13.3647444 + ], + [ + 52.4771557, + 13.3646756 + ], + [ + 52.4772229, + 13.3646052 + ], + [ + 52.4772998, + 13.364523 + ], + [ + 52.4773856, + 13.3644241 + ], + [ + 52.4774464, + 13.3643473 + ], + [ + 52.4775127, + 13.3642625 + ], + [ + 52.4775727, + 13.3641779 + ], + [ + 52.477661, + 13.3640472 + ], + [ + 52.4777461, + 13.3639124 + ], + [ + 52.4778461, + 13.3637453 + ], + [ + 52.4779711, + 13.3635093 + ] + ] + }, + { + "osmId": "52789596", + "name": null, + "lengthMeters": 251.43848018375547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229122, + 13.4795574 + ], + [ + 52.5225202, + 13.4795663 + ], + [ + 52.5221247, + 13.4795824 + ], + [ + 52.5219529, + 13.4795934 + ], + [ + 52.5212837, + 13.4796014 + ], + [ + 52.5208609, + 13.4796057 + ], + [ + 52.5206513, + 13.4796003 + ] + ] + }, + { + "osmId": "52928053", + "name": null, + "lengthMeters": 615.7122962260414, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6028701, + 13.455873 + ], + [ + 52.6025384, + 13.4555156 + ], + [ + 52.6025361, + 13.4555132 + ], + [ + 52.6014459, + 13.4543385 + ], + [ + 52.6012335, + 13.4541073 + ], + [ + 52.599869, + 13.4526271 + ], + [ + 52.5982424, + 13.4508668 + ] + ] + }, + { + "osmId": "52930837", + "name": null, + "lengthMeters": 780.9899621076219, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6149991, + 13.2431097 + ], + [ + 52.6150501, + 13.2430358 + ], + [ + 52.6158467, + 13.2418818 + ], + [ + 52.616194, + 13.2413907 + ], + [ + 52.6166543, + 13.24074 + ], + [ + 52.6187073, + 13.237794 + ], + [ + 52.6194742, + 13.2366913 + ], + [ + 52.6202961, + 13.235513 + ] + ] + }, + { + "osmId": "52930842", + "name": "Kremmener Bahn", + "lengthMeters": 589.775685312197, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5871802, + 13.2905217 + ], + [ + 52.5875128, + 13.290296 + ], + [ + 52.5875339, + 13.2902811 + ], + [ + 52.5878306, + 13.290087 + ], + [ + 52.5881388, + 13.2898709 + ], + [ + 52.5883906, + 13.2897082 + ], + [ + 52.5884312, + 13.2896812 + ], + [ + 52.5884648, + 13.2896589 + ], + [ + 52.5888019, + 13.2894319 + ], + [ + 52.5888083, + 13.2894276 + ], + [ + 52.5892963, + 13.2890706 + ], + [ + 52.5899404, + 13.288581 + ], + [ + 52.5900568, + 13.2884925 + ], + [ + 52.5900622, + 13.2884887 + ], + [ + 52.5900691, + 13.2884837 + ], + [ + 52.590102, + 13.2884603 + ], + [ + 52.5901783, + 13.2884018 + ], + [ + 52.5902539, + 13.2883453 + ], + [ + 52.590275, + 13.2883295 + ], + [ + 52.5902946, + 13.2883148 + ], + [ + 52.590421, + 13.2882197 + ], + [ + 52.5907652, + 13.2879611 + ], + [ + 52.5910642, + 13.2877364 + ], + [ + 52.5915901, + 13.2873352 + ], + [ + 52.5918616, + 13.2871337 + ], + [ + 52.5920339, + 13.2870059 + ] + ] + }, + { + "osmId": "52930848", + "name": null, + "lengthMeters": 312.18222976525203, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5920339, + 13.2870059 + ], + [ + 52.5921137, + 13.2869454 + ], + [ + 52.5923481, + 13.2867679 + ], + [ + 52.5929115, + 13.2863553 + ], + [ + 52.5933439, + 13.2860646 + ], + [ + 52.5934627, + 13.2859847 + ], + [ + 52.5940177, + 13.285631 + ], + [ + 52.5946331, + 13.2852643 + ] + ] + }, + { + "osmId": "53072731", + "name": null, + "lengthMeters": 229.74453347194682, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5107577, + 9.9202226 + ], + [ + 53.5108819, + 9.9197492 + ], + [ + 53.5109195, + 9.9196313 + ], + [ + 53.5109846, + 9.919427 + ], + [ + 53.5111353, + 9.9190942 + ], + [ + 53.51122, + 9.9189436 + ], + [ + 53.5113088, + 9.9188 + ], + [ + 53.5115074, + 9.9185677 + ], + [ + 53.5117087, + 9.9183899 + ], + [ + 53.5117268, + 9.9183739 + ], + [ + 53.5119274, + 9.9182571 + ], + [ + 53.5120476, + 9.9182054 + ], + [ + 53.5121563, + 9.9181565 + ], + [ + 53.5122594, + 9.918107 + ] + ] + }, + { + "osmId": "53620979", + "name": "ehem. Isartalbahn", + "lengthMeters": 404.1592368090185, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0984752, + 11.545797 + ], + [ + 48.098294, + 11.5455917 + ], + [ + 48.0977124, + 11.5450109 + ], + [ + 48.0967519, + 11.5440974 + ], + [ + 48.0961933, + 11.5436162 + ], + [ + 48.095365, + 11.5429962 + ] + ] + }, + { + "osmId": "55884097", + "name": null, + "lengthMeters": 253.123073944927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5666772, + 9.9342108 + ], + [ + 53.5663922, + 9.9342793 + ], + [ + 53.5652731, + 9.9344395 + ], + [ + 53.5648465, + 9.9345281 + ], + [ + 53.5646952, + 9.9345614 + ], + [ + 53.5645534, + 9.9345924 + ], + [ + 53.5644146, + 9.9346226 + ] + ] + }, + { + "osmId": "55884100", + "name": null, + "lengthMeters": 451.2946089826717, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5682183, + 9.9338411 + ], + [ + 53.5682287, + 9.9338396 + ], + [ + 53.568237, + 9.9338387 + ], + [ + 53.5684116, + 9.9338191 + ], + [ + 53.5686473, + 9.9337876 + ], + [ + 53.5687923, + 9.9337838 + ], + [ + 53.5690485, + 9.9337563 + ], + [ + 53.569675, + 9.9337232 + ], + [ + 53.5699201, + 9.9337123 + ], + [ + 53.5702451, + 9.9336735 + ], + [ + 53.5703057, + 9.9336649 + ], + [ + 53.570549, + 9.9336079 + ], + [ + 53.5708663, + 9.9334999 + ], + [ + 53.5710093, + 9.933436 + ], + [ + 53.5710302, + 9.9334266 + ], + [ + 53.5713268, + 9.9332637 + ], + [ + 53.5714581, + 9.9331801 + ], + [ + 53.5717783, + 9.9329421 + ], + [ + 53.5721566, + 9.9326095 + ] + ] + }, + { + "osmId": "55945525", + "name": null, + "lengthMeters": 329.01406338102805, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.128693, + 11.5395743 + ], + [ + 48.1285106, + 11.5400816 + ], + [ + 48.1283435, + 11.5405235 + ], + [ + 48.128118, + 11.5411142 + ], + [ + 48.1278912, + 11.5416346 + ], + [ + 48.1275981, + 11.5422647 + ], + [ + 48.1270978, + 11.5433009 + ] + ] + }, + { + "osmId": "55945526", + "name": null, + "lengthMeters": 329.0798124170519, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1287251, + 11.5396086 + ], + [ + 48.1285462, + 11.5401166 + ], + [ + 48.1283802, + 11.5405518 + ], + [ + 48.1281515, + 11.5411508 + ], + [ + 48.1279265, + 11.5416735 + ], + [ + 48.1276364, + 11.5422999 + ], + [ + 48.1271327, + 11.5433385 + ] + ] + }, + { + "osmId": "55945527", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 329.0851486083013, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.128754, + 11.5396395 + ], + [ + 48.1285768, + 11.5401428 + ], + [ + 48.1284105, + 11.5405792 + ], + [ + 48.1281832, + 11.5411745 + ], + [ + 48.1279557, + 11.5417035 + ], + [ + 48.1276655, + 11.5423303 + ], + [ + 48.1272245, + 11.5432394 + ], + [ + 48.1271615, + 11.5433694 + ] + ] + }, + { + "osmId": "56005817", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 480.5220541099111, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1294837, + 11.537614 + ], + [ + 48.1295399, + 11.537458 + ], + [ + 48.1296819, + 11.5370498 + ], + [ + 48.1297128, + 11.536964 + ], + [ + 48.1298696, + 11.5365476 + ], + [ + 48.1300238, + 11.5361674 + ], + [ + 48.1301916, + 11.5357947 + ], + [ + 48.1303819, + 11.5354242 + ], + [ + 48.1305792, + 11.5350796 + ], + [ + 48.1309931, + 11.5344549 + ], + [ + 48.1313501, + 11.5339161 + ], + [ + 48.1317664, + 11.5333001 + ], + [ + 48.1322077, + 11.5326469 + ] + ] + }, + { + "osmId": "56005818", + "name": null, + "lengthMeters": 259.92935077026567, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.128693, + 11.5395743 + ], + [ + 48.1296256, + 11.5369043 + ], + [ + 48.1297847, + 11.5364776 + ] + ] + }, + { + "osmId": "56005819", + "name": null, + "lengthMeters": 184.71315623603857, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1295093, + 11.5374146 + ], + [ + 48.1295026, + 11.5374326 + ], + [ + 48.1290594, + 11.5386832 + ], + [ + 48.1287251, + 11.5396086 + ] + ] + }, + { + "osmId": "56005820", + "name": null, + "lengthMeters": 164.29211651420115, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1262224, + 11.5450841 + ], + [ + 48.1263931, + 11.5447355 + ], + [ + 48.1264622, + 11.5445941 + ], + [ + 48.1265503, + 11.5444149 + ], + [ + 48.1270978, + 11.5433009 + ] + ] + }, + { + "osmId": "56005822", + "name": null, + "lengthMeters": 192.20914307868932, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1271327, + 11.5433385 + ], + [ + 48.1268577, + 11.5438977 + ], + [ + 48.1268523, + 11.5439087 + ], + [ + 48.1263306, + 11.5449696 + ], + [ + 48.1262811, + 11.5450704 + ], + [ + 48.126108, + 11.5454241 + ] + ] + }, + { + "osmId": "56129199", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 390.4402695137147, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5596331, + 9.9265761 + ], + [ + 53.5596923, + 9.9247328 + ], + [ + 53.5596993, + 9.92433 + ], + [ + 53.5597071, + 9.9238162 + ], + [ + 53.5597102, + 9.9234694 + ], + [ + 53.5597157, + 9.9229347 + ], + [ + 53.5597211, + 9.9226904 + ], + [ + 53.5597284, + 9.9224774 + ], + [ + 53.5597447, + 9.9221049 + ], + [ + 53.5597651, + 9.9217285 + ], + [ + 53.5597814, + 9.9214391 + ], + [ + 53.5598243, + 9.9206756 + ] + ] + }, + { + "osmId": "56142779", + "name": null, + "lengthMeters": 109.05530478772918, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1191744, + 11.5834063 + ], + [ + 48.1192084, + 11.5833429 + ], + [ + 48.1192398, + 11.5832789 + ], + [ + 48.1192438, + 11.5832703 + ], + [ + 48.119277, + 11.5831972 + ], + [ + 48.1193116, + 11.5831076 + ], + [ + 48.1193691, + 11.5829445 + ], + [ + 48.1193755, + 11.5829265 + ], + [ + 48.119493, + 11.5825765 + ], + [ + 48.1195198, + 11.5824959 + ], + [ + 48.119539, + 11.5824518 + ], + [ + 48.1195596, + 11.5824116 + ], + [ + 48.1195812, + 11.5823746 + ], + [ + 48.1196049, + 11.5823447 + ], + [ + 48.1196414, + 11.582306 + ], + [ + 48.119673, + 11.5822769 + ], + [ + 48.1196995, + 11.5822597 + ], + [ + 48.1197232, + 11.5822495 + ], + [ + 48.1197345, + 11.5822444 + ] + ] + }, + { + "osmId": "56206514", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 771.6901461486352, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0233336, + 11.5817521 + ], + [ + 48.0234191, + 11.5817121 + ], + [ + 48.0239049, + 11.5814845 + ], + [ + 48.0241315, + 11.5813783 + ], + [ + 48.024825, + 11.5810813 + ], + [ + 48.0249732, + 11.5810141 + ], + [ + 48.0251517, + 11.5809332 + ], + [ + 48.0251543, + 11.580932 + ], + [ + 48.0268244, + 11.5801749 + ], + [ + 48.0269901, + 11.5800998 + ], + [ + 48.0288126, + 11.579225 + ], + [ + 48.0299608, + 11.5786738 + ] + ] + }, + { + "osmId": "56237483", + "name": null, + "lengthMeters": 1174.9669831304295, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3617716, + 13.4766986 + ], + [ + 52.3604451, + 13.4820581 + ], + [ + 52.3602172, + 13.4833138 + ], + [ + 52.3599978, + 13.4848802 + ], + [ + 52.3598838, + 13.4864255 + ], + [ + 52.3598383, + 13.4880412 + ], + [ + 52.3598994, + 13.4897012 + ], + [ + 52.3600183, + 13.4911853 + ], + [ + 52.3601435, + 13.4922268 + ], + [ + 52.3603425, + 13.4933896 + ] + ] + }, + { + "osmId": "56473169", + "name": null, + "lengthMeters": 604.8314663159326, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4812696, + 13.5182355 + ], + [ + 52.4813053, + 13.5181543 + ], + [ + 52.4813494, + 13.5180538 + ], + [ + 52.4815559, + 13.5175843 + ], + [ + 52.4817558, + 13.5171314 + ], + [ + 52.4817934, + 13.5170462 + ], + [ + 52.4819876, + 13.5166063 + ], + [ + 52.4821925, + 13.5161414 + ], + [ + 52.4822281, + 13.5160606 + ], + [ + 52.482635, + 13.5151374 + ], + [ + 52.4827179, + 13.5149551 + ], + [ + 52.4827677, + 13.5148455 + ], + [ + 52.4828188, + 13.5147331 + ], + [ + 52.4832066, + 13.5138511 + ], + [ + 52.4834045, + 13.5134009 + ], + [ + 52.4834614, + 13.5132561 + ], + [ + 52.4835069, + 13.5131301 + ], + [ + 52.4835079, + 13.5131272 + ], + [ + 52.4835523, + 13.5129988 + ], + [ + 52.4840359, + 13.5115985 + ], + [ + 52.4841443, + 13.5112704 + ], + [ + 52.4842101, + 13.5110406 + ], + [ + 52.4842349, + 13.5109284 + ], + [ + 52.4842525, + 13.5107979 + ] + ] + }, + { + "osmId": "56473174", + "name": null, + "lengthMeters": 238.1849264172614, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5208315, + 13.4802744 + ], + [ + 52.5209704, + 13.4802884 + ], + [ + 52.5211219, + 13.4802713 + ], + [ + 52.5212297, + 13.4802453 + ], + [ + 52.5212793, + 13.4802253 + ], + [ + 52.5214558, + 13.4801315 + ], + [ + 52.5216476, + 13.4800116 + ], + [ + 52.5219721, + 13.47979 + ], + [ + 52.5221209, + 13.479705 + ], + [ + 52.5222244, + 13.4796727 + ], + [ + 52.5223274, + 13.4796395 + ], + [ + 52.5224263, + 13.4796212 + ], + [ + 52.5225202, + 13.4796178 + ], + [ + 52.5229078, + 13.479613 + ] + ] + }, + { + "osmId": "56473177", + "name": null, + "lengthMeters": 473.46804426105916, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.550725, + 13.4438091 + ], + [ + 52.5506399, + 13.4440673 + ], + [ + 52.5503523, + 13.4450016 + ], + [ + 52.5502518, + 13.445312 + ], + [ + 52.5500436, + 13.4459592 + ], + [ + 52.5499946, + 13.4461039 + ], + [ + 52.5499773, + 13.4461603 + ], + [ + 52.549948, + 13.4462557 + ], + [ + 52.5499193, + 13.4463501 + ], + [ + 52.5497421, + 13.4469259 + ], + [ + 52.5496446, + 13.4472383 + ], + [ + 52.5494335, + 13.4479149 + ], + [ + 52.5493882, + 13.448059 + ], + [ + 52.5493561, + 13.4481609 + ], + [ + 52.5493328, + 13.4482348 + ], + [ + 52.5488323, + 13.449825 + ], + [ + 52.5487682, + 13.450028 + ] + ] + }, + { + "osmId": "56473178", + "name": null, + "lengthMeters": 79.65365169873911, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525513, + 13.5196288 + ], + [ + 52.5256095, + 13.5196094 + ], + [ + 52.525648, + 13.5195987 + ], + [ + 52.5256929, + 13.5195763 + ], + [ + 52.525726, + 13.5195582 + ], + [ + 52.5257721, + 13.5195177 + ], + [ + 52.5257963, + 13.5194876 + ], + [ + 52.5258521, + 13.5194196 + ], + [ + 52.5258739, + 13.519385 + ], + [ + 52.5259238, + 13.5192812 + ], + [ + 52.525955, + 13.5192054 + ], + [ + 52.5259741, + 13.5191215 + ], + [ + 52.5259809, + 13.5190867 + ], + [ + 52.5259858, + 13.5190544 + ], + [ + 52.5260027, + 13.5189213 + ] + ] + }, + { + "osmId": "57727709", + "name": null, + "lengthMeters": 482.3875920935839, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5047729, + 13.3237463 + ], + [ + 52.5047519, + 13.3241076 + ], + [ + 52.504677, + 13.3254566 + ], + [ + 52.5046583, + 13.3257853 + ], + [ + 52.504621, + 13.3265338 + ], + [ + 52.5046175, + 13.3266966 + ], + [ + 52.5046161, + 13.3268583 + ], + [ + 52.504625, + 13.3271725 + ], + [ + 52.5046367, + 13.3273651 + ], + [ + 52.5046519, + 13.3275589 + ], + [ + 52.5046705, + 13.327739 + ], + [ + 52.5046913, + 13.3279167 + ], + [ + 52.5047071, + 13.3280349 + ], + [ + 52.5047258, + 13.3281508 + ], + [ + 52.5047475, + 13.3282784 + ], + [ + 52.5047707, + 13.3284048 + ], + [ + 52.5047975, + 13.3285404 + ], + [ + 52.5048272, + 13.3286737 + ], + [ + 52.5048577, + 13.3288015 + ], + [ + 52.5048892, + 13.3289245 + ], + [ + 52.5049313, + 13.3290772 + ], + [ + 52.5049561, + 13.329161 + ], + [ + 52.5050215, + 13.3293657 + ], + [ + 52.5050931, + 13.3295693 + ], + [ + 52.5051463, + 13.3297038 + ], + [ + 52.5051986, + 13.3298322 + ], + [ + 52.5052515, + 13.3299493 + ], + [ + 52.5053172, + 13.3300911 + ], + [ + 52.5054219, + 13.3303007 + ], + [ + 52.5055174, + 13.3304807 + ] + ] + }, + { + "osmId": "57728638", + "name": null, + "lengthMeters": 331.0737356502485, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505114, + 13.3176347 + ], + [ + 52.5050919, + 13.3180242 + ], + [ + 52.5050912, + 13.3180374 + ], + [ + 52.5049918, + 13.3197855 + ], + [ + 52.5049755, + 13.3201166 + ], + [ + 52.50497, + 13.3202078 + ], + [ + 52.5049272, + 13.3209942 + ], + [ + 52.5048801, + 13.321823 + ], + [ + 52.5048419, + 13.3225057 + ] + ] + }, + { + "osmId": "57728648", + "name": null, + "lengthMeters": 135.73665754148112, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5051845, + 13.3176453 + ], + [ + 52.5051774, + 13.3177724 + ], + [ + 52.5051727, + 13.3178564 + ], + [ + 52.5051647, + 13.3179984 + ], + [ + 52.5051639, + 13.3180126 + ], + [ + 52.5051535, + 13.3181953 + ], + [ + 52.5051383, + 13.3184645 + ], + [ + 52.5051372, + 13.3184836 + ], + [ + 52.5051098, + 13.3189562 + ], + [ + 52.5050909, + 13.3192976 + ], + [ + 52.5050718, + 13.3196422 + ] + ] + }, + { + "osmId": "58205586", + "name": null, + "lengthMeters": 317.0334066059931, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637842, + 9.9337663 + ], + [ + 53.5648126, + 9.9336574 + ], + [ + 53.5653769, + 9.9335934 + ], + [ + 53.5661508, + 9.9335179 + ], + [ + 53.5664437, + 9.9334801 + ], + [ + 53.5666021, + 9.9334512 + ], + [ + 53.5666289, + 9.9334483 + ] + ] + }, + { + "osmId": "58205594", + "name": null, + "lengthMeters": 101.57600188460137, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636121, + 9.933905 + ], + [ + 53.5634204, + 9.9339254 + ], + [ + 53.5631371, + 9.9339385 + ], + [ + 53.5629511, + 9.9339275 + ], + [ + 53.5627988, + 9.9339032 + ], + [ + 53.5627017, + 9.9338715 + ] + ] + }, + { + "osmId": "58205716", + "name": null, + "lengthMeters": 103.294974808564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5712231, + 9.9329084 + ], + [ + 53.5721453, + 9.9327201 + ] + ] + }, + { + "osmId": "58205718", + "name": null, + "lengthMeters": 268.5642880367947, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5688146, + 9.9332043 + ], + [ + 53.5693814, + 9.9331425 + ], + [ + 53.5695976, + 9.9331265 + ], + [ + 53.5698551, + 9.9331027 + ], + [ + 53.5701887, + 9.933063 + ], + [ + 53.5707371, + 9.9329916 + ], + [ + 53.5712231, + 9.9329084 + ] + ] + }, + { + "osmId": "58205720", + "name": null, + "lengthMeters": 257.71209027540283, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5721453, + 9.9327201 + ], + [ + 53.5724311, + 9.9326181 + ], + [ + 53.5727499, + 9.9324523 + ], + [ + 53.5729982, + 9.9322755 + ], + [ + 53.5733421, + 9.9319835 + ], + [ + 53.5737692, + 9.9315933 + ], + [ + 53.5742462, + 9.931128 + ] + ] + }, + { + "osmId": "58205751", + "name": null, + "lengthMeters": 295.7401033692297, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5748293, + 9.9304935 + ], + [ + 53.5748686, + 9.9304511 + ], + [ + 53.5754226, + 9.9298272 + ], + [ + 53.5760419, + 9.929095 + ], + [ + 53.5762438, + 9.9288318 + ], + [ + 53.5764263, + 9.928632 + ], + [ + 53.5764732, + 9.9285806 + ], + [ + 53.5768394, + 9.9282065 + ], + [ + 53.5770445, + 9.9280216 + ] + ] + }, + { + "osmId": "58205752", + "name": null, + "lengthMeters": 77.19419615318964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5742462, + 9.931128 + ], + [ + 53.5748293, + 9.9304935 + ] + ] + }, + { + "osmId": "58808147", + "name": null, + "lengthMeters": 205.13672546638892, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342886, + 11.6102763 + ], + [ + 48.134532, + 11.6102025 + ], + [ + 48.1346658, + 11.6101563 + ], + [ + 48.1348014, + 11.6100958 + ], + [ + 48.134941, + 11.6100208 + ], + [ + 48.1350963, + 11.6099269 + ], + [ + 48.1351778, + 11.6098757 + ], + [ + 48.1353372, + 11.6097737 + ], + [ + 48.1360186, + 11.6093403 + ] + ] + }, + { + "osmId": "58950553", + "name": null, + "lengthMeters": 206.06180076815625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5506798, + 9.9976839 + ], + [ + 53.5507382, + 9.9985578 + ], + [ + 53.5508352, + 9.9993515 + ], + [ + 53.5508607, + 9.9995421 + ], + [ + 53.5509235, + 9.999966 + ], + [ + 53.5510614, + 10.0007287 + ] + ] + }, + { + "osmId": "59140164", + "name": null, + "lengthMeters": 268.51386857745024, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1132939, + 11.5360967 + ], + [ + 48.112662, + 11.5361146 + ], + [ + 48.1120919, + 11.5361307 + ], + [ + 48.11154, + 11.5361462 + ], + [ + 48.1108795, + 11.5361627 + ] + ] + }, + { + "osmId": "59140165", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 468.67005946130456, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1167312, + 11.5361533 + ], + [ + 48.1166536, + 11.5361462 + ], + [ + 48.1164715, + 11.5361294 + ], + [ + 48.1162579, + 11.5361161 + ], + [ + 48.1159141, + 11.5361079 + ], + [ + 48.1155639, + 11.5361109 + ], + [ + 48.1150527, + 11.5361251 + ], + [ + 48.1147895, + 11.5361324 + ], + [ + 48.1125175, + 11.5361872 + ] + ] + }, + { + "osmId": "59265645", + "name": null, + "lengthMeters": 132.022794750364, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.54934, + 10.0073035 + ], + [ + 53.548964, + 10.0073934 + ], + [ + 53.5486464, + 10.0074795 + ], + [ + 53.5485879, + 10.0074954 + ], + [ + 53.548166, + 10.0076015 + ] + ] + }, + { + "osmId": "59272230", + "name": null, + "lengthMeters": 175.53274789406328, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5444382, + 10.0065901 + ], + [ + 53.5446195, + 10.0066365 + ], + [ + 53.5447978, + 10.0066955 + ], + [ + 53.5459832, + 10.0071325 + ] + ] + }, + { + "osmId": "59272547", + "name": null, + "lengthMeters": 126.735893031304, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5476066, + 10.0074247 + ], + [ + 53.5473616, + 10.0074253 + ], + [ + 53.5471797, + 10.0074073 + ], + [ + 53.5469421, + 10.0073866 + ], + [ + 53.5467178, + 10.0073336 + ], + [ + 53.546475, + 10.0072475 + ] + ] + }, + { + "osmId": "59272551", + "name": null, + "lengthMeters": 128.71403801532082, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5476037, + 10.0076342 + ], + [ + 53.547186, + 10.0075971 + ], + [ + 53.5469281, + 10.0075663 + ], + [ + 53.5466817, + 10.007512 + ], + [ + 53.5464542, + 10.0074336 + ] + ] + }, + { + "osmId": "59272722", + "name": null, + "lengthMeters": 127.39934135909168, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5464678, + 10.0073077 + ], + [ + 53.5467156, + 10.0073906 + ], + [ + 53.5469466, + 10.0074442 + ], + [ + 53.547165, + 10.0074717 + ], + [ + 53.5473632, + 10.0074892 + ], + [ + 53.5476055, + 10.0075017 + ] + ] + }, + { + "osmId": "59272724", + "name": null, + "lengthMeters": 128.09120947288224, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5476047, + 10.0075664 + ], + [ + 53.5472044, + 10.0075408 + ], + [ + 53.5470407, + 10.0075173 + ], + [ + 53.5468756, + 10.0074959 + ], + [ + 53.5467099, + 10.0074564 + ], + [ + 53.5464605, + 10.0073743 + ] + ] + }, + { + "osmId": "59285324", + "name": null, + "lengthMeters": 444.51686090734813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1321998, + 11.6097823 + ], + [ + 48.1318931, + 11.6093153 + ], + [ + 48.1317375, + 11.6090759 + ], + [ + 48.1316406, + 11.608934 + ], + [ + 48.1310726, + 11.6080828 + ], + [ + 48.1305122, + 11.6072483 + ], + [ + 48.1293734, + 11.6055466 + ] + ] + }, + { + "osmId": "59289108", + "name": null, + "lengthMeters": 274.6420165726962, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5429888, + 10.0069857 + ], + [ + 53.5429555, + 10.0070051 + ], + [ + 53.5428288, + 10.0070933 + ], + [ + 53.5427175, + 10.0071853 + ], + [ + 53.5426137, + 10.0072865 + ], + [ + 53.5425077, + 10.0073934 + ], + [ + 53.542414, + 10.0075056 + ], + [ + 53.542332, + 10.0076063 + ], + [ + 53.542152, + 10.0078415 + ], + [ + 53.5419696, + 10.0080933 + ], + [ + 53.5417755, + 10.0083567 + ], + [ + 53.5416635, + 10.0085089 + ], + [ + 53.5415357, + 10.0087048 + ], + [ + 53.5414284, + 10.0088889 + ], + [ + 53.5413001, + 10.0091542 + ], + [ + 53.5412382, + 10.0093016 + ], + [ + 53.5411704, + 10.0094733 + ], + [ + 53.5411213, + 10.0096146 + ] + ] + }, + { + "osmId": "59289115", + "name": null, + "lengthMeters": 174.68302090276748, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.545974, + 10.0071999 + ], + [ + 53.544791, + 10.0067663 + ], + [ + 53.5446151, + 10.0067096 + ], + [ + 53.5444355, + 10.00667 + ] + ] + }, + { + "osmId": "59294328", + "name": null, + "lengthMeters": 1105.0277534484994, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5403088, + 10.0135217 + ], + [ + 53.540297, + 10.0135997 + ], + [ + 53.5401818, + 10.0143625 + ], + [ + 53.5400471, + 10.0152608 + ], + [ + 53.5397247, + 10.0175254 + ], + [ + 53.5397199, + 10.0175588 + ], + [ + 53.5394227, + 10.019619 + ], + [ + 53.5392491, + 10.0208373 + ], + [ + 53.53921, + 10.021097 + ], + [ + 53.5391907, + 10.021215 + ], + [ + 53.5391638, + 10.0213791 + ], + [ + 53.5391006, + 10.0217082 + ], + [ + 53.5390461, + 10.0219457 + ], + [ + 53.5390148, + 10.0220748 + ], + [ + 53.5389671, + 10.0222603 + ], + [ + 53.5388941, + 10.0225023 + ], + [ + 53.5388218, + 10.0227379 + ], + [ + 53.5387038, + 10.0230487 + ], + [ + 53.5386326, + 10.0232268 + ], + [ + 53.5386141, + 10.0232699 + ], + [ + 53.5385434, + 10.0234348 + ], + [ + 53.5384568, + 10.0236017 + ], + [ + 53.5383652, + 10.0237657 + ], + [ + 53.5382274, + 10.0239758 + ], + [ + 53.5381176, + 10.0241285 + ], + [ + 53.5380392, + 10.0242311 + ], + [ + 53.5379554, + 10.0243262 + ], + [ + 53.5378461, + 10.0244426 + ], + [ + 53.5377539, + 10.0245332 + ], + [ + 53.5376766, + 10.0246019 + ], + [ + 53.5375987, + 10.0246633 + ], + [ + 53.5374193, + 10.0247927 + ], + [ + 53.5372828, + 10.024873 + ], + [ + 53.5371715, + 10.0249298 + ], + [ + 53.5370647, + 10.0249733 + ], + [ + 53.5368658, + 10.0250402 + ], + [ + 53.5367447, + 10.0250656 + ], + [ + 53.5366647, + 10.0250817 + ], + [ + 53.5365604, + 10.0250881 + ], + [ + 53.5364483, + 10.0250915 + ], + [ + 53.5363541, + 10.0250926 + ], + [ + 53.5362423, + 10.0250822 + ], + [ + 53.5361396, + 10.0250673 + ], + [ + 53.5360359, + 10.0250475 + ], + [ + 53.5359209, + 10.0250186 + ], + [ + 53.5357513, + 10.0249633 + ], + [ + 53.5356039, + 10.0249099 + ], + [ + 53.5354849, + 10.0248575 + ], + [ + 53.5353819, + 10.0248069 + ], + [ + 53.5351206, + 10.0246541 + ] + ] + }, + { + "osmId": "59294329", + "name": null, + "lengthMeters": 439.9772063659689, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5444355, + 10.00667 + ], + [ + 53.544347, + 10.0066518 + ], + [ + 53.5442567, + 10.0066459 + ], + [ + 53.5442415, + 10.0066449 + ], + [ + 53.5441522, + 10.0066388 + ], + [ + 53.5440312, + 10.0066353 + ], + [ + 53.5439535, + 10.0066372 + ], + [ + 53.5438421, + 10.0066431 + ], + [ + 53.543749, + 10.006655 + ], + [ + 53.5436566, + 10.006672 + ], + [ + 53.5435329, + 10.0066956 + ], + [ + 53.5434523, + 10.0067228 + ], + [ + 53.5433372, + 10.0067558 + ], + [ + 53.5432185, + 10.0068065 + ], + [ + 53.5430873, + 10.0068628 + ], + [ + 53.5429744, + 10.0069317 + ], + [ + 53.5429281, + 10.0069599 + ], + [ + 53.5428037, + 10.0070446 + ], + [ + 53.5427004, + 10.0071328 + ], + [ + 53.542596, + 10.0072315 + ], + [ + 53.54249, + 10.0073369 + ], + [ + 53.5423939, + 10.0074479 + ], + [ + 53.542305, + 10.0075608 + ], + [ + 53.5421245, + 10.0077954 + ], + [ + 53.5419529, + 10.0080385 + ], + [ + 53.5417539, + 10.0083022 + ], + [ + 53.5416468, + 10.0084574 + ], + [ + 53.5415146, + 10.0086721 + ], + [ + 53.5414044, + 10.0088579 + ], + [ + 53.5413857, + 10.0088938 + ], + [ + 53.5412816, + 10.0091211 + ], + [ + 53.5412156, + 10.0092751 + ], + [ + 53.5411501, + 10.0094387 + ], + [ + 53.5411002, + 10.0095628 + ] + ] + }, + { + "osmId": "59294330", + "name": null, + "lengthMeters": 1848.6115375545537, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5348504, + 10.0243492 + ], + [ + 53.5350297, + 10.024486 + ], + [ + 53.5351386, + 10.0245567 + ], + [ + 53.5352132, + 10.0246063 + ], + [ + 53.5353509, + 10.0246855 + ], + [ + 53.5354938, + 10.0247613 + ], + [ + 53.5356027, + 10.0248097 + ], + [ + 53.535741, + 10.0248658 + ], + [ + 53.5358241, + 10.0248951 + ], + [ + 53.5359089, + 10.0249188 + ], + [ + 53.5359469, + 10.024928 + ], + [ + 53.5360534, + 10.0249474 + ], + [ + 53.5361535, + 10.0249611 + ], + [ + 53.5362582, + 10.0249675 + ], + [ + 53.5363795, + 10.0249643 + ], + [ + 53.5364697, + 10.0249593 + ], + [ + 53.536574, + 10.0249464 + ], + [ + 53.5366698, + 10.0249267 + ], + [ + 53.5367544, + 10.0249057 + ], + [ + 53.536867, + 10.024871 + ], + [ + 53.5369908, + 10.0248221 + ], + [ + 53.5370965, + 10.0247729 + ], + [ + 53.537196, + 10.0247188 + ], + [ + 53.5372671, + 10.0246738 + ], + [ + 53.5373494, + 10.0246203 + ], + [ + 53.5374276, + 10.024563 + ], + [ + 53.5375432, + 10.0244712 + ], + [ + 53.5376481, + 10.0243787 + ], + [ + 53.5377131, + 10.0243181 + ], + [ + 53.5377806, + 10.0242485 + ], + [ + 53.5379698, + 10.0240351 + ], + [ + 53.5380586, + 10.023913 + ], + [ + 53.538144, + 10.0237871 + ], + [ + 53.5381783, + 10.0237356 + ], + [ + 53.5383324, + 10.0234765 + ], + [ + 53.538482, + 10.0231861 + ], + [ + 53.5386077, + 10.0228967 + ], + [ + 53.5387268, + 10.0225842 + ], + [ + 53.5387989, + 10.0223521 + ], + [ + 53.5388566, + 10.0221526 + ], + [ + 53.5389169, + 10.0219098 + ], + [ + 53.5389323, + 10.0218477 + ], + [ + 53.5390099, + 10.0214733 + ], + [ + 53.5390786, + 10.0210853 + ], + [ + 53.5393736, + 10.0191856 + ], + [ + 53.5394032, + 10.0189906 + ], + [ + 53.5399741, + 10.0152727 + ], + [ + 53.5403137, + 10.0130882 + ], + [ + 53.5403172, + 10.0130628 + ], + [ + 53.5405444, + 10.0115919 + ], + [ + 53.5406341, + 10.011018 + ], + [ + 53.5406821, + 10.0107299 + ], + [ + 53.5407202, + 10.0105291 + ], + [ + 53.5407285, + 10.0104877 + ], + [ + 53.5407444, + 10.0104036 + ], + [ + 53.5407799, + 10.0102449 + ], + [ + 53.5408162, + 10.0101013 + ], + [ + 53.5408568, + 10.0099579 + ], + [ + 53.540967, + 10.0096029 + ], + [ + 53.5410426, + 10.0093937 + ], + [ + 53.5410876, + 10.0092909 + ], + [ + 53.5411335, + 10.0091851 + ], + [ + 53.5411913, + 10.009067 + ], + [ + 53.5412467, + 10.0089565 + ], + [ + 53.5413564, + 10.0087574 + ], + [ + 53.5413973, + 10.0086879 + ], + [ + 53.5414634, + 10.0085764 + ], + [ + 53.5416947, + 10.0082191 + ], + [ + 53.541886, + 10.0079273 + ], + [ + 53.5420169, + 10.0077363 + ], + [ + 53.5420642, + 10.0076675 + ], + [ + 53.5422471, + 10.0074375 + ], + [ + 53.5424346, + 10.0072437 + ], + [ + 53.542639, + 10.0070548 + ], + [ + 53.5427747, + 10.0069521 + ], + [ + 53.5429021, + 10.0068628 + ], + [ + 53.5430583, + 10.0067735 + ], + [ + 53.5432088, + 10.0067036 + ], + [ + 53.5433921, + 10.0066323 + ], + [ + 53.5435215, + 10.0065981 + ], + [ + 53.5436875, + 10.0065628 + ], + [ + 53.5438446, + 10.0065496 + ], + [ + 53.5440571, + 10.0065437 + ], + [ + 53.544158, + 10.0065463 + ], + [ + 53.5442414, + 10.0065548 + ], + [ + 53.5443364, + 10.006569 + ], + [ + 53.5444246, + 10.0065875 + ], + [ + 53.5444273, + 10.0065878 + ], + [ + 53.5444382, + 10.0065901 + ] + ] + }, + { + "osmId": "59302647", + "name": null, + "lengthMeters": 399.04379653508744, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5405557, + 10.0122008 + ], + [ + 53.5404818, + 10.0128285 + ], + [ + 53.5404268, + 10.0133642 + ], + [ + 53.5403918, + 10.0136393 + ], + [ + 53.5403737, + 10.0137655 + ], + [ + 53.540368, + 10.0138054 + ], + [ + 53.5403433, + 10.0139767 + ], + [ + 53.5401454, + 10.0152697 + ], + [ + 53.5398362, + 10.0174203 + ], + [ + 53.5397601, + 10.0179515 + ], + [ + 53.5397461, + 10.0180494 + ], + [ + 53.5397417, + 10.0180805 + ] + ] + }, + { + "osmId": "59302655", + "name": null, + "lengthMeters": 94.48077584018347, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5408835, + 10.010074 + ], + [ + 53.540585, + 10.0110139 + ], + [ + 53.5405377, + 10.0111904 + ], + [ + 53.5404983, + 10.0113475 + ] + ] + }, + { + "osmId": "59421801", + "name": null, + "lengthMeters": 313.36244051649584, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6960022, + 9.9899988 + ], + [ + 53.6956101, + 9.9895788 + ], + [ + 53.6949615, + 9.988866 + ], + [ + 53.6947553, + 9.9886301 + ], + [ + 53.6941439, + 9.9879448 + ], + [ + 53.6937463, + 9.9875182 + ], + [ + 53.6936415, + 9.9873997 + ] + ] + }, + { + "osmId": "59697316", + "name": "Berliner Ringbahn", + "lengthMeters": 80.09002454647444, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494795, + 13.4118262 + ], + [ + 52.5494059, + 13.4130045 + ] + ] + }, + { + "osmId": "59708694", + "name": null, + "lengthMeters": 142.32878891222325, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5645208, + 9.9338458 + ], + [ + 53.5648206, + 9.933805 + ], + [ + 53.5653934, + 9.9337366 + ], + [ + 53.5654196, + 9.9337333 + ], + [ + 53.5657973, + 9.9336869 + ] + ] + }, + { + "osmId": "59708695", + "name": null, + "lengthMeters": 320.1381136906175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637934, + 9.9342504 + ], + [ + 53.5639984, + 9.9341314 + ], + [ + 53.5641952, + 9.934045 + ], + [ + 53.5644514, + 9.9339815 + ], + [ + 53.5646453, + 9.9339503 + ], + [ + 53.5648273, + 9.9339258 + ], + [ + 53.5657687, + 9.9338209 + ], + [ + 53.5666447, + 9.9336974 + ] + ] + }, + { + "osmId": "59708697", + "name": null, + "lengthMeters": 96.12510101593553, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637845, + 9.9338764 + ], + [ + 53.5646467, + 9.9337709 + ] + ] + }, + { + "osmId": "60120156", + "name": "Niederelbebahn", + "lengthMeters": 604.1596536878376, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4737311, + 9.8002963 + ], + [ + 53.4736087, + 9.7982178 + ], + [ + 53.473336, + 9.7932959 + ], + [ + 53.4732215, + 9.7912079 + ] + ] + }, + { + "osmId": "60120432", + "name": null, + "lengthMeters": 226.5970859223055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.471822, + 9.9132212 + ], + [ + 53.4718215, + 9.9132425 + ], + [ + 53.4718069, + 9.9149414 + ], + [ + 53.4718048, + 9.9149997 + ], + [ + 53.4718024, + 9.9152571 + ], + [ + 53.4717477, + 9.9166415 + ] + ] + }, + { + "osmId": "60141688", + "name": null, + "lengthMeters": 838.2043517993341, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875906, + 9.922492 + ], + [ + 53.5874423, + 9.9227633 + ], + [ + 53.5872023, + 9.9231836 + ], + [ + 53.5867069, + 9.923998 + ], + [ + 53.5863838, + 9.9244945 + ], + [ + 53.5860754, + 9.9249498 + ], + [ + 53.5856088, + 9.9256136 + ], + [ + 53.5851552, + 9.9261995 + ], + [ + 53.5851043, + 9.9262652 + ], + [ + 53.5845876, + 9.9268958 + ], + [ + 53.5840839, + 9.9274712 + ], + [ + 53.5837746, + 9.9278052 + ], + [ + 53.5833012, + 9.9282881 + ], + [ + 53.5826369, + 9.9289094 + ], + [ + 53.5819993, + 9.9294137 + ], + [ + 53.581483, + 9.9297581 + ] + ] + }, + { + "osmId": "60141727", + "name": null, + "lengthMeters": 325.1696709939679, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5756564, + 9.9319656 + ], + [ + 53.5748605, + 9.9320387 + ], + [ + 53.5744561, + 9.9320839 + ], + [ + 53.5740593, + 9.9321429 + ], + [ + 53.5739078, + 9.9321837 + ], + [ + 53.5736945, + 9.9322461 + ], + [ + 53.5735174, + 9.9323124 + ], + [ + 53.5732708, + 9.9324271 + ], + [ + 53.5729817, + 9.9325975 + ], + [ + 53.572786, + 9.9327264 + ] + ] + }, + { + "osmId": "60143711", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 84.7170002284097, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5601203, + 9.9115146 + ], + [ + 53.5601126, + 9.9110285 + ], + [ + 53.5601048, + 9.9107174 + ], + [ + 53.5600923, + 9.9104068 + ], + [ + 53.5600898, + 9.9103479 + ], + [ + 53.5600831, + 9.9102338 + ] + ] + }, + { + "osmId": "60143865", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 540.559885565197, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.559996, + 9.9088695 + ], + [ + 53.5599903, + 9.9087192 + ], + [ + 53.5599739, + 9.9082818 + ], + [ + 53.5599316, + 9.9070446 + ], + [ + 53.5598692, + 9.9051307 + ], + [ + 53.5597607, + 9.9017988 + ], + [ + 53.5597385, + 9.9011185 + ], + [ + 53.5597248, + 9.9006979 + ] + ] + }, + { + "osmId": "60144563", + "name": null, + "lengthMeters": 857.8104346674817, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5589667, + 9.8779578 + ], + [ + 53.5588574, + 9.8744787 + ], + [ + 53.5587339, + 9.8710147 + ], + [ + 53.5586526, + 9.8695998 + ], + [ + 53.5585371, + 9.8680441 + ], + [ + 53.5584956, + 9.867434 + ], + [ + 53.5583708, + 9.8657521 + ], + [ + 53.5583412, + 9.865019 + ] + ] + }, + { + "osmId": "60144566", + "name": null, + "lengthMeters": 208.19759916011859, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5589328, + 9.8781473 + ], + [ + 53.5589354, + 9.8782753 + ], + [ + 53.5589414, + 9.8785766 + ], + [ + 53.5589578, + 9.8793909 + ], + [ + 53.5589655, + 9.8812987 + ] + ] + }, + { + "osmId": "60144567", + "name": null, + "lengthMeters": 359.108956663839, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5592798, + 9.886853 + ], + [ + 53.5592648, + 9.8864898 + ], + [ + 53.5592274, + 9.8854332 + ], + [ + 53.5592176, + 9.8851532 + ], + [ + 53.5591828, + 9.8840565 + ], + [ + 53.5591719, + 9.8837418 + ], + [ + 53.5591612, + 9.8833791 + ], + [ + 53.5590866, + 9.8814258 + ] + ] + }, + { + "osmId": "60144569", + "name": null, + "lengthMeters": 203.7661879903705, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.55908, + 9.8812231 + ], + [ + 53.559018, + 9.8795186 + ], + [ + 53.5589873, + 9.8785766 + ], + [ + 53.5589772, + 9.8782683 + ], + [ + 53.5589731, + 9.8781433 + ] + ] + }, + { + "osmId": "60144581", + "name": null, + "lengthMeters": 673.2429425135502, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5592191, + 9.8873079 + ], + [ + 53.559257, + 9.8877483 + ], + [ + 53.5592777, + 9.8880636 + ], + [ + 53.5593321, + 9.8893697 + ], + [ + 53.5594215, + 9.8921959 + ], + [ + 53.5594655, + 9.8936309 + ], + [ + 53.5595834, + 9.8974803 + ] + ] + }, + { + "osmId": "60144583", + "name": null, + "lengthMeters": 102.86701182845252, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5596256, + 9.8987523 + ], + [ + 53.5596319, + 9.8990167 + ], + [ + 53.5596771, + 9.9003073 + ] + ] + }, + { + "osmId": "60144584", + "name": null, + "lengthMeters": 84.14432059445573, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5595834, + 9.8974803 + ], + [ + 53.5596256, + 9.8987523 + ] + ] + }, + { + "osmId": "60152858", + "name": null, + "lengthMeters": 484.3533773563537, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5583365, + 9.8648069 + ], + [ + 53.5583298, + 9.8634005 + ], + [ + 53.5583307, + 9.8630397 + ], + [ + 53.5583175, + 9.8623641 + ], + [ + 53.5583072, + 9.8619571 + ], + [ + 53.5582963, + 9.8616835 + ], + [ + 53.5582777, + 9.8613841 + ], + [ + 53.5582308, + 9.8608114 + ], + [ + 53.55821, + 9.8606306 + ], + [ + 53.5581341, + 9.8600862 + ], + [ + 53.558027, + 9.8594308 + ], + [ + 53.5579421, + 9.8588907 + ], + [ + 53.5578808, + 9.8584237 + ], + [ + 53.5578356, + 9.8580054 + ], + [ + 53.5578007, + 9.8575654 + ] + ] + }, + { + "osmId": "60157849", + "name": null, + "lengthMeters": 264.3112400736564, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5583532, + 9.8503054 + ], + [ + 53.5585657, + 9.8492719 + ], + [ + 53.558725, + 9.8486314 + ], + [ + 53.5588873, + 9.8479788 + ], + [ + 53.5592943, + 9.8466375 + ] + ] + }, + { + "osmId": "60158660", + "name": null, + "lengthMeters": 77.74407892602012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5578786, + 9.8587341 + ], + [ + 53.557853, + 9.8585103 + ], + [ + 53.5578404, + 9.858344 + ], + [ + 53.5578291, + 9.858141 + ], + [ + 53.5578007, + 9.8575654 + ] + ] + }, + { + "osmId": "60167232", + "name": null, + "lengthMeters": 629.242920602954, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5640106, + 9.8359825 + ], + [ + 53.5640962, + 9.8356589 + ], + [ + 53.5642501, + 9.8350726 + ], + [ + 53.5643491, + 9.8346957 + ], + [ + 53.5645278, + 9.8339018 + ], + [ + 53.5646554, + 9.8332774 + ], + [ + 53.5647637, + 9.8326706 + ], + [ + 53.5648285, + 9.8323127 + ], + [ + 53.5649087, + 9.8318207 + ], + [ + 53.5650054, + 9.8310655 + ], + [ + 53.5650808, + 9.8304313 + ], + [ + 53.5651335, + 9.8298612 + ], + [ + 53.5651835, + 9.8291894 + ], + [ + 53.5652842, + 9.8278381 + ], + [ + 53.5653603, + 9.8267876 + ] + ] + }, + { + "osmId": "60167233", + "name": null, + "lengthMeters": 282.17037058938837, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5655937, + 9.8222751 + ], + [ + 53.5655918, + 9.8226372 + ], + [ + 53.5655861, + 9.8228836 + ], + [ + 53.5655764, + 9.8231059 + ], + [ + 53.5655606, + 9.82342 + ], + [ + 53.5655412, + 9.823739 + ], + [ + 53.5654953, + 9.8244176 + ], + [ + 53.5654758, + 9.8246953 + ], + [ + 53.5653418, + 9.8265241 + ] + ] + }, + { + "osmId": "60167236", + "name": null, + "lengthMeters": 629.0352622165941, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5653262, + 9.8267799 + ], + [ + 53.565256, + 9.8278251 + ], + [ + 53.5651555, + 9.8291861 + ], + [ + 53.5651068, + 9.829845 + ], + [ + 53.5650521, + 9.8303964 + ], + [ + 53.56498, + 9.8310498 + ], + [ + 53.5648757, + 9.8318114 + ], + [ + 53.5647972, + 9.832312 + ], + [ + 53.5647345, + 9.8326515 + ], + [ + 53.564626, + 9.8332707 + ], + [ + 53.5644992, + 9.8338944 + ], + [ + 53.5643173, + 9.8346666 + ], + [ + 53.5642174, + 9.835054 + ], + [ + 53.5640694, + 9.8356277 + ], + [ + 53.5639736, + 9.8359672 + ] + ] + }, + { + "osmId": "60195769", + "name": null, + "lengthMeters": 88.26154259625541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5545902, + 9.9345732 + ], + [ + 53.5548068, + 9.9345673 + ], + [ + 53.554981, + 9.9345493 + ], + [ + 53.5551447, + 9.9345189 + ], + [ + 53.5553795, + 9.9344544 + ] + ] + }, + { + "osmId": "60195955", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 474.16552058045755, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5598554, + 9.9201193 + ], + [ + 53.5599322, + 9.9185107 + ], + [ + 53.5599759, + 9.9173651 + ], + [ + 53.5599973, + 9.9168051 + ], + [ + 53.5600481, + 9.9155456 + ], + [ + 53.5600795, + 9.9147593 + ], + [ + 53.5601057, + 9.9140938 + ], + [ + 53.5601133, + 9.9137714 + ], + [ + 53.560118, + 9.9134353 + ], + [ + 53.5601224, + 9.9129554 + ] + ] + }, + { + "osmId": "60209973", + "name": null, + "lengthMeters": 260.004869212541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6361468, + 9.9064158 + ], + [ + 53.6367755, + 9.9063502 + ], + [ + 53.6369116, + 9.9063274 + ], + [ + 53.6375886, + 9.9062105 + ], + [ + 53.6381789, + 9.9061186 + ], + [ + 53.6384759, + 9.9060724 + ] + ] + }, + { + "osmId": "60209975", + "name": null, + "lengthMeters": 840.6922154599207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6422346, + 9.9058147 + ], + [ + 53.6423077, + 9.9058144 + ], + [ + 53.6431407, + 9.9058107 + ], + [ + 53.6431679, + 9.9058108 + ], + [ + 53.6432349, + 9.9058112 + ], + [ + 53.6432808, + 9.905812 + ], + [ + 53.643295, + 9.9058122 + ], + [ + 53.6433475, + 9.9058131 + ], + [ + 53.6434553, + 9.905815 + ], + [ + 53.6437931, + 9.9058578 + ], + [ + 53.6441912, + 9.9059557 + ], + [ + 53.6445876, + 9.9060951 + ], + [ + 53.6449648, + 9.9062649 + ], + [ + 53.6452281, + 9.906418 + ], + [ + 53.6454876, + 9.9066032 + ], + [ + 53.6461593, + 9.9071828 + ], + [ + 53.6467691, + 9.9077275 + ], + [ + 53.6468973, + 9.9078421 + ], + [ + 53.646985, + 9.9079242 + ], + [ + 53.6471219, + 9.9080444 + ], + [ + 53.6476503, + 9.9085146 + ], + [ + 53.6480938, + 9.908919 + ], + [ + 53.6483527, + 9.909139 + ], + [ + 53.6484209, + 9.9092021 + ], + [ + 53.6484966, + 9.9092697 + ], + [ + 53.6490714, + 9.9097827 + ], + [ + 53.6492431, + 9.9099345 + ] + ] + }, + { + "osmId": "60209977", + "name": null, + "lengthMeters": 403.57674262771314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6258992, + 9.9062022 + ], + [ + 53.6261569, + 9.9062183 + ], + [ + 53.6261854, + 9.9062201 + ], + [ + 53.6262634, + 9.906225 + ], + [ + 53.6263233, + 9.9062299 + ], + [ + 53.6263744, + 9.9062341 + ], + [ + 53.6263829, + 9.9062348 + ], + [ + 53.6269836, + 9.9062839 + ], + [ + 53.6273932, + 9.9063242 + ], + [ + 53.6277423, + 9.9063585 + ], + [ + 53.6289469, + 9.9064936 + ], + [ + 53.6295131, + 9.9065336 + ], + [ + 53.6295231, + 9.9065343 + ] + ] + }, + { + "osmId": "60209993", + "name": null, + "lengthMeters": 389.1855150008028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6361432, + 9.9063404 + ], + [ + 53.6367769, + 9.906286 + ], + [ + 53.6369109, + 9.9062616 + ], + [ + 53.6375815, + 9.9061483 + ], + [ + 53.6377638, + 9.9061214 + ], + [ + 53.6382188, + 9.9060445 + ], + [ + 53.6387355, + 9.9059572 + ], + [ + 53.639539, + 9.9058291 + ], + [ + 53.6395587, + 9.905826 + ], + [ + 53.6395966, + 9.9058199 + ], + [ + 53.6396184, + 9.9058174 + ], + [ + 53.6396288, + 9.9058162 + ] + ] + }, + { + "osmId": "60209995", + "name": null, + "lengthMeters": 173.78520906212583, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.605455, + 9.8980282 + ], + [ + 53.6056059, + 9.8979859 + ], + [ + 53.6058815, + 9.8979289 + ], + [ + 53.6061607, + 9.8979282 + ], + [ + 53.6064405, + 9.8979579 + ], + [ + 53.6067335, + 9.8980614 + ], + [ + 53.6069942, + 9.8981998 + ] + ] + }, + { + "osmId": "60209997", + "name": null, + "lengthMeters": 277.24783493649977, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6076195, + 9.8987388 + ], + [ + 53.6079732, + 9.8991713 + ], + [ + 53.6083045, + 9.8995785 + ], + [ + 53.6089797, + 9.9003931 + ], + [ + 53.6091861, + 9.9006151 + ], + [ + 53.6092001, + 9.9006301 + ], + [ + 53.6093965, + 9.900802 + ], + [ + 53.6095448, + 9.9009168 + ], + [ + 53.6096968, + 9.9010166 + ], + [ + 53.6097033, + 9.9010207 + ] + ] + }, + { + "osmId": "60210010", + "name": null, + "lengthMeters": 210.62718182273193, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6014657, + 9.8988675 + ], + [ + 53.6022362, + 9.8988993 + ], + [ + 53.602467, + 9.89889 + ], + [ + 53.6029381, + 9.898841 + ], + [ + 53.6033523, + 9.8987176 + ] + ] + }, + { + "osmId": "60257240", + "name": null, + "lengthMeters": 1121.4635046762955, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.461034, + 9.9778467 + ], + [ + 53.4612005, + 9.9773596 + ], + [ + 53.4613976, + 9.9768547 + ], + [ + 53.4622685, + 9.9750452 + ], + [ + 53.4629727, + 9.9735451 + ], + [ + 53.4631011, + 9.9732286 + ], + [ + 53.4632066, + 9.972925 + ], + [ + 53.4632636, + 9.9727464 + ], + [ + 53.463295, + 9.9726494 + ], + [ + 53.4633201, + 9.9725488 + ], + [ + 53.4635064, + 9.9718394 + ], + [ + 53.4635655, + 9.971548 + ], + [ + 53.4635908, + 9.9714111 + ], + [ + 53.4636652, + 9.9709135 + ], + [ + 53.4637634, + 9.9701995 + ], + [ + 53.4639255, + 9.9690038 + ], + [ + 53.4640921, + 9.9677391 + ], + [ + 53.4642936, + 9.9662216 + ], + [ + 53.4643648, + 9.9658364 + ], + [ + 53.4644365, + 9.9654868 + ], + [ + 53.4645514, + 9.9650696 + ], + [ + 53.4646881, + 9.9646731 + ], + [ + 53.4648855, + 9.9642564 + ], + [ + 53.4652299, + 9.9636171 + ], + [ + 53.4655317, + 9.9630682 + ] + ] + }, + { + "osmId": "60262859", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 169.46305479819102, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502167, + 10.0179904 + ], + [ + 53.5502805, + 10.0182239 + ], + [ + 53.5502875, + 10.0182521 + ], + [ + 53.5503184, + 10.0183758 + ], + [ + 53.5503913, + 10.0186529 + ], + [ + 53.5506697, + 10.0197304 + ], + [ + 53.5508226, + 10.0202752 + ], + [ + 53.5508408, + 10.0203301 + ] + ] + }, + { + "osmId": "60262862", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 207.61214573301032, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5500357, + 10.0174942 + ], + [ + 53.550236, + 10.0182387 + ], + [ + 53.5503055, + 10.0185061 + ], + [ + 53.5506343, + 10.0197708 + ], + [ + 53.5507829, + 10.0203064 + ], + [ + 53.5508, + 10.0203612 + ] + ] + }, + { + "osmId": "60263687", + "name": "Vogelfluglinie", + "lengthMeters": 80.94201634629998, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5662488, + 10.0624906 + ], + [ + 53.5665387, + 10.0636149 + ] + ] + }, + { + "osmId": "60333746", + "name": null, + "lengthMeters": 351.18849814156147, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5964255, + 9.9055447 + ], + [ + 53.5970541, + 9.9042392 + ], + [ + 53.5973176, + 9.9037005 + ], + [ + 53.5975867, + 9.9031652 + ], + [ + 53.5979374, + 9.9024708 + ], + [ + 53.5984442, + 9.9014521 + ] + ] + }, + { + "osmId": "60333764", + "name": null, + "lengthMeters": 725.814994857244, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5987776, + 9.9007751 + ], + [ + 53.6006104, + 9.8971195 + ], + [ + 53.6012878, + 9.8957252 + ], + [ + 53.6021895, + 9.8939617 + ], + [ + 53.6029951, + 9.8923801 + ] + ] + }, + { + "osmId": "60413764", + "name": "Pinneberger S-Bahn", + "lengthMeters": 1025.3465697692911, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6092206, + 9.8804984 + ], + [ + 53.6085001, + 9.8819117 + ], + [ + 53.6076531, + 9.883554 + ], + [ + 53.6069028, + 9.8850122 + ], + [ + 53.6061787, + 9.8864359 + ], + [ + 53.6056152, + 9.8875413 + ], + [ + 53.6042848, + 9.890138 + ], + [ + 53.6032915, + 9.8920783 + ], + [ + 53.603194, + 9.8922611 + ] + ] + }, + { + "osmId": "60413765", + "name": null, + "lengthMeters": 437.90616480758325, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6339965, + 9.832329 + ], + [ + 53.6334957, + 9.8333029 + ], + [ + 53.6323411, + 9.8355425 + ], + [ + 53.6313976, + 9.8373188 + ] + ] + }, + { + "osmId": "60413767", + "name": null, + "lengthMeters": 751.3746260898517, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.616222, + 9.8668186 + ], + [ + 53.616023, + 9.8672062 + ], + [ + 53.6159361, + 9.8673766 + ], + [ + 53.6157607, + 9.8677207 + ], + [ + 53.614716, + 9.869766 + ], + [ + 53.6141103, + 9.8709555 + ], + [ + 53.6133703, + 9.8723827 + ], + [ + 53.6118121, + 9.8754492 + ] + ] + }, + { + "osmId": "60414332", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 77.1702278671478, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.111573, + 11.5362213 + ], + [ + 48.1111037, + 11.5362363 + ], + [ + 48.1108791, + 11.5362376 + ] + ] + }, + { + "osmId": "60415567", + "name": null, + "lengthMeters": 252.39980683125407, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6697096, + 10.2376455 + ], + [ + 53.6698435, + 10.2379803 + ], + [ + 53.6700213, + 10.2384102 + ], + [ + 53.6701894, + 10.2388276 + ], + [ + 53.6704314, + 10.2393834 + ], + [ + 53.6706707, + 10.2399079 + ], + [ + 53.6710477, + 10.240739 + ] + ] + }, + { + "osmId": "60415569", + "name": "Vogelfluglinie", + "lengthMeters": 1933.9264483312265, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6765095, + 10.24666 + ], + [ + 53.6760197, + 10.2464275 + ], + [ + 53.6756076, + 10.2462043 + ], + [ + 53.6752473, + 10.245968 + ], + [ + 53.6748279, + 10.2456936 + ], + [ + 53.6746833, + 10.245574 + ], + [ + 53.6744847, + 10.2454098 + ], + [ + 53.6740969, + 10.245056 + ], + [ + 53.6737572, + 10.244726 + ], + [ + 53.6733459, + 10.2442872 + ], + [ + 53.6729751, + 10.2438639 + ], + [ + 53.6726223, + 10.2434015 + ], + [ + 53.6723063, + 10.2429162 + ], + [ + 53.6719785, + 10.242383 + ], + [ + 53.6716615, + 10.2418365 + ], + [ + 53.6716549, + 10.2418251 + ], + [ + 53.6716066, + 10.2417418 + ], + [ + 53.6710865, + 10.2406849 + ], + [ + 53.6710098, + 10.2405132 + ], + [ + 53.6707177, + 10.2398589 + ], + [ + 53.6704916, + 10.239309 + ], + [ + 53.670248, + 10.238668 + ], + [ + 53.6698058, + 10.2375389 + ], + [ + 53.6697632, + 10.2374237 + ], + [ + 53.669674, + 10.2371825 + ], + [ + 53.669646, + 10.2371068 + ], + [ + 53.6694923, + 10.2367207 + ], + [ + 53.6691957, + 10.2359808 + ], + [ + 53.6690746, + 10.2356778 + ], + [ + 53.6688604, + 10.2351424 + ], + [ + 53.668589, + 10.2344642 + ], + [ + 53.6685826, + 10.2344486 + ], + [ + 53.6682572, + 10.233653 + ], + [ + 53.6678159, + 10.2325299 + ], + [ + 53.6674087, + 10.2315385 + ], + [ + 53.6669847, + 10.2304697 + ], + [ + 53.6666127, + 10.2295454 + ], + [ + 53.6665856, + 10.2294784 + ], + [ + 53.6664974, + 10.2292598 + ], + [ + 53.6661425, + 10.2284047 + ], + [ + 53.665724, + 10.2273296 + ], + [ + 53.6652388, + 10.226101 + ], + [ + 53.6650414, + 10.2256013 + ] + ] + }, + { + "osmId": "60919131", + "name": null, + "lengthMeters": 248.44497046553113, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5728506, + 9.9316849 + ], + [ + 53.5732717, + 9.9312563 + ], + [ + 53.5733319, + 9.931195 + ], + [ + 53.5736139, + 9.9309056 + ], + [ + 53.5740709, + 9.9304608 + ], + [ + 53.574348, + 9.9301917 + ], + [ + 53.574377, + 9.9301637 + ], + [ + 53.5747766, + 9.929778 + ] + ] + }, + { + "osmId": "60919142", + "name": null, + "lengthMeters": 143.34389409898603, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5687218, + 9.9332644 + ], + [ + 53.5680674, + 9.9333375 + ], + [ + 53.567436, + 9.9334197 + ] + ] + }, + { + "osmId": "60919144", + "name": null, + "lengthMeters": 591.9468061886939, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5694964, + 9.9335754 + ], + [ + 53.569703, + 9.9335824 + ], + [ + 53.5697552, + 9.9335813 + ], + [ + 53.5699352, + 9.9335793 + ], + [ + 53.5703032, + 9.9335369 + ], + [ + 53.5705312, + 9.9334876 + ], + [ + 53.5708431, + 9.9333807 + ], + [ + 53.5709917, + 9.9333113 + ], + [ + 53.5712878, + 9.9331528 + ], + [ + 53.5717423, + 9.9328404 + ], + [ + 53.571864, + 9.932728 + ], + [ + 53.5721704, + 9.9324449 + ], + [ + 53.5727874, + 9.9318337 + ], + [ + 53.5732737, + 9.9313344 + ], + [ + 53.5735976, + 9.9310173 + ], + [ + 53.5739001, + 9.9307158 + ], + [ + 53.5743447, + 9.9302882 + ] + ] + }, + { + "osmId": "60919314", + "name": null, + "lengthMeters": 220.05788473030273, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5675198, + 9.933597 + ], + [ + 53.5675547, + 9.9335929 + ], + [ + 53.5680877, + 9.9335237 + ], + [ + 53.5686453, + 9.9335156 + ], + [ + 53.5694964, + 9.9335754 + ] + ] + }, + { + "osmId": "60919317", + "name": null, + "lengthMeters": 314.26583398187506, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637911, + 9.9341805 + ], + [ + 53.5639897, + 9.9340698 + ], + [ + 53.5641884, + 9.9339957 + ], + [ + 53.5644477, + 9.9339229 + ], + [ + 53.5646479, + 9.9338868 + ], + [ + 53.5648222, + 9.9338652 + ], + [ + 53.5657765, + 9.9337661 + ], + [ + 53.5659554, + 9.9337419 + ], + [ + 53.5665923, + 9.9336556 + ] + ] + }, + { + "osmId": "60919323", + "name": null, + "lengthMeters": 753.9907762017071, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5668844, + 9.9335475 + ], + [ + 53.5673285, + 9.9334939 + ], + [ + 53.5680818, + 9.9334035 + ], + [ + 53.5683348, + 9.9333918 + ], + [ + 53.5685456, + 9.9333968 + ], + [ + 53.568652, + 9.9334012 + ], + [ + 53.5693366, + 9.9334256 + ], + [ + 53.5696018, + 9.9334261 + ], + [ + 53.5699592, + 9.9334184 + ], + [ + 53.5700845, + 9.9334068 + ], + [ + 53.570291, + 9.9333771 + ], + [ + 53.5705195, + 9.9333257 + ], + [ + 53.5706793, + 9.9332916 + ], + [ + 53.570827, + 9.9332396 + ], + [ + 53.5712527, + 9.9330384 + ], + [ + 53.5716969, + 9.932713 + ], + [ + 53.5721402, + 9.9322983 + ], + [ + 53.5727436, + 9.9317079 + ], + [ + 53.5729778, + 9.9314697 + ], + [ + 53.5733392, + 9.9311019 + ] + ] + }, + { + "osmId": "60919324", + "name": null, + "lengthMeters": 689.8429070728951, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5668876, + 9.9336134 + ], + [ + 53.5673309, + 9.933558 + ], + [ + 53.5673803, + 9.9335514 + ], + [ + 53.5680832, + 9.9334644 + ], + [ + 53.5685228, + 9.9334658 + ], + [ + 53.5686481, + 9.9334659 + ], + [ + 53.5693331, + 9.9335029 + ], + [ + 53.569602, + 9.9335051 + ], + [ + 53.5699515, + 9.9334889 + ], + [ + 53.5700857, + 9.9334742 + ], + [ + 53.5702914, + 9.9334509 + ], + [ + 53.5705252, + 9.933399 + ], + [ + 53.5708397, + 9.9333013 + ], + [ + 53.570981, + 9.9332411 + ], + [ + 53.5712708, + 9.933091 + ], + [ + 53.5717242, + 9.9327906 + ], + [ + 53.5717698, + 9.932746 + ], + [ + 53.5721549, + 9.9323697 + ], + [ + 53.572802, + 9.9317327 + ], + [ + 53.5728506, + 9.9316849 + ] + ] + }, + { + "osmId": "60973434", + "name": null, + "lengthMeters": 320.51274200250566, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5751971, + 9.9295439 + ], + [ + 53.5756912, + 9.9290848 + ], + [ + 53.5759398, + 9.9288585 + ], + [ + 53.576483, + 9.9283985 + ], + [ + 53.5770478, + 9.9279504 + ], + [ + 53.5776784, + 9.9274676 + ], + [ + 53.5777791, + 9.9273909 + ] + ] + }, + { + "osmId": "61877061", + "name": null, + "lengthMeters": 167.85237735359252, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5425042, + 13.4139339 + ], + [ + 52.5424193, + 13.4138405 + ], + [ + 52.5422813, + 13.4136849 + ], + [ + 52.5421305, + 13.4135149 + ], + [ + 52.5419915, + 13.4133589 + ], + [ + 52.5419263, + 13.413288 + ], + [ + 52.5418947, + 13.4132537 + ], + [ + 52.541639, + 13.4129902 + ], + [ + 52.5414567, + 13.4127936 + ], + [ + 52.5414236, + 13.4127565 + ], + [ + 52.5412887, + 13.4126116 + ], + [ + 52.5412459, + 13.4125633 + ] + ] + }, + { + "osmId": "62228040", + "name": null, + "lengthMeters": 647.6430043868302, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5980583, + 10.1012652 + ], + [ + 53.5978537, + 10.1004785 + ], + [ + 53.5977375, + 10.0999701 + ], + [ + 53.5960591, + 10.0920493 + ] + ] + }, + { + "osmId": "62228041", + "name": null, + "lengthMeters": 824.6294576944259, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.599859, + 10.1076243 + ], + [ + 53.5999967, + 10.1079641 + ], + [ + 53.6001789, + 10.1083539 + ], + [ + 53.600682, + 10.1093186 + ], + [ + 53.600849, + 10.1096153 + ], + [ + 53.6010079, + 10.1098709 + ], + [ + 53.6011812, + 10.1101253 + ], + [ + 53.6049928, + 10.1155455 + ], + [ + 53.6053404, + 10.1159889 + ] + ] + }, + { + "osmId": "63950590", + "name": null, + "lengthMeters": 3362.3570756822323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1391795, + 11.5180953 + ], + [ + 48.1396591, + 11.5182583 + ], + [ + 48.1399455, + 11.5183658 + ], + [ + 48.140088, + 11.5184123 + ], + [ + 48.1401568, + 11.5184309 + ], + [ + 48.14024, + 11.5184542 + ], + [ + 48.1402986, + 11.5184692 + ], + [ + 48.1410806, + 11.5186695 + ], + [ + 48.1411279, + 11.5186849 + ], + [ + 48.1411707, + 11.5187033 + ], + [ + 48.1411962, + 11.5187275 + ], + [ + 48.1412391, + 11.5187925 + ], + [ + 48.1412445, + 11.5188115 + ], + [ + 48.1412603, + 11.5188699 + ], + [ + 48.1412719, + 11.5189341 + ], + [ + 48.1412746, + 11.5189686 + ], + [ + 48.1412759, + 11.519016 + ], + [ + 48.1412724, + 11.519069 + ], + [ + 48.1412136, + 11.5195844 + ], + [ + 48.1411172, + 11.5204031 + ], + [ + 48.1410215, + 11.5212181 + ], + [ + 48.1409833, + 11.521572 + ], + [ + 48.1409176, + 11.5221459 + ], + [ + 48.1408416, + 11.5228484 + ], + [ + 48.1408029, + 11.5231972 + ], + [ + 48.1407664, + 11.5235557 + ], + [ + 48.14073, + 11.5239956 + ], + [ + 48.1407083, + 11.5242476 + ], + [ + 48.140691, + 11.5244723 + ], + [ + 48.1406639, + 11.5248339 + ], + [ + 48.1405989, + 11.5256548 + ], + [ + 48.140479, + 11.5269798 + ], + [ + 48.1404181, + 11.5278228 + ], + [ + 48.140395, + 11.5281916 + ], + [ + 48.1403335, + 11.529248 + ], + [ + 48.1402943, + 11.5299431 + ], + [ + 48.140277, + 11.5302243 + ], + [ + 48.1402582, + 11.5305196 + ], + [ + 48.1401922, + 11.5314966 + ], + [ + 48.1400946, + 11.5330515 + ], + [ + 48.1400608, + 11.5336024 + ], + [ + 48.1400379, + 11.533887 + ], + [ + 48.1400283, + 11.5340496 + ], + [ + 48.1399889, + 11.5347181 + ], + [ + 48.1399778, + 11.5349033 + ], + [ + 48.1399578, + 11.5353071 + ], + [ + 48.1398888, + 11.5367771 + ], + [ + 48.1398193, + 11.5379894 + ], + [ + 48.1398155, + 11.5380449 + ], + [ + 48.1398022, + 11.538246 + ], + [ + 48.1397989, + 11.5382948 + ], + [ + 48.1397448, + 11.5391044 + ], + [ + 48.1396443, + 11.5405778 + ], + [ + 48.1395985, + 11.5412763 + ], + [ + 48.1395838, + 11.5415225 + ], + [ + 48.1395763, + 11.5416708 + ], + [ + 48.139545, + 11.542195 + ], + [ + 48.1394412, + 11.5439368 + ], + [ + 48.1393475, + 11.5455226 + ], + [ + 48.1393207, + 11.5460085 + ], + [ + 48.1392896, + 11.546496 + ], + [ + 48.1392725, + 11.5467263 + ], + [ + 48.1392503, + 11.5469425 + ], + [ + 48.1392296, + 11.5471086 + ], + [ + 48.1392085, + 11.5472471 + ], + [ + 48.1391532, + 11.547633 + ], + [ + 48.1389884, + 11.5487151 + ], + [ + 48.1389646, + 11.5489119 + ], + [ + 48.1389491, + 11.5491102 + ], + [ + 48.1389468, + 11.5493065 + ], + [ + 48.1389496, + 11.549479 + ], + [ + 48.1389587, + 11.5497394 + ], + [ + 48.1389624, + 11.5498462 + ], + [ + 48.1389682, + 11.5499873 + ], + [ + 48.1389689, + 11.5500044 + ], + [ + 48.1389704, + 11.5501178 + ], + [ + 48.1389738, + 11.5502285 + ], + [ + 48.1389871, + 11.5506042 + ], + [ + 48.1389961, + 11.5508698 + ], + [ + 48.1389983, + 11.5509325 + ], + [ + 48.1390108, + 11.5513014 + ], + [ + 48.139018, + 11.5515159 + ], + [ + 48.1390191, + 11.5515475 + ], + [ + 48.1390228, + 11.5516592 + ], + [ + 48.1390258, + 11.5517533 + ], + [ + 48.1390277, + 11.5518111 + ], + [ + 48.1390473, + 11.5524248 + ], + [ + 48.1390694, + 11.5531027 + ], + [ + 48.1390971, + 11.553951 + ], + [ + 48.1391158, + 11.554522 + ], + [ + 48.1391476, + 11.5554974 + ], + [ + 48.1391533, + 11.5556708 + ], + [ + 48.1391549, + 11.5558263 + ], + [ + 48.1391554, + 11.5559518 + ], + [ + 48.1391558, + 11.5560708 + ], + [ + 48.1391807, + 11.5575526 + ], + [ + 48.1391852, + 11.5576804 + ], + [ + 48.1391965, + 11.5578322 + ], + [ + 48.139218, + 11.5580559 + ], + [ + 48.139228, + 11.5581668 + ], + [ + 48.1392362, + 11.5582972 + ], + [ + 48.1392409, + 11.5584608 + ], + [ + 48.1392432, + 11.5586452 + ], + [ + 48.1392448, + 11.5588084 + ], + [ + 48.1392455, + 11.5588551 + ], + [ + 48.1392617, + 11.5596967 + ], + [ + 48.1392655, + 11.5598851 + ], + [ + 48.1392734, + 11.5600891 + ], + [ + 48.1392942, + 11.5604493 + ], + [ + 48.1393037, + 11.5606127 + ], + [ + 48.1393071, + 11.5606726 + ] + ] + }, + { + "osmId": "65579457", + "name": null, + "lengthMeters": 494.19053014173926, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3715478, + 13.1174591 + ], + [ + 52.3715694, + 13.1180723 + ], + [ + 52.3715714, + 13.1183037 + ], + [ + 52.3715544, + 13.1192641 + ], + [ + 52.3715297, + 13.1202425 + ], + [ + 52.3715017, + 13.1206224 + ], + [ + 52.3714611, + 13.1209466 + ], + [ + 52.371385, + 13.1213532 + ], + [ + 52.3712805, + 13.121743 + ], + [ + 52.3711451, + 13.1221055 + ], + [ + 52.3709943, + 13.1224157 + ], + [ + 52.3707603, + 13.122806 + ], + [ + 52.3705282, + 13.1230757 + ], + [ + 52.3702303, + 13.1233498 + ], + [ + 52.3699164, + 13.1234972 + ] + ] + }, + { + "osmId": "68335776", + "name": null, + "lengthMeters": 461.62468651500944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5905901, + 9.9166837 + ], + [ + 53.5909411, + 9.9161399 + ], + [ + 53.5914855, + 9.9151658 + ], + [ + 53.5924951, + 9.9132409 + ], + [ + 53.5933842, + 9.9115162 + ] + ] + }, + { + "osmId": "68335833", + "name": null, + "lengthMeters": 343.1263792902758, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5933842, + 9.9115162 + ], + [ + 53.5938048, + 9.9106778 + ], + [ + 53.594241, + 9.9098008 + ], + [ + 53.5943748, + 9.9095395 + ], + [ + 53.5946344, + 9.9090407 + ], + [ + 53.5950422, + 9.9082653 + ], + [ + 53.5954029, + 9.9075843 + ] + ] + }, + { + "osmId": "68336659", + "name": null, + "lengthMeters": 146.15350260376454, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5954029, + 9.9075843 + ], + [ + 53.5958199, + 9.9067825 + ], + [ + 53.596258, + 9.9059025 + ] + ] + }, + { + "osmId": "68476879", + "name": null, + "lengthMeters": 186.79817397610026, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1403196, + 11.5542351 + ], + [ + 48.1404295, + 11.5535912 + ], + [ + 48.1404829, + 11.5533132 + ], + [ + 48.1405698, + 11.5528736 + ], + [ + 48.1406524, + 11.5524698 + ], + [ + 48.140786, + 11.5518171 + ] + ] + }, + { + "osmId": "69105260", + "name": null, + "lengthMeters": 1020.9810591174635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1808756, + 11.5081649 + ], + [ + 48.1809051, + 11.5089895 + ], + [ + 48.1809527, + 11.5099652 + ], + [ + 48.1810275, + 11.5106641 + ], + [ + 48.1811958, + 11.5119192 + ], + [ + 48.1813768, + 11.5134813 + ], + [ + 48.18169, + 11.5163048 + ], + [ + 48.1817278, + 11.5170053 + ], + [ + 48.1817633, + 11.5178101 + ], + [ + 48.1817967, + 11.5188183 + ], + [ + 48.1818291, + 11.5197294 + ], + [ + 48.1818441, + 11.5201847 + ], + [ + 48.1818997, + 11.5214378 + ], + [ + 48.1819121, + 11.5218251 + ] + ] + }, + { + "osmId": "69236599", + "name": null, + "lengthMeters": 370.4254542102472, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5955227, + 9.9072466 + ], + [ + 53.5950128, + 9.9082253 + ], + [ + 53.594604, + 9.9089941 + ], + [ + 53.5943481, + 9.9094828 + ], + [ + 53.5942105, + 9.9097547 + ], + [ + 53.5937711, + 9.9106304 + ], + [ + 53.5933431, + 9.9114909 + ] + ] + }, + { + "osmId": "69254638", + "name": null, + "lengthMeters": 517.3623742024641, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292643, + 13.230182 + ], + [ + 52.5295361, + 13.2274986 + ], + [ + 52.5295435, + 13.2274257 + ], + [ + 52.5295494, + 13.2273669 + ], + [ + 52.5297279, + 13.225581 + ], + [ + 52.5297865, + 13.2250551 + ], + [ + 52.5299649, + 13.223455 + ], + [ + 52.5300544, + 13.222764 + ], + [ + 52.5300692, + 13.22265 + ] + ] + }, + { + "osmId": "69254639", + "name": null, + "lengthMeters": 100.34623916165299, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5296227, + 13.2270628 + ], + [ + 52.5296439, + 13.226856 + ], + [ + 52.5297719, + 13.2255998 + ] + ] + }, + { + "osmId": "69254641", + "name": null, + "lengthMeters": 108.42253311609332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100129, + 13.4363731 + ], + [ + 52.5102196, + 13.4358858 + ], + [ + 52.5105704, + 13.4350587 + ] + ] + }, + { + "osmId": "69601192", + "name": "Niederelbebahn", + "lengthMeters": 2767.45993833621, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.471687, + 9.9192171 + ], + [ + 53.471686, + 9.9194542 + ], + [ + 53.4716789, + 9.9211417 + ], + [ + 53.4716774, + 9.9215105 + ], + [ + 53.4716685, + 9.922482 + ], + [ + 53.4716684, + 9.9224931 + ], + [ + 53.4716599, + 9.9234185 + ], + [ + 53.4716236, + 9.9289367 + ], + [ + 53.4715737, + 9.9352789 + ], + [ + 53.4715662, + 9.9362019 + ], + [ + 53.4715448, + 9.9388136 + ], + [ + 53.4715498, + 9.9391487 + ], + [ + 53.4715843, + 9.9414697 + ], + [ + 53.4716119, + 9.9447363 + ], + [ + 53.4715995, + 9.9453016 + ], + [ + 53.4715781, + 9.9462766 + ], + [ + 53.4714926, + 9.9484358 + ], + [ + 53.4714392, + 9.9493378 + ], + [ + 53.4713567, + 9.9504475 + ], + [ + 53.4712344, + 9.9517728 + ], + [ + 53.4708886, + 9.9553292 + ], + [ + 53.470617, + 9.958839 + ], + [ + 53.4704676, + 9.9608629 + ], + [ + 53.4704648, + 9.9609007 + ] + ] + }, + { + "osmId": "69868542", + "name": null, + "lengthMeters": 334.67622950988044, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4561013, + 9.9908654 + ], + [ + 53.4559333, + 9.9909162 + ], + [ + 53.4558902, + 9.9909287 + ], + [ + 53.4556115, + 9.9910229 + ], + [ + 53.455398, + 9.9911091 + ], + [ + 53.4552808, + 9.9911597 + ], + [ + 53.4552342, + 9.9911848 + ], + [ + 53.4551757, + 9.9912142 + ], + [ + 53.4549547, + 9.9913368 + ], + [ + 53.4547889, + 9.9914459 + ], + [ + 53.4545929, + 9.991578 + ], + [ + 53.4543983, + 9.991728 + ], + [ + 53.4541225, + 9.9919719 + ], + [ + 53.4539187, + 9.9921771 + ], + [ + 53.4538515, + 9.9922447 + ], + [ + 53.453608, + 9.9925244 + ], + [ + 53.453543, + 9.992599 + ], + [ + 53.4533656, + 9.9928258 + ] + ] + }, + { + "osmId": "69868543", + "name": null, + "lengthMeters": 1381.6802595694878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4517567, + 9.995078 + ], + [ + 53.4516262, + 9.9952705 + ], + [ + 53.4513672, + 9.9956564 + ], + [ + 53.4509539, + 9.996266 + ], + [ + 53.450793, + 9.9965044 + ], + [ + 53.4507339, + 9.996592 + ], + [ + 53.4504518, + 9.9970101 + ], + [ + 53.4501001, + 9.9975332 + ], + [ + 53.4497979, + 9.9980067 + ], + [ + 53.448848, + 9.9994459 + ], + [ + 53.4486563, + 9.9997292 + ], + [ + 53.4482637, + 10.0003115 + ], + [ + 53.4479864, + 10.0007195 + ], + [ + 53.4472451, + 10.0018102 + ], + [ + 53.4461816, + 10.0034071 + ], + [ + 53.4461212, + 10.0035 + ], + [ + 53.4457125, + 10.0041282 + ], + [ + 53.4455386, + 10.0043954 + ], + [ + 53.445274, + 10.0047884 + ], + [ + 53.4445098, + 10.0059421 + ], + [ + 53.4437226, + 10.0070458 + ], + [ + 53.4436397, + 10.007155 + ], + [ + 53.4433792, + 10.0074984 + ], + [ + 53.4430478, + 10.0079221 + ], + [ + 53.4424538, + 10.0086367 + ], + [ + 53.4424131, + 10.0086828 + ], + [ + 53.4423707, + 10.0087332 + ] + ] + }, + { + "osmId": "70268945", + "name": null, + "lengthMeters": 647.8395447303534, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5166316, + 13.3803754 + ], + [ + 52.5166333, + 13.3802458 + ], + [ + 52.5166384, + 13.3798585 + ], + [ + 52.5166526, + 13.3793491 + ], + [ + 52.5166828, + 13.3788167 + ], + [ + 52.5167511, + 13.3781057 + ], + [ + 52.5168087, + 13.377717 + ], + [ + 52.5168415, + 13.3775222 + ], + [ + 52.5168779, + 13.3773326 + ], + [ + 52.5169401, + 13.3770451 + ], + [ + 52.5170115, + 13.3767627 + ], + [ + 52.5171112, + 13.3764258 + ], + [ + 52.5172274, + 13.3760836 + ], + [ + 52.5174426, + 13.3755734 + ], + [ + 52.5176976, + 13.3750893 + ], + [ + 52.5178841, + 13.3747937 + ], + [ + 52.5180786, + 13.374521 + ], + [ + 52.5182308, + 13.374342 + ], + [ + 52.5183255, + 13.3742363 + ], + [ + 52.5185255, + 13.374036 + ], + [ + 52.5187231, + 13.3738672 + ], + [ + 52.5189234, + 13.3737192 + ], + [ + 52.5191806, + 13.3735695 + ], + [ + 52.5194464, + 13.3734331 + ], + [ + 52.5197345, + 13.3732924 + ] + ] + }, + { + "osmId": "70411224", + "name": null, + "lengthMeters": 127.66288503743436, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5653979, + 9.8193555 + ], + [ + 53.5653711, + 9.8191873 + ], + [ + 53.565351, + 9.8190663 + ], + [ + 53.5653282, + 9.8189342 + ], + [ + 53.565103, + 9.8177233 + ], + [ + 53.5650612, + 9.8175076 + ] + ] + }, + { + "osmId": "70528281", + "name": null, + "lengthMeters": 145.37541987940932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4445425, + 13.5698072 + ], + [ + 52.4445516, + 13.5697292 + ], + [ + 52.4445566, + 13.5696792 + ], + [ + 52.4445584, + 13.5696315 + ], + [ + 52.4445595, + 13.569576 + ], + [ + 52.4445574, + 13.5695382 + ], + [ + 52.4445538, + 13.5695059 + ], + [ + 52.4445489, + 13.5694668 + ], + [ + 52.4445461, + 13.569445 + ], + [ + 52.4445408, + 13.5694052 + ], + [ + 52.4445346, + 13.569377 + ], + [ + 52.444522, + 13.5693272 + ], + [ + 52.444509, + 13.56929 + ], + [ + 52.4444954, + 13.5692636 + ], + [ + 52.4444768, + 13.569227 + ], + [ + 52.4444519, + 13.5691956 + ], + [ + 52.4444344, + 13.5691735 + ], + [ + 52.4444025, + 13.5691479 + ], + [ + 52.4443614, + 13.5691242 + ], + [ + 52.4443104, + 13.5691088 + ], + [ + 52.4442446, + 13.5691007 + ], + [ + 52.444163, + 13.5691045 + ], + [ + 52.4440382, + 13.5691106 + ], + [ + 52.4439267, + 13.5691271 + ], + [ + 52.4437781, + 13.5691491 + ], + [ + 52.4436486, + 13.5691683 + ], + [ + 52.4436433, + 13.5691692 + ], + [ + 52.4436286, + 13.569172 + ], + [ + 52.4435654, + 13.5691842 + ] + ] + }, + { + "osmId": "71321844", + "name": null, + "lengthMeters": 456.83396813810555, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3621246, + 13.500962 + ], + [ + 52.3624921, + 13.5024114 + ], + [ + 52.362646, + 13.5030999 + ], + [ + 52.3627475, + 13.5035708 + ], + [ + 52.3630693, + 13.5050752 + ], + [ + 52.3630727, + 13.505091 + ], + [ + 52.3634839, + 13.5069792 + ], + [ + 52.3635476, + 13.5072716 + ] + ] + }, + { + "osmId": "71321849", + "name": null, + "lengthMeters": 815.1455235079178, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3693086, + 13.529243 + ], + [ + 52.3691088, + 13.5287762 + ], + [ + 52.3689394, + 13.5283512 + ], + [ + 52.3687835, + 13.527928 + ], + [ + 52.3686882, + 13.5276553 + ], + [ + 52.3685336, + 13.5271745 + ], + [ + 52.3683945, + 13.5267032 + ], + [ + 52.3683242, + 13.5264458 + ], + [ + 52.3682582, + 13.5261872 + ], + [ + 52.3679808, + 13.5250235 + ], + [ + 52.3675738, + 13.5233384 + ], + [ + 52.3675237, + 13.5231381 + ], + [ + 52.36726, + 13.5221018 + ], + [ + 52.3670507, + 13.5212523 + ], + [ + 52.3666715, + 13.5196527 + ], + [ + 52.3663482, + 13.5182939 + ] + ] + }, + { + "osmId": "71326270", + "name": null, + "lengthMeters": 842.396185742574, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.517587, + 13.3957057 + ], + [ + 52.5175729, + 13.3952036 + ], + [ + 52.5175389, + 13.3947466 + ], + [ + 52.5174197, + 13.3935718 + ], + [ + 52.5173618, + 13.3929831 + ], + [ + 52.5172991, + 13.3923737 + ], + [ + 52.5172361, + 13.3917372 + ], + [ + 52.517179, + 13.3910921 + ], + [ + 52.51713, + 13.3904605 + ], + [ + 52.5170925, + 13.389952 + ], + [ + 52.5170131, + 13.3886563 + ], + [ + 52.5169792, + 13.3880872 + ], + [ + 52.5169243, + 13.3872391 + ], + [ + 52.5168982, + 13.3865766 + ], + [ + 52.5168925, + 13.3858095 + ], + [ + 52.51688, + 13.3850682 + ], + [ + 52.5168542, + 13.3842069 + ], + [ + 52.516837, + 13.3837791 + ], + [ + 52.516813, + 13.3833361 + ] + ] + }, + { + "osmId": "72644139", + "name": null, + "lengthMeters": 151.2548390739115, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6345306, + 13.4586561 + ], + [ + 52.6341221, + 13.4595478 + ], + [ + 52.633719, + 13.4604547 + ] + ] + }, + { + "osmId": "72644144", + "name": null, + "lengthMeters": 286.38511869032294, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6330629, + 13.4620602 + ], + [ + 52.6316833, + 13.4656436 + ] + ] + }, + { + "osmId": "72875304", + "name": null, + "lengthMeters": 1914.1613502424395, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3991059, + 13.5403174 + ], + [ + 52.3990331, + 13.5397613 + ], + [ + 52.3988461, + 13.53841 + ], + [ + 52.3988308, + 13.538299 + ], + [ + 52.3986903, + 13.5373089 + ], + [ + 52.398545, + 13.5362831 + ], + [ + 52.3984202, + 13.5354072 + ], + [ + 52.3981322, + 13.5334088 + ], + [ + 52.3978723, + 13.5315996 + ], + [ + 52.39782, + 13.5312267 + ], + [ + 52.3977686, + 13.5308576 + ], + [ + 52.3977495, + 13.5307204 + ], + [ + 52.3976677, + 13.5301528 + ], + [ + 52.3975119, + 13.5290423 + ], + [ + 52.3973573, + 13.5279679 + ], + [ + 52.3971806, + 13.5268726 + ], + [ + 52.3970487, + 13.5262404 + ], + [ + 52.3969352, + 13.5257666 + ], + [ + 52.3969166, + 13.5256983 + ], + [ + 52.396787, + 13.5252426 + ], + [ + 52.396668, + 13.5248725 + ], + [ + 52.3964626, + 13.5242954 + ], + [ + 52.3964148, + 13.5241727 + ], + [ + 52.3962446, + 13.5237568 + ], + [ + 52.3958132, + 13.5228084 + ], + [ + 52.3953709, + 13.521869 + ], + [ + 52.3951962, + 13.5214967 + ], + [ + 52.394323, + 13.5196224 + ], + [ + 52.3941268, + 13.5192184 + ], + [ + 52.3939273, + 13.5188264 + ], + [ + 52.3936724, + 13.5183521 + ], + [ + 52.393536, + 13.5180987 + ], + [ + 52.3931684, + 13.5174524 + ], + [ + 52.3929648, + 13.5170972 + ], + [ + 52.392669, + 13.5165358 + ], + [ + 52.3922996, + 13.5158009 + ], + [ + 52.3922372, + 13.515665 + ], + [ + 52.3920823, + 13.5153315 + ], + [ + 52.3920585, + 13.5152788 + ] + ] + }, + { + "osmId": "72984377", + "name": "Berliner Stadtbahn", + "lengthMeters": 164.4435574195684, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5220345, + 13.4104113 + ], + [ + 52.5220239, + 13.4104282 + ], + [ + 52.5220058, + 13.4104569 + ], + [ + 52.5219232, + 13.410588 + ], + [ + 52.5217717, + 13.4108285 + ], + [ + 52.5215095, + 13.4112386 + ], + [ + 52.5214176, + 13.4113816 + ], + [ + 52.5213271, + 13.4115239 + ], + [ + 52.5211719, + 13.4117691 + ], + [ + 52.5210937, + 13.4118926 + ], + [ + 52.5210568, + 13.4119501 + ], + [ + 52.5209811, + 13.4120689 + ], + [ + 52.5209655, + 13.4120907 + ] + ] + }, + { + "osmId": "72984378", + "name": "Berliner Stadtbahn", + "lengthMeters": 163.35218321204334, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.521928, + 13.4102252 + ], + [ + 52.521321, + 13.4111854 + ], + [ + 52.5210823, + 13.411565 + ], + [ + 52.5210092, + 13.4116812 + ], + [ + 52.5209157, + 13.4118478 + ], + [ + 52.5208784, + 13.4119138 + ] + ] + }, + { + "osmId": "73652211", + "name": null, + "lengthMeters": 153.87934062837178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5651296, + 9.8176106 + ], + [ + 53.5651064, + 9.8175139 + ], + [ + 53.5650608, + 9.8173247 + ], + [ + 53.5650258, + 9.817187 + ], + [ + 53.5649832, + 9.8170319 + ], + [ + 53.564943, + 9.8168892 + ], + [ + 53.5648133, + 9.8164507 + ], + [ + 53.5645471, + 9.8154977 + ] + ] + }, + { + "osmId": "74859242", + "name": null, + "lengthMeters": 717.7093072606817, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724385, + 13.5454341 + ], + [ + 52.4730307, + 13.5440887 + ], + [ + 52.4738181, + 13.5422996 + ], + [ + 52.4756575, + 13.5381205 + ], + [ + 52.4762188, + 13.5368452 + ] + ] + }, + { + "osmId": "74859252", + "name": null, + "lengthMeters": 633.2386909245765, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724136, + 13.5454064 + ], + [ + 52.4703739, + 13.550038 + ], + [ + 52.4694446, + 13.5521604 + ], + [ + 52.469081, + 13.5529871 + ] + ] + }, + { + "osmId": "75042735", + "name": null, + "lengthMeters": 295.597512649841, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5160822, + 13.2534286 + ], + [ + 52.5160975, + 13.2533368 + ], + [ + 52.5161489, + 13.2529987 + ], + [ + 52.5162577, + 13.2524714 + ], + [ + 52.5163937, + 13.2519439 + ], + [ + 52.5164622, + 13.2517134 + ], + [ + 52.5165549, + 13.2514665 + ], + [ + 52.5167179, + 13.2511115 + ], + [ + 52.5168978, + 13.250798 + ], + [ + 52.517124, + 13.2504982 + ], + [ + 52.5173134, + 13.2502931 + ], + [ + 52.5175913, + 13.250039 + ] + ] + }, + { + "osmId": "75042737", + "name": null, + "lengthMeters": 499.7094379464115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5223638, + 13.2456695 + ], + [ + 52.5222085, + 13.2458425 + ], + [ + 52.5217033, + 13.2464196 + ], + [ + 52.5212563, + 13.2468149 + ], + [ + 52.5205336, + 13.247348 + ], + [ + 52.5183757, + 13.2490417 + ] + ] + }, + { + "osmId": "75062860", + "name": null, + "lengthMeters": 321.21649398733695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1094983, + 11.6466594 + ], + [ + 48.1089188, + 11.6465943 + ], + [ + 48.108707, + 11.6465749 + ], + [ + 48.1081133, + 11.6465646 + ], + [ + 48.1075656, + 11.6465582 + ], + [ + 48.1073254, + 11.6465671 + ], + [ + 48.1071817, + 11.6465806 + ], + [ + 48.1067841, + 11.6466686 + ], + [ + 48.1066165, + 11.6466813 + ] + ] + }, + { + "osmId": "75408304", + "name": null, + "lengthMeters": 281.8317079036283, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530818, + 9.9349648 + ], + [ + 53.5531756, + 9.9349683 + ], + [ + 53.5535039, + 9.9349817 + ], + [ + 53.5537041, + 9.9349916 + ], + [ + 53.5537673, + 9.9349957 + ], + [ + 53.5540456, + 9.935005 + ], + [ + 53.5543238, + 9.9350174 + ], + [ + 53.5543304, + 9.9350176 + ], + [ + 53.5546701, + 9.9350315 + ], + [ + 53.555125, + 9.9350533 + ], + [ + 53.5554445, + 9.9350638 + ], + [ + 53.5555537, + 9.9350674 + ], + [ + 53.5555751, + 9.9350672 + ], + [ + 53.5555922, + 9.9350671 + ], + [ + 53.5556156, + 9.9350669 + ] + ] + }, + { + "osmId": "75408612", + "name": null, + "lengthMeters": 76.76623266055203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5622245, + 9.9336615 + ], + [ + 53.5619234, + 9.9334561 + ], + [ + 53.5615873, + 9.9332143 + ] + ] + }, + { + "osmId": "75408659", + "name": null, + "lengthMeters": 218.90569048980396, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5582574, + 9.9335795 + ], + [ + 53.557963, + 9.9339314 + ], + [ + 53.5577606, + 9.934181 + ], + [ + 53.5576053, + 9.9343547 + ], + [ + 53.5574624, + 9.9344862 + ], + [ + 53.5573299, + 9.9345889 + ], + [ + 53.5571015, + 9.9347266 + ], + [ + 53.5569429, + 9.934798 + ], + [ + 53.5567982, + 9.9348347 + ], + [ + 53.5565666, + 9.9348649 + ], + [ + 53.5564907, + 9.9348748 + ] + ] + }, + { + "osmId": "75408665", + "name": null, + "lengthMeters": 330.51535756390746, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5588603, + 9.9332199 + ], + [ + 53.5590262, + 9.9330923 + ], + [ + 53.5592026, + 9.9329744 + ], + [ + 53.5593754, + 9.9328971 + ], + [ + 53.5595264, + 9.932845 + ], + [ + 53.5596619, + 9.9328164 + ], + [ + 53.5597844, + 9.9328034 + ], + [ + 53.5600014, + 9.9328069 + ], + [ + 53.5602071, + 9.9328453 + ], + [ + 53.5602225, + 9.9328482 + ], + [ + 53.5604117, + 9.9329158 + ], + [ + 53.5604857, + 9.9329469 + ], + [ + 53.5609021, + 9.933208 + ], + [ + 53.5616447, + 9.9337393 + ], + [ + 53.5616885, + 9.9337707 + ] + ] + }, + { + "osmId": "75412691", + "name": null, + "lengthMeters": 327.9063266335863, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530712, + 9.9354096 + ], + [ + 53.5531712, + 9.9354125 + ], + [ + 53.5534995, + 9.935426 + ], + [ + 53.5537587, + 9.9354382 + ], + [ + 53.5543245, + 9.935465 + ], + [ + 53.5547306, + 9.9354824 + ], + [ + 53.5556271, + 9.9355207 + ], + [ + 53.5558214, + 9.935529 + ], + [ + 53.5558529, + 9.9355304 + ], + [ + 53.5560192, + 9.9355296 + ] + ] + }, + { + "osmId": "75414495", + "name": null, + "lengthMeters": 559.4886017275676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5576386, + 9.9355895 + ], + [ + 53.5580615, + 9.9355982 + ], + [ + 53.5582365, + 9.9355828 + ], + [ + 53.5585476, + 9.9355413 + ], + [ + 53.5586521, + 9.9355274 + ], + [ + 53.5594368, + 9.9354259 + ], + [ + 53.5599097, + 9.9354089 + ], + [ + 53.5603044, + 9.9354443 + ], + [ + 53.5606864, + 9.9355292 + ], + [ + 53.5608946, + 9.9355734 + ], + [ + 53.5610918, + 9.9356031 + ], + [ + 53.5612283, + 9.9356131 + ], + [ + 53.5614525, + 9.9356047 + ], + [ + 53.5616819, + 9.9355692 + ], + [ + 53.5618674, + 9.9355235 + ], + [ + 53.5619965, + 9.9354801 + ], + [ + 53.5621484, + 9.9354291 + ], + [ + 53.5624233, + 9.935286 + ], + [ + 53.5626258, + 9.9351639 + ] + ] + }, + { + "osmId": "75789755", + "name": null, + "lengthMeters": 607.1785608180393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1066165, + 11.6466813 + ], + [ + 48.1029597, + 11.6466584 + ], + [ + 48.1027886, + 11.6466398 + ], + [ + 48.1025661, + 11.6465908 + ], + [ + 48.1022487, + 11.6464859 + ], + [ + 48.1017245, + 11.6462836 + ], + [ + 48.1012008, + 11.6460813 + ] + ] + }, + { + "osmId": "77339547", + "name": null, + "lengthMeters": 312.6662867021847, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5697053, + 9.9336552 + ], + [ + 53.5690463, + 9.9336965 + ], + [ + 53.5688909, + 9.9337021 + ], + [ + 53.5685415, + 9.933741 + ], + [ + 53.5683159, + 9.9337619 + ], + [ + 53.5680588, + 9.9338148 + ], + [ + 53.5676535, + 9.9339253 + ], + [ + 53.5674873, + 9.9339783 + ], + [ + 53.5669133, + 9.9341416 + ] + ] + }, + { + "osmId": "77339557", + "name": null, + "lengthMeters": 126.42584544314239, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5626258, + 9.9351639 + ], + [ + 53.5629565, + 9.9348659 + ], + [ + 53.5633215, + 9.9345506 + ], + [ + 53.5634571, + 9.9344219 + ], + [ + 53.5636348, + 9.9342827 + ] + ] + }, + { + "osmId": "77476636", + "name": null, + "lengthMeters": 1010.6609072706069, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4120602, + 13.1574222 + ], + [ + 52.4119459, + 13.1572347 + ], + [ + 52.4118309, + 13.1570546 + ], + [ + 52.4116032, + 13.1567166 + ], + [ + 52.4115634, + 13.1566644 + ], + [ + 52.4110876, + 13.1560254 + ], + [ + 52.4105835, + 13.1553961 + ], + [ + 52.4078852, + 13.152139 + ], + [ + 52.4048155, + 13.148438 + ] + ] + }, + { + "osmId": "77476639", + "name": null, + "lengthMeters": 167.45577146612385, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4047068, + 13.1483093 + ], + [ + 52.4035712, + 13.146935 + ], + [ + 52.4034947, + 13.1468444 + ] + ] + }, + { + "osmId": "78352617", + "name": null, + "lengthMeters": 78.01748240701139, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4305954, + 13.2565039 + ], + [ + 52.4305592, + 13.2563758 + ], + [ + 52.4305175, + 13.2562454 + ], + [ + 52.4304587, + 13.2560858 + ], + [ + 52.4304226, + 13.255977 + ], + [ + 52.430391, + 13.2558783 + ], + [ + 52.4303337, + 13.2556845 + ], + [ + 52.4302739, + 13.2554819 + ] + ] + }, + { + "osmId": "78352618", + "name": null, + "lengthMeters": 296.3854912100611, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4298917, + 13.2503823 + ], + [ + 52.4298741, + 13.2505591 + ], + [ + 52.4298235, + 13.2510751 + ], + [ + 52.4298059, + 13.2513061 + ], + [ + 52.4297894, + 13.2518365 + ], + [ + 52.4297905, + 13.2522893 + ], + [ + 52.4298246, + 13.2529911 + ], + [ + 52.4298903, + 13.2537019 + ], + [ + 52.4299606, + 13.2542156 + ], + [ + 52.4300036, + 13.2544637 + ], + [ + 52.4300517, + 13.2546964 + ] + ] + }, + { + "osmId": "78568963", + "name": null, + "lengthMeters": 1948.6308705645095, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438958, + 11.5781541 + ], + [ + 48.144219, + 11.5782923 + ], + [ + 48.1445013, + 11.5784032 + ], + [ + 48.1459416, + 11.5790082 + ], + [ + 48.1503682, + 11.5810641 + ], + [ + 48.1513697, + 11.5815318 + ], + [ + 48.1529913, + 11.5822506 + ], + [ + 48.1555084, + 11.5834374 + ], + [ + 48.1560466, + 11.5836912 + ], + [ + 48.156577, + 11.5839424 + ], + [ + 48.1567646, + 11.5840321 + ], + [ + 48.1571016, + 11.5841932 + ], + [ + 48.1604055, + 11.5856868 + ], + [ + 48.16066, + 11.5858019 + ] + ] + }, + { + "osmId": "78568965", + "name": null, + "lengthMeters": 862.2561063879951, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356872, + 11.5733888 + ], + [ + 48.1359122, + 11.5739277 + ], + [ + 48.1361805, + 11.5746928 + ], + [ + 48.1362835, + 11.5749319 + ], + [ + 48.1364137, + 11.575144 + ], + [ + 48.1365871, + 11.5753975 + ], + [ + 48.1368129, + 11.5756712 + ], + [ + 48.1370182, + 11.5759112 + ], + [ + 48.137216, + 11.5761095 + ], + [ + 48.1377037, + 11.5764853 + ], + [ + 48.1382222, + 11.5768804 + ], + [ + 48.1383265, + 11.5769534 + ], + [ + 48.1384172, + 11.5770021 + ], + [ + 48.1386642, + 11.5771067 + ], + [ + 48.1390064, + 11.5772472 + ], + [ + 48.1393541, + 11.5774095 + ], + [ + 48.1395381, + 11.5774654 + ], + [ + 48.1396828, + 11.5774877 + ], + [ + 48.1398496, + 11.5774941 + ], + [ + 48.1403406, + 11.5774518 + ], + [ + 48.1405113, + 11.577453 + ], + [ + 48.1417025, + 11.5776178 + ], + [ + 48.1423628, + 11.5777237 + ] + ] + }, + { + "osmId": "79366243", + "name": "Schenkendorfbr\u00fccke", + "lengthMeters": 107.49268261613763, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1776827, + 11.5886731 + ], + [ + 48.1767251, + 11.5884746 + ] + ] + }, + { + "osmId": "79369360", + "name": null, + "lengthMeters": 85.54466540958926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1523551, + 11.6134224 + ], + [ + 48.1523097, + 11.6133717 + ], + [ + 48.1522591, + 11.6133183 + ], + [ + 48.1522382, + 11.6132997 + ], + [ + 48.1522188, + 11.6132827 + ], + [ + 48.152201, + 11.613259 + ], + [ + 48.1521821, + 11.6132335 + ], + [ + 48.1521589, + 11.6131968 + ], + [ + 48.1520176, + 11.6129469 + ], + [ + 48.1519934, + 11.6129004 + ], + [ + 48.1519788, + 11.6128651 + ], + [ + 48.151967, + 11.612835 + ], + [ + 48.1519567, + 11.6128029 + ], + [ + 48.1519431, + 11.612754 + ], + [ + 48.1519128, + 11.6126304 + ], + [ + 48.1518931, + 11.6125372 + ] + ] + }, + { + "osmId": "79428004", + "name": null, + "lengthMeters": 140.24087877619542, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5490477, + 9.9847837 + ], + [ + 53.549234, + 9.9847286 + ], + [ + 53.5496348, + 9.9845592 + ], + [ + 53.549949, + 9.9843675 + ], + [ + 53.5502465, + 9.9841489 + ] + ] + }, + { + "osmId": "79428006", + "name": null, + "lengthMeters": 86.56507786202823, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5403461, + 10.0105278 + ], + [ + 53.5404649, + 10.0094516 + ], + [ + 53.5404883, + 10.0092398 + ] + ] + }, + { + "osmId": "79560728", + "name": null, + "lengthMeters": 3950.805292793067, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1244666, + 11.4901708 + ], + [ + 48.1243521, + 11.490185 + ], + [ + 48.1243194, + 11.4901916 + ], + [ + 48.1243028, + 11.4901967 + ], + [ + 48.1242862, + 11.4902036 + ], + [ + 48.1242693, + 11.4902157 + ], + [ + 48.1242523, + 11.4902302 + ], + [ + 48.1242375, + 11.4902468 + ], + [ + 48.1242235, + 11.4902652 + ], + [ + 48.1242101, + 11.4902885 + ], + [ + 48.1242007, + 11.4903124 + ], + [ + 48.1241924, + 11.4903367 + ], + [ + 48.124185, + 11.4903615 + ], + [ + 48.1241802, + 11.4903961 + ], + [ + 48.1241771, + 11.4904308 + ], + [ + 48.1241761, + 11.4904651 + ], + [ + 48.1241775, + 11.4905 + ], + [ + 48.1241949, + 11.4906371 + ], + [ + 48.1242808, + 11.4913152 + ], + [ + 48.1244175, + 11.4924034 + ], + [ + 48.1244709, + 11.4927302 + ], + [ + 48.1245862, + 11.4933586 + ], + [ + 48.1247793, + 11.4942097 + ], + [ + 48.1250862, + 11.4954596 + ], + [ + 48.1253443, + 11.4964678 + ], + [ + 48.1254935, + 11.4970203 + ], + [ + 48.1255755, + 11.4973806 + ], + [ + 48.1256141, + 11.4975677 + ], + [ + 48.1256243, + 11.4976174 + ], + [ + 48.1256346, + 11.4976694 + ], + [ + 48.1256894, + 11.4979632 + ], + [ + 48.1257089, + 11.4980655 + ], + [ + 48.1258111, + 11.4986356 + ], + [ + 48.1259515, + 11.499628 + ], + [ + 48.1260085, + 11.5002124 + ], + [ + 48.1260498, + 11.5007373 + ], + [ + 48.1260901, + 11.5014396 + ], + [ + 48.126101, + 11.5021174 + ], + [ + 48.1261058, + 11.502394 + ], + [ + 48.1261078, + 11.502513 + ], + [ + 48.1261099, + 11.5026383 + ], + [ + 48.126119, + 11.5027609 + ], + [ + 48.1261245, + 11.5028366 + ], + [ + 48.126127, + 11.5028698 + ], + [ + 48.126137, + 11.5029998 + ], + [ + 48.1261463, + 11.5031373 + ], + [ + 48.1261468, + 11.5031443 + ], + [ + 48.1261483, + 11.5031658 + ], + [ + 48.1261975, + 11.5038845 + ], + [ + 48.1262378, + 11.5044127 + ], + [ + 48.1262498, + 11.5047709 + ], + [ + 48.1262248, + 11.5051861 + ], + [ + 48.1261973, + 11.5055887 + ], + [ + 48.1260875, + 11.5065522 + ], + [ + 48.1260311, + 11.5070014 + ], + [ + 48.1258866, + 11.5080119 + ], + [ + 48.1258472, + 11.5082996 + ], + [ + 48.1258046, + 11.508604 + ], + [ + 48.1258035, + 11.5086241 + ], + [ + 48.1258011, + 11.5086802 + ], + [ + 48.125804, + 11.5087393 + ], + [ + 48.1258125, + 11.508788 + ], + [ + 48.1258146, + 11.5087999 + ], + [ + 48.1258369, + 11.5088717 + ], + [ + 48.1258577, + 11.5089195 + ], + [ + 48.1258811, + 11.5089565 + ], + [ + 48.1259322, + 11.5090164 + ], + [ + 48.1260396, + 11.5091191 + ], + [ + 48.1261163, + 11.5091963 + ], + [ + 48.1261726, + 11.5092592 + ], + [ + 48.12622, + 11.5093157 + ], + [ + 48.1262707, + 11.5093808 + ], + [ + 48.1263226, + 11.509453 + ], + [ + 48.1263753, + 11.5095323 + ], + [ + 48.1264304, + 11.5096249 + ], + [ + 48.1264808, + 11.5097122 + ], + [ + 48.1265352, + 11.5098225 + ], + [ + 48.1265825, + 11.5099257 + ], + [ + 48.1266304, + 11.5100406 + ], + [ + 48.1267231, + 11.5102726 + ], + [ + 48.1268374, + 11.510556 + ], + [ + 48.126998, + 11.5109673 + ], + [ + 48.127098, + 11.5112214 + ], + [ + 48.1272082, + 11.5115015 + ], + [ + 48.127356, + 11.5118692 + ], + [ + 48.1273946, + 11.511967 + ], + [ + 48.1274568, + 11.5121232 + ], + [ + 48.1275767, + 11.5124285 + ], + [ + 48.1276742, + 11.5126774 + ], + [ + 48.1277972, + 11.5129836 + ], + [ + 48.1279213, + 11.5132881 + ], + [ + 48.1280507, + 11.5135894 + ], + [ + 48.1281818, + 11.5138891 + ], + [ + 48.1283112, + 11.5141872 + ], + [ + 48.1285019, + 11.5145942 + ], + [ + 48.128575, + 11.5147502 + ], + [ + 48.1287025, + 11.5150318 + ], + [ + 48.1288252, + 11.5152793 + ], + [ + 48.1289529, + 11.5155278 + ], + [ + 48.1290819, + 11.515773 + ], + [ + 48.1291462, + 11.5158853 + ], + [ + 48.1293612, + 11.5162507 + ], + [ + 48.1296297, + 11.5166761 + ], + [ + 48.1296987, + 11.5167857 + ], + [ + 48.129848, + 11.5170163 + ], + [ + 48.1299588, + 11.517176 + ], + [ + 48.1301457, + 11.5174048 + ], + [ + 48.1304385, + 11.5177384 + ], + [ + 48.1314602, + 11.5188893 + ], + [ + 48.1323364, + 11.5198942 + ], + [ + 48.1327803, + 11.5204648 + ], + [ + 48.1337011, + 11.5218014 + ], + [ + 48.1339276, + 11.5221265 + ], + [ + 48.1340178, + 11.5222606 + ], + [ + 48.134056, + 11.5223099 + ], + [ + 48.1340951, + 11.5223482 + ], + [ + 48.134137, + 11.522378 + ], + [ + 48.1341551, + 11.5223849 + ], + [ + 48.1341734, + 11.5223903 + ], + [ + 48.134198, + 11.5223938 + ], + [ + 48.1342254, + 11.5223946 + ], + [ + 48.1342425, + 11.5223928 + ], + [ + 48.1342594, + 11.522389 + ], + [ + 48.1342808, + 11.5223812 + ], + [ + 48.1342997, + 11.5223705 + ], + [ + 48.1343164, + 11.5223589 + ], + [ + 48.1343331, + 11.5223459 + ], + [ + 48.1343519, + 11.5223211 + ], + [ + 48.1343793, + 11.5222922 + ], + [ + 48.1344037, + 11.5222571 + ], + [ + 48.1344681, + 11.5221573 + ], + [ + 48.1345673, + 11.5220051 + ], + [ + 48.1346193, + 11.5219231 + ], + [ + 48.134645, + 11.5218722 + ], + [ + 48.1346702, + 11.5218207 + ], + [ + 48.1346841, + 11.5217835 + ], + [ + 48.134698, + 11.5217436 + ], + [ + 48.1347129, + 11.5216875 + ], + [ + 48.1347252, + 11.5216256 + ], + [ + 48.1347334, + 11.5215566 + ], + [ + 48.1347382, + 11.5214888 + ], + [ + 48.1347469, + 11.5211868 + ], + [ + 48.1348154, + 11.5187503 + ], + [ + 48.1348368, + 11.5177563 + ], + [ + 48.1348394, + 11.51738 + ], + [ + 48.1348446, + 11.5172148 + ], + [ + 48.1348518, + 11.5170645 + ], + [ + 48.1348607, + 11.5166966 + ], + [ + 48.1349552, + 11.5141273 + ], + [ + 48.1349625, + 11.5138955 + ], + [ + 48.1349627, + 11.5138884 + ], + [ + 48.1349712, + 11.5138042 + ], + [ + 48.1349879, + 11.5137399 + ], + [ + 48.1350109, + 11.5136902 + ], + [ + 48.1350255, + 11.5136721 + ], + [ + 48.1350529, + 11.5136449 + ], + [ + 48.1350901, + 11.5136147 + ], + [ + 48.1351083, + 11.5136074 + ], + [ + 48.1351285, + 11.5136021 + ], + [ + 48.1351873, + 11.5136022 + ], + [ + 48.1359222, + 11.5136285 + ], + [ + 48.1370334, + 11.5136841 + ], + [ + 48.1374875, + 11.5137098 + ], + [ + 48.1376265, + 11.5137196 + ], + [ + 48.1376663, + 11.5137218 + ], + [ + 48.1387343, + 11.5137797 + ], + [ + 48.1387818, + 11.5137839 + ], + [ + 48.1388516, + 11.5137945 + ], + [ + 48.1388814, + 11.5138033 + ], + [ + 48.138918, + 11.5138241 + ], + [ + 48.1389486, + 11.5138521 + ] + ] + }, + { + "osmId": "79842729", + "name": null, + "lengthMeters": 551.4736665613492, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6415812, + 13.2044141 + ], + [ + 52.6417624, + 13.204335 + ], + [ + 52.6419782, + 13.2042407 + ], + [ + 52.6422541, + 13.2041568 + ], + [ + 52.6425417, + 13.2040894 + ], + [ + 52.6428533, + 13.2040409 + ], + [ + 52.6432815, + 13.2040231 + ], + [ + 52.6450351, + 13.2039502 + ], + [ + 52.6465169, + 13.2038878 + ] + ] + }, + { + "osmId": "79842740", + "name": null, + "lengthMeters": 171.83807348120138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6503959, + 13.203529 + ], + [ + 52.6503903, + 13.2035293 + ], + [ + 52.6503114, + 13.2035338 + ], + [ + 52.6493326, + 13.2035892 + ], + [ + 52.6492661, + 13.203593 + ], + [ + 52.6489737, + 13.2036099 + ], + [ + 52.6489399, + 13.2036125 + ], + [ + 52.6488515, + 13.2036192 + ] + ] + }, + { + "osmId": "79847740", + "name": "Pr\u00fcfgleis Alstom", + "lengthMeters": 320.2253747213026, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.653803, + 13.2034298 + ], + [ + 52.6523002, + 13.203503 + ], + [ + 52.651225, + 13.2035553 + ], + [ + 52.6510123, + 13.2035548 + ], + [ + 52.6509243, + 13.2035587 + ] + ] + }, + { + "osmId": "79847748", + "name": null, + "lengthMeters": 95.54099438852649, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6467147, + 13.2038792 + ], + [ + 52.6471507, + 13.2038568 + ], + [ + 52.6473426, + 13.2038527 + ], + [ + 52.6475736, + 13.2038419 + ] + ] + }, + { + "osmId": "80261795", + "name": null, + "lengthMeters": 1229.7903534762536, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3618082, + 13.4766901 + ], + [ + 52.3620818, + 13.4755527 + ], + [ + 52.3623218, + 13.4744003 + ], + [ + 52.362425, + 13.4738541 + ], + [ + 52.3624683, + 13.4736199 + ], + [ + 52.362556, + 13.4730746 + ], + [ + 52.362639, + 13.472528 + ], + [ + 52.3627787, + 13.4714724 + ], + [ + 52.3628351, + 13.4709635 + ], + [ + 52.3628917, + 13.4703877 + ], + [ + 52.3629799, + 13.4693295 + ], + [ + 52.363062, + 13.4682901 + ], + [ + 52.3631308, + 13.4675565 + ], + [ + 52.3632161, + 13.4667973 + ], + [ + 52.3633202, + 13.4660738 + ], + [ + 52.3634913, + 13.465085 + ], + [ + 52.363662, + 13.464267 + ], + [ + 52.3640284, + 13.4627573 + ], + [ + 52.3643331, + 13.461502 + ], + [ + 52.3644694, + 13.4609049 + ], + [ + 52.364535, + 13.460578 + ], + [ + 52.3645975, + 13.4602474 + ], + [ + 52.3647015, + 13.4596234 + ], + [ + 52.3647461, + 13.4592999 + ] + ] + }, + { + "osmId": "80264754", + "name": null, + "lengthMeters": 1500.4203165199185, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3547495, + 13.4281558 + ], + [ + 52.3550207, + 13.4292264 + ], + [ + 52.3553186, + 13.4302945 + ], + [ + 52.3554887, + 13.4308806 + ], + [ + 52.3556653, + 13.4314622 + ], + [ + 52.3559679, + 13.4324095 + ], + [ + 52.3560201, + 13.4325748 + ], + [ + 52.3563481, + 13.4335413 + ], + [ + 52.3566454, + 13.4343702 + ], + [ + 52.3568667, + 13.4349529 + ], + [ + 52.357088, + 13.4355287 + ], + [ + 52.3573641, + 13.4362096 + ], + [ + 52.3574169, + 13.436343 + ], + [ + 52.3577796, + 13.4371961 + ], + [ + 52.3581478, + 13.438037 + ], + [ + 52.3592195, + 13.4404555 + ], + [ + 52.3592504, + 13.4405255 + ], + [ + 52.3612737, + 13.4449933 + ], + [ + 52.3620277, + 13.4466761 + ] + ] + }, + { + "osmId": "80264755", + "name": null, + "lengthMeters": 736.3747964180332, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3623312, + 13.4476807 + ], + [ + 52.3628043, + 13.4488743 + ], + [ + 52.3631699, + 13.4498319 + ], + [ + 52.3633549, + 13.4503121 + ], + [ + 52.363534, + 13.4507795 + ], + [ + 52.3638331, + 13.4515723 + ], + [ + 52.363957, + 13.4519402 + ], + [ + 52.3640121, + 13.4521135 + ], + [ + 52.3640786, + 13.4523371 + ], + [ + 52.3641776, + 13.452679 + ], + [ + 52.3642684, + 13.4530305 + ], + [ + 52.3643506, + 13.4533819 + ], + [ + 52.3644304, + 13.4537352 + ], + [ + 52.3645037, + 13.4540939 + ], + [ + 52.3645711, + 13.4544564 + ], + [ + 52.3646279, + 13.4548102 + ], + [ + 52.3646776, + 13.4551658 + ], + [ + 52.3647227, + 13.4555082 + ], + [ + 52.3647595, + 13.4558526 + ], + [ + 52.3647971, + 13.4562664 + ], + [ + 52.3648182, + 13.4566265 + ], + [ + 52.3648441, + 13.4571247 + ], + [ + 52.3648582, + 13.45752 + ] + ] + }, + { + "osmId": "80438096", + "name": null, + "lengthMeters": 96.7155911700352, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3664074, + 13.4631962 + ], + [ + 52.3661291, + 13.4632947 + ], + [ + 52.3658682, + 13.4634167 + ], + [ + 52.3655727, + 13.4635893 + ] + ] + }, + { + "osmId": "80438098", + "name": null, + "lengthMeters": 495.93928428297664, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3630221, + 13.469625 + ], + [ + 52.3630204, + 13.4696421 + ], + [ + 52.3629567, + 13.4703717 + ], + [ + 52.362898, + 13.4709369 + ], + [ + 52.3628375, + 13.4714818 + ], + [ + 52.3627767, + 13.4719848 + ], + [ + 52.3627097, + 13.4724713 + ], + [ + 52.3626415, + 13.4729367 + ], + [ + 52.3625191, + 13.4736862 + ], + [ + 52.3624872, + 13.4738678 + ], + [ + 52.3623546, + 13.4745746 + ], + [ + 52.362156, + 13.4755356 + ], + [ + 52.3618934, + 13.4766702 + ] + ] + }, + { + "osmId": "80438100", + "name": null, + "lengthMeters": 260.43602392018795, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3699033, + 13.464969 + ], + [ + 52.3696092, + 13.4645441 + ], + [ + 52.3694084, + 13.4643057 + ], + [ + 52.3693414, + 13.4642333 + ], + [ + 52.3691809, + 13.4640599 + ], + [ + 52.3689826, + 13.4638759 + ], + [ + 52.3688239, + 13.4637465 + ], + [ + 52.368775, + 13.4637066 + ], + [ + 52.3685496, + 13.4635525 + ], + [ + 52.3684517, + 13.4634925 + ], + [ + 52.3682583, + 13.4633877 + ], + [ + 52.3681248, + 13.4633254 + ], + [ + 52.3681042, + 13.4633169 + ], + [ + 52.368026, + 13.4632848 + ], + [ + 52.3678527, + 13.4632305 + ] + ] + }, + { + "osmId": "80438101", + "name": null, + "lengthMeters": 250.22210636282801, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3637912, + 13.4659907 + ], + [ + 52.3639137, + 13.4657152 + ], + [ + 52.3640723, + 13.4654007 + ], + [ + 52.3642641, + 13.465065 + ], + [ + 52.3643638, + 13.4649084 + ], + [ + 52.3644642, + 13.4647611 + ], + [ + 52.364647, + 13.4645111 + ], + [ + 52.3648461, + 13.464281 + ], + [ + 52.3650313, + 13.4640883 + ], + [ + 52.3652551, + 13.4638873 + ], + [ + 52.3654037, + 13.4637679 + ], + [ + 52.3655123, + 13.4636948 + ] + ] + }, + { + "osmId": "80763814", + "name": null, + "lengthMeters": 233.37459586303487, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4332013, + 13.5426218 + ], + [ + 52.4331406, + 13.5426904 + ], + [ + 52.4331013, + 13.5427283 + ], + [ + 52.4330607, + 13.5427601 + ], + [ + 52.4330111, + 13.5427956 + ], + [ + 52.4329856, + 13.5428096 + ], + [ + 52.4329558, + 13.542826 + ], + [ + 52.4329107, + 13.5428441 + ], + [ + 52.4328593, + 13.5428544 + ], + [ + 52.4328006, + 13.5428631 + ], + [ + 52.4327374, + 13.5428642 + ], + [ + 52.4325702, + 13.5428372 + ], + [ + 52.4325187, + 13.5428298 + ], + [ + 52.432492, + 13.5428267 + ], + [ + 52.4324657, + 13.5428263 + ], + [ + 52.4324483, + 13.5428283 + ], + [ + 52.4324296, + 13.5428318 + ], + [ + 52.432398, + 13.5428467 + ], + [ + 52.4323664, + 13.5428695 + ], + [ + 52.4323352, + 13.5429026 + ], + [ + 52.4323131, + 13.5429392 + ], + [ + 52.4322854, + 13.542999 + ], + [ + 52.4322684, + 13.5430609 + ], + [ + 52.4322582, + 13.5431352 + ], + [ + 52.432257, + 13.5432108 + ], + [ + 52.4322631, + 13.5432694 + ], + [ + 52.4322732, + 13.5433211 + ], + [ + 52.4322882, + 13.5433689 + ], + [ + 52.4323047, + 13.5434092 + ], + [ + 52.4323264, + 13.5434498 + ], + [ + 52.4323522, + 13.5434799 + ], + [ + 52.432375, + 13.5435019 + ], + [ + 52.4323965, + 13.5435163 + ], + [ + 52.4324204, + 13.543528 + ], + [ + 52.4324514, + 13.5435395 + ], + [ + 52.4324781, + 13.5435421 + ], + [ + 52.4325052, + 13.5435394 + ], + [ + 52.432527, + 13.5435327 + ], + [ + 52.4325552, + 13.5435188 + ], + [ + 52.4325776, + 13.5435023 + ], + [ + 52.4326105, + 13.5434668 + ], + [ + 52.4326328, + 13.5434394 + ], + [ + 52.4326604, + 13.5433985 + ], + [ + 52.4328795, + 13.543102 + ], + [ + 52.4330009, + 13.5429421 + ] + ] + }, + { + "osmId": "80925202", + "name": null, + "lengthMeters": 211.77311621240227, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3678737, + 13.4632932 + ], + [ + 52.3680166, + 13.4633414 + ], + [ + 52.3682497, + 13.4634414 + ], + [ + 52.3683434, + 13.4634926 + ], + [ + 52.3684398, + 13.4635452 + ], + [ + 52.368532, + 13.4635999 + ], + [ + 52.3687595, + 13.4637565 + ], + [ + 52.3689605, + 13.4639228 + ], + [ + 52.3689662, + 13.4639275 + ], + [ + 52.3690763, + 13.4640264 + ], + [ + 52.3691719, + 13.4641154 + ], + [ + 52.3692489, + 13.464197 + ], + [ + 52.369392, + 13.4643487 + ], + [ + 52.3694717, + 13.4644436 + ], + [ + 52.3695887, + 13.4645828 + ] + ] + }, + { + "osmId": "80925211", + "name": null, + "lengthMeters": 84.13600709656862, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3676645, + 13.463176 + ], + [ + 52.3675279, + 13.4631483 + ], + [ + 52.3673274, + 13.4631179 + ], + [ + 52.36714, + 13.463111 + ], + [ + 52.3671057, + 13.46311 + ], + [ + 52.3669098, + 13.46311 + ] + ] + }, + { + "osmId": "80973442", + "name": null, + "lengthMeters": 492.3652293414064, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3619261, + 13.4766626 + ], + [ + 52.3621889, + 13.4755517 + ], + [ + 52.3622298, + 13.4753538 + ], + [ + 52.3622707, + 13.4751559 + ], + [ + 52.3622874, + 13.4750748 + ], + [ + 52.362386, + 13.4745978 + ], + [ + 52.3625211, + 13.4738812 + ], + [ + 52.3625522, + 13.4736993 + ], + [ + 52.3626765, + 13.4729616 + ], + [ + 52.3627432, + 13.4724887 + ], + [ + 52.3628085, + 13.4719933 + ], + [ + 52.3628707, + 13.4714916 + ], + [ + 52.3629308, + 13.4709488 + ], + [ + 52.3629917, + 13.4703802 + ], + [ + 52.3630518, + 13.4696806 + ], + [ + 52.3630523, + 13.4696716 + ] + ] + }, + { + "osmId": "80978328", + "name": null, + "lengthMeters": 93.28025320942442, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3656226, + 13.4636126 + ], + [ + 52.3658871, + 13.463459 + ], + [ + 52.3661436, + 13.4633468 + ], + [ + 52.36643, + 13.4632474 + ] + ] + }, + { + "osmId": "80978343", + "name": null, + "lengthMeters": 247.5962088880453, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3654564, + 13.4636663 + ], + [ + 52.3652215, + 13.4638551 + ], + [ + 52.3650206, + 13.4640375 + ], + [ + 52.3648284, + 13.4642321 + ], + [ + 52.3646266, + 13.4644712 + ], + [ + 52.364443, + 13.4647189 + ], + [ + 52.3643449, + 13.4648557 + ], + [ + 52.3642346, + 13.4650331 + ], + [ + 52.3640499, + 13.4653578 + ], + [ + 52.3638875, + 13.4656787 + ], + [ + 52.3637627, + 13.4659623 + ] + ] + }, + { + "osmId": "81283573", + "name": null, + "lengthMeters": 840.1468776947038, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4455509, + 13.5054688 + ], + [ + 52.4456587, + 13.5055999 + ], + [ + 52.4458121, + 13.5057833 + ], + [ + 52.4460986, + 13.5061081 + ], + [ + 52.4463375, + 13.5063706 + ], + [ + 52.4464566, + 13.5065002 + ], + [ + 52.446535, + 13.5065877 + ], + [ + 52.4465521, + 13.5066064 + ], + [ + 52.4466227, + 13.5066655 + ], + [ + 52.4466981, + 13.5066934 + ], + [ + 52.4470964, + 13.506827 + ], + [ + 52.4472016, + 13.5068623 + ], + [ + 52.4472308, + 13.5068717 + ], + [ + 52.4476287, + 13.5070387 + ], + [ + 52.4482015, + 13.5072313 + ], + [ + 52.4489838, + 13.5074854 + ], + [ + 52.449414, + 13.5076243 + ], + [ + 52.4502578, + 13.5079138 + ], + [ + 52.4503432, + 13.5079395 + ], + [ + 52.4504069, + 13.5079613 + ], + [ + 52.4504721, + 13.5079827 + ], + [ + 52.4515232, + 13.5083272 + ], + [ + 52.4523473, + 13.5085928 + ], + [ + 52.4524827, + 13.5086517 + ], + [ + 52.452493, + 13.5086555 + ], + [ + 52.4525237, + 13.5086701 + ], + [ + 52.4525788, + 13.5087009 + ], + [ + 52.4526335, + 13.5087336 + ], + [ + 52.4527309, + 13.5088334 + ] + ] + }, + { + "osmId": "81283597", + "name": null, + "lengthMeters": 549.049265990596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4408029, + 13.5057814 + ], + [ + 52.4413304, + 13.5060733 + ], + [ + 52.4413976, + 13.5061021 + ], + [ + 52.4414996, + 13.506129 + ], + [ + 52.4417413, + 13.5061522 + ], + [ + 52.4424638, + 13.5062351 + ], + [ + 52.44254, + 13.5062395 + ], + [ + 52.4426021, + 13.5062399 + ], + [ + 52.4426341, + 13.5062338 + ], + [ + 52.4426833, + 13.5062197 + ], + [ + 52.4427429, + 13.5062001 + ], + [ + 52.4432721, + 13.5059619 + ], + [ + 52.4442228, + 13.5055404 + ], + [ + 52.4445507, + 13.5053926 + ], + [ + 52.4450318, + 13.5051693 + ], + [ + 52.4450419, + 13.5051643 + ], + [ + 52.445097, + 13.5051344 + ], + [ + 52.4451173, + 13.5051292 + ], + [ + 52.44513, + 13.5051259 + ], + [ + 52.4451562, + 13.5051192 + ], + [ + 52.445216, + 13.5051176 + ], + [ + 52.4452512, + 13.5051393 + ], + [ + 52.4452912, + 13.5051737 + ], + [ + 52.4453493, + 13.5052397 + ], + [ + 52.4455509, + 13.5054688 + ] + ] + }, + { + "osmId": "81348973", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 134.6844705430519, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3551859, + 13.4300481 + ], + [ + 52.3550584, + 13.4295966 + ], + [ + 52.3549405, + 13.429146 + ], + [ + 52.3547057, + 13.4282277 + ] + ] + }, + { + "osmId": "81623749", + "name": null, + "lengthMeters": 173.10252037824392, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5037685, + 13.4699377 + ], + [ + 52.5031586, + 13.4696313 + ], + [ + 52.5022794, + 13.469192 + ] + ] + }, + { + "osmId": "81623751", + "name": null, + "lengthMeters": 175.5415943190719, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5037218, + 13.4701955 + ], + [ + 52.5039, + 13.4702532 + ], + [ + 52.5040628, + 13.4703034 + ], + [ + 52.5041414, + 13.4703362 + ], + [ + 52.5042244, + 13.4703709 + ], + [ + 52.5044377, + 13.4704796 + ], + [ + 52.5046617, + 13.470613 + ], + [ + 52.5048377, + 13.4707365 + ], + [ + 52.5049975, + 13.4708614 + ], + [ + 52.505205, + 13.4710417 + ] + ] + }, + { + "osmId": "82588860", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 211.76403213738553, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5234677, + 13.5375991 + ], + [ + 52.5235644, + 13.5375658 + ], + [ + 52.5237121, + 13.5375149 + ], + [ + 52.5253278, + 13.5369277 + ] + ] + }, + { + "osmId": "82588864", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 831.4808058644844, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5246028, + 13.5371231 + ], + [ + 52.5237939, + 13.537417 + ], + [ + 52.5236806, + 13.5374522 + ], + [ + 52.5235122, + 13.5375143 + ], + [ + 52.523472, + 13.5375272 + ], + [ + 52.5231721, + 13.5376232 + ], + [ + 52.5229487, + 13.5376947 + ], + [ + 52.5227307, + 13.5377605 + ], + [ + 52.522446, + 13.53784 + ], + [ + 52.5219255, + 13.5379694 + ], + [ + 52.5217945, + 13.5379994 + ], + [ + 52.5215219, + 13.5380617 + ], + [ + 52.5214896, + 13.5380691 + ], + [ + 52.5207609, + 13.538206 + ], + [ + 52.5201479, + 13.5382918 + ], + [ + 52.5195186, + 13.5383711 + ], + [ + 52.5194358, + 13.5383805 + ], + [ + 52.517722, + 13.5385742 + ], + [ + 52.5171933, + 13.5386268 + ] + ] + }, + { + "osmId": "82588867", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 698.9102079592888, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5172233, + 13.5386889 + ], + [ + 52.5190715, + 13.5384867 + ], + [ + 52.5195166, + 13.538438 + ], + [ + 52.5201535, + 13.5383562 + ], + [ + 52.5207695, + 13.5382703 + ], + [ + 52.5214957, + 13.5381338 + ], + [ + 52.5215089, + 13.5381309 + ], + [ + 52.5218639, + 13.5380519 + ], + [ + 52.5222214, + 13.5379647 + ], + [ + 52.5225798, + 13.537869 + ], + [ + 52.5229755, + 13.5377569 + ], + [ + 52.5234677, + 13.5375991 + ] + ] + }, + { + "osmId": "82588869", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 855.8239185543506, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3386868, + 13.3000374 + ], + [ + 52.3386102, + 13.2994665 + ], + [ + 52.3385828, + 13.2992937 + ], + [ + 52.3384757, + 13.2986112 + ], + [ + 52.3384327, + 13.2983691 + ], + [ + 52.3382687, + 13.297454 + ], + [ + 52.3380921, + 13.2966135 + ], + [ + 52.3378399, + 13.2954587 + ], + [ + 52.3374419, + 13.2936019 + ], + [ + 52.3369212, + 13.2912336 + ], + [ + 52.3362416, + 13.288102 + ] + ] + }, + { + "osmId": "82712850", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1860.6982861854488, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6756439, + 13.2892895 + ], + [ + 52.6757112, + 13.2900266 + ], + [ + 52.6757981, + 13.2911625 + ], + [ + 52.6758511, + 13.2923076 + ], + [ + 52.6758648, + 13.2926035 + ], + [ + 52.6758653, + 13.2926351 + ], + [ + 52.6758875, + 13.2941147 + ], + [ + 52.6758824, + 13.2948618 + ], + [ + 52.6758699, + 13.2956083 + ], + [ + 52.6758491, + 13.2960262 + ], + [ + 52.6758319, + 13.2965075 + ], + [ + 52.6758082, + 13.2969609 + ], + [ + 52.6757717, + 13.2975187 + ], + [ + 52.6757129, + 13.2982375 + ], + [ + 52.6755767, + 13.2996571 + ], + [ + 52.6754129, + 13.3008993 + ], + [ + 52.6753979, + 13.3010036 + ], + [ + 52.6753742, + 13.3011694 + ], + [ + 52.6750776, + 13.3029625 + ], + [ + 52.674656, + 13.3049522 + ], + [ + 52.674463, + 13.3057284 + ], + [ + 52.6736465, + 13.3084767 + ], + [ + 52.6728157, + 13.3114004 + ], + [ + 52.6720132, + 13.3142241 + ], + [ + 52.6716454, + 13.3155022 + ] + ] + }, + { + "osmId": "82712851", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 143.62167568602445, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6120495, + 13.4528006 + ], + [ + 52.6120174, + 13.4528451 + ], + [ + 52.6110519, + 13.4541517 + ] + ] + }, + { + "osmId": "82712854", + "name": null, + "lengthMeters": 180.8827866202887, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6135346, + 13.4508753 + ], + [ + 52.6133139, + 13.4511964 + ], + [ + 52.6130956, + 13.4515439 + ], + [ + 52.6128351, + 13.4519367 + ], + [ + 52.6128053, + 13.4519785 + ], + [ + 52.6123206, + 13.4526574 + ] + ] + }, + { + "osmId": "82712857", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 784.6071798528448, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6755029, + 13.2877387 + ], + [ + 52.6753874, + 13.2869371 + ], + [ + 52.6752531, + 13.2861159 + ], + [ + 52.6749987, + 13.2847524 + ], + [ + 52.674942, + 13.2844615 + ], + [ + 52.6746232, + 13.2828256 + ], + [ + 52.6745504, + 13.2824519 + ], + [ + 52.6742058, + 13.2806783 + ], + [ + 52.6738569, + 13.2788843 + ], + [ + 52.6736839, + 13.2779843 + ], + [ + 52.6734131, + 13.2766267 + ] + ] + }, + { + "osmId": "82712858", + "name": null, + "lengthMeters": 739.8017797626449, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6121308, + 13.4529202 + ], + [ + 52.6120816, + 13.4529888 + ], + [ + 52.6111055, + 13.4543513 + ], + [ + 52.6105229, + 13.4551629 + ], + [ + 52.6101126, + 13.4557433 + ], + [ + 52.6098367, + 13.4561613 + ], + [ + 52.6097129, + 13.4563798 + ], + [ + 52.6095978, + 13.456609 + ], + [ + 52.6094641, + 13.4569195 + ], + [ + 52.6093615, + 13.4571932 + ], + [ + 52.6092666, + 13.4574801 + ], + [ + 52.6091909, + 13.457749 + ], + [ + 52.60912, + 13.4580448 + ], + [ + 52.6090724, + 13.4582828 + ], + [ + 52.6090311, + 13.4585498 + ], + [ + 52.6089987, + 13.458779 + ], + [ + 52.6089731, + 13.4590388 + ], + [ + 52.6089567, + 13.4592357 + ], + [ + 52.6089484, + 13.4594501 + ], + [ + 52.6089425, + 13.4596749 + ], + [ + 52.6089447, + 13.4599286 + ], + [ + 52.6089531, + 13.46022 + ], + [ + 52.6089743, + 13.4605089 + ], + [ + 52.608997, + 13.4607424 + ], + [ + 52.6090248, + 13.4609628 + ], + [ + 52.6090854, + 13.4613075 + ], + [ + 52.6091682, + 13.4617032 + ] + ] + }, + { + "osmId": "82712861", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 6380.143809127502, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6541901, + 13.3884272 + ], + [ + 52.6536332, + 13.3899968 + ], + [ + 52.6532312, + 13.3909963 + ], + [ + 52.6528035, + 13.3919709 + ], + [ + 52.6522312, + 13.3931483 + ], + [ + 52.6519517, + 13.3936936 + ], + [ + 52.651648, + 13.3942487 + ], + [ + 52.6513906, + 13.3946967 + ], + [ + 52.6508088, + 13.3956638 + ], + [ + 52.6502411, + 13.3966153 + ], + [ + 52.6496219, + 13.397647 + ], + [ + 52.6480238, + 13.4003097 + ], + [ + 52.6475793, + 13.4010548 + ], + [ + 52.6470387, + 13.4019609 + ], + [ + 52.6469487, + 13.4021117 + ], + [ + 52.6469387, + 13.4021286 + ], + [ + 52.6463243, + 13.4031583 + ], + [ + 52.6443187, + 13.4065082 + ], + [ + 52.6429583, + 13.4087804 + ], + [ + 52.6415663, + 13.4111053 + ], + [ + 52.6403314, + 13.4131752 + ], + [ + 52.6385602, + 13.4160968 + ], + [ + 52.6367552, + 13.4189573 + ], + [ + 52.6353619, + 13.4210337 + ], + [ + 52.6339429, + 13.4230755 + ], + [ + 52.6326354, + 13.4248814 + ], + [ + 52.6313464, + 13.4266278 + ], + [ + 52.6296262, + 13.42896 + ], + [ + 52.6260891, + 13.4337639 + ], + [ + 52.6236153, + 13.4371234 + ], + [ + 52.6235314, + 13.4372373 + ], + [ + 52.6166823, + 13.4465211 + ], + [ + 52.6160388, + 13.4473921 + ], + [ + 52.6147657, + 13.4491192 + ], + [ + 52.6147491, + 13.4491417 + ], + [ + 52.6146227, + 13.449311 + ], + [ + 52.6132603, + 13.4511619 + ], + [ + 52.6130536, + 13.4514436 + ], + [ + 52.6122436, + 13.4525386 + ] + ] + }, + { + "osmId": "82712868", + "name": null, + "lengthMeters": 1111.0801989871422, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6758491, + 13.2960262 + ], + [ + 52.6758397, + 13.2962645 + ], + [ + 52.6758263, + 13.2965023 + ], + [ + 52.675811, + 13.2967183 + ], + [ + 52.6757927, + 13.2969376 + ], + [ + 52.6757713, + 13.2971502 + ], + [ + 52.675756, + 13.2972876 + ], + [ + 52.6757473, + 13.297366 + ], + [ + 52.6757215, + 13.2975783 + ], + [ + 52.6756921, + 13.2977905 + ], + [ + 52.6756599, + 13.2980022 + ], + [ + 52.6756242, + 13.2982134 + ], + [ + 52.6755852, + 13.2984205 + ], + [ + 52.6755431, + 13.2986249 + ], + [ + 52.6754972, + 13.2988292 + ], + [ + 52.6754486, + 13.2990337 + ], + [ + 52.6753976, + 13.2992348 + ], + [ + 52.6753426, + 13.2994343 + ], + [ + 52.6752856, + 13.2996288 + ], + [ + 52.6752242, + 13.2998243 + ], + [ + 52.6751599, + 13.3000152 + ], + [ + 52.6751142, + 13.3001455 + ], + [ + 52.6750945, + 13.3002019 + ], + [ + 52.6750433, + 13.300336 + ], + [ + 52.6750247, + 13.3003845 + ], + [ + 52.674953, + 13.3005666 + ], + [ + 52.6748785, + 13.3007446 + ], + [ + 52.6748007, + 13.3009199 + ], + [ + 52.674721, + 13.3010903 + ], + [ + 52.674638, + 13.3012604 + ], + [ + 52.6745541, + 13.3014219 + ], + [ + 52.674464, + 13.3015858 + ], + [ + 52.6743736, + 13.3017437 + ], + [ + 52.6742805, + 13.3019005 + ], + [ + 52.6741849, + 13.3020495 + ], + [ + 52.6740864, + 13.3021952 + ], + [ + 52.6740453, + 13.3022541 + ], + [ + 52.6739873, + 13.302337 + ], + [ + 52.6738833, + 13.3024773 + ], + [ + 52.6737772, + 13.3026116 + ], + [ + 52.6736716, + 13.3027408 + ], + [ + 52.6735562, + 13.302873 + ], + [ + 52.6734764, + 13.3029599 + ], + [ + 52.6734469, + 13.302992 + ], + [ + 52.673334, + 13.3031072 + ], + [ + 52.6732211, + 13.3032171 + ], + [ + 52.6731067, + 13.3033204 + ], + [ + 52.6729897, + 13.3034209 + ], + [ + 52.6728709, + 13.3035172 + ], + [ + 52.6727507, + 13.3036079 + ], + [ + 52.6726288, + 13.3036939 + ], + [ + 52.6725061, + 13.3037743 + ], + [ + 52.6723842, + 13.3038491 + ], + [ + 52.6722572, + 13.3039201 + ], + [ + 52.6721317, + 13.3039839 + ], + [ + 52.6720053, + 13.3040431 + ], + [ + 52.6718785, + 13.3040983 + ], + [ + 52.671749, + 13.3041473 + ], + [ + 52.6716193, + 13.3041898 + ], + [ + 52.671489, + 13.3042285 + ], + [ + 52.6713599, + 13.3042601 + ], + [ + 52.67123, + 13.3042869 + ], + [ + 52.6710992, + 13.3043093 + ], + [ + 52.6709681, + 13.3043257 + ], + [ + 52.6708364, + 13.3043361 + ], + [ + 52.6707035, + 13.3043415 + ], + [ + 52.6705705, + 13.3043422 + ], + [ + 52.6704379, + 13.3043357 + ], + [ + 52.6703068, + 13.3043238 + ], + [ + 52.6701755, + 13.3043063 + ], + [ + 52.6700428, + 13.3042848 + ], + [ + 52.66991, + 13.304256 + ], + [ + 52.6697544, + 13.3042159 + ], + [ + 52.6696013, + 13.3041703 + ], + [ + 52.6692947, + 13.3040742 + ], + [ + 52.6686856, + 13.3038792 + ] + ] + }, + { + "osmId": "82712869", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 125.72306733704289, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257064, + 13.536719 + ], + [ + 52.5247259, + 13.5370782 + ], + [ + 52.5246028, + 13.5371231 + ] + ] + }, + { + "osmId": "82712870", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 375.3287074966288, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.656915, + 13.3769196 + ], + [ + 52.6562495, + 13.3800422 + ], + [ + 52.6561989, + 13.3802725 + ], + [ + 52.6560671, + 13.380872 + ], + [ + 52.655784, + 13.3821624 + ] + ] + }, + { + "osmId": "82758167", + "name": null, + "lengthMeters": 399.6068738305671, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.52398, + 13.4230613 + ], + [ + 52.5238238, + 13.4235168 + ], + [ + 52.5237, + 13.423902 + ], + [ + 52.5235885, + 13.4242616 + ], + [ + 52.5232409, + 13.4254588 + ], + [ + 52.5231834, + 13.4257144 + ], + [ + 52.5231473, + 13.4259197 + ], + [ + 52.523124, + 13.4261137 + ], + [ + 52.5231086, + 13.426319 + ], + [ + 52.5231016, + 13.4264855 + ], + [ + 52.5230997, + 13.4266614 + ], + [ + 52.5231007, + 13.4267114 + ], + [ + 52.5231179, + 13.4274985 + ], + [ + 52.5231232, + 13.4277356 + ], + [ + 52.5231272, + 13.4279215 + ], + [ + 52.5231457, + 13.4286442 + ] + ] + }, + { + "osmId": "82937680", + "name": null, + "lengthMeters": 152.4167908289794, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.54905, + 13.3908647 + ], + [ + 52.5490815, + 13.3913147 + ], + [ + 52.5491216, + 13.3917564 + ], + [ + 52.5491371, + 13.3921361 + ], + [ + 52.5491764, + 13.393108 + ] + ] + }, + { + "osmId": "82937705", + "name": null, + "lengthMeters": 341.8165210162124, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494925, + 13.3962148 + ], + [ + 52.5495134, + 13.396288 + ], + [ + 52.549529, + 13.3963434 + ], + [ + 52.5495965, + 13.3965576 + ], + [ + 52.5496393, + 13.3966768 + ], + [ + 52.5496948, + 13.3968226 + ], + [ + 52.5497638, + 13.3969846 + ], + [ + 52.5498193, + 13.3971053 + ], + [ + 52.5499009, + 13.3972664 + ], + [ + 52.5499702, + 13.397396 + ], + [ + 52.5501401, + 13.3976704 + ], + [ + 52.5502676, + 13.3978445 + ], + [ + 52.5503495, + 13.3979466 + ], + [ + 52.5504228, + 13.3980331 + ], + [ + 52.5504736, + 13.398092 + ], + [ + 52.550623, + 13.3982422 + ], + [ + 52.5507607, + 13.3983612 + ], + [ + 52.5508835, + 13.3984477 + ], + [ + 52.5510568, + 13.3985708 + ], + [ + 52.5513705, + 13.3987027 + ], + [ + 52.551442, + 13.3987265 + ], + [ + 52.5516359, + 13.3987729 + ], + [ + 52.5518259, + 13.3987998 + ], + [ + 52.551938, + 13.3988042 + ] + ] + }, + { + "osmId": "83014039", + "name": null, + "lengthMeters": 158.8924764744693, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307131, + 13.4616401 + ], + [ + 52.530501, + 13.4614668 + ], + [ + 52.5302631, + 13.4612761 + ], + [ + 52.5299295, + 13.4610066 + ], + [ + 52.5298374, + 13.4609288 + ], + [ + 52.5297726, + 13.4608797 + ], + [ + 52.5297571, + 13.4608652 + ], + [ + 52.529722, + 13.4608288 + ], + [ + 52.5296871, + 13.4607897 + ], + [ + 52.5296573, + 13.4607487 + ], + [ + 52.5296249, + 13.4607004 + ], + [ + 52.5295968, + 13.4606507 + ], + [ + 52.5295822, + 13.4606162 + ], + [ + 52.529554, + 13.4605388 + ], + [ + 52.5295368, + 13.4604842 + ], + [ + 52.5295218, + 13.4604277 + ] + ] + }, + { + "osmId": "83014299", + "name": null, + "lengthMeters": 505.2382548955616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263347, + 13.5481351 + ], + [ + 52.5263695, + 13.5481868 + ], + [ + 52.5264063, + 13.548237 + ], + [ + 52.5264444, + 13.5482846 + ], + [ + 52.5264836, + 13.5483291 + ], + [ + 52.5265462, + 13.5483929 + ], + [ + 52.5266102, + 13.5484509 + ], + [ + 52.5266832, + 13.5485068 + ], + [ + 52.5267521, + 13.548549 + ], + [ + 52.5268558, + 13.5486011 + ], + [ + 52.5269622, + 13.5486363 + ], + [ + 52.5274235, + 13.5487398 + ], + [ + 52.5279932, + 13.5488655 + ], + [ + 52.5281076, + 13.5488906 + ], + [ + 52.5282128, + 13.5489137 + ], + [ + 52.5288185, + 13.5490456 + ], + [ + 52.5298722, + 13.5492785 + ], + [ + 52.5307639, + 13.5494741 + ] + ] + }, + { + "osmId": "83075968", + "name": null, + "lengthMeters": 700.3805690505604, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6476074, + 13.2038416 + ], + [ + 52.6481381, + 13.2038185 + ], + [ + 52.6492738, + 13.203768 + ], + [ + 52.6504615, + 13.2037186 + ], + [ + 52.6530255, + 13.2036119 + ], + [ + 52.653904, + 13.2035753 + ] + ] + }, + { + "osmId": "83075973", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 393.1441408375488, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6581701, + 13.1917571 + ], + [ + 52.6581411, + 13.1915866 + ], + [ + 52.6580763, + 13.1912055 + ], + [ + 52.6577517, + 13.1894342 + ], + [ + 52.6576182, + 13.1888058 + ], + [ + 52.6574316, + 13.1879271 + ], + [ + 52.6570199, + 13.1862505 + ] + ] + }, + { + "osmId": "83106263", + "name": null, + "lengthMeters": 819.8767931495083, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3663096, + 13.51831 + ], + [ + 52.3666343, + 13.5196772 + ], + [ + 52.3670144, + 13.5212711 + ], + [ + 52.3672075, + 13.522135 + ], + [ + 52.3674354, + 13.5231818 + ], + [ + 52.3674685, + 13.5233311 + ], + [ + 52.3678815, + 13.525091 + ], + [ + 52.3681612, + 13.5262584 + ], + [ + 52.36823, + 13.5265233 + ], + [ + 52.368298, + 13.5267784 + ], + [ + 52.3684363, + 13.5272548 + ], + [ + 52.3685979, + 13.527752 + ], + [ + 52.3687481, + 13.5281732 + ], + [ + 52.3689164, + 13.5285965 + ], + [ + 52.3690656, + 13.528936 + ], + [ + 52.369252, + 13.5293317 + ] + ] + }, + { + "osmId": "83146233", + "name": null, + "lengthMeters": 408.7001943812036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297343, + 13.4023341 + ], + [ + 52.5297484, + 13.402598 + ], + [ + 52.529772, + 13.4030359 + ], + [ + 52.5297814, + 13.4034261 + ], + [ + 52.5297799, + 13.4035483 + ], + [ + 52.5297714, + 13.4036783 + ], + [ + 52.5297498, + 13.4038643 + ], + [ + 52.5297201, + 13.4040477 + ], + [ + 52.5295941, + 13.404806 + ], + [ + 52.5294677, + 13.4055428 + ], + [ + 52.5294608, + 13.4055827 + ], + [ + 52.5294521, + 13.4056338 + ], + [ + 52.5292051, + 13.4070708 + ], + [ + 52.5290126, + 13.4082026 + ] + ] + }, + { + "osmId": "84124522", + "name": null, + "lengthMeters": 326.6300934542261, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3668201, + 13.1360552 + ], + [ + 52.3667391, + 13.1359281 + ], + [ + 52.3662782, + 13.1352051 + ], + [ + 52.3661724, + 13.1350444 + ], + [ + 52.3661307, + 13.13499 + ], + [ + 52.3660679, + 13.1349141 + ], + [ + 52.3660174, + 13.1348619 + ], + [ + 52.3659659, + 13.1348143 + ], + [ + 52.365928, + 13.134784 + ], + [ + 52.3658806, + 13.134751 + ], + [ + 52.3658309, + 13.1347212 + ], + [ + 52.3658061, + 13.1347081 + ], + [ + 52.3657473, + 13.134679 + ], + [ + 52.3656848, + 13.1346587 + ], + [ + 52.3656572, + 13.1346531 + ], + [ + 52.3656156, + 13.1346444 + ], + [ + 52.3655776, + 13.1346389 + ], + [ + 52.365538, + 13.1346361 + ], + [ + 52.365483, + 13.1346359 + ], + [ + 52.36539, + 13.1346481 + ], + [ + 52.3653412, + 13.13466 + ], + [ + 52.3652983, + 13.1346746 + ], + [ + 52.3652328, + 13.1347017 + ], + [ + 52.3651676, + 13.1347367 + ], + [ + 52.365066, + 13.1348107 + ], + [ + 52.3650119, + 13.1348585 + ], + [ + 52.3649859, + 13.1348818 + ], + [ + 52.3649406, + 13.1349321 + ], + [ + 52.3649107, + 13.1349687 + ], + [ + 52.3648906, + 13.1349945 + ], + [ + 52.3648335, + 13.1350747 + ], + [ + 52.3647961, + 13.1351319 + ], + [ + 52.3647176, + 13.1352634 + ], + [ + 52.3644993, + 13.1356342 + ], + [ + 52.3644324, + 13.135748 + ] + ] + }, + { + "osmId": "84222147", + "name": null, + "lengthMeters": 691.889167398941, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3603732, + 13.4921875 + ], + [ + 52.3602515, + 13.4911347 + ], + [ + 52.3601302, + 13.4896702 + ], + [ + 52.3600801, + 13.4880075 + ], + [ + 52.3601166, + 13.4864531 + ], + [ + 52.3602121, + 13.4849532 + ], + [ + 52.3604041, + 13.4833615 + ], + [ + 52.3606108, + 13.482118 + ] + ] + }, + { + "osmId": "84547061", + "name": null, + "lengthMeters": 86.33184140689099, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5092589, + 13.439028 + ], + [ + 52.5093935, + 13.4386757 + ], + [ + 52.5095205, + 13.438388 + ], + [ + 52.5096974, + 13.4379759 + ] + ] + }, + { + "osmId": "85256849", + "name": null, + "lengthMeters": 647.5881733998809, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6288692, + 10.0375178 + ], + [ + 53.628706, + 10.0370911 + ], + [ + 53.6285279, + 10.0366983 + ], + [ + 53.628251, + 10.0361786 + ], + [ + 53.6278896, + 10.0355692 + ], + [ + 53.6278197, + 10.0354598 + ], + [ + 53.6276515, + 10.0352241 + ], + [ + 53.6275209, + 10.0350466 + ], + [ + 53.6272689, + 10.0347421 + ], + [ + 53.6271911, + 10.0346548 + ], + [ + 53.6270377, + 10.0344963 + ], + [ + 53.6269898, + 10.034445 + ], + [ + 53.6265965, + 10.034063 + ], + [ + 53.6265259, + 10.0339944 + ], + [ + 53.626229, + 10.0337549 + ], + [ + 53.6257088, + 10.0333886 + ], + [ + 53.6256595, + 10.0333539 + ], + [ + 53.6254098, + 10.0332236 + ], + [ + 53.6244921, + 10.0328495 + ], + [ + 53.6243699, + 10.0327934 + ], + [ + 53.6240145, + 10.0326297 + ] + ] + }, + { + "osmId": "85256859", + "name": null, + "lengthMeters": 299.77372166453324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6234211, + 10.032288 + ], + [ + 53.623352, + 10.0322478 + ], + [ + 53.6231246, + 10.0321398 + ], + [ + 53.6228521, + 10.0320491 + ], + [ + 53.6225651, + 10.0319893 + ], + [ + 53.6221022, + 10.0319468 + ], + [ + 53.6217343, + 10.0319554 + ], + [ + 53.6216478, + 10.0319378 + ], + [ + 53.6214356, + 10.0318947 + ], + [ + 53.6209491, + 10.0317662 + ], + [ + 53.6209399, + 10.031765 + ], + [ + 53.6207564, + 10.0317181 + ] + ] + }, + { + "osmId": "85256863", + "name": null, + "lengthMeters": 153.29134220435824, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6253332, + 10.0333064 + ], + [ + 53.6250442, + 10.033167 + ], + [ + 53.6247669, + 10.0330315 + ], + [ + 53.6244849, + 10.0328812 + ], + [ + 53.6243659, + 10.0328227 + ], + [ + 53.6240145, + 10.0326297 + ] + ] + }, + { + "osmId": "85258559", + "name": null, + "lengthMeters": 665.0600023812834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6237722, + 10.0328583 + ], + [ + 53.6247395, + 10.0332507 + ], + [ + 53.625631, + 10.033593 + ], + [ + 53.6259686, + 10.0337814 + ], + [ + 53.6260413, + 10.033822 + ], + [ + 53.6262255, + 10.033934 + ], + [ + 53.6264314, + 10.0340792 + ], + [ + 53.6266285, + 10.034227 + ], + [ + 53.6267996, + 10.0343715 + ], + [ + 53.6269667, + 10.0345298 + ], + [ + 53.6270256, + 10.0345889 + ], + [ + 53.6271194, + 10.0346829 + ], + [ + 53.6272235, + 10.0347951 + ], + [ + 53.6273167, + 10.0348971 + ], + [ + 53.6274059, + 10.035005 + ], + [ + 53.6275093, + 10.0351291 + ], + [ + 53.6278042, + 10.0355346 + ], + [ + 53.6278465, + 10.0356035 + ], + [ + 53.6282294, + 10.0362282 + ], + [ + 53.6284956, + 10.0367266 + ], + [ + 53.6286736, + 10.0371318 + ], + [ + 53.6288437, + 10.0375566 + ] + ] + }, + { + "osmId": "85258722", + "name": "Berliner Stadtbahn", + "lengthMeters": 235.86160567372758, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240533, + 13.366287 + ], + [ + 52.5240959, + 13.3664102 + ], + [ + 52.5241725, + 13.3666457 + ], + [ + 52.5242683, + 13.3669616 + ], + [ + 52.5243683, + 13.367349 + ], + [ + 52.5243709, + 13.3673591 + ], + [ + 52.5243806, + 13.3673965 + ], + [ + 52.5244726, + 13.3677683 + ], + [ + 52.5245417, + 13.3681209 + ], + [ + 52.5245926, + 13.368403 + ], + [ + 52.5246361, + 13.3686743 + ], + [ + 52.524676, + 13.3689519 + ], + [ + 52.5247092, + 13.3692393 + ], + [ + 52.524742, + 13.3695626 + ] + ] + }, + { + "osmId": "85258725", + "name": "Berliner Stadtbahn", + "lengthMeters": 166.92710983707266, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5241569, + 13.3657587 + ], + [ + 52.524134, + 13.3657101 + ], + [ + 52.5241147, + 13.365667 + ], + [ + 52.5240648, + 13.3655609 + ], + [ + 52.5239776, + 13.3653872 + ], + [ + 52.5238728, + 13.3651901 + ], + [ + 52.5237727, + 13.365015 + ], + [ + 52.5235317, + 13.3646217 + ], + [ + 52.523418, + 13.3644477 + ], + [ + 52.5231339, + 13.3639568 + ] + ] + }, + { + "osmId": "85258728", + "name": "Berliner Stadtbahn", + "lengthMeters": 359.4967423534531, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253447, + 13.3705514 + ], + [ + 52.5253309, + 13.3701144 + ], + [ + 52.5253047, + 13.3695336 + ], + [ + 52.5252844, + 13.3692785 + ], + [ + 52.525275, + 13.3692007 + ], + [ + 52.5252599, + 13.369083 + ], + [ + 52.5251787, + 13.3685527 + ], + [ + 52.5251419, + 13.3683488 + ], + [ + 52.5250997, + 13.3681357 + ], + [ + 52.525087, + 13.3680713 + ], + [ + 52.5249666, + 13.3675603 + ], + [ + 52.5248402, + 13.3670951 + ], + [ + 52.5247979, + 13.3669566 + ], + [ + 52.5247542, + 13.3668151 + ], + [ + 52.5246706, + 13.3665698 + ], + [ + 52.524563, + 13.3662963 + ], + [ + 52.524495, + 13.3661363 + ], + [ + 52.5244149, + 13.3659543 + ], + [ + 52.5243498, + 13.3658137 + ], + [ + 52.524268, + 13.3656508 + ] + ] + }, + { + "osmId": "85258730", + "name": "Berliner Stadtbahn", + "lengthMeters": 428.8704915680327, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5251963, + 13.3717365 + ], + [ + 52.5251959, + 13.3715705 + ], + [ + 52.5251958, + 13.3715414 + ], + [ + 52.5251956, + 13.371319 + ], + [ + 52.525191, + 13.3710005 + ], + [ + 52.5251861, + 13.3708569 + ], + [ + 52.5251705, + 13.3703657 + ], + [ + 52.5251618, + 13.3702272 + ], + [ + 52.5251032, + 13.369404 + ], + [ + 52.5250952, + 13.3693329 + ], + [ + 52.5250563, + 13.368992 + ], + [ + 52.525, + 13.3686001 + ], + [ + 52.5249302, + 13.3682106 + ], + [ + 52.5247788, + 13.3675758 + ], + [ + 52.5247541, + 13.3674874 + ], + [ + 52.5246712, + 13.3671909 + ], + [ + 52.5246543, + 13.3671353 + ], + [ + 52.5245387, + 13.3667553 + ], + [ + 52.5244636, + 13.3665301 + ], + [ + 52.5244117, + 13.3663825 + ], + [ + 52.5244081, + 13.3663712 + ], + [ + 52.5243946, + 13.366332 + ], + [ + 52.5242961, + 13.3660786 + ], + [ + 52.5242477, + 13.3659612 + ], + [ + 52.5241569, + 13.3657587 + ] + ] + }, + { + "osmId": "85258731", + "name": "Berliner Stadtbahn", + "lengthMeters": 153.8081010410667, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5248876, + 13.3717857 + ], + [ + 52.5248878, + 13.3718359 + ], + [ + 52.5248887, + 13.3720792 + ], + [ + 52.5248872, + 13.3724055 + ], + [ + 52.5248809, + 13.3725945 + ], + [ + 52.5248731, + 13.3727505 + ], + [ + 52.5248441, + 13.3730693 + ], + [ + 52.5248112, + 13.3733236 + ], + [ + 52.5247557, + 13.3736414 + ], + [ + 52.5246698, + 13.3740102 + ] + ] + }, + { + "osmId": "85258732", + "name": "Berliner Stadtbahn", + "lengthMeters": 231.22092283040584, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5252174, + 13.3706985 + ], + [ + 52.5252276, + 13.3709215 + ], + [ + 52.525243, + 13.3712986 + ], + [ + 52.5252468, + 13.3715314 + ], + [ + 52.5252488, + 13.3717251 + ], + [ + 52.5252479, + 13.3718978 + ], + [ + 52.5252453, + 13.372034 + ], + [ + 52.5252394, + 13.3721705 + ], + [ + 52.5252294, + 13.3723319 + ], + [ + 52.5252178, + 13.372468 + ], + [ + 52.5252012, + 13.3726339 + ], + [ + 52.525181, + 13.3728034 + ], + [ + 52.5251525, + 13.3729864 + ], + [ + 52.525118, + 13.3731725 + ], + [ + 52.525082, + 13.3733572 + ], + [ + 52.5250403, + 13.3735245 + ], + [ + 52.5249931, + 13.3737094 + ], + [ + 52.5248995, + 13.3740177 + ] + ] + }, + { + "osmId": "85512660", + "name": null, + "lengthMeters": 1286.372426014353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6072158, + 10.03272 + ], + [ + 53.6077175, + 10.0325747 + ], + [ + 53.6084694, + 10.0324352 + ], + [ + 53.6092044, + 10.0322193 + ], + [ + 53.6099567, + 10.0319765 + ], + [ + 53.6108167, + 10.0317244 + ], + [ + 53.6108399, + 10.0317178 + ], + [ + 53.6115872, + 10.0315064 + ], + [ + 53.61192, + 10.0314123 + ], + [ + 53.6132114, + 10.0309644 + ], + [ + 53.6134393, + 10.0308854 + ], + [ + 53.6137811, + 10.0307238 + ], + [ + 53.6144709, + 10.0303893 + ], + [ + 53.614826, + 10.0302685 + ], + [ + 53.6151444, + 10.0302038 + ], + [ + 53.6155779, + 10.0301785 + ], + [ + 53.6160197, + 10.0302179 + ], + [ + 53.6165649, + 10.0303505 + ], + [ + 53.6166782, + 10.0303781 + ], + [ + 53.61712, + 10.0305214 + ], + [ + 53.6175601, + 10.0306929 + ], + [ + 53.6177235, + 10.0307597 + ], + [ + 53.6178526, + 10.0308125 + ], + [ + 53.6185111, + 10.0310804 + ], + [ + 53.6185586, + 10.0310991 + ], + [ + 53.6185803, + 10.031108 + ] + ] + }, + { + "osmId": "85512661", + "name": null, + "lengthMeters": 552.0945013154499, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6044908, + 10.0334282 + ], + [ + 53.6028267, + 10.0338957 + ], + [ + 53.6007693, + 10.0344643 + ], + [ + 53.6002678, + 10.0346145 + ], + [ + 53.5995938, + 10.0348089 + ] + ] + }, + { + "osmId": "85512665", + "name": null, + "lengthMeters": 289.3101138970005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6070578, + 10.0327141 + ], + [ + 53.6064929, + 10.0328594 + ], + [ + 53.6060097, + 10.0329901 + ], + [ + 53.6058439, + 10.0330377 + ], + [ + 53.6051311, + 10.0332377 + ], + [ + 53.605101, + 10.0332457 + ], + [ + 53.6044908, + 10.0334282 + ] + ] + }, + { + "osmId": "85514437", + "name": null, + "lengthMeters": 192.44493780798075, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5995938, + 10.0348089 + ], + [ + 53.5989338, + 10.0350089 + ], + [ + 53.5981852, + 10.0352329 + ], + [ + 53.5978905, + 10.0353257 + ] + ] + }, + { + "osmId": "85514440", + "name": null, + "lengthMeters": 92.78224505943936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5931185, + 10.0369012 + ], + [ + 53.5931624, + 10.0368962 + ], + [ + 53.5933266, + 10.0368747 + ], + [ + 53.5934744, + 10.0368459 + ], + [ + 53.5936086, + 10.0368066 + ], + [ + 53.5937565, + 10.0367631 + ], + [ + 53.5939429, + 10.0366962 + ] + ] + }, + { + "osmId": "85514444", + "name": null, + "lengthMeters": 581.5789669253655, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5994353, + 10.0349648 + ], + [ + 53.5997169, + 10.034857 + ], + [ + 53.6007664, + 10.0345301 + ], + [ + 53.6008607, + 10.0345023 + ], + [ + 53.6009334, + 10.0344808 + ], + [ + 53.6012901, + 10.0343824 + ], + [ + 53.6030096, + 10.0339076 + ], + [ + 53.6041324, + 10.0335976 + ], + [ + 53.6043823, + 10.0335218 + ], + [ + 53.6045906, + 10.0334908 + ] + ] + }, + { + "osmId": "85514445", + "name": null, + "lengthMeters": 81.78237887943294, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5963494, + 10.0358716 + ], + [ + 53.5965286, + 10.0358215 + ], + [ + 53.5967075, + 10.0357795 + ], + [ + 53.5970773, + 10.0356947 + ] + ] + }, + { + "osmId": "85520956", + "name": null, + "lengthMeters": 192.01186644138423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6088623, + 10.0195246 + ], + [ + 53.6086694, + 10.0190689 + ], + [ + 53.6083713, + 10.0183113 + ], + [ + 53.608167, + 10.0177932 + ], + [ + 53.6079376, + 10.0170706 + ] + ] + }, + { + "osmId": "86142073", + "name": null, + "lengthMeters": 120.29595455762367, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5545333, + 13.4010887 + ], + [ + 52.5545665, + 13.40056 + ], + [ + 52.5546157, + 13.3997731 + ], + [ + 52.5546172, + 13.3995692 + ], + [ + 52.5546227, + 13.3993165 + ] + ] + }, + { + "osmId": "86182300", + "name": null, + "lengthMeters": 578.3292853940621, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5478853, + 13.4135629 + ], + [ + 52.5486098, + 13.41369 + ], + [ + 52.5495502, + 13.4138505 + ], + [ + 52.5496784, + 13.4138708 + ], + [ + 52.550097, + 13.4139444 + ], + [ + 52.5504995, + 13.4140133 + ], + [ + 52.5505647, + 13.4140246 + ], + [ + 52.5507148, + 13.4140507 + ], + [ + 52.5507779, + 13.4140618 + ], + [ + 52.5508697, + 13.4140773 + ], + [ + 52.5513482, + 13.4141626 + ], + [ + 52.5521855, + 13.4143069 + ], + [ + 52.553056, + 13.4144835 + ] + ] + }, + { + "osmId": "86182304", + "name": null, + "lengthMeters": 675.061039195031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5479031, + 13.4133325 + ], + [ + 52.54776, + 13.4133041 + ], + [ + 52.5476656, + 13.4132834 + ], + [ + 52.5475573, + 13.4132559 + ], + [ + 52.5470257, + 13.4131187 + ], + [ + 52.5468098, + 13.4130624 + ], + [ + 52.5466179, + 13.4130096 + ], + [ + 52.5454613, + 13.4126914 + ], + [ + 52.5453431, + 13.4126615 + ], + [ + 52.5453089, + 13.4126538 + ], + [ + 52.5449538, + 13.4125522 + ], + [ + 52.5444438, + 13.4124209 + ], + [ + 52.5444086, + 13.4124122 + ], + [ + 52.5438004, + 13.4122621 + ], + [ + 52.5436861, + 13.4122435 + ], + [ + 52.5432428, + 13.412193 + ], + [ + 52.5431442, + 13.4121818 + ], + [ + 52.5427908, + 13.412153 + ], + [ + 52.5424874, + 13.4121282 + ], + [ + 52.5420454, + 13.4120867 + ], + [ + 52.5418874, + 13.4120703 + ] + ] + }, + { + "osmId": "86206018", + "name": null, + "lengthMeters": 100.66943397756611, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5393282, + 13.4243297 + ], + [ + 52.5394413, + 13.4243965 + ], + [ + 52.5394864, + 13.4244231 + ], + [ + 52.5401807, + 13.4248308 + ] + ] + }, + { + "osmId": "86206842", + "name": null, + "lengthMeters": 96.92192812201282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5585796, + 13.4333751 + ], + [ + 52.5586566, + 13.433406 + ], + [ + 52.5587014, + 13.4334246 + ], + [ + 52.559295, + 13.4336731 + ], + [ + 52.5594264, + 13.4337133 + ] + ] + }, + { + "osmId": "86208412", + "name": null, + "lengthMeters": 208.16234684249866, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5261826, + 13.4147763 + ], + [ + 52.5266906, + 13.4153746 + ], + [ + 52.5267164, + 13.4154041 + ], + [ + 52.5268385, + 13.4155435 + ], + [ + 52.5268838, + 13.4155979 + ], + [ + 52.5269079, + 13.4156258 + ], + [ + 52.5269937, + 13.4157166 + ], + [ + 52.5270171, + 13.4157413 + ], + [ + 52.5271027, + 13.4158318 + ], + [ + 52.5272584, + 13.4159982 + ], + [ + 52.5272767, + 13.4160214 + ], + [ + 52.5272946, + 13.4160368 + ], + [ + 52.5277559, + 13.416434 + ] + ] + }, + { + "osmId": "86208420", + "name": null, + "lengthMeters": 300.58689861368384, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5326588, + 13.4289202 + ], + [ + 52.5328496, + 13.4291426 + ], + [ + 52.5329032, + 13.4291933 + ], + [ + 52.5329871, + 13.4292662 + ], + [ + 52.5330862, + 13.4293525 + ], + [ + 52.5331788, + 13.429436 + ], + [ + 52.53322, + 13.4294739 + ], + [ + 52.533339, + 13.4296116 + ], + [ + 52.5334464, + 13.4297419 + ], + [ + 52.5335385, + 13.4298336 + ], + [ + 52.5337383, + 13.4300773 + ], + [ + 52.534072, + 13.430463 + ], + [ + 52.5343754, + 13.4308177 + ], + [ + 52.5348907, + 13.4314191 + ] + ] + }, + { + "osmId": "86260987", + "name": null, + "lengthMeters": 272.8751382290442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310203, + 13.442715 + ], + [ + 52.5318493, + 13.4418221 + ], + [ + 52.5319987, + 13.441664 + ], + [ + 52.5320514, + 13.441599 + ], + [ + 52.5320674, + 13.4415773 + ], + [ + 52.5321154, + 13.4415202 + ], + [ + 52.5321655, + 13.4414447 + ], + [ + 52.5322115, + 13.44137 + ], + [ + 52.5323462, + 13.4411012 + ], + [ + 52.532541, + 13.4407002 + ], + [ + 52.5328403, + 13.4400776 + ] + ] + }, + { + "osmId": "86301472", + "name": null, + "lengthMeters": 773.7261986182672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443378, + 13.4686393 + ], + [ + 52.544219, + 13.4686831 + ], + [ + 52.5440129, + 13.4687592 + ], + [ + 52.5436695, + 13.4688868 + ], + [ + 52.5433421, + 13.4690082 + ], + [ + 52.5425949, + 13.4692852 + ], + [ + 52.5421156, + 13.469461 + ], + [ + 52.5414939, + 13.4696934 + ], + [ + 52.5403758, + 13.4701049 + ], + [ + 52.5402935, + 13.4701321 + ], + [ + 52.5402144, + 13.4701664 + ], + [ + 52.5401347, + 13.4702111 + ], + [ + 52.5400572, + 13.4702645 + ], + [ + 52.5399635, + 13.4703301 + ], + [ + 52.5390615, + 13.4709515 + ], + [ + 52.5387696, + 13.4711545 + ], + [ + 52.5385452, + 13.471311 + ], + [ + 52.5383802, + 13.4714237 + ], + [ + 52.5382447, + 13.4715198 + ], + [ + 52.5379811, + 13.4717045 + ], + [ + 52.5377985, + 13.4718477 + ], + [ + 52.5377038, + 13.4719319 + ] + ] + }, + { + "osmId": "86301640", + "name": null, + "lengthMeters": 165.09476785881697, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5526935, + 13.4667727 + ], + [ + 52.5526035, + 13.466669 + ], + [ + 52.552531, + 13.4665779 + ], + [ + 52.5523875, + 13.466374 + ], + [ + 52.5522463, + 13.4661144 + ], + [ + 52.5521763, + 13.4659619 + ], + [ + 52.5521002, + 13.4657993 + ], + [ + 52.5520619, + 13.4657093 + ], + [ + 52.552031, + 13.4656307 + ], + [ + 52.5520017, + 13.4655519 + ], + [ + 52.5519625, + 13.4654389 + ], + [ + 52.5519487, + 13.4653988 + ], + [ + 52.5519073, + 13.4652835 + ], + [ + 52.5518644, + 13.4651682 + ], + [ + 52.5518214, + 13.465067 + ], + [ + 52.5517521, + 13.4649149 + ] + ] + }, + { + "osmId": "86367945", + "name": null, + "lengthMeters": 800.531081798501, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5974938, + 13.4332742 + ], + [ + 52.5972349, + 13.433187 + ], + [ + 52.5968842, + 13.4330641 + ], + [ + 52.5966486, + 13.4329828 + ], + [ + 52.5963302, + 13.4328707 + ], + [ + 52.5962568, + 13.4328469 + ], + [ + 52.5961653, + 13.4328173 + ], + [ + 52.5958346, + 13.432704 + ], + [ + 52.59576, + 13.4326786 + ], + [ + 52.5951126, + 13.4324573 + ], + [ + 52.5949082, + 13.4323888 + ], + [ + 52.5945655, + 13.4322734 + ], + [ + 52.594163, + 13.4321387 + ], + [ + 52.594112, + 13.4321214 + ], + [ + 52.5940598, + 13.432099 + ], + [ + 52.5939543, + 13.4320414 + ], + [ + 52.5938828, + 13.4319905 + ], + [ + 52.5937803, + 13.4319183 + ], + [ + 52.5937096, + 13.4318695 + ], + [ + 52.5936068, + 13.4318155 + ], + [ + 52.5933531, + 13.4317325 + ], + [ + 52.5929196, + 13.4315816 + ], + [ + 52.5927825, + 13.4315354 + ], + [ + 52.5927031, + 13.4315086 + ], + [ + 52.5922981, + 13.4313671 + ], + [ + 52.5921719, + 13.4313234 + ], + [ + 52.5919868, + 13.4312591 + ], + [ + 52.5919542, + 13.4312484 + ], + [ + 52.5917296, + 13.4311686 + ], + [ + 52.5914152, + 13.4310617 + ], + [ + 52.5912606, + 13.4310077 + ], + [ + 52.5909507, + 13.4309008 + ], + [ + 52.5904683, + 13.4307326 + ] + ] + }, + { + "osmId": "86367949", + "name": null, + "lengthMeters": 551.2546254006651, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6021996, + 13.4312319 + ], + [ + 52.6021463, + 13.4312474 + ], + [ + 52.6020752, + 13.4312759 + ], + [ + 52.6020216, + 13.4313058 + ], + [ + 52.6017309, + 13.4314825 + ], + [ + 52.6016614, + 13.4315225 + ], + [ + 52.6014609, + 13.4316453 + ], + [ + 52.6013042, + 13.4317451 + ], + [ + 52.6009048, + 13.4319874 + ], + [ + 52.6004577, + 13.4322625 + ], + [ + 52.600082, + 13.4324935 + ], + [ + 52.5993501, + 13.4329422 + ], + [ + 52.5992461, + 13.4330062 + ], + [ + 52.5991592, + 13.4330573 + ], + [ + 52.5986325, + 13.4333821 + ], + [ + 52.5985708, + 13.4334143 + ], + [ + 52.5985111, + 13.4334376 + ], + [ + 52.598433, + 13.433463 + ], + [ + 52.5983007, + 13.4334839 + ], + [ + 52.5981896, + 13.4334811 + ], + [ + 52.5980795, + 13.4334661 + ], + [ + 52.5979186, + 13.4334224 + ], + [ + 52.5977609, + 13.4333676 + ], + [ + 52.5974938, + 13.4332742 + ] + ] + }, + { + "osmId": "86381455", + "name": null, + "lengthMeters": 459.51840854023845, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537247, + 13.5107055 + ], + [ + 52.5541542, + 13.5112053 + ], + [ + 52.5546883, + 13.5118213 + ], + [ + 52.5547632, + 13.5119141 + ], + [ + 52.5551935, + 13.5124151 + ], + [ + 52.5552868, + 13.5125313 + ], + [ + 52.5553467, + 13.512606 + ], + [ + 52.5562132, + 13.5135836 + ], + [ + 52.5567205, + 13.5141797 + ], + [ + 52.5570995, + 13.5146276 + ] + ] + }, + { + "osmId": "86400060", + "name": null, + "lengthMeters": 206.7830592650891, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354361, + 13.5148756 + ], + [ + 52.5354324, + 13.515132 + ], + [ + 52.5354426, + 13.5154542 + ], + [ + 52.5354619, + 13.515783 + ], + [ + 52.5354909, + 13.5161014 + ], + [ + 52.5355777, + 13.5168289 + ], + [ + 52.5355884, + 13.5169232 + ], + [ + 52.5356011, + 13.5170365 + ], + [ + 52.5356195, + 13.5171991 + ], + [ + 52.5356242, + 13.5172413 + ], + [ + 52.535639, + 13.5173731 + ], + [ + 52.5356472, + 13.5174458 + ], + [ + 52.5356622, + 13.5176527 + ], + [ + 52.5356676, + 13.5177286 + ], + [ + 52.5356715, + 13.5177853 + ], + [ + 52.5356831, + 13.517899 + ] + ] + }, + { + "osmId": "86403427", + "name": null, + "lengthMeters": 320.60824654363375, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5553279, + 13.4146608 + ], + [ + 52.5565764, + 13.4144683 + ], + [ + 52.5569702, + 13.4144072 + ], + [ + 52.5571416, + 13.4143527 + ], + [ + 52.5573088, + 13.4142878 + ], + [ + 52.5576114, + 13.4140986 + ], + [ + 52.5576419, + 13.4140773 + ], + [ + 52.5576996, + 13.4140372 + ], + [ + 52.5577856, + 13.4139739 + ], + [ + 52.5578563, + 13.4139249 + ], + [ + 52.5581305, + 13.4137373 + ] + ] + }, + { + "osmId": "86434058", + "name": null, + "lengthMeters": 293.45101835889534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5571964, + 9.9357431 + ], + [ + 53.5579953, + 9.9357638 + ], + [ + 53.5580696, + 9.9357623 + ], + [ + 53.5582908, + 9.9357434 + ], + [ + 53.5587555, + 9.9356895 + ], + [ + 53.559041, + 9.9356632 + ], + [ + 53.5591871, + 9.9356577 + ], + [ + 53.5596616, + 9.9356634 + ], + [ + 53.5598335, + 9.9356659 + ] + ] + }, + { + "osmId": "86553115", + "name": null, + "lengthMeters": 1004.1290680744445, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538647, + 13.4808097 + ], + [ + 52.5541337, + 13.4814824 + ], + [ + 52.5546748, + 13.4830192 + ], + [ + 52.5547228, + 13.4831529 + ], + [ + 52.5547808, + 13.4833192 + ], + [ + 52.5548516, + 13.4835151 + ], + [ + 52.5549571, + 13.4838117 + ], + [ + 52.5550666, + 13.4841138 + ], + [ + 52.555149, + 13.4843295 + ], + [ + 52.555229, + 13.4845179 + ], + [ + 52.5552914, + 13.4846615 + ], + [ + 52.5553713, + 13.4848372 + ], + [ + 52.5554786, + 13.4850389 + ], + [ + 52.5556009, + 13.4852639 + ], + [ + 52.5557333, + 13.4854807 + ], + [ + 52.556013, + 13.4859345 + ], + [ + 52.5563118, + 13.4864124 + ], + [ + 52.5564499, + 13.4866357 + ], + [ + 52.5565196, + 13.4867582 + ], + [ + 52.5565856, + 13.4868804 + ], + [ + 52.5569615, + 13.4876061 + ], + [ + 52.5570217, + 13.4877313 + ], + [ + 52.557049, + 13.4877892 + ], + [ + 52.557089, + 13.4878808 + ], + [ + 52.5571433, + 13.4880063 + ], + [ + 52.5572245, + 13.4882133 + ], + [ + 52.5572992, + 13.4884242 + ], + [ + 52.5574509, + 13.4888517 + ], + [ + 52.5578101, + 13.4898499 + ], + [ + 52.5578719, + 13.4900215 + ], + [ + 52.5579389, + 13.4902059 + ], + [ + 52.5581271, + 13.4907236 + ], + [ + 52.5588579, + 13.4927392 + ], + [ + 52.5589511, + 13.4929971 + ] + ] + }, + { + "osmId": "86553116", + "name": null, + "lengthMeters": 1389.2425257279745, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5528285, + 13.4827888 + ], + [ + 52.5524477, + 13.4849871 + ], + [ + 52.5524085, + 13.485174 + ], + [ + 52.5523703, + 13.4853809 + ], + [ + 52.5522928, + 13.4858218 + ], + [ + 52.5521822, + 13.48645 + ], + [ + 52.5521478, + 13.4866458 + ], + [ + 52.5521166, + 13.4868431 + ], + [ + 52.5518081, + 13.4887799 + ], + [ + 52.5517329, + 13.4892271 + ], + [ + 52.5515584, + 13.4902563 + ], + [ + 52.5513734, + 13.4911449 + ], + [ + 52.551226, + 13.4918151 + ], + [ + 52.5507892, + 13.4937801 + ], + [ + 52.5507552, + 13.4939336 + ], + [ + 52.5504733, + 13.4951841 + ], + [ + 52.5504475, + 13.4953042 + ], + [ + 52.5503329, + 13.4958156 + ], + [ + 52.5500532, + 13.4970801 + ], + [ + 52.5500216, + 13.4972048 + ], + [ + 52.5499848, + 13.4973502 + ], + [ + 52.5499348, + 13.497548 + ], + [ + 52.5499051, + 13.4976768 + ], + [ + 52.5497835, + 13.4982024 + ], + [ + 52.5497277, + 13.4984408 + ], + [ + 52.5497089, + 13.4985168 + ], + [ + 52.5490819, + 13.5012758 + ], + [ + 52.5490508, + 13.5014097 + ], + [ + 52.5490298, + 13.5015051 + ], + [ + 52.5490031, + 13.5016299 + ], + [ + 52.54899, + 13.5016913 + ], + [ + 52.5489709, + 13.5017975 + ], + [ + 52.5489544, + 13.5019044 + ], + [ + 52.5489455, + 13.5019851 + ], + [ + 52.5489437, + 13.5020016 + ], + [ + 52.5489368, + 13.5021206 + ], + [ + 52.5489254, + 13.5022812 + ] + ] + }, + { + "osmId": "86565197", + "name": null, + "lengthMeters": 708.381385384327, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4644324, + 13.5136575 + ], + [ + 52.4645285, + 13.5136461 + ], + [ + 52.4645661, + 13.5136417 + ], + [ + 52.464749, + 13.5136253 + ], + [ + 52.4647774, + 13.5136213 + ], + [ + 52.464821, + 13.5136137 + ], + [ + 52.4649144, + 13.5135977 + ], + [ + 52.4669353, + 13.5131561 + ], + [ + 52.4670178, + 13.5131443 + ], + [ + 52.4670923, + 13.5131472 + ], + [ + 52.467191, + 13.5131528 + ], + [ + 52.467284, + 13.5131728 + ], + [ + 52.4674039, + 13.5132221 + ], + [ + 52.4676218, + 13.5133155 + ], + [ + 52.4676889, + 13.5133542 + ], + [ + 52.4677214, + 13.5133745 + ], + [ + 52.4678352, + 13.5134638 + ], + [ + 52.4682283, + 13.5138328 + ], + [ + 52.4684298, + 13.514022 + ], + [ + 52.4685325, + 13.5141577 + ], + [ + 52.4686223, + 13.514303 + ], + [ + 52.4686527, + 13.514362 + ], + [ + 52.4686968, + 13.5144476 + ], + [ + 52.4688057, + 13.5146585 + ], + [ + 52.4688385, + 13.5147133 + ], + [ + 52.4688683, + 13.514763 + ], + [ + 52.4689365, + 13.5148681 + ], + [ + 52.4690509, + 13.5150134 + ], + [ + 52.4691455, + 13.5151183 + ], + [ + 52.4694596, + 13.5154576 + ], + [ + 52.4701906, + 13.5162421 + ] + ] + }, + { + "osmId": "86565203", + "name": null, + "lengthMeters": 464.8106749381602, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4701906, + 13.5162421 + ], + [ + 52.4707218, + 13.5168056 + ], + [ + 52.4707926, + 13.5168846 + ], + [ + 52.4711791, + 13.5172971 + ], + [ + 52.4713045, + 13.5174308 + ], + [ + 52.4713694, + 13.5175021 + ], + [ + 52.4718601, + 13.5180188 + ], + [ + 52.4720725, + 13.5182254 + ], + [ + 52.4724643, + 13.5186089 + ], + [ + 52.4728726, + 13.5190349 + ], + [ + 52.4733191, + 13.5195009 + ], + [ + 52.4737181, + 13.5199227 + ] + ] + }, + { + "osmId": "86577240", + "name": null, + "lengthMeters": 278.64293621253637, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4843322, + 13.5061813 + ], + [ + 52.4843303, + 13.5064293 + ], + [ + 52.4843099, + 13.5071585 + ], + [ + 52.4842842, + 13.5082477 + ], + [ + 52.4842668, + 13.5094916 + ], + [ + 52.4842651, + 13.5095785 + ], + [ + 52.4842499, + 13.5102938 + ] + ] + }, + { + "osmId": "86585336", + "name": null, + "lengthMeters": 186.12486999260844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6758436, + 10.0146087 + ], + [ + 53.6752172, + 10.0156623 + ], + [ + 53.6749454, + 10.0161185 + ], + [ + 53.6748632, + 10.0162501 + ], + [ + 53.674648, + 10.0165859 + ] + ] + }, + { + "osmId": "86585338", + "name": null, + "lengthMeters": 605.0956069876866, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6693776, + 10.0195579 + ], + [ + 53.6698389, + 10.0193702 + ], + [ + 53.6704943, + 10.0190815 + ], + [ + 53.6726596, + 10.0181277 + ], + [ + 53.6735249, + 10.017718 + ], + [ + 53.6738486, + 10.0174997 + ], + [ + 53.674057, + 10.0173311 + ], + [ + 53.6742143, + 10.0171872 + ], + [ + 53.6745522, + 10.0168425 + ] + ] + }, + { + "osmId": "86585340", + "name": null, + "lengthMeters": 422.07009143860455, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6746908, + 10.0166799 + ], + [ + 53.6748435, + 10.0164898 + ], + [ + 53.6749766, + 10.0162978 + ], + [ + 53.6751058, + 10.0161008 + ], + [ + 53.6751996, + 10.015943 + ], + [ + 53.6753481, + 10.0156746 + ], + [ + 53.6757488, + 10.0148775 + ], + [ + 53.6766298, + 10.0131038 + ], + [ + 53.6768138, + 10.0127156 + ], + [ + 53.676945, + 10.0124152 + ], + [ + 53.6770408, + 10.0121704 + ], + [ + 53.6771558, + 10.0118398 + ] + ] + }, + { + "osmId": "86614777", + "name": null, + "lengthMeters": 961.5139118625214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4407674, + 13.5563067 + ], + [ + 52.4418687, + 13.5594516 + ], + [ + 52.4419143, + 13.5595829 + ], + [ + 52.4420043, + 13.5597593 + ], + [ + 52.4420862, + 13.5598723 + ], + [ + 52.4421726, + 13.559947 + ], + [ + 52.4422381, + 13.5599941 + ], + [ + 52.4423561, + 13.5600495 + ], + [ + 52.4424371, + 13.5600718 + ], + [ + 52.4428029, + 13.5601701 + ], + [ + 52.442906, + 13.5601995 + ], + [ + 52.4430953, + 13.5602866 + ], + [ + 52.4432392, + 13.560393 + ], + [ + 52.4435516, + 13.5606442 + ], + [ + 52.4451807, + 13.5619731 + ], + [ + 52.4452309, + 13.5620135 + ], + [ + 52.4452827, + 13.5620557 + ], + [ + 52.4457149, + 13.5624076 + ], + [ + 52.4457764, + 13.5624674 + ], + [ + 52.4457878, + 13.5624821 + ], + [ + 52.4458299, + 13.5625594 + ], + [ + 52.445849, + 13.5626034 + ], + [ + 52.4458657, + 13.5626588 + ], + [ + 52.4458735, + 13.5626955 + ], + [ + 52.4458789, + 13.5627251 + ], + [ + 52.4458842, + 13.562767 + ], + [ + 52.445884, + 13.5627977 + ], + [ + 52.4458838, + 13.5628431 + ], + [ + 52.4458803, + 13.5629183 + ], + [ + 52.4458605, + 13.5630259 + ], + [ + 52.4454735, + 13.5648923 + ], + [ + 52.4454546, + 13.564983 + ], + [ + 52.4454347, + 13.5650777 + ], + [ + 52.4453175, + 13.5656348 + ] + ] + }, + { + "osmId": "86614778", + "name": null, + "lengthMeters": 612.3303882072271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.440887, + 13.5562387 + ], + [ + 52.4406038, + 13.5554282 + ], + [ + 52.4405272, + 13.5552603 + ], + [ + 52.4404497, + 13.5551037 + ], + [ + 52.4403864, + 13.5549504 + ], + [ + 52.4395698, + 13.5526003 + ], + [ + 52.4394264, + 13.5521935 + ], + [ + 52.4392942, + 13.5518172 + ], + [ + 52.4382837, + 13.5491067 + ], + [ + 52.4382203, + 13.5489367 + ], + [ + 52.438108, + 13.5486332 + ], + [ + 52.4380741, + 13.548563 + ], + [ + 52.438042, + 13.5485134 + ] + ] + }, + { + "osmId": "86882217", + "name": null, + "lengthMeters": 230.3760089581653, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6488515, + 13.2036192 + ], + [ + 52.6481774, + 13.2036571 + ], + [ + 52.6475146, + 13.2036779 + ], + [ + 52.6474763, + 13.2036807 + ], + [ + 52.6473375, + 13.203691 + ], + [ + 52.6470522, + 13.2036707 + ], + [ + 52.646781, + 13.2036475 + ] + ] + }, + { + "osmId": "86922980", + "name": null, + "lengthMeters": 414.71708684568284, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6616031, + 10.0179603 + ], + [ + 53.6625384, + 10.018414 + ], + [ + 53.6629669, + 10.0186257 + ], + [ + 53.664113, + 10.0191919 + ], + [ + 53.6642245, + 10.0192472 + ], + [ + 53.6651835, + 10.019723 + ] + ] + }, + { + "osmId": "86922995", + "name": null, + "lengthMeters": 298.083374661446, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6543136, + 10.0166585 + ], + [ + 53.6565526, + 10.0163729 + ], + [ + 53.6569867, + 10.0163175 + ] + ] + }, + { + "osmId": "86922997", + "name": null, + "lengthMeters": 243.42536556809773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.659237, + 10.0167603 + ], + [ + 53.6588526, + 10.0166263 + ], + [ + 53.658664, + 10.0165599 + ], + [ + 53.6583818, + 10.0164792 + ], + [ + 53.6582625, + 10.0164451 + ], + [ + 53.6577226, + 10.0163555 + ], + [ + 53.6575071, + 10.0163192 + ], + [ + 53.6571556, + 10.0162856 + ], + [ + 53.6570701, + 10.0162774 + ] + ] + }, + { + "osmId": "86969699", + "name": null, + "lengthMeters": 373.27286469194735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1474543, + 11.5592646 + ], + [ + 48.1474398, + 11.5593482 + ], + [ + 48.1474273, + 11.5594172 + ], + [ + 48.1474138, + 11.5594822 + ], + [ + 48.1473941, + 11.5595638 + ], + [ + 48.1473702, + 11.5596541 + ], + [ + 48.147307, + 11.5598769 + ], + [ + 48.1472076, + 11.5602271 + ], + [ + 48.1471406, + 11.5604609 + ], + [ + 48.1471188, + 11.5605369 + ], + [ + 48.1470792, + 11.5606752 + ], + [ + 48.1469323, + 11.5611906 + ], + [ + 48.1469237, + 11.5612143 + ], + [ + 48.1469165, + 11.5612325 + ], + [ + 48.146908, + 11.5612511 + ], + [ + 48.1469001, + 11.5612659 + ], + [ + 48.1468919, + 11.5612797 + ], + [ + 48.146884, + 11.5612912 + ], + [ + 48.1468733, + 11.5613044 + ], + [ + 48.1468612, + 11.5613176 + ], + [ + 48.1468513, + 11.5613266 + ], + [ + 48.1468413, + 11.5613354 + ], + [ + 48.1468278, + 11.5613443 + ], + [ + 48.1468142, + 11.5613512 + ], + [ + 48.1468019, + 11.5613564 + ], + [ + 48.1467908, + 11.5613593 + ], + [ + 48.1467754, + 11.5613618 + ], + [ + 48.1467622, + 11.5613626 + ], + [ + 48.1467439, + 11.5613614 + ], + [ + 48.1467292, + 11.5613577 + ], + [ + 48.1467123, + 11.5613521 + ], + [ + 48.146696, + 11.5613448 + ], + [ + 48.1466804, + 11.5613369 + ], + [ + 48.1466651, + 11.561328 + ], + [ + 48.1451512, + 11.5603399 + ] + ] + }, + { + "osmId": "86969705", + "name": null, + "lengthMeters": 115.42606917573815, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451512, + 11.5603399 + ], + [ + 48.1450023, + 11.5602443 + ], + [ + 48.1449596, + 11.5602168 + ], + [ + 48.1449297, + 11.5601976 + ], + [ + 48.1448701, + 11.5601587 + ], + [ + 48.1444086, + 11.5598578 + ], + [ + 48.1443543, + 11.5598216 + ], + [ + 48.144331, + 11.5598065 + ], + [ + 48.14431, + 11.5597964 + ], + [ + 48.1442949, + 11.5597909 + ], + [ + 48.1442765, + 11.5597862 + ], + [ + 48.1442576, + 11.5597833 + ], + [ + 48.1442412, + 11.5597822 + ], + [ + 48.1442204, + 11.5597831 + ], + [ + 48.1441891, + 11.559788 + ] + ] + }, + { + "osmId": "86985851", + "name": null, + "lengthMeters": 164.36069850553875, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6402095, + 10.0168142 + ], + [ + 53.6403162, + 10.0168195 + ], + [ + 53.6407988, + 10.0168519 + ], + [ + 53.6416865, + 10.0169115 + ] + ] + }, + { + "osmId": "86985858", + "name": null, + "lengthMeters": 286.2638038594898, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6442598, + 10.016978 + ], + [ + 53.6435854, + 10.0168787 + ], + [ + 53.6433034, + 10.0168336 + ], + [ + 53.6416902, + 10.0167376 + ] + ] + }, + { + "osmId": "86985864", + "name": null, + "lengthMeters": 794.5948025609566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6376531, + 10.0166893 + ], + [ + 53.6374057, + 10.0167608 + ], + [ + 53.6372828, + 10.0168157 + ], + [ + 53.6371587, + 10.0168732 + ], + [ + 53.6369757, + 10.0169853 + ], + [ + 53.6367895, + 10.0171274 + ], + [ + 53.636618, + 10.0172885 + ], + [ + 53.6365364, + 10.0173742 + ], + [ + 53.6364359, + 10.0174796 + ], + [ + 53.6363142, + 10.0176288 + ], + [ + 53.6361848, + 10.0178112 + ], + [ + 53.6360577, + 10.0180151 + ], + [ + 53.6359394, + 10.0182259 + ], + [ + 53.6358005, + 10.0185152 + ], + [ + 53.6356713, + 10.0188207 + ], + [ + 53.6354279, + 10.0194248 + ], + [ + 53.6349443, + 10.0205962 + ], + [ + 53.634834, + 10.020872 + ], + [ + 53.6339818, + 10.0230029 + ], + [ + 53.6337663, + 10.0235459 + ], + [ + 53.633507, + 10.0242042 + ], + [ + 53.6330237, + 10.0254095 + ] + ] + }, + { + "osmId": "86985871", + "name": null, + "lengthMeters": 305.2557266699298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6371672, + 10.0169215 + ], + [ + 53.6372902, + 10.0168625 + ], + [ + 53.6374145, + 10.016807 + ], + [ + 53.6376591, + 10.016738 + ], + [ + 53.637925, + 10.0166977 + ], + [ + 53.6380579, + 10.0166951 + ], + [ + 53.6381864, + 10.0166976 + ], + [ + 53.6385072, + 10.0167213 + ], + [ + 53.6386957, + 10.0167353 + ], + [ + 53.6392309, + 10.0167579 + ], + [ + 53.6397834, + 10.0167925 + ], + [ + 53.6398977, + 10.016798 + ] + ] + }, + { + "osmId": "86985873", + "name": null, + "lengthMeters": 286.27838576696763, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6416865, + 10.0169115 + ], + [ + 53.6424935, + 10.0169522 + ], + [ + 53.6428643, + 10.0169712 + ], + [ + 53.6433026, + 10.0169568 + ], + [ + 53.6442596, + 10.0170248 + ] + ] + }, + { + "osmId": "86999970", + "name": null, + "lengthMeters": 403.479592514575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6506991, + 10.0171973 + ], + [ + 53.6525098, + 10.0169268 + ], + [ + 53.6525304, + 10.0169237 + ], + [ + 53.654216, + 10.016673 + ], + [ + 53.6543136, + 10.0166585 + ] + ] + }, + { + "osmId": "86999973", + "name": null, + "lengthMeters": 329.8229835107629, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6536505, + 10.016706 + ], + [ + 53.65309, + 10.0167922 + ], + [ + 53.6517518, + 10.016989 + ], + [ + 53.6512333, + 10.0170599 + ], + [ + 53.6506942, + 10.0171086 + ] + ] + }, + { + "osmId": "86999976", + "name": null, + "lengthMeters": 223.57823287772703, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6476156, + 10.0172161 + ], + [ + 53.6480262, + 10.0172527 + ], + [ + 53.6480329, + 10.0172533 + ], + [ + 53.648061, + 10.0172558 + ], + [ + 53.6486059, + 10.0172788 + ], + [ + 53.6490078, + 10.0173147 + ], + [ + 53.649491, + 10.0173333 + ], + [ + 53.6496248, + 10.017331 + ] + ] + }, + { + "osmId": "86999982", + "name": null, + "lengthMeters": 119.78798665483758, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6496248, + 10.017331 + ], + [ + 53.6501627, + 10.017269 + ], + [ + 53.650286, + 10.0172527 + ], + [ + 53.6504826, + 10.0172212 + ], + [ + 53.6506991, + 10.0171973 + ] + ] + }, + { + "osmId": "86999991", + "name": null, + "lengthMeters": 373.3831429444732, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6442596, + 10.0170248 + ], + [ + 53.645301, + 10.0170841 + ], + [ + 53.6455515, + 10.0170984 + ], + [ + 53.6476156, + 10.0172161 + ] + ] + }, + { + "osmId": "87045667", + "name": null, + "lengthMeters": 119.01908769654187, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6309958, + 10.0299106 + ], + [ + 53.6311431, + 10.02973 + ], + [ + 53.6312936, + 10.0295253 + ], + [ + 53.6314184, + 10.0293362 + ], + [ + 53.6315283, + 10.029139 + ], + [ + 53.6317552, + 10.0286533 + ] + ] + }, + { + "osmId": "87045668", + "name": null, + "lengthMeters": 256.9059997437781, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6330237, + 10.0254095 + ], + [ + 53.6327829, + 10.0259066 + ], + [ + 53.632524, + 10.0264472 + ], + [ + 53.6324428, + 10.0266295 + ], + [ + 53.6323164, + 10.0269432 + ], + [ + 53.6321242, + 10.0274616 + ], + [ + 53.631993, + 10.0278834 + ], + [ + 53.6319019, + 10.0281738 + ], + [ + 53.6318709, + 10.0282662 + ], + [ + 53.6317303, + 10.0286248 + ] + ] + }, + { + "osmId": "87045671", + "name": null, + "lengthMeters": 736.0390905905429, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6330487, + 10.0254386 + ], + [ + 53.6335273, + 10.0242411 + ], + [ + 53.6337906, + 10.0235855 + ], + [ + 53.6340065, + 10.02304 + ], + [ + 53.63477, + 10.0211173 + ], + [ + 53.6349636, + 10.0206299 + ], + [ + 53.6354468, + 10.0194555 + ], + [ + 53.6356926, + 10.018851 + ], + [ + 53.6358237, + 10.0185448 + ], + [ + 53.6359593, + 10.0182595 + ], + [ + 53.6360762, + 10.0180531 + ], + [ + 53.6361139, + 10.0179926 + ], + [ + 53.6362017, + 10.0178517 + ], + [ + 53.6363321, + 10.0176703 + ], + [ + 53.6364563, + 10.0175182 + ], + [ + 53.6366327, + 10.0173279 + ], + [ + 53.6368041, + 10.0171716 + ], + [ + 53.6369857, + 10.0170308 + ], + [ + 53.6371672, + 10.0169215 + ] + ] + }, + { + "osmId": "87048873", + "name": null, + "lengthMeters": 117.86524996354586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6317303, + 10.0286248 + ], + [ + 53.6315065, + 10.0291048 + ], + [ + 53.6314798, + 10.0291573 + ], + [ + 53.6313955, + 10.0293046 + ], + [ + 53.6312791, + 10.0294833 + ], + [ + 53.6311268, + 10.029691 + ], + [ + 53.6309791, + 10.029871 + ] + ] + }, + { + "osmId": "87048878", + "name": null, + "lengthMeters": 228.0177909870221, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6276229, + 10.0335875 + ], + [ + 53.6278133, + 10.0334973 + ], + [ + 53.6279816, + 10.033404 + ], + [ + 53.6281622, + 10.0332772 + ], + [ + 53.6285197, + 10.0329199 + ], + [ + 53.6289677, + 10.032317 + ], + [ + 53.6291201, + 10.0320922 + ], + [ + 53.6293575, + 10.0318148 + ] + ] + }, + { + "osmId": "87048885", + "name": null, + "lengthMeters": 343.2165896379938, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6240586, + 10.0325305 + ], + [ + 53.6246089, + 10.0328102 + ], + [ + 53.6252593, + 10.0330611 + ], + [ + 53.6258031, + 10.033282 + ], + [ + 53.6263931, + 10.0335283 + ], + [ + 53.6267156, + 10.0336408 + ], + [ + 53.6268283, + 10.0336614 + ], + [ + 53.6269428, + 10.0336749 + ], + [ + 53.6270627, + 10.0336839 + ] + ] + }, + { + "osmId": "87054830", + "name": null, + "lengthMeters": 182.43076156736822, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6058192, + 10.00956 + ], + [ + 53.6060232, + 10.0103941 + ], + [ + 53.606305, + 10.0114694 + ], + [ + 53.6063802, + 10.0117339 + ], + [ + 53.6063962, + 10.0117853 + ], + [ + 53.6064926, + 10.0120795 + ] + ] + }, + { + "osmId": "87054832", + "name": null, + "lengthMeters": 81.56387929860925, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6070024, + 10.0137208 + ], + [ + 53.6067002, + 10.0125943 + ] + ] + }, + { + "osmId": "87054834", + "name": null, + "lengthMeters": 224.3983836170964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.607047, + 10.014016 + ], + [ + 53.6078895, + 10.0170036 + ], + [ + 53.6079144, + 10.0170871 + ] + ] + }, + { + "osmId": "87054838", + "name": null, + "lengthMeters": 185.75941280267907, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6065735, + 10.0120751 + ], + [ + 53.6064714, + 10.0116699 + ], + [ + 53.6063958, + 10.0113856 + ], + [ + 53.6061061, + 10.0103441 + ], + [ + 53.6059644, + 10.0098465 + ], + [ + 53.6058712, + 10.0095208 + ] + ] + }, + { + "osmId": "87069193", + "name": null, + "lengthMeters": 79.43107556218195, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5982919, + 9.9947768 + ], + [ + 53.5986661, + 9.9947408 + ], + [ + 53.5990051, + 9.9947728 + ] + ] + }, + { + "osmId": "87069195", + "name": null, + "lengthMeters": 293.3413195371412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6018428, + 9.9957195 + ], + [ + 53.6017965, + 9.9956363 + ], + [ + 53.6017055, + 9.9954952 + ], + [ + 53.6015913, + 9.9953362 + ], + [ + 53.6014734, + 9.9951944 + ], + [ + 53.6013748, + 9.995086 + ], + [ + 53.6011255, + 9.994838 + ], + [ + 53.6008387, + 9.9946674 + ], + [ + 53.6006385, + 9.994587 + ], + [ + 53.6004555, + 9.9945419 + ], + [ + 53.6002773, + 9.9945188 + ], + [ + 53.6000176, + 9.9945415 + ], + [ + 53.5997201, + 9.9945688 + ], + [ + 53.5994744, + 9.9945816 + ], + [ + 53.5994477, + 9.9945841 + ], + [ + 53.5994054, + 9.9945881 + ] + ] + }, + { + "osmId": "87069202", + "name": null, + "lengthMeters": 94.14988856762265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5991325, + 9.9946142 + ], + [ + 53.598771, + 9.9946576 + ], + [ + 53.5982919, + 9.9947768 + ] + ] + }, + { + "osmId": "87070210", + "name": null, + "lengthMeters": 219.6748865326307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.596121, + 9.9954923 + ], + [ + 53.5955815, + 9.9956704 + ], + [ + 53.594902, + 9.9959028 + ], + [ + 53.5947269, + 9.9959645 + ], + [ + 53.594497, + 9.9960456 + ], + [ + 53.5944367, + 9.9960629 + ], + [ + 53.5943776, + 9.9960787 + ], + [ + 53.5941809, + 9.996112 + ] + ] + }, + { + "osmId": "87070218", + "name": null, + "lengthMeters": 130.63797897286443, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5972737, + 9.9951098 + ], + [ + 53.596823, + 9.9952646 + ], + [ + 53.5965738, + 9.9953454 + ], + [ + 53.596121, + 9.9954923 + ] + ] + }, + { + "osmId": "87077675", + "name": null, + "lengthMeters": 539.356502412647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6309295, + 10.0470762 + ], + [ + 53.6310451, + 10.0476253 + ], + [ + 53.6311011, + 10.047891 + ], + [ + 53.6319331, + 10.0518452 + ], + [ + 53.6319592, + 10.0519826 + ], + [ + 53.6320576, + 10.0524994 + ], + [ + 53.6322801, + 10.0536783 + ], + [ + 53.6323653, + 10.0541056 + ], + [ + 53.6324856, + 10.0546645 + ], + [ + 53.6325169, + 10.0548049 + ] + ] + }, + { + "osmId": "87077681", + "name": null, + "lengthMeters": 197.556955740765, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6332472, + 10.057925 + ], + [ + 53.6326837, + 10.0550834 + ] + ] + }, + { + "osmId": "87080073", + "name": null, + "lengthMeters": 647.3222064359888, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.638161, + 10.077162 + ], + [ + 53.6377717, + 10.0763072 + ], + [ + 53.6374812, + 10.0755235 + ], + [ + 53.6371513, + 10.0745154 + ], + [ + 53.636874, + 10.0734877 + ], + [ + 53.6361956, + 10.0706052 + ], + [ + 53.6357007, + 10.0683181 + ] + ] + }, + { + "osmId": "87080081", + "name": null, + "lengthMeters": 165.00555337621606, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6356765, + 10.0682031 + ], + [ + 53.6355509, + 10.0676615 + ], + [ + 53.6353536, + 10.0668365 + ], + [ + 53.6352319, + 10.0663721 + ], + [ + 53.6352207, + 10.0663295 + ], + [ + 53.6351505, + 10.0660679 + ], + [ + 53.635104, + 10.0658947 + ] + ] + }, + { + "osmId": "87095438", + "name": null, + "lengthMeters": 414.5071396983665, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6382776, + 10.0774913 + ], + [ + 53.6386857, + 10.0783055 + ], + [ + 53.6395173, + 10.0797282 + ], + [ + 53.6402792, + 10.0810702 + ], + [ + 53.6405565, + 10.0815724 + ], + [ + 53.6408237, + 10.0820806 + ] + ] + }, + { + "osmId": "87099559", + "name": null, + "lengthMeters": 525.6037580391683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5455198, + 13.427722 + ], + [ + 52.5455844, + 13.4277469 + ], + [ + 52.5457432, + 13.4278081 + ], + [ + 52.5458462, + 13.4278478 + ], + [ + 52.5460878, + 13.4279374 + ], + [ + 52.5470474, + 13.4283203 + ], + [ + 52.5475518, + 13.4285563 + ], + [ + 52.5477046, + 13.4286261 + ], + [ + 52.5478038, + 13.4286716 + ], + [ + 52.5478915, + 13.4287118 + ], + [ + 52.5485641, + 13.4290191 + ], + [ + 52.5489101, + 13.4291814 + ], + [ + 52.5491693, + 13.4292972 + ], + [ + 52.5495213, + 13.429454 + ], + [ + 52.5500888, + 13.4297091 + ] + ] + }, + { + "osmId": "87099561", + "name": null, + "lengthMeters": 326.1806282895134, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5504904, + 13.4225062 + ], + [ + 52.5501298, + 13.4221054 + ], + [ + 52.5500716, + 13.4220426 + ], + [ + 52.5499701, + 13.4219332 + ], + [ + 52.549753, + 13.4216984 + ], + [ + 52.5494511, + 13.4213719 + ], + [ + 52.5488954, + 13.4207709 + ], + [ + 52.5488225, + 13.4206943 + ], + [ + 52.5487007, + 13.420566 + ], + [ + 52.5486257, + 13.420487 + ], + [ + 52.548565, + 13.4204231 + ], + [ + 52.5480915, + 13.4199099 + ], + [ + 52.5480401, + 13.4198542 + ] + ] + }, + { + "osmId": "87099563", + "name": null, + "lengthMeters": 97.16440317344544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500888, + 13.4297091 + ], + [ + 52.5502201, + 13.4297712 + ], + [ + 52.5505022, + 13.4299028 + ], + [ + 52.5507797, + 13.4300239 + ], + [ + 52.5508782, + 13.4300686 + ], + [ + 52.550931, + 13.430092 + ] + ] + }, + { + "osmId": "87099565", + "name": null, + "lengthMeters": 525.3578937329471, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500974, + 13.4296707 + ], + [ + 52.5496545, + 13.4294789 + ], + [ + 52.5495263, + 13.4294204 + ], + [ + 52.5494471, + 13.4293796 + ], + [ + 52.5491813, + 13.4292608 + ], + [ + 52.5489225, + 13.4291422 + ], + [ + 52.5485709, + 13.4289784 + ], + [ + 52.5481501, + 13.4287852 + ], + [ + 52.5479056, + 13.4286732 + ], + [ + 52.5478175, + 13.4286326 + ], + [ + 52.5477185, + 13.428587 + ], + [ + 52.5472869, + 13.4283937 + ], + [ + 52.5470528, + 13.4282911 + ], + [ + 52.5467599, + 13.4281628 + ], + [ + 52.5464427, + 13.4280358 + ], + [ + 52.5460927, + 13.4278982 + ], + [ + 52.5458608, + 13.4278113 + ], + [ + 52.5457589, + 13.4277722 + ], + [ + 52.5456001, + 13.4277112 + ], + [ + 52.5455305, + 13.4276844 + ] + ] + }, + { + "osmId": "87099569", + "name": null, + "lengthMeters": 602.7266284858794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5528585, + 13.4227592 + ], + [ + 52.5528931, + 13.4224635 + ], + [ + 52.5529153, + 13.4222332 + ], + [ + 52.5530587, + 13.4209548 + ], + [ + 52.5531667, + 13.4199594 + ], + [ + 52.5532903, + 13.4188202 + ], + [ + 52.5533094, + 13.4186443 + ], + [ + 52.553322, + 13.4185377 + ], + [ + 52.553339, + 13.4183947 + ], + [ + 52.553453, + 13.417321 + ], + [ + 52.5535489, + 13.4163947 + ], + [ + 52.5535992, + 13.4159799 + ], + [ + 52.5537181, + 13.4150001 + ], + [ + 52.5537349, + 13.414851 + ], + [ + 52.5537416, + 13.4147899 + ], + [ + 52.5537513, + 13.4147017 + ], + [ + 52.5537575, + 13.4146457 + ], + [ + 52.5537582, + 13.4146306 + ], + [ + 52.5537664, + 13.4144622 + ], + [ + 52.5537688, + 13.4144108 + ], + [ + 52.5537714, + 13.4143561 + ], + [ + 52.5537766, + 13.4142904 + ], + [ + 52.5537785, + 13.4142641 + ], + [ + 52.553785, + 13.4141711 + ], + [ + 52.5537934, + 13.4139811 + ] + ] + }, + { + "osmId": "87601335", + "name": null, + "lengthMeters": 468.7129367436253, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5577667, + 9.8577868 + ], + [ + 53.5578029, + 9.8581695 + ], + [ + 53.5578786, + 9.8587341 + ], + [ + 53.5579253, + 9.8590734 + ], + [ + 53.5579965, + 9.8596143 + ], + [ + 53.5580462, + 9.8600864 + ], + [ + 53.5580813, + 9.8604535 + ], + [ + 53.5581507, + 9.8614018 + ], + [ + 53.5581973, + 9.8620257 + ], + [ + 53.5582186, + 9.862382 + ], + [ + 53.5582362, + 9.8627969 + ], + [ + 53.5582556, + 9.8634045 + ], + [ + 53.5582575, + 9.8634797 + ], + [ + 53.5582892, + 9.8648129 + ] + ] + }, + { + "osmId": "87601353", + "name": null, + "lengthMeters": 467.5337916691684, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5578007, + 9.8575654 + ], + [ + 53.5577809, + 9.8571864 + ], + [ + 53.5577752, + 9.8570079 + ], + [ + 53.5577719, + 9.8559292 + ], + [ + 53.5578027, + 9.8549166 + ], + [ + 53.5578328, + 9.85455 + ], + [ + 53.5579348, + 9.8533086 + ], + [ + 53.5579537, + 9.8530783 + ], + [ + 53.5580889, + 9.8519604 + ], + [ + 53.558301, + 9.8505758 + ] + ] + }, + { + "osmId": "87851073", + "name": null, + "lengthMeters": 702.1233200746267, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1614513, + 11.5514752 + ], + [ + 48.1614384, + 11.5513385 + ], + [ + 48.1614367, + 11.5513003 + ], + [ + 48.1614366, + 11.5512614 + ], + [ + 48.1614392, + 11.5512182 + ], + [ + 48.1614444, + 11.551175 + ], + [ + 48.1614529, + 11.5511411 + ], + [ + 48.1614619, + 11.5511104 + ], + [ + 48.1614745, + 11.5510802 + ], + [ + 48.1614889, + 11.5510503 + ], + [ + 48.1615052, + 11.5510249 + ], + [ + 48.1615223, + 11.5510011 + ], + [ + 48.1615449, + 11.5509792 + ], + [ + 48.1615684, + 11.5509631 + ], + [ + 48.161594, + 11.5509497 + ], + [ + 48.1616187, + 11.5509398 + ], + [ + 48.1616413, + 11.5509371 + ], + [ + 48.161664, + 11.5509366 + ], + [ + 48.1616863, + 11.5509385 + ], + [ + 48.1617094, + 11.550943 + ], + [ + 48.161731, + 11.5509502 + ], + [ + 48.1617723, + 11.5509646 + ], + [ + 48.1618124, + 11.550987 + ], + [ + 48.1618421, + 11.5510044 + ], + [ + 48.16187, + 11.5510254 + ], + [ + 48.1618971, + 11.5510504 + ], + [ + 48.161923, + 11.5510763 + ], + [ + 48.1619462, + 11.5511061 + ], + [ + 48.1619683, + 11.5511376 + ], + [ + 48.1620034, + 11.5512 + ], + [ + 48.1620303, + 11.5512569 + ], + [ + 48.1620541, + 11.5513147 + ], + [ + 48.1621288, + 11.5515212 + ], + [ + 48.1622114, + 11.5517331 + ], + [ + 48.162296, + 11.5519847 + ], + [ + 48.1623713, + 11.5521919 + ], + [ + 48.1624399, + 11.5523789 + ], + [ + 48.1624581, + 11.5524312 + ], + [ + 48.1624765, + 11.5524744 + ], + [ + 48.1624882, + 11.5524952 + ], + [ + 48.1625, + 11.5525135 + ], + [ + 48.1625118, + 11.5525288 + ], + [ + 48.162529, + 11.5525462 + ], + [ + 48.1625463, + 11.5525615 + ], + [ + 48.1625638, + 11.5525747 + ], + [ + 48.1625819, + 11.5525865 + ], + [ + 48.1626004, + 11.5525937 + ], + [ + 48.1626185, + 11.5525987 + ], + [ + 48.1626366, + 11.5526005 + ], + [ + 48.1626551, + 11.5526 + ], + [ + 48.1626714, + 11.5525991 + ], + [ + 48.1626878, + 11.552596 + ], + [ + 48.162703, + 11.5525913 + ], + [ + 48.1627182, + 11.5525852 + ], + [ + 48.1627412, + 11.5525716 + ], + [ + 48.1627642, + 11.5525574 + ], + [ + 48.1628079, + 11.5525253 + ], + [ + 48.1628845, + 11.5524599 + ], + [ + 48.1634926, + 11.5519341 + ], + [ + 48.1635496, + 11.551879 + ], + [ + 48.1635762, + 11.5518507 + ], + [ + 48.1636012, + 11.5518198 + ], + [ + 48.1636334, + 11.5517687 + ], + [ + 48.163662, + 11.5517177 + ], + [ + 48.1636751, + 11.5516874 + ], + [ + 48.1636864, + 11.5516571 + ], + [ + 48.1636977, + 11.5516248 + ], + [ + 48.1637064, + 11.5515925 + ], + [ + 48.1637142, + 11.5515561 + ], + [ + 48.1637212, + 11.5515184 + ], + [ + 48.1637264, + 11.5514807 + ], + [ + 48.1637307, + 11.5514417 + ], + [ + 48.1637321, + 11.5514101 + ], + [ + 48.163731, + 11.5513786 + ], + [ + 48.1637293, + 11.551347 + ], + [ + 48.163726, + 11.5513167 + ], + [ + 48.1637215, + 11.5512836 + ], + [ + 48.1637155, + 11.5512527 + ], + [ + 48.1637023, + 11.55119 + ], + [ + 48.1636867, + 11.5511289 + ], + [ + 48.1636778, + 11.5510991 + ], + [ + 48.1636667, + 11.5510704 + ], + [ + 48.1636537, + 11.5510414 + ], + [ + 48.1636386, + 11.5510157 + ], + [ + 48.1636043, + 11.5509663 + ], + [ + 48.1635876, + 11.5509449 + ], + [ + 48.1635701, + 11.5509246 + ], + [ + 48.1635333, + 11.5508883 + ], + [ + 48.1635132, + 11.5508712 + ], + [ + 48.1634924, + 11.5508584 + ], + [ + 48.1634615, + 11.5508447 + ], + [ + 48.1634297, + 11.5508351 + ], + [ + 48.1633903, + 11.5508298 + ], + [ + 48.1633501, + 11.5508272 + ], + [ + 48.162461, + 11.5508142 + ], + [ + 48.162434, + 11.5508175 + ], + [ + 48.1624131, + 11.550821 + ], + [ + 48.1623928, + 11.550826 + ], + [ + 48.1623519, + 11.5508406 + ], + [ + 48.1622523, + 11.5508848 + ], + [ + 48.1622134, + 11.5508966 + ], + [ + 48.1621888, + 11.5509006 + ], + [ + 48.1621641, + 11.5509031 + ], + [ + 48.1619354, + 11.5508985 + ], + [ + 48.1616898, + 11.5508982 + ], + [ + 48.1616244, + 11.5509005 + ], + [ + 48.1616025, + 11.5509051 + ], + [ + 48.1615797, + 11.5509124 + ], + [ + 48.1615537, + 11.5509268 + ], + [ + 48.1615311, + 11.5509418 + ], + [ + 48.1615085, + 11.5509594 + ], + [ + 48.1614876, + 11.5509813 + ], + [ + 48.161466, + 11.5510139 + ], + [ + 48.1614453, + 11.5510534 + ], + [ + 48.1614261, + 11.5511102 + ], + [ + 48.1614116, + 11.5511698 + ], + [ + 48.1614079, + 11.5512116 + ], + [ + 48.1614064, + 11.5512522 + ], + [ + 48.1614088, + 11.5513116 + ], + [ + 48.1614134, + 11.5513698 + ], + [ + 48.1614245, + 11.551483 + ] + ] + }, + { + "osmId": "87851078", + "name": null, + "lengthMeters": 168.92889300016452, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1611066, + 11.5504755 + ], + [ + 48.1612267, + 11.5506713 + ], + [ + 48.1612798, + 11.5507366 + ], + [ + 48.1613063, + 11.5507614 + ], + [ + 48.161373, + 11.5508054 + ], + [ + 48.1614216, + 11.5508276 + ], + [ + 48.1614698, + 11.5508402 + ], + [ + 48.1614961, + 11.550845 + ], + [ + 48.1615223, + 11.5508481 + ], + [ + 48.1615753, + 11.5508526 + ], + [ + 48.1618054, + 11.5508494 + ], + [ + 48.1618194, + 11.5508504 + ], + [ + 48.1618329, + 11.5508519 + ], + [ + 48.1618471, + 11.5508544 + ], + [ + 48.1618743, + 11.5508631 + ], + [ + 48.1618885, + 11.5508699 + ], + [ + 48.1619027, + 11.5508767 + ], + [ + 48.1619205, + 11.5508867 + ], + [ + 48.1619354, + 11.5508985 + ], + [ + 48.1619513, + 11.5509141 + ], + [ + 48.1619638, + 11.5509331 + ], + [ + 48.1619765, + 11.5509518 + ], + [ + 48.1619886, + 11.5509721 + ], + [ + 48.1620136, + 11.5510251 + ], + [ + 48.162036, + 11.5510795 + ], + [ + 48.1621773, + 11.5514722 + ], + [ + 48.1622435, + 11.5516599 + ] + ] + }, + { + "osmId": "87851082", + "name": null, + "lengthMeters": 275.6408089089998, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1634491, + 11.5519133 + ], + [ + 48.1635126, + 11.5518562 + ], + [ + 48.1635476, + 11.5518152 + ], + [ + 48.1635812, + 11.5517688 + ], + [ + 48.1636066, + 11.5517124 + ], + [ + 48.1636291, + 11.5516559 + ], + [ + 48.1636418, + 11.5516077 + ], + [ + 48.1636523, + 11.5515596 + ], + [ + 48.1636588, + 11.5515178 + ], + [ + 48.1636631, + 11.5514749 + ], + [ + 48.1636663, + 11.5514269 + ], + [ + 48.163666, + 11.5513767 + ], + [ + 48.1636632, + 11.5513396 + ], + [ + 48.1636582, + 11.5513025 + ], + [ + 48.1636519, + 11.5512733 + ], + [ + 48.1636441, + 11.551244 + ], + [ + 48.163622, + 11.5511664 + ], + [ + 48.1636095, + 11.5511319 + ], + [ + 48.1635956, + 11.5510984 + ], + [ + 48.1635771, + 11.551068 + ], + [ + 48.1635579, + 11.5510409 + ], + [ + 48.1635201, + 11.5510001 + ], + [ + 48.1634974, + 11.5509807 + ], + [ + 48.1634732, + 11.5509644 + ], + [ + 48.1634475, + 11.5509495 + ], + [ + 48.1634218, + 11.5509377 + ], + [ + 48.1633926, + 11.5509265 + ], + [ + 48.1633689, + 11.5509212 + ], + [ + 48.1633445, + 11.550918 + ], + [ + 48.1632588, + 11.5509143 + ], + [ + 48.1624806, + 11.5509062 + ], + [ + 48.1624369, + 11.5509105 + ], + [ + 48.1623947, + 11.5509223 + ], + [ + 48.1623605, + 11.550939 + ], + [ + 48.1623285, + 11.5509599 + ], + [ + 48.1623098, + 11.5509768 + ], + [ + 48.1622923, + 11.5509956 + ], + [ + 48.1622746, + 11.5510178 + ], + [ + 48.1622569, + 11.551043 + ], + [ + 48.1622282, + 11.5511004 + ], + [ + 48.162216, + 11.551135 + ], + [ + 48.1622054, + 11.5511706 + ], + [ + 48.1621976, + 11.5512126 + ], + [ + 48.1621937, + 11.5512541 + ], + [ + 48.1621927, + 11.5513192 + ], + [ + 48.1621956, + 11.5513842 + ], + [ + 48.1622029, + 11.5514791 + ], + [ + 48.1622197, + 11.5515679 + ], + [ + 48.1622435, + 11.5516599 + ] + ] + }, + { + "osmId": "87851085", + "name": null, + "lengthMeters": 157.32699230010132, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.162461, + 11.5508142 + ], + [ + 48.1615368, + 11.5508001 + ], + [ + 48.1615154, + 11.5507998 + ], + [ + 48.1614837, + 11.5507951 + ], + [ + 48.1614521, + 11.5507887 + ], + [ + 48.1614035, + 11.550771 + ], + [ + 48.161355, + 11.5507486 + ], + [ + 48.1613132, + 11.5507138 + ], + [ + 48.1612714, + 11.5506693 + ], + [ + 48.1612295, + 11.5506085 + ], + [ + 48.1611876, + 11.5505446 + ], + [ + 48.1611289, + 11.5504472 + ] + ] + }, + { + "osmId": "88657489", + "name": null, + "lengthMeters": 392.76105931276834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5615873, + 9.9332143 + ], + [ + 53.560926, + 9.9327998 + ], + [ + 53.5606491, + 9.93266 + ], + [ + 53.5605312, + 9.9326232 + ], + [ + 53.5604488, + 9.9325974 + ], + [ + 53.560385, + 9.9325775 + ], + [ + 53.5601581, + 9.9325363 + ], + [ + 53.5598804, + 9.9325352 + ], + [ + 53.5596775, + 9.9325667 + ], + [ + 53.5596699, + 9.9325679 + ], + [ + 53.5594318, + 9.9326453 + ], + [ + 53.5591576, + 9.932768 + ], + [ + 53.5589858, + 9.9328788 + ], + [ + 53.5587831, + 9.9330295 + ], + [ + 53.5586089, + 9.9331863 + ], + [ + 53.5584492, + 9.9333518 + ], + [ + 53.5582574, + 9.9335795 + ] + ] + }, + { + "osmId": "89818836", + "name": null, + "lengthMeters": 107.66670662512514, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1941045, + 11.6010664 + ], + [ + 48.194374, + 11.6012644 + ], + [ + 48.1945621, + 11.6013731 + ], + [ + 48.1950046, + 11.6015952 + ] + ] + }, + { + "osmId": "90399700", + "name": null, + "lengthMeters": 130.62474460452142, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1292952, + 11.4316207 + ], + [ + 48.1290209, + 11.4314518 + ], + [ + 48.1282082, + 11.4309533 + ] + ] + }, + { + "osmId": "90399701", + "name": null, + "lengthMeters": 130.30368469862466, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1293078, + 11.43157 + ], + [ + 48.1282231, + 11.4309056 + ] + ] + }, + { + "osmId": "90577072", + "name": "Anhalter Bahn", + "lengthMeters": 205.73401842244738, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3852589, + 13.2985832 + ], + [ + 52.3863401, + 13.2990304 + ], + [ + 52.3870528, + 13.2993254 + ] + ] + }, + { + "osmId": "90582262", + "name": null, + "lengthMeters": 791.537553270839, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3582151, + 13.2880718 + ], + [ + 52.3575365, + 13.2878841 + ], + [ + 52.3562613, + 13.2875183 + ], + [ + 52.3559979, + 13.2874261 + ], + [ + 52.3556818, + 13.2872987 + ], + [ + 52.3523587, + 13.2859268 + ], + [ + 52.3521667, + 13.2858486 + ], + [ + 52.3517024, + 13.2856612 + ], + [ + 52.3514936, + 13.2855633 + ], + [ + 52.3512849, + 13.2854474 + ] + ] + }, + { + "osmId": "91260835", + "name": null, + "lengthMeters": 92.89353861807022, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151859, + 11.6490965 + ], + [ + 48.1520775, + 11.6490556 + ], + [ + 48.1524071, + 11.6489776 + ], + [ + 48.1526863, + 11.6489234 + ] + ] + }, + { + "osmId": "92917972", + "name": null, + "lengthMeters": 76.25379769720044, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0914189, + 11.6335522 + ], + [ + 48.0913723, + 11.6335935 + ], + [ + 48.0911748, + 11.6337457 + ], + [ + 48.0909792, + 11.633883 + ], + [ + 48.0908863, + 11.6339457 + ], + [ + 48.0908007, + 11.6339943 + ] + ] + }, + { + "osmId": "93212453", + "name": null, + "lengthMeters": 146.16314461577167, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494443, + 13.584336 + ], + [ + 52.5494825, + 13.5845355 + ], + [ + 52.5495013, + 13.5846526 + ], + [ + 52.5495258, + 13.5848241 + ], + [ + 52.5495457, + 13.5849958 + ], + [ + 52.5495604, + 13.5851607 + ], + [ + 52.5495695, + 13.5852786 + ], + [ + 52.5495769, + 13.5854198 + ], + [ + 52.5495793, + 13.5854672 + ], + [ + 52.5495838, + 13.585701 + ], + [ + 52.5495826, + 13.5858887 + ], + [ + 52.5495764, + 13.5860815 + ], + [ + 52.5495683, + 13.5862177 + ], + [ + 52.5495493, + 13.5864699 + ] + ] + }, + { + "osmId": "93212459", + "name": null, + "lengthMeters": 194.8066956225204, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5329075, + 13.6106791 + ], + [ + 52.5328615, + 13.6109001 + ], + [ + 52.5327622, + 13.6113741 + ], + [ + 52.5324692, + 13.6127847 + ], + [ + 52.5323396, + 13.6134036 + ] + ] + }, + { + "osmId": "93212463", + "name": null, + "lengthMeters": 401.23733675998665, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5399811, + 13.6041159 + ], + [ + 52.5394868, + 13.6042239 + ], + [ + 52.5389275, + 13.6043407 + ], + [ + 52.5387936, + 13.6043675 + ], + [ + 52.5387356, + 13.6043795 + ], + [ + 52.5386669, + 13.6043925 + ], + [ + 52.5385965, + 13.6044081 + ], + [ + 52.538519, + 13.6044241 + ], + [ + 52.5382824, + 13.6044747 + ], + [ + 52.5377965, + 13.6045742 + ], + [ + 52.5376883, + 13.604597 + ], + [ + 52.5369628, + 13.6047509 + ], + [ + 52.5368397, + 13.6047841 + ], + [ + 52.5367859, + 13.6048046 + ], + [ + 52.5367394, + 13.6048221 + ], + [ + 52.5366496, + 13.6048651 + ], + [ + 52.5366001, + 13.6048914 + ], + [ + 52.5365531, + 13.6049212 + ], + [ + 52.5364219, + 13.60501 + ] + ] + }, + { + "osmId": "93212467", + "name": null, + "lengthMeters": 400.18886981663655, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5435515, + 13.6033718 + ], + [ + 52.5433447, + 13.6034158 + ], + [ + 52.5432359, + 13.6034389 + ], + [ + 52.5426271, + 13.6035634 + ], + [ + 52.5425282, + 13.6035836 + ], + [ + 52.5414663, + 13.6037982 + ], + [ + 52.5403047, + 13.6040463 + ], + [ + 52.5399811, + 13.6041159 + ] + ] + }, + { + "osmId": "93217146", + "name": null, + "lengthMeters": 748.673767297174, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5509143, + 13.4662732 + ], + [ + 52.5508433, + 13.4663026 + ], + [ + 52.5507702, + 13.4663294 + ], + [ + 52.550624, + 13.4663726 + ], + [ + 52.5505096, + 13.4664031 + ], + [ + 52.5499933, + 13.4665546 + ], + [ + 52.5495263, + 13.4667268 + ], + [ + 52.5494003, + 13.4667733 + ], + [ + 52.548783, + 13.4669987 + ], + [ + 52.5484859, + 13.4671092 + ], + [ + 52.5469183, + 13.4676873 + ], + [ + 52.5468862, + 13.4676994 + ], + [ + 52.5467226, + 13.4677588 + ], + [ + 52.5464509, + 13.467859 + ], + [ + 52.5463343, + 13.4679036 + ], + [ + 52.5463138, + 13.4679107 + ], + [ + 52.546065, + 13.4680105 + ], + [ + 52.545367, + 13.4682785 + ], + [ + 52.5450637, + 13.4683864 + ], + [ + 52.5446403, + 13.468533 + ], + [ + 52.5443378, + 13.4686393 + ] + ] + }, + { + "osmId": "93217150", + "name": null, + "lengthMeters": 101.64605083495934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5534368, + 13.4737141 + ], + [ + 52.5533965, + 13.4745119 + ], + [ + 52.5533811, + 13.4748707 + ], + [ + 52.553366, + 13.475213 + ] + ] + }, + { + "osmId": "93217152", + "name": null, + "lengthMeters": 224.1490646515829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377038, + 13.4719319 + ], + [ + 52.5376183, + 13.4720136 + ], + [ + 52.5365985, + 13.4729883 + ], + [ + 52.5363985, + 13.4731834 + ], + [ + 52.5362492, + 13.4733219 + ], + [ + 52.5361535, + 13.4734089 + ], + [ + 52.5361083, + 13.4734503 + ], + [ + 52.5360815, + 13.4734749 + ], + [ + 52.5360464, + 13.4735071 + ], + [ + 52.5359579, + 13.4735883 + ] + ] + }, + { + "osmId": "93217154", + "name": null, + "lengthMeters": 1085.9174289888608, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5338064, + 13.4849221 + ], + [ + 52.5338161, + 13.4852028 + ], + [ + 52.5338574, + 13.4859645 + ], + [ + 52.533884, + 13.4864239 + ], + [ + 52.5339119, + 13.4869072 + ], + [ + 52.5339191, + 13.4870318 + ], + [ + 52.5339254, + 13.4871415 + ], + [ + 52.533931, + 13.4872379 + ], + [ + 52.5340504, + 13.4892831 + ], + [ + 52.5341579, + 13.4911084 + ], + [ + 52.5341846, + 13.4915716 + ], + [ + 52.5341947, + 13.4917347 + ], + [ + 52.5342048, + 13.4919196 + ], + [ + 52.5342395, + 13.4925374 + ], + [ + 52.5342891, + 13.4933529 + ], + [ + 52.5343321, + 13.4941177 + ], + [ + 52.5343436, + 13.4944304 + ], + [ + 52.5343577, + 13.4948651 + ], + [ + 52.5343876, + 13.4958569 + ], + [ + 52.5344031, + 13.496468 + ], + [ + 52.534413, + 13.4967837 + ], + [ + 52.5344186, + 13.4969928 + ], + [ + 52.5344431, + 13.497915 + ], + [ + 52.5344648, + 13.4984246 + ], + [ + 52.5344889, + 13.4989531 + ], + [ + 52.5345203, + 13.4994827 + ], + [ + 52.5345251, + 13.499546 + ], + [ + 52.5345321, + 13.4996811 + ], + [ + 52.5345384, + 13.4997887 + ], + [ + 52.5345424, + 13.4998664 + ], + [ + 52.5346039, + 13.5009198 + ] + ] + }, + { + "osmId": "93220950", + "name": null, + "lengthMeters": 394.8472706030089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5150771, + 13.4783846 + ], + [ + 52.5146662, + 13.4780527 + ], + [ + 52.5146188, + 13.4780149 + ], + [ + 52.5145764, + 13.4779814 + ], + [ + 52.5145308, + 13.4779454 + ], + [ + 52.5144494, + 13.477881 + ], + [ + 52.513805, + 13.4773672 + ], + [ + 52.5137083, + 13.47729 + ], + [ + 52.5136462, + 13.4772334 + ], + [ + 52.5135925, + 13.4771787 + ], + [ + 52.5135229, + 13.4770877 + ], + [ + 52.513471, + 13.477004 + ], + [ + 52.5134213, + 13.4769175 + ], + [ + 52.5133816, + 13.4768499 + ], + [ + 52.5133461, + 13.4767982 + ], + [ + 52.5133371, + 13.4767862 + ], + [ + 52.5133062, + 13.4767465 + ], + [ + 52.5132869, + 13.4767255 + ], + [ + 52.5132589, + 13.4766951 + ], + [ + 52.5131943, + 13.4766327 + ], + [ + 52.5123999, + 13.4758951 + ], + [ + 52.5120027, + 13.475511 + ] + ] + }, + { + "osmId": "93584120", + "name": null, + "lengthMeters": 76.93611367160807, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240202, + 13.3876673 + ], + [ + 52.5239576, + 13.3876749 + ], + [ + 52.5238714, + 13.3876762 + ], + [ + 52.5238554, + 13.3876752 + ], + [ + 52.5238122, + 13.3876723 + ], + [ + 52.5237032, + 13.3876623 + ], + [ + 52.5236023, + 13.3876632 + ], + [ + 52.5233578, + 13.3877083 + ], + [ + 52.5233304, + 13.3877134 + ] + ] + }, + { + "osmId": "93628042", + "name": null, + "lengthMeters": 352.8987286733417, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5239147, + 13.4493747 + ], + [ + 52.524252, + 13.4491415 + ], + [ + 52.5243437, + 13.4490781 + ], + [ + 52.5244221, + 13.4490244 + ], + [ + 52.5249061, + 13.4486907 + ], + [ + 52.5261297, + 13.4478554 + ], + [ + 52.5261552, + 13.4478368 + ], + [ + 52.5261876, + 13.4478153 + ], + [ + 52.52624, + 13.447781 + ], + [ + 52.5262923, + 13.4477485 + ], + [ + 52.5263781, + 13.4476904 + ], + [ + 52.5264037, + 13.4476726 + ], + [ + 52.5264739, + 13.4476175 + ], + [ + 52.5264965, + 13.4475947 + ], + [ + 52.5265261, + 13.4475704 + ], + [ + 52.5265643, + 13.4475313 + ], + [ + 52.5265941, + 13.4475008 + ], + [ + 52.526633, + 13.4474562 + ], + [ + 52.5268095, + 13.4472606 + ] + ] + }, + { + "osmId": "93628045", + "name": null, + "lengthMeters": 350.46372845097386, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5237304, + 13.4387627 + ], + [ + 52.5238376, + 13.4391489 + ], + [ + 52.5238886, + 13.4393247 + ], + [ + 52.5239181, + 13.4394324 + ], + [ + 52.5239556, + 13.4395632 + ], + [ + 52.5239892, + 13.43968 + ], + [ + 52.5241405, + 13.440187 + ], + [ + 52.5243154, + 13.4407777 + ], + [ + 52.5243545, + 13.4409052 + ], + [ + 52.5247967, + 13.4423764 + ], + [ + 52.5249544, + 13.4429177 + ], + [ + 52.5251001, + 13.4434279 + ] + ] + }, + { + "osmId": "93628048", + "name": null, + "lengthMeters": 560.1657682122207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5268095, + 13.4472606 + ], + [ + 52.5270595, + 13.4469945 + ], + [ + 52.5275012, + 13.4465163 + ], + [ + 52.5278132, + 13.4461798 + ], + [ + 52.5288973, + 13.4450101 + ], + [ + 52.5291671, + 13.4447167 + ], + [ + 52.5294108, + 13.4444581 + ], + [ + 52.5295179, + 13.4443444 + ], + [ + 52.529609, + 13.4442454 + ], + [ + 52.5305965, + 13.4431741 + ], + [ + 52.5310203, + 13.442715 + ] + ] + }, + { + "osmId": "93628049", + "name": null, + "lengthMeters": 326.3390396078033, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5214115, + 13.4106778 + ], + [ + 52.5214083, + 13.4106829 + ], + [ + 52.5212339, + 13.4109561 + ], + [ + 52.5208822, + 13.4115103 + ], + [ + 52.5208457, + 13.4115658 + ], + [ + 52.5207634, + 13.4117024 + ], + [ + 52.5207334, + 13.4117821 + ], + [ + 52.5207159, + 13.411857 + ], + [ + 52.5207086, + 13.4119267 + ], + [ + 52.5207081, + 13.4120077 + ], + [ + 52.5207122, + 13.412058 + ], + [ + 52.520722, + 13.4121136 + ], + [ + 52.5207502, + 13.4121967 + ], + [ + 52.520801, + 13.4123004 + ], + [ + 52.5208705, + 13.4124431 + ], + [ + 52.5209499, + 13.4126063 + ], + [ + 52.5210154, + 13.4127409 + ], + [ + 52.5211427, + 13.4130024 + ], + [ + 52.5212191, + 13.4131547 + ], + [ + 52.5215993, + 13.4139131 + ], + [ + 52.5216558, + 13.4140289 + ], + [ + 52.5217066, + 13.4141215 + ], + [ + 52.5217159, + 13.4141385 + ], + [ + 52.5217435, + 13.4141802 + ], + [ + 52.521791, + 13.4142517 + ], + [ + 52.5218584, + 13.4143377 + ] + ] + }, + { + "osmId": "93628050", + "name": null, + "lengthMeters": 383.30272915663136, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232332, + 13.4331858 + ], + [ + 52.5232307, + 13.4334573 + ], + [ + 52.5232304, + 13.4336086 + ], + [ + 52.5232302, + 13.4337741 + ], + [ + 52.5232334, + 13.4339364 + ], + [ + 52.5232389, + 13.4342017 + ], + [ + 52.5232496, + 13.4344654 + ], + [ + 52.5232845, + 13.4353209 + ], + [ + 52.5233056, + 13.4357456 + ], + [ + 52.5233469, + 13.4361471 + ], + [ + 52.5234557, + 13.4369444 + ], + [ + 52.5235301, + 13.4375294 + ], + [ + 52.523608, + 13.4381019 + ], + [ + 52.5236412, + 13.4383489 + ], + [ + 52.5236699, + 13.4385257 + ], + [ + 52.5237304, + 13.4387627 + ] + ] + }, + { + "osmId": "93628051", + "name": null, + "lengthMeters": 307.4638288173524, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5231457, + 13.4286442 + ], + [ + 52.5231636, + 13.4294608 + ], + [ + 52.5231655, + 13.4295333 + ], + [ + 52.5231689, + 13.4296605 + ], + [ + 52.523175, + 13.4299073 + ], + [ + 52.5231768, + 13.4299908 + ], + [ + 52.5231787, + 13.4300831 + ], + [ + 52.5231797, + 13.4301623 + ], + [ + 52.523219, + 13.4317628 + ], + [ + 52.5232364, + 13.4325217 + ], + [ + 52.5232376, + 13.4326193 + ], + [ + 52.5232332, + 13.4331858 + ] + ] + }, + { + "osmId": "93628056", + "name": null, + "lengthMeters": 81.32419757849144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259323, + 13.4462385 + ], + [ + 52.526109, + 13.4468137 + ], + [ + 52.5262196, + 13.4471741 + ], + [ + 52.5262522, + 13.4472796 + ], + [ + 52.5262618, + 13.4473117 + ] + ] + }, + { + "osmId": "93704156", + "name": null, + "lengthMeters": 668.9487520421296, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4572152, + 13.5463903 + ], + [ + 52.4572216, + 13.5462415 + ], + [ + 52.4572319, + 13.5459721 + ], + [ + 52.4572341, + 13.5459332 + ], + [ + 52.4572483, + 13.5457651 + ], + [ + 52.4572666, + 13.5455919 + ], + [ + 52.457294, + 13.5453875 + ], + [ + 52.4573288, + 13.545162 + ], + [ + 52.4573507, + 13.5450027 + ], + [ + 52.4573681, + 13.5448583 + ], + [ + 52.4573823, + 13.5447332 + ], + [ + 52.4574026, + 13.5445794 + ], + [ + 52.457427, + 13.544424 + ], + [ + 52.4575779, + 13.5436031 + ], + [ + 52.457583, + 13.5435736 + ], + [ + 52.4575935, + 13.5435007 + ], + [ + 52.4576043, + 13.5434251 + ], + [ + 52.4576137, + 13.5433438 + ], + [ + 52.4576172, + 13.5432975 + ], + [ + 52.457622, + 13.5432087 + ], + [ + 52.4576245, + 13.5431169 + ], + [ + 52.4576234, + 13.5427206 + ], + [ + 52.4576211, + 13.5424774 + ], + [ + 52.4576213, + 13.542406 + ], + [ + 52.4576221, + 13.5421529 + ], + [ + 52.4576227, + 13.5419543 + ], + [ + 52.4576272, + 13.5404712 + ], + [ + 52.4576282, + 13.5401504 + ], + [ + 52.4576241, + 13.5394706 + ], + [ + 52.4576265, + 13.5392308 + ], + [ + 52.4576182, + 13.5389737 + ], + [ + 52.4576068, + 13.538814 + ], + [ + 52.4575756, + 13.5383791 + ], + [ + 52.457558, + 13.5381714 + ], + [ + 52.4575262, + 13.5377976 + ], + [ + 52.4574596, + 13.5370568 + ], + [ + 52.4574203, + 13.5366193 + ] + ] + }, + { + "osmId": "93704167", + "name": null, + "lengthMeters": 434.2685286942182, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4537663, + 13.6112071 + ], + [ + 52.454005, + 13.6122683 + ], + [ + 52.4540622, + 13.6125228 + ], + [ + 52.4540848, + 13.612629 + ], + [ + 52.454104, + 13.6127143 + ], + [ + 52.454141, + 13.6128781 + ], + [ + 52.4542611, + 13.6134106 + ], + [ + 52.4546318, + 13.6150533 + ], + [ + 52.4546353, + 13.6150681 + ], + [ + 52.4546771, + 13.6152486 + ], + [ + 52.4548223, + 13.6158965 + ], + [ + 52.4549146, + 13.6163115 + ], + [ + 52.4549729, + 13.6165554 + ], + [ + 52.454994, + 13.6166193 + ], + [ + 52.4550796, + 13.6168437 + ], + [ + 52.4551536, + 13.6170642 + ], + [ + 52.455181, + 13.6171717 + ] + ] + }, + { + "osmId": "93704172", + "name": null, + "lengthMeters": 303.2017198360065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530437, + 13.5956275 + ], + [ + 52.4530168, + 13.5959406 + ], + [ + 52.4529875, + 13.5962503 + ], + [ + 52.4529684, + 13.5964412 + ], + [ + 52.4529368, + 13.5966664 + ], + [ + 52.4528762, + 13.5969421 + ], + [ + 52.4528513, + 13.5970398 + ], + [ + 52.4528357, + 13.5971009 + ], + [ + 52.4528169, + 13.5971651 + ], + [ + 52.4527974, + 13.5972317 + ], + [ + 52.4526549, + 13.5976933 + ], + [ + 52.4521416, + 13.5993472 + ], + [ + 52.4520261, + 13.5997403 + ] + ] + }, + { + "osmId": "93704173", + "name": null, + "lengthMeters": 508.5747884776934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4558076, + 13.554452 + ], + [ + 52.4560257, + 13.5528635 + ], + [ + 52.4561318, + 13.5520639 + ], + [ + 52.4561616, + 13.5518497 + ], + [ + 52.4561924, + 13.5516559 + ], + [ + 52.45623, + 13.5514526 + ], + [ + 52.4562731, + 13.5512581 + ], + [ + 52.4563656, + 13.5509021 + ], + [ + 52.4566234, + 13.5501064 + ], + [ + 52.4566866, + 13.5499158 + ], + [ + 52.4568494, + 13.549424 + ], + [ + 52.4569239, + 13.5491772 + ], + [ + 52.4570106, + 13.5488683 + ], + [ + 52.4570726, + 13.5485955 + ], + [ + 52.4571124, + 13.5483458 + ], + [ + 52.4571474, + 13.5481218 + ], + [ + 52.4571761, + 13.5478504 + ], + [ + 52.4571884, + 13.5476728 + ], + [ + 52.4571959, + 13.5475009 + ], + [ + 52.4571978, + 13.5473687 + ] + ] + }, + { + "osmId": "93704175", + "name": null, + "lengthMeters": 536.1795697976469, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777534, + 13.5242468 + ], + [ + 52.4776718, + 13.5241904 + ], + [ + 52.4775869, + 13.5241189 + ], + [ + 52.4775029, + 13.5240438 + ], + [ + 52.477427, + 13.5239646 + ], + [ + 52.4773458, + 13.52388 + ], + [ + 52.4773069, + 13.523838 + ], + [ + 52.4768561, + 13.5233502 + ], + [ + 52.476675, + 13.5231369 + ], + [ + 52.4765517, + 13.5229852 + ], + [ + 52.4762529, + 13.5226497 + ], + [ + 52.4759119, + 13.5222871 + ], + [ + 52.4757172, + 13.5220799 + ], + [ + 52.4750694, + 13.5214035 + ], + [ + 52.4747587, + 13.5210737 + ], + [ + 52.4744498, + 13.5207213 + ], + [ + 52.474283, + 13.5205333 + ], + [ + 52.4741663, + 13.5204016 + ], + [ + 52.4737181, + 13.5199227 + ] + ] + }, + { + "osmId": "93704177", + "name": null, + "lengthMeters": 596.2084667958623, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4519047, + 13.6029561 + ], + [ + 52.4522623, + 13.6045547 + ], + [ + 52.4527081, + 13.606525 + ], + [ + 52.4530292, + 13.6079495 + ], + [ + 52.4531061, + 13.6082856 + ], + [ + 52.4531886, + 13.6086464 + ], + [ + 52.4532165, + 13.6087686 + ], + [ + 52.4533957, + 13.6095657 + ], + [ + 52.4537663, + 13.6112071 + ] + ] + }, + { + "osmId": "93705399", + "name": null, + "lengthMeters": 470.9215240945091, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5200026, + 13.4520403 + ], + [ + 52.5203558, + 13.4518021 + ], + [ + 52.5204543, + 13.4517369 + ], + [ + 52.520572, + 13.4516574 + ], + [ + 52.5208447, + 13.4514716 + ], + [ + 52.5215668, + 13.4509781 + ], + [ + 52.5222098, + 13.4505326 + ], + [ + 52.5223324, + 13.4504476 + ], + [ + 52.5224152, + 13.450388 + ], + [ + 52.5229542, + 13.4500341 + ], + [ + 52.5230955, + 13.449933 + ], + [ + 52.5239147, + 13.4493747 + ] + ] + }, + { + "osmId": "93705409", + "name": null, + "lengthMeters": 353.7422995906169, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291847, + 13.4627381 + ], + [ + 52.5290915, + 13.4632862 + ], + [ + 52.5290591, + 13.4634771 + ], + [ + 52.5289945, + 13.4638532 + ], + [ + 52.528941, + 13.4641789 + ], + [ + 52.5289195, + 13.464305 + ], + [ + 52.5287011, + 13.4655864 + ], + [ + 52.5285769, + 13.4663492 + ], + [ + 52.5284815, + 13.4669207 + ], + [ + 52.52844, + 13.467166 + ], + [ + 52.5283365, + 13.467778 + ] + ] + }, + { + "osmId": "93705424", + "name": null, + "lengthMeters": 519.9016844227666, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4703988, + 13.5898233 + ], + [ + 52.4706562, + 13.5902682 + ], + [ + 52.4707856, + 13.5904972 + ], + [ + 52.4709358, + 13.5907414 + ], + [ + 52.4711301, + 13.591092 + ], + [ + 52.4712471, + 13.5913341 + ], + [ + 52.4712997, + 13.5914522 + ], + [ + 52.4713692, + 13.5916199 + ], + [ + 52.472082, + 13.5934951 + ], + [ + 52.4721966, + 13.5938168 + ], + [ + 52.4723634, + 13.5943115 + ], + [ + 52.4729331, + 13.5962163 + ] + ] + }, + { + "osmId": "93705439", + "name": null, + "lengthMeters": 297.3172021005462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266149, + 13.4485476 + ], + [ + 52.526738, + 13.4490012 + ], + [ + 52.5269737, + 13.4498776 + ], + [ + 52.5271558, + 13.4505387 + ], + [ + 52.5271806, + 13.4506335 + ], + [ + 52.5272266, + 13.4508086 + ], + [ + 52.5272706, + 13.4509682 + ], + [ + 52.5275261, + 13.4519062 + ], + [ + 52.5275663, + 13.4520579 + ], + [ + 52.5276403, + 13.4523333 + ], + [ + 52.5276987, + 13.4525652 + ] + ] + }, + { + "osmId": "93707128", + "name": null, + "lengthMeters": 237.4159202852009, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5168033, + 13.4535377 + ], + [ + 52.5163636, + 13.4536934 + ], + [ + 52.5162921, + 13.4537194 + ], + [ + 52.5159239, + 13.4538507 + ], + [ + 52.5158766, + 13.4538617 + ], + [ + 52.5158128, + 13.4538681 + ], + [ + 52.5157488, + 13.4538706 + ], + [ + 52.515707, + 13.4538662 + ], + [ + 52.5156746, + 13.453862 + ], + [ + 52.5156036, + 13.4538493 + ], + [ + 52.5155464, + 13.453829 + ], + [ + 52.5154601, + 13.4537902 + ], + [ + 52.5147222, + 13.4534534 + ] + ] + }, + { + "osmId": "93707129", + "name": null, + "lengthMeters": 478.51521952534927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.527746, + 13.4793353 + ], + [ + 52.5281312, + 13.4791227 + ], + [ + 52.5287959, + 13.4787431 + ], + [ + 52.5292602, + 13.4784878 + ], + [ + 52.5307745, + 13.477621 + ], + [ + 52.5308327, + 13.4775877 + ], + [ + 52.5309442, + 13.4775288 + ], + [ + 52.531816, + 13.4770377 + ] + ] + }, + { + "osmId": "93707130", + "name": null, + "lengthMeters": 464.1526751942733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535543, + 13.4739531 + ], + [ + 52.5352266, + 13.4742417 + ], + [ + 52.5351647, + 13.4742957 + ], + [ + 52.5346701, + 13.4747315 + ], + [ + 52.5341805, + 13.4751603 + ], + [ + 52.5332949, + 13.4759551 + ], + [ + 52.5331742, + 13.4760578 + ], + [ + 52.5331249, + 13.4760965 + ], + [ + 52.5330738, + 13.4761367 + ], + [ + 52.5329534, + 13.4762242 + ], + [ + 52.5328822, + 13.4762767 + ], + [ + 52.5328313, + 13.4763143 + ], + [ + 52.5327632, + 13.4763641 + ], + [ + 52.532258, + 13.476705 + ], + [ + 52.532227, + 13.476727 + ], + [ + 52.532021, + 13.476864 + ], + [ + 52.5318055, + 13.4769871 + ] + ] + }, + { + "osmId": "93707131", + "name": null, + "lengthMeters": 478.95947696688114, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318055, + 13.4769871 + ], + [ + 52.5309338, + 13.4774797 + ], + [ + 52.5308223, + 13.477539 + ], + [ + 52.5307626, + 13.4775728 + ], + [ + 52.5292439, + 13.4784323 + ], + [ + 52.5287874, + 13.478687 + ], + [ + 52.5281221, + 13.4790767 + ], + [ + 52.5277319, + 13.4792875 + ] + ] + }, + { + "osmId": "93707132", + "name": null, + "lengthMeters": 451.19723970113444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5280566, + 13.4694356 + ], + [ + 52.528014, + 13.4696882 + ], + [ + 52.5279487, + 13.4700703 + ], + [ + 52.5276147, + 13.4720255 + ], + [ + 52.5273383, + 13.4736608 + ], + [ + 52.5273044, + 13.4738649 + ], + [ + 52.5269665, + 13.4758601 + ] + ] + }, + { + "osmId": "93707829", + "name": null, + "lengthMeters": 93.54334425464745, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5360275, + 13.4333694 + ], + [ + 52.5360233, + 13.4333782 + ], + [ + 52.5359746, + 13.4334768 + ], + [ + 52.5359354, + 13.4335558 + ], + [ + 52.5354998, + 13.4344465 + ] + ] + }, + { + "osmId": "93707830", + "name": null, + "lengthMeters": 280.1613922579568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5342035, + 13.4398321 + ], + [ + 52.5344966, + 13.4402282 + ], + [ + 52.5345589, + 13.4403095 + ], + [ + 52.5345768, + 13.4403495 + ], + [ + 52.5345921, + 13.4403975 + ], + [ + 52.5346042, + 13.4404651 + ], + [ + 52.5346099, + 13.4405466 + ], + [ + 52.5346097, + 13.4405882 + ], + [ + 52.5346095, + 13.4406344 + ], + [ + 52.534608, + 13.440665 + ], + [ + 52.5346012, + 13.44071 + ], + [ + 52.534586, + 13.4407543 + ], + [ + 52.5343737, + 13.4412036 + ], + [ + 52.5342976, + 13.4413647 + ], + [ + 52.5341633, + 13.441649 + ], + [ + 52.5340304, + 13.4419388 + ], + [ + 52.5338695, + 13.4422794 + ], + [ + 52.5335007, + 13.44306 + ] + ] + }, + { + "osmId": "93707831", + "name": null, + "lengthMeters": 383.9022389022692, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5395227, + 13.421962 + ], + [ + 52.5392887, + 13.4234694 + ], + [ + 52.5392646, + 13.4236249 + ], + [ + 52.5392484, + 13.4237336 + ], + [ + 52.5392347, + 13.4238249 + ], + [ + 52.5392215, + 13.4239137 + ], + [ + 52.5392066, + 13.4240065 + ], + [ + 52.5391932, + 13.4240848 + ], + [ + 52.5391733, + 13.4241899 + ], + [ + 52.5391641, + 13.4242327 + ], + [ + 52.5391414, + 13.4243292 + ], + [ + 52.5391183, + 13.4244138 + ], + [ + 52.5390905, + 13.4245043 + ], + [ + 52.5390686, + 13.4245736 + ], + [ + 52.5390269, + 13.4246978 + ], + [ + 52.5384585, + 13.4263493 + ], + [ + 52.5384237, + 13.4264511 + ], + [ + 52.5383853, + 13.4265641 + ], + [ + 52.5383556, + 13.4266512 + ], + [ + 52.5381865, + 13.4271475 + ] + ] + }, + { + "osmId": "93707832", + "name": null, + "lengthMeters": 731.2044353690517, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368133, + 13.4337672 + ], + [ + 52.5370099, + 13.4339897 + ], + [ + 52.5375762, + 13.4346526 + ], + [ + 52.5382291, + 13.4354179 + ], + [ + 52.5388552, + 13.436141 + ], + [ + 52.5395342, + 13.436935 + ], + [ + 52.5397855, + 13.4372074 + ], + [ + 52.5401429, + 13.4376005 + ], + [ + 52.5401905, + 13.437649 + ], + [ + 52.5407284, + 13.4382788 + ], + [ + 52.5409522, + 13.4385365 + ], + [ + 52.541096, + 13.4387054 + ], + [ + 52.5411975, + 13.4388321 + ], + [ + 52.5413005, + 13.4389618 + ], + [ + 52.5413976, + 13.4390818 + ], + [ + 52.5417306, + 13.4394831 + ], + [ + 52.542183, + 13.4400061 + ] + ] + }, + { + "osmId": "93707833", + "name": null, + "lengthMeters": 481.5526480001593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328403, + 13.4400776 + ], + [ + 52.5332364, + 13.4392493 + ], + [ + 52.533289, + 13.4391393 + ], + [ + 52.5333169, + 13.439081 + ], + [ + 52.5335338, + 13.4386274 + ], + [ + 52.5335507, + 13.4385921 + ], + [ + 52.5339695, + 13.4377292 + ], + [ + 52.5340395, + 13.437584 + ], + [ + 52.5341038, + 13.4374506 + ], + [ + 52.5341712, + 13.4373112 + ], + [ + 52.5342155, + 13.4372186 + ], + [ + 52.5346626, + 13.4362797 + ], + [ + 52.5355229, + 13.4344885 + ] + ] + }, + { + "osmId": "93852620", + "name": null, + "lengthMeters": 656.8450389170138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5340228, + 13.5559858 + ], + [ + 52.534039, + 13.5561679 + ], + [ + 52.5340651, + 13.5563505 + ], + [ + 52.5341058, + 13.5565435 + ], + [ + 52.5341452, + 13.556686 + ], + [ + 52.534171, + 13.5567691 + ], + [ + 52.5341992, + 13.5568506 + ], + [ + 52.5342389, + 13.5569553 + ], + [ + 52.5342759, + 13.5570407 + ], + [ + 52.5343147, + 13.5571239 + ], + [ + 52.5343533, + 13.5571968 + ], + [ + 52.534394, + 13.5572659 + ], + [ + 52.5344191, + 13.5573084 + ], + [ + 52.5344552, + 13.5573633 + ], + [ + 52.5344912, + 13.5574154 + ], + [ + 52.534529, + 13.5574655 + ], + [ + 52.5345668, + 13.5575128 + ], + [ + 52.5346067, + 13.5575569 + ], + [ + 52.5346466, + 13.5575986 + ], + [ + 52.5347281, + 13.5576781 + ], + [ + 52.5347942, + 13.5577356 + ], + [ + 52.5350819, + 13.557975 + ], + [ + 52.5351566, + 13.5580366 + ], + [ + 52.5363201, + 13.5590141 + ], + [ + 52.537233, + 13.5597736 + ], + [ + 52.5373542, + 13.5598756 + ], + [ + 52.5374764, + 13.5599784 + ], + [ + 52.5380642, + 13.5604679 + ], + [ + 52.5388356, + 13.5611139 + ] + ] + }, + { + "osmId": "93852621", + "name": null, + "lengthMeters": 546.1988882673188, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388356, + 13.5611139 + ], + [ + 52.5392548, + 13.5614621 + ], + [ + 52.5393011, + 13.5615016 + ], + [ + 52.5403473, + 13.5623756 + ], + [ + 52.5413836, + 13.5632422 + ], + [ + 52.5415157, + 13.5633521 + ], + [ + 52.5416217, + 13.5634411 + ], + [ + 52.542096, + 13.5638356 + ], + [ + 52.5422168, + 13.5639363 + ], + [ + 52.5422508, + 13.5639648 + ], + [ + 52.5423339, + 13.5640309 + ], + [ + 52.5424196, + 13.5640929 + ], + [ + 52.5425069, + 13.5641508 + ], + [ + 52.5425934, + 13.5642052 + ], + [ + 52.5426748, + 13.5642529 + ], + [ + 52.5427562, + 13.5642964 + ], + [ + 52.5429198, + 13.5643765 + ], + [ + 52.5430981, + 13.5644447 + ], + [ + 52.5432772, + 13.5645102 + ] + ] + }, + { + "osmId": "93852623", + "name": null, + "lengthMeters": 447.5665444763089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5449294, + 13.5645887 + ], + [ + 52.5456993, + 13.5643587 + ], + [ + 52.5458387, + 13.5643078 + ], + [ + 52.5459418, + 13.5642588 + ], + [ + 52.5460263, + 13.5642108 + ], + [ + 52.5461082, + 13.5641585 + ], + [ + 52.5461788, + 13.5641056 + ], + [ + 52.5462505, + 13.5640493 + ], + [ + 52.5463499, + 13.5639574 + ], + [ + 52.5464275, + 13.5638787 + ], + [ + 52.5465126, + 13.5637797 + ], + [ + 52.5465568, + 13.5637232 + ], + [ + 52.5466011, + 13.5636654 + ], + [ + 52.5466637, + 13.5635724 + ], + [ + 52.5467263, + 13.5634762 + ], + [ + 52.5467979, + 13.5633486 + ], + [ + 52.5468654, + 13.5632177 + ], + [ + 52.5469199, + 13.5630999 + ], + [ + 52.546971, + 13.5629779 + ], + [ + 52.5470211, + 13.562841 + ], + [ + 52.5470678, + 13.5627027 + ], + [ + 52.5471065, + 13.5625739 + ], + [ + 52.5471409, + 13.5624446 + ], + [ + 52.5471626, + 13.5623522 + ], + [ + 52.5471816, + 13.5622593 + ], + [ + 52.5472135, + 13.5621038 + ], + [ + 52.5472419, + 13.5619438 + ], + [ + 52.5474117, + 13.5609668 + ], + [ + 52.5474571, + 13.5606989 + ], + [ + 52.5475099, + 13.5603791 + ] + ] + }, + { + "osmId": "93852624", + "name": null, + "lengthMeters": 223.89769237118585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5450473, + 13.5676036 + ], + [ + 52.5451062, + 13.567829 + ], + [ + 52.5452003, + 13.5682055 + ], + [ + 52.5453463, + 13.5687766 + ], + [ + 52.5454475, + 13.5691429 + ], + [ + 52.5455592, + 13.5695669 + ], + [ + 52.545668, + 13.5699698 + ], + [ + 52.5458452, + 13.5706434 + ] + ] + }, + { + "osmId": "93852766", + "name": null, + "lengthMeters": 318.96989539067647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5454136, + 13.5100043 + ], + [ + 52.5446628, + 13.5104611 + ], + [ + 52.5439174, + 13.5109735 + ], + [ + 52.5433601, + 13.5113819 + ], + [ + 52.5427675, + 13.5118209 + ] + ] + }, + { + "osmId": "93852768", + "name": null, + "lengthMeters": 948.7227236292715, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5346039, + 13.5009198 + ], + [ + 52.534655, + 13.5017625 + ], + [ + 52.5346936, + 13.5026194 + ], + [ + 52.5347201, + 13.5031262 + ], + [ + 52.5347429, + 13.5034963 + ], + [ + 52.5348589, + 13.5053762 + ], + [ + 52.5348625, + 13.5054374 + ], + [ + 52.5348696, + 13.5055564 + ], + [ + 52.5348757, + 13.5056502 + ], + [ + 52.5348805, + 13.5057232 + ], + [ + 52.5349408, + 13.5066484 + ], + [ + 52.5351151, + 13.5094071 + ], + [ + 52.5351453, + 13.5098789 + ], + [ + 52.5352349, + 13.5112312 + ], + [ + 52.5352887, + 13.5120833 + ], + [ + 52.5354182, + 13.5139437 + ], + [ + 52.5354223, + 13.5140165 + ], + [ + 52.5354286, + 13.5141297 + ], + [ + 52.5354332, + 13.5142219 + ], + [ + 52.5354371, + 13.5142864 + ], + [ + 52.5354408, + 13.5144342 + ], + [ + 52.5354404, + 13.5145701 + ], + [ + 52.5354361, + 13.5148756 + ] + ] + }, + { + "osmId": "93852769", + "name": null, + "lengthMeters": 75.53532616547005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5383843, + 13.5307729 + ], + [ + 52.5383241, + 13.5305108 + ], + [ + 52.53818, + 13.529883 + ], + [ + 52.5381454, + 13.5297274 + ] + ] + }, + { + "osmId": "93852770", + "name": null, + "lengthMeters": 78.40762287533586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467201, + 13.5575158 + ], + [ + 52.5466741, + 13.5574843 + ], + [ + 52.5465019, + 13.5573621 + ], + [ + 52.5460716, + 13.5570605 + ] + ] + }, + { + "osmId": "93852771", + "name": null, + "lengthMeters": 263.3298879502504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5438386, + 13.5523585 + ], + [ + 52.543444, + 13.5510319 + ], + [ + 52.543238, + 13.5503462 + ], + [ + 52.5432161, + 13.5502733 + ], + [ + 52.5431403, + 13.5500176 + ], + [ + 52.5431018, + 13.5498882 + ], + [ + 52.5430269, + 13.5496336 + ], + [ + 52.542795, + 13.548863 + ] + ] + }, + { + "osmId": "93861028", + "name": null, + "lengthMeters": 117.54838962447272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5698477, + 13.4060406 + ], + [ + 52.5700328, + 13.4067533 + ], + [ + 52.5700558, + 13.4068492 + ], + [ + 52.5700685, + 13.406913 + ], + [ + 52.5700813, + 13.4069762 + ], + [ + 52.570089, + 13.4070168 + ], + [ + 52.5700981, + 13.4070664 + ], + [ + 52.5701073, + 13.4071215 + ], + [ + 52.5701239, + 13.4072228 + ], + [ + 52.5701546, + 13.407415 + ], + [ + 52.5701707, + 13.4075104 + ], + [ + 52.5702025, + 13.4076756 + ] + ] + }, + { + "osmId": "93861029", + "name": null, + "lengthMeters": 619.4582145152046, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5603491, + 13.4340807 + ], + [ + 52.5607511, + 13.4342562 + ], + [ + 52.5608933, + 13.434321 + ], + [ + 52.5611287, + 13.4344095 + ], + [ + 52.5615033, + 13.4345566 + ], + [ + 52.5619153, + 13.4347209 + ], + [ + 52.5622499, + 13.4348544 + ], + [ + 52.5625348, + 13.4349679 + ], + [ + 52.5625627, + 13.4349792 + ], + [ + 52.5629128, + 13.4351264 + ], + [ + 52.5630224, + 13.435166 + ], + [ + 52.5637583, + 13.4354474 + ], + [ + 52.5641232, + 13.4355985 + ], + [ + 52.5643044, + 13.4356751 + ], + [ + 52.5644929, + 13.4357453 + ], + [ + 52.5647668, + 13.4358516 + ], + [ + 52.5653634, + 13.4360911 + ], + [ + 52.5654292, + 13.436116 + ], + [ + 52.5654729, + 13.4361327 + ], + [ + 52.5655149, + 13.4361502 + ], + [ + 52.565549, + 13.4361665 + ], + [ + 52.5655734, + 13.4361835 + ], + [ + 52.5655943, + 13.4362008 + ], + [ + 52.5656144, + 13.4362207 + ], + [ + 52.5656352, + 13.4362438 + ], + [ + 52.5656529, + 13.4362681 + ], + [ + 52.5657153, + 13.4363898 + ] + ] + }, + { + "osmId": "93861034", + "name": null, + "lengthMeters": 93.79681063443243, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113226, + 13.451941 + ], + [ + 52.5109411, + 13.4517675 + ], + [ + 52.5108376, + 13.4517216 + ], + [ + 52.510749, + 13.4516818 + ], + [ + 52.5106857, + 13.4516535 + ], + [ + 52.5105995, + 13.4516102 + ], + [ + 52.510511, + 13.4515638 + ] + ] + }, + { + "osmId": "93861039", + "name": null, + "lengthMeters": 719.4659296171576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984785, + 13.4819223 + ], + [ + 52.497412, + 13.4842289 + ], + [ + 52.4971668, + 13.4847623 + ], + [ + 52.4970725, + 13.4849666 + ], + [ + 52.496719, + 13.4857323 + ], + [ + 52.4966371, + 13.4859059 + ], + [ + 52.4960454, + 13.48717 + ], + [ + 52.4958797, + 13.4875399 + ], + [ + 52.4957913, + 13.487695 + ], + [ + 52.4956948, + 13.4878563 + ], + [ + 52.4956527, + 13.487916 + ], + [ + 52.4956149, + 13.4879642 + ], + [ + 52.495528, + 13.4880667 + ], + [ + 52.4953548, + 13.4882521 + ], + [ + 52.4950756, + 13.4885462 + ], + [ + 52.4947762, + 13.48886 + ], + [ + 52.494361, + 13.4893094 + ], + [ + 52.4941073, + 13.4895921 + ] + ] + }, + { + "osmId": "93861041", + "name": null, + "lengthMeters": 171.02889826920827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5700897, + 13.4058628 + ], + [ + 52.5700695, + 13.4057846 + ], + [ + 52.5700399, + 13.4056722 + ], + [ + 52.5700136, + 13.4055786 + ], + [ + 52.5699979, + 13.4055283 + ], + [ + 52.5699781, + 13.4054683 + ], + [ + 52.5699592, + 13.4054137 + ], + [ + 52.5699468, + 13.4053794 + ], + [ + 52.5699327, + 13.4053443 + ], + [ + 52.569886, + 13.4052329 + ], + [ + 52.5697825, + 13.4049635 + ], + [ + 52.569743, + 13.4048486 + ], + [ + 52.5697145, + 13.404757 + ], + [ + 52.5696882, + 13.4046678 + ], + [ + 52.5696793, + 13.4046349 + ], + [ + 52.5696089, + 13.4043601 + ], + [ + 52.5695393, + 13.4040663 + ], + [ + 52.5694816, + 13.4038045 + ], + [ + 52.5694706, + 13.403753 + ], + [ + 52.5694469, + 13.4036365 + ], + [ + 52.5694363, + 13.4035824 + ] + ] + }, + { + "osmId": "93861042", + "name": null, + "lengthMeters": 360.7213889874759, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112753, + 13.4521703 + ], + [ + 52.5122375, + 13.4526058 + ], + [ + 52.5123245, + 13.452645 + ], + [ + 52.5124379, + 13.4526944 + ], + [ + 52.512562, + 13.4527485 + ], + [ + 52.5130953, + 13.4529905 + ], + [ + 52.5132815, + 13.4530742 + ], + [ + 52.5134749, + 13.4531583 + ], + [ + 52.5136031, + 13.4532178 + ], + [ + 52.5136766, + 13.4532531 + ], + [ + 52.5140555, + 13.4534191 + ], + [ + 52.514088, + 13.4534334 + ], + [ + 52.5141733, + 13.4534707 + ], + [ + 52.5144046, + 13.4535752 + ] + ] + }, + { + "osmId": "93861043", + "name": null, + "lengthMeters": 652.7121766468085, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941073, + 13.4895921 + ], + [ + 52.4936197, + 13.4901066 + ], + [ + 52.4936157, + 13.4901109 + ], + [ + 52.4934995, + 13.490236 + ], + [ + 52.4934232, + 13.4903135 + ], + [ + 52.4931464, + 13.4906093 + ], + [ + 52.4930385, + 13.4907158 + ], + [ + 52.4928438, + 13.4909286 + ], + [ + 52.4925395, + 13.491283 + ], + [ + 52.492253, + 13.4915861 + ], + [ + 52.4919293, + 13.491921 + ], + [ + 52.491808, + 13.4920466 + ], + [ + 52.4915231, + 13.4923508 + ], + [ + 52.4910061, + 13.4928879 + ], + [ + 52.4905643, + 13.4933491 + ], + [ + 52.4899159, + 13.4940193 + ], + [ + 52.4891677, + 13.4947987 + ] + ] + }, + { + "osmId": "93861045", + "name": null, + "lengthMeters": 809.390666801115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4865397, + 13.4975274 + ], + [ + 52.4859336, + 13.4981663 + ], + [ + 52.4858677, + 13.4982345 + ], + [ + 52.4857682, + 13.4983376 + ], + [ + 52.4845299, + 13.4996207 + ], + [ + 52.4840588, + 13.5001346 + ], + [ + 52.4835959, + 13.5006626 + ], + [ + 52.4833348, + 13.500955 + ], + [ + 52.4833008, + 13.5009954 + ], + [ + 52.4832776, + 13.5010297 + ], + [ + 52.4832606, + 13.5010572 + ], + [ + 52.483246, + 13.5010878 + ], + [ + 52.4832395, + 13.5011084 + ], + [ + 52.483224, + 13.5011453 + ], + [ + 52.4832138, + 13.5011823 + ], + [ + 52.483207, + 13.5012174 + ], + [ + 52.4832005, + 13.5012505 + ], + [ + 52.4831971, + 13.5012996 + ], + [ + 52.4831965, + 13.5013462 + ], + [ + 52.4831984, + 13.5013925 + ], + [ + 52.4832052, + 13.5014477 + ], + [ + 52.4832175, + 13.5015069 + ], + [ + 52.48329, + 13.50179 + ], + [ + 52.4833245, + 13.5019347 + ], + [ + 52.4833627, + 13.5020856 + ], + [ + 52.4833979, + 13.5022214 + ], + [ + 52.4834344, + 13.5023624 + ], + [ + 52.4838331, + 13.5039413 + ], + [ + 52.4842017, + 13.505407 + ], + [ + 52.4842481, + 13.5055908 + ], + [ + 52.4842615, + 13.5056454 + ], + [ + 52.4842761, + 13.5057044 + ], + [ + 52.4842867, + 13.505754 + ], + [ + 52.4842982, + 13.5058121 + ], + [ + 52.4843053, + 13.5058504 + ], + [ + 52.4843099, + 13.5058829 + ], + [ + 52.484318, + 13.5059421 + ], + [ + 52.4843235, + 13.5059965 + ], + [ + 52.484327, + 13.5060459 + ], + [ + 52.48433, + 13.5060909 + ], + [ + 52.4843322, + 13.5061813 + ] + ] + }, + { + "osmId": "93861047", + "name": null, + "lengthMeters": 242.45498043899437, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887818, + 13.4952007 + ], + [ + 52.4882744, + 13.4957245 + ], + [ + 52.4881352, + 13.495864 + ], + [ + 52.4880988, + 13.495902 + ], + [ + 52.4879497, + 13.4960576 + ], + [ + 52.4877921, + 13.4962219 + ], + [ + 52.4869382, + 13.4971126 + ] + ] + }, + { + "osmId": "94123793", + "name": null, + "lengthMeters": 127.65965391534738, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5719046, + 10.0676689 + ], + [ + 53.571886, + 10.067574 + ], + [ + 53.5717341, + 10.0667845 + ], + [ + 53.5715501, + 10.06583 + ] + ] + }, + { + "osmId": "94131327", + "name": null, + "lengthMeters": 241.3219008396747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5562964, + 13.4672811 + ], + [ + 52.5561619, + 13.4673284 + ], + [ + 52.556027, + 13.4673691 + ], + [ + 52.5559271, + 13.4673993 + ], + [ + 52.5556112, + 13.4674744 + ], + [ + 52.5553558, + 13.4675301 + ], + [ + 52.5551207, + 13.4675744 + ], + [ + 52.554999, + 13.4675866 + ], + [ + 52.5549263, + 13.4675909 + ], + [ + 52.5548891, + 13.4675929 + ], + [ + 52.5546509, + 13.467606 + ], + [ + 52.5544721, + 13.4676147 + ], + [ + 52.554375, + 13.4676195 + ], + [ + 52.5542303, + 13.4676063 + ], + [ + 52.554141, + 13.4676005 + ] + ] + }, + { + "osmId": "94131331", + "name": null, + "lengthMeters": 236.9957946557588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5505445, + 13.4611445 + ], + [ + 52.5506416, + 13.4615936 + ], + [ + 52.5507664, + 13.4621713 + ], + [ + 52.5508444, + 13.4624902 + ], + [ + 52.5509932, + 13.4630454 + ], + [ + 52.5510495, + 13.4632413 + ], + [ + 52.5511013, + 13.4634071 + ], + [ + 52.5511377, + 13.4635172 + ], + [ + 52.5511895, + 13.4636581 + ], + [ + 52.5512418, + 13.463791 + ], + [ + 52.5513438, + 13.4640223 + ], + [ + 52.5514637, + 13.4642843 + ] + ] + }, + { + "osmId": "94131341", + "name": null, + "lengthMeters": 958.2576172905972, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5480058, + 13.4502422 + ], + [ + 52.5476524, + 13.4494508 + ], + [ + 52.5476011, + 13.4493353 + ], + [ + 52.5472987, + 13.4486827 + ], + [ + 52.5472039, + 13.4484812 + ], + [ + 52.5471464, + 13.4483522 + ], + [ + 52.5470963, + 13.44823 + ], + [ + 52.54706, + 13.4481278 + ], + [ + 52.5470047, + 13.4479699 + ], + [ + 52.5469247, + 13.4477547 + ], + [ + 52.5466673, + 13.447173 + ], + [ + 52.546062, + 13.4458501 + ], + [ + 52.5459785, + 13.4456661 + ], + [ + 52.5457311, + 13.445119 + ], + [ + 52.5456523, + 13.4449442 + ], + [ + 52.5456067, + 13.4448461 + ], + [ + 52.5455717, + 13.4447711 + ], + [ + 52.5453945, + 13.4443828 + ], + [ + 52.5453714, + 13.4443314 + ], + [ + 52.5453149, + 13.4442058 + ], + [ + 52.5452604, + 13.4440879 + ], + [ + 52.5450643, + 13.4436625 + ], + [ + 52.5449802, + 13.4434974 + ], + [ + 52.5448766, + 13.4433178 + ], + [ + 52.5446577, + 13.4429638 + ], + [ + 52.5445775, + 13.4428354 + ], + [ + 52.5444917, + 13.4427142 + ], + [ + 52.5442677, + 13.4424346 + ], + [ + 52.5439801, + 13.4420997 + ], + [ + 52.5435991, + 13.4416553 + ], + [ + 52.5434614, + 13.4414977 + ], + [ + 52.5433831, + 13.4414098 + ], + [ + 52.5432957, + 13.4413116 + ], + [ + 52.542183, + 13.4400061 + ] + ] + }, + { + "osmId": "94131345", + "name": null, + "lengthMeters": 343.35443119124, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494905, + 13.456372 + ], + [ + 52.5495381, + 13.4565957 + ], + [ + 52.5497061, + 13.4573677 + ], + [ + 52.5497832, + 13.4577221 + ], + [ + 52.5498869, + 13.4581986 + ], + [ + 52.5499197, + 13.4583435 + ], + [ + 52.5499569, + 13.4584932 + ], + [ + 52.5499947, + 13.4586412 + ], + [ + 52.5500308, + 13.4587811 + ], + [ + 52.5500638, + 13.4589326 + ], + [ + 52.5502864, + 13.4599464 + ], + [ + 52.5505445, + 13.4611445 + ] + ] + }, + { + "osmId": "94131351", + "name": null, + "lengthMeters": 323.7183251601185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537552, + 13.4689553 + ], + [ + 52.5537492, + 13.4690268 + ], + [ + 52.5536944, + 13.469711 + ], + [ + 52.5536757, + 13.4699582 + ], + [ + 52.5536627, + 13.4701387 + ], + [ + 52.5536521, + 13.4702847 + ], + [ + 52.5536393, + 13.4704592 + ], + [ + 52.5536297, + 13.4705909 + ], + [ + 52.5535241, + 13.4721065 + ], + [ + 52.5534368, + 13.4737141 + ] + ] + }, + { + "osmId": "94131355", + "name": null, + "lengthMeters": 499.1606509964942, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406395, + 13.4148133 + ], + [ + 52.5405218, + 13.4155645 + ], + [ + 52.5404315, + 13.416138 + ], + [ + 52.5403974, + 13.4163582 + ], + [ + 52.5403624, + 13.4165809 + ], + [ + 52.5401875, + 13.4177272 + ], + [ + 52.5401177, + 13.418185 + ], + [ + 52.5400198, + 13.418797 + ], + [ + 52.5399725, + 13.4191052 + ], + [ + 52.5396034, + 13.4214418 + ], + [ + 52.5395792, + 13.4216025 + ], + [ + 52.5395408, + 13.4218456 + ], + [ + 52.5395227, + 13.421962 + ] + ] + }, + { + "osmId": "94131365", + "name": null, + "lengthMeters": 313.3911275805442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494905, + 13.456372 + ], + [ + 52.5494516, + 13.4561964 + ], + [ + 52.549231, + 13.4551939 + ], + [ + 52.5491033, + 13.4545976 + ], + [ + 52.5490126, + 13.4541802 + ], + [ + 52.5486561, + 13.452549 + ], + [ + 52.5485374, + 13.4520102 + ] + ] + }, + { + "osmId": "94131369", + "name": null, + "lengthMeters": 548.380234426385, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5277559, + 13.416434 + ], + [ + 52.5278448, + 13.4165112 + ], + [ + 52.5282239, + 13.4168342 + ], + [ + 52.5284015, + 13.4169857 + ], + [ + 52.5285011, + 13.4170751 + ], + [ + 52.5286578, + 13.4172224 + ], + [ + 52.5291782, + 13.4177566 + ], + [ + 52.5296302, + 13.4182259 + ], + [ + 52.5297433, + 13.418336 + ], + [ + 52.5299459, + 13.4185094 + ], + [ + 52.530361, + 13.418849 + ], + [ + 52.530539, + 13.418999 + ], + [ + 52.5305646, + 13.4190219 + ], + [ + 52.5306109, + 13.4190629 + ], + [ + 52.5306612, + 13.4191078 + ], + [ + 52.5307156, + 13.4191546 + ], + [ + 52.5308086, + 13.4192353 + ], + [ + 52.5309197, + 13.4193224 + ], + [ + 52.5310449, + 13.419415 + ], + [ + 52.531151, + 13.4194861 + ], + [ + 52.5312171, + 13.4195273 + ], + [ + 52.5313329, + 13.4196009 + ], + [ + 52.5316701, + 13.4198004 + ], + [ + 52.5317668, + 13.4198574 + ], + [ + 52.5318428, + 13.4199023 + ], + [ + 52.5321442, + 13.4200846 + ] + ] + }, + { + "osmId": "94133640", + "name": null, + "lengthMeters": 142.37081130638646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5418874, + 13.4120703 + ], + [ + 52.5411784, + 13.4120319 + ], + [ + 52.5411315, + 13.41203 + ], + [ + 52.5410878, + 13.412032 + ], + [ + 52.5410704, + 13.4120341 + ], + [ + 52.5410148, + 13.4120397 + ], + [ + 52.5409984, + 13.4120401 + ], + [ + 52.5409569, + 13.4120403 + ], + [ + 52.5409175, + 13.4120394 + ], + [ + 52.540902, + 13.4120388 + ], + [ + 52.5408875, + 13.4120367 + ], + [ + 52.54087, + 13.4120324 + ], + [ + 52.5408565, + 13.4120284 + ], + [ + 52.5408349, + 13.4120188 + ], + [ + 52.5408159, + 13.4120089 + ], + [ + 52.5407822, + 13.4119875 + ], + [ + 52.540753, + 13.4119653 + ], + [ + 52.5407313, + 13.4119462 + ], + [ + 52.5407088, + 13.4119237 + ], + [ + 52.5406363, + 13.411845 + ] + ] + }, + { + "osmId": "94133654", + "name": null, + "lengthMeters": 674.5281925585233, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5418735, + 13.4123222 + ], + [ + 52.5420204, + 13.4123362 + ], + [ + 52.5425492, + 13.4123754 + ], + [ + 52.542842, + 13.412401 + ], + [ + 52.5431445, + 13.4124275 + ], + [ + 52.5432347, + 13.412436 + ], + [ + 52.5436789, + 13.4124781 + ], + [ + 52.5438028, + 13.4124988 + ], + [ + 52.5443369, + 13.4126383 + ], + [ + 52.54442, + 13.41266 + ], + [ + 52.5452373, + 13.4128756 + ], + [ + 52.5453833, + 13.4129141 + ], + [ + 52.5454506, + 13.4129343 + ], + [ + 52.5456515, + 13.4129878 + ], + [ + 52.546607, + 13.4132421 + ], + [ + 52.5469972, + 13.4133459 + ], + [ + 52.5475359, + 13.4134899 + ], + [ + 52.547548, + 13.413493 + ], + [ + 52.5476456, + 13.4135167 + ], + [ + 52.5477433, + 13.4135383 + ], + [ + 52.5478853, + 13.4135629 + ] + ] + }, + { + "osmId": "94351498", + "name": null, + "lengthMeters": 217.3359739511838, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249662, + 13.4202906 + ], + [ + 52.5249409, + 13.420359 + ], + [ + 52.5247969, + 13.4207354 + ], + [ + 52.5246157, + 13.4212201 + ], + [ + 52.5245169, + 13.4215596 + ], + [ + 52.5244621, + 13.4217453 + ], + [ + 52.5243742, + 13.4219873 + ], + [ + 52.524172, + 13.4225264 + ], + [ + 52.52398, + 13.4230613 + ] + ] + }, + { + "osmId": "94351499", + "name": null, + "lengthMeters": 84.83719110234298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253413, + 13.4195658 + ], + [ + 52.5253573, + 13.419528 + ], + [ + 52.5254182, + 13.4193823 + ], + [ + 52.5257751, + 13.4185342 + ] + ] + }, + { + "osmId": "94351501", + "name": null, + "lengthMeters": 131.22001241868298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286187, + 13.424319 + ], + [ + 52.528854, + 13.4246058 + ], + [ + 52.5289165, + 13.4246789 + ], + [ + 52.5292266, + 13.4250516 + ], + [ + 52.5295809, + 13.4254413 + ] + ] + }, + { + "osmId": "94351504", + "name": null, + "lengthMeters": 378.1467224671256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259577, + 13.42084 + ], + [ + 52.5262348, + 13.4211887 + ], + [ + 52.5265008, + 13.4215329 + ], + [ + 52.5266429, + 13.4217248 + ], + [ + 52.5270827, + 13.4222998 + ], + [ + 52.5276542, + 13.4230672 + ], + [ + 52.527891, + 13.4233921 + ], + [ + 52.528038, + 13.4235952 + ], + [ + 52.5281629, + 13.4237626 + ], + [ + 52.5282537, + 13.4238759 + ], + [ + 52.528405, + 13.4240613 + ], + [ + 52.5286187, + 13.424319 + ] + ] + }, + { + "osmId": "94746060", + "name": null, + "lengthMeters": 1152.9952017152796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1394315, + 11.5755364 + ], + [ + 48.1395059, + 11.5752347 + ], + [ + 48.1396412, + 11.5747295 + ], + [ + 48.139721, + 11.5744175 + ], + [ + 48.1398595, + 11.5738965 + ], + [ + 48.1399065, + 11.5737697 + ], + [ + 48.1399257, + 11.5737345 + ], + [ + 48.1399474, + 11.573695 + ], + [ + 48.1399982, + 11.5736081 + ], + [ + 48.1400126, + 11.5735835 + ], + [ + 48.1400635, + 11.5734826 + ], + [ + 48.1401115, + 11.5733806 + ], + [ + 48.1401514, + 11.5732712 + ], + [ + 48.1401968, + 11.5730912 + ], + [ + 48.1404485, + 11.5721214 + ], + [ + 48.1404626, + 11.5720201 + ], + [ + 48.1404703, + 11.5718863 + ], + [ + 48.1404799, + 11.5717072 + ], + [ + 48.1404827, + 11.5716651 + ], + [ + 48.1404905, + 11.5715977 + ], + [ + 48.1405106, + 11.5714504 + ], + [ + 48.1405347, + 11.5713213 + ], + [ + 48.1405464, + 11.5712502 + ], + [ + 48.1406607, + 11.5705448 + ], + [ + 48.1407792, + 11.5698053 + ], + [ + 48.1408085, + 11.5696849 + ], + [ + 48.1408441, + 11.5695627 + ], + [ + 48.1409179, + 11.5693312 + ], + [ + 48.1409378, + 11.5692757 + ], + [ + 48.1409633, + 11.5692047 + ], + [ + 48.1409736, + 11.5691779 + ], + [ + 48.1409757, + 11.5691708 + ], + [ + 48.1409858, + 11.5691359 + ], + [ + 48.1409943, + 11.5691043 + ], + [ + 48.141005, + 11.5690471 + ], + [ + 48.1410088, + 11.5690223 + ], + [ + 48.1410106, + 11.5689945 + ], + [ + 48.1410115, + 11.5689694 + ], + [ + 48.1410114, + 11.5689448 + ], + [ + 48.1410106, + 11.5689208 + ], + [ + 48.1410064, + 11.5688805 + ], + [ + 48.1409984, + 11.5688369 + ], + [ + 48.1409905, + 11.5687997 + ], + [ + 48.1409799, + 11.5687639 + ], + [ + 48.140884, + 11.5685066 + ], + [ + 48.1408543, + 11.5684269 + ], + [ + 48.1407924, + 11.5682613 + ], + [ + 48.1407111, + 11.5680804 + ], + [ + 48.1406358, + 11.5679201 + ], + [ + 48.1405888, + 11.5678183 + ], + [ + 48.1405698, + 11.5677728 + ], + [ + 48.140553, + 11.5677282 + ], + [ + 48.140542, + 11.5676926 + ], + [ + 48.1405345, + 11.5676591 + ], + [ + 48.1405236, + 11.5676179 + ], + [ + 48.1405148, + 11.5675716 + ], + [ + 48.1405078, + 11.5675304 + ], + [ + 48.140504, + 11.5674882 + ], + [ + 48.1405001, + 11.567442 + ], + [ + 48.1404993, + 11.5673944 + ], + [ + 48.1404994, + 11.5671657 + ], + [ + 48.1404946, + 11.5670625 + ], + [ + 48.1404911, + 11.5670164 + ], + [ + 48.1404871, + 11.566982 + ], + [ + 48.1404849, + 11.5669619 + ], + [ + 48.140476, + 11.5669059 + ], + [ + 48.1404709, + 11.5668792 + ], + [ + 48.1404637, + 11.5668496 + ], + [ + 48.1404563, + 11.5668206 + ], + [ + 48.1404521, + 11.5668051 + ], + [ + 48.1404461, + 11.5667884 + ], + [ + 48.1404434, + 11.5667815 + ], + [ + 48.1404323, + 11.5667497 + ], + [ + 48.1404212, + 11.5667264 + ], + [ + 48.140404, + 11.5666943 + ], + [ + 48.1403768, + 11.5666468 + ], + [ + 48.1403524, + 11.5666077 + ], + [ + 48.1403021, + 11.5665385 + ], + [ + 48.1401879, + 11.5663885 + ], + [ + 48.1400484, + 11.566205 + ], + [ + 48.1399349, + 11.5660628 + ], + [ + 48.1398026, + 11.5658979 + ], + [ + 48.1397627, + 11.5658398 + ], + [ + 48.1397166, + 11.5657534 + ], + [ + 48.139694, + 11.5657026 + ], + [ + 48.1396801, + 11.5656602 + ], + [ + 48.1396649, + 11.5656088 + ], + [ + 48.1396628, + 11.5655921 + ], + [ + 48.1396545, + 11.56554 + ], + [ + 48.1396475, + 11.5654784 + ], + [ + 48.1396475, + 11.565418 + ], + [ + 48.1396514, + 11.5653457 + ], + [ + 48.1396645, + 11.5652786 + ], + [ + 48.1396749, + 11.5652363 + ], + [ + 48.1397061, + 11.5651496 + ], + [ + 48.1397523, + 11.5650213 + ], + [ + 48.1399387, + 11.5645248 + ], + [ + 48.1401461, + 11.5639523 + ], + [ + 48.1403474, + 11.5633321 + ], + [ + 48.1405863, + 11.5625727 + ], + [ + 48.1406176, + 11.5624746 + ], + [ + 48.140648, + 11.5623759 + ], + [ + 48.1408795, + 11.5616196 + ] + ] + }, + { + "osmId": "95067711", + "name": null, + "lengthMeters": 175.59321520873323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1392756, + 11.5638961 + ], + [ + 48.1392873, + 11.5636882 + ], + [ + 48.1393148, + 11.5631978 + ], + [ + 48.1393498, + 11.5624409 + ], + [ + 48.1393435, + 11.561924 + ], + [ + 48.1393403, + 11.5615341 + ] + ] + }, + { + "osmId": "95407615", + "name": null, + "lengthMeters": 115.54635939624495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1731409, + 11.5726491 + ], + [ + 48.172806, + 11.5727328 + ], + [ + 48.1723937, + 11.5728008 + ], + [ + 48.1721089, + 11.5728067 + ] + ] + }, + { + "osmId": "95412666", + "name": null, + "lengthMeters": 360.00951771971813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.138237, + 11.5610505 + ], + [ + 48.1384337, + 11.5610044 + ], + [ + 48.1386188, + 11.5609824 + ], + [ + 48.1387393, + 11.5609777 + ], + [ + 48.138919, + 11.5609706 + ], + [ + 48.1393585, + 11.5610111 + ], + [ + 48.1400169, + 11.5611002 + ], + [ + 48.1410297, + 11.5612615 + ], + [ + 48.1414579, + 11.5613543 + ] + ] + }, + { + "osmId": "95412667", + "name": null, + "lengthMeters": 2941.9309462889228, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1693472, + 11.572704 + ], + [ + 48.1691359, + 11.5727098 + ], + [ + 48.1689821, + 11.5727339 + ], + [ + 48.1688336, + 11.5727809 + ], + [ + 48.1687592, + 11.5728028 + ], + [ + 48.1686762, + 11.5728399 + ], + [ + 48.168568, + 11.5728948 + ], + [ + 48.1684854, + 11.5729373 + ], + [ + 48.1683898, + 11.572978 + ], + [ + 48.1682635, + 11.5730187 + ], + [ + 48.1681243, + 11.5730488 + ], + [ + 48.1679897, + 11.5730577 + ], + [ + 48.1678226, + 11.5730409 + ], + [ + 48.1677159, + 11.5730134 + ], + [ + 48.1676094, + 11.5729779 + ], + [ + 48.1674758, + 11.5729102 + ], + [ + 48.1673525, + 11.5728331 + ], + [ + 48.1672066, + 11.5727068 + ], + [ + 48.1670669, + 11.5725682 + ], + [ + 48.1669271, + 11.5723987 + ], + [ + 48.1667936, + 11.5722138 + ], + [ + 48.1663213, + 11.571401 + ], + [ + 48.1659892, + 11.5708786 + ], + [ + 48.1655651, + 11.5703218 + ], + [ + 48.1653375, + 11.5700669 + ], + [ + 48.1651449, + 11.5699042 + ], + [ + 48.1649199, + 11.5697579 + ], + [ + 48.1647535, + 11.5696842 + ], + [ + 48.1645636, + 11.5695792 + ], + [ + 48.1642201, + 11.5694424 + ], + [ + 48.1635796, + 11.5691917 + ], + [ + 48.1623757, + 11.5686769 + ], + [ + 48.1618116, + 11.5684408 + ], + [ + 48.1610116, + 11.5682104 + ], + [ + 48.1607744, + 11.5681383 + ], + [ + 48.1604317, + 11.568048 + ], + [ + 48.1601181, + 11.5679955 + ], + [ + 48.1593373, + 11.567916 + ], + [ + 48.1590067, + 11.5678535 + ], + [ + 48.1571259, + 11.5673794 + ], + [ + 48.1568669, + 11.5673142 + ], + [ + 48.155945, + 11.5670818 + ], + [ + 48.1557107, + 11.5669819 + ], + [ + 48.1554997, + 11.566894 + ], + [ + 48.1552883, + 11.5667892 + ], + [ + 48.151563, + 11.5643977 + ], + [ + 48.1509215, + 11.5639783 + ], + [ + 48.1507432, + 11.5638618 + ], + [ + 48.150477, + 11.5637047 + ], + [ + 48.1502036, + 11.5635845 + ], + [ + 48.1499126, + 11.5634894 + ], + [ + 48.1496007, + 11.5634284 + ], + [ + 48.1492996, + 11.5633898 + ], + [ + 48.1490229, + 11.5633877 + ], + [ + 48.1486852, + 11.5634142 + ], + [ + 48.1483692, + 11.563463 + ], + [ + 48.1481427, + 11.5635117 + ], + [ + 48.1477345, + 11.5636235 + ], + [ + 48.1473789, + 11.5637069 + ], + [ + 48.1470713, + 11.5637516 + ], + [ + 48.1467336, + 11.5637496 + ], + [ + 48.1464311, + 11.5637191 + ], + [ + 48.1461626, + 11.5636622 + ], + [ + 48.1459483, + 11.5636012 + ], + [ + 48.1457267, + 11.5635107 + ], + [ + 48.1454939, + 11.5634006 + ], + [ + 48.1452686, + 11.5632789 + ], + [ + 48.1450416, + 11.5631499 + ], + [ + 48.1447642, + 11.5629872 + ], + [ + 48.1445035, + 11.5628277 + ] + ] + }, + { + "osmId": "95497559", + "name": null, + "lengthMeters": 96.04204295487776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1406653, + 11.5611029 + ], + [ + 48.1404695, + 11.56111 + ], + [ + 48.1403019, + 11.5610976 + ], + [ + 48.1401908, + 11.5610812 + ], + [ + 48.1398042, + 11.5610248 + ] + ] + }, + { + "osmId": "96421163", + "name": null, + "lengthMeters": 304.04885323097886, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6633052, + 10.1564407 + ], + [ + 53.6636919, + 10.1562018 + ], + [ + 53.6642417, + 10.1558914 + ], + [ + 53.6643803, + 10.1558101 + ], + [ + 53.6652046, + 10.155357 + ], + [ + 53.6654165, + 10.1552478 + ], + [ + 53.665637, + 10.1551631 + ], + [ + 53.6659144, + 10.1550824 + ] + ] + }, + { + "osmId": "96421164", + "name": null, + "lengthMeters": 318.67035470207975, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6663648, + 10.1549273 + ], + [ + 53.6655112, + 10.155131 + ], + [ + 53.6652707, + 10.1551995 + ], + [ + 53.6650485, + 10.1552921 + ], + [ + 53.6643551, + 10.1556631 + ], + [ + 53.6640781, + 10.1558255 + ], + [ + 53.6638889, + 10.1559364 + ], + [ + 53.6636052, + 10.1561476 + ] + ] + }, + { + "osmId": "96421170", + "name": null, + "lengthMeters": 1087.150381641332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6659144, + 10.1550824 + ], + [ + 53.6673382, + 10.1547431 + ], + [ + 53.667692, + 10.1546596 + ], + [ + 53.6702989, + 10.1540448 + ], + [ + 53.6708119, + 10.1539072 + ], + [ + 53.6712695, + 10.1537179 + ], + [ + 53.6715662, + 10.1535452 + ], + [ + 53.6717973, + 10.1533785 + ], + [ + 53.672025, + 10.1531923 + ], + [ + 53.6721056, + 10.1531174 + ], + [ + 53.6722472, + 10.1529859 + ], + [ + 53.6724792, + 10.1527744 + ], + [ + 53.6740012, + 10.1513485 + ], + [ + 53.6751248, + 10.1503034 + ] + ] + }, + { + "osmId": "96422738", + "name": null, + "lengthMeters": 211.19486554298348, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6475756, + 10.1604651 + ], + [ + 53.6476636, + 10.1605357 + ], + [ + 53.6478646, + 10.1607092 + ], + [ + 53.648017, + 10.1608593 + ], + [ + 53.6490358, + 10.1619601 + ], + [ + 53.6491851, + 10.1621578 + ] + ] + }, + { + "osmId": "96422742", + "name": null, + "lengthMeters": 184.6221949213829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6477713, + 10.1606875 + ], + [ + 53.6478376, + 10.1607714 + ], + [ + 53.6481918, + 10.1612276 + ], + [ + 53.6483942, + 10.1614628 + ], + [ + 53.6485684, + 10.1616351 + ], + [ + 53.6491629, + 10.1622063 + ] + ] + }, + { + "osmId": "96482936", + "name": null, + "lengthMeters": 889.3945282636874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6854838, + 10.1403161 + ], + [ + 53.6838093, + 10.1419228 + ], + [ + 53.6789948, + 10.1465421 + ], + [ + 53.6785264, + 10.1469785 + ] + ] + }, + { + "osmId": "96482940", + "name": null, + "lengthMeters": 214.3660263406037, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6767277, + 10.1487785 + ], + [ + 53.6774746, + 10.1481863 + ], + [ + 53.6777372, + 10.1479335 + ], + [ + 53.6778119, + 10.1478615 + ], + [ + 53.6782296, + 10.1474631 + ], + [ + 53.6783501, + 10.1473346 + ], + [ + 53.6784251, + 10.1472444 + ] + ] + }, + { + "osmId": "96482960", + "name": null, + "lengthMeters": 215.31374768136334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6783897, + 10.147109 + ], + [ + 53.677758, + 10.1477086 + ], + [ + 53.6767119, + 10.1487408 + ] + ] + }, + { + "osmId": "96482962", + "name": null, + "lengthMeters": 830.5132302539897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6790065, + 10.1465913 + ], + [ + 53.6838221, + 10.1419629 + ], + [ + 53.6854975, + 10.1403526 + ] + ] + }, + { + "osmId": "96742663", + "name": null, + "lengthMeters": 225.21040725132485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6375783, + 10.1545629 + ], + [ + 53.6379244, + 10.1550667 + ], + [ + 53.6383741, + 10.1557152 + ], + [ + 53.6386208, + 10.1560121 + ], + [ + 53.6390196, + 10.1565041 + ], + [ + 53.6391644, + 10.1566827 + ] + ] + }, + { + "osmId": "96742665", + "name": null, + "lengthMeters": 230.21392781256674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6393034, + 10.1568408 + ], + [ + 53.6403351, + 10.1579936 + ], + [ + 53.6405342, + 10.1581989 + ], + [ + 53.6408002, + 10.1584346 + ], + [ + 53.6410732, + 10.1586403 + ] + ] + }, + { + "osmId": "96742667", + "name": null, + "lengthMeters": 224.56028575237502, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6392171, + 10.1565556 + ], + [ + 53.6390413, + 10.1563273 + ], + [ + 53.6386709, + 10.1558631 + ], + [ + 53.6384394, + 10.155573 + ], + [ + 53.6379666, + 10.1549907 + ], + [ + 53.63774, + 10.1547091 + ], + [ + 53.6375984, + 10.1545192 + ] + ] + }, + { + "osmId": "96742671", + "name": null, + "lengthMeters": 229.52335777642168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6410858, + 10.1585872 + ], + [ + 53.6408101, + 10.1583969 + ], + [ + 53.6405486, + 10.1581568 + ], + [ + 53.6403517, + 10.1579579 + ], + [ + 53.6401677, + 10.1577495 + ], + [ + 53.6393501, + 10.1567282 + ] + ] + }, + { + "osmId": "97020576", + "name": "Siemensbahn", + "lengthMeters": 412.6390009603617, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5415156, + 13.2590078 + ], + [ + 52.5415378, + 13.2589604 + ], + [ + 52.5417889, + 13.2585039 + ], + [ + 52.5426445, + 13.257135 + ], + [ + 52.5440618, + 13.2545727 + ] + ] + }, + { + "osmId": "97020579", + "name": "Siemensbahn", + "lengthMeters": 200.54302610375328, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377198, + 13.2749041 + ], + [ + 52.5378211, + 13.2747723 + ], + [ + 52.5379134, + 13.2746426 + ], + [ + 52.5380423, + 13.2744403 + ], + [ + 52.5381363, + 13.2742719 + ], + [ + 52.53822, + 13.2741076 + ], + [ + 52.5382817, + 13.2739727 + ], + [ + 52.538335, + 13.2738458 + ], + [ + 52.5384168, + 13.273641 + ], + [ + 52.5384929, + 13.2734182 + ], + [ + 52.538548, + 13.2732237 + ], + [ + 52.5385994, + 13.2730268 + ], + [ + 52.5386608, + 13.2727399 + ], + [ + 52.5387062, + 13.27249 + ] + ] + }, + { + "osmId": "97020589", + "name": "Siemensbahn", + "lengthMeters": 334.7695775070629, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5394942, + 13.2630438 + ], + [ + 52.5396011, + 13.2627415 + ], + [ + 52.5398579, + 13.2621369 + ], + [ + 52.5400886, + 13.2616812 + ], + [ + 52.5414022, + 13.2592259 + ] + ] + }, + { + "osmId": "97020595", + "name": "Siemensbahn", + "lengthMeters": 103.04555548986879, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5391224, + 13.264437 + ], + [ + 52.5392044, + 13.2640611 + ], + [ + 52.5393071, + 13.2636607 + ], + [ + 52.5393915, + 13.2633557 + ], + [ + 52.5394942, + 13.2630438 + ] + ] + }, + { + "osmId": "97020597", + "name": "Siemensbahn", + "lengthMeters": 776.0012998154934, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307908, + 13.2786941 + ], + [ + 52.5314532, + 13.2779277 + ], + [ + 52.532133, + 13.2771325 + ], + [ + 52.5323313, + 13.2769076 + ], + [ + 52.5325273, + 13.2767127 + ], + [ + 52.532738, + 13.2765336 + ], + [ + 52.5330187, + 13.2763432 + ], + [ + 52.533329, + 13.2762024 + ], + [ + 52.5336035, + 13.2761404 + ], + [ + 52.5338708, + 13.2761149 + ], + [ + 52.534045, + 13.2761195 + ], + [ + 52.5342711, + 13.2761364 + ], + [ + 52.5351797, + 13.2762123 + ], + [ + 52.535418, + 13.2762105 + ], + [ + 52.5357022, + 13.2761834 + ], + [ + 52.5360341, + 13.2760922 + ], + [ + 52.5363241, + 13.2759777 + ], + [ + 52.5367445, + 13.275765 + ], + [ + 52.5368692, + 13.2756821 + ], + [ + 52.5369938, + 13.2755938 + ], + [ + 52.5372456, + 13.2753974 + ] + ] + }, + { + "osmId": "97020602", + "name": "Siemensbahn", + "lengthMeters": 184.9904068484839, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388956, + 13.2671365 + ], + [ + 52.5389244, + 13.2660929 + ], + [ + 52.5389592, + 13.2656204 + ], + [ + 52.5390072, + 13.2651615 + ], + [ + 52.5390503, + 13.2648591 + ], + [ + 52.5391224, + 13.264437 + ] + ] + }, + { + "osmId": "97020605", + "name": "Siemensbahn", + "lengthMeters": 178.96417917071832, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388316, + 13.2700221 + ], + [ + 52.5388905, + 13.2673777 + ] + ] + }, + { + "osmId": "97020613", + "name": "Siemensbahn", + "lengthMeters": 123.46865835663051, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.53874, + 13.272253 + ], + [ + 52.5387584, + 13.2721013 + ], + [ + 52.5387699, + 13.2719752 + ], + [ + 52.53879, + 13.2717193 + ], + [ + 52.5388036, + 13.2713265 + ], + [ + 52.5388227, + 13.2704351 + ] + ] + }, + { + "osmId": "97343371", + "name": null, + "lengthMeters": 109.91528691635398, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.349814, + 13.2844469 + ], + [ + 52.3493415, + 13.2842497 + ], + [ + 52.3489113, + 13.2840379 + ], + [ + 52.3488615, + 13.2840155 + ] + ] + }, + { + "osmId": "97390918", + "name": null, + "lengthMeters": 1458.3704307585826, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5766922, + 13.4277754 + ], + [ + 52.5766804, + 13.4277586 + ], + [ + 52.576051, + 13.4268622 + ], + [ + 52.5755313, + 13.4261023 + ], + [ + 52.5754093, + 13.4259198 + ], + [ + 52.5752784, + 13.42571 + ], + [ + 52.5748063, + 13.4249099 + ], + [ + 52.5737342, + 13.4230649 + ], + [ + 52.5722977, + 13.420589 + ], + [ + 52.5713894, + 13.4190443 + ], + [ + 52.5703281, + 13.4173407 + ], + [ + 52.5698641, + 13.4165731 + ], + [ + 52.5694064, + 13.4157823 + ], + [ + 52.5674712, + 13.4124427 + ] + ] + }, + { + "osmId": "98167041", + "name": null, + "lengthMeters": 78.5297357036261, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.497404, + 13.2820923 + ], + [ + 52.4975688, + 13.282435 + ], + [ + 52.4976671, + 13.2826854 + ], + [ + 52.4977346, + 13.2828782 + ], + [ + 52.4977931, + 13.283057 + ] + ] + }, + { + "osmId": "98343083", + "name": null, + "lengthMeters": 273.310315055876, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5673277, + 10.025308 + ], + [ + 53.5672148, + 10.0253142 + ], + [ + 53.5671052, + 10.0253284 + ], + [ + 53.5669343, + 10.0253852 + ], + [ + 53.5667733, + 10.0254519 + ], + [ + 53.5661655, + 10.0258124 + ], + [ + 53.5649917, + 10.0265392 + ] + ] + }, + { + "osmId": "98343088", + "name": null, + "lengthMeters": 238.8036916366615, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5722652, + 10.0342156 + ], + [ + 53.5713541, + 10.0320196 + ], + [ + 53.5710363, + 10.0312496 + ] + ] + }, + { + "osmId": "98343090", + "name": null, + "lengthMeters": 130.3608681914774, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5734023, + 10.0364965 + ], + [ + 53.5732991, + 10.0363731 + ], + [ + 53.573251, + 10.0363151 + ], + [ + 53.57312, + 10.0361193 + ], + [ + 53.5730102, + 10.0359355 + ], + [ + 53.5728938, + 10.0356988 + ], + [ + 53.5726123, + 10.0350562 + ] + ] + }, + { + "osmId": "98343092", + "name": null, + "lengthMeters": 108.45198348280206, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5682622, + 10.0257132 + ], + [ + 53.5680946, + 10.0255722 + ], + [ + 53.5679183, + 10.0254625 + ], + [ + 53.5677413, + 10.0253836 + ], + [ + 53.5675964, + 10.0253365 + ], + [ + 53.5674601, + 10.0253152 + ], + [ + 53.5673277, + 10.025308 + ] + ] + }, + { + "osmId": "98343111", + "name": null, + "lengthMeters": 80.89988621421696, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5691523, + 10.0270713 + ], + [ + 53.5691151, + 10.0270047 + ], + [ + 53.5690957, + 10.0269732 + ], + [ + 53.5687894, + 10.0264387 + ], + [ + 53.5686954, + 10.0262703 + ], + [ + 53.5686467, + 10.0261905 + ] + ] + }, + { + "osmId": "98343112", + "name": null, + "lengthMeters": 94.54858848772639, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5755114, + 10.0385476 + ], + [ + 53.5752869, + 10.0381103 + ], + [ + 53.5751686, + 10.0379104 + ], + [ + 53.5750385, + 10.037723 + ], + [ + 53.5748935, + 10.0375792 + ] + ] + }, + { + "osmId": "98343116", + "name": null, + "lengthMeters": 432.00755019258634, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5827507, + 10.0446768 + ], + [ + 53.5825195, + 10.0443989 + ], + [ + 53.5821511, + 10.0439609 + ], + [ + 53.5815257, + 10.0432032 + ], + [ + 53.5814427, + 10.0431027 + ], + [ + 53.5806724, + 10.0421801 + ], + [ + 53.580186, + 10.0415978 + ], + [ + 53.5800365, + 10.0414154 + ], + [ + 53.5799547, + 10.0413257 + ], + [ + 53.5798688, + 10.0412435 + ], + [ + 53.5798134, + 10.0411957 + ], + [ + 53.5797585, + 10.0411582 + ], + [ + 53.579676, + 10.0411084 + ], + [ + 53.579608, + 10.0410697 + ], + [ + 53.5795369, + 10.0410366 + ] + ] + }, + { + "osmId": "98343119", + "name": null, + "lengthMeters": 104.51014828978808, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5763607, + 10.0396426 + ], + [ + 53.576215, + 10.0395571 + ], + [ + 53.5760874, + 10.0394573 + ], + [ + 53.5760097, + 10.0393803 + ], + [ + 53.5759575, + 10.0393229 + ], + [ + 53.5758518, + 10.0391788 + ], + [ + 53.5757674, + 10.0390362 + ], + [ + 53.5757642, + 10.0390308 + ], + [ + 53.5756094, + 10.038739 + ] + ] + }, + { + "osmId": "98343122", + "name": null, + "lengthMeters": 143.84986087089885, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.579511, + 10.0410245 + ], + [ + 53.5789409, + 10.0407897 + ], + [ + 53.5784584, + 10.0405951 + ], + [ + 53.5782625, + 10.0405148 + ], + [ + 53.5782538, + 10.0405108 + ] + ] + }, + { + "osmId": "98343123", + "name": null, + "lengthMeters": 91.75813938925864, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5649917, + 10.0265392 + ], + [ + 53.5643495, + 10.0269504 + ], + [ + 53.5642206, + 10.027034 + ] + ] + }, + { + "osmId": "98343124", + "name": null, + "lengthMeters": 115.9284743242952, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5781694, + 10.0404725 + ], + [ + 53.5776715, + 10.0402433 + ], + [ + 53.5771641, + 10.0400072 + ] + ] + }, + { + "osmId": "98343128", + "name": null, + "lengthMeters": 191.16652069964326, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5640017, + 10.0271678 + ], + [ + 53.5636094, + 10.0274179 + ], + [ + 53.563569, + 10.0274485 + ], + [ + 53.5633797, + 10.0275662 + ], + [ + 53.5632222, + 10.0276642 + ], + [ + 53.5631376, + 10.0277169 + ], + [ + 53.5627559, + 10.0278977 + ], + [ + 53.5625982, + 10.0279553 + ], + [ + 53.562366, + 10.0280403 + ] + ] + }, + { + "osmId": "98437387", + "name": null, + "lengthMeters": 1488.7323728342792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5601734, + 10.0288737 + ], + [ + 53.5599116, + 10.0281923 + ], + [ + 53.5595185, + 10.0272901 + ], + [ + 53.559151, + 10.0263871 + ], + [ + 53.5591085, + 10.0262862 + ], + [ + 53.559063, + 10.0261377 + ], + [ + 53.5588287, + 10.0252744 + ], + [ + 53.5586555, + 10.0245688 + ], + [ + 53.5584936, + 10.0239598 + ], + [ + 53.5584241, + 10.0237205 + ], + [ + 53.5582957, + 10.0232429 + ], + [ + 53.5581534, + 10.0227434 + ], + [ + 53.5580588, + 10.0224402 + ], + [ + 53.5579969, + 10.0222503 + ], + [ + 53.557931, + 10.0220584 + ], + [ + 53.5578086, + 10.0217464 + ], + [ + 53.5576551, + 10.0213721 + ], + [ + 53.5573611, + 10.0206933 + ], + [ + 53.5572072, + 10.0203133 + ], + [ + 53.5571082, + 10.0200421 + ], + [ + 53.5570588, + 10.0199189 + ], + [ + 53.5567795, + 10.0192991 + ], + [ + 53.5563335, + 10.0182805 + ], + [ + 53.5562109, + 10.0180104 + ], + [ + 53.5561731, + 10.0179319 + ], + [ + 53.5560908, + 10.0177757 + ], + [ + 53.5560699, + 10.0177395 + ], + [ + 53.5560488, + 10.0177088 + ], + [ + 53.5560007, + 10.0176436 + ], + [ + 53.5559499, + 10.0175824 + ], + [ + 53.5558302, + 10.0174436 + ], + [ + 53.5556973, + 10.0173099 + ], + [ + 53.5556126, + 10.0172422 + ], + [ + 53.5554882, + 10.0171472 + ], + [ + 53.5553172, + 10.0170657 + ], + [ + 53.5551385, + 10.0170069 + ], + [ + 53.5548921, + 10.0169586 + ], + [ + 53.5544972, + 10.0168864 + ], + [ + 53.554142, + 10.016833 + ], + [ + 53.5539933, + 10.0168013 + ], + [ + 53.553689, + 10.0167283 + ], + [ + 53.5535342, + 10.016669 + ], + [ + 53.5533756, + 10.0165652 + ], + [ + 53.5532802, + 10.0164978 + ], + [ + 53.553162, + 10.0163911 + ], + [ + 53.5530171, + 10.0162295 + ], + [ + 53.5529282, + 10.0160967 + ], + [ + 53.552829, + 10.0159318 + ], + [ + 53.5527749, + 10.015841 + ], + [ + 53.5526738, + 10.015593 + ], + [ + 53.5525593, + 10.0152663 + ], + [ + 53.5525207, + 10.0151176 + ], + [ + 53.5524947, + 10.0149841 + ], + [ + 53.5524647, + 10.014796 + ], + [ + 53.5524434, + 10.0146181 + ], + [ + 53.5524319, + 10.0144642 + ], + [ + 53.5523845, + 10.0137378 + ], + [ + 53.5523223, + 10.0128146 + ], + [ + 53.5523095, + 10.0126326 + ] + ] + }, + { + "osmId": "98437395", + "name": null, + "lengthMeters": 259.61121703052, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5588766, + 10.0256502 + ], + [ + 53.5589369, + 10.0258611 + ], + [ + 53.5590094, + 10.0261359 + ], + [ + 53.5590434, + 10.0262837 + ], + [ + 53.5590826, + 10.0264004 + ], + [ + 53.5591202, + 10.0265534 + ], + [ + 53.5592022, + 10.0267781 + ], + [ + 53.5594647, + 10.027441 + ], + [ + 53.5598314, + 10.0282876 + ], + [ + 53.559851, + 10.0283336 + ], + [ + 53.5601192, + 10.0289609 + ] + ] + }, + { + "osmId": "98504027", + "name": null, + "lengthMeters": 129.5462300675238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5785846, + 10.0569857 + ], + [ + 53.5790075, + 10.0567708 + ], + [ + 53.5796798, + 10.0563214 + ] + ] + }, + { + "osmId": "98504029", + "name": null, + "lengthMeters": 109.34561084937752, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5757821, + 10.0573806 + ], + [ + 53.5757774, + 10.0573813 + ], + [ + 53.5752683, + 10.0574495 + ], + [ + 53.5750122, + 10.0574869 + ], + [ + 53.5748036, + 10.057539 + ] + ] + }, + { + "osmId": "98511730", + "name": null, + "lengthMeters": 209.74889658673837, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5871904, + 10.0461011 + ], + [ + 53.5871995, + 10.0460582 + ], + [ + 53.5872986, + 10.0456757 + ], + [ + 53.5873794, + 10.0452845 + ], + [ + 53.5875435, + 10.0443643 + ], + [ + 53.5876555, + 10.0437399 + ], + [ + 53.5877061, + 10.0434575 + ], + [ + 53.5877595, + 10.0431601 + ], + [ + 53.5877659, + 10.0431243 + ], + [ + 53.5877735, + 10.0430817 + ] + ] + }, + { + "osmId": "98511743", + "name": null, + "lengthMeters": 474.1214092265136, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.588047, + 10.0415848 + ], + [ + 53.5881508, + 10.0410963 + ], + [ + 53.5882569, + 10.0406759 + ], + [ + 53.5883412, + 10.0404078 + ], + [ + 53.5884826, + 10.0400352 + ], + [ + 53.588565, + 10.0398182 + ], + [ + 53.5887752, + 10.0393662 + ], + [ + 53.5890829, + 10.0388114 + ], + [ + 53.5893531, + 10.0384342 + ], + [ + 53.5894516, + 10.0383201 + ], + [ + 53.589568, + 10.0381793 + ], + [ + 53.589669, + 10.0380682 + ], + [ + 53.5898899, + 10.0378617 + ], + [ + 53.5901993, + 10.0376238 + ], + [ + 53.5906304, + 10.0373772 + ], + [ + 53.5910691, + 10.0371835 + ], + [ + 53.5911289, + 10.0371571 + ] + ] + }, + { + "osmId": "98511761", + "name": null, + "lengthMeters": 154.52250502101737, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5862665, + 10.0484638 + ], + [ + 53.5864592, + 10.0481358 + ], + [ + 53.5865884, + 10.0478985 + ], + [ + 53.5866943, + 10.0476748 + ], + [ + 53.5867798, + 10.0474746 + ], + [ + 53.5868234, + 10.0473579 + ], + [ + 53.5868824, + 10.0471797 + ], + [ + 53.5869377, + 10.0469838 + ], + [ + 53.5870611, + 10.0465668 + ] + ] + }, + { + "osmId": "98595964", + "name": null, + "lengthMeters": 137.5809730399672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6308327, + 10.0300397 + ], + [ + 53.6299239, + 10.0310855 + ], + [ + 53.6298139, + 10.0312234 + ] + ] + }, + { + "osmId": "98595974", + "name": null, + "lengthMeters": 263.4117523078119, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6296004, + 10.0314716 + ], + [ + 53.6292256, + 10.0318945 + ], + [ + 53.628952, + 10.0322219 + ], + [ + 53.6284606, + 10.0327858 + ], + [ + 53.6282428, + 10.0330123 + ], + [ + 53.6280903, + 10.0331406 + ], + [ + 53.627903, + 10.0332697 + ], + [ + 53.6278937, + 10.0332782 + ], + [ + 53.6277417, + 10.0333721 + ], + [ + 53.6275609, + 10.0334524 + ] + ] + }, + { + "osmId": "98820862", + "name": null, + "lengthMeters": 311.4439560186702, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5542358, + 10.0074786 + ], + [ + 53.5541995, + 10.0069169 + ], + [ + 53.5541503, + 10.0061786 + ], + [ + 53.5540682, + 10.0049462 + ], + [ + 53.5540501, + 10.0047861 + ], + [ + 53.5540188, + 10.0045437 + ], + [ + 53.5539524, + 10.0041703 + ], + [ + 53.5538531, + 10.0036344 + ], + [ + 53.5537805, + 10.0032833 + ], + [ + 53.5536718, + 10.0028911 + ] + ] + }, + { + "osmId": "98960743", + "name": "U7", + "lengthMeters": 4830.920276575092, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367983, + 13.2656638 + ], + [ + 52.5368228, + 13.2640715 + ], + [ + 52.5368406, + 13.2636877 + ], + [ + 52.5369093, + 13.2626037 + ], + [ + 52.5370018, + 13.2611413 + ], + [ + 52.537213, + 13.2581096 + ], + [ + 52.5373082, + 13.2567419 + ], + [ + 52.5375507, + 13.2532612 + ], + [ + 52.5378501, + 13.2495428 + ], + [ + 52.5378585, + 13.2494029 + ], + [ + 52.5378644, + 13.2493034 + ], + [ + 52.5378728, + 13.2491258 + ], + [ + 52.5378823, + 13.2488328 + ], + [ + 52.5378898, + 13.2483484 + ], + [ + 52.5378936, + 13.2480174 + ], + [ + 52.5379106, + 13.2478023 + ], + [ + 52.5379958, + 13.246738 + ], + [ + 52.5382272, + 13.2440122 + ], + [ + 52.5382436, + 13.243868 + ], + [ + 52.5387814, + 13.239685 + ], + [ + 52.5388175, + 13.2393661 + ], + [ + 52.5388649, + 13.2389001 + ], + [ + 52.538898, + 13.2385202 + ], + [ + 52.5389178, + 13.2382565 + ], + [ + 52.5389393, + 13.2379037 + ], + [ + 52.5389555, + 13.2375804 + ], + [ + 52.5389678, + 13.2372256 + ], + [ + 52.5389738, + 13.236872 + ], + [ + 52.5389758, + 13.2364882 + ], + [ + 52.5389739, + 13.2362806 + ], + [ + 52.5389533, + 13.2358691 + ], + [ + 52.5389325, + 13.2355162 + ], + [ + 52.5389091, + 13.2351933 + ], + [ + 52.5388566, + 13.234575 + ], + [ + 52.5388452, + 13.2344856 + ], + [ + 52.5386082, + 13.2329554 + ], + [ + 52.5384256, + 13.2317742 + ], + [ + 52.5383503, + 13.2313204 + ], + [ + 52.5382404, + 13.2306394 + ], + [ + 52.5381468, + 13.2301004 + ], + [ + 52.5379699, + 13.2290499 + ], + [ + 52.5378079, + 13.228053 + ], + [ + 52.5377142, + 13.2274533 + ], + [ + 52.5376873, + 13.2272721 + ], + [ + 52.5372958, + 13.224546 + ], + [ + 52.5372261, + 13.2242099 + ], + [ + 52.5371679, + 13.2238999 + ], + [ + 52.5371151, + 13.2235878 + ], + [ + 52.5370713, + 13.2233029 + ], + [ + 52.5370316, + 13.2230156 + ], + [ + 52.537, + 13.2227569 + ], + [ + 52.5369662, + 13.2224377 + ], + [ + 52.536935, + 13.2220875 + ], + [ + 52.5369126, + 13.2217679 + ], + [ + 52.536906, + 13.2215623 + ], + [ + 52.5369029, + 13.2213852 + ], + [ + 52.5369037, + 13.2211804 + ], + [ + 52.5369098, + 13.2209453 + ], + [ + 52.5369201, + 13.2207389 + ], + [ + 52.5369416, + 13.2204494 + ], + [ + 52.5369682, + 13.2201818 + ], + [ + 52.5370399, + 13.2196725 + ], + [ + 52.5370842, + 13.2194177 + ], + [ + 52.5371279, + 13.2191939 + ], + [ + 52.5371888, + 13.2189402 + ], + [ + 52.5372584, + 13.2186739 + ], + [ + 52.5373712, + 13.2182953 + ], + [ + 52.5376263, + 13.2175134 + ], + [ + 52.5378821, + 13.2167292 + ], + [ + 52.5379702, + 13.2164697 + ], + [ + 52.538025, + 13.2162986 + ], + [ + 52.5381052, + 13.2160146 + ], + [ + 52.5381478, + 13.2158542 + ], + [ + 52.5382004, + 13.2156325 + ], + [ + 52.538253, + 13.2153801 + ], + [ + 52.5382891, + 13.2151824 + ], + [ + 52.5383252, + 13.2149531 + ], + [ + 52.5383495, + 13.2147791 + ], + [ + 52.5383765, + 13.2145166 + ], + [ + 52.5383961, + 13.2142542 + ], + [ + 52.5384082, + 13.2139874 + ], + [ + 52.5384125, + 13.2137795 + ], + [ + 52.5384114, + 13.2135126 + ], + [ + 52.5384029, + 13.2132763 + ], + [ + 52.5383892, + 13.2130409 + ], + [ + 52.5383637, + 13.2127464 + ], + [ + 52.5383106, + 13.212494 + ], + [ + 52.5382637, + 13.2122411 + ], + [ + 52.538222, + 13.2119865 + ], + [ + 52.5381756, + 13.2116515 + ], + [ + 52.5381429, + 13.2113525 + ], + [ + 52.5381268, + 13.2111777 + ], + [ + 52.538105, + 13.2108855 + ], + [ + 52.5380921, + 13.2106225 + ], + [ + 52.5380832, + 13.21027 + ], + [ + 52.5380841, + 13.209947 + ], + [ + 52.5380888, + 13.2096913 + ], + [ + 52.5381019, + 13.2094573 + ], + [ + 52.5381465, + 13.2090153 + ], + [ + 52.5381819, + 13.2087368 + ], + [ + 52.538212, + 13.2085482 + ], + [ + 52.5382801, + 13.208189 + ], + [ + 52.5383518, + 13.2078562 + ], + [ + 52.538509, + 13.2072203 + ], + [ + 52.5387543, + 13.2063271 + ], + [ + 52.5388848, + 13.2058552 + ], + [ + 52.5389737, + 13.2055259 + ], + [ + 52.5390519, + 13.2051737 + ], + [ + 52.5390793, + 13.2050025 + ], + [ + 52.5391084, + 13.2047661 + ], + [ + 52.5391237, + 13.2045916 + ], + [ + 52.5391349, + 13.2044138 + ], + [ + 52.5391403, + 13.2042657 + ], + [ + 52.5391423, + 13.2040847 + ], + [ + 52.5391401, + 13.2039375 + ], + [ + 52.5391343, + 13.2037877 + ], + [ + 52.5391209, + 13.2035813 + ], + [ + 52.5391071, + 13.2034331 + ], + [ + 52.5390861, + 13.2032586 + ], + [ + 52.5390651, + 13.2031142 + ], + [ + 52.5390404, + 13.2029723 + ], + [ + 52.5390062, + 13.2028002 + ], + [ + 52.538967, + 13.2026336 + ], + [ + 52.5389243, + 13.2024717 + ], + [ + 52.5388842, + 13.2023379 + ], + [ + 52.5388414, + 13.2022061 + ], + [ + 52.5387853, + 13.2020523 + ], + [ + 52.5387459, + 13.2019512 + ], + [ + 52.5386832, + 13.201807 + ], + [ + 52.5386277, + 13.2016875 + ], + [ + 52.5385212, + 13.2014847 + ], + [ + 52.5384717, + 13.2014004 + ], + [ + 52.5383941, + 13.2012757 + ], + [ + 52.5383261, + 13.2011758 + ], + [ + 52.5382122, + 13.2010266 + ], + [ + 52.5381386, + 13.2009385 + ], + [ + 52.5380481, + 13.2008421 + ], + [ + 52.5379709, + 13.200765 + ], + [ + 52.5378907, + 13.2006915 + ], + [ + 52.5378106, + 13.200625 + ], + [ + 52.5377283, + 13.2005625 + ], + [ + 52.5376275, + 13.2004951 + ], + [ + 52.5374375, + 13.2003916 + ], + [ + 52.5373328, + 13.2003476 + ], + [ + 52.5372245, + 13.2003101 + ], + [ + 52.537099, + 13.2002783 + ], + [ + 52.5369916, + 13.20026 + ], + [ + 52.5361184, + 13.2001504 + ], + [ + 52.5357087, + 13.2000412 + ], + [ + 52.5354269, + 13.1999509 + ] + ] + }, + { + "osmId": "99048984", + "name": null, + "lengthMeters": 219.60737340460895, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5522688, + 10.0106277 + ], + [ + 53.5523123, + 10.0112881 + ], + [ + 53.5524192, + 10.0128716 + ], + [ + 53.5524964, + 10.0139299 + ] + ] + }, + { + "osmId": "99048991", + "name": null, + "lengthMeters": 113.4782242431256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5523095, + 10.0126326 + ], + [ + 53.552304, + 10.0125327 + ], + [ + 53.5522805, + 10.0122193 + ], + [ + 53.5522536, + 10.0119571 + ], + [ + 53.5522326, + 10.011774 + ], + [ + 53.5521976, + 10.0115382 + ], + [ + 53.5521639, + 10.0112993 + ], + [ + 53.5521137, + 10.0109489 + ] + ] + }, + { + "osmId": "99048995", + "name": null, + "lengthMeters": 217.4110940745819, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521296, + 10.0113887 + ], + [ + 53.5521731, + 10.0117145 + ], + [ + 53.5522094, + 10.0119766 + ], + [ + 53.5522794, + 10.0127022 + ], + [ + 53.5522907, + 10.0128357 + ], + [ + 53.5523241, + 10.0133402 + ], + [ + 53.5523449, + 10.013739 + ], + [ + 53.5524112, + 10.0146423 + ] + ] + }, + { + "osmId": "99048996", + "name": null, + "lengthMeters": 196.07802092167157, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5515984, + 10.0076657 + ], + [ + 53.5516715, + 10.0078791 + ], + [ + 53.5517033, + 10.0079871 + ], + [ + 53.5517416, + 10.0081245 + ], + [ + 53.5517792, + 10.0082785 + ], + [ + 53.5518054, + 10.0084061 + ], + [ + 53.5518263, + 10.0085522 + ], + [ + 53.5518362, + 10.0086682 + ], + [ + 53.5518513, + 10.0088989 + ], + [ + 53.5519032, + 10.0096592 + ], + [ + 53.5519352, + 10.0101308 + ], + [ + 53.5519462, + 10.010232 + ], + [ + 53.5519557, + 10.0103187 + ], + [ + 53.5519663, + 10.0104113 + ], + [ + 53.5519808, + 10.010532 + ] + ] + }, + { + "osmId": "99056317", + "name": null, + "lengthMeters": 364.7057168772415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5691675, + 10.0549464 + ], + [ + 53.5689747, + 10.0541701 + ], + [ + 53.5688752, + 10.0537575 + ], + [ + 53.5688242, + 10.0535456 + ], + [ + 53.5687892, + 10.0533845 + ], + [ + 53.5687581, + 10.0532144 + ], + [ + 53.5687295, + 10.0530454 + ], + [ + 53.5687018, + 10.0528521 + ], + [ + 53.5686198, + 10.0521855 + ], + [ + 53.5685134, + 10.0512917 + ], + [ + 53.5684708, + 10.0508977 + ], + [ + 53.5684535, + 10.0507743 + ], + [ + 53.568436, + 10.0506554 + ], + [ + 53.5683589, + 10.0501739 + ], + [ + 53.5682677, + 10.0496534 + ] + ] + }, + { + "osmId": "99056328", + "name": null, + "lengthMeters": 429.56880987342447, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5682677, + 10.0496534 + ], + [ + 53.5679438, + 10.0477819 + ], + [ + 53.5679181, + 10.0476378 + ], + [ + 53.5678904, + 10.0474952 + ], + [ + 53.5677001, + 10.0466667 + ], + [ + 53.5674668, + 10.045652 + ], + [ + 53.5674227, + 10.0454382 + ], + [ + 53.567411, + 10.0453656 + ], + [ + 53.5674025, + 10.0453039 + ], + [ + 53.567185, + 10.0434253 + ] + ] + }, + { + "osmId": "99056355", + "name": null, + "lengthMeters": 746.3059634038243, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5601192, + 10.0289609 + ], + [ + 53.5603691, + 10.0295205 + ], + [ + 53.5605881, + 10.0299953 + ], + [ + 53.5608145, + 10.0304396 + ], + [ + 53.5609676, + 10.0306997 + ], + [ + 53.5611787, + 10.0310783 + ], + [ + 53.5614065, + 10.0314402 + ], + [ + 53.5615456, + 10.0316338 + ], + [ + 53.5617675, + 10.031918 + ], + [ + 53.5620672, + 10.0322875 + ], + [ + 53.5622153, + 10.0324535 + ], + [ + 53.5623662, + 10.0326044 + ], + [ + 53.5624685, + 10.0327036 + ], + [ + 53.5630358, + 10.0332392 + ], + [ + 53.5633457, + 10.0334981 + ], + [ + 53.5636393, + 10.0337926 + ], + [ + 53.5639304, + 10.034133 + ], + [ + 53.5640734, + 10.0343274 + ], + [ + 53.5641009, + 10.0343692 + ], + [ + 53.5641297, + 10.0344184 + ], + [ + 53.5641866, + 10.0345259 + ], + [ + 53.5642215, + 10.0345951 + ], + [ + 53.5642622, + 10.0346823 + ], + [ + 53.5643392, + 10.0348572 + ], + [ + 53.5643988, + 10.0349841 + ], + [ + 53.564631, + 10.0354777 + ], + [ + 53.5650599, + 10.0363891 + ] + ] + }, + { + "osmId": "99346207", + "name": null, + "lengthMeters": 164.49033450010091, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.13626, + 11.6570772 + ], + [ + 48.1364243, + 11.6574401 + ], + [ + 48.1365872, + 11.6577932 + ], + [ + 48.1366581, + 11.6579426 + ], + [ + 48.1367547, + 11.658146 + ], + [ + 48.1371061, + 11.6588954 + ] + ] + }, + { + "osmId": "99368173", + "name": null, + "lengthMeters": 207.05472231751693, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1352998, + 11.6221296 + ], + [ + 48.1352648, + 11.6215592 + ], + [ + 48.1351939, + 11.620922 + ], + [ + 48.1350908, + 11.6202779 + ], + [ + 48.1349512, + 11.6193933 + ] + ] + }, + { + "osmId": "99729384", + "name": null, + "lengthMeters": 297.1238765625796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255823, + 13.4796525 + ], + [ + 52.5252382, + 13.4796141 + ], + [ + 52.5250068, + 13.4795903 + ], + [ + 52.5244943, + 13.4795555 + ], + [ + 52.5239237, + 13.4795404 + ], + [ + 52.5237379, + 13.4795402 + ], + [ + 52.523331, + 13.4795469 + ], + [ + 52.5232509, + 13.4795413 + ], + [ + 52.523098, + 13.4795501 + ], + [ + 52.5230584, + 13.4795509 + ], + [ + 52.5229235, + 13.4795568 + ], + [ + 52.5229122, + 13.4795574 + ] + ] + }, + { + "osmId": "100274101", + "name": null, + "lengthMeters": 105.47058906455962, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5935425, + 10.0558064 + ], + [ + 53.5936741, + 10.0542237 + ] + ] + }, + { + "osmId": "100274107", + "name": null, + "lengthMeters": 155.21858744483723, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5935363, + 10.0515812 + ], + [ + 53.5935736, + 10.0526241 + ], + [ + 53.593582, + 10.0528775 + ], + [ + 53.5936091, + 10.0534465 + ], + [ + 53.5936133, + 10.053929 + ] + ] + }, + { + "osmId": "100274109", + "name": null, + "lengthMeters": 285.6547864314825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5936143, + 10.0542201 + ], + [ + 53.5936126, + 10.0542467 + ], + [ + 53.5935478, + 10.0552893 + ], + [ + 53.5934881, + 10.0563512 + ], + [ + 53.5933575, + 10.0585268 + ] + ] + }, + { + "osmId": "100495217", + "name": null, + "lengthMeters": 249.73593919972998, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5906609, + 10.0113672 + ], + [ + 53.5907037, + 10.0134536 + ], + [ + 53.5907053, + 10.0141243 + ], + [ + 53.5907157, + 10.014488 + ], + [ + 53.590723, + 10.0147885 + ], + [ + 53.5907327, + 10.0151488 + ] + ] + }, + { + "osmId": "100495226", + "name": null, + "lengthMeters": 191.96655043660314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5905233, + 10.005764 + ], + [ + 53.5904478, + 10.0028582 + ] + ] + }, + { + "osmId": "100495228", + "name": null, + "lengthMeters": 252.95219037009767, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5908162, + 10.01519 + ], + [ + 53.5908175, + 10.0149558 + ], + [ + 53.5908093, + 10.0145667 + ], + [ + 53.590806, + 10.0144666 + ], + [ + 53.5907941, + 10.0141221 + ], + [ + 53.5907633, + 10.013497 + ], + [ + 53.5906919, + 10.0113639 + ] + ] + }, + { + "osmId": "100495237", + "name": null, + "lengthMeters": 110.84834608998563, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5904337, + 10.0022767 + ], + [ + 53.5904334, + 10.0021859 + ], + [ + 53.5904452, + 10.0015608 + ], + [ + 53.5904345, + 10.0010332 + ], + [ + 53.5904272, + 10.0008075 + ], + [ + 53.5904265, + 10.0007856 + ], + [ + 53.5904221, + 10.0006495 + ], + [ + 53.5904182, + 10.0005988 + ] + ] + }, + { + "osmId": "100495254", + "name": null, + "lengthMeters": 97.9984802859233, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5907602, + 10.0159068 + ], + [ + 53.5907696, + 10.0163512 + ], + [ + 53.5907658, + 10.0166827 + ], + [ + 53.5907511, + 10.0169988 + ], + [ + 53.590714, + 10.0173853 + ] + ] + }, + { + "osmId": "100495300", + "name": null, + "lengthMeters": 266.7465776768117, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5904698, + 10.0198923 + ], + [ + 53.590483, + 10.019771 + ], + [ + 53.5907465, + 10.0173432 + ], + [ + 53.5907762, + 10.0170037 + ], + [ + 53.5907916, + 10.0166884 + ], + [ + 53.5908113, + 10.0159222 + ], + [ + 53.5908111, + 10.0158984 + ] + ] + }, + { + "osmId": "100502632", + "name": null, + "lengthMeters": 3855.5803222639765, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7667947, + 9.971677 + ], + [ + 53.7664333, + 9.9718755 + ], + [ + 53.7661457, + 9.972052 + ], + [ + 53.7658901, + 9.9721779 + ], + [ + 53.7649549, + 9.972609 + ], + [ + 53.7647271, + 9.9727203 + ], + [ + 53.764198, + 9.9729633 + ], + [ + 53.7634655, + 9.9732996 + ], + [ + 53.7618491, + 9.9740645 + ], + [ + 53.7607924, + 9.9745546 + ], + [ + 53.7603996, + 9.9747368 + ], + [ + 53.7589132, + 9.9754683 + ], + [ + 53.758236, + 9.9758575 + ], + [ + 53.7575767, + 9.9763056 + ], + [ + 53.7573874, + 9.9764677 + ], + [ + 53.7569215, + 9.9768668 + ], + [ + 53.7562668, + 9.9774401 + ], + [ + 53.7552732, + 9.9784882 + ], + [ + 53.7548705, + 9.978913 + ], + [ + 53.7542888, + 9.9795266 + ], + [ + 53.7542435, + 9.9795744 + ], + [ + 53.7542071, + 9.9796118 + ], + [ + 53.7541688, + 9.9796511 + ], + [ + 53.7529452, + 9.9809087 + ], + [ + 53.7522859, + 9.9816005 + ], + [ + 53.7512768, + 9.9826594 + ], + [ + 53.7511527, + 9.9827889 + ], + [ + 53.7499055, + 9.9840911 + ], + [ + 53.7491944, + 9.9848228 + ], + [ + 53.7491013, + 9.9849187 + ], + [ + 53.7487115, + 9.9852755 + ], + [ + 53.7482784, + 9.9855515 + ], + [ + 53.747656, + 9.9857917 + ], + [ + 53.7473321, + 9.9858931 + ], + [ + 53.7473187, + 9.9858973 + ], + [ + 53.7469156, + 9.9860235 + ], + [ + 53.7460729, + 9.9863096 + ], + [ + 53.7455854, + 9.9864579 + ], + [ + 53.7447729, + 9.9867051 + ], + [ + 53.7446874, + 9.9867311 + ], + [ + 53.744195, + 9.9869095 + ], + [ + 53.7421551, + 9.9875984 + ], + [ + 53.741886, + 9.9876905 + ], + [ + 53.7415325, + 9.9878116 + ], + [ + 53.7409196, + 9.9880215 + ], + [ + 53.7396581, + 9.988438 + ], + [ + 53.739192, + 9.9885981 + ], + [ + 53.7388433, + 9.9887095 + ], + [ + 53.7375701, + 9.9891416 + ], + [ + 53.7375042, + 9.9891639 + ], + [ + 53.7374554, + 9.9891805 + ], + [ + 53.7368169, + 9.9893973 + ], + [ + 53.7355767, + 9.9898185 + ], + [ + 53.7352043, + 9.9899095 + ], + [ + 53.7350956, + 9.9899103 + ], + [ + 53.734829, + 9.9899122 + ], + [ + 53.7343115, + 9.9899008 + ], + [ + 53.7342761, + 9.9898974 + ] + ] + }, + { + "osmId": "100502740", + "name": null, + "lengthMeters": 143.98535018661516, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7164772, + 9.9917732 + ], + [ + 53.7154645, + 9.9918253 + ], + [ + 53.715183, + 9.9918442 + ] + ] + }, + { + "osmId": "101365361", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 127.97940029235721, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1244632, + 11.6006895 + ], + [ + 48.1240333, + 11.5999328 + ], + [ + 48.1239673, + 11.5998166 + ], + [ + 48.1238492, + 11.5996031 + ], + [ + 48.1237578, + 11.599438 + ], + [ + 48.1237334, + 11.5993958 + ], + [ + 48.12372, + 11.599373 + ] + ] + }, + { + "osmId": "101381392", + "name": null, + "lengthMeters": 636.2967640069758, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4703474, + 9.9705692 + ], + [ + 53.4704933, + 9.9700135 + ], + [ + 53.4706752, + 9.9693339 + ], + [ + 53.4708149, + 9.9688 + ], + [ + 53.4709733, + 9.9681843 + ], + [ + 53.4710046, + 9.9680242 + ], + [ + 53.4710731, + 9.9676496 + ], + [ + 53.4710949, + 9.967542 + ], + [ + 53.4711225, + 9.9673951 + ], + [ + 53.4713221, + 9.9663302 + ], + [ + 53.4716197, + 9.9647361 + ], + [ + 53.4716422, + 9.964605 + ], + [ + 53.4716662, + 9.9644857 + ], + [ + 53.4719328, + 9.9630357 + ], + [ + 53.4720555, + 9.9623532 + ], + [ + 53.4721774, + 9.9617272 + ], + [ + 53.4722219, + 9.9614986 + ] + ] + }, + { + "osmId": "101513108", + "name": null, + "lengthMeters": 474.7934635015544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5797131, + 9.9256859 + ], + [ + 53.5792197, + 9.9260667 + ], + [ + 53.5787155, + 9.9264558 + ], + [ + 53.576995, + 9.9277672 + ], + [ + 53.5764314, + 9.9282239 + ], + [ + 53.576236, + 9.928387 + ], + [ + 53.5758495, + 9.9287432 + ] + ] + }, + { + "osmId": "101687024", + "name": null, + "lengthMeters": 258.9850968394218, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5407611, + 13.4050488 + ], + [ + 52.5408156, + 13.405338 + ], + [ + 52.5408295, + 13.4054134 + ], + [ + 52.5408727, + 13.4056441 + ], + [ + 52.5408998, + 13.4057883 + ], + [ + 52.5410027, + 13.4063178 + ], + [ + 52.5410701, + 13.406668 + ], + [ + 52.5412189, + 13.4074406 + ], + [ + 52.5413476, + 13.4081283 + ], + [ + 52.5413571, + 13.4082046 + ], + [ + 52.5413654, + 13.4083074 + ], + [ + 52.5413702, + 13.4084481 + ], + [ + 52.5413528, + 13.4087267 + ] + ] + }, + { + "osmId": "101691181", + "name": null, + "lengthMeters": 177.46711926149473, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1848153, + 11.5393712 + ], + [ + 48.1861492, + 11.5393721 + ], + [ + 48.1863352, + 11.5393722 + ], + [ + 48.1864113, + 11.5393722 + ] + ] + }, + { + "osmId": "101691182", + "name": null, + "lengthMeters": 132.06210113039228, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1828508, + 11.5390103 + ], + [ + 48.1831797, + 11.5390215 + ], + [ + 48.1836607, + 11.5390644 + ], + [ + 48.1840363, + 11.53911 + ] + ] + }, + { + "osmId": "101691185", + "name": null, + "lengthMeters": 697.657532766543, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1778252, + 11.5387463 + ], + [ + 48.1783169, + 11.5387237 + ], + [ + 48.1787318, + 11.5387291 + ], + [ + 48.1827211, + 11.5389867 + ], + [ + 48.1828508, + 11.5390103 + ], + [ + 48.1832083, + 11.5390751 + ], + [ + 48.1840864, + 11.5392226 + ] + ] + }, + { + "osmId": "101692632", + "name": null, + "lengthMeters": 156.9948624039314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.566929, + 13.4393156 + ], + [ + 52.5669156, + 13.4392604 + ], + [ + 52.5668651, + 13.4391008 + ], + [ + 52.566855, + 13.4390667 + ], + [ + 52.5668123, + 13.4389222 + ], + [ + 52.5667202, + 13.4386107 + ], + [ + 52.5666283, + 13.4383774 + ], + [ + 52.5664656, + 13.438007 + ], + [ + 52.5661687, + 13.4373691 + ] + ] + }, + { + "osmId": "101692633", + "name": null, + "lengthMeters": 165.09371587797483, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5679707, + 13.4396402 + ], + [ + 52.5679766, + 13.4396356 + ], + [ + 52.56805, + 13.4395557 + ], + [ + 52.5681092, + 13.4394907 + ], + [ + 52.568138, + 13.4394591 + ], + [ + 52.5683537, + 13.4392285 + ], + [ + 52.5683937, + 13.4391867 + ], + [ + 52.5686799, + 13.4388807 + ], + [ + 52.5687605, + 13.4387948 + ], + [ + 52.569222, + 13.4383259 + ] + ] + }, + { + "osmId": "101694131", + "name": null, + "lengthMeters": 87.89511608042122, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5236358, + 13.4018897 + ], + [ + 52.5236353, + 13.4018436 + ], + [ + 52.5236346, + 13.4018205 + ], + [ + 52.523634, + 13.4018011 + ], + [ + 52.5236322, + 13.4017641 + ], + [ + 52.5236299, + 13.4017324 + ], + [ + 52.5236259, + 13.4016912 + ], + [ + 52.5236203, + 13.4016536 + ], + [ + 52.5236125, + 13.4016135 + ], + [ + 52.5236012, + 13.401572 + ], + [ + 52.5235877, + 13.4015333 + ], + [ + 52.5235744, + 13.4015013 + ], + [ + 52.5235674, + 13.4014856 + ], + [ + 52.5235248, + 13.4013903 + ], + [ + 52.5232559, + 13.4007814 + ] + ] + }, + { + "osmId": "101699676", + "name": null, + "lengthMeters": 228.0516741392974, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5238153, + 13.3973855 + ], + [ + 52.5237568, + 13.3976155 + ], + [ + 52.5236948, + 13.3978519 + ], + [ + 52.5236769, + 13.3979169 + ], + [ + 52.5236501, + 13.3980067 + ], + [ + 52.5235854, + 13.398192 + ], + [ + 52.5234875, + 13.3984683 + ], + [ + 52.5234727, + 13.398504 + ], + [ + 52.5234384, + 13.3985796 + ], + [ + 52.5233684, + 13.3987135 + ], + [ + 52.5233347, + 13.3987778 + ], + [ + 52.5232673, + 13.3989099 + ], + [ + 52.5232173, + 13.3990185 + ], + [ + 52.5231874, + 13.3990912 + ], + [ + 52.5228728, + 13.3999042 + ], + [ + 52.5228547, + 13.3999474 + ], + [ + 52.5228343, + 13.3999899 + ], + [ + 52.5228165, + 13.4000196 + ], + [ + 52.5228019, + 13.4000421 + ], + [ + 52.5227881, + 13.4000599 + ], + [ + 52.5227788, + 13.4000719 + ], + [ + 52.522753, + 13.4001005 + ], + [ + 52.5227309, + 13.4001202 + ], + [ + 52.5227102, + 13.4001368 + ], + [ + 52.522687, + 13.4001514 + ] + ] + }, + { + "osmId": "101699679", + "name": null, + "lengthMeters": 218.38895855455215, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5236358, + 13.4018897 + ], + [ + 52.5236374, + 13.401808 + ], + [ + 52.5236377, + 13.4017877 + ], + [ + 52.5236385, + 13.4016687 + ], + [ + 52.5236413, + 13.4013146 + ], + [ + 52.5236419, + 13.4012922 + ], + [ + 52.5236449, + 13.4010168 + ], + [ + 52.5236455, + 13.4009817 + ], + [ + 52.5236576, + 13.4002645 + ], + [ + 52.5236708, + 13.3997993 + ], + [ + 52.5236725, + 13.3997314 + ], + [ + 52.5236747, + 13.3996668 + ], + [ + 52.5236771, + 13.3996275 + ], + [ + 52.5236834, + 13.3994521 + ], + [ + 52.5236982, + 13.3990712 + ], + [ + 52.5236999, + 13.399027 + ], + [ + 52.5237138, + 13.3986649 + ] + ] + }, + { + "osmId": "101699684", + "name": null, + "lengthMeters": 1096.6796210973996, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5433748, + 13.4910605 + ], + [ + 52.5431598, + 13.490651 + ], + [ + 52.5431214, + 13.4905794 + ], + [ + 52.5429295, + 13.4902215 + ], + [ + 52.5427277, + 13.4898328 + ], + [ + 52.54257, + 13.4895288 + ], + [ + 52.5425351, + 13.4894555 + ], + [ + 52.5425156, + 13.4894183 + ], + [ + 52.5424035, + 13.4892044 + ], + [ + 52.5421319, + 13.4886859 + ], + [ + 52.5418638, + 13.4881718 + ], + [ + 52.5418165, + 13.4880807 + ], + [ + 52.5418003, + 13.4880494 + ], + [ + 52.5416833, + 13.4878238 + ], + [ + 52.5415943, + 13.4876522 + ], + [ + 52.5410466, + 13.4865963 + ], + [ + 52.5409333, + 13.4863802 + ], + [ + 52.5406663, + 13.4858707 + ], + [ + 52.5403806, + 13.4853257 + ], + [ + 52.5399029, + 13.4844148 + ], + [ + 52.5398119, + 13.4842345 + ], + [ + 52.5398032, + 13.4842173 + ], + [ + 52.5397536, + 13.4841133 + ], + [ + 52.5397283, + 13.4840588 + ], + [ + 52.5396744, + 13.4839425 + ], + [ + 52.5396562, + 13.4838978 + ], + [ + 52.5396073, + 13.4837777 + ], + [ + 52.5395436, + 13.4836087 + ], + [ + 52.539477, + 13.483416 + ], + [ + 52.5393919, + 13.48317 + ], + [ + 52.5390963, + 13.4823482 + ], + [ + 52.5388867, + 13.4817655 + ], + [ + 52.5387877, + 13.4814824 + ], + [ + 52.5387864, + 13.4814787 + ], + [ + 52.5387375, + 13.4813453 + ], + [ + 52.5386615, + 13.4811379 + ], + [ + 52.5385948, + 13.4809417 + ], + [ + 52.5384568, + 13.4805355 + ], + [ + 52.5382605, + 13.4799879 + ], + [ + 52.5377435, + 13.478546 + ], + [ + 52.5376283, + 13.4782248 + ], + [ + 52.5376072, + 13.4781615 + ], + [ + 52.537565, + 13.4780346 + ] + ] + }, + { + "osmId": "102213009", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 7123.500610555111, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1064429, + 11.7532637 + ], + [ + 48.1065824, + 11.7526226 + ], + [ + 48.1066251, + 11.7524262 + ], + [ + 48.1071992, + 11.7497822 + ], + [ + 48.1078058, + 11.7469885 + ], + [ + 48.1079345, + 11.746396 + ], + [ + 48.1082096, + 11.7451393 + ], + [ + 48.1083247, + 11.7446134 + ], + [ + 48.1087164, + 11.7428225 + ], + [ + 48.1087753, + 11.7425489 + ], + [ + 48.1087939, + 11.7424625 + ], + [ + 48.109347, + 11.7398931 + ], + [ + 48.1096082, + 11.7386972 + ], + [ + 48.1098779, + 11.7374624 + ], + [ + 48.1100487, + 11.7366625 + ], + [ + 48.1100723, + 11.7365519 + ], + [ + 48.1104844, + 11.7346337 + ], + [ + 48.1110018, + 11.7322256 + ], + [ + 48.1112524, + 11.7310564 + ], + [ + 48.1116562, + 11.7292121 + ], + [ + 48.1120036, + 11.7276118 + ], + [ + 48.1124718, + 11.7254947 + ], + [ + 48.1128802, + 11.7236172 + ], + [ + 48.1129132, + 11.7234657 + ], + [ + 48.1129331, + 11.7233734 + ], + [ + 48.1129418, + 11.723333 + ], + [ + 48.1129551, + 11.7232712 + ], + [ + 48.1133096, + 11.721635 + ], + [ + 48.1138059, + 11.7193445 + ], + [ + 48.114136, + 11.7178207 + ], + [ + 48.1144569, + 11.7163396 + ], + [ + 48.1155302, + 11.7113855 + ], + [ + 48.1163687, + 11.7075149 + ], + [ + 48.1166131, + 11.7064001 + ], + [ + 48.1168943, + 11.7051175 + ], + [ + 48.1168968, + 11.7051063 + ], + [ + 48.1171964, + 11.7037116 + ], + [ + 48.1174687, + 11.7024696 + ], + [ + 48.1177827, + 11.7010216 + ], + [ + 48.1179741, + 11.7001391 + ], + [ + 48.1182416, + 11.6989166 + ], + [ + 48.1183977, + 11.6981945 + ], + [ + 48.1185834, + 11.6973278 + ], + [ + 48.119019, + 11.695334 + ], + [ + 48.1193624, + 11.6937403 + ], + [ + 48.1194311, + 11.6934229 + ], + [ + 48.1200052, + 11.6907692 + ], + [ + 48.1200899, + 11.6903776 + ], + [ + 48.1202146, + 11.6898045 + ], + [ + 48.1202158, + 11.689799 + ], + [ + 48.1205186, + 11.6884079 + ], + [ + 48.1205907, + 11.6880769 + ], + [ + 48.1209638, + 11.6863625 + ], + [ + 48.121111, + 11.6856863 + ], + [ + 48.1217064, + 11.6829392 + ], + [ + 48.122386, + 11.6798095 + ], + [ + 48.1228027, + 11.6778767 + ], + [ + 48.1228462, + 11.6776753 + ], + [ + 48.1232158, + 11.675961 + ], + [ + 48.1233947, + 11.6751295 + ], + [ + 48.1237853, + 11.6733147 + ], + [ + 48.1239836, + 11.6723933 + ], + [ + 48.124299, + 11.6709476 + ], + [ + 48.1245065, + 11.6699968 + ], + [ + 48.1245188, + 11.669937 + ], + [ + 48.1246069, + 11.669511 + ], + [ + 48.1255107, + 11.6653264 + ], + [ + 48.1255238, + 11.6652657 + ], + [ + 48.125617, + 11.6648343 + ], + [ + 48.1260797, + 11.6627033 + ], + [ + 48.1262325, + 11.6619995 + ] + ] + }, + { + "osmId": "102213013", + "name": null, + "lengthMeters": 822.5987653788961, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332181, + 11.6411068 + ], + [ + 48.1331771, + 11.6414581 + ], + [ + 48.133113, + 11.6419493 + ], + [ + 48.1330064, + 11.6426287 + ], + [ + 48.132643, + 11.6446888 + ], + [ + 48.1324642, + 11.6457109 + ], + [ + 48.1324458, + 11.6458158 + ], + [ + 48.1322388, + 11.6469155 + ], + [ + 48.1321176, + 11.6474561 + ], + [ + 48.1319866, + 11.6479823 + ], + [ + 48.1316944, + 11.6489604 + ], + [ + 48.1314808, + 11.6495928 + ], + [ + 48.1312926, + 11.6501187 + ], + [ + 48.1312331, + 11.6502699 + ], + [ + 48.1311701, + 11.65043 + ], + [ + 48.1310697, + 11.6506738 + ], + [ + 48.1309482, + 11.6509558 + ], + [ + 48.130826, + 11.6512309 + ], + [ + 48.1307235, + 11.6514502 + ] + ] + }, + { + "osmId": "102213019", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 7176.75694247516, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1263388, + 11.6612998 + ], + [ + 48.1262708, + 11.6615955 + ], + [ + 48.1260372, + 11.6626761 + ], + [ + 48.1255767, + 11.6648059 + ], + [ + 48.1254826, + 11.6652468 + ], + [ + 48.1254699, + 11.6653063 + ], + [ + 48.1245755, + 11.6694971 + ], + [ + 48.1242381, + 11.6710418 + ], + [ + 48.1240722, + 11.6717914 + ], + [ + 48.1239425, + 11.6723776 + ], + [ + 48.1237424, + 11.6732935 + ], + [ + 48.1235576, + 11.6741391 + ], + [ + 48.1233363, + 11.6751043 + ], + [ + 48.1233359, + 11.6751063 + ], + [ + 48.1231489, + 11.6759217 + ], + [ + 48.122276, + 11.6797342 + ], + [ + 48.1218616, + 11.6815876 + ], + [ + 48.1210331, + 11.6852927 + ], + [ + 48.1208763, + 11.6860199 + ], + [ + 48.1207267, + 11.6867163 + ], + [ + 48.1204477, + 11.6880157 + ], + [ + 48.1200645, + 11.6897998 + ], + [ + 48.120063, + 11.6898066 + ], + [ + 48.1199559, + 11.6903054 + ], + [ + 48.1197064, + 11.6915377 + ], + [ + 48.1195097, + 11.6925399 + ], + [ + 48.1193431, + 11.6933843 + ], + [ + 48.1192818, + 11.693695 + ], + [ + 48.1190983, + 11.6946499 + ], + [ + 48.1189641, + 11.6953172 + ], + [ + 48.1185482, + 11.6973085 + ], + [ + 48.118361, + 11.6981757 + ], + [ + 48.1182055, + 11.6989049 + ], + [ + 48.1181611, + 11.6991088 + ], + [ + 48.1179394, + 11.7001281 + ], + [ + 48.1177492, + 11.7010047 + ], + [ + 48.1174353, + 11.7024509 + ], + [ + 48.1171603, + 11.7036961 + ], + [ + 48.1168625, + 11.7050759 + ], + [ + 48.1165765, + 11.7063859 + ], + [ + 48.1163341, + 11.7074958 + ], + [ + 48.1144224, + 11.7163251 + ], + [ + 48.1141014, + 11.7178073 + ], + [ + 48.1137718, + 11.7193295 + ], + [ + 48.1135971, + 11.7201366 + ], + [ + 48.1132764, + 11.7216176 + ], + [ + 48.1131712, + 11.7221108 + ], + [ + 48.1131512, + 11.7222045 + ], + [ + 48.113041, + 11.7227005 + ], + [ + 48.1128901, + 11.7233909 + ], + [ + 48.1127939, + 11.723831 + ], + [ + 48.112435, + 11.7254731 + ], + [ + 48.1119605, + 11.7275957 + ], + [ + 48.1116163, + 11.7291878 + ], + [ + 48.1112109, + 11.7310462 + ], + [ + 48.1109623, + 11.7322087 + ], + [ + 48.110453, + 11.7345827 + ], + [ + 48.1104432, + 11.7346289 + ], + [ + 48.1100382, + 11.7365368 + ], + [ + 48.1099391, + 11.7369969 + ], + [ + 48.1098238, + 11.7375325 + ], + [ + 48.1096097, + 11.7385272 + ], + [ + 48.109581, + 11.7386574 + ], + [ + 48.1094699, + 11.7391612 + ], + [ + 48.109315, + 11.7398634 + ], + [ + 48.1087574, + 11.7424462 + ], + [ + 48.1087387, + 11.7425326 + ], + [ + 48.1086806, + 11.7428019 + ], + [ + 48.1082867, + 11.7446033 + ], + [ + 48.1081738, + 11.7451221 + ], + [ + 48.1079004, + 11.7463784 + ], + [ + 48.107771, + 11.7469726 + ], + [ + 48.1071626, + 11.7497658 + ], + [ + 48.106628, + 11.7522201 + ], + [ + 48.1065863, + 11.7524115 + ], + [ + 48.1065446, + 11.7526076 + ], + [ + 48.1064089, + 11.7532467 + ] + ] + }, + { + "osmId": "102275408", + "name": null, + "lengthMeters": 772.2543876149657, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1193624, + 11.6937403 + ], + [ + 48.119562, + 11.6926503 + ], + [ + 48.1197067, + 11.6918596 + ], + [ + 48.119836, + 11.6911912 + ], + [ + 48.1200094, + 11.6903289 + ], + [ + 48.120132, + 11.6897535 + ], + [ + 48.1201331, + 11.6897483 + ], + [ + 48.1204341, + 11.688336 + ], + [ + 48.120922, + 11.6860467 + ], + [ + 48.1210796, + 11.6853184 + ], + [ + 48.1212219, + 11.684707 + ], + [ + 48.1213649, + 11.6841404 + ], + [ + 48.1214516, + 11.683823 + ] + ] + }, + { + "osmId": "102275409", + "name": null, + "lengthMeters": 145.96116338158882, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1220391, + 11.6819863 + ], + [ + 48.1218961, + 11.6823384 + ], + [ + 48.1217331, + 11.6828133 + ], + [ + 48.1215796, + 11.6832828 + ], + [ + 48.1214365, + 11.6837317 + ] + ] + }, + { + "osmId": "102275412", + "name": null, + "lengthMeters": 1793.883091017396, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1220539, + 11.6820563 + ], + [ + 48.1221404, + 11.6818276 + ], + [ + 48.122221, + 11.6815741 + ], + [ + 48.1223415, + 11.6811467 + ], + [ + 48.1224681, + 11.6806287 + ], + [ + 48.1225879, + 11.6800744 + ], + [ + 48.1229189, + 11.6784787 + ], + [ + 48.1233981, + 11.6761637 + ], + [ + 48.1237796, + 11.6742584 + ], + [ + 48.1239658, + 11.6733371 + ], + [ + 48.1241465, + 11.6724836 + ], + [ + 48.1242487, + 11.6720214 + ], + [ + 48.124282, + 11.6718764 + ], + [ + 48.1245071, + 11.670897 + ], + [ + 48.1245278, + 11.6708121 + ], + [ + 48.1245362, + 11.6707779 + ], + [ + 48.1245473, + 11.6707321 + ], + [ + 48.124706, + 11.6700786 + ], + [ + 48.1249318, + 11.6691477 + ], + [ + 48.1250017, + 11.6688597 + ], + [ + 48.1251813, + 11.668044 + ], + [ + 48.1256029, + 11.6660796 + ], + [ + 48.1258529, + 11.6649398 + ], + [ + 48.1265482, + 11.661732 + ], + [ + 48.1266889, + 11.6610734 + ], + [ + 48.1267585, + 11.660745 + ], + [ + 48.1268269, + 11.6604438 + ], + [ + 48.1268997, + 11.66018 + ], + [ + 48.1269638, + 11.6599555 + ], + [ + 48.127051, + 11.6597068 + ], + [ + 48.127242, + 11.6592009 + ] + ] + }, + { + "osmId": "102275415", + "name": null, + "lengthMeters": 1873.6955162313814, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1276241, + 11.6582401 + ], + [ + 48.1273407, + 11.6588596 + ], + [ + 48.1271849, + 11.6592099 + ], + [ + 48.1270947, + 11.659434 + ], + [ + 48.126971, + 11.6597838 + ], + [ + 48.1269008, + 11.6599884 + ], + [ + 48.1267751, + 11.6604134 + ], + [ + 48.126704, + 11.6607172 + ], + [ + 48.1266306, + 11.66104 + ], + [ + 48.1264909, + 11.6616665 + ], + [ + 48.1264832, + 11.6617011 + ], + [ + 48.1257904, + 11.6649122 + ], + [ + 48.1255453, + 11.6660442 + ], + [ + 48.1251174, + 11.6680132 + ], + [ + 48.1248684, + 11.669167 + ], + [ + 48.1248506, + 11.6692493 + ], + [ + 48.1245126, + 11.6707035 + ], + [ + 48.1242079, + 11.6720108 + ], + [ + 48.1241834, + 11.6721241 + ], + [ + 48.1241097, + 11.6724649 + ], + [ + 48.1239309, + 11.6733156 + ], + [ + 48.123742, + 11.6742396 + ], + [ + 48.1233723, + 11.6760836 + ], + [ + 48.1233709, + 11.6760906 + ], + [ + 48.1233698, + 11.676096 + ], + [ + 48.1228822, + 11.678454 + ], + [ + 48.1225495, + 11.6800563 + ], + [ + 48.122469, + 11.6804285 + ], + [ + 48.1224278, + 11.6806193 + ], + [ + 48.1223114, + 11.6811023 + ], + [ + 48.1222569, + 11.6813011 + ], + [ + 48.1221897, + 11.681546 + ], + [ + 48.1221091, + 11.6817941 + ], + [ + 48.1220391, + 11.6819863 + ] + ] + }, + { + "osmId": "102275416", + "name": null, + "lengthMeters": 147.40343525881457, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1214516, + 11.683823 + ], + [ + 48.1216073, + 11.6833097 + ], + [ + 48.1217564, + 11.6828482 + ], + [ + 48.1219199, + 11.6823795 + ], + [ + 48.1220539, + 11.6820563 + ] + ] + }, + { + "osmId": "102275421", + "name": null, + "lengthMeters": 124.25752188921254, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1214365, + 11.6837317 + ], + [ + 48.1213315, + 11.6841173 + ], + [ + 48.1211897, + 11.6846721 + ], + [ + 48.1210331, + 11.6852927 + ] + ] + }, + { + "osmId": "102285919", + "name": null, + "lengthMeters": 648.904344494433, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1348475, + 11.6233231 + ], + [ + 48.1346282, + 11.6261676 + ], + [ + 48.1345891, + 11.6266978 + ], + [ + 48.1345203, + 11.627475 + ], + [ + 48.1344, + 11.6287941 + ], + [ + 48.1342609, + 11.6301617 + ], + [ + 48.1341295, + 11.6314486 + ], + [ + 48.1340742, + 11.631989 + ] + ] + }, + { + "osmId": "102285947", + "name": null, + "lengthMeters": 1084.4241451408805, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356174, + 11.6556501 + ], + [ + 48.1354795, + 11.6553611 + ], + [ + 48.1352662, + 11.6549649 + ], + [ + 48.1351254, + 11.6547105 + ], + [ + 48.135031, + 11.6545444 + ], + [ + 48.134901, + 11.6543005 + ], + [ + 48.1346157, + 11.653712 + ], + [ + 48.1344919, + 11.6534682 + ], + [ + 48.1340846, + 11.6526657 + ], + [ + 48.133996, + 11.6524822 + ], + [ + 48.1339119, + 11.6523081 + ], + [ + 48.1338115, + 11.6520869 + ], + [ + 48.1336298, + 11.6516452 + ], + [ + 48.1335958, + 11.6515558 + ], + [ + 48.1335277, + 11.6513766 + ], + [ + 48.1334504, + 11.6511403 + ], + [ + 48.1333725, + 11.6509021 + ], + [ + 48.1332775, + 11.6505747 + ], + [ + 48.1332299, + 11.6503907 + ], + [ + 48.1331703, + 11.6501606 + ], + [ + 48.1331237, + 11.649952 + ], + [ + 48.1330651, + 11.6496501 + ], + [ + 48.1330367, + 11.6494642 + ], + [ + 48.1330091, + 11.6492831 + ], + [ + 48.1329768, + 11.6489661 + ], + [ + 48.1329433, + 11.6486509 + ], + [ + 48.1329096, + 11.6482503 + ], + [ + 48.1328751, + 11.6477169 + ], + [ + 48.1328627, + 11.6471984 + ], + [ + 48.132884, + 11.6466189 + ], + [ + 48.1329372, + 11.6460712 + ], + [ + 48.1329778, + 11.6458195 + ], + [ + 48.1330277, + 11.6455102 + ], + [ + 48.1331909, + 11.6445638 + ], + [ + 48.1332249, + 11.6443626 + ], + [ + 48.1332654, + 11.6441224 + ], + [ + 48.1333524, + 11.6434684 + ], + [ + 48.1334884, + 11.6423271 + ] + ] + }, + { + "osmId": "102285953", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 1174.4448125270999, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1430393, + 11.6718883 + ], + [ + 48.1428541, + 11.6710693 + ], + [ + 48.1427437, + 11.6706215 + ], + [ + 48.1426358, + 11.6702028 + ], + [ + 48.1425358, + 11.6698514 + ], + [ + 48.1424008, + 11.6694319 + ], + [ + 48.1422155, + 11.6689135 + ], + [ + 48.1420768, + 11.668571 + ], + [ + 48.1418914, + 11.6681648 + ], + [ + 48.1416427, + 11.6676513 + ], + [ + 48.1414783, + 11.667332 + ], + [ + 48.1410845, + 11.6665869 + ], + [ + 48.1402058, + 11.6649234 + ], + [ + 48.1397177, + 11.6639776 + ], + [ + 48.1392496, + 11.6630365 + ], + [ + 48.1385489, + 11.6616558 + ], + [ + 48.1383227, + 11.6611996 + ], + [ + 48.1378087, + 11.6601601 + ], + [ + 48.1377146, + 11.6599733 + ], + [ + 48.1371526, + 11.6588572 + ] + ] + }, + { + "osmId": "102285961", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 173.3584518522701, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1362582, + 11.6569438 + ], + [ + 48.1364629, + 11.6573941 + ], + [ + 48.1366273, + 11.6577477 + ], + [ + 48.1366984, + 11.6578994 + ], + [ + 48.1367939, + 11.6581031 + ], + [ + 48.1371526, + 11.6588572 + ] + ] + }, + { + "osmId": "102285992", + "name": "Grafing - Berg am Laim", + "lengthMeters": 7121.6084976476195, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1065326, + 11.7533065 + ], + [ + 48.1067124, + 11.7524707 + ], + [ + 48.1068508, + 11.7518334 + ], + [ + 48.1072877, + 11.7498217 + ], + [ + 48.1078943, + 11.7470289 + ], + [ + 48.1080218, + 11.746442 + ], + [ + 48.1084108, + 11.7446537 + ], + [ + 48.1084958, + 11.7442618 + ], + [ + 48.1087995, + 11.7428622 + ], + [ + 48.1088595, + 11.7425865 + ], + [ + 48.1094342, + 11.739948 + ], + [ + 48.1095922, + 11.7392776 + ], + [ + 48.1097063, + 11.7387935 + ], + [ + 48.1099063, + 11.7379448 + ], + [ + 48.1105574, + 11.7352325 + ], + [ + 48.1106419, + 11.7348702 + ], + [ + 48.1109507, + 11.7335471 + ], + [ + 48.1111113, + 11.732823 + ], + [ + 48.1111766, + 11.7325286 + ], + [ + 48.1112299, + 11.7322825 + ], + [ + 48.1114069, + 11.7314651 + ], + [ + 48.1114673, + 11.731186 + ], + [ + 48.111581, + 11.7306564 + ], + [ + 48.1118254, + 11.7295183 + ], + [ + 48.1118821, + 11.7292313 + ], + [ + 48.1119847, + 11.7287125 + ], + [ + 48.1121239, + 11.7280082 + ], + [ + 48.1124014, + 11.7266204 + ], + [ + 48.1124637, + 11.7263058 + ], + [ + 48.1126723, + 11.7252365 + ], + [ + 48.1129262, + 11.7239399 + ], + [ + 48.1129298, + 11.7239218 + ], + [ + 48.113047, + 11.7233375 + ], + [ + 48.1135687, + 11.7209195 + ], + [ + 48.1137449, + 11.7201028 + ], + [ + 48.1140545, + 11.7186682 + ], + [ + 48.1145486, + 11.7163783 + ], + [ + 48.1164521, + 11.7075524 + ], + [ + 48.1165102, + 11.7072869 + ], + [ + 48.1168925, + 11.7055405 + ], + [ + 48.1169808, + 11.7051373 + ], + [ + 48.1172838, + 11.7037491 + ], + [ + 48.1175585, + 11.7025091 + ], + [ + 48.1178941, + 11.7010778 + ], + [ + 48.1180661, + 11.7003358 + ], + [ + 48.1180983, + 11.7002021 + ], + [ + 48.1182515, + 11.6995383 + ], + [ + 48.1183995, + 11.6988709 + ], + [ + 48.1185374, + 11.6982454 + ], + [ + 48.1186913, + 11.697501 + ], + [ + 48.118947, + 11.6962016 + ], + [ + 48.1191198, + 11.6953687 + ], + [ + 48.1194405, + 11.6937859 + ], + [ + 48.1195114, + 11.6934581 + ], + [ + 48.1200846, + 11.6908077 + ], + [ + 48.1201685, + 11.6904197 + ], + [ + 48.1205972, + 11.6884425 + ], + [ + 48.1206692, + 11.6881105 + ], + [ + 48.1211835, + 11.6857384 + ], + [ + 48.121783, + 11.682976 + ], + [ + 48.1224627, + 11.6798453 + ], + [ + 48.122881, + 11.6779083 + ], + [ + 48.1232705, + 11.6761049 + ], + [ + 48.1232931, + 11.6760001 + ], + [ + 48.1235029, + 11.675028 + ], + [ + 48.1238645, + 11.6733529 + ], + [ + 48.1240613, + 11.6724409 + ], + [ + 48.1241681, + 11.6719651 + ], + [ + 48.1244758, + 11.6706356 + ], + [ + 48.1244949, + 11.6705543 + ], + [ + 48.1245129, + 11.6704776 + ], + [ + 48.1247274, + 11.6695645 + ], + [ + 48.1250758, + 11.667997 + ], + [ + 48.1253009, + 11.6669548 + ], + [ + 48.1257471, + 11.664889 + ], + [ + 48.1257967, + 11.6646584 + ], + [ + 48.1260718, + 11.6633796 + ], + [ + 48.1263535, + 11.6620916 + ] + ] + }, + { + "osmId": "102286002", + "name": null, + "lengthMeters": 901.6691883540885, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1328061, + 11.6487174 + ], + [ + 48.1328078, + 11.648729 + ], + [ + 48.1328301, + 11.6488813 + ], + [ + 48.1328468, + 11.6489988 + ], + [ + 48.1328988, + 11.6493236 + ], + [ + 48.1329681, + 11.6496934 + ], + [ + 48.1330369, + 11.6499941 + ], + [ + 48.1330874, + 11.6502041 + ], + [ + 48.1331978, + 11.6506222 + ], + [ + 48.1332339, + 11.6507416 + ], + [ + 48.1332969, + 11.6509498 + ], + [ + 48.1333793, + 11.6511927 + ], + [ + 48.13346, + 11.6514306 + ], + [ + 48.1335674, + 11.6517058 + ], + [ + 48.1337496, + 11.6521455 + ], + [ + 48.1338524, + 11.6523751 + ], + [ + 48.1339336, + 11.6525456 + ], + [ + 48.1340244, + 11.6527365 + ], + [ + 48.134554, + 11.6537983 + ], + [ + 48.134961, + 11.6546155 + ], + [ + 48.1351833, + 11.6550543 + ], + [ + 48.1353836, + 11.6554494 + ], + [ + 48.1362271, + 11.6571254 + ], + [ + 48.1363994, + 11.6574697 + ], + [ + 48.1365724, + 11.65781 + ], + [ + 48.1367443, + 11.6581574 + ], + [ + 48.1371061, + 11.6588954 + ] + ] + }, + { + "osmId": "102286016", + "name": null, + "lengthMeters": 302.67241656183035, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332181, + 11.6411068 + ], + [ + 48.1330024, + 11.6431582 + ], + [ + 48.1327945, + 11.6451356 + ] + ] + }, + { + "osmId": "102286025", + "name": null, + "lengthMeters": 171.92976759293228, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1348524, + 11.6283928 + ], + [ + 48.1349951, + 11.6269407 + ], + [ + 48.1350167, + 11.6267231 + ], + [ + 48.135051, + 11.6264224 + ], + [ + 48.1350719, + 11.6260999 + ] + ] + }, + { + "osmId": "102286031", + "name": null, + "lengthMeters": 476.4904051907498, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1328817, + 11.6447951 + ], + [ + 48.1333298, + 11.6404018 + ], + [ + 48.1335291, + 11.6384481 + ] + ] + }, + { + "osmId": "102286042", + "name": null, + "lengthMeters": 101.15717369845066, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135664, + 11.6557521 + ], + [ + 48.1362127, + 11.6568394 + ] + ] + }, + { + "osmId": "102300713", + "name": null, + "lengthMeters": 444.9006222154488, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1389652, + 11.651133 + ], + [ + 48.1385647, + 11.6512731 + ], + [ + 48.1382507, + 11.6513476 + ], + [ + 48.1379765, + 11.6513697 + ], + [ + 48.1378363, + 11.6513761 + ], + [ + 48.1376968, + 11.6513758 + ], + [ + 48.1375289, + 11.6513721 + ], + [ + 48.1373628, + 11.6513519 + ], + [ + 48.1372116, + 11.6513171 + ], + [ + 48.1370609, + 11.6512761 + ], + [ + 48.1369426, + 11.6512346 + ], + [ + 48.136846, + 11.6511963 + ], + [ + 48.136602, + 11.6510695 + ], + [ + 48.1364808, + 11.6509979 + ], + [ + 48.1363687, + 11.650922 + ], + [ + 48.1361398, + 11.6507361 + ], + [ + 48.1360749, + 11.6506767 + ], + [ + 48.1360311, + 11.6506365 + ], + [ + 48.1359258, + 11.6505326 + ], + [ + 48.135758, + 11.6503388 + ], + [ + 48.1357315, + 11.6503081 + ], + [ + 48.1355156, + 11.6500173 + ], + [ + 48.1353962, + 11.6498199 + ], + [ + 48.1353166, + 11.6496923 + ] + ] + }, + { + "osmId": "102300723", + "name": null, + "lengthMeters": 120.96753870653285, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135158, + 11.6331112 + ], + [ + 48.1351478, + 11.6332984 + ], + [ + 48.135143, + 11.6333994 + ], + [ + 48.1351404, + 11.6335389 + ], + [ + 48.1351414, + 11.6336819 + ], + [ + 48.1351546, + 11.6339406 + ], + [ + 48.1351623, + 11.6341252 + ], + [ + 48.1351626, + 11.634323 + ], + [ + 48.1351571, + 11.6344665 + ], + [ + 48.1351423, + 11.6347381 + ] + ] + }, + { + "osmId": "102300740", + "name": null, + "lengthMeters": 290.77960431914363, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342242, + 11.6163628 + ], + [ + 48.1342755, + 11.6166536 + ], + [ + 48.1343203, + 11.616944 + ], + [ + 48.134377, + 11.6174154 + ], + [ + 48.1344368, + 11.6178574 + ], + [ + 48.1344831, + 11.6181335 + ], + [ + 48.1345392, + 11.6184664 + ], + [ + 48.1347079, + 11.6194992 + ], + [ + 48.1348107, + 11.6201802 + ] + ] + }, + { + "osmId": "102300742", + "name": null, + "lengthMeters": 106.85252710240735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356481, + 11.6353104 + ], + [ + 48.1356849, + 11.6354872 + ], + [ + 48.1357135, + 11.6356916 + ], + [ + 48.1358387, + 11.6367205 + ] + ] + }, + { + "osmId": "102318080", + "name": null, + "lengthMeters": 93.783979862412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1291454, + 11.6071837 + ], + [ + 48.1287871, + 11.606751 + ], + [ + 48.1286338, + 11.6065475 + ], + [ + 48.1285009, + 11.6063692 + ] + ] + }, + { + "osmId": "102318081", + "name": null, + "lengthMeters": 187.91469578631614, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1316315, + 11.6108923 + ], + [ + 48.1305276, + 11.6095213 + ], + [ + 48.1303358, + 11.609267 + ] + ] + }, + { + "osmId": "102331997", + "name": null, + "lengthMeters": 103.65821501212397, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1204721, + 11.5569425 + ], + [ + 48.1205611, + 11.5567224 + ], + [ + 48.1206295, + 11.5565643 + ], + [ + 48.120747, + 11.5563009 + ], + [ + 48.1209409, + 11.5558372 + ], + [ + 48.120972, + 11.555764 + ] + ] + }, + { + "osmId": "102332003", + "name": null, + "lengthMeters": 198.00512823536513, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188863, + 11.5606715 + ], + [ + 48.1178408, + 11.5628307 + ] + ] + }, + { + "osmId": "102332036", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 208.39551070581436, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1177283, + 11.5735665 + ], + [ + 48.1170173, + 11.5709691 + ] + ] + }, + { + "osmId": "102332041", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 826.7064035722882, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1200777, + 11.5580442 + ], + [ + 48.120332, + 11.5575117 + ], + [ + 48.1203665, + 11.5574393 + ], + [ + 48.1207238, + 11.5566911 + ], + [ + 48.1208533, + 11.5564274 + ], + [ + 48.1208667, + 11.5564001 + ], + [ + 48.1211797, + 11.5557622 + ], + [ + 48.121188, + 11.5557452 + ], + [ + 48.1212229, + 11.5556691 + ], + [ + 48.1213496, + 11.5554162 + ], + [ + 48.121577, + 11.5549868 + ], + [ + 48.1218093, + 11.5545359 + ], + [ + 48.12211, + 11.5538932 + ], + [ + 48.1224973, + 11.5530805 + ], + [ + 48.122787, + 11.5524725 + ], + [ + 48.1232993, + 11.5514145 + ], + [ + 48.12393, + 11.5500946 + ], + [ + 48.124367, + 11.5491802 + ], + [ + 48.1244407, + 11.5490275 + ] + ] + }, + { + "osmId": "102332044", + "name": null, + "lengthMeters": 550.8186999405845, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.120972, + 11.555764 + ], + [ + 48.1211428, + 11.5553622 + ], + [ + 48.1213422, + 11.5549443 + ], + [ + 48.1223484, + 11.5528408 + ], + [ + 48.1232139, + 11.5510331 + ], + [ + 48.1234849, + 11.5505055 + ], + [ + 48.1238906, + 11.549772 + ] + ] + }, + { + "osmId": "102332106", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 197.998787382248, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1178065, + 11.5627941 + ], + [ + 48.1188368, + 11.5606342 + ], + [ + 48.1188417, + 11.5606239 + ] + ] + }, + { + "osmId": "102332119", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 450.85352800999624, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1168737, + 11.5703926 + ], + [ + 48.1167543, + 11.5698061 + ], + [ + 48.1167053, + 11.5695096 + ], + [ + 48.1166599, + 11.5692058 + ], + [ + 48.1166102, + 11.5687185 + ], + [ + 48.1165843, + 11.5682389 + ], + [ + 48.1165813, + 11.5679416 + ], + [ + 48.1165873, + 11.567603 + ], + [ + 48.1166174, + 11.5670018 + ], + [ + 48.1166833, + 11.5663496 + ], + [ + 48.1167583, + 11.5658742 + ], + [ + 48.1167751, + 11.5657694 + ], + [ + 48.1168823, + 11.5652496 + ], + [ + 48.1170142, + 11.5647428 + ], + [ + 48.1170947, + 11.564483 + ] + ] + }, + { + "osmId": "102332154", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 98.73589831082099, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188829, + 11.577725 + ], + [ + 48.1185376, + 11.5764996 + ] + ] + }, + { + "osmId": "102332163", + "name": null, + "lengthMeters": 113.41628463351793, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.120283, + 11.5574132 + ], + [ + 48.120423, + 11.5570941 + ], + [ + 48.1205137, + 11.5568924 + ], + [ + 48.1206503, + 11.5566083 + ], + [ + 48.1207808, + 11.5563348 + ], + [ + 48.1208642, + 11.5561579 + ] + ] + }, + { + "osmId": "102332180", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 104.24042823602736, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1172131, + 11.5641426 + ], + [ + 48.1172685, + 11.5640051 + ], + [ + 48.1174447, + 11.5635699 + ], + [ + 48.1177256, + 11.5629677 + ] + ] + }, + { + "osmId": "102332187", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 171.8080744754921, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1183187, + 11.5757053 + ], + [ + 48.1178767, + 11.5741021 + ], + [ + 48.1177283, + 11.5735665 + ] + ] + }, + { + "osmId": "102332193", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 1555.2874443739815, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1229099, + 11.5977261 + ], + [ + 48.1227944, + 11.5974442 + ], + [ + 48.1227507, + 11.5973324 + ], + [ + 48.1226957, + 11.5971918 + ], + [ + 48.1225811, + 11.5968794 + ], + [ + 48.1224128, + 11.5963691 + ], + [ + 48.1222915, + 11.5959264 + ], + [ + 48.1221822, + 11.595477 + ], + [ + 48.1221053, + 11.5951378 + ], + [ + 48.1220586, + 11.5949314 + ], + [ + 48.1218716, + 11.5939171 + ], + [ + 48.121679, + 11.5927768 + ], + [ + 48.1214369, + 11.5913291 + ], + [ + 48.1211561, + 11.5896715 + ], + [ + 48.121145, + 11.5896062 + ], + [ + 48.1210231, + 11.5888867 + ], + [ + 48.1206565, + 11.5867532 + ], + [ + 48.120343, + 11.5849293 + ], + [ + 48.120253, + 11.584364 + ], + [ + 48.120114, + 11.5835305 + ], + [ + 48.1199561, + 11.5825838 + ], + [ + 48.1196815, + 11.5809419 + ], + [ + 48.1195741, + 11.5803974 + ], + [ + 48.119434, + 11.5797772 + ], + [ + 48.1192363, + 11.579023 + ], + [ + 48.1188829, + 11.577725 + ] + ] + }, + { + "osmId": "102332201", + "name": null, + "lengthMeters": 102.77371317926827, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1231282, + 11.5983064 + ], + [ + 48.1236891, + 11.5994069 + ] + ] + }, + { + "osmId": "102332204", + "name": null, + "lengthMeters": 130.0381897540499, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1236891, + 11.5994069 + ], + [ + 48.1243084, + 11.6005782 + ], + [ + 48.1243185, + 11.6005969 + ], + [ + 48.124322, + 11.6006034 + ], + [ + 48.1243323, + 11.6006226 + ], + [ + 48.1243432, + 11.6006428 + ], + [ + 48.1244165, + 11.6007787 + ] + ] + }, + { + "osmId": "102336666", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 251.17525033128518, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1246643, + 11.548552 + ], + [ + 48.1247424, + 11.5483895 + ], + [ + 48.124822, + 11.5482237 + ], + [ + 48.1259737, + 11.5457945 + ] + ] + }, + { + "osmId": "102336675", + "name": null, + "lengthMeters": 245.3879021866964, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1258515, + 11.5457554 + ], + [ + 48.125803, + 11.545852 + ], + [ + 48.1248727, + 11.5478111 + ], + [ + 48.1248558, + 11.5478474 + ], + [ + 48.1248532, + 11.5478528 + ], + [ + 48.1248329, + 11.5478964 + ], + [ + 48.1245717, + 11.5484487 + ] + ] + }, + { + "osmId": "102336679", + "name": null, + "lengthMeters": 249.45668738206822, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.125936, + 11.5457824 + ], + [ + 48.1252948, + 11.5471266 + ], + [ + 48.1252446, + 11.5472318 + ], + [ + 48.1246329, + 11.5485182 + ] + ] + }, + { + "osmId": "102336692", + "name": null, + "lengthMeters": 247.62144765125214, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1245973, + 11.5484829 + ], + [ + 48.1248397, + 11.5479721 + ], + [ + 48.1253236, + 11.5469564 + ], + [ + 48.1253337, + 11.5469351 + ], + [ + 48.1253365, + 11.5469293 + ], + [ + 48.1257431, + 11.5460772 + ], + [ + 48.1257567, + 11.5460497 + ], + [ + 48.1257731, + 11.5460165 + ], + [ + 48.1258918, + 11.5457683 + ] + ] + }, + { + "osmId": "102392926", + "name": null, + "lengthMeters": 218.6662236299074, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1299304, + 11.6081812 + ], + [ + 48.1293081, + 11.6072395 + ], + [ + 48.1289639, + 11.6067247 + ], + [ + 48.1285965, + 11.6061751 + ], + [ + 48.12856, + 11.6061189 + ], + [ + 48.1285432, + 11.6060929 + ] + ] + }, + { + "osmId": "102405279", + "name": null, + "lengthMeters": 565.7952821965586, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1349512, + 11.6193933 + ], + [ + 48.1348965, + 11.6190462 + ], + [ + 48.1347456, + 11.6180889 + ], + [ + 48.1347376, + 11.6180382 + ], + [ + 48.1347248, + 11.617957 + ], + [ + 48.1345947, + 11.6171366 + ], + [ + 48.134493, + 11.6164952 + ], + [ + 48.1344477, + 11.6162299 + ], + [ + 48.1343911, + 11.6159272 + ], + [ + 48.1343348, + 11.6156651 + ], + [ + 48.1342755, + 11.61542 + ], + [ + 48.1342301, + 11.615246 + ], + [ + 48.1341955, + 11.6151231 + ], + [ + 48.1340816, + 11.6147554 + ], + [ + 48.1339938, + 11.6145038 + ], + [ + 48.1339037, + 11.6142683 + ], + [ + 48.133856, + 11.6141498 + ], + [ + 48.1337676, + 11.6139431 + ], + [ + 48.1336754, + 11.61374 + ], + [ + 48.1335405, + 11.6134599 + ], + [ + 48.133271, + 11.612968 + ], + [ + 48.1330726, + 11.6126499 + ], + [ + 48.1329821, + 11.6125112 + ] + ] + }, + { + "osmId": "102576987", + "name": null, + "lengthMeters": 150.85750378049272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5735794, + 9.9308484 + ], + [ + 53.5740385, + 9.9303876 + ], + [ + 53.5743236, + 9.9301375 + ], + [ + 53.5743339, + 9.9301285 + ], + [ + 53.5747766, + 9.929778 + ] + ] + }, + { + "osmId": "103130722", + "name": null, + "lengthMeters": 122.50449992364005, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2039353, + 11.4694331 + ], + [ + 48.20408, + 11.468983 + ], + [ + 48.2041706, + 11.4686685 + ], + [ + 48.2042625, + 11.4683539 + ], + [ + 48.2043968, + 11.4679324 + ] + ] + }, + { + "osmId": "103130765", + "name": null, + "lengthMeters": 114.47490827534645, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2043138, + 11.4678579 + ], + [ + 48.2041421, + 11.4683288 + ], + [ + 48.2039723, + 11.468747 + ], + [ + 48.2037943, + 11.4691911 + ] + ] + }, + { + "osmId": "103149923", + "name": null, + "lengthMeters": 757.2933382084709, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1900365, + 11.5495682 + ], + [ + 48.190009, + 11.549368 + ], + [ + 48.1896623, + 11.546843 + ], + [ + 48.1894967, + 11.5456367 + ], + [ + 48.1893876, + 11.5448847 + ], + [ + 48.1892635, + 11.5441079 + ], + [ + 48.1890756, + 11.54292 + ], + [ + 48.1890439, + 11.5426958 + ], + [ + 48.1889075, + 11.5417305 + ], + [ + 48.1886322, + 11.5395732 + ] + ] + }, + { + "osmId": "103149924", + "name": null, + "lengthMeters": 132.54445873590095, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1886042, + 11.5393279 + ], + [ + 48.1885216, + 11.5386874 + ], + [ + 48.1884435, + 11.5380304 + ], + [ + 48.188394, + 11.5375681 + ] + ] + }, + { + "osmId": "103149942", + "name": null, + "lengthMeters": 97.22175300934049, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.188347, + 11.5343213 + ], + [ + 48.188293, + 11.5349022 + ], + [ + 48.1882816, + 11.535084 + ], + [ + 48.1882677, + 11.5353081 + ], + [ + 48.1882606, + 11.5356252 + ] + ] + }, + { + "osmId": "103149945", + "name": null, + "lengthMeters": 260.38139466623613, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.188394, + 11.5375681 + ], + [ + 48.188391, + 11.5375371 + ], + [ + 48.1883511, + 11.5369918 + ], + [ + 48.1883304, + 11.5365963 + ], + [ + 48.1883254, + 11.536232 + ], + [ + 48.1883338, + 11.5357732 + ], + [ + 48.1883654, + 11.5351432 + ], + [ + 48.1884184, + 11.5345535 + ], + [ + 48.1884781, + 11.5340762 + ] + ] + }, + { + "osmId": "103151192", + "name": null, + "lengthMeters": 1134.0050949351335, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1902805, + 11.5653125 + ], + [ + 48.1902352, + 11.5612796 + ], + [ + 48.1901933, + 11.5579787 + ], + [ + 48.1901583, + 11.5544948 + ], + [ + 48.190148, + 11.5537842 + ], + [ + 48.1901484, + 11.5536588 + ], + [ + 48.1901429, + 11.5530611 + ], + [ + 48.1901182, + 11.5507824 + ], + [ + 48.1901065, + 11.5504205 + ], + [ + 48.1900807, + 11.5500192 + ] + ] + }, + { + "osmId": "103151219", + "name": null, + "lengthMeters": 1132.394415910117, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.190036, + 11.550042 + ], + [ + 48.1900405, + 11.5501188 + ], + [ + 48.1900538, + 11.5503455 + ], + [ + 48.1900734, + 11.5508208 + ], + [ + 48.1900941, + 11.5524898 + ], + [ + 48.1901173, + 11.5548881 + ], + [ + 48.1901207, + 11.555085 + ], + [ + 48.1901532, + 11.5579752 + ], + [ + 48.1901903, + 11.5612773 + ], + [ + 48.1902281, + 11.5646441 + ], + [ + 48.1902288, + 11.5647034 + ], + [ + 48.1902356, + 11.5653138 + ] + ] + }, + { + "osmId": "103151222", + "name": null, + "lengthMeters": 460.0950501794299, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1903327, + 11.5659742 + ], + [ + 48.1903456, + 11.5671171 + ], + [ + 48.1903606, + 11.5684592 + ], + [ + 48.1903937, + 11.5721802 + ] + ] + }, + { + "osmId": "103155901", + "name": null, + "lengthMeters": 460.1086575201456, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.190243, + 11.5659767 + ], + [ + 48.1902451, + 11.5661677 + ], + [ + 48.1902606, + 11.5675502 + ], + [ + 48.1902805, + 11.5693465 + ], + [ + 48.1903074, + 11.5721828 + ] + ] + }, + { + "osmId": "103155903", + "name": null, + "lengthMeters": 821.9176960838313, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904008, + 11.5727244 + ], + [ + 48.1904015, + 11.5727976 + ], + [ + 48.1904705, + 11.5786974 + ], + [ + 48.1905337, + 11.5838103 + ] + ] + }, + { + "osmId": "103157458", + "name": null, + "lengthMeters": 75.2424682419958, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1878984, + 11.6121443 + ], + [ + 48.1877648, + 11.613096 + ], + [ + 48.187759, + 11.6131375 + ] + ] + }, + { + "osmId": "103157459", + "name": null, + "lengthMeters": 89.79865188398098, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1867274, + 11.6206578 + ], + [ + 48.1868954, + 11.619473 + ] + ] + }, + { + "osmId": "103157461", + "name": null, + "lengthMeters": 214.0251325051022, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1855455, + 11.6261275 + ], + [ + 48.1857967, + 11.6252902 + ], + [ + 48.185923, + 11.6248516 + ], + [ + 48.1860781, + 11.6242872 + ], + [ + 48.1862694, + 11.6234547 + ] + ] + }, + { + "osmId": "103157462", + "name": null, + "lengthMeters": 459.61477158206424, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.187759, + 11.6131375 + ], + [ + 48.1876438, + 11.6139488 + ], + [ + 48.1875567, + 11.6145692 + ], + [ + 48.1874549, + 11.6152924 + ], + [ + 48.1872551, + 11.6166804 + ], + [ + 48.1868954, + 11.6192005 + ] + ] + }, + { + "osmId": "103157463", + "name": null, + "lengthMeters": 172.74143158125096, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1843558, + 11.6293096 + ], + [ + 48.1835997, + 11.631345 + ] + ] + }, + { + "osmId": "103157476", + "name": null, + "lengthMeters": 215.3252223419599, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1862379, + 11.6234162 + ], + [ + 48.1860474, + 11.6242501 + ], + [ + 48.1858938, + 11.6248276 + ], + [ + 48.1857668, + 11.625273 + ], + [ + 48.1855109, + 11.6261056 + ] + ] + }, + { + "osmId": "103157479", + "name": null, + "lengthMeters": 256.6558182852219, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1854614, + 11.6262707 + ], + [ + 48.1853517, + 11.6265797 + ], + [ + 48.184689, + 11.6283895 + ], + [ + 48.184402, + 11.629182 + ], + [ + 48.1843558, + 11.6293096 + ] + ] + }, + { + "osmId": "103157483", + "name": null, + "lengthMeters": 86.97123376733705, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1868553, + 11.6194864 + ], + [ + 48.1866945, + 11.6206345 + ] + ] + }, + { + "osmId": "103157489", + "name": null, + "lengthMeters": 2082.0664625443433, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1904493, + 11.5844595 + ], + [ + 48.1904539, + 11.5850622 + ], + [ + 48.1904514, + 11.5855037 + ], + [ + 48.1904466, + 11.5865709 + ], + [ + 48.1904407, + 11.5874308 + ], + [ + 48.1904488, + 11.5882913 + ], + [ + 48.1904789, + 11.5907184 + ], + [ + 48.190481, + 11.5921865 + ], + [ + 48.1904667, + 11.5928731 + ], + [ + 48.1904381, + 11.5936393 + ], + [ + 48.1903869, + 11.5945046 + ], + [ + 48.1903352, + 11.5951546 + ], + [ + 48.1902764, + 11.5957626 + ], + [ + 48.1902339, + 11.5961746 + ], + [ + 48.1901324, + 11.5969581 + ], + [ + 48.1900038, + 11.5979565 + ], + [ + 48.1899234, + 11.598513 + ], + [ + 48.1898413, + 11.5990689 + ], + [ + 48.1896945, + 11.6000534 + ], + [ + 48.1894423, + 11.6017508 + ], + [ + 48.1882439, + 11.6097782 + ], + [ + 48.1882137, + 11.6099861 + ], + [ + 48.188031, + 11.6112574 + ], + [ + 48.1880051, + 11.6114257 + ], + [ + 48.1879712, + 11.6116453 + ], + [ + 48.1879161, + 11.6120116 + ], + [ + 48.1878984, + 11.6121443 + ] + ] + }, + { + "osmId": "103163235", + "name": null, + "lengthMeters": 301.2570706864511, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1878669, + 11.6455164 + ], + [ + 48.1874571, + 11.6452918 + ], + [ + 48.1864208, + 11.6446972 + ], + [ + 48.1860526, + 11.6444843 + ], + [ + 48.1858369, + 11.6443662 + ], + [ + 48.1856814, + 11.6442811 + ], + [ + 48.1853283, + 11.6440977 + ] + ] + }, + { + "osmId": "103163236", + "name": null, + "lengthMeters": 434.5267538847137, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1849597, + 11.6439327 + ], + [ + 48.1845777, + 11.6437916 + ], + [ + 48.1842919, + 11.643702 + ], + [ + 48.1839888, + 11.643633 + ], + [ + 48.1837609, + 11.6435927 + ], + [ + 48.1836829, + 11.6435826 + ], + [ + 48.1835301, + 11.6435628 + ], + [ + 48.1831869, + 11.6435391 + ], + [ + 48.1828932, + 11.6435401 + ], + [ + 48.1826642, + 11.6435491 + ], + [ + 48.1824842, + 11.643566 + ], + [ + 48.182159, + 11.6436095 + ], + [ + 48.181943, + 11.643651 + ], + [ + 48.1817276, + 11.6437028 + ], + [ + 48.1812786, + 11.6438405 + ], + [ + 48.1810974, + 11.6439116 + ] + ] + }, + { + "osmId": "103163237", + "name": null, + "lengthMeters": 342.1295246866153, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1793387, + 11.6444978 + ], + [ + 48.1786999, + 11.6447129 + ], + [ + 48.1783885, + 11.6448131 + ], + [ + 48.1780759, + 11.6449017 + ], + [ + 48.1777947, + 11.6449694 + ], + [ + 48.1775123, + 11.6450263 + ], + [ + 48.1771637, + 11.6450833 + ], + [ + 48.1768934, + 11.6451154 + ], + [ + 48.176301, + 11.6451801 + ] + ] + }, + { + "osmId": "103163244", + "name": null, + "lengthMeters": 107.41965002932214, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1802848, + 11.6442049 + ], + [ + 48.1793387, + 11.6444978 + ] + ] + }, + { + "osmId": "103163594", + "name": null, + "lengthMeters": 1434.722585428684, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1986037, + 11.655773 + ], + [ + 48.1956511, + 11.6518881 + ], + [ + 48.1947512, + 11.6507066 + ], + [ + 48.1939183, + 11.6496304 + ], + [ + 48.1934271, + 11.6490708 + ], + [ + 48.1929819, + 11.6486288 + ], + [ + 48.1925151, + 11.6482283 + ], + [ + 48.1922549, + 11.6480137 + ], + [ + 48.1920462, + 11.6478648 + ], + [ + 48.1918942, + 11.6477951 + ], + [ + 48.1913818, + 11.6474681 + ], + [ + 48.1900748, + 11.6467247 + ], + [ + 48.1900002, + 11.6466832 + ], + [ + 48.189298, + 11.6462921 + ], + [ + 48.1892802, + 11.6462822 + ], + [ + 48.1891847, + 11.646229 + ], + [ + 48.1878669, + 11.6455164 + ] + ] + }, + { + "osmId": "103163595", + "name": null, + "lengthMeters": 237.78414111876035, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2002161, + 11.6578804 + ], + [ + 48.2001706, + 11.6578207 + ], + [ + 48.1995013, + 11.6569416 + ], + [ + 48.1986037, + 11.655773 + ] + ] + }, + { + "osmId": "103163596", + "name": null, + "lengthMeters": 1680.2850686124873, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2121194, + 11.6732945 + ], + [ + 48.2120162, + 11.6731849 + ], + [ + 48.2117726, + 11.6729126 + ], + [ + 48.2115343, + 11.6726387 + ], + [ + 48.2112298, + 11.6722669 + ], + [ + 48.2111216, + 11.6721348 + ], + [ + 48.2107181, + 11.6716133 + ], + [ + 48.2099953, + 11.6706673 + ], + [ + 48.2099096, + 11.6705552 + ], + [ + 48.2098562, + 11.6704853 + ], + [ + 48.2097651, + 11.6703661 + ], + [ + 48.2089306, + 11.6692735 + ], + [ + 48.2080949, + 11.6681813 + ], + [ + 48.2067945, + 11.6664777 + ], + [ + 48.2054411, + 11.6647096 + ], + [ + 48.2046513, + 11.6636778 + ], + [ + 48.2038399, + 11.6626151 + ], + [ + 48.2027559, + 11.6611994 + ], + [ + 48.2022138, + 11.6604906 + ], + [ + 48.2017549, + 11.6598919 + ], + [ + 48.2016671, + 11.6597773 + ], + [ + 48.2015795, + 11.6596628 + ], + [ + 48.2015289, + 11.6595967 + ], + [ + 48.2006792, + 11.6584859 + ] + ] + }, + { + "osmId": "103304685", + "name": null, + "lengthMeters": 362.0951965449345, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2160557, + 11.45815 + ], + [ + 48.2157208, + 11.4583218 + ], + [ + 48.215538, + 11.4584247 + ], + [ + 48.2138863, + 11.4590375 + ], + [ + 48.2136366, + 11.4591752 + ], + [ + 48.2134445, + 11.4592679 + ], + [ + 48.2133315, + 11.4593225 + ], + [ + 48.2131693, + 11.4593769 + ], + [ + 48.2129239, + 11.4594698 + ] + ] + }, + { + "osmId": "103314095", + "name": null, + "lengthMeters": 159.0543169286947, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4611529, + 13.5708224 + ], + [ + 52.4608099, + 13.5716247 + ], + [ + 52.4605908, + 13.5722051 + ], + [ + 52.4603826, + 13.5727985 + ] + ] + }, + { + "osmId": "103314097", + "name": null, + "lengthMeters": 1310.0614451462345, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4612001, + 13.5708888 + ], + [ + 52.461429, + 13.570369 + ], + [ + 52.4616715, + 13.5698565 + ], + [ + 52.4616869, + 13.5698236 + ], + [ + 52.4617333, + 13.5697247 + ], + [ + 52.4620405, + 13.569037 + ], + [ + 52.4620688, + 13.5689737 + ], + [ + 52.4623709, + 13.5682975 + ], + [ + 52.4628828, + 13.5671396 + ], + [ + 52.4648669, + 13.5626272 + ], + [ + 52.4667141, + 13.5584368 + ], + [ + 52.4671186, + 13.5575207 + ], + [ + 52.4671347, + 13.557483 + ], + [ + 52.4673494, + 13.5570022 + ], + [ + 52.4675686, + 13.5565388 + ], + [ + 52.4678714, + 13.5559438 + ], + [ + 52.4681932, + 13.5553318 + ] + ] + }, + { + "osmId": "104669628", + "name": null, + "lengthMeters": 414.36992009375797, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5325511, + 13.3985909 + ], + [ + 52.5325621, + 13.3986808 + ], + [ + 52.5325675, + 13.3987228 + ], + [ + 52.532594, + 13.3988926 + ], + [ + 52.5326306, + 13.3991125 + ], + [ + 52.5330926, + 13.4010895 + ], + [ + 52.5334708, + 13.4027046 + ], + [ + 52.5335044, + 13.402833 + ], + [ + 52.5335346, + 13.402912 + ], + [ + 52.533573, + 13.4029768 + ], + [ + 52.5336042, + 13.4030205 + ], + [ + 52.5336508, + 13.4030693 + ], + [ + 52.5337276, + 13.4031436 + ], + [ + 52.5338997, + 13.4033141 + ], + [ + 52.5339258, + 13.4033443 + ], + [ + 52.5339521, + 13.4033865 + ], + [ + 52.5339688, + 13.4034215 + ], + [ + 52.5339844, + 13.4034664 + ], + [ + 52.5339984, + 13.4035228 + ], + [ + 52.5340754, + 13.404018 + ] + ] + }, + { + "osmId": "104669629", + "name": null, + "lengthMeters": 113.1744459669316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354084, + 13.4064708 + ], + [ + 52.5349053, + 13.4060139 + ], + [ + 52.5345997, + 13.4057364 + ], + [ + 52.5345175, + 13.4056617 + ] + ] + }, + { + "osmId": "104669630", + "name": null, + "lengthMeters": 399.37011675215587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5375879, + 13.4086956 + ], + [ + 52.5376339, + 13.4087446 + ], + [ + 52.5376919, + 13.4088065 + ], + [ + 52.5378946, + 13.4090225 + ], + [ + 52.5379238, + 13.4090536 + ], + [ + 52.5380776, + 13.4092177 + ], + [ + 52.5381898, + 13.4093372 + ], + [ + 52.5384853, + 13.4096522 + ], + [ + 52.5385633, + 13.4097354 + ], + [ + 52.5386401, + 13.409818 + ], + [ + 52.5388579, + 13.4100521 + ], + [ + 52.5391089, + 13.4103144 + ], + [ + 52.5393917, + 13.41061 + ], + [ + 52.5397686, + 13.4110033 + ], + [ + 52.540173, + 13.4114253 + ], + [ + 52.5404182, + 13.4116896 + ], + [ + 52.5405616, + 13.4118354 + ], + [ + 52.5406096, + 13.4118873 + ] + ] + }, + { + "osmId": "104669631", + "name": null, + "lengthMeters": 203.37143339509365, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306619, + 13.3834941 + ], + [ + 52.530991, + 13.3846882 + ], + [ + 52.5310641, + 13.3849465 + ], + [ + 52.5311352, + 13.3851963 + ], + [ + 52.5311892, + 13.3853934 + ], + [ + 52.5312132, + 13.3854871 + ], + [ + 52.5312384, + 13.3855839 + ], + [ + 52.5312613, + 13.3856822 + ], + [ + 52.5312945, + 13.3858468 + ], + [ + 52.5313248, + 13.386015 + ], + [ + 52.5313429, + 13.3861166 + ], + [ + 52.5313591, + 13.3861954 + ], + [ + 52.5313739, + 13.3862596 + ] + ] + }, + { + "osmId": "104669632", + "name": null, + "lengthMeters": 285.2914259104409, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354084, + 13.4064708 + ], + [ + 52.5355406, + 13.4065925 + ], + [ + 52.5355865, + 13.4066394 + ], + [ + 52.5356878, + 13.4067404 + ], + [ + 52.5358315, + 13.4068854 + ], + [ + 52.5358812, + 13.4069354 + ], + [ + 52.5361336, + 13.4071892 + ], + [ + 52.5362372, + 13.4072934 + ], + [ + 52.5363074, + 13.407365 + ], + [ + 52.5363406, + 13.4073989 + ], + [ + 52.5364911, + 13.4075524 + ], + [ + 52.5365213, + 13.4075832 + ], + [ + 52.5365965, + 13.4076599 + ], + [ + 52.5367075, + 13.4077749 + ], + [ + 52.5368744, + 13.4079478 + ], + [ + 52.5369004, + 13.4079747 + ], + [ + 52.5369732, + 13.4080501 + ], + [ + 52.5371529, + 13.4082376 + ], + [ + 52.5373546, + 13.4084499 + ], + [ + 52.5374429, + 13.4085429 + ], + [ + 52.5375879, + 13.4086956 + ] + ] + }, + { + "osmId": "104765080", + "name": null, + "lengthMeters": 794.672806847397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096523, + 13.4648983 + ], + [ + 52.5098538, + 13.4646235 + ], + [ + 52.5099722, + 13.464482 + ], + [ + 52.5106076, + 13.4638577 + ], + [ + 52.5106773, + 13.4637873 + ], + [ + 52.5108309, + 13.4636421 + ], + [ + 52.5111368, + 13.4633489 + ], + [ + 52.5112311, + 13.4632604 + ], + [ + 52.5113254, + 13.4631678 + ], + [ + 52.5113854, + 13.4631089 + ], + [ + 52.511412, + 13.4630838 + ], + [ + 52.5114202, + 13.463076 + ], + [ + 52.5114662, + 13.4630325 + ], + [ + 52.5115055, + 13.4629853 + ], + [ + 52.5115395, + 13.4629298 + ], + [ + 52.5115913, + 13.4628322 + ], + [ + 52.5118353, + 13.4622419 + ], + [ + 52.5120898, + 13.4616261 + ], + [ + 52.5121306, + 13.4615273 + ], + [ + 52.5121504, + 13.4614166 + ], + [ + 52.5122049, + 13.4611122 + ], + [ + 52.5122747, + 13.4607225 + ], + [ + 52.5124175, + 13.4599245 + ], + [ + 52.5124271, + 13.4598709 + ], + [ + 52.5125018, + 13.4594569 + ], + [ + 52.5125179, + 13.4593674 + ], + [ + 52.5126725, + 13.458491 + ], + [ + 52.5126916, + 13.4583897 + ], + [ + 52.5127683, + 13.4579747 + ], + [ + 52.5127998, + 13.4578045 + ], + [ + 52.5128418, + 13.4576781 + ], + [ + 52.5130095, + 13.4571733 + ], + [ + 52.5131379, + 13.4567776 + ], + [ + 52.513172, + 13.4566724 + ], + [ + 52.5134495, + 13.4558496 + ], + [ + 52.5134784, + 13.4557638 + ], + [ + 52.5135221, + 13.4556341 + ] + ] + }, + { + "osmId": "104765087", + "name": null, + "lengthMeters": 475.53295008601344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205699, + 13.4720217 + ], + [ + 52.5205853, + 13.4722311 + ], + [ + 52.5205963, + 13.472371 + ], + [ + 52.5206047, + 13.4724749 + ], + [ + 52.5206067, + 13.4728048 + ], + [ + 52.5205552, + 13.4734348 + ], + [ + 52.5204942, + 13.474128 + ], + [ + 52.5203966, + 13.4753697 + ], + [ + 52.5203829, + 13.4755215 + ], + [ + 52.5203111, + 13.4763168 + ], + [ + 52.5202528, + 13.4770275 + ], + [ + 52.5202428, + 13.4771711 + ], + [ + 52.520238, + 13.4773398 + ], + [ + 52.5202428, + 13.4775481 + ], + [ + 52.5202481, + 13.4776675 + ], + [ + 52.5202582, + 13.4778136 + ], + [ + 52.5202751, + 13.4779488 + ], + [ + 52.5203057, + 13.4782856 + ], + [ + 52.5203395, + 13.4787369 + ], + [ + 52.520359, + 13.4789919 + ] + ] + }, + { + "osmId": "104765091", + "name": null, + "lengthMeters": 113.98863972736747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.458336, + 13.5118131 + ], + [ + 52.4584654, + 13.5119365 + ], + [ + 52.4586564, + 13.5121185 + ], + [ + 52.4589659, + 13.5124023 + ], + [ + 52.4590277, + 13.5124598 + ], + [ + 52.4590419, + 13.5124717 + ], + [ + 52.459092, + 13.5125138 + ], + [ + 52.4591004, + 13.5125194 + ], + [ + 52.4591309, + 13.5125398 + ], + [ + 52.4591414, + 13.5125468 + ], + [ + 52.4592402, + 13.5125972 + ] + ] + }, + { + "osmId": "104765093", + "name": null, + "lengthMeters": 77.31345106581914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4614527, + 13.5136522 + ], + [ + 52.4619389, + 13.5138905 + ], + [ + 52.4619526, + 13.5138972 + ], + [ + 52.4621195, + 13.5139755 + ] + ] + }, + { + "osmId": "104765095", + "name": null, + "lengthMeters": 87.43949780512568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4606991, + 13.5132836 + ], + [ + 52.4610689, + 13.5134614 + ], + [ + 52.4614527, + 13.5136522 + ] + ] + }, + { + "osmId": "104765116", + "name": null, + "lengthMeters": 476.85104907320215, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5203877, + 13.4789861 + ], + [ + 52.5203563, + 13.4786003 + ], + [ + 52.520328, + 13.4782815 + ], + [ + 52.5203119, + 13.4780996 + ], + [ + 52.5202981, + 13.4779444 + ], + [ + 52.5202924, + 13.4778842 + ], + [ + 52.5202822, + 13.4777624 + ], + [ + 52.520271, + 13.4776098 + ], + [ + 52.5202659, + 13.4775193 + ], + [ + 52.5202648, + 13.4773997 + ], + [ + 52.5202664, + 13.47732 + ], + [ + 52.5202679, + 13.4772421 + ], + [ + 52.520275, + 13.4770577 + ], + [ + 52.5203526, + 13.4761733 + ], + [ + 52.5204185, + 13.4754219 + ], + [ + 52.5205244, + 13.4741881 + ], + [ + 52.5205573, + 13.4738124 + ], + [ + 52.5205866, + 13.4734345 + ], + [ + 52.5205904, + 13.4733866 + ], + [ + 52.5206177, + 13.4730568 + ], + [ + 52.5206277, + 13.4729416 + ], + [ + 52.5206366, + 13.4728072 + ], + [ + 52.5206384, + 13.4726674 + ], + [ + 52.5206342, + 13.472556 + ], + [ + 52.5206301, + 13.4724649 + ], + [ + 52.5206222, + 13.4723588 + ], + [ + 52.5206188, + 13.4723133 + ], + [ + 52.5205956, + 13.4719979 + ] + ] + }, + { + "osmId": "104765119", + "name": null, + "lengthMeters": 640.6847286018663, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51236, + 13.4977506 + ], + [ + 52.5128648, + 13.4978829 + ], + [ + 52.5129935, + 13.4979177 + ], + [ + 52.5131384, + 13.4979586 + ], + [ + 52.5137624, + 13.4981321 + ], + [ + 52.5139836, + 13.4981902 + ], + [ + 52.5140772, + 13.4982148 + ], + [ + 52.5145506, + 13.498338 + ], + [ + 52.5152573, + 13.4985221 + ], + [ + 52.5154751, + 13.4985788 + ], + [ + 52.5157018, + 13.4986368 + ], + [ + 52.5157977, + 13.4986614 + ], + [ + 52.5163194, + 13.4988084 + ], + [ + 52.5172243, + 13.499037 + ], + [ + 52.5179705, + 13.4992303 + ], + [ + 52.5180478, + 13.4992556 + ], + [ + 52.5180484, + 13.4992557 + ] + ] + }, + { + "osmId": "104834194", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 524.5485904561426, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0352163, + 11.5761319 + ], + [ + 48.0349698, + 11.5762485 + ], + [ + 48.0337133, + 11.5768429 + ], + [ + 48.0335993, + 11.5768969 + ], + [ + 48.0322249, + 11.577547 + ], + [ + 48.0307186, + 11.5782596 + ] + ] + }, + { + "osmId": "104834196", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 524.0571417489367, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0307241, + 11.5783145 + ], + [ + 48.0322381, + 11.5775956 + ], + [ + 48.0336099, + 11.5769467 + ], + [ + 48.0337238, + 11.5768928 + ], + [ + 48.0349802, + 11.5762986 + ], + [ + 48.0352171, + 11.5761865 + ] + ] + }, + { + "osmId": "104834202", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 678.6772623094113, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0299516, + 11.5786224 + ], + [ + 48.0288018, + 11.5791718 + ], + [ + 48.027, + 11.5800327 + ], + [ + 48.0268121, + 11.5801182 + ], + [ + 48.0251434, + 11.5808774 + ], + [ + 48.0249632, + 11.5809593 + ], + [ + 48.0248121, + 11.5810281 + ], + [ + 48.0241228, + 11.5813282 + ] + ] + }, + { + "osmId": "105070999", + "name": "Stammstrecke", + "lengthMeters": 721.8749227886544, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1383494, + 11.5707305 + ], + [ + 48.1384323, + 11.5701752 + ], + [ + 48.1385307, + 11.5691313 + ], + [ + 48.1386426, + 11.5683646 + ], + [ + 48.1387442, + 11.5678433 + ], + [ + 48.1388944, + 11.5672183 + ], + [ + 48.1389951, + 11.5669002 + ], + [ + 48.1390829, + 11.5666191 + ], + [ + 48.13916, + 11.5664336 + ], + [ + 48.1392327, + 11.5662831 + ], + [ + 48.1393246, + 11.5661156 + ], + [ + 48.1393935, + 11.5659977 + ], + [ + 48.1394456, + 11.5659017 + ], + [ + 48.1395114, + 11.5657861 + ], + [ + 48.1395847, + 11.5656594 + ], + [ + 48.1396982, + 11.5654389 + ], + [ + 48.1397476, + 11.5653245 + ], + [ + 48.1398135, + 11.5651542 + ], + [ + 48.1398672, + 11.565005 + ], + [ + 48.1399634, + 11.5647218 + ], + [ + 48.1400872, + 11.5643314 + ], + [ + 48.1402148, + 11.5639292 + ], + [ + 48.1408568, + 11.5618922 + ] + ] + }, + { + "osmId": "105071004", + "name": "Stammstrecke", + "lengthMeters": 1956.2564563583107, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357553, + 11.5799736 + ], + [ + 48.1355716, + 11.5806089 + ], + [ + 48.1354187, + 11.5810372 + ], + [ + 48.1353328, + 11.5812376 + ], + [ + 48.1351999, + 11.58149 + ], + [ + 48.135, + 11.5818337 + ], + [ + 48.1347682, + 11.5821608 + ], + [ + 48.1341389, + 11.5831392 + ], + [ + 48.1334689, + 11.5841728 + ], + [ + 48.1333497, + 11.5843867 + ], + [ + 48.1331816, + 11.5846886 + ], + [ + 48.1329793, + 11.5851094 + ], + [ + 48.1327975, + 11.585523 + ], + [ + 48.132449, + 11.5863808 + ], + [ + 48.132332, + 11.5867341 + ], + [ + 48.1319741, + 11.5881553 + ], + [ + 48.1319012, + 11.588445 + ], + [ + 48.1317674, + 11.5888432 + ], + [ + 48.1315163, + 11.5893869 + ], + [ + 48.1311901, + 11.5899624 + ], + [ + 48.13077, + 11.5906071 + ], + [ + 48.1298947, + 11.5918717 + ], + [ + 48.1291453, + 11.5930123 + ], + [ + 48.1286945, + 11.5936955 + ], + [ + 48.1277672, + 11.5952363 + ], + [ + 48.1262401, + 11.5977737 + ], + [ + 48.125967, + 11.5983206 + ], + [ + 48.1257804, + 11.5988597 + ], + [ + 48.1256701, + 11.5992791 + ], + [ + 48.1256012, + 11.5997417 + ], + [ + 48.1255767, + 11.6001996 + ], + [ + 48.1255789, + 11.6003727 + ], + [ + 48.1255873, + 11.6005743 + ], + [ + 48.1256029, + 11.6008623 + ] + ] + }, + { + "osmId": "105071039", + "name": "Stammstrecke", + "lengthMeters": 746.5387838082468, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357933, + 11.5800018 + ], + [ + 48.1362714, + 11.5781699 + ], + [ + 48.1364696, + 11.5775563 + ], + [ + 48.1367937, + 11.5766992 + ], + [ + 48.136883, + 11.576463 + ], + [ + 48.137031, + 11.5759874 + ], + [ + 48.1371133, + 11.5755942 + ], + [ + 48.1371181, + 11.5755711 + ], + [ + 48.1372519, + 11.5749389 + ], + [ + 48.1373969, + 11.5742484 + ], + [ + 48.1375931, + 11.5733173 + ], + [ + 48.1378032, + 11.5726544 + ], + [ + 48.1380325, + 11.572017 + ], + [ + 48.1382085, + 11.5713845 + ], + [ + 48.1383494, + 11.5707305 + ] + ] + }, + { + "osmId": "105071046", + "name": "Stammstrecke", + "lengthMeters": 745.4730213217694, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1382971, + 11.5707097 + ], + [ + 48.1381586, + 11.5713476 + ], + [ + 48.1379811, + 11.5719824 + ], + [ + 48.1377634, + 11.5726203 + ], + [ + 48.1375975, + 11.5731902 + ], + [ + 48.1375731, + 11.5733034 + ], + [ + 48.1371026, + 11.5755532 + ], + [ + 48.1370311, + 11.5758958 + ], + [ + 48.1368493, + 11.5764361 + ], + [ + 48.1364282, + 11.5775274 + ], + [ + 48.1363237, + 11.577837 + ], + [ + 48.1362286, + 11.5781566 + ], + [ + 48.1357553, + 11.5799736 + ] + ] + }, + { + "osmId": "105691880", + "name": null, + "lengthMeters": 684.64758075817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1858845, + 11.6102595 + ], + [ + 48.185881, + 11.6102552 + ], + [ + 48.1856253, + 11.6099378 + ], + [ + 48.1853755, + 11.6096495 + ], + [ + 48.1852685, + 11.6095354 + ], + [ + 48.1847082, + 11.6089378 + ], + [ + 48.1843355, + 11.6085008 + ], + [ + 48.1839088, + 11.6079739 + ], + [ + 48.1837712, + 11.6078245 + ], + [ + 48.1835379, + 11.6075714 + ], + [ + 48.1833237, + 11.6073516 + ], + [ + 48.1832658, + 11.6072922 + ], + [ + 48.1831253, + 11.6071612 + ], + [ + 48.1830838, + 11.6071229 + ], + [ + 48.182989, + 11.6070364 + ], + [ + 48.1825879, + 11.6066822 + ], + [ + 48.1823762, + 11.6064781 + ], + [ + 48.1812759, + 11.6053527 + ], + [ + 48.1808664, + 11.604924 + ] + ] + }, + { + "osmId": "106059922", + "name": null, + "lengthMeters": 326.54934218274275, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5504797, + 13.4225423 + ], + [ + 52.5501166, + 13.4221431 + ], + [ + 52.5500585, + 13.4220812 + ], + [ + 52.5499555, + 13.4219706 + ], + [ + 52.5493712, + 13.4213432 + ], + [ + 52.5491364, + 13.421091 + ], + [ + 52.5488775, + 13.4208129 + ], + [ + 52.5488045, + 13.4207346 + ], + [ + 52.548684, + 13.4206051 + ], + [ + 52.54861, + 13.4205256 + ], + [ + 52.548553, + 13.4204648 + ], + [ + 52.5480698, + 13.4199497 + ], + [ + 52.5480224, + 13.4198978 + ] + ] + }, + { + "osmId": "106059932", + "name": null, + "lengthMeters": 197.8874617343929, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5543022, + 13.4324722 + ], + [ + 52.5542841, + 13.4325295 + ], + [ + 52.5541794, + 13.432853 + ], + [ + 52.5536867, + 13.4343757 + ], + [ + 52.5536376, + 13.434538 + ], + [ + 52.5535939, + 13.434684 + ], + [ + 52.5535357, + 13.4348774 + ], + [ + 52.5534964, + 13.4350075 + ], + [ + 52.5534832, + 13.4350512 + ], + [ + 52.5534786, + 13.4350666 + ] + ] + }, + { + "osmId": "106059935", + "name": null, + "lengthMeters": 649.9577619620881, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5428544, + 13.4143295 + ], + [ + 52.5430142, + 13.4145001 + ], + [ + 52.5431969, + 13.4146951 + ], + [ + 52.5433537, + 13.4148626 + ], + [ + 52.5435454, + 13.4150678 + ], + [ + 52.5436694, + 13.4152046 + ], + [ + 52.5439459, + 13.4155096 + ], + [ + 52.5440128, + 13.4155835 + ], + [ + 52.5440849, + 13.4156629 + ], + [ + 52.5442847, + 13.4158835 + ], + [ + 52.5443307, + 13.4159339 + ], + [ + 52.5444703, + 13.4160867 + ], + [ + 52.5445685, + 13.4161942 + ], + [ + 52.544648, + 13.4162813 + ], + [ + 52.5448213, + 13.4164578 + ], + [ + 52.5449706, + 13.4166252 + ], + [ + 52.5450723, + 13.4167406 + ], + [ + 52.5451837, + 13.4168617 + ], + [ + 52.5453455, + 13.4170376 + ], + [ + 52.5457693, + 13.4174983 + ], + [ + 52.5458008, + 13.4175319 + ], + [ + 52.54596, + 13.417702 + ], + [ + 52.5459912, + 13.4177353 + ], + [ + 52.5461514, + 13.4179067 + ], + [ + 52.5464044, + 13.4181775 + ], + [ + 52.5464622, + 13.4182383 + ], + [ + 52.5465059, + 13.4182857 + ], + [ + 52.5465924, + 13.4183794 + ], + [ + 52.5468129, + 13.4186188 + ], + [ + 52.5470259, + 13.41885 + ], + [ + 52.5471362, + 13.4189621 + ], + [ + 52.5472881, + 13.4191239 + ], + [ + 52.5475413, + 13.4193938 + ], + [ + 52.5476388, + 13.4194976 + ], + [ + 52.54774, + 13.4196054 + ] + ] + }, + { + "osmId": "106059939", + "name": null, + "lengthMeters": 533.7379159336791, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5529397, + 13.4368055 + ], + [ + 52.5528148, + 13.4371967 + ], + [ + 52.552787, + 13.437284 + ], + [ + 52.5527584, + 13.4373739 + ], + [ + 52.5523838, + 13.4385687 + ], + [ + 52.5521424, + 13.4393271 + ], + [ + 52.5521112, + 13.4394252 + ], + [ + 52.5520805, + 13.4395216 + ], + [ + 52.5518853, + 13.440135 + ], + [ + 52.5517599, + 13.4405294 + ], + [ + 52.5517098, + 13.4406869 + ], + [ + 52.5516729, + 13.440803 + ], + [ + 52.55157, + 13.4411343 + ], + [ + 52.5514939, + 13.441379 + ], + [ + 52.5514449, + 13.4415372 + ], + [ + 52.5512956, + 13.4420178 + ], + [ + 52.5511304, + 13.4425397 + ], + [ + 52.551091, + 13.4426628 + ], + [ + 52.551048, + 13.4427985 + ], + [ + 52.5508249, + 13.4435035 + ], + [ + 52.550725, + 13.4438091 + ] + ] + }, + { + "osmId": "106144074", + "name": null, + "lengthMeters": 1356.4789820646242, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6190126, + 10.0312286 + ], + [ + 53.6178374, + 10.0307308 + ], + [ + 53.6172738, + 10.0304609 + ], + [ + 53.617209, + 10.0304343 + ], + [ + 53.6168965, + 10.0303059 + ], + [ + 53.6166012, + 10.0301985 + ], + [ + 53.6159706, + 10.0300471 + ], + [ + 53.6157241, + 10.0300082 + ], + [ + 53.6152004, + 10.0300599 + ], + [ + 53.6147895, + 10.0301737 + ], + [ + 53.614562, + 10.0302733 + ], + [ + 53.6144416, + 10.030326 + ], + [ + 53.6143279, + 10.0303757 + ], + [ + 53.6137466, + 10.0306704 + ], + [ + 53.6134176, + 10.0308333 + ], + [ + 53.6126295, + 10.0311171 + ], + [ + 53.6119076, + 10.0313421 + ], + [ + 53.6108951, + 10.0316415 + ], + [ + 53.6108596, + 10.0316523 + ], + [ + 53.6108237, + 10.0316632 + ], + [ + 53.6099509, + 10.0319177 + ], + [ + 53.6091992, + 10.0321555 + ], + [ + 53.6084639, + 10.0323709 + ], + [ + 53.6079537, + 10.0324751 + ], + [ + 53.6079241, + 10.0324811 + ], + [ + 53.6077092, + 10.032524 + ], + [ + 53.6070578, + 10.0327141 + ] + ] + }, + { + "osmId": "106144086", + "name": null, + "lengthMeters": 76.90816717230983, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6185803, + 10.031108 + ], + [ + 53.6192509, + 10.0313935 + ] + ] + }, + { + "osmId": "106483890", + "name": null, + "lengthMeters": 376.1067707046594, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5916351, + 13.4096626 + ], + [ + 52.5913456, + 13.4088372 + ], + [ + 52.5913222, + 13.4087684 + ], + [ + 52.5913143, + 13.4087453 + ], + [ + 52.5912961, + 13.4086838 + ], + [ + 52.5912727, + 13.4085869 + ], + [ + 52.5912585, + 13.4085284 + ], + [ + 52.5912451, + 13.4084676 + ], + [ + 52.5912313, + 13.4083998 + ], + [ + 52.5911472, + 13.4079288 + ], + [ + 52.5909688, + 13.4069284 + ], + [ + 52.5909482, + 13.4068132 + ], + [ + 52.590844, + 13.4062294 + ], + [ + 52.5908304, + 13.4061538 + ], + [ + 52.590672, + 13.4052412 + ], + [ + 52.5905244, + 13.4044294 + ] + ] + }, + { + "osmId": "106863634", + "name": null, + "lengthMeters": 763.0529976127925, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080872, + 13.4638211 + ], + [ + 52.5082114, + 13.4632949 + ], + [ + 52.5084503, + 13.4622981 + ], + [ + 52.5085955, + 13.4616997 + ], + [ + 52.5086837, + 13.4613318 + ], + [ + 52.5089435, + 13.4602181 + ], + [ + 52.5089655, + 13.4601252 + ], + [ + 52.5089953, + 13.4599923 + ], + [ + 52.5090258, + 13.4598732 + ], + [ + 52.509508, + 13.4578765 + ], + [ + 52.5097324, + 13.4569494 + ], + [ + 52.5098432, + 13.4564928 + ], + [ + 52.5099274, + 13.4561862 + ], + [ + 52.5099539, + 13.4560936 + ], + [ + 52.5099833, + 13.4559385 + ], + [ + 52.5100906, + 13.4553541 + ], + [ + 52.5101354, + 13.4551098 + ], + [ + 52.5103014, + 13.454206 + ], + [ + 52.510411, + 13.4535931 + ], + [ + 52.5104751, + 13.4532599 + ] + ] + }, + { + "osmId": "106863637", + "name": null, + "lengthMeters": 202.36518326296118, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201139, + 13.4796556 + ], + [ + 52.5197412, + 13.4797196 + ], + [ + 52.5193762, + 13.4797781 + ], + [ + 52.5190727, + 13.4798293 + ], + [ + 52.5183049, + 13.4799814 + ] + ] + }, + { + "osmId": "106863638", + "name": null, + "lengthMeters": 191.56836055792053, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122762, + 13.4714494 + ], + [ + 52.5122882, + 13.471354 + ], + [ + 52.5123189, + 13.4710628 + ], + [ + 52.5123476, + 13.4707508 + ], + [ + 52.5123707, + 13.4705297 + ], + [ + 52.5123845, + 13.4703832 + ], + [ + 52.5123882, + 13.4703265 + ], + [ + 52.5123848, + 13.4702357 + ], + [ + 52.5123742, + 13.4701574 + ], + [ + 52.5123575, + 13.4700916 + ], + [ + 52.5123525, + 13.4700717 + ], + [ + 52.5123265, + 13.4700083 + ], + [ + 52.5122946, + 13.4699494 + ], + [ + 52.5122707, + 13.4699134 + ], + [ + 52.5122496, + 13.4698899 + ], + [ + 52.5121943, + 13.4698317 + ], + [ + 52.5121143, + 13.4697518 + ], + [ + 52.5120239, + 13.4696544 + ], + [ + 52.5119021, + 13.4695366 + ], + [ + 52.5117885, + 13.4694265 + ], + [ + 52.5116365, + 13.4692792 + ] + ] + }, + { + "osmId": "106863642", + "name": null, + "lengthMeters": 384.407876200731, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5183049, + 13.4799814 + ], + [ + 52.5182563, + 13.4799904 + ], + [ + 52.5180481, + 13.480029 + ], + [ + 52.5178771, + 13.4800457 + ], + [ + 52.5177368, + 13.4800503 + ], + [ + 52.5175975, + 13.4800435 + ], + [ + 52.5173183, + 13.4800235 + ], + [ + 52.5172341, + 13.4800134 + ], + [ + 52.5170637, + 13.47997 + ], + [ + 52.5169953, + 13.4799379 + ], + [ + 52.5169274, + 13.4798981 + ], + [ + 52.5168463, + 13.4798466 + ], + [ + 52.5167952, + 13.47981 + ], + [ + 52.5167458, + 13.4797677 + ], + [ + 52.5166726, + 13.4797002 + ], + [ + 52.516606, + 13.4796344 + ], + [ + 52.5165271, + 13.4795574 + ], + [ + 52.5164462, + 13.479483 + ], + [ + 52.5163074, + 13.4793667 + ], + [ + 52.5162396, + 13.4793125 + ], + [ + 52.5162026, + 13.4792828 + ], + [ + 52.5156658, + 13.4788562 + ], + [ + 52.5150771, + 13.4783846 + ] + ] + }, + { + "osmId": "106887302", + "name": null, + "lengthMeters": 547.7939815742785, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5830965, + 10.0673051 + ], + [ + 53.5840851, + 10.0667299 + ], + [ + 53.5846101, + 10.0664172 + ], + [ + 53.5848018, + 10.0662544 + ], + [ + 53.5850216, + 10.0660646 + ], + [ + 53.5852194, + 10.0658803 + ], + [ + 53.5857592, + 10.0653712 + ], + [ + 53.5861952, + 10.0649556 + ], + [ + 53.5867052, + 10.0644823 + ], + [ + 53.5868633, + 10.0643291 + ], + [ + 53.5869868, + 10.0642379 + ], + [ + 53.5871191, + 10.0641564 + ], + [ + 53.587251, + 10.0640849 + ], + [ + 53.5874184, + 10.0640217 + ], + [ + 53.5875813, + 10.0639691 + ] + ] + }, + { + "osmId": "106887308", + "name": null, + "lengthMeters": 313.1876525042932, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5830847, + 10.067226 + ], + [ + 53.5824036, + 10.0675742 + ], + [ + 53.581952, + 10.0678268 + ], + [ + 53.5817141, + 10.0679599 + ], + [ + 53.5811666, + 10.0682662 + ], + [ + 53.5810246, + 10.0683455 + ], + [ + 53.5809731, + 10.068387 + ], + [ + 53.5809295, + 10.068425 + ], + [ + 53.5804521, + 10.0688698 + ] + ] + }, + { + "osmId": "107232705", + "name": "U1", + "lengthMeters": 842.3282234406677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4977808, + 13.3920879 + ], + [ + 52.4978043, + 13.3924582 + ], + [ + 52.4978986, + 13.3932926 + ], + [ + 52.4979809, + 13.3940759 + ], + [ + 52.4980049, + 13.3942956 + ], + [ + 52.4981535, + 13.39512 + ], + [ + 52.498189, + 13.3953327 + ], + [ + 52.4982077, + 13.395434 + ], + [ + 52.4982978, + 13.3963629 + ], + [ + 52.4983088, + 13.3965888 + ], + [ + 52.4983169, + 13.3968116 + ], + [ + 52.4983362, + 13.3993944 + ], + [ + 52.4983353, + 13.3997 + ], + [ + 52.4983692, + 13.4044386 + ] + ] + }, + { + "osmId": "107509085", + "name": null, + "lengthMeters": 218.88251602975322, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4460115, + 13.5763523 + ], + [ + 52.446084, + 13.5762736 + ], + [ + 52.4461476, + 13.5762023 + ], + [ + 52.4461461, + 13.5762033 + ], + [ + 52.4461822, + 13.5761713 + ], + [ + 52.4462088, + 13.576152 + ], + [ + 52.4462296, + 13.5761384 + ], + [ + 52.4462549, + 13.5761247 + ], + [ + 52.4462778, + 13.5761163 + ], + [ + 52.4462957, + 13.5761103 + ], + [ + 52.4463163, + 13.5761042 + ], + [ + 52.446334, + 13.5761005 + ], + [ + 52.4463559, + 13.5760967 + ], + [ + 52.4464462, + 13.5760911 + ], + [ + 52.4464764, + 13.5760903 + ], + [ + 52.4465501, + 13.576086 + ], + [ + 52.4466212, + 13.576083 + ], + [ + 52.4467027, + 13.5760757 + ], + [ + 52.4467706, + 13.5760686 + ], + [ + 52.4467978, + 13.5760609 + ], + [ + 52.4468223, + 13.5760526 + ], + [ + 52.4468486, + 13.5760401 + ], + [ + 52.4468776, + 13.5760232 + ], + [ + 52.4468999, + 13.5760068 + ], + [ + 52.4469283, + 13.5759834 + ], + [ + 52.4469496, + 13.5759645 + ], + [ + 52.4469706, + 13.5759406 + ], + [ + 52.4469905, + 13.5759183 + ], + [ + 52.447019, + 13.5758796 + ], + [ + 52.44704, + 13.5758458 + ], + [ + 52.4470543, + 13.5758208 + ], + [ + 52.447068, + 13.5757968 + ], + [ + 52.4471448, + 13.5756595 + ], + [ + 52.44717, + 13.5756223 + ], + [ + 52.447196, + 13.5755894 + ], + [ + 52.447231, + 13.5755542 + ], + [ + 52.4472588, + 13.575532 + ], + [ + 52.4472896, + 13.5755103 + ], + [ + 52.4473249, + 13.5754913 + ], + [ + 52.4474107, + 13.5754468 + ], + [ + 52.4474337, + 13.5754326 + ], + [ + 52.4474555, + 13.5754157 + ], + [ + 52.4474677, + 13.5754056 + ], + [ + 52.4474814, + 13.5753943 + ], + [ + 52.4476109, + 13.5752744 + ], + [ + 52.4477664, + 13.5751304 + ] + ] + }, + { + "osmId": "107509088", + "name": null, + "lengthMeters": 1134.7877700906859, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4574203, + 13.5366193 + ], + [ + 52.4572803, + 13.5348159 + ], + [ + 52.4572664, + 13.5343972 + ], + [ + 52.4572509, + 13.5340826 + ], + [ + 52.4572322, + 13.5338473 + ], + [ + 52.4572032, + 13.5334239 + ], + [ + 52.4571476, + 13.5326955 + ], + [ + 52.4570423, + 13.5312307 + ], + [ + 52.4569309, + 13.5298478 + ], + [ + 52.4568888, + 13.5293143 + ], + [ + 52.4568813, + 13.529206 + ], + [ + 52.4568794, + 13.5291089 + ], + [ + 52.4568835, + 13.528991 + ], + [ + 52.4568894, + 13.528926 + ], + [ + 52.4569021, + 13.5288483 + ], + [ + 52.4569236, + 13.5287644 + ], + [ + 52.4569491, + 13.5286897 + ], + [ + 52.4569769, + 13.5286236 + ], + [ + 52.457001, + 13.5285768 + ], + [ + 52.4570105, + 13.5285585 + ], + [ + 52.4570492, + 13.5284926 + ], + [ + 52.4570875, + 13.5284351 + ], + [ + 52.4571484, + 13.528353 + ], + [ + 52.4574585, + 13.5279394 + ], + [ + 52.4576456, + 13.5276899 + ], + [ + 52.457982, + 13.527238 + ], + [ + 52.4583873, + 13.5266862 + ], + [ + 52.4584125, + 13.5266375 + ], + [ + 52.4584933, + 13.5264802 + ], + [ + 52.458738, + 13.5259534 + ], + [ + 52.4587748, + 13.5258742 + ], + [ + 52.4588327, + 13.5257407 + ], + [ + 52.4590051, + 13.5253429 + ], + [ + 52.4593086, + 13.5246563 + ], + [ + 52.4593576, + 13.5245465 + ], + [ + 52.4594101, + 13.524423 + ], + [ + 52.4595537, + 13.5240851 + ], + [ + 52.4596037, + 13.5239673 + ], + [ + 52.4596142, + 13.5239425 + ], + [ + 52.4598222, + 13.5234377 + ], + [ + 52.4598579, + 13.5233559 + ], + [ + 52.4601484, + 13.5226906 + ], + [ + 52.460186, + 13.5226041 + ], + [ + 52.4601974, + 13.5225779 + ], + [ + 52.4602393, + 13.5224814 + ], + [ + 52.4603987, + 13.5221123 + ] + ] + }, + { + "osmId": "107509090", + "name": null, + "lengthMeters": 486.294869424583, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603987, + 13.5221123 + ], + [ + 52.4607897, + 13.5212276 + ], + [ + 52.4608045, + 13.5211857 + ], + [ + 52.4608444, + 13.52107 + ], + [ + 52.4608727, + 13.5209666 + ], + [ + 52.4608817, + 13.5209331 + ], + [ + 52.4609164, + 13.5207879 + ], + [ + 52.4609994, + 13.5204216 + ], + [ + 52.461016, + 13.5203486 + ], + [ + 52.4610609, + 13.5201505 + ], + [ + 52.4611267, + 13.5198602 + ], + [ + 52.4611741, + 13.5196512 + ], + [ + 52.4612314, + 13.5193986 + ], + [ + 52.461247, + 13.5193298 + ], + [ + 52.4613022, + 13.5190866 + ], + [ + 52.4613343, + 13.5189432 + ], + [ + 52.4613699, + 13.5187839 + ], + [ + 52.4614576, + 13.5183915 + ], + [ + 52.4614829, + 13.5182787 + ], + [ + 52.4615525, + 13.5179676 + ], + [ + 52.4615957, + 13.5177744 + ], + [ + 52.4616339, + 13.5176033 + ], + [ + 52.4617422, + 13.5171192 + ], + [ + 52.4617833, + 13.5169345 + ], + [ + 52.4618125, + 13.5168074 + ], + [ + 52.4618204, + 13.5167731 + ], + [ + 52.4619138, + 13.5163675 + ], + [ + 52.4619792, + 13.5160831 + ], + [ + 52.4620813, + 13.5156394 + ], + [ + 52.462104, + 13.5155408 + ] + ] + }, + { + "osmId": "107509095", + "name": null, + "lengthMeters": 1137.0328496363695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603763, + 13.5220874 + ], + [ + 52.4603095, + 13.522241 + ], + [ + 52.4601254, + 13.5226642 + ], + [ + 52.4595968, + 13.5238791 + ], + [ + 52.4595231, + 13.5240501 + ], + [ + 52.4593012, + 13.5245646 + ], + [ + 52.4588883, + 13.5255207 + ], + [ + 52.458819, + 13.5256803 + ], + [ + 52.4588062, + 13.525711 + ], + [ + 52.4587246, + 13.5259069 + ], + [ + 52.4586844, + 13.5260032 + ], + [ + 52.4584672, + 13.526443 + ], + [ + 52.4583929, + 13.5265921 + ], + [ + 52.4583841, + 13.5266098 + ], + [ + 52.4583505, + 13.5266771 + ], + [ + 52.4576705, + 13.5275917 + ], + [ + 52.4576254, + 13.5276532 + ], + [ + 52.4572263, + 13.5281967 + ], + [ + 52.4570468, + 13.5284412 + ], + [ + 52.4570063, + 13.5285025 + ], + [ + 52.4569951, + 13.5285194 + ], + [ + 52.4569478, + 13.528615 + ], + [ + 52.4569188, + 13.5286882 + ], + [ + 52.4568993, + 13.5287568 + ], + [ + 52.4568823, + 13.5288241 + ], + [ + 52.4568712, + 13.5288822 + ], + [ + 52.4568696, + 13.5288956 + ], + [ + 52.4568617, + 13.5289597 + ], + [ + 52.4568554, + 13.52903 + ], + [ + 52.4568516, + 13.5291135 + ], + [ + 52.4568532, + 13.5291897 + ], + [ + 52.4568609, + 13.5292816 + ], + [ + 52.4569018, + 13.5298511 + ], + [ + 52.4569378, + 13.5303372 + ], + [ + 52.4570487, + 13.5317662 + ], + [ + 52.4572127, + 13.5339625 + ], + [ + 52.4572224, + 13.534093 + ], + [ + 52.4572346, + 13.5344002 + ], + [ + 52.4572512, + 13.5348159 + ], + [ + 52.4574013, + 13.5366281 + ] + ] + }, + { + "osmId": "107568488", + "name": "Ehem. Wendeschleife Hasenbergl", + "lengthMeters": 286.0045097310841, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2182492, + 11.5618272 + ], + [ + 48.2183645, + 11.5618309 + ], + [ + 48.2183986, + 11.5618376 + ], + [ + 48.2184932, + 11.561856 + ], + [ + 48.2185878, + 11.5618803 + ], + [ + 48.2186206, + 11.561889 + ], + [ + 48.2188222, + 11.5619428 + ], + [ + 48.2189374, + 11.561976 + ], + [ + 48.2190362, + 11.5620125 + ], + [ + 48.2191244, + 11.5620517 + ], + [ + 48.2191784, + 11.5620787 + ], + [ + 48.219231, + 11.562105 + ], + [ + 48.219292, + 11.5621433 + ], + [ + 48.219308, + 11.5621534 + ], + [ + 48.2194031, + 11.5622292 + ], + [ + 48.2194401, + 11.5622775 + ], + [ + 48.2194509, + 11.5622926 + ], + [ + 48.2194586, + 11.5623033 + ], + [ + 48.2194744, + 11.56233 + ], + [ + 48.2194883, + 11.562357 + ], + [ + 48.2194998, + 11.5623868 + ], + [ + 48.2195044, + 11.5624015 + ], + [ + 48.2195107, + 11.5624214 + ], + [ + 48.2195176, + 11.5624579 + ], + [ + 48.2195209, + 11.5624877 + ], + [ + 48.2195205, + 11.5625179 + ], + [ + 48.2195182, + 11.5625468 + ], + [ + 48.2195136, + 11.5625765 + ], + [ + 48.2194984, + 11.5626319 + ], + [ + 48.2194779, + 11.5626865 + ], + [ + 48.2194546, + 11.5627234 + ], + [ + 48.2194261, + 11.5627562 + ], + [ + 48.2193827, + 11.5627771 + ], + [ + 48.2193367, + 11.5627858 + ], + [ + 48.2193009, + 11.5627757 + ], + [ + 48.2192634, + 11.5627562 + ], + [ + 48.2191955, + 11.5627106 + ], + [ + 48.2189275, + 11.5624558 + ], + [ + 48.2185834, + 11.5621717 + ] + ] + }, + { + "osmId": "107568489", + "name": "Ehem. Wendeschleife Hasenbergl", + "lengthMeters": 135.49553337667737, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2182492, + 11.5618189 + ], + [ + 48.2183834, + 11.5618096 + ], + [ + 48.2184661, + 11.5618038 + ], + [ + 48.2186182, + 11.5618172 + ], + [ + 48.2186324, + 11.5618185 + ], + [ + 48.2187698, + 11.5618475 + ], + [ + 48.2188425, + 11.5618658 + ], + [ + 48.218993, + 11.5619141 + ], + [ + 48.2191413, + 11.5619764 + ], + [ + 48.2191864, + 11.5619988 + ], + [ + 48.2191939, + 11.562004 + ], + [ + 48.2192357, + 11.5620332 + ], + [ + 48.219274, + 11.5620703 + ], + [ + 48.2192974, + 11.5620979 + ], + [ + 48.2193073, + 11.5621096 + ], + [ + 48.2193394, + 11.5621476 + ], + [ + 48.2194031, + 11.5622292 + ] + ] + }, + { + "osmId": "107568492", + "name": null, + "lengthMeters": 254.86911073970936, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2119336, + 11.5626755 + ], + [ + 48.2106277, + 11.5628626 + ], + [ + 48.2096517, + 11.5629995 + ] + ] + }, + { + "osmId": "107579842", + "name": null, + "lengthMeters": 752.3149601407926, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1575093, + 11.4805949 + ], + [ + 48.1579597, + 11.4804409 + ], + [ + 48.1583384, + 11.4803048 + ], + [ + 48.1588183, + 11.4801225 + ], + [ + 48.1590637, + 11.4800275 + ], + [ + 48.1596343, + 11.4798067 + ], + [ + 48.1618242, + 11.4789693 + ], + [ + 48.1633698, + 11.4784209 + ], + [ + 48.1639416, + 11.4782104 + ], + [ + 48.1640761, + 11.4781554 + ] + ] + }, + { + "osmId": "107667169", + "name": null, + "lengthMeters": 84.33748102925804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4444629, + 13.5724302 + ], + [ + 52.4444566, + 13.573006 + ], + [ + 52.4444548, + 13.5730795 + ], + [ + 52.4444534, + 13.5731222 + ], + [ + 52.4444496, + 13.5731815 + ], + [ + 52.4444442, + 13.5732483 + ], + [ + 52.444439, + 13.5733046 + ], + [ + 52.4444344, + 13.5733636 + ], + [ + 52.4444296, + 13.5734389 + ], + [ + 52.4444269, + 13.5735063 + ], + [ + 52.4444258, + 13.5736147 + ], + [ + 52.4444248, + 13.5736717 + ] + ] + }, + { + "osmId": "107667173", + "name": null, + "lengthMeters": 81.5551746746404, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.444637, + 13.5724525 + ], + [ + 52.4446503, + 13.5712494 + ] + ] + }, + { + "osmId": "107671510", + "name": null, + "lengthMeters": 104.33487341605611, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4409131, + 10.0104677 + ], + [ + 53.4403555, + 10.0109896 + ], + [ + 53.4401016, + 10.0112285 + ], + [ + 53.4400939, + 10.0112358 + ] + ] + }, + { + "osmId": "107675024", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 173.2264542543898, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4012677, + 10.0697133 + ], + [ + 53.4017956, + 10.0686961 + ], + [ + 53.4018266, + 10.0686402 + ], + [ + 53.4023087, + 10.0677698 + ] + ] + }, + { + "osmId": "107692074", + "name": null, + "lengthMeters": 90.60808337660448, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5977001, + 9.9033923 + ], + [ + 53.5978561, + 9.9030822 + ], + [ + 53.5979731, + 9.9028361 + ], + [ + 53.598113, + 9.9025281 + ], + [ + 53.5982046, + 9.9023147 + ] + ] + }, + { + "osmId": "107692081", + "name": null, + "lengthMeters": 209.53234083751045, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5983982, + 9.9017826 + ], + [ + 53.5983326, + 9.9019182 + ], + [ + 53.5980146, + 9.9025518 + ], + [ + 53.5974343, + 9.9036945 + ], + [ + 53.5971826, + 9.9042087 + ] + ] + }, + { + "osmId": "107692465", + "name": null, + "lengthMeters": 77.78040895983688, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5977001, + 9.9033923 + ], + [ + 53.5981761, + 9.9025286 + ] + ] + }, + { + "osmId": "107701626", + "name": null, + "lengthMeters": 777.2282243156254, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4243979, + 13.586698 + ], + [ + 52.4230554, + 13.5873385 + ], + [ + 52.4227348, + 13.5874808 + ], + [ + 52.4221368, + 13.5877411 + ], + [ + 52.422075, + 13.587764 + ], + [ + 52.4217052, + 13.5879004 + ], + [ + 52.4212261, + 13.588078 + ], + [ + 52.4202517, + 13.588375 + ], + [ + 52.4189116, + 13.5888416 + ], + [ + 52.4175901, + 13.5892617 + ] + ] + }, + { + "osmId": "107701627", + "name": null, + "lengthMeters": 131.64996323380703, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4415072, + 13.5818033 + ], + [ + 52.4410397, + 13.5816845 + ], + [ + 52.4409612, + 13.5816669 + ], + [ + 52.4408783, + 13.5816541 + ], + [ + 52.4407753, + 13.5816487 + ], + [ + 52.4406887, + 13.5816512 + ], + [ + 52.4405572, + 13.5816624 + ], + [ + 52.4403314, + 13.5817013 + ] + ] + }, + { + "osmId": "107701628", + "name": null, + "lengthMeters": 385.87357885276566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4377232, + 13.5822263 + ], + [ + 52.4375293, + 13.5822684 + ], + [ + 52.4370939, + 13.5823419 + ], + [ + 52.4366682, + 13.5824134 + ], + [ + 52.4362665, + 13.5824729 + ], + [ + 52.4358526, + 13.582538 + ], + [ + 52.4352564, + 13.5826352 + ], + [ + 52.4349027, + 13.5826947 + ], + [ + 52.4343208, + 13.5828587 + ], + [ + 52.4342767, + 13.5828714 + ] + ] + }, + { + "osmId": "107702524", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 114.65814867841601, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4049806, + 10.063555 + ], + [ + 53.4042089, + 10.0647022 + ] + ] + }, + { + "osmId": "107704578", + "name": null, + "lengthMeters": 77.43014168894106, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4558793, + 13.6253562 + ], + [ + 52.4562846, + 13.6254085 + ], + [ + 52.4565736, + 13.6254437 + ] + ] + }, + { + "osmId": "107704595", + "name": null, + "lengthMeters": 320.49249522452874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530053, + 13.6249991 + ], + [ + 52.4540834, + 13.6251266 + ], + [ + 52.454115, + 13.6251306 + ], + [ + 52.4550161, + 13.6252389 + ], + [ + 52.4558793, + 13.6253562 + ] + ] + }, + { + "osmId": "107706674", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 1064.1991430020496, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.412743, + 10.0516046 + ], + [ + 53.4131223, + 10.0509286 + ], + [ + 53.4132598, + 10.0506837 + ], + [ + 53.4137212, + 10.0498065 + ], + [ + 53.4142036, + 10.0488892 + ], + [ + 53.4148907, + 10.0474873 + ], + [ + 53.4156582, + 10.0458237 + ], + [ + 53.4164523, + 10.0438885 + ], + [ + 53.4165444, + 10.043653 + ], + [ + 53.4170291, + 10.0424143 + ], + [ + 53.4176275, + 10.0410426 + ], + [ + 53.418619, + 10.0389567 + ] + ] + }, + { + "osmId": "107709012", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 299.9005316248662, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4377065, + 10.0138273 + ], + [ + 53.4381161, + 10.0134354 + ], + [ + 53.440048, + 10.0115803 + ] + ] + }, + { + "osmId": "107709015", + "name": null, + "lengthMeters": 102.42700833261992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4400662, + 10.0111532 + ], + [ + 53.4400804, + 10.0111398 + ], + [ + 53.4408715, + 10.0104024 + ] + ] + }, + { + "osmId": "107709016", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 577.6672296292337, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4357115, + 10.016396 + ], + [ + 53.4359358, + 10.0161817 + ], + [ + 53.4361254, + 10.0160005 + ], + [ + 53.4361743, + 10.0159498 + ], + [ + 53.436796, + 10.0153058 + ], + [ + 53.4374985, + 10.0145078 + ], + [ + 53.4382052, + 10.0137169 + ], + [ + 53.4390138, + 10.0129153 + ], + [ + 53.439605, + 10.0123832 + ], + [ + 53.4401531, + 10.0118847 + ] + ] + }, + { + "osmId": "107709018", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 277.7713235072638, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4363181, + 10.0147857 + ], + [ + 53.4360447, + 10.0149709 + ], + [ + 53.4356167, + 10.0151971 + ], + [ + 53.435512, + 10.0152524 + ], + [ + 53.4351312, + 10.0154185 + ], + [ + 53.434759, + 10.0155673 + ], + [ + 53.4344381, + 10.0156739 + ], + [ + 53.4339381, + 10.0158196 + ], + [ + 53.4339044, + 10.0158284 + ] + ] + }, + { + "osmId": "107709020", + "name": null, + "lengthMeters": 272.4161298060918, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4423403, + 10.0095633 + ], + [ + 53.4418035, + 10.0101918 + ], + [ + 53.4412951, + 10.0107349 + ], + [ + 53.440633, + 10.0113584 + ], + [ + 53.4402537, + 10.0117115 + ] + ] + }, + { + "osmId": "107709021", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 166.40166823046567, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4363385, + 10.0148423 + ], + [ + 53.4366108, + 10.0146666 + ], + [ + 53.4370295, + 10.0143708 + ], + [ + 53.4375516, + 10.0139591 + ], + [ + 53.4377065, + 10.0138273 + ] + ] + }, + { + "osmId": "107709022", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 234.55199236590659, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4440672, + 10.0069307 + ], + [ + 53.4433374, + 10.0079172 + ], + [ + 53.4430895, + 10.0082101 + ], + [ + 53.4430164, + 10.008302 + ], + [ + 53.4430135, + 10.0083057 + ], + [ + 53.4423937, + 10.009085 + ] + ] + }, + { + "osmId": "107709024", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 210.28365103539574, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4340284, + 10.0178425 + ], + [ + 53.4345017, + 10.0174114 + ], + [ + 53.4349581, + 10.0170195 + ], + [ + 53.4357115, + 10.016396 + ] + ] + }, + { + "osmId": "107709025", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 299.3490835755835, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4400316, + 10.0115246 + ], + [ + 53.4386441, + 10.0128556 + ], + [ + 53.4381118, + 10.0133713 + ], + [ + 53.4376895, + 10.0137525 + ] + ] + }, + { + "osmId": "107709027", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1070.4819945670272, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4127253, + 10.0517484 + ], + [ + 53.41329, + 10.0507471 + ], + [ + 53.4142439, + 10.0489145 + ], + [ + 53.4144952, + 10.0484042 + ], + [ + 53.4149259, + 10.0475296 + ], + [ + 53.4156909, + 10.0458659 + ], + [ + 53.4164775, + 10.0439561 + ], + [ + 53.4170087, + 10.0427004 + ], + [ + 53.4170187, + 10.0426769 + ], + [ + 53.4176779, + 10.0411186 + ], + [ + 53.4186668, + 10.0390623 + ] + ] + }, + { + "osmId": "107709028", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 576.563947807045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4401339, + 10.0118282 + ], + [ + 53.4395847, + 10.0123203 + ], + [ + 53.4390011, + 10.0128547 + ], + [ + 53.4381946, + 10.0136563 + ], + [ + 53.4374879, + 10.0144401 + ], + [ + 53.4367706, + 10.0152524 + ], + [ + 53.4361469, + 10.0159025 + ], + [ + 53.4361041, + 10.0159471 + ], + [ + 53.4359106, + 10.0161317 + ], + [ + 53.4357009, + 10.0163319 + ] + ] + }, + { + "osmId": "107709030", + "name": null, + "lengthMeters": 270.98881385248603, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4402751, + 10.0117752 + ], + [ + 53.4406415, + 10.0114332 + ], + [ + 53.4413036, + 10.010799 + ], + [ + 53.44182, + 10.0102432 + ], + [ + 53.4423484, + 10.0096306 + ] + ] + }, + { + "osmId": "107709031", + "name": null, + "lengthMeters": 215.99568955915666, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4417243, + 10.0094525 + ], + [ + 53.4408578, + 10.0103361 + ], + [ + 53.4400673, + 10.0110774 + ], + [ + 53.4400625, + 10.0110819 + ], + [ + 53.440047, + 10.0110963 + ] + ] + }, + { + "osmId": "107709032", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 167.26993751841013, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4376895, + 10.0137525 + ], + [ + 53.437125, + 10.0142299 + ], + [ + 53.4367599, + 10.0144864 + ], + [ + 53.4363181, + 10.0147857 + ] + ] + }, + { + "osmId": "107709033", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 379.88003371061205, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4401717, + 10.0114672 + ], + [ + 53.4409556, + 10.0107028 + ], + [ + 53.4416395, + 10.0099966 + ], + [ + 53.4422926, + 10.009272 + ], + [ + 53.4430432, + 10.0083671 + ] + ] + }, + { + "osmId": "107709034", + "name": null, + "lengthMeters": 531.8134508271928, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4459171, + 10.0043414 + ], + [ + 53.4466457, + 10.0032499 + ], + [ + 53.446861, + 10.0029273 + ], + [ + 53.4482041, + 10.0009276 + ], + [ + 53.449493, + 9.9990085 + ] + ] + }, + { + "osmId": "107709037", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 213.15307989801568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4357009, + 10.0163319 + ], + [ + 53.4351427, + 10.0167879 + ], + [ + 53.4347585, + 10.0171121 + ], + [ + 53.4343659, + 10.0174577 + ], + [ + 53.4339966, + 10.0178033 + ] + ] + }, + { + "osmId": "107726846", + "name": null, + "lengthMeters": 134.0164181840662, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4478257, + 10.0012793 + ], + [ + 53.4474535, + 10.0018763 + ], + [ + 53.4472249, + 10.0022703 + ], + [ + 53.4469574, + 10.0026821 + ] + ] + }, + { + "osmId": "107726847", + "name": null, + "lengthMeters": 763.3556665636349, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4463223, + 10.0034163 + ], + [ + 53.4458877, + 10.0040803 + ], + [ + 53.4456286, + 10.0044761 + ], + [ + 53.444897, + 10.0055839 + ], + [ + 53.4445513, + 10.0060934 + ], + [ + 53.4440264, + 10.0068459 + ], + [ + 53.4433003, + 10.0078047 + ], + [ + 53.443151, + 10.0079964 + ], + [ + 53.4429862, + 10.0081907 + ], + [ + 53.442983, + 10.0081948 + ], + [ + 53.4428632, + 10.0083451 + ], + [ + 53.4423175, + 10.0089939 + ], + [ + 53.4420358, + 10.0093078 + ], + [ + 53.4416487, + 10.0097185 + ], + [ + 53.4409131, + 10.0104677 + ] + ] + }, + { + "osmId": "107726848", + "name": null, + "lengthMeters": 206.7958936052075, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.448874, + 9.9997093 + ], + [ + 53.4494132, + 9.998888 + ], + [ + 53.4497002, + 9.9984221 + ], + [ + 53.4502442, + 9.9975982 + ] + ] + }, + { + "osmId": "107726865", + "name": null, + "lengthMeters": 144.8515949015532, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4468601, + 10.0028328 + ], + [ + 53.4464982, + 10.0034006 + ], + [ + 53.4462708, + 10.0037858 + ], + [ + 53.4459766, + 10.0042479 + ], + [ + 53.4459171, + 10.0043414 + ] + ] + }, + { + "osmId": "107726866", + "name": null, + "lengthMeters": 127.7565630517089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4503786, + 9.9973957 + ], + [ + 53.4506574, + 9.9969512 + ], + [ + 53.4509242, + 9.9965007 + ], + [ + 53.451207, + 9.9960592 + ] + ] + }, + { + "osmId": "107727049", + "name": null, + "lengthMeters": 731.998023165492, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6074743, + 9.8833352 + ], + [ + 53.6067391, + 9.884759 + ], + [ + 53.6060937, + 9.8860272 + ], + [ + 53.6054414, + 9.8872822 + ], + [ + 53.6045778, + 9.8889814 + ], + [ + 53.6039375, + 9.8902355 + ], + [ + 53.6037408, + 9.8906187 + ], + [ + 53.603579, + 9.8909772 + ], + [ + 53.6032295, + 9.8918089 + ] + ] + }, + { + "osmId": "107728067", + "name": null, + "lengthMeters": 258.9138967400615, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4408715, + 10.0104024 + ], + [ + 53.4417077, + 10.0095483 + ], + [ + 53.4422798, + 10.0089216 + ], + [ + 53.4424226, + 10.0087536 + ], + [ + 53.4428248, + 10.0082773 + ] + ] + }, + { + "osmId": "107729539", + "name": null, + "lengthMeters": 94.75684754933744, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4577543, + 9.9900451 + ], + [ + 53.4579096, + 9.9898493 + ], + [ + 53.458024, + 9.9896812 + ], + [ + 53.4581293, + 9.9895068 + ], + [ + 53.4582917, + 9.9892071 + ], + [ + 53.4583662, + 9.989056 + ] + ] + }, + { + "osmId": "107729753", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 332.23077808430884, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4580957, + 9.9915631 + ], + [ + 53.4586069, + 9.9916036 + ], + [ + 53.4588419, + 9.9916368 + ], + [ + 53.4590241, + 9.9916626 + ], + [ + 53.4595771, + 9.9917969 + ], + [ + 53.4598971, + 9.9918852 + ], + [ + 53.4602463, + 9.9920316 + ], + [ + 53.4602755, + 9.9920439 + ], + [ + 53.4610355, + 9.9923694 + ] + ] + }, + { + "osmId": "107732114", + "name": null, + "lengthMeters": 349.92862148743905, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.471634, + 9.9981406 + ], + [ + 53.4746425, + 9.9996918 + ] + ] + }, + { + "osmId": "107732115", + "name": null, + "lengthMeters": 100.9742427960786, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4707708, + 9.9976669 + ], + [ + 53.471634, + 9.9981406 + ] + ] + }, + { + "osmId": "107732116", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 82.75422728732394, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4581033, + 9.9916281 + ], + [ + 53.4588462, + 9.9917027 + ] + ] + }, + { + "osmId": "107732118", + "name": null, + "lengthMeters": 171.05927543786578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4746425, + 9.9996918 + ], + [ + 53.4747462, + 9.9997418 + ], + [ + 53.4752182, + 9.9999692 + ], + [ + 53.4752701, + 9.9999969 + ], + [ + 53.4761135, + 10.0004475 + ] + ] + }, + { + "osmId": "107732123", + "name": null, + "lengthMeters": 492.75486701415423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4562243, + 9.9909116 + ], + [ + 53.4558912, + 9.9910043 + ], + [ + 53.4556135, + 9.9910904 + ], + [ + 53.4554066, + 9.9911749 + ], + [ + 53.4552901, + 9.9912325 + ], + [ + 53.4552472, + 9.9912511 + ], + [ + 53.4551881, + 9.9912829 + ], + [ + 53.4549606, + 9.9914053 + ], + [ + 53.4548022, + 9.9915142 + ], + [ + 53.4543966, + 9.9917932 + ], + [ + 53.4539164, + 9.9922552 + ], + [ + 53.4538703, + 9.9922996 + ], + [ + 53.4537719, + 9.9924008 + ], + [ + 53.4536311, + 9.9925794 + ], + [ + 53.4533045, + 9.9929939 + ], + [ + 53.4530149, + 9.993371 + ], + [ + 53.4526019, + 9.9939363 + ], + [ + 53.4523586, + 9.994273 + ] + ] + }, + { + "osmId": "107732129", + "name": null, + "lengthMeters": 305.77727575177335, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4650182, + 9.9946125 + ], + [ + 53.4633841, + 9.9938895 + ], + [ + 53.4630498, + 9.9937393 + ], + [ + 53.4626594, + 9.993545 + ], + [ + 53.4623652, + 9.9933985 + ] + ] + }, + { + "osmId": "107732136", + "name": null, + "lengthMeters": 185.0082639901929, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4606716, + 9.992456 + ], + [ + 53.4610698, + 9.9926543 + ], + [ + 53.4622668, + 9.9932503 + ] + ] + }, + { + "osmId": "107733502", + "name": null, + "lengthMeters": 1631.420626669468, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4816397, + 10.0027818 + ], + [ + 53.4817389, + 10.0028199 + ], + [ + 53.4830514, + 10.0032533 + ], + [ + 53.4844333, + 10.0036895 + ], + [ + 53.4857957, + 10.0040706 + ], + [ + 53.4872471, + 10.0044339 + ], + [ + 53.4890951, + 10.0048355 + ], + [ + 53.490964, + 10.0051747 + ], + [ + 53.4919404, + 10.005352 + ], + [ + 53.4932213, + 10.0055846 + ], + [ + 53.4945192, + 10.0058244 + ], + [ + 53.4958135, + 10.0060636 + ], + [ + 53.4961658, + 10.0061536 + ] + ] + }, + { + "osmId": "107733505", + "name": null, + "lengthMeters": 568.3429354292844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4763896, + 10.0005807 + ], + [ + 53.4771099, + 10.0009181 + ], + [ + 53.4778522, + 10.0012683 + ], + [ + 53.4791118, + 10.0017684 + ], + [ + 53.4801981, + 10.0022223 + ], + [ + 53.4813457, + 10.002675 + ] + ] + }, + { + "osmId": "107741889", + "name": null, + "lengthMeters": 222.9266763790855, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497009, + 9.986227 + ], + [ + 53.5496741, + 9.9859669 + ], + [ + 53.5496695, + 9.9859074 + ], + [ + 53.5495909, + 9.9850038 + ], + [ + 53.5495066, + 9.984156 + ], + [ + 53.549448, + 9.983603 + ], + [ + 53.5494045, + 9.9832394 + ], + [ + 53.5493568, + 9.9829039 + ] + ] + }, + { + "osmId": "107741891", + "name": null, + "lengthMeters": 234.20438905794146, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.549921, + 9.9877978 + ], + [ + 53.5500219, + 9.9881545 + ], + [ + 53.5501785, + 9.9885669 + ], + [ + 53.5505116, + 9.9893882 + ], + [ + 53.5508256, + 9.9902191 + ], + [ + 53.5510299, + 9.9908075 + ] + ] + }, + { + "osmId": "107741894", + "name": "City-S-Bahn", + "lengthMeters": 592.6402612366865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5534786, + 9.9956509 + ], + [ + 53.5536147, + 9.9957537 + ], + [ + 53.5537676, + 9.9958609 + ], + [ + 53.5540721, + 9.9960311 + ], + [ + 53.5544646, + 9.9962531 + ], + [ + 53.5548379, + 9.9964612 + ], + [ + 53.5550141, + 9.9965745 + ], + [ + 53.5551939, + 9.9967051 + ], + [ + 53.5553686, + 9.9968595 + ], + [ + 53.5554513, + 9.9969356 + ], + [ + 53.5555229, + 9.9970039 + ], + [ + 53.5556923, + 9.9971953 + ], + [ + 53.5558229, + 9.9973575 + ], + [ + 53.5559658, + 9.9975842 + ], + [ + 53.5561031, + 9.9978145 + ], + [ + 53.556195, + 9.9979986 + ], + [ + 53.5562839, + 9.9981793 + ], + [ + 53.5564274, + 9.998558 + ], + [ + 53.5565082, + 9.9988143 + ], + [ + 53.556584, + 9.9990844 + ], + [ + 53.556645, + 9.9993384 + ], + [ + 53.5566903, + 9.9995894 + ], + [ + 53.5567382, + 9.9999646 + ], + [ + 53.5567708, + 10.0003085 + ], + [ + 53.5567826, + 10.0005708 + ], + [ + 53.5567868, + 10.0008259 + ], + [ + 53.5567774, + 10.0011912 + ], + [ + 53.556755, + 10.0015167 + ] + ] + }, + { + "osmId": "107741897", + "name": null, + "lengthMeters": 232.90374153623188, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.551099, + 9.9907338 + ], + [ + 53.5508795, + 9.9901795 + ], + [ + 53.5506054, + 9.9894912 + ], + [ + 53.5502048, + 9.9884854 + ], + [ + 53.5500817, + 9.9881385 + ], + [ + 53.5499733, + 9.9877649 + ] + ] + }, + { + "osmId": "107749985", + "name": null, + "lengthMeters": 76.33310609205078, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1320623, + 11.6109397 + ], + [ + 48.1316828, + 11.6117968 + ] + ] + }, + { + "osmId": "107754257", + "name": null, + "lengthMeters": 3012.9351580681027, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1316828, + 11.6117968 + ], + [ + 48.1316445, + 11.6118836 + ], + [ + 48.1315983, + 11.6120013 + ], + [ + 48.1315568, + 11.6121298 + ], + [ + 48.1315254, + 11.6122445 + ], + [ + 48.1315029, + 11.6123366 + ], + [ + 48.1314828, + 11.6124311 + ], + [ + 48.131466, + 11.6125252 + ], + [ + 48.1312247, + 11.6140044 + ], + [ + 48.1311935, + 11.6141999 + ], + [ + 48.1309913, + 11.6154524 + ], + [ + 48.1309751, + 11.615551 + ], + [ + 48.1309228, + 11.6158704 + ], + [ + 48.13091, + 11.6159488 + ], + [ + 48.1308361, + 11.6164135 + ], + [ + 48.1307441, + 11.6170026 + ], + [ + 48.1304306, + 11.6188234 + ], + [ + 48.1301304, + 11.6205424 + ], + [ + 48.129768, + 11.6226332 + ], + [ + 48.1297491, + 11.6227419 + ], + [ + 48.1297331, + 11.6228461 + ], + [ + 48.1297173, + 11.6229401 + ], + [ + 48.1296964, + 11.6230703 + ], + [ + 48.1296426, + 11.6234389 + ], + [ + 48.1292058, + 11.6263431 + ], + [ + 48.129, + 11.6277177 + ], + [ + 48.1289383, + 11.6280236 + ], + [ + 48.1288688, + 11.6283366 + ], + [ + 48.1285315, + 11.6296195 + ], + [ + 48.1284128, + 11.6300536 + ], + [ + 48.1283633, + 11.630223 + ], + [ + 48.1283522, + 11.630263 + ], + [ + 48.1283062, + 11.6304306 + ], + [ + 48.1282493, + 11.6306345 + ], + [ + 48.1281669, + 11.6309565 + ], + [ + 48.1280896, + 11.6312801 + ], + [ + 48.1280152, + 11.6316082 + ], + [ + 48.1279359, + 11.631932 + ], + [ + 48.1277732, + 11.6325818 + ], + [ + 48.1276174, + 11.633234 + ], + [ + 48.127478, + 11.6338327 + ], + [ + 48.1273491, + 11.6344757 + ], + [ + 48.1273226, + 11.6346116 + ], + [ + 48.1272897, + 11.6347819 + ], + [ + 48.1271189, + 11.6356634 + ], + [ + 48.1269241, + 11.6367154 + ], + [ + 48.1268066, + 11.6373551 + ], + [ + 48.1267676, + 11.6375583 + ], + [ + 48.1267439, + 11.6376927 + ], + [ + 48.1267129, + 11.637881 + ], + [ + 48.1266836, + 11.6380711 + ], + [ + 48.1266575, + 11.6382633 + ], + [ + 48.1266397, + 11.6383958 + ], + [ + 48.126619, + 11.6385904 + ], + [ + 48.1265819, + 11.6389496 + ], + [ + 48.1265546, + 11.6393135 + ], + [ + 48.126521, + 11.6400471 + ], + [ + 48.1264885, + 11.6407788 + ], + [ + 48.1264718, + 11.6411426 + ], + [ + 48.1264445, + 11.6415129 + ], + [ + 48.1264018, + 11.6419894 + ], + [ + 48.126381, + 11.6422216 + ], + [ + 48.1263022, + 11.6429181 + ], + [ + 48.1261192, + 11.644335 + ], + [ + 48.1261047, + 11.6444295 + ], + [ + 48.1260962, + 11.644467 + ], + [ + 48.1260844, + 11.6445034 + ], + [ + 48.1260748, + 11.6445298 + ], + [ + 48.1260627, + 11.6445535 + ], + [ + 48.1260498, + 11.644576 + ], + [ + 48.126037, + 11.6445963 + ], + [ + 48.1260242, + 11.6446104 + ], + [ + 48.1260103, + 11.6446251 + ], + [ + 48.1259993, + 11.6446342 + ], + [ + 48.1259767, + 11.6446519 + ], + [ + 48.1259596, + 11.6446598 + ], + [ + 48.1259498, + 11.6446642 + ], + [ + 48.1259327, + 11.6446701 + ], + [ + 48.125916, + 11.6446746 + ], + [ + 48.1258987, + 11.6446765 + ], + [ + 48.1258775, + 11.6446773 + ], + [ + 48.1258546, + 11.6446754 + ], + [ + 48.1258292, + 11.6446681 + ], + [ + 48.1254906, + 11.6444859 + ], + [ + 48.1249511, + 11.6441989 + ], + [ + 48.1242722, + 11.6438349 + ], + [ + 48.1241343, + 11.6437501 + ], + [ + 48.1240426, + 11.6436648 + ], + [ + 48.1240289, + 11.643652 + ], + [ + 48.1240129, + 11.6436378 + ], + [ + 48.1238548, + 11.6434665 + ], + [ + 48.1237876, + 11.6434044 + ], + [ + 48.123709, + 11.6433431 + ], + [ + 48.1236271, + 11.6432925 + ], + [ + 48.1228288, + 11.6428172 + ], + [ + 48.1227141, + 11.6427564 + ], + [ + 48.1226861, + 11.6427383 + ], + [ + 48.1225389, + 11.6426432 + ], + [ + 48.1224429, + 11.6425596 + ], + [ + 48.1223911, + 11.6425192 + ], + [ + 48.1223557, + 11.6424895 + ], + [ + 48.1223292, + 11.6424699 + ], + [ + 48.1221081, + 11.6423379 + ], + [ + 48.121978, + 11.642259 + ] + ] + }, + { + "osmId": "107778792", + "name": null, + "lengthMeters": 409.21656706990154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4935625, + 10.0049705 + ], + [ + 53.4943034, + 10.0051028 + ], + [ + 53.4947437, + 10.00518 + ], + [ + 53.4953926, + 10.0053198 + ], + [ + 53.495891, + 10.0054272 + ], + [ + 53.4967234, + 10.0056463 + ], + [ + 53.4968492, + 10.0056855 + ], + [ + 53.4970772, + 10.0057565 + ], + [ + 53.4970853, + 10.005759 + ], + [ + 53.4972085, + 10.0057958 + ] + ] + }, + { + "osmId": "107778798", + "name": null, + "lengthMeters": 533.1266014126413, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5007508, + 10.007402 + ], + [ + 53.50047, + 10.0073166 + ], + [ + 53.4999133, + 10.0071831 + ], + [ + 53.498483, + 10.0067581 + ], + [ + 53.4980352, + 10.0066236 + ], + [ + 53.4979194, + 10.0065888 + ], + [ + 53.4975523, + 10.0064708 + ], + [ + 53.4973561, + 10.0064077 + ], + [ + 53.4964992, + 10.00616 + ], + [ + 53.496348, + 10.0061205 + ], + [ + 53.4960249, + 10.0060497 + ] + ] + }, + { + "osmId": "107778799", + "name": null, + "lengthMeters": 418.07618945916005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4977989, + 10.005926 + ], + [ + 53.4981902, + 10.0060129 + ], + [ + 53.4983057, + 10.0060455 + ], + [ + 53.4983896, + 10.0060692 + ], + [ + 53.4985526, + 10.0061117 + ], + [ + 53.5003671, + 10.0066735 + ], + [ + 53.5003783, + 10.006676 + ], + [ + 53.5006022, + 10.0067456 + ], + [ + 53.5011268, + 10.0069033 + ], + [ + 53.501502, + 10.0070154 + ] + ] + }, + { + "osmId": "107778802", + "name": null, + "lengthMeters": 91.06823019532214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.496738, + 10.0063254 + ], + [ + 53.4969766, + 10.0063786 + ], + [ + 53.4975523, + 10.0064708 + ] + ] + }, + { + "osmId": "107789002", + "name": null, + "lengthMeters": 393.8719020593419, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5170164, + 10.0109001 + ], + [ + 53.5173224, + 10.0110367 + ], + [ + 53.5176184, + 10.0111855 + ], + [ + 53.5176472, + 10.0112008 + ], + [ + 53.5177437, + 10.011246 + ], + [ + 53.5183792, + 10.0116122 + ], + [ + 53.5187552, + 10.0118095 + ], + [ + 53.5191698, + 10.0120203 + ], + [ + 53.5200198, + 10.0124229 + ], + [ + 53.520405, + 10.0126302 + ] + ] + }, + { + "osmId": "107789006", + "name": null, + "lengthMeters": 374.93979383198064, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5132896, + 10.0092918 + ], + [ + 53.5135062, + 10.0093671 + ], + [ + 53.5139038, + 10.0095293 + ], + [ + 53.5150472, + 10.0100357 + ], + [ + 53.5165559, + 10.0106978 + ] + ] + }, + { + "osmId": "107824634", + "name": null, + "lengthMeters": 333.5527481892688, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5583566, + 13.3973501 + ], + [ + 52.5582404, + 13.397363 + ], + [ + 52.5580944, + 13.3973831 + ], + [ + 52.5580421, + 13.3973877 + ], + [ + 52.5579804, + 13.3973921 + ], + [ + 52.5579157, + 13.3973952 + ], + [ + 52.5578108, + 13.3973987 + ], + [ + 52.5576973, + 13.3973967 + ], + [ + 52.5575769, + 13.3973958 + ], + [ + 52.5572797, + 13.3973697 + ], + [ + 52.5569992, + 13.3973206 + ], + [ + 52.5565595, + 13.3972837 + ], + [ + 52.5562982, + 13.3972951 + ], + [ + 52.5559681, + 13.3973334 + ], + [ + 52.5555038, + 13.3974352 + ], + [ + 52.5553668, + 13.3974669 + ] + ] + }, + { + "osmId": "107824637", + "name": null, + "lengthMeters": 174.86890605883022, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538582, + 13.3982942 + ], + [ + 52.5538934, + 13.3982856 + ], + [ + 52.5539528, + 13.3982672 + ], + [ + 52.5539935, + 13.3982576 + ], + [ + 52.5540611, + 13.3982432 + ], + [ + 52.5541361, + 13.3982239 + ], + [ + 52.5541913, + 13.3982133 + ], + [ + 52.5542178, + 13.3982081 + ], + [ + 52.5543244, + 13.3981823 + ], + [ + 52.5543795, + 13.3981694 + ], + [ + 52.5544658, + 13.3981492 + ], + [ + 52.5544721, + 13.3981478 + ], + [ + 52.554887, + 13.3980508 + ], + [ + 52.5549863, + 13.3980273 + ], + [ + 52.5550312, + 13.3980167 + ], + [ + 52.5550878, + 13.3980029 + ], + [ + 52.5551425, + 13.3979897 + ], + [ + 52.5552033, + 13.3979751 + ], + [ + 52.5552883, + 13.397955 + ], + [ + 52.5553014, + 13.3979521 + ], + [ + 52.5554148, + 13.397927 + ] + ] + }, + { + "osmId": "107828119", + "name": "City-S-Bahn", + "lengthMeters": 128.58462585750962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5549022, + 10.006093 + ], + [ + 53.5551018, + 10.0058062 + ], + [ + 53.5552779, + 10.0055532 + ], + [ + 53.5554376, + 10.0053073 + ], + [ + 53.5555944, + 10.0050599 + ], + [ + 53.5557409, + 10.0047912 + ], + [ + 53.555751, + 10.0047738 + ] + ] + }, + { + "osmId": "107828129", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 75.61551318738594, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5546082, + 10.0055561 + ], + [ + 53.5546912, + 10.0054321 + ], + [ + 53.5551194, + 10.0048012 + ] + ] + }, + { + "osmId": "107828136", + "name": "City-S-Bahn", + "lengthMeters": 211.23821766428438, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5533279, + 10.0078475 + ], + [ + 53.5534299, + 10.0077728 + ], + [ + 53.5535975, + 10.0076457 + ], + [ + 53.5536658, + 10.0075962 + ], + [ + 53.5537219, + 10.0075372 + ], + [ + 53.553788, + 10.0074808 + ], + [ + 53.5538549, + 10.0074123 + ], + [ + 53.5540845, + 10.0071959 + ], + [ + 53.5542054, + 10.0070574 + ], + [ + 53.5543564, + 10.0068665 + ], + [ + 53.5545052, + 10.0066601 + ], + [ + 53.554786, + 10.0062636 + ], + [ + 53.5549022, + 10.006093 + ] + ] + }, + { + "osmId": "107828142", + "name": "Verbindungsbahn", + "lengthMeters": 214.06930135346553, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5572334, + 9.9970444 + ], + [ + 53.5573005, + 9.9967811 + ], + [ + 53.557548, + 9.9958641 + ], + [ + 53.5577483, + 9.9951058 + ], + [ + 53.5578144, + 9.9948646 + ], + [ + 53.5578932, + 9.9945903 + ], + [ + 53.5579479, + 9.9944144 + ], + [ + 53.5579659, + 9.9943658 + ], + [ + 53.5580043, + 9.9942624 + ], + [ + 53.5580576, + 9.9941189 + ] + ] + }, + { + "osmId": "107828150", + "name": null, + "lengthMeters": 92.30147620677147, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.55838, + 9.9933984 + ], + [ + 53.5589038, + 9.9923143 + ] + ] + }, + { + "osmId": "107828152", + "name": null, + "lengthMeters": 106.14015722141508, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.554491, + 10.0062089 + ], + [ + 53.5543255, + 10.0064246 + ], + [ + 53.5541796, + 10.0065953 + ], + [ + 53.5540943, + 10.0066826 + ], + [ + 53.5538347, + 10.0069076 + ], + [ + 53.5536735, + 10.0070254 + ] + ] + }, + { + "osmId": "107828153", + "name": "Verbindungsbahn", + "lengthMeters": 221.6519615949054, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5566623, + 10.0011798 + ], + [ + 53.5566647, + 10.0011625 + ], + [ + 53.5567054, + 10.0008237 + ], + [ + 53.5567262, + 10.0006369 + ], + [ + 53.5567565, + 10.0003022 + ], + [ + 53.5567818, + 10.0000147 + ], + [ + 53.5568164, + 9.9994304 + ], + [ + 53.5568544, + 9.9989138 + ], + [ + 53.5568756, + 9.9986998 + ], + [ + 53.556908, + 9.9984571 + ], + [ + 53.5569349, + 9.9982832 + ], + [ + 53.5569676, + 9.9980993 + ], + [ + 53.5570189, + 9.9978884 + ] + ] + }, + { + "osmId": "107830544", + "name": null, + "lengthMeters": 473.22316046011986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639693, + 9.979469 + ], + [ + 53.5639705, + 9.9802466 + ], + [ + 53.5639618, + 9.9829107 + ], + [ + 53.5639364, + 9.9833149 + ], + [ + 53.5639353, + 9.9833329 + ], + [ + 53.5639326, + 9.9833757 + ], + [ + 53.5638409, + 9.9840184 + ], + [ + 53.563782, + 9.9843157 + ], + [ + 53.5637732, + 9.9843481 + ], + [ + 53.5636769, + 9.9847023 + ], + [ + 53.5635015, + 9.9851807 + ], + [ + 53.5633273, + 9.9855838 + ], + [ + 53.5632075, + 9.9858091 + ], + [ + 53.5630081, + 9.9861708 + ] + ] + }, + { + "osmId": "107830545", + "name": null, + "lengthMeters": 178.5447642668976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5589038, + 9.9923143 + ], + [ + 53.5589685, + 9.9921901 + ], + [ + 53.5591054, + 9.9919274 + ], + [ + 53.5592391, + 9.9916848 + ], + [ + 53.5593957, + 9.9914431 + ], + [ + 53.5596005, + 9.9911757 + ], + [ + 53.5597112, + 9.9910531 + ], + [ + 53.5598284, + 9.9909373 + ], + [ + 53.5600626, + 9.990726 + ], + [ + 53.5601503, + 9.9906536 + ] + ] + }, + { + "osmId": "107831338", + "name": "Verbindungsbahn", + "lengthMeters": 86.38163293856091, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5630554, + 9.9606131 + ], + [ + 53.5628418, + 9.9600077 + ], + [ + 53.5626436, + 9.9595045 + ] + ] + }, + { + "osmId": "107831340", + "name": "Verbindungsbahn", + "lengthMeters": 133.44367502031767, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5635378, + 9.9632303 + ], + [ + 53.5635497, + 9.9636097 + ], + [ + 53.5635556, + 9.9637538 + ], + [ + 53.5635643, + 9.9639456 + ], + [ + 53.5635732, + 9.9640852 + ], + [ + 53.5635822, + 9.964214 + ], + [ + 53.5635916, + 9.9643266 + ], + [ + 53.5636656, + 9.9652197 + ], + [ + 53.5636668, + 9.9652379 + ] + ] + }, + { + "osmId": "107831346", + "name": "Verbindungsbahn", + "lengthMeters": 131.58825760351516, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636276, + 9.965248 + ], + [ + 53.5636094, + 9.9650253 + ], + [ + 53.5635442, + 9.9642499 + ], + [ + 53.5635172, + 9.9637892 + ], + [ + 53.563496, + 9.9632688 + ] + ] + }, + { + "osmId": "107831350", + "name": "Verbindungsbahn", + "lengthMeters": 143.8686094100362, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5631688, + 9.9608226 + ], + [ + 53.5632501, + 9.9610886 + ], + [ + 53.5633134, + 9.9613307 + ], + [ + 53.5633782, + 9.9616167 + ], + [ + 53.5634112, + 9.9617877 + ], + [ + 53.5634462, + 9.9620082 + ], + [ + 53.5634652, + 9.9621582 + ], + [ + 53.5634794, + 9.9622765 + ], + [ + 53.5634913, + 9.9623941 + ], + [ + 53.5635028, + 9.9625318 + ], + [ + 53.5635122, + 9.9626537 + ], + [ + 53.5635198, + 9.9627744 + ], + [ + 53.5635257, + 9.9628979 + ] + ] + }, + { + "osmId": "107831352", + "name": "Verbindungsbahn", + "lengthMeters": 143.6906971947823, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5634852, + 9.9629453 + ], + [ + 53.5634782, + 9.962802 + ], + [ + 53.5634639, + 9.9625618 + ], + [ + 53.563443, + 9.9623326 + ], + [ + 53.5634038, + 9.962024 + ], + [ + 53.5633771, + 9.9618528 + ], + [ + 53.5633483, + 9.9616914 + ], + [ + 53.5633142, + 9.9615231 + ], + [ + 53.5632706, + 9.9613408 + ], + [ + 53.5631369, + 9.9608685 + ] + ] + }, + { + "osmId": "107832759", + "name": "Verbindungsbahn", + "lengthMeters": 138.70927064091384, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5615466, + 9.9563952 + ], + [ + 53.5616172, + 9.9566971 + ], + [ + 53.5617039, + 9.9570021 + ], + [ + 53.5619075, + 9.9575375 + ], + [ + 53.5621652, + 9.9582119 + ] + ] + }, + { + "osmId": "107832762", + "name": "Verbindungsbahn", + "lengthMeters": 159.82730760378138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5623024, + 9.9585559 + ], + [ + 53.5623752, + 9.9587301 + ], + [ + 53.5626765, + 9.959472 + ], + [ + 53.5628738, + 9.9599735 + ], + [ + 53.5630883, + 9.960581 + ] + ] + }, + { + "osmId": "107832765", + "name": "Verbindungsbahn", + "lengthMeters": 141.3807086962002, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5621382, + 9.9582526 + ], + [ + 53.5618752, + 9.9575931 + ], + [ + 53.5616694, + 9.9570312 + ], + [ + 53.561571, + 9.9567031 + ], + [ + 53.5614992, + 9.9564083 + ] + ] + }, + { + "osmId": "107895819", + "name": null, + "lengthMeters": 321.47869100869207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1366179, + 11.5929479 + ], + [ + 48.1365848, + 11.5931066 + ], + [ + 48.1365755, + 11.5931366 + ], + [ + 48.1365636, + 11.5931643 + ], + [ + 48.1365478, + 11.59319 + ], + [ + 48.1365247, + 11.5932176 + ], + [ + 48.136509, + 11.5932309 + ], + [ + 48.136499, + 11.5932394 + ], + [ + 48.1364463, + 11.5932637 + ], + [ + 48.1363034, + 11.5932842 + ], + [ + 48.1362272, + 11.5932957 + ], + [ + 48.136149, + 11.5933247 + ], + [ + 48.136036, + 11.5933902 + ], + [ + 48.1359467, + 11.5934664 + ], + [ + 48.1358528, + 11.5935647 + ], + [ + 48.1357852, + 11.5936592 + ], + [ + 48.1357311, + 11.5937653 + ], + [ + 48.13569, + 11.5938887 + ], + [ + 48.1356612, + 11.5940142 + ], + [ + 48.1356367, + 11.5941364 + ], + [ + 48.1356229, + 11.5942665 + ], + [ + 48.1356226, + 11.5944069 + ], + [ + 48.1356308, + 11.594502 + ], + [ + 48.1356459, + 11.5946069 + ], + [ + 48.1356686, + 11.5947091 + ], + [ + 48.1357302, + 11.594898 + ], + [ + 48.135811, + 11.5950685 + ], + [ + 48.1359224, + 11.5952511 + ], + [ + 48.1359547, + 11.5953117 + ], + [ + 48.1359768, + 11.5953729 + ], + [ + 48.1359888, + 11.5954158 + ], + [ + 48.1360068, + 11.5954941 + ], + [ + 48.1360185, + 11.5955563 + ], + [ + 48.1360264, + 11.5956125 + ], + [ + 48.1360314, + 11.5956662 + ], + [ + 48.136034, + 11.5957195 + ], + [ + 48.1360343, + 11.5957762 + ], + [ + 48.1360342, + 11.5958321 + ], + [ + 48.1360325, + 11.5958872 + ], + [ + 48.1360303, + 11.5959383 + ], + [ + 48.1360252, + 11.5959897 + ], + [ + 48.1360185, + 11.5960378 + ], + [ + 48.1360161, + 11.5960551 + ], + [ + 48.1360049, + 11.596115 + ], + [ + 48.1359818, + 11.5962192 + ] + ] + }, + { + "osmId": "107895827", + "name": null, + "lengthMeters": 233.84516216124197, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1366417, + 11.5929588 + ], + [ + 48.1372193, + 11.5899287 + ] + ] + }, + { + "osmId": "107897271", + "name": null, + "lengthMeters": 162.00807823724716, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5633204, + 10.0456794 + ], + [ + 53.56331, + 10.0455958 + ], + [ + 53.5633058, + 10.0455628 + ], + [ + 53.5631872, + 10.0447551 + ], + [ + 53.5630561, + 10.0439923 + ], + [ + 53.5629549, + 10.0434623 + ], + [ + 53.5629236, + 10.0433207 + ] + ] + }, + { + "osmId": "107897275", + "name": null, + "lengthMeters": 414.2913961097167, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628757, + 10.0431039 + ], + [ + 53.5628607, + 10.0430361 + ], + [ + 53.5626761, + 10.042329 + ], + [ + 53.5625369, + 10.04182 + ], + [ + 53.5623706, + 10.0413181 + ], + [ + 53.5622202, + 10.0408538 + ], + [ + 53.5620475, + 10.0403635 + ], + [ + 53.5618484, + 10.03986 + ], + [ + 53.5611303, + 10.0380678 + ], + [ + 53.5610163, + 10.0377864 + ], + [ + 53.5609882, + 10.0377136 + ] + ] + }, + { + "osmId": "107897276", + "name": null, + "lengthMeters": 162.17907630175642, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5633923, + 10.0456763 + ], + [ + 53.5633793, + 10.0455736 + ], + [ + 53.5633767, + 10.0455532 + ], + [ + 53.5632525, + 10.0447086 + ], + [ + 53.5631244, + 10.0439412 + ], + [ + 53.5630221, + 10.0434298 + ], + [ + 53.5629966, + 10.0433146 + ] + ] + }, + { + "osmId": "107897289", + "name": null, + "lengthMeters": 537.5743454056108, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5608654, + 10.0373946 + ], + [ + 53.5608266, + 10.037294 + ], + [ + 53.5603839, + 10.0361428 + ], + [ + 53.5601444, + 10.0355263 + ], + [ + 53.5597127, + 10.0344271 + ], + [ + 53.5595842, + 10.0341041 + ], + [ + 53.559152, + 10.0329996 + ], + [ + 53.5585321, + 10.0314257 + ], + [ + 53.5582065, + 10.0305971 + ] + ] + }, + { + "osmId": "107897294", + "name": null, + "lengthMeters": 253.336847478734, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629504, + 10.0431057 + ], + [ + 53.5629278, + 10.0430037 + ], + [ + 53.5628208, + 10.0425691 + ], + [ + 53.5627366, + 10.0422272 + ], + [ + 53.5624297, + 10.0412139 + ], + [ + 53.5620161, + 10.0399743 + ], + [ + 53.561938, + 10.0397271 + ], + [ + 53.5619236, + 10.0396866 + ] + ] + }, + { + "osmId": "107898467", + "name": null, + "lengthMeters": 290.6769269828617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637911, + 10.0511904 + ], + [ + 53.5637729, + 10.0509555 + ], + [ + 53.5636578, + 10.0490016 + ], + [ + 53.5636487, + 10.0488473 + ], + [ + 53.5635321, + 10.0470602 + ], + [ + 53.5635116, + 10.0468145 + ] + ] + }, + { + "osmId": "107898476", + "name": null, + "lengthMeters": 348.03741292680274, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637165, + 10.0511576 + ], + [ + 53.5637035, + 10.0509887 + ], + [ + 53.5634675, + 10.0471021 + ], + [ + 53.5634293, + 10.04667 + ], + [ + 53.563355, + 10.045958 + ], + [ + 53.563351, + 10.0459257 + ] + ] + }, + { + "osmId": "107900327", + "name": null, + "lengthMeters": 172.59972471859652, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5657774, + 10.0592113 + ], + [ + 53.5656917, + 10.0590431 + ], + [ + 53.565528, + 10.0586738 + ], + [ + 53.5653872, + 10.0583022 + ], + [ + 53.5652735, + 10.0579529 + ], + [ + 53.5652167, + 10.0577745 + ], + [ + 53.5651708, + 10.0576028 + ], + [ + 53.5650881, + 10.0572935 + ], + [ + 53.5650123, + 10.0569546 + ] + ] + }, + { + "osmId": "107904254", + "name": null, + "lengthMeters": 866.02643548774, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1397142, + 11.5650452 + ], + [ + 48.139683, + 11.5651302 + ], + [ + 48.139652, + 11.5652148 + ], + [ + 48.1396237, + 11.5653251 + ], + [ + 48.1396158, + 11.5654185 + ], + [ + 48.1396178, + 11.5655019 + ], + [ + 48.1396237, + 11.5655566 + ], + [ + 48.1396345, + 11.5656138 + ], + [ + 48.1396392, + 11.5656338 + ], + [ + 48.1396587, + 11.5656912 + ], + [ + 48.1396808, + 11.5657533 + ], + [ + 48.1396946, + 11.5657848 + ], + [ + 48.1397023, + 11.5657992 + ], + [ + 48.1397192, + 11.565829 + ], + [ + 48.1397606, + 11.5658911 + ], + [ + 48.1399343, + 11.5661122 + ], + [ + 48.1401707, + 11.566421 + ], + [ + 48.1402883, + 11.5665743 + ], + [ + 48.1403905, + 11.5667252 + ], + [ + 48.1404053, + 11.5667546 + ], + [ + 48.1404184, + 11.5667871 + ], + [ + 48.1404353, + 11.5668352 + ], + [ + 48.1404452, + 11.5668746 + ], + [ + 48.1404538, + 11.5669132 + ], + [ + 48.1404598, + 11.566948 + ], + [ + 48.1404639, + 11.5669843 + ], + [ + 48.1404682, + 11.5670283 + ], + [ + 48.1404713, + 11.5670883 + ], + [ + 48.1404729, + 11.5671782 + ], + [ + 48.140473, + 11.5674059 + ], + [ + 48.1404746, + 11.567465 + ], + [ + 48.140479, + 11.5675133 + ], + [ + 48.1404837, + 11.5675531 + ], + [ + 48.1404896, + 11.5675919 + ], + [ + 48.1404991, + 11.5676364 + ], + [ + 48.1405098, + 11.5676792 + ], + [ + 48.1405179, + 11.5677103 + ], + [ + 48.140528, + 11.5677407 + ], + [ + 48.1405407, + 11.5677796 + ], + [ + 48.1405545, + 11.5678158 + ], + [ + 48.1405811, + 11.5678718 + ], + [ + 48.140608, + 11.567925 + ], + [ + 48.1406929, + 11.5681075 + ], + [ + 48.1407357, + 11.5681993 + ], + [ + 48.140775, + 11.5682917 + ], + [ + 48.140888, + 11.5685966 + ], + [ + 48.1409552, + 11.568786 + ], + [ + 48.1409697, + 11.5688462 + ], + [ + 48.1409767, + 11.5689088 + ], + [ + 48.1409781, + 11.5689466 + ], + [ + 48.1409769, + 11.5689846 + ], + [ + 48.1409743, + 11.5690131 + ], + [ + 48.1409713, + 11.5690355 + ], + [ + 48.1409686, + 11.5690577 + ], + [ + 48.1409648, + 11.5690805 + ], + [ + 48.1409588, + 11.569108 + ], + [ + 48.1409562, + 11.5691184 + ], + [ + 48.1409474, + 11.5691535 + ], + [ + 48.1409217, + 11.5692327 + ], + [ + 48.1409034, + 11.5692889 + ], + [ + 48.1408737, + 11.5693713 + ], + [ + 48.1407883, + 11.5696383 + ], + [ + 48.1407538, + 11.5697964 + ], + [ + 48.1405877, + 11.5708115 + ], + [ + 48.1405059, + 11.5713112 + ], + [ + 48.1404932, + 11.5713808 + ], + [ + 48.1404647, + 11.5715018 + ], + [ + 48.1404224, + 11.5716232 + ], + [ + 48.1403473, + 11.5718021 + ], + [ + 48.140267, + 11.5720146 + ], + [ + 48.1402273, + 11.5721414 + ], + [ + 48.1400127, + 11.5729723 + ], + [ + 48.1399443, + 11.573237 + ], + [ + 48.1399031, + 11.5734144 + ], + [ + 48.1398858, + 11.5735146 + ], + [ + 48.1398803, + 11.5735531 + ], + [ + 48.1398717, + 11.5736134 + ], + [ + 48.139866, + 11.5736802 + ], + [ + 48.1398613, + 11.5737345 + ], + [ + 48.1398456, + 11.5738193 + ], + [ + 48.1398341, + 11.573881 + ], + [ + 48.1396965, + 11.5744062 + ], + [ + 48.1396165, + 11.5747116 + ], + [ + 48.1394412, + 11.5753716 + ], + [ + 48.1394014, + 11.5755237 + ] + ] + }, + { + "osmId": "107904255", + "name": null, + "lengthMeters": 100.0620953909585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1397142, + 11.5650452 + ], + [ + 48.1396999, + 11.5650831 + ], + [ + 48.1396777, + 11.5651226 + ], + [ + 48.1396536, + 11.5651602 + ], + [ + 48.1396373, + 11.565181 + ], + [ + 48.1396289, + 11.5651892 + ], + [ + 48.139602, + 11.5652157 + ], + [ + 48.1395859, + 11.5652251 + ], + [ + 48.1395519, + 11.5652395 + ], + [ + 48.1395365, + 11.5652485 + ], + [ + 48.1394879, + 11.5652478 + ], + [ + 48.1394668, + 11.5652429 + ], + [ + 48.1394433, + 11.5652354 + ], + [ + 48.1394184, + 11.5652237 + ], + [ + 48.1393949, + 11.5652074 + ], + [ + 48.1393697, + 11.5651889 + ], + [ + 48.1393375, + 11.5651622 + ], + [ + 48.13931, + 11.5651256 + ], + [ + 48.1392888, + 11.565085 + ], + [ + 48.1392723, + 11.5650395 + ], + [ + 48.1392611, + 11.5649808 + ], + [ + 48.1392567, + 11.5648982 + ], + [ + 48.1392734, + 11.5645151 + ] + ] + }, + { + "osmId": "107904256", + "name": null, + "lengthMeters": 263.62689049292504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1408521, + 11.5616159 + ], + [ + 48.1406261, + 11.5623607 + ], + [ + 48.140596, + 11.5624603 + ], + [ + 48.1405647, + 11.5625574 + ], + [ + 48.1403243, + 11.5633137 + ], + [ + 48.1401222, + 11.5639382 + ], + [ + 48.1399927, + 11.5643058 + ], + [ + 48.1398044, + 11.5648011 + ] + ] + }, + { + "osmId": "107908976", + "name": null, + "lengthMeters": 3146.0965101274123, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.121978, + 11.642259 + ], + [ + 48.121837, + 11.6421745 + ], + [ + 48.1218151, + 11.6421574 + ], + [ + 48.1217987, + 11.642141 + ], + [ + 48.121781, + 11.6421229 + ], + [ + 48.1217652, + 11.6421013 + ], + [ + 48.1217505, + 11.6420773 + ], + [ + 48.1217377, + 11.6420505 + ], + [ + 48.1217254, + 11.64202 + ], + [ + 48.1217185, + 11.6419992 + ], + [ + 48.121713, + 11.6419793 + ], + [ + 48.1217087, + 11.6419562 + ], + [ + 48.1217044, + 11.6419223 + ], + [ + 48.121703, + 11.6418894 + ], + [ + 48.1217041, + 11.6418487 + ], + [ + 48.1217083, + 11.6418077 + ], + [ + 48.1217153, + 11.6417581 + ], + [ + 48.1217275, + 11.6417045 + ], + [ + 48.1217354, + 11.6416827 + ], + [ + 48.121744, + 11.6416608 + ], + [ + 48.1217538, + 11.6416393 + ], + [ + 48.121764, + 11.6416193 + ], + [ + 48.1217767, + 11.6416014 + ], + [ + 48.1217904, + 11.6415856 + ], + [ + 48.1218186, + 11.6415565 + ], + [ + 48.1218359, + 11.6415442 + ], + [ + 48.1218539, + 11.6415354 + ], + [ + 48.1218719, + 11.6415278 + ], + [ + 48.1218899, + 11.6415222 + ], + [ + 48.121906, + 11.6415192 + ], + [ + 48.121922, + 11.6415177 + ], + [ + 48.1219385, + 11.6415179 + ], + [ + 48.121954, + 11.6415197 + ], + [ + 48.1219713, + 11.6415244 + ], + [ + 48.1219882, + 11.6415307 + ], + [ + 48.1220046, + 11.6415383 + ], + [ + 48.1220211, + 11.6415469 + ], + [ + 48.1220375, + 11.6415601 + ], + [ + 48.1220527, + 11.6415752 + ], + [ + 48.122067, + 11.6415921 + ], + [ + 48.12208, + 11.6416116 + ], + [ + 48.1221333, + 11.6416997 + ], + [ + 48.1223655, + 11.6421814 + ], + [ + 48.122528, + 11.6425059 + ], + [ + 48.1225516, + 11.6425499 + ], + [ + 48.1225824, + 11.6425986 + ], + [ + 48.1226221, + 11.6426544 + ], + [ + 48.1226669, + 11.6427059 + ], + [ + 48.1226887, + 11.6427292 + ], + [ + 48.1227141, + 11.6427564 + ], + [ + 48.1227702, + 11.6428088 + ], + [ + 48.122806, + 11.6428376 + ], + [ + 48.1228419, + 11.6428632 + ], + [ + 48.1236182, + 11.6433271 + ], + [ + 48.1236995, + 11.6433769 + ], + [ + 48.1237767, + 11.643435 + ], + [ + 48.1238398, + 11.6434952 + ], + [ + 48.1240016, + 11.6436735 + ], + [ + 48.1240053, + 11.6436772 + ], + [ + 48.1240088, + 11.6436801 + ], + [ + 48.1241248, + 11.6437777 + ], + [ + 48.1242634, + 11.6438676 + ], + [ + 48.1249446, + 11.6442318 + ], + [ + 48.125715, + 11.6446495 + ], + [ + 48.1258211, + 11.644707 + ], + [ + 48.1258424, + 11.6447163 + ], + [ + 48.1258682, + 11.6447222 + ], + [ + 48.1258889, + 11.6447233 + ], + [ + 48.1259155, + 11.6447215 + ], + [ + 48.1259431, + 11.6447168 + ], + [ + 48.1259696, + 11.6447082 + ], + [ + 48.1259838, + 11.6446998 + ], + [ + 48.1259996, + 11.6446889 + ], + [ + 48.1260058, + 11.6446835 + ], + [ + 48.1260222, + 11.64467 + ], + [ + 48.1260378, + 11.6446546 + ], + [ + 48.1260436, + 11.644649 + ], + [ + 48.1260542, + 11.6446355 + ], + [ + 48.1260655, + 11.6446182 + ], + [ + 48.1260749, + 11.6446039 + ], + [ + 48.1260876, + 11.6445811 + ], + [ + 48.1260989, + 11.6445554 + ], + [ + 48.1261064, + 11.644536 + ], + [ + 48.1261132, + 11.6445138 + ], + [ + 48.1261201, + 11.6444862 + ], + [ + 48.1261261, + 11.644458 + ], + [ + 48.1261367, + 11.6444025 + ], + [ + 48.1261453, + 11.644343 + ], + [ + 48.1263266, + 11.6429259 + ], + [ + 48.1264083, + 11.6422208 + ], + [ + 48.1264281, + 11.6419941 + ], + [ + 48.1264702, + 11.6415133 + ], + [ + 48.1264969, + 11.6411454 + ], + [ + 48.1265145, + 11.6407802 + ], + [ + 48.1265469, + 11.6400485 + ], + [ + 48.1265794, + 11.6393167 + ], + [ + 48.1266061, + 11.6389553 + ], + [ + 48.1266395, + 11.638634 + ], + [ + 48.1266634, + 11.6384023 + ], + [ + 48.1266821, + 11.6382617 + ], + [ + 48.1267073, + 11.6380789 + ], + [ + 48.1267344, + 11.6379046 + ], + [ + 48.1268142, + 11.6374487 + ], + [ + 48.1269487, + 11.6367228 + ], + [ + 48.1271442, + 11.6356736 + ], + [ + 48.1273127, + 11.6347924 + ], + [ + 48.1273469, + 11.6346228 + ], + [ + 48.1273746, + 11.634485 + ], + [ + 48.1275019, + 11.6338443 + ], + [ + 48.1276423, + 11.6332416 + ], + [ + 48.1277986, + 11.6325942 + ], + [ + 48.1279598, + 11.6319453 + ], + [ + 48.12804, + 11.6316188 + ], + [ + 48.128112, + 11.6312934 + ], + [ + 48.1281893, + 11.630968 + ], + [ + 48.1282722, + 11.6306474 + ], + [ + 48.1283289, + 11.6304466 + ], + [ + 48.1283611, + 11.6303309 + ], + [ + 48.128376, + 11.6302773 + ], + [ + 48.1283872, + 11.630237 + ], + [ + 48.1284978, + 11.6298299 + ], + [ + 48.1288936, + 11.6283473 + ], + [ + 48.1289634, + 11.628037 + ], + [ + 48.1290247, + 11.6277295 + ], + [ + 48.1292356, + 11.6263538 + ], + [ + 48.1297208, + 11.6230793 + ], + [ + 48.1297434, + 11.6229411 + ], + [ + 48.1297578, + 11.6228535 + ], + [ + 48.1297736, + 11.6227565 + ], + [ + 48.1297909, + 11.6226422 + ], + [ + 48.129864, + 11.6222149 + ], + [ + 48.1301533, + 11.6205539 + ], + [ + 48.130454, + 11.6188311 + ], + [ + 48.1307674, + 11.6170145 + ], + [ + 48.1309343, + 11.6159566 + ], + [ + 48.1309477, + 11.6158804 + ], + [ + 48.1310001, + 11.6155568 + ], + [ + 48.1310155, + 11.6154614 + ], + [ + 48.1310822, + 11.6150357 + ], + [ + 48.1312185, + 11.614209 + ], + [ + 48.1312524, + 11.6139969 + ], + [ + 48.1314943, + 11.6125347 + ], + [ + 48.1315114, + 11.6124382 + ], + [ + 48.1315297, + 11.6123499 + ], + [ + 48.1315556, + 11.6122502 + ], + [ + 48.1315855, + 11.6121535 + ], + [ + 48.1316232, + 11.6120354 + ], + [ + 48.1316725, + 11.6119159 + ], + [ + 48.1317285, + 11.6118023 + ] + ] + }, + { + "osmId": "107940100", + "name": null, + "lengthMeters": 308.0714649343931, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5787243, + 10.0568509 + ], + [ + 53.5785732, + 10.0569318 + ], + [ + 53.5782299, + 10.0570811 + ], + [ + 53.5780178, + 10.0571401 + ], + [ + 53.57797, + 10.0571534 + ], + [ + 53.5779134, + 10.0571691 + ], + [ + 53.5779, + 10.0571728 + ], + [ + 53.5775512, + 10.0572496 + ], + [ + 53.5772027, + 10.0572697 + ], + [ + 53.5766216, + 10.0572991 + ], + [ + 53.576195, + 10.0573208 + ], + [ + 53.5761516, + 10.0573251 + ], + [ + 53.5761342, + 10.0573268 + ], + [ + 53.5761065, + 10.0573295 + ], + [ + 53.5760791, + 10.0573355 + ], + [ + 53.576055, + 10.0573407 + ], + [ + 53.5759814, + 10.0573514 + ] + ] + }, + { + "osmId": "107940102", + "name": null, + "lengthMeters": 80.27360925161395, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5830021, + 10.0534249 + ], + [ + 53.582413, + 10.0541278 + ] + ] + }, + { + "osmId": "107940104", + "name": null, + "lengthMeters": 79.27427093178564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5818824, + 10.0546752 + ], + [ + 53.5818541, + 10.0547018 + ], + [ + 53.5815881, + 10.0549362 + ], + [ + 53.5815325, + 10.0549769 + ], + [ + 53.5813866, + 10.0550847 + ], + [ + 53.5812379, + 10.0551859 + ] + ] + }, + { + "osmId": "107940105", + "name": null, + "lengthMeters": 152.88336764097056, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5853529, + 10.0498012 + ], + [ + 53.5852344, + 10.0500025 + ], + [ + 53.5847227, + 10.0508029 + ], + [ + 53.5845925, + 10.0510064 + ], + [ + 53.5843502, + 10.0513856 + ] + ] + }, + { + "osmId": "107940107", + "name": null, + "lengthMeters": 122.12587422840706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5842199, + 10.0515931 + ], + [ + 53.5837379, + 10.0523517 + ], + [ + 53.5834779, + 10.0527462 + ], + [ + 53.5834132, + 10.0528485 + ] + ] + }, + { + "osmId": "107940109", + "name": null, + "lengthMeters": 79.78276836324272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5860336, + 10.0487332 + ], + [ + 53.5859699, + 10.048829 + ], + [ + 53.5859492, + 10.0488616 + ], + [ + 53.5855087, + 10.0495572 + ] + ] + }, + { + "osmId": "107940396", + "name": null, + "lengthMeters": 376.5397776219645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3541794, + 13.4257615 + ], + [ + 52.3534372, + 13.4228442 + ], + [ + 52.3528792, + 13.4206423 + ] + ] + }, + { + "osmId": "107948317", + "name": null, + "lengthMeters": 78.38051399669952, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6178374, + 10.0307308 + ], + [ + 53.6185111, + 10.0310804 + ] + ] + }, + { + "osmId": "107948324", + "name": null, + "lengthMeters": 2012.9618069155001, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6256754, + 10.0335549 + ], + [ + 53.6258567, + 10.033641 + ], + [ + 53.6259766, + 10.0336865 + ], + [ + 53.6261087, + 10.0337496 + ], + [ + 53.6261835, + 10.0337831 + ], + [ + 53.6262779, + 10.0338291 + ], + [ + 53.6264819, + 10.0338997 + ], + [ + 53.6267502, + 10.033963 + ], + [ + 53.6269739, + 10.0339904 + ], + [ + 53.6271687, + 10.0339731 + ], + [ + 53.6272611, + 10.0339628 + ], + [ + 53.6273642, + 10.0339376 + ], + [ + 53.627456, + 10.0339181 + ], + [ + 53.6276123, + 10.033867 + ], + [ + 53.6277301, + 10.033812 + ], + [ + 53.6278923, + 10.0337168 + ], + [ + 53.6280422, + 10.0336196 + ], + [ + 53.6282639, + 10.033444 + ], + [ + 53.6283742, + 10.033344 + ], + [ + 53.6285444, + 10.0331745 + ], + [ + 53.6287229, + 10.0329499 + ], + [ + 53.6288914, + 10.0327019 + ], + [ + 53.6290432, + 10.0324338 + ], + [ + 53.6291547, + 10.0321938 + ], + [ + 53.6292406, + 10.032002 + ], + [ + 53.6293454, + 10.0317052 + ], + [ + 53.6294386, + 10.0313867 + ], + [ + 53.6295386, + 10.030987 + ], + [ + 53.629597, + 10.0307067 + ], + [ + 53.6296455, + 10.0304344 + ], + [ + 53.6296986, + 10.0300509 + ], + [ + 53.6297294, + 10.0295756 + ], + [ + 53.6297639, + 10.0288117 + ], + [ + 53.6298069, + 10.0276991 + ], + [ + 53.629888, + 10.0255655 + ], + [ + 53.6299099, + 10.0242521 + ], + [ + 53.629901, + 10.0237658 + ], + [ + 53.6298345, + 10.0226814 + ], + [ + 53.629513, + 10.0186042 + ], + [ + 53.6290208, + 10.0126911 + ], + [ + 53.6290121, + 10.0119613 + ], + [ + 53.6290203, + 10.0114133 + ], + [ + 53.6290372, + 10.0111578 + ], + [ + 53.6291077, + 10.0105411 + ], + [ + 53.6292053, + 10.0100463 + ], + [ + 53.6293262, + 10.0095953 + ], + [ + 53.629418, + 10.0092916 + ], + [ + 53.6295195, + 10.0089964 + ], + [ + 53.629652, + 10.0087049 + ] + ] + }, + { + "osmId": "107948351", + "name": null, + "lengthMeters": 102.80255038861657, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.593117, + 10.0368379 + ], + [ + 53.5921932, + 10.0368996 + ] + ] + }, + { + "osmId": "107948354", + "name": null, + "lengthMeters": 94.8201493984504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5921932, + 10.0368996 + ], + [ + 53.592047, + 10.036909 + ], + [ + 53.5920042, + 10.0369112 + ], + [ + 53.5919189, + 10.0369165 + ], + [ + 53.5917374, + 10.0369325 + ], + [ + 53.5915809, + 10.0369505 + ], + [ + 53.5913436, + 10.0370068 + ] + ] + }, + { + "osmId": "107991691", + "name": null, + "lengthMeters": 634.9037329358932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6289281, + 10.0377998 + ], + [ + 53.6289676, + 10.0379206 + ], + [ + 53.6290512, + 10.0382051 + ], + [ + 53.6291194, + 10.0384558 + ], + [ + 53.6291742, + 10.0386815 + ], + [ + 53.6293173, + 10.0393524 + ], + [ + 53.6295911, + 10.0406389 + ], + [ + 53.6296101, + 10.0407328 + ], + [ + 53.6296373, + 10.0408671 + ], + [ + 53.6307233, + 10.0460859 + ], + [ + 53.6308807, + 10.0468425 + ] + ] + }, + { + "osmId": "108021450", + "name": null, + "lengthMeters": 378.3968056270986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1393147, + 11.5613871 + ], + [ + 48.1393266, + 11.5624387 + ], + [ + 48.1392616, + 11.5636866 + ], + [ + 48.1392438, + 11.5640286 + ], + [ + 48.1391983, + 11.5649016 + ], + [ + 48.1391947, + 11.5649716 + ], + [ + 48.1391916, + 11.5650198 + ], + [ + 48.1391843, + 11.5650727 + ], + [ + 48.139167, + 11.5651461 + ], + [ + 48.1391494, + 11.5651902 + ], + [ + 48.1391308, + 11.5652264 + ], + [ + 48.1391092, + 11.5652567 + ], + [ + 48.1390921, + 11.5652775 + ], + [ + 48.1390657, + 11.5653 + ], + [ + 48.1390364, + 11.5653167 + ], + [ + 48.1389934, + 11.5653345 + ], + [ + 48.1389509, + 11.5653399 + ], + [ + 48.1389193, + 11.5653369 + ], + [ + 48.1383348, + 11.5652355 + ] + ] + }, + { + "osmId": "108032524", + "name": null, + "lengthMeters": 218.1683207129945, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1371089, + 11.5649835 + ], + [ + 48.1369828, + 11.5649546 + ], + [ + 48.1365954, + 11.5648534 + ], + [ + 48.1365398, + 11.5648494 + ], + [ + 48.1364824, + 11.5648477 + ], + [ + 48.1364354, + 11.5648503 + ], + [ + 48.1363751, + 11.5648563 + ], + [ + 48.1363282, + 11.5648612 + ], + [ + 48.1362293, + 11.5648817 + ], + [ + 48.1361787, + 11.5648945 + ], + [ + 48.1361352, + 11.5649079 + ], + [ + 48.1360787, + 11.5649282 + ], + [ + 48.1360437, + 11.5649423 + ], + [ + 48.1359264, + 11.5649996 + ], + [ + 48.1353583, + 11.5653607 + ], + [ + 48.1352261, + 11.5654435 + ] + ] + }, + { + "osmId": "108155050", + "name": null, + "lengthMeters": 155.23418521957407, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.132305, + 11.5671502 + ], + [ + 48.1323523, + 11.5670953 + ], + [ + 48.1323808, + 11.5670681 + ], + [ + 48.1324144, + 11.5670391 + ], + [ + 48.1324472, + 11.5670123 + ], + [ + 48.1324736, + 11.5669925 + ], + [ + 48.1325019, + 11.5669727 + ], + [ + 48.1325361, + 11.5669508 + ], + [ + 48.1325698, + 11.5669305 + ], + [ + 48.1326016, + 11.5669116 + ], + [ + 48.1326385, + 11.5668885 + ], + [ + 48.1326924, + 11.5668553 + ], + [ + 48.1327477, + 11.5668215 + ], + [ + 48.1327983, + 11.5667897 + ], + [ + 48.1328478, + 11.566753 + ], + [ + 48.1328777, + 11.5667282 + ], + [ + 48.1329078, + 11.5667033 + ], + [ + 48.1329732, + 11.5666454 + ], + [ + 48.1330117, + 11.5666094 + ], + [ + 48.133035, + 11.5665883 + ], + [ + 48.1330858, + 11.5665408 + ], + [ + 48.1331258, + 11.5665032 + ], + [ + 48.1331585, + 11.5664724 + ], + [ + 48.1332016, + 11.5664343 + ], + [ + 48.133257, + 11.5663883 + ], + [ + 48.1332872, + 11.566365 + ], + [ + 48.1333219, + 11.5663402 + ], + [ + 48.1333337, + 11.5663324 + ], + [ + 48.1333445, + 11.5663248 + ], + [ + 48.1333754, + 11.5663037 + ], + [ + 48.1335436, + 11.5661984 + ] + ] + }, + { + "osmId": "108155051", + "name": null, + "lengthMeters": 371.79789006387523, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1332278, + 11.5664884 + ], + [ + 48.1331958, + 11.5665089 + ], + [ + 48.1331567, + 11.5665329 + ], + [ + 48.1331394, + 11.5665451 + ], + [ + 48.1331216, + 11.566559 + ], + [ + 48.133086, + 11.5665898 + ], + [ + 48.1330425, + 11.5666295 + ], + [ + 48.1330254, + 11.5666447 + ], + [ + 48.1329697, + 11.5666978 + ], + [ + 48.1329446, + 11.5667224 + ], + [ + 48.1329178, + 11.5667464 + ], + [ + 48.1328954, + 11.5667661 + ], + [ + 48.1328716, + 11.5667861 + ], + [ + 48.132853, + 11.5668011 + ], + [ + 48.1328309, + 11.5668178 + ], + [ + 48.1328043, + 11.5668363 + ], + [ + 48.1327761, + 11.566855 + ], + [ + 48.1327425, + 11.566875 + ], + [ + 48.1327187, + 11.5668878 + ], + [ + 48.1326871, + 11.5669032 + ], + [ + 48.1326508, + 11.5669181 + ], + [ + 48.1326134, + 11.566931 + ], + [ + 48.132586, + 11.5669404 + ], + [ + 48.1325604, + 11.5669493 + ], + [ + 48.1325312, + 11.5669606 + ], + [ + 48.1325019, + 11.5669727 + ], + [ + 48.132467, + 11.5669897 + ], + [ + 48.1324467, + 11.5669997 + ], + [ + 48.1324274, + 11.5670098 + ], + [ + 48.1324077, + 11.5670214 + ], + [ + 48.13239, + 11.567033 + ], + [ + 48.1323747, + 11.5670446 + ], + [ + 48.1323582, + 11.5670578 + ], + [ + 48.1323439, + 11.5670703 + ], + [ + 48.1323282, + 11.5670849 + ], + [ + 48.1323033, + 11.5671093 + ], + [ + 48.1322563, + 11.5671599 + ], + [ + 48.1320162, + 11.5674209 + ], + [ + 48.1318997, + 11.5675513 + ], + [ + 48.1317882, + 11.5676768 + ], + [ + 48.1315768, + 11.5679077 + ], + [ + 48.1315369, + 11.5679569 + ], + [ + 48.1315007, + 11.5680152 + ], + [ + 48.1314659, + 11.5680766 + ], + [ + 48.1314358, + 11.5681462 + ], + [ + 48.1313873, + 11.5682792 + ], + [ + 48.1313447, + 11.5684234 + ], + [ + 48.1312874, + 11.5686204 + ], + [ + 48.1311484, + 11.5691076 + ], + [ + 48.1309577, + 11.5698087 + ] + ] + }, + { + "osmId": "108155053", + "name": null, + "lengthMeters": 129.7587892699622, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1352355, + 11.5654798 + ], + [ + 48.1353717, + 11.5653952 + ], + [ + 48.1359364, + 11.5650265 + ], + [ + 48.136052, + 11.5649631 + ], + [ + 48.1360949, + 11.5649445 + ], + [ + 48.1361582, + 11.564923 + ], + [ + 48.1363283, + 11.5648988 + ] + ] + }, + { + "osmId": "108200267", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 751.6901685429948, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5296599, + 10.0685747 + ], + [ + 53.5304815, + 10.0669073 + ], + [ + 53.5305626, + 10.066738 + ], + [ + 53.5309356, + 10.065929 + ], + [ + 53.5313028, + 10.0650921 + ], + [ + 53.5316226, + 10.064333 + ], + [ + 53.5321826, + 10.062968 + ], + [ + 53.5326986, + 10.061697 + ], + [ + 53.5331155, + 10.0606662 + ], + [ + 53.5332862, + 10.060244 + ], + [ + 53.5336345, + 10.0593843 + ] + ] + }, + { + "osmId": "108200268", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 211.44817445503108, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5459793, + 10.0337882 + ], + [ + 53.5450096, + 10.0345379 + ], + [ + 53.5448081, + 10.0346945 + ], + [ + 53.5443257, + 10.0350677 + ], + [ + 53.5442521, + 10.035127 + ] + ] + }, + { + "osmId": "108200273", + "name": null, + "lengthMeters": 1230.9419704080865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5332813, + 10.0596577 + ], + [ + 53.5333354, + 10.0595253 + ], + [ + 53.5334656, + 10.0591797 + ], + [ + 53.5336387, + 10.0586982 + ], + [ + 53.5337887, + 10.0582544 + ], + [ + 53.5339105, + 10.0578466 + ], + [ + 53.5340241, + 10.0574496 + ], + [ + 53.534069, + 10.0572851 + ], + [ + 53.5342054, + 10.0567362 + ], + [ + 53.5343262, + 10.0562013 + ], + [ + 53.5343349, + 10.0561561 + ], + [ + 53.5344824, + 10.0553881 + ], + [ + 53.5346111, + 10.0545488 + ], + [ + 53.5348613, + 10.0527609 + ], + [ + 53.5350959, + 10.051067 + ], + [ + 53.5351567, + 10.0506268 + ], + [ + 53.535225, + 10.0501904 + ], + [ + 53.5353122, + 10.0497178 + ], + [ + 53.5354241, + 10.0491167 + ], + [ + 53.5355725, + 10.0484883 + ], + [ + 53.5358087, + 10.0475046 + ], + [ + 53.5361334, + 10.0461481 + ], + [ + 53.5362376, + 10.045714 + ], + [ + 53.536579, + 10.0443226 + ], + [ + 53.536675, + 10.0438988 + ], + [ + 53.5367869, + 10.0434262 + ], + [ + 53.5368144, + 10.0433175 + ], + [ + 53.5368231, + 10.0432831 + ], + [ + 53.5368816, + 10.0430519 + ], + [ + 53.5370737, + 10.0422437 + ] + ] + }, + { + "osmId": "108200274", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 239.88012921602555, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5387706, + 10.0427245 + ], + [ + 53.5387492, + 10.0427931 + ], + [ + 53.538665, + 10.0430393 + ], + [ + 53.5384983, + 10.0435926 + ], + [ + 53.5383341, + 10.0441796 + ], + [ + 53.5379069, + 10.0456701 + ], + [ + 53.5378203, + 10.0459525 + ], + [ + 53.5378134, + 10.0459767 + ] + ] + }, + { + "osmId": "108200276", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 170.16509727044277, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5441099, + 10.0352415 + ], + [ + 53.5440221, + 10.0353122 + ], + [ + 53.542718, + 10.0363118 + ] + ] + }, + { + "osmId": "108200277", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 238.64195181268857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5352838, + 10.0545433 + ], + [ + 53.535458, + 10.0539967 + ], + [ + 53.5357729, + 10.0529532 + ], + [ + 53.5357771, + 10.0529391 + ], + [ + 53.5362406, + 10.0513115 + ] + ] + }, + { + "osmId": "108200279", + "name": null, + "lengthMeters": 77.68908425571871, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5347936, + 10.0542637 + ], + [ + 53.5349407, + 10.0532159 + ], + [ + 53.5349531, + 10.0531192 + ] + ] + }, + { + "osmId": "108200280", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 159.26270456204804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5352838, + 10.0545433 + ], + [ + 53.5345991, + 10.05666 + ] + ] + }, + { + "osmId": "108200284", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 174.94998453048694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5350644, + 10.0557221 + ], + [ + 53.5343912, + 10.0581148 + ] + ] + }, + { + "osmId": "108200287", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 373.32235194877177, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5343912, + 10.0581148 + ], + [ + 53.5343637, + 10.0582114 + ], + [ + 53.5343414, + 10.0582908 + ], + [ + 53.5340715, + 10.0592567 + ], + [ + 53.5338325, + 10.0600179 + ], + [ + 53.5336116, + 10.0606152 + ], + [ + 53.5333948, + 10.0611186 + ], + [ + 53.5330727, + 10.0617485 + ], + [ + 53.5325462, + 10.062793 + ] + ] + }, + { + "osmId": "108200294", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 101.26040398835127, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5421303, + 10.0367667 + ], + [ + 53.541983, + 10.0368859 + ], + [ + 53.5418233, + 10.0370185 + ], + [ + 53.5415721, + 10.0372391 + ], + [ + 53.5414504, + 10.0373599 + ], + [ + 53.5413277, + 10.0374883 + ] + ] + }, + { + "osmId": "108200295", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 395.38419121248484, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.541046, + 10.0377963 + ], + [ + 53.540648, + 10.0383121 + ], + [ + 53.5404461, + 10.0386025 + ], + [ + 53.5403948, + 10.0386763 + ], + [ + 53.5401687, + 10.0390635 + ], + [ + 53.5400387, + 10.0392981 + ], + [ + 53.5398916, + 10.0395917 + ], + [ + 53.5397127, + 10.0399805 + ], + [ + 53.539591, + 10.0402713 + ], + [ + 53.5394755, + 10.0405714 + ], + [ + 53.5393321, + 10.0409785 + ], + [ + 53.5391945, + 10.0413958 + ], + [ + 53.5390527, + 10.0418354 + ], + [ + 53.5388625, + 10.042429 + ] + ] + }, + { + "osmId": "108200536", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 172.42433871871467, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5397588, + 10.0314632 + ], + [ + 53.5397798, + 10.0312982 + ], + [ + 53.5398078, + 10.0310105 + ], + [ + 53.539826, + 10.030653 + ], + [ + 53.5398343, + 10.0302951 + ], + [ + 53.5398255, + 10.0298943 + ], + [ + 53.5398075, + 10.0296428 + ], + [ + 53.539799, + 10.0295242 + ], + [ + 53.5397484, + 10.0290608 + ], + [ + 53.5397198, + 10.02888 + ] + ] + }, + { + "osmId": "108200537", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 257.8851255602282, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5397198, + 10.02888 + ], + [ + 53.5396461, + 10.028504 + ], + [ + 53.5395484, + 10.028122 + ], + [ + 53.5394258, + 10.0277329 + ], + [ + 53.5392726, + 10.0273478 + ], + [ + 53.5391661, + 10.0271199 + ], + [ + 53.5390571, + 10.0269145 + ], + [ + 53.5389674, + 10.02676 + ], + [ + 53.538753, + 10.0264421 + ], + [ + 53.538632, + 10.0262901 + ], + [ + 53.538489, + 10.0261333 + ], + [ + 53.5384813, + 10.0261265 + ], + [ + 53.5382932, + 10.025937 + ] + ] + }, + { + "osmId": "108202143", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 668.1102598443524, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5342896, + 10.0667447 + ], + [ + 53.5342326, + 10.0666078 + ], + [ + 53.5341524, + 10.0664136 + ], + [ + 53.5340733, + 10.0661812 + ], + [ + 53.5339494, + 10.0657422 + ], + [ + 53.533885, + 10.065442 + ], + [ + 53.5338401, + 10.0651839 + ], + [ + 53.5337933, + 10.064815 + ], + [ + 53.5337679, + 10.0644617 + ], + [ + 53.5337599, + 10.063919 + ], + [ + 53.5337841, + 10.0634829 + ], + [ + 53.5338289, + 10.0630669 + ], + [ + 53.5338999, + 10.0625573 + ], + [ + 53.5340088, + 10.0619261 + ], + [ + 53.5342019, + 10.0608054 + ], + [ + 53.5343908, + 10.0597152 + ], + [ + 53.5346433, + 10.0581824 + ], + [ + 53.5347963, + 10.057058 + ] + ] + }, + { + "osmId": "108202145", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 75.12351891149994, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5350062, + 10.067833 + ], + [ + 53.5347826, + 10.0675767 + ], + [ + 53.5346578, + 10.067406 + ], + [ + 53.5345393, + 10.0672214 + ], + [ + 53.5344814, + 10.067122 + ] + ] + }, + { + "osmId": "108202153", + "name": null, + "lengthMeters": 138.57374490533468, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5298273, + 10.0680026 + ], + [ + 53.5301024, + 10.067459 + ], + [ + 53.5302449, + 10.0671758 + ], + [ + 53.5303933, + 10.0668703 + ], + [ + 53.5306168, + 10.066381 + ] + ] + }, + { + "osmId": "108202924", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1161.3345713803426, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.549351, + 10.0684825 + ], + [ + 53.5488704, + 10.068561 + ], + [ + 53.5483161, + 10.0686872 + ], + [ + 53.5467948, + 10.0690336 + ], + [ + 53.5457007, + 10.069281 + ], + [ + 53.5449893, + 10.0694401 + ], + [ + 53.5432858, + 10.0698212 + ], + [ + 53.5396476, + 10.070635 + ], + [ + 53.5394433, + 10.0706675 + ], + [ + 53.5392918, + 10.0706803 + ], + [ + 53.5391685, + 10.07068 + ], + [ + 53.5389924, + 10.070666 + ] + ] + }, + { + "osmId": "108202925", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 95.46829389905916, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5388211, + 10.0706305 + ], + [ + 53.5386609, + 10.0705527 + ], + [ + 53.5384373, + 10.0704552 + ], + [ + 53.5381944, + 10.0703065 + ], + [ + 53.5380035, + 10.0701935 + ] + ] + }, + { + "osmId": "108202926", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 334.3460537683152, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5531644, + 10.0678065 + ], + [ + 53.5503918, + 10.0682921 + ], + [ + 53.5501737, + 10.0683303 + ] + ] + }, + { + "osmId": "108202928", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 92.03099027630132, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5501737, + 10.0683303 + ], + [ + 53.549351, + 10.0684825 + ] + ] + }, + { + "osmId": "108209595", + "name": "Vogelfluglinie", + "lengthMeters": 806.38298870927, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5712914, + 10.0817078 + ], + [ + 53.570932, + 10.0806693 + ], + [ + 53.5707538, + 10.0800837 + ], + [ + 53.5706063, + 10.0796113 + ], + [ + 53.5705442, + 10.0793922 + ], + [ + 53.5704487, + 10.0790231 + ], + [ + 53.5704371, + 10.0789822 + ], + [ + 53.570332, + 10.0785979 + ], + [ + 53.5703046, + 10.0784907 + ], + [ + 53.5702881, + 10.0784262 + ], + [ + 53.5700422, + 10.0774638 + ], + [ + 53.5699776, + 10.0772113 + ], + [ + 53.5696844, + 10.0760279 + ], + [ + 53.5696597, + 10.0759283 + ], + [ + 53.5694475, + 10.0751014 + ], + [ + 53.5686009, + 10.0716177 + ], + [ + 53.5685759, + 10.0715172 + ], + [ + 53.5683387, + 10.070567 + ] + ] + }, + { + "osmId": "108209598", + "name": "Vogelfluglinie", + "lengthMeters": 1366.3712611387123, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.57476, + 10.0981318 + ], + [ + 53.5750635, + 10.099901 + ], + [ + 53.5752667, + 10.1009545 + ], + [ + 53.5756439, + 10.102447 + ], + [ + 53.5758416, + 10.1031808 + ], + [ + 53.5760381, + 10.1038326 + ], + [ + 53.5760483, + 10.1038663 + ], + [ + 53.5761957, + 10.1043176 + ], + [ + 53.5762919, + 10.1046121 + ], + [ + 53.5763999, + 10.1049426 + ], + [ + 53.5769107, + 10.1062997 + ], + [ + 53.577475, + 10.1076245 + ], + [ + 53.5776347, + 10.1079391 + ], + [ + 53.5776956, + 10.1080592 + ], + [ + 53.5782284, + 10.1091088 + ], + [ + 53.5786338, + 10.1098501 + ], + [ + 53.578687, + 10.1099407 + ], + [ + 53.5799489, + 10.1120908 + ], + [ + 53.5803735, + 10.1128143 + ], + [ + 53.581207, + 10.1142406 + ], + [ + 53.5813927, + 10.1145584 + ], + [ + 53.5816047, + 10.1149207 + ] + ] + }, + { + "osmId": "108209601", + "name": null, + "lengthMeters": 1057.8585741325207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5714298, + 10.0823781 + ], + [ + 53.5716026, + 10.0829015 + ], + [ + 53.5717486, + 10.0833476 + ], + [ + 53.5719742, + 10.0840006 + ], + [ + 53.572257, + 10.084837 + ], + [ + 53.5725044, + 10.0855965 + ], + [ + 53.5726782, + 10.0861555 + ], + [ + 53.5728557, + 10.0868127 + ], + [ + 53.5730373, + 10.0875182 + ], + [ + 53.573231, + 10.0884899 + ], + [ + 53.5734059, + 10.0896455 + ], + [ + 53.5741966, + 10.0947632 + ], + [ + 53.574413, + 10.0961637 + ], + [ + 53.5744625, + 10.0964588 + ], + [ + 53.574635, + 10.097361 + ] + ] + }, + { + "osmId": "108211009", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 83.68973295744746, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5268425, + 10.0741778 + ], + [ + 53.5263502, + 10.0751355 + ] + ] + }, + { + "osmId": "108211011", + "name": null, + "lengthMeters": 3605.2021098434125, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5055362, + 10.116718 + ], + [ + 53.5067973, + 10.1142251 + ], + [ + 53.5077759, + 10.1123016 + ], + [ + 53.5080142, + 10.1118268 + ], + [ + 53.5109294, + 10.1061055 + ], + [ + 53.5120747, + 10.1038897 + ], + [ + 53.5129439, + 10.1022079 + ], + [ + 53.5149356, + 10.0983007 + ], + [ + 53.5157269, + 10.0967919 + ], + [ + 53.5159582, + 10.0963509 + ], + [ + 53.5161994, + 10.0958884 + ], + [ + 53.5162235, + 10.0958422 + ], + [ + 53.5166629, + 10.0949716 + ], + [ + 53.5174512, + 10.0932651 + ], + [ + 53.5188879, + 10.090335 + ], + [ + 53.5190963, + 10.0899101 + ], + [ + 53.5191768, + 10.0897507 + ], + [ + 53.5199692, + 10.0881815 + ], + [ + 53.5199755, + 10.0881691 + ], + [ + 53.5202782, + 10.0875695 + ], + [ + 53.5231246, + 10.0819325 + ], + [ + 53.5237878, + 10.0806189 + ], + [ + 53.5243829, + 10.0794479 + ], + [ + 53.5265458, + 10.0751916 + ] + ] + }, + { + "osmId": "108211012", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 147.51491003621246, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5276969, + 10.0724707 + ], + [ + 53.5269533, + 10.0739438 + ], + [ + 53.5268425, + 10.0741778 + ] + ] + }, + { + "osmId": "108211014", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 4675.510138172547, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4990739, + 10.1289449 + ], + [ + 53.4994844, + 10.1281405 + ], + [ + 53.5008111, + 10.1256686 + ], + [ + 53.5016114, + 10.1241956 + ], + [ + 53.5020694, + 10.1233088 + ], + [ + 53.5027559, + 10.1219654 + ], + [ + 53.5043652, + 10.1187863 + ], + [ + 53.5090372, + 10.1095561 + ], + [ + 53.510855, + 10.1060144 + ], + [ + 53.5120134, + 10.1037777 + ], + [ + 53.5131498, + 10.1015165 + ], + [ + 53.5137348, + 10.1003318 + ], + [ + 53.5147397, + 10.0982985 + ], + [ + 53.5148894, + 10.0979971 + ], + [ + 53.5155343, + 10.0966991 + ], + [ + 53.5157961, + 10.0961695 + ], + [ + 53.5159515, + 10.0958551 + ], + [ + 53.5161427, + 10.0954756 + ], + [ + 53.5166635, + 10.0944354 + ], + [ + 53.5168741, + 10.0940147 + ], + [ + 53.5171354, + 10.0934928 + ], + [ + 53.517496, + 10.0927908 + ], + [ + 53.5177404, + 10.0923116 + ], + [ + 53.5185868, + 10.0906521 + ], + [ + 53.5190065, + 10.0898139 + ], + [ + 53.5205599, + 10.0867115 + ], + [ + 53.5233379, + 10.0811512 + ], + [ + 53.5236772, + 10.080472 + ], + [ + 53.5262798, + 10.0752706 + ], + [ + 53.5263502, + 10.0751355 + ] + ] + }, + { + "osmId": "108211015", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 147.02488719618614, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5277491, + 10.0725963 + ], + [ + 53.5272709, + 10.0736805 + ], + [ + 53.5270743, + 10.0740689 + ], + [ + 53.5269352, + 10.0743479 + ] + ] + }, + { + "osmId": "108217818", + "name": null, + "lengthMeters": 1031.9078063128177, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5858761, + 9.7393508 + ], + [ + 53.5858737, + 9.7390194 + ], + [ + 53.5858592, + 9.7386345 + ], + [ + 53.585845, + 9.7383572 + ], + [ + 53.5856979, + 9.7369045 + ], + [ + 53.5855741, + 9.7359035 + ], + [ + 53.5854184, + 9.7345823 + ], + [ + 53.5852657, + 9.7332577 + ], + [ + 53.5851115, + 9.7318844 + ], + [ + 53.5850279, + 9.7310955 + ], + [ + 53.5849939, + 9.7303602 + ], + [ + 53.5849985, + 9.7297713 + ], + [ + 53.5850296, + 9.7291873 + ], + [ + 53.5851042, + 9.728515 + ], + [ + 53.5851274, + 9.7283475 + ], + [ + 53.5852086, + 9.7277619 + ], + [ + 53.5852665, + 9.7271946 + ], + [ + 53.5852989, + 9.7265959 + ], + [ + 53.5852899, + 9.726112 + ], + [ + 53.5852489, + 9.7255381 + ], + [ + 53.5851263, + 9.7239142 + ] + ] + }, + { + "osmId": "108217819", + "name": null, + "lengthMeters": 1007.1790823141282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5835233, + 9.7540402 + ], + [ + 53.5836649, + 9.7532734 + ], + [ + 53.5837652, + 9.7528066 + ], + [ + 53.5838565, + 9.7524421 + ], + [ + 53.5839872, + 9.7520194 + ], + [ + 53.5848676, + 9.7497103 + ], + [ + 53.5850358, + 9.7492388 + ], + [ + 53.5852029, + 9.7486793 + ], + [ + 53.5853491, + 9.748067 + ], + [ + 53.5854347, + 9.7475743 + ], + [ + 53.585448, + 9.7474772 + ], + [ + 53.5855266, + 9.7469392 + ], + [ + 53.5855789, + 9.7462442 + ], + [ + 53.5856478, + 9.7448156 + ], + [ + 53.5857105, + 9.7434309 + ], + [ + 53.5857773, + 9.7420849 + ], + [ + 53.5858283, + 9.7406463 + ], + [ + 53.5858601, + 9.7399663 + ], + [ + 53.585871, + 9.7396245 + ] + ] + }, + { + "osmId": "108218769", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 731.8760744399495, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4873253, + 10.1853577 + ], + [ + 53.4873299, + 10.1853215 + ], + [ + 53.4874788, + 10.1839781 + ], + [ + 53.4885531, + 10.1745321 + ], + [ + 53.4885578, + 10.1744912 + ] + ] + }, + { + "osmId": "108221425", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1072.6207760986158, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4878726, + 10.2015284 + ], + [ + 53.4876697, + 10.2008649 + ], + [ + 53.4876047, + 10.2006128 + ], + [ + 53.4874838, + 10.2000774 + ], + [ + 53.487305, + 10.1992786 + ], + [ + 53.4871131, + 10.1982334 + ], + [ + 53.4869579, + 10.1972151 + ], + [ + 53.486952, + 10.1971626 + ], + [ + 53.4868282, + 10.1960545 + ], + [ + 53.4867443, + 10.1950657 + ], + [ + 53.4866915, + 10.1941106 + ], + [ + 53.4866748, + 10.1929963 + ], + [ + 53.4866849, + 10.1922296 + ], + [ + 53.4867164, + 10.1914269 + ], + [ + 53.4867216, + 10.1913253 + ], + [ + 53.4867482, + 10.1908532 + ], + [ + 53.4867832, + 10.1903804 + ], + [ + 53.4868202, + 10.1899236 + ], + [ + 53.4868644, + 10.1894669 + ], + [ + 53.4869143, + 10.1889816 + ], + [ + 53.4870532, + 10.1877528 + ], + [ + 53.4872846, + 10.1857138 + ] + ] + }, + { + "osmId": "108221429", + "name": null, + "lengthMeters": 809.7467692894804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4960591, + 10.2245023 + ], + [ + 53.495952, + 10.2235371 + ], + [ + 53.4958424, + 10.2226387 + ], + [ + 53.4957034, + 10.2216889 + ], + [ + 53.4956069, + 10.2211158 + ], + [ + 53.4955053, + 10.2205651 + ], + [ + 53.4952917, + 10.2195232 + ], + [ + 53.4950309, + 10.2184321 + ], + [ + 53.4949167, + 10.2180033 + ], + [ + 53.494378, + 10.2162081 + ], + [ + 53.4940627, + 10.2152493 + ], + [ + 53.4939687, + 10.2149633 + ], + [ + 53.4936984, + 10.2142153 + ], + [ + 53.4933331, + 10.2132594 + ] + ] + }, + { + "osmId": "108221430", + "name": null, + "lengthMeters": 151.3588838576241, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.490616, + 10.207532 + ], + [ + 53.4904472, + 10.2071285 + ], + [ + 53.490358, + 10.2069208 + ], + [ + 53.4902693, + 10.2067366 + ], + [ + 53.4897705, + 10.2057411 + ] + ] + }, + { + "osmId": "108221433", + "name": null, + "lengthMeters": 83.41805809899837, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4927023, + 10.2121155 + ], + [ + 53.4929183, + 10.2125997 + ], + [ + 53.4930232, + 10.2128386 + ], + [ + 53.4931474, + 10.2131305 + ] + ] + }, + { + "osmId": "108221434", + "name": null, + "lengthMeters": 104.63975423677947, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4887996, + 10.203665 + ], + [ + 53.4885711, + 10.203133 + ], + [ + 53.4884526, + 10.2028521 + ], + [ + 53.4884012, + 10.2027244 + ], + [ + 53.4883501, + 10.2026067 + ], + [ + 53.4882516, + 10.2023793 + ] + ] + }, + { + "osmId": "108221435", + "name": null, + "lengthMeters": 88.4640178496254, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4881462, + 10.2022451 + ], + [ + 53.4882998, + 10.202626 + ], + [ + 53.4886104, + 10.2033307 + ] + ] + }, + { + "osmId": "108221441", + "name": null, + "lengthMeters": 963.3922494651022, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5074917, + 10.2503257 + ], + [ + 53.5071593, + 10.2494625 + ], + [ + 53.5068652, + 10.2486929 + ], + [ + 53.5066064, + 10.2481284 + ], + [ + 53.5062476, + 10.2474389 + ], + [ + 53.505817, + 10.2466202 + ], + [ + 53.5055633, + 10.2461591 + ], + [ + 53.5052583, + 10.245642 + ], + [ + 53.5049047, + 10.2450646 + ], + [ + 53.5045279, + 10.2444829 + ], + [ + 53.5041128, + 10.2438883 + ], + [ + 53.5035797, + 10.2432031 + ], + [ + 53.5030594, + 10.2425999 + ], + [ + 53.5025172, + 10.2419868 + ], + [ + 53.5020718, + 10.2414876 + ], + [ + 53.5014418, + 10.2407548 + ], + [ + 53.5012191, + 10.2404828 + ] + ] + }, + { + "osmId": "108221443", + "name": null, + "lengthMeters": 1170.7067718363817, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4960257, + 10.2250462 + ], + [ + 53.4960652, + 10.2253915 + ], + [ + 53.4963034, + 10.2274917 + ], + [ + 53.4964486, + 10.2284338 + ], + [ + 53.4964624, + 10.2285278 + ], + [ + 53.4965709, + 10.229203 + ], + [ + 53.4967004, + 10.2298782 + ], + [ + 53.4968489, + 10.230611 + ], + [ + 53.4970259, + 10.231363 + ], + [ + 53.4971016, + 10.2316583 + ], + [ + 53.4972448, + 10.2322174 + ], + [ + 53.4974447, + 10.2328989 + ], + [ + 53.4976997, + 10.2337309 + ], + [ + 53.4979529, + 10.2344765 + ], + [ + 53.4980176, + 10.2346482 + ], + [ + 53.4982028, + 10.2351396 + ], + [ + 53.4982156, + 10.2351773 + ], + [ + 53.4985125, + 10.2358909 + ], + [ + 53.4989256, + 10.2367869 + ], + [ + 53.4993633, + 10.2376892 + ], + [ + 53.4994246, + 10.2378122 + ], + [ + 53.499647, + 10.2382588 + ], + [ + 53.499809, + 10.2385329 + ], + [ + 53.499961, + 10.23879 + ], + [ + 53.5002066, + 10.2391836 + ], + [ + 53.5004616, + 10.2396156 + ], + [ + 53.500671, + 10.2399292 + ], + [ + 53.5007686, + 10.2400615 + ], + [ + 53.5009144, + 10.2402561 + ] + ] + }, + { + "osmId": "108221444", + "name": null, + "lengthMeters": 82.11237058652277, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4910847, + 10.208593 + ], + [ + 53.4912556, + 10.209025 + ], + [ + 53.491501, + 10.2096181 + ] + ] + }, + { + "osmId": "108221448", + "name": null, + "lengthMeters": 347.6943672564959, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4932366, + 10.2130188 + ], + [ + 53.4930942, + 10.212669 + ], + [ + 53.4926189, + 10.211602 + ], + [ + 53.4917166, + 10.2097424 + ], + [ + 53.4912975, + 10.2088983 + ] + ] + }, + { + "osmId": "108221451", + "name": null, + "lengthMeters": 156.42457042818614, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4888053, + 10.2040465 + ], + [ + 53.4888517, + 10.2041498 + ], + [ + 53.48905, + 10.2046133 + ], + [ + 53.4893851, + 10.2053623 + ], + [ + 53.4896574, + 10.2059271 + ] + ] + }, + { + "osmId": "108221457", + "name": null, + "lengthMeters": 339.5893043846324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4907655, + 10.2081469 + ], + [ + 53.4911912, + 10.2090031 + ], + [ + 53.491501, + 10.2096181 + ], + [ + 53.4916013, + 10.2098263 + ], + [ + 53.4918558, + 10.2103492 + ], + [ + 53.4923578, + 10.2113848 + ], + [ + 53.4927023, + 10.2121155 + ] + ] + }, + { + "osmId": "108221458", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 804.5705446297119, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.495968, + 10.2245324 + ], + [ + 53.4958611, + 10.2235595 + ], + [ + 53.4957339, + 10.2225463 + ], + [ + 53.4956239, + 10.2217638 + ], + [ + 53.4954188, + 10.2206194 + ], + [ + 53.4953722, + 10.2203906 + ], + [ + 53.4952881, + 10.2199247 + ], + [ + 53.4952118, + 10.2195776 + ], + [ + 53.4949529, + 10.218496 + ], + [ + 53.4946712, + 10.2175201 + ], + [ + 53.4944457, + 10.2167816 + ], + [ + 53.4943361, + 10.2164225 + ], + [ + 53.49425, + 10.2161775 + ], + [ + 53.4940943, + 10.2157345 + ], + [ + 53.4937764, + 10.2148705 + ], + [ + 53.4935988, + 10.2144144 + ], + [ + 53.4933371, + 10.213757 + ], + [ + 53.4932017, + 10.2134224 + ] + ] + }, + { + "osmId": "108221459", + "name": null, + "lengthMeters": 967.6282391302119, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5010888, + 10.2404888 + ], + [ + 53.5011686, + 10.2405985 + ], + [ + 53.5014361, + 10.2409404 + ], + [ + 53.5017407, + 10.2413212 + ], + [ + 53.5024887, + 10.24215 + ], + [ + 53.5027262, + 10.242393 + ], + [ + 53.5027657, + 10.2424382 + ], + [ + 53.5032977, + 10.243048 + ], + [ + 53.503795, + 10.2436728 + ], + [ + 53.5040333, + 10.2439744 + ], + [ + 53.5045664, + 10.2447328 + ], + [ + 53.5049482, + 10.2453146 + ], + [ + 53.5052686, + 10.2458532 + ], + [ + 53.5055172, + 10.2462755 + ], + [ + 53.5056882, + 10.2465782 + ], + [ + 53.5057606, + 10.2467064 + ], + [ + 53.5061451, + 10.2474605 + ], + [ + 53.50645, + 10.2480594 + ], + [ + 53.5067242, + 10.2486325 + ], + [ + 53.5070849, + 10.2495561 + ], + [ + 53.5073723, + 10.2503201 + ], + [ + 53.5073902, + 10.2503677 + ] + ] + }, + { + "osmId": "108221460", + "name": null, + "lengthMeters": 83.48309932151028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4902668, + 10.2068323 + ], + [ + 53.4904936, + 10.20736 + ], + [ + 53.4907186, + 10.2078398 + ] + ] + }, + { + "osmId": "108221462", + "name": null, + "lengthMeters": 1158.70602905976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5009309, + 10.2400807 + ], + [ + 53.5007757, + 10.2398611 + ], + [ + 53.500661, + 10.2396987 + ], + [ + 53.5005073, + 10.2394812 + ], + [ + 53.5002522, + 10.2390844 + ], + [ + 53.5000029, + 10.2386716 + ], + [ + 53.499706, + 10.2381884 + ], + [ + 53.4994052, + 10.2376061 + ], + [ + 53.4989674, + 10.2367133 + ], + [ + 53.4985677, + 10.2358141 + ], + [ + 53.4982746, + 10.2351133 + ], + [ + 53.4980936, + 10.2346094 + ], + [ + 53.4980252, + 10.2344189 + ], + [ + 53.4977549, + 10.2336573 + ], + [ + 53.4975018, + 10.232835 + ], + [ + 53.4973133, + 10.2321694 + ], + [ + 53.4970906, + 10.2313214 + ], + [ + 53.4969117, + 10.2305566 + ], + [ + 53.4967632, + 10.2298174 + ], + [ + 53.4966414, + 10.229155 + ], + [ + 53.4965329, + 10.2284798 + ], + [ + 53.4963825, + 10.2274399 + ], + [ + 53.4961693, + 10.2255455 + ], + [ + 53.496129, + 10.2251887 + ], + [ + 53.4961156, + 10.2250222 + ] + ] + }, + { + "osmId": "108221464", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 329.617843442906, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.490623, + 10.2079759 + ], + [ + 53.4905646, + 10.2078589 + ], + [ + 53.4903607, + 10.2074499 + ], + [ + 53.4902601, + 10.2072437 + ], + [ + 53.4893487, + 10.2054118 + ], + [ + 53.4890899, + 10.2048534 + ], + [ + 53.4889542, + 10.2045513 + ], + [ + 53.4887596, + 10.2041029 + ] + ] + }, + { + "osmId": "108221893", + "name": null, + "lengthMeters": 119.17146169089915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4881462, + 10.2022451 + ], + [ + 53.4883043, + 10.2027263 + ], + [ + 53.4886994, + 10.2037872 + ] + ] + }, + { + "osmId": "108221895", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 121.96993666196025, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4886567, + 10.203839 + ], + [ + 53.4884784, + 10.2033886 + ], + [ + 53.4883014, + 10.2029031 + ], + [ + 53.4880894, + 10.2022623 + ] + ] + }, + { + "osmId": "108222750", + "name": null, + "lengthMeters": 1426.7501311011067, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5136441, + 10.270016 + ], + [ + 53.5133895, + 10.2695879 + ], + [ + 53.513014, + 10.2689166 + ], + [ + 53.5126472, + 10.2682126 + ], + [ + 53.5121227, + 10.2671425 + ], + [ + 53.5119891, + 10.26687 + ], + [ + 53.5117172, + 10.2663257 + ], + [ + 53.5114734, + 10.2657233 + ], + [ + 53.5112154, + 10.2649744 + ], + [ + 53.5110396, + 10.2644642 + ], + [ + 53.5109783, + 10.2642652 + ], + [ + 53.5106962, + 10.26335 + ], + [ + 53.5103218, + 10.2620596 + ], + [ + 53.5102521, + 10.2617732 + ], + [ + 53.5099072, + 10.2603559 + ], + [ + 53.5097826, + 10.2597503 + ], + [ + 53.5096855, + 10.2592773 + ], + [ + 53.5096504, + 10.2591067 + ], + [ + 53.5094648, + 10.258171 + ], + [ + 53.5092536, + 10.257005 + ], + [ + 53.5091331, + 10.2563242 + ], + [ + 53.5089543, + 10.2553634 + ], + [ + 53.508759, + 10.2544885 + ], + [ + 53.5085284, + 10.2535707 + ], + [ + 53.5081743, + 10.2523529 + ], + [ + 53.507979, + 10.251735 + ], + [ + 53.5077724, + 10.2511078 + ] + ] + }, + { + "osmId": "108222752", + "name": null, + "lengthMeters": 1430.8280215786901, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5135902, + 10.2701249 + ], + [ + 53.5135049, + 10.269983 + ], + [ + 53.5131953, + 10.2694681 + ], + [ + 53.5130118, + 10.2691221 + ], + [ + 53.512589, + 10.2683251 + ], + [ + 53.5122548, + 10.2676706 + ], + [ + 53.5122396, + 10.267638 + ], + [ + 53.5119222, + 10.2669897 + ], + [ + 53.5116546, + 10.2664055 + ], + [ + 53.5114108, + 10.2657959 + ], + [ + 53.5111907, + 10.2651935 + ], + [ + 53.5111581, + 10.2651016 + ], + [ + 53.5109642, + 10.2645545 + ], + [ + 53.5106149, + 10.2634229 + ], + [ + 53.5102965, + 10.2623629 + ], + [ + 53.5102224, + 10.262116 + ], + [ + 53.5100406, + 10.2614332 + ], + [ + 53.5098242, + 10.2605118 + ], + [ + 53.5098017, + 10.2604158 + ], + [ + 53.5096198, + 10.2595348 + ], + [ + 53.509544, + 10.2591678 + ], + [ + 53.5090973, + 10.256893 + ], + [ + 53.5089307, + 10.2560527 + ], + [ + 53.5087026, + 10.2550013 + ], + [ + 53.5084395, + 10.2539205 + ], + [ + 53.5083844, + 10.2537172 + ], + [ + 53.508003, + 10.252297 + ], + [ + 53.5078486, + 10.2517572 + ], + [ + 53.5076682, + 10.2511774 + ] + ] + }, + { + "osmId": "108224601", + "name": null, + "lengthMeters": 1167.8104618191296, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5222115, + 10.2806927 + ], + [ + 53.5217758, + 10.2798389 + ], + [ + 53.5216032, + 10.2795087 + ], + [ + 53.5213681, + 10.2790623 + ], + [ + 53.5213222, + 10.278984 + ], + [ + 53.5210596, + 10.2785362 + ], + [ + 53.5208309, + 10.2781878 + ], + [ + 53.5207151, + 10.2780272 + ], + [ + 53.5205353, + 10.2777778 + ], + [ + 53.5201886, + 10.2773329 + ], + [ + 53.5201437, + 10.277287 + ], + [ + 53.5199917, + 10.2771065 + ], + [ + 53.5195213, + 10.2765876 + ], + [ + 53.5191049, + 10.2761267 + ], + [ + 53.5185116, + 10.275499 + ], + [ + 53.5161024, + 10.2731737 + ], + [ + 53.5159765, + 10.273046 + ], + [ + 53.5157565, + 10.2728283 + ], + [ + 53.5154436, + 10.272469 + ], + [ + 53.5146477, + 10.2714472 + ], + [ + 53.5146219, + 10.271414 + ], + [ + 53.5143497, + 10.2710756 + ], + [ + 53.5141274, + 10.2707563 + ], + [ + 53.5138102, + 10.2702773 + ] + ] + }, + { + "osmId": "108224603", + "name": null, + "lengthMeters": 1598.8379297038412, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5243682, + 10.2861731 + ], + [ + 53.5241761, + 10.285576 + ], + [ + 53.5238736, + 10.2847042 + ], + [ + 53.5235167, + 10.283747 + ], + [ + 53.5228782, + 10.2822157 + ], + [ + 53.5227207, + 10.2818782 + ], + [ + 53.522464, + 10.281323 + ], + [ + 53.5221835, + 10.2807969 + ], + [ + 53.5218815, + 10.2802308 + ], + [ + 53.5215622, + 10.2796901 + ], + [ + 53.5209754, + 10.2787575 + ], + [ + 53.5205051, + 10.2780572 + ], + [ + 53.5202353, + 10.2777096 + ], + [ + 53.5199334, + 10.2773206 + ], + [ + 53.5196943, + 10.2770361 + ], + [ + 53.5195861, + 10.2769033 + ], + [ + 53.5190704, + 10.2763191 + ], + [ + 53.5188115, + 10.2760288 + ], + [ + 53.5184469, + 10.2756441 + ], + [ + 53.5180478, + 10.2752305 + ], + [ + 53.5176737, + 10.2748751 + ], + [ + 53.5167835, + 10.2740294 + ], + [ + 53.5163325, + 10.2735722 + ], + [ + 53.5160218, + 10.2732801 + ], + [ + 53.5159657, + 10.2732274 + ], + [ + 53.5157111, + 10.2729589 + ], + [ + 53.515381, + 10.2725924 + ], + [ + 53.5146453, + 10.2716562 + ], + [ + 53.514448, + 10.271392 + ], + [ + 53.5142957, + 10.2711881 + ], + [ + 53.5140907, + 10.2709014 + ], + [ + 53.5137649, + 10.2703862 + ] + ] + }, + { + "osmId": "108226374", + "name": null, + "lengthMeters": 121.13982919375711, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5656292, + 9.8220698 + ], + [ + 53.5656279, + 9.8217229 + ], + [ + 53.5656239, + 9.8215514 + ], + [ + 53.5656181, + 9.821368 + ], + [ + 53.5656106, + 9.8211906 + ], + [ + 53.5655876, + 9.8207574 + ], + [ + 53.5655781, + 9.8205917 + ], + [ + 53.565565, + 9.8204195 + ], + [ + 53.5655483, + 9.8202424 + ] + ] + }, + { + "osmId": "108226375", + "name": null, + "lengthMeters": 98.26555595435475, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5654578, + 9.8198205 + ], + [ + 53.5654913, + 9.820103 + ], + [ + 53.5655098, + 9.8202722 + ], + [ + 53.5655266, + 9.8204681 + ], + [ + 53.5655484, + 9.8207603 + ], + [ + 53.5655616, + 9.8209575 + ], + [ + 53.5655714, + 9.8211117 + ], + [ + 53.5655787, + 9.8212932 + ] + ] + }, + { + "osmId": "108226984", + "name": null, + "lengthMeters": 131.08358188202766, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5243682, + 10.2861731 + ], + [ + 53.5246201, + 10.287063 + ], + [ + 53.5248558, + 10.2879782 + ] + ] + }, + { + "osmId": "108226987", + "name": null, + "lengthMeters": 722.2370833372551, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5248558, + 10.2879782 + ], + [ + 53.5251717, + 10.2892638 + ], + [ + 53.5255316, + 10.2907184 + ], + [ + 53.5259914, + 10.2925772 + ], + [ + 53.526301, + 10.2938504 + ], + [ + 53.5263743, + 10.2941516 + ], + [ + 53.526815, + 10.2959421 + ], + [ + 53.5268972, + 10.296276 + ], + [ + 53.5273371, + 10.2980758 + ] + ] + }, + { + "osmId": "108226988", + "name": null, + "lengthMeters": 81.77900018336356, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5291413, + 10.307164 + ], + [ + 53.5292854, + 10.3083773 + ] + ] + }, + { + "osmId": "108226990", + "name": null, + "lengthMeters": 95.73347924549945, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5297954, + 10.3123811 + ], + [ + 53.5297216, + 10.3117136 + ], + [ + 53.5296386, + 10.3109569 + ] + ] + }, + { + "osmId": "108438273", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1976.6633398791178, + "maxSpeedKph": 155.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3885022, + 9.9512663 + ], + [ + 53.3885892, + 9.9516034 + ], + [ + 53.3891156, + 9.9538677 + ], + [ + 53.38972, + 9.956438 + ], + [ + 53.3899303, + 9.9572423 + ], + [ + 53.3901863, + 9.9580953 + ], + [ + 53.390319, + 9.9585029 + ], + [ + 53.3904554, + 9.9589016 + ], + [ + 53.3908053, + 9.9598561 + ], + [ + 53.3910172, + 9.9603845 + ], + [ + 53.3912162, + 9.960863 + ], + [ + 53.3916506, + 9.9617825 + ], + [ + 53.391821, + 9.9621306 + ], + [ + 53.3920594, + 9.9625814 + ], + [ + 53.3923248, + 9.9630426 + ], + [ + 53.3925824, + 9.9634659 + ], + [ + 53.3928791, + 9.9639063 + ], + [ + 53.3930853, + 9.9641789 + ], + [ + 53.3934853, + 9.9647069 + ], + [ + 53.3939028, + 9.9651941 + ], + [ + 53.3942258, + 9.9655344 + ], + [ + 53.3945076, + 9.9658284 + ], + [ + 53.395829, + 9.9671408 + ], + [ + 53.3961713, + 9.9674724 + ], + [ + 53.3966413, + 9.9679302 + ], + [ + 53.3966702, + 9.9679584 + ], + [ + 53.3970284, + 9.968294 + ], + [ + 53.3971536, + 9.9684063 + ], + [ + 53.397887, + 9.969084 + ], + [ + 53.3992309, + 9.9703503 + ], + [ + 53.4005691, + 9.9715633 + ] + ] + }, + { + "osmId": "108439377", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1448.7467240589535, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4098868, + 10.0128113 + ], + [ + 53.4103779, + 10.0136815 + ], + [ + 53.4108576, + 10.0144093 + ], + [ + 53.4113075, + 10.0150253 + ], + [ + 53.4116816, + 10.0155066 + ], + [ + 53.4120189, + 10.015884 + ], + [ + 53.4125491, + 10.0164038 + ], + [ + 53.413054, + 10.0168427 + ], + [ + 53.4134694, + 10.01717 + ], + [ + 53.413855, + 10.0174242 + ], + [ + 53.4144241, + 10.0177668 + ], + [ + 53.4152457, + 10.0181326 + ], + [ + 53.415762, + 10.0183098 + ], + [ + 53.4164092, + 10.0184561 + ], + [ + 53.4172055, + 10.0185254 + ], + [ + 53.4174433, + 10.0185238 + ], + [ + 53.417909, + 10.0185249 + ], + [ + 53.4185066, + 10.0184753 + ], + [ + 53.4201427, + 10.0182019 + ], + [ + 53.4219104, + 10.0179113 + ] + ] + }, + { + "osmId": "108439379", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 310.97755480821525, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4090445, + 9.9856822 + ], + [ + 53.4090559, + 9.986201 + ], + [ + 53.4090513, + 9.9872021 + ], + [ + 53.4090008, + 9.9880993 + ], + [ + 53.4088654, + 9.9893237 + ], + [ + 53.4087135, + 9.9903164 + ] + ] + }, + { + "osmId": "108439383", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 98.75136754239438, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4081593, + 9.9940446 + ], + [ + 53.4079448, + 9.9954903 + ] + ] + }, + { + "osmId": "108439387", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1326.854661398714, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4220372, + 10.017893 + ], + [ + 53.423882, + 10.0176035 + ], + [ + 53.4255552, + 10.0173425 + ], + [ + 53.4264212, + 10.0172074 + ], + [ + 53.4265241, + 10.0171899 + ], + [ + 53.4289699, + 10.016787 + ], + [ + 53.4320438, + 10.0162383 + ], + [ + 53.4329384, + 10.0160832 + ], + [ + 53.4332844, + 10.0160233 + ], + [ + 53.4336179, + 10.0159539 + ], + [ + 53.4339051, + 10.0158892 + ], + [ + 53.4339095, + 10.015888 + ] + ] + }, + { + "osmId": "108439394", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 1156.746013277832, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.407844, + 9.9961775 + ], + [ + 53.4075397, + 9.9983645 + ], + [ + 53.4074071, + 9.9996348 + ], + [ + 53.4073482, + 10.0009674 + ], + [ + 53.4073367, + 10.0023805 + ], + [ + 53.4074125, + 10.0036396 + ], + [ + 53.4075525, + 10.005045 + ], + [ + 53.4076042, + 10.0053743 + ], + [ + 53.4077591, + 10.0063619 + ], + [ + 53.4078259, + 10.006694 + ], + [ + 53.4079381, + 10.0072475 + ], + [ + 53.4081217, + 10.0080599 + ], + [ + 53.4082893, + 10.0087029 + ], + [ + 53.4084729, + 10.0093151 + ], + [ + 53.4086818, + 10.0099736 + ], + [ + 53.4089365, + 10.010682 + ], + [ + 53.4091661, + 10.0112558 + ], + [ + 53.4097674, + 10.0125726 + ] + ] + }, + { + "osmId": "108439397", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 279.41142719159063, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4339095, + 10.015888 + ], + [ + 53.4339714, + 10.0158712 + ], + [ + 53.4347669, + 10.0156231 + ], + [ + 53.4351394, + 10.0154769 + ], + [ + 53.4355632, + 10.0152925 + ], + [ + 53.4356277, + 10.0152573 + ], + [ + 53.4360648, + 10.0150188 + ], + [ + 53.4363385, + 10.0148423 + ] + ] + }, + { + "osmId": "108439405", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 372.35890558655876, + "maxSpeedKph": 155.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4006811, + 9.9716667 + ], + [ + 53.4024476, + 9.9733758 + ], + [ + 53.4029127, + 9.9738343 + ], + [ + 53.4035779, + 9.9744845 + ] + ] + }, + { + "osmId": "108487779", + "name": null, + "lengthMeters": 90.93039829917616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6264812, + 10.0338165 + ], + [ + 53.6262922, + 10.0337426 + ], + [ + 53.6261169, + 10.0336665 + ], + [ + 53.625995, + 10.0336062 + ], + [ + 53.6258694, + 10.033547 + ], + [ + 53.6256891, + 10.0334751 + ] + ] + }, + { + "osmId": "108729982", + "name": null, + "lengthMeters": 139.374281018264, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5542207, + 10.005199 + ], + [ + 53.5541771, + 10.0052309 + ], + [ + 53.553956, + 10.0053921 + ], + [ + 53.5539366, + 10.0054026 + ], + [ + 53.553913, + 10.0054156 + ], + [ + 53.5538901, + 10.0054272 + ], + [ + 53.5537715, + 10.0054912 + ], + [ + 53.5536233, + 10.0055729 + ], + [ + 53.5533941, + 10.0056992 + ], + [ + 53.5530962, + 10.0058516 + ], + [ + 53.5530362, + 10.0058828 + ] + ] + }, + { + "osmId": "108729987", + "name": null, + "lengthMeters": 126.18002218178441, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5551748, + 10.0041703 + ], + [ + 53.555041, + 10.0043479 + ], + [ + 53.5549063, + 10.004508 + ], + [ + 53.5547053, + 10.004727 + ], + [ + 53.5545211, + 10.0049145 + ], + [ + 53.5543692, + 10.0050499 + ], + [ + 53.5542207, + 10.005199 + ] + ] + }, + { + "osmId": "108781043", + "name": null, + "lengthMeters": 158.0469912266636, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4738681, + 9.8573879 + ], + [ + 53.4738382, + 9.8581175 + ], + [ + 53.4738259, + 9.8585443 + ], + [ + 53.4738012, + 9.859233 + ], + [ + 53.4737914, + 9.8595078 + ], + [ + 53.4737818, + 9.8597715 + ] + ] + }, + { + "osmId": "108781044", + "name": null, + "lengthMeters": 307.8328042278596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4742001, + 9.8503815 + ], + [ + 53.4742493, + 9.8491061 + ], + [ + 53.4743032, + 9.847694 + ], + [ + 53.474358, + 9.8463378 + ], + [ + 53.4743733, + 9.8457394 + ] + ] + }, + { + "osmId": "108781048", + "name": "Niederelbebahn", + "lengthMeters": 148.98747131198687, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4739032, + 9.8598006 + ], + [ + 53.4739548, + 9.8587176 + ], + [ + 53.4739912, + 9.8578438 + ], + [ + 53.4740011, + 9.8575555 + ] + ] + }, + { + "osmId": "108781050", + "name": "Niederelbebahn", + "lengthMeters": 843.9786559590484, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.474038, + 9.8567267 + ], + [ + 53.4741503, + 9.8544866 + ], + [ + 53.474188, + 9.8536128 + ], + [ + 53.4742363, + 9.8523652 + ], + [ + 53.474243, + 9.8521939 + ], + [ + 53.4743572, + 9.8491159 + ], + [ + 53.4744272, + 9.8466794 + ], + [ + 53.4744722, + 9.8453196 + ], + [ + 53.474524, + 9.8440012 + ] + ] + }, + { + "osmId": "108782308", + "name": null, + "lengthMeters": 351.0078429644975, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4743887, + 9.8394674 + ], + [ + 53.4743812, + 9.839674 + ], + [ + 53.4743748, + 9.8398566 + ], + [ + 53.474372, + 9.8399265 + ], + [ + 53.4743299, + 9.8409862 + ], + [ + 53.4743291, + 9.8410074 + ], + [ + 53.4743097, + 9.8415526 + ], + [ + 53.4742987, + 9.841914 + ], + [ + 53.4742953, + 9.842024 + ], + [ + 53.4742924, + 9.8421186 + ], + [ + 53.474283, + 9.8425966 + ], + [ + 53.4742746, + 9.8430797 + ], + [ + 53.4742604, + 9.8439567 + ], + [ + 53.4742461, + 9.844765 + ] + ] + }, + { + "osmId": "108782320", + "name": null, + "lengthMeters": 350.6152170486063, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4748357, + 9.8337462 + ], + [ + 53.4748104, + 9.8344904 + ], + [ + 53.4747609, + 9.835364 + ], + [ + 53.4747466, + 9.8355597 + ], + [ + 53.47473, + 9.8357859 + ], + [ + 53.4746991, + 9.836151 + ], + [ + 53.4746742, + 9.8363754 + ], + [ + 53.4746329, + 9.8367312 + ], + [ + 53.4746304, + 9.8367505 + ], + [ + 53.4744869, + 9.8378657 + ], + [ + 53.47445, + 9.8381906 + ], + [ + 53.4744304, + 9.8385988 + ], + [ + 53.4744085, + 9.8389863 + ] + ] + }, + { + "osmId": "109444375", + "name": null, + "lengthMeters": 487.82999771829344, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5298995, + 13.3908322 + ], + [ + 52.5292258, + 13.3915731 + ], + [ + 52.5290442, + 13.3917613 + ], + [ + 52.5288593, + 13.3919435 + ], + [ + 52.5286782, + 13.3921027 + ], + [ + 52.5284648, + 13.3922566 + ], + [ + 52.5278422, + 13.3926358 + ], + [ + 52.5275018, + 13.3928453 + ], + [ + 52.5270743, + 13.3931087 + ], + [ + 52.5269503, + 13.3931883 + ], + [ + 52.526801, + 13.3932869 + ], + [ + 52.526714, + 13.3933277 + ], + [ + 52.5266224, + 13.3933603 + ], + [ + 52.5264942, + 13.3933926 + ], + [ + 52.5264203, + 13.3934005 + ], + [ + 52.5263463, + 13.393404 + ], + [ + 52.5262536, + 13.3934025 + ], + [ + 52.5261631, + 13.39339 + ], + [ + 52.5260696, + 13.3933694 + ], + [ + 52.5260247, + 13.3933562 + ], + [ + 52.5259812, + 13.3933414 + ], + [ + 52.5258842, + 13.3933012 + ] + ] + }, + { + "osmId": "109692715", + "name": null, + "lengthMeters": 558.2995706762608, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4106196, + 13.2775004 + ], + [ + 52.4107035, + 13.2779074 + ], + [ + 52.4108031, + 13.2781898 + ], + [ + 52.4109264, + 13.2784475 + ], + [ + 52.4110715, + 13.2786966 + ], + [ + 52.4123945, + 13.2809656 + ], + [ + 52.4125688, + 13.2812656 + ], + [ + 52.4128516, + 13.2817627 + ], + [ + 52.4132396, + 13.2824971 + ], + [ + 52.41336, + 13.2826868 + ], + [ + 52.41346, + 13.282826 + ], + [ + 52.4135844, + 13.2829485 + ], + [ + 52.4137934, + 13.2831335 + ], + [ + 52.4140366, + 13.2834059 + ] + ] + }, + { + "osmId": "109763966", + "name": null, + "lengthMeters": 430.5103713866937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061691, + 13.4702932 + ], + [ + 52.5061384, + 13.4703443 + ], + [ + 52.5061066, + 13.470385 + ], + [ + 52.5056145, + 13.4708622 + ], + [ + 52.5055751, + 13.4709007 + ], + [ + 52.5052408, + 13.4712274 + ], + [ + 52.5051115, + 13.4713453 + ], + [ + 52.5050132, + 13.4714356 + ], + [ + 52.5047041, + 13.4717228 + ], + [ + 52.504092, + 13.4722463 + ], + [ + 52.5039937, + 13.4723265 + ], + [ + 52.5035175, + 13.4727155 + ], + [ + 52.5034317, + 13.4727837 + ], + [ + 52.5033947, + 13.4728134 + ], + [ + 52.5033651, + 13.4728415 + ], + [ + 52.503325, + 13.4728818 + ], + [ + 52.5032818, + 13.4729259 + ], + [ + 52.5032446, + 13.4729719 + ], + [ + 52.5032177, + 13.4730088 + ], + [ + 52.5031956, + 13.4730438 + ], + [ + 52.5031796, + 13.4730737 + ], + [ + 52.5031661, + 13.4731029 + ], + [ + 52.5031557, + 13.473129 + ], + [ + 52.503143, + 13.4731679 + ], + [ + 52.5031283, + 13.4732181 + ], + [ + 52.5030963, + 13.4733711 + ], + [ + 52.5030889, + 13.4734074 + ], + [ + 52.5030792, + 13.4734607 + ], + [ + 52.5030748, + 13.4734969 + ], + [ + 52.5030718, + 13.473531 + ], + [ + 52.5030697, + 13.4735618 + ], + [ + 52.5030677, + 13.4735884 + ], + [ + 52.503064, + 13.4736236 + ], + [ + 52.5030481, + 13.4737372 + ] + ] + }, + { + "osmId": "110143432", + "name": null, + "lengthMeters": 483.5837769611381, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494602, + 13.4026351 + ], + [ + 52.5495817, + 13.4049744 + ], + [ + 52.5495905, + 13.4051402 + ], + [ + 52.5496709, + 13.4066592 + ], + [ + 52.5497007, + 13.4072948 + ], + [ + 52.549716, + 13.4077888 + ], + [ + 52.5497202, + 13.4080202 + ], + [ + 52.5497241, + 13.408444 + ], + [ + 52.5497221, + 13.4087665 + ], + [ + 52.5497184, + 13.4091004 + ], + [ + 52.5497073, + 13.4094343 + ], + [ + 52.5496941, + 13.4097683 + ] + ] + }, + { + "osmId": "110313999", + "name": null, + "lengthMeters": 141.31973111593953, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5300171, + 10.3144837 + ], + [ + 53.5299847, + 10.3139439 + ], + [ + 53.5299658, + 10.3137358 + ], + [ + 53.5299519, + 10.3135827 + ], + [ + 53.5299109, + 10.3132392 + ], + [ + 53.5298733, + 10.3129544 + ], + [ + 53.5297998, + 10.3124191 + ], + [ + 53.5297954, + 10.3123811 + ] + ] + }, + { + "osmId": "110314000", + "name": null, + "lengthMeters": 193.0216466537907, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.529966, + 10.3164201 + ], + [ + 53.5299702, + 10.3165798 + ], + [ + 53.5299727, + 10.3166454 + ], + [ + 53.5299804, + 10.3170925 + ], + [ + 53.5299907, + 10.317788 + ], + [ + 53.5299809, + 10.3183183 + ], + [ + 53.5299767, + 10.318843 + ], + [ + 53.5299666, + 10.3193392 + ] + ] + }, + { + "osmId": "110314008", + "name": null, + "lengthMeters": 239.12132735263023, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5296386, + 10.3109569 + ], + [ + 53.5296968, + 10.3117129 + ], + [ + 53.5297449, + 10.3124187 + ], + [ + 53.5297712, + 10.3128106 + ], + [ + 53.5298002, + 10.3131679 + ], + [ + 53.5298289, + 10.3135717 + ], + [ + 53.5298593, + 10.3139858 + ], + [ + 53.5298906, + 10.3145022 + ], + [ + 53.5298925, + 10.3145492 + ] + ] + }, + { + "osmId": "110389117", + "name": "U3", + "lengthMeters": 129.95188894105033, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4506531, + 13.2809517 + ], + [ + 52.4510332, + 13.281851 + ], + [ + 52.4513325, + 13.2825117 + ] + ] + }, + { + "osmId": "110389118", + "name": "U3", + "lengthMeters": 129.75190069878514, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4513873, + 13.2824452 + ], + [ + 52.4509977, + 13.2814971 + ], + [ + 52.4507255, + 13.2808684 + ] + ] + }, + { + "osmId": "110389119", + "name": "U3", + "lengthMeters": 753.7435901962917, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4514574, + 13.2827897 + ], + [ + 52.4515896, + 13.2830681 + ], + [ + 52.4517041, + 13.2833103 + ], + [ + 52.4520432, + 13.2841155 + ], + [ + 52.4522294, + 13.2845249 + ], + [ + 52.4523319, + 13.2847427 + ], + [ + 52.4524365, + 13.2849323 + ], + [ + 52.4525457, + 13.2851218 + ], + [ + 52.4526518, + 13.2852839 + ], + [ + 52.4527053, + 13.2853629 + ], + [ + 52.4527594, + 13.2854394 + ], + [ + 52.4528413, + 13.2855492 + ], + [ + 52.4529273, + 13.2856582 + ], + [ + 52.4530048, + 13.2857496 + ], + [ + 52.4530836, + 13.2858384 + ], + [ + 52.4533507, + 13.2860989 + ], + [ + 52.4543544, + 13.2869972 + ], + [ + 52.4563836, + 13.2888185 + ], + [ + 52.4566841, + 13.2891215 + ], + [ + 52.4568299, + 13.2892743 + ] + ] + }, + { + "osmId": "110553273", + "name": "U3", + "lengthMeters": 841.1492906740036, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4581903, + 13.2904421 + ], + [ + 52.4584318, + 13.2906309 + ], + [ + 52.4585987, + 13.2907386 + ], + [ + 52.4587499, + 13.2908117 + ], + [ + 52.4617783, + 13.2921394 + ], + [ + 52.4619884, + 13.2922694 + ], + [ + 52.4621903, + 13.2924219 + ], + [ + 52.4625461, + 13.2927366 + ], + [ + 52.4628401, + 13.293079 + ], + [ + 52.4631058, + 13.2934686 + ], + [ + 52.463323, + 13.2938356 + ], + [ + 52.46355, + 13.2943291 + ], + [ + 52.4636902, + 13.2947123 + ], + [ + 52.4638569, + 13.2952244 + ], + [ + 52.4641373, + 13.2960006 + ], + [ + 52.4643416, + 13.2965526 + ] + ] + }, + { + "osmId": "110553274", + "name": "U3", + "lengthMeters": 840.486628153197, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.464418, + 13.2964582 + ], + [ + 52.4642256, + 13.2959227 + ], + [ + 52.4639457, + 13.2951491 + ], + [ + 52.4637321, + 13.2946753 + ], + [ + 52.4635766, + 13.294291 + ], + [ + 52.4633474, + 13.2938017 + ], + [ + 52.4631311, + 13.2934303 + ], + [ + 52.4628639, + 13.2930543 + ], + [ + 52.4625616, + 13.292705 + ], + [ + 52.4621965, + 13.2923788 + ], + [ + 52.4619924, + 13.2922233 + ], + [ + 52.4617855, + 13.2920948 + ], + [ + 52.4587337, + 13.290759 + ], + [ + 52.4586003, + 13.2906886 + ], + [ + 52.4584369, + 13.2905807 + ], + [ + 52.4582175, + 13.2904048 + ] + ] + }, + { + "osmId": "110553280", + "name": "U3", + "lengthMeters": 103.27296656018893, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568299, + 13.2892743 + ], + [ + 52.457005, + 13.289444 + ], + [ + 52.457393, + 13.2897787 + ], + [ + 52.457446, + 13.2898257 + ], + [ + 52.457549, + 13.289916 + ], + [ + 52.4576455, + 13.2900028 + ] + ] + }, + { + "osmId": "110553281", + "name": "U3", + "lengthMeters": 717.4642511569638, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565927, + 13.2889428 + ], + [ + 52.4563959, + 13.288781 + ], + [ + 52.4533728, + 13.2860674 + ], + [ + 52.453109, + 13.2858078 + ], + [ + 52.4530276, + 13.2857148 + ], + [ + 52.4529467, + 13.2856174 + ], + [ + 52.4528591, + 13.2855075 + ], + [ + 52.4527801, + 13.2854023 + ], + [ + 52.4527267, + 13.2853268 + ], + [ + 52.4526742, + 13.2852472 + ], + [ + 52.4525674, + 13.2850831 + ], + [ + 52.4524597, + 13.2849019 + ], + [ + 52.4523575, + 13.2847144 + ], + [ + 52.4520627, + 13.2840879 + ], + [ + 52.4517194, + 13.2832709 + ], + [ + 52.4516275, + 13.2830324 + ], + [ + 52.4515195, + 13.2827325 + ] + ] + }, + { + "osmId": "110800148", + "name": null, + "lengthMeters": 89.31949909268215, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4175901, + 13.5892617 + ], + [ + 52.4174239, + 13.5892952 + ], + [ + 52.4173416, + 13.5892462 + ], + [ + 52.4172851, + 13.5891654 + ], + [ + 52.4169658, + 13.5885926 + ] + ] + }, + { + "osmId": "112455340", + "name": null, + "lengthMeters": 129.0067074648383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1225389, + 11.6426432 + ], + [ + 48.1224344, + 11.6425981 + ], + [ + 48.1223792, + 11.6425757 + ], + [ + 48.1223405, + 11.642559 + ], + [ + 48.1222963, + 11.6425395 + ], + [ + 48.1221971, + 11.6424822 + ], + [ + 48.1220169, + 11.642375 + ], + [ + 48.1219613, + 11.642342 + ], + [ + 48.1218164, + 11.6422543 + ], + [ + 48.1217977, + 11.6422391 + ], + [ + 48.1217781, + 11.6422205 + ], + [ + 48.1217672, + 11.6422087 + ], + [ + 48.1217555, + 11.6421953 + ], + [ + 48.1217346, + 11.6421627 + ], + [ + 48.1217164, + 11.6421253 + ], + [ + 48.1217009, + 11.6420822 + ], + [ + 48.1216951, + 11.6420619 + ], + [ + 48.1216878, + 11.642028 + ], + [ + 48.1216837, + 11.6419967 + ], + [ + 48.1216803, + 11.6419491 + ], + [ + 48.1216825, + 11.6419009 + ], + [ + 48.1216858, + 11.6418758 + ], + [ + 48.1216899, + 11.6418516 + ], + [ + 48.1217018, + 11.6418027 + ], + [ + 48.1217153, + 11.6417581 + ] + ] + }, + { + "osmId": "112782940", + "name": null, + "lengthMeters": 372.56078075141556, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5448022, + 13.5922659 + ], + [ + 52.5447344, + 13.5927651 + ], + [ + 52.5447143, + 13.5929128 + ], + [ + 52.544596, + 13.5937781 + ], + [ + 52.5443896, + 13.5953045 + ], + [ + 52.5441635, + 13.5969357 + ], + [ + 52.5440697, + 13.597642 + ] + ] + }, + { + "osmId": "112782943", + "name": null, + "lengthMeters": 415.4996767021323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5487951, + 13.586973 + ], + [ + 52.5486256, + 13.5869065 + ], + [ + 52.5485098, + 13.5868662 + ], + [ + 52.5478225, + 13.5866163 + ], + [ + 52.5464403, + 13.5861095 + ], + [ + 52.5461566, + 13.5859975 + ], + [ + 52.5460963, + 13.5859871 + ], + [ + 52.5460444, + 13.5859857 + ], + [ + 52.5460129, + 13.5859917 + ], + [ + 52.5459508, + 13.5860023 + ], + [ + 52.5459048, + 13.5860199 + ], + [ + 52.5458639, + 13.5860438 + ], + [ + 52.5458243, + 13.5860701 + ], + [ + 52.5457779, + 13.5861133 + ], + [ + 52.5457302, + 13.5861707 + ], + [ + 52.5457039, + 13.58621 + ], + [ + 52.5456998, + 13.5862169 + ], + [ + 52.5456387, + 13.5863341 + ], + [ + 52.5455986, + 13.5864739 + ], + [ + 52.5455776, + 13.5865744 + ], + [ + 52.5455155, + 13.5870333 + ] + ] + }, + { + "osmId": "112782946", + "name": null, + "lengthMeters": 349.92784715538994, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5478308, + 13.578119 + ], + [ + 52.5479864, + 13.5787187 + ], + [ + 52.5480465, + 13.5789573 + ], + [ + 52.5484011, + 13.580314 + ], + [ + 52.5486181, + 13.581141 + ], + [ + 52.5490131, + 13.5826397 + ], + [ + 52.549073, + 13.5828739 + ] + ] + }, + { + "osmId": "112782949", + "name": null, + "lengthMeters": 437.96570062150226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5440697, + 13.597642 + ], + [ + 52.5440103, + 13.5980842 + ], + [ + 52.5439921, + 13.598218 + ], + [ + 52.5438862, + 13.5989829 + ], + [ + 52.5438717, + 13.5991108 + ], + [ + 52.543862, + 13.5992015 + ], + [ + 52.5438594, + 13.5993228 + ], + [ + 52.5438589, + 13.5994064 + ], + [ + 52.5438611, + 13.599439 + ], + [ + 52.5438657, + 13.5995078 + ], + [ + 52.5438702, + 13.5995676 + ], + [ + 52.5438851, + 13.5997646 + ], + [ + 52.5439804, + 13.6010313 + ], + [ + 52.5440551, + 13.6019472 + ], + [ + 52.5441107, + 13.6027051 + ], + [ + 52.5441162, + 13.60279 + ], + [ + 52.5441189, + 13.6028315 + ], + [ + 52.5441192, + 13.6029229 + ], + [ + 52.544108, + 13.6030041 + ], + [ + 52.5440949, + 13.6030618 + ], + [ + 52.544085, + 13.6030848 + ], + [ + 52.5440689, + 13.6031273 + ], + [ + 52.5440486, + 13.6031633 + ], + [ + 52.5440377, + 13.6031801 + ], + [ + 52.5440198, + 13.6032077 + ], + [ + 52.5439675, + 13.603257 + ], + [ + 52.5439469, + 13.603271 + ], + [ + 52.5439237, + 13.603284 + ], + [ + 52.5438702, + 13.6033034 + ], + [ + 52.5437815, + 13.6033229 + ], + [ + 52.5435515, + 13.6033718 + ] + ] + }, + { + "osmId": "112782950", + "name": null, + "lengthMeters": 362.61771317069514, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5455155, + 13.5870333 + ], + [ + 52.5454601, + 13.587435 + ], + [ + 52.5454362, + 13.5876087 + ], + [ + 52.5450206, + 13.5906607 + ], + [ + 52.5449204, + 13.5913969 + ], + [ + 52.5449026, + 13.5915276 + ], + [ + 52.5448913, + 13.5916107 + ], + [ + 52.5448788, + 13.5917029 + ], + [ + 52.544861, + 13.5918335 + ], + [ + 52.5448022, + 13.5922659 + ] + ] + }, + { + "osmId": "112795332", + "name": null, + "lengthMeters": 260.67742261867426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293723, + 13.6234797 + ], + [ + 52.529288, + 13.6233228 + ], + [ + 52.5292678, + 13.623284 + ], + [ + 52.5291818, + 13.6231499 + ], + [ + 52.5291551, + 13.6231066 + ], + [ + 52.5290857, + 13.6230328 + ], + [ + 52.5290407, + 13.6229971 + ], + [ + 52.5289929, + 13.6229694 + ], + [ + 52.5289563, + 13.6229533 + ], + [ + 52.5289214, + 13.6229423 + ], + [ + 52.528865, + 13.6229377 + ], + [ + 52.5288306, + 13.6229397 + ], + [ + 52.5287962, + 13.6229462 + ], + [ + 52.5287408, + 13.6229702 + ], + [ + 52.5286797, + 13.623023 + ], + [ + 52.528648, + 13.6230712 + ], + [ + 52.5286382, + 13.6230861 + ], + [ + 52.5286067, + 13.6231537 + ], + [ + 52.5285808, + 13.6232373 + ], + [ + 52.5285688, + 13.6233255 + ], + [ + 52.5285677, + 13.6234093 + ], + [ + 52.5285743, + 13.6234866 + ], + [ + 52.528591, + 13.6235626 + ], + [ + 52.5286472, + 13.623705 + ], + [ + 52.5286934, + 13.6237914 + ], + [ + 52.5287639, + 13.6238823 + ], + [ + 52.5288173, + 13.6239237 + ], + [ + 52.5288914, + 13.6239555 + ], + [ + 52.5290325, + 13.6239944 + ], + [ + 52.5290992, + 13.624003 + ], + [ + 52.5296427, + 13.6240653 + ] + ] + }, + { + "osmId": "112795333", + "name": null, + "lengthMeters": 474.0620079268597, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306826, + 13.6214574 + ], + [ + 52.5307469, + 13.6211499 + ], + [ + 52.5307799, + 13.6209904 + ], + [ + 52.5308029, + 13.6208806 + ], + [ + 52.53082, + 13.6207991 + ], + [ + 52.5308458, + 13.620676 + ], + [ + 52.5308721, + 13.6205503 + ], + [ + 52.5310414, + 13.6197353 + ], + [ + 52.5313625, + 13.6182236 + ], + [ + 52.5317286, + 13.6164905 + ], + [ + 52.5318849, + 13.6157483 + ], + [ + 52.5319371, + 13.6154968 + ], + [ + 52.5319908, + 13.6152398 + ], + [ + 52.5320753, + 13.6148336 + ] + ] + }, + { + "osmId": "112795335", + "name": null, + "lengthMeters": 838.2609881708389, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.55573, + 13.5672263 + ], + [ + 52.5555835, + 13.5671155 + ], + [ + 52.5542345, + 13.5659332 + ], + [ + 52.5537187, + 13.565478 + ], + [ + 52.5528156, + 13.5646749 + ], + [ + 52.5526753, + 13.564544 + ], + [ + 52.5525273, + 13.5643818 + ], + [ + 52.5523994, + 13.5642397 + ], + [ + 52.5522841, + 13.5641006 + ], + [ + 52.5521968, + 13.5639894 + ], + [ + 52.5520863, + 13.5638428 + ], + [ + 52.5513235, + 13.5627429 + ], + [ + 52.5506748, + 13.5617955 + ], + [ + 52.5502042, + 13.5611133 + ], + [ + 52.5501477, + 13.5610346 + ], + [ + 52.5499572, + 13.5607582 + ], + [ + 52.549567, + 13.5602169 + ] + ] + }, + { + "osmId": "112795337", + "name": null, + "lengthMeters": 474.45298715773174, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354835, + 13.6056721 + ], + [ + 52.534565, + 13.6063272 + ], + [ + 52.5344056, + 13.6064272 + ], + [ + 52.5343287, + 13.6064874 + ], + [ + 52.5342513, + 13.6065498 + ], + [ + 52.5341392, + 13.6066631 + ], + [ + 52.5340316, + 13.60679 + ], + [ + 52.5339596, + 13.60689 + ], + [ + 52.5338968, + 13.6069853 + ], + [ + 52.5338182, + 13.6071153 + ], + [ + 52.5337412, + 13.6072592 + ], + [ + 52.5336917, + 13.6073598 + ], + [ + 52.533642, + 13.6074818 + ], + [ + 52.5336076, + 13.6075663 + ], + [ + 52.5335746, + 13.6076541 + ], + [ + 52.5335423, + 13.6077503 + ], + [ + 52.5335121, + 13.6078499 + ], + [ + 52.5334627, + 13.6080297 + ], + [ + 52.5334168, + 13.6082334 + ], + [ + 52.5332545, + 13.609022 + ], + [ + 52.5331795, + 13.6093736 + ], + [ + 52.5331552, + 13.6094892 + ], + [ + 52.5330768, + 13.6098644 + ], + [ + 52.5330503, + 13.6099912 + ], + [ + 52.5329075, + 13.6106791 + ] + ] + }, + { + "osmId": "112838884", + "name": null, + "lengthMeters": 362.04044586342803, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793627, + 13.5225687 + ], + [ + 52.4793968, + 13.5224913 + ], + [ + 52.4794389, + 13.5223956 + ], + [ + 52.479832, + 13.5215023 + ], + [ + 52.4798725, + 13.5214102 + ], + [ + 52.4799119, + 13.5213207 + ], + [ + 52.4800843, + 13.520929 + ], + [ + 52.4802254, + 13.5206083 + ], + [ + 52.4802643, + 13.5205199 + ], + [ + 52.4806619, + 13.5196163 + ], + [ + 52.480704, + 13.5195206 + ], + [ + 52.4812696, + 13.5182355 + ] + ] + }, + { + "osmId": "113047227", + "name": null, + "lengthMeters": 201.8375079183476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5492895, + 9.9832628 + ], + [ + 53.5493173, + 9.9836459 + ], + [ + 53.5493633, + 9.9842318 + ], + [ + 53.5494452, + 9.9850654 + ], + [ + 53.5495429, + 9.9859553 + ], + [ + 53.5495493, + 9.9860086 + ], + [ + 53.5495868, + 9.9862752 + ] + ] + }, + { + "osmId": "113047228", + "name": null, + "lengthMeters": 731.3968191956324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5461905, + 9.9734316 + ], + [ + 53.5462557, + 9.9739773 + ], + [ + 53.5464382, + 9.97509 + ], + [ + 53.546618, + 9.9760501 + ], + [ + 53.5467041, + 9.976485 + ], + [ + 53.5468144, + 9.9769757 + ], + [ + 53.5469357, + 9.9773906 + ], + [ + 53.5470483, + 9.9777397 + ], + [ + 53.5471993, + 9.9781164 + ], + [ + 53.5473679, + 9.9784871 + ], + [ + 53.5475291, + 9.9788126 + ], + [ + 53.5476846, + 9.9790881 + ], + [ + 53.5477355, + 9.9791731 + ], + [ + 53.5479105, + 9.9794653 + ], + [ + 53.5481845, + 9.9799029 + ], + [ + 53.5485046, + 9.9804378 + ], + [ + 53.5486378, + 9.9806835 + ], + [ + 53.5487916, + 9.9810108 + ], + [ + 53.5488934, + 9.9812701 + ], + [ + 53.5489973, + 9.98157 + ], + [ + 53.5490676, + 9.9818274 + ], + [ + 53.5491267, + 9.9820676 + ], + [ + 53.5492014, + 9.9824424 + ], + [ + 53.5492115, + 9.9825212 + ], + [ + 53.5492603, + 9.9829032 + ], + [ + 53.5492633, + 9.9829398 + ] + ] + }, + { + "osmId": "113611100", + "name": null, + "lengthMeters": 140.17138159623047, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1267596, + 11.5777391 + ], + [ + 48.1276943, + 11.5764719 + ] + ] + }, + { + "osmId": "114126700", + "name": null, + "lengthMeters": 170.9944612711406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1325602, + 11.5975312 + ], + [ + 48.1331028, + 11.5974086 + ], + [ + 48.1331746, + 11.5973896 + ], + [ + 48.1332336, + 11.597376 + ], + [ + 48.1332733, + 11.5973684 + ], + [ + 48.1333073, + 11.597364 + ], + [ + 48.1333354, + 11.597362 + ], + [ + 48.1333636, + 11.597363 + ], + [ + 48.1333989, + 11.597364 + ], + [ + 48.1334395, + 11.5973671 + ], + [ + 48.1334683, + 11.5973712 + ], + [ + 48.1335101, + 11.5973803 + ], + [ + 48.1335545, + 11.597394 + ], + [ + 48.1335913, + 11.597408 + ], + [ + 48.1336344, + 11.5974298 + ], + [ + 48.1336959, + 11.5974654 + ], + [ + 48.1337767, + 11.5975123 + ], + [ + 48.1339793, + 11.597642 + ], + [ + 48.134001, + 11.5976586 + ], + [ + 48.1340256, + 11.5976787 + ], + [ + 48.1340465, + 11.5976986 + ] + ] + }, + { + "osmId": "114688119", + "name": null, + "lengthMeters": 241.41853978728312, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4799571, + 13.367291 + ], + [ + 52.4794192, + 13.3669952 + ], + [ + 52.4793935, + 13.3669811 + ], + [ + 52.4785748, + 13.3665336 + ], + [ + 52.4779028, + 13.366138 + ] + ] + }, + { + "osmId": "114714170", + "name": "U6", + "lengthMeters": 362.7418310184149, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.562572, + 13.3295634 + ], + [ + 52.5624682, + 13.3299533 + ], + [ + 52.5623093, + 13.3305499 + ], + [ + 52.5622353, + 13.3308433 + ], + [ + 52.5621784, + 13.3310351 + ], + [ + 52.5617493, + 13.3318257 + ], + [ + 52.5611556, + 13.3328736 + ], + [ + 52.5606287, + 13.3337963 + ] + ] + }, + { + "osmId": "114919150", + "name": "Berliner Stadtbahn", + "lengthMeters": 361.1198377750258, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5242031, + 13.3657099 + ], + [ + 52.5242778, + 13.3658816 + ], + [ + 52.5243469, + 13.3660494 + ], + [ + 52.5244471, + 13.3663158 + ], + [ + 52.5245643, + 13.3666593 + ], + [ + 52.5247178, + 13.3671452 + ], + [ + 52.5248294, + 13.3675503 + ], + [ + 52.5249564, + 13.3681676 + ], + [ + 52.5249576, + 13.3681781 + ], + [ + 52.524962, + 13.368205 + ], + [ + 52.5250233, + 13.3685783 + ], + [ + 52.5250377, + 13.3686733 + ], + [ + 52.5251033, + 13.3691245 + ], + [ + 52.5251377, + 13.369419 + ], + [ + 52.5251758, + 13.3699455 + ], + [ + 52.5251819, + 13.37003 + ], + [ + 52.5251954, + 13.3702372 + ], + [ + 52.5252142, + 13.3706323 + ], + [ + 52.5252174, + 13.3706985 + ] + ] + }, + { + "osmId": "115494984", + "name": null, + "lengthMeters": 76.4118316355999, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6539259, + 10.1648806 + ], + [ + 53.6538122, + 10.1647203 + ], + [ + 53.6536682, + 10.1645447 + ], + [ + 53.653505, + 10.164363 + ], + [ + 53.6533616, + 10.1642225 + ] + ] + }, + { + "osmId": "115494991", + "name": null, + "lengthMeters": 203.8124235524386, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6519112, + 10.1636991 + ], + [ + 53.6522261, + 10.1638594 + ], + [ + 53.6524153, + 10.1639233 + ], + [ + 53.6525843, + 10.1639596 + ], + [ + 53.6526598, + 10.1639694 + ], + [ + 53.6528948, + 10.1639816 + ], + [ + 53.6531549, + 10.1639814 + ], + [ + 53.6534228, + 10.1639662 + ], + [ + 53.6537202, + 10.1638805 + ] + ] + }, + { + "osmId": "115494993", + "name": null, + "lengthMeters": 79.19098051213471, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6533616, + 10.1642225 + ], + [ + 53.6532111, + 10.1641028 + ], + [ + 53.6531211, + 10.1640369 + ], + [ + 53.653033, + 10.1639712 + ], + [ + 53.6529538, + 10.1639191 + ], + [ + 53.652854, + 10.1638668 + ], + [ + 53.6526973, + 10.1637984 + ] + ] + }, + { + "osmId": "115494995", + "name": null, + "lengthMeters": 180.18640631888212, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6521102, + 10.1639601 + ], + [ + 53.6522962, + 10.1639723 + ], + [ + 53.6525736, + 10.1640245 + ], + [ + 53.6526572, + 10.1640336 + ], + [ + 53.6528985, + 10.1640464 + ], + [ + 53.6531675, + 10.1640687 + ], + [ + 53.6534277, + 10.164029 + ], + [ + 53.65359, + 10.1639913 + ], + [ + 53.6537214, + 10.1639349 + ] + ] + }, + { + "osmId": "116134023", + "name": "Stettiner Bahn", + "lengthMeters": 258.8914610065426, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5490548, + 13.3932655 + ], + [ + 52.5490485, + 13.3931343 + ], + [ + 52.5490201, + 13.392616 + ], + [ + 52.5489821, + 13.3919246 + ], + [ + 52.5489707, + 13.3917174 + ], + [ + 52.5489495, + 13.3912371 + ], + [ + 52.5488704, + 13.3894488 + ] + ] + }, + { + "osmId": "116297277", + "name": "Stettiner Bahn", + "lengthMeters": 186.92535094416164, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491505, + 13.39589 + ], + [ + 52.5491184, + 13.3957164 + ], + [ + 52.5490921, + 13.3955659 + ], + [ + 52.5490675, + 13.3953983 + ], + [ + 52.5490299, + 13.3950978 + ], + [ + 52.5490135, + 13.3949213 + ], + [ + 52.5489866, + 13.3945095 + ], + [ + 52.5489314, + 13.3934799 + ], + [ + 52.5489305, + 13.3934619 + ], + [ + 52.5489251, + 13.3933538 + ], + [ + 52.5489148, + 13.3931601 + ] + ] + }, + { + "osmId": "116355015", + "name": null, + "lengthMeters": 97.9735316556389, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493848, + 13.3908509 + ], + [ + 52.5493818, + 13.3908066 + ], + [ + 52.5493809, + 13.3907909 + ], + [ + 52.5493794, + 13.3907639 + ], + [ + 52.5493755, + 13.3906716 + ], + [ + 52.549327, + 13.3894051 + ] + ] + }, + { + "osmId": "116377896", + "name": null, + "lengthMeters": 282.1807443480584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4451846, + 13.504985 + ], + [ + 52.4451303, + 13.5049055 + ], + [ + 52.444957, + 13.5046574 + ], + [ + 52.4448548, + 13.504524 + ], + [ + 52.444775, + 13.5044365 + ], + [ + 52.4444809, + 13.5040919 + ], + [ + 52.4443557, + 13.5039451 + ], + [ + 52.4440633, + 13.5036055 + ], + [ + 52.4435387, + 13.5029952 + ], + [ + 52.443442, + 13.5028827 + ], + [ + 52.4433004, + 13.5027334 + ], + [ + 52.4432734, + 13.5027147 + ], + [ + 52.4432285, + 13.5026836 + ], + [ + 52.4431726, + 13.502656 + ], + [ + 52.4431047, + 13.5026424 + ] + ] + }, + { + "osmId": "116482413", + "name": null, + "lengthMeters": 210.68847638908534, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0684254, + 11.6340616 + ], + [ + 48.0687483, + 11.6318122 + ], + [ + 48.0688234, + 11.6312894 + ] + ] + }, + { + "osmId": "117000448", + "name": null, + "lengthMeters": 95.17000941007166, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2096073, + 11.6156488 + ], + [ + 48.209837, + 11.6157559 + ], + [ + 48.2099773, + 11.6158078 + ], + [ + 48.2101242, + 11.6158426 + ], + [ + 48.2102118, + 11.6158694 + ], + [ + 48.2104362, + 11.615962 + ] + ] + }, + { + "osmId": "117042040", + "name": null, + "lengthMeters": 3253.6721609092924, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2408249, + 11.6286442 + ], + [ + 48.2398866, + 11.6283433 + ], + [ + 48.239351, + 11.6281409 + ], + [ + 48.2388816, + 11.6279354 + ], + [ + 48.2385234, + 11.6277567 + ], + [ + 48.2377239, + 11.627308 + ], + [ + 48.2346627, + 11.6253377 + ], + [ + 48.2338883, + 11.6248646 + ], + [ + 48.2332831, + 11.6245361 + ], + [ + 48.2326997, + 11.6242353 + ], + [ + 48.2322542, + 11.6240368 + ], + [ + 48.2311586, + 11.6236112 + ], + [ + 48.2278177, + 11.6224249 + ], + [ + 48.2256641, + 11.6216745 + ], + [ + 48.2253243, + 11.621572 + ], + [ + 48.2248273, + 11.621439 + ], + [ + 48.2240702, + 11.6212378 + ], + [ + 48.2233109, + 11.6210761 + ], + [ + 48.2228429, + 11.6210128 + ], + [ + 48.2225593, + 11.6209993 + ], + [ + 48.2222706, + 11.6210158 + ], + [ + 48.220998, + 11.6211367 + ], + [ + 48.2209026, + 11.6211388 + ], + [ + 48.2206296, + 11.6211202 + ], + [ + 48.2202242, + 11.6210676 + ], + [ + 48.2200137, + 11.6210066 + ], + [ + 48.2198092, + 11.6209405 + ], + [ + 48.2196222, + 11.6208732 + ], + [ + 48.2193391, + 11.6207436 + ], + [ + 48.2163608, + 11.6191307 + ], + [ + 48.2151945, + 11.6184966 + ], + [ + 48.2148859, + 11.618327 + ], + [ + 48.2144764, + 11.618097 + ], + [ + 48.21432, + 11.6180085 + ], + [ + 48.2140894, + 11.6178623 + ], + [ + 48.2139161, + 11.6177402 + ], + [ + 48.2134733, + 11.6174253 + ], + [ + 48.2130075, + 11.6171262 + ], + [ + 48.2128288, + 11.6170238 + ] + ] + }, + { + "osmId": "117042043", + "name": null, + "lengthMeters": 311.89124484970307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2018382, + 11.6129242 + ], + [ + 48.2020726, + 11.6129416 + ], + [ + 48.202212, + 11.6129535 + ], + [ + 48.2024863, + 11.6130064 + ], + [ + 48.2029952, + 11.6131381 + ], + [ + 48.203338, + 11.6132368 + ], + [ + 48.203577, + 11.6133076 + ], + [ + 48.2038479, + 11.6133929 + ], + [ + 48.2041344, + 11.6134909 + ], + [ + 48.204414, + 11.6135902 + ], + [ + 48.2045954, + 11.6136582 + ] + ] + }, + { + "osmId": "117042045", + "name": null, + "lengthMeters": 293.1531578767175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2109574, + 11.6161748 + ], + [ + 48.210307, + 11.6158325 + ], + [ + 48.2098658, + 11.6155897 + ], + [ + 48.2087448, + 11.6150056 + ], + [ + 48.2084666, + 11.6148798 + ] + ] + }, + { + "osmId": "117042047", + "name": null, + "lengthMeters": 236.9295838606971, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2127743, + 11.6172519 + ], + [ + 48.2128025, + 11.6172706 + ], + [ + 48.2130672, + 11.6174867 + ], + [ + 48.2131678, + 11.6175513 + ], + [ + 48.2133817, + 11.617667 + ], + [ + 48.2145163, + 11.6182871 + ], + [ + 48.2147558, + 11.6184154 + ] + ] + }, + { + "osmId": "117042056", + "name": null, + "lengthMeters": 340.0240104863183, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2022523, + 11.6128977 + ], + [ + 48.2024166, + 11.6129158 + ], + [ + 48.202587, + 11.6129427 + ], + [ + 48.2030188, + 11.6130252 + ], + [ + 48.2033501, + 11.6131064 + ], + [ + 48.2035932, + 11.6131824 + ], + [ + 48.2038651, + 11.6132684 + ], + [ + 48.2041541, + 11.6133735 + ], + [ + 48.2044318, + 11.613479 + ], + [ + 48.2046199, + 11.6135507 + ], + [ + 48.2052494, + 11.6137733 + ] + ] + }, + { + "osmId": "117701286", + "name": null, + "lengthMeters": 230.1486600542787, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4620715, + 13.5827342 + ], + [ + 52.4616687, + 13.5824034 + ], + [ + 52.4613032, + 13.5820935 + ], + [ + 52.4609623, + 13.5818003 + ], + [ + 52.4607832, + 13.5816388 + ], + [ + 52.460691, + 13.5815454 + ], + [ + 52.4605054, + 13.5813596 + ], + [ + 52.4602573, + 13.5811038 + ] + ] + }, + { + "osmId": "117702504", + "name": null, + "lengthMeters": 143.11897272731906, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4477142, + 13.6364935 + ], + [ + 52.4477052, + 13.6367773 + ], + [ + 52.4476568, + 13.6383011 + ], + [ + 52.4476536, + 13.6383981 + ], + [ + 52.447647, + 13.6386024 + ] + ] + }, + { + "osmId": "117702505", + "name": null, + "lengthMeters": 178.08922011894924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4435317, + 13.685038 + ], + [ + 52.4434938, + 13.685193 + ], + [ + 52.4434771, + 13.6852575 + ], + [ + 52.4434718, + 13.6852866 + ], + [ + 52.443468, + 13.6853306 + ], + [ + 52.4434665, + 13.6853821 + ], + [ + 52.4434692, + 13.6854316 + ], + [ + 52.4434797, + 13.6854984 + ], + [ + 52.4435009, + 13.6855762 + ], + [ + 52.4435301, + 13.6856345 + ], + [ + 52.4435528, + 13.6856693 + ], + [ + 52.4435941, + 13.6857097 + ], + [ + 52.4436347, + 13.6857325 + ], + [ + 52.443684, + 13.685746 + ], + [ + 52.4437357, + 13.685745 + ], + [ + 52.4438018, + 13.6857225 + ], + [ + 52.4438786, + 13.6856179 + ], + [ + 52.443913, + 13.6855425 + ], + [ + 52.4439354, + 13.6854578 + ], + [ + 52.4439395, + 13.6853593 + ], + [ + 52.4439307, + 13.6852693 + ], + [ + 52.4438848, + 13.6851239 + ], + [ + 52.4438226, + 13.6849967 + ], + [ + 52.4437923, + 13.6848872 + ], + [ + 52.4437681, + 13.6847624 + ], + [ + 52.4437647, + 13.6847361 + ], + [ + 52.443757, + 13.6846764 + ], + [ + 52.4437527, + 13.6846075 + ], + [ + 52.4437521, + 13.6845416 + ], + [ + 52.4437545, + 13.6844837 + ], + [ + 52.4437588, + 13.6844403 + ], + [ + 52.4437671, + 13.6843997 + ], + [ + 52.4437704, + 13.6843796 + ] + ] + }, + { + "osmId": "118083826", + "name": null, + "lengthMeters": 1761.672694659154, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4731802, + 9.7912238 + ], + [ + 53.473302, + 9.7933037 + ], + [ + 53.4735175, + 9.7972007 + ], + [ + 53.4735737, + 9.7982172 + ], + [ + 53.4736864, + 9.8002179 + ], + [ + 53.4739153, + 9.8043071 + ], + [ + 53.4742432, + 9.810445 + ], + [ + 53.4742604, + 9.8107548 + ], + [ + 53.4743224, + 9.8118408 + ], + [ + 53.4744534, + 9.8141364 + ], + [ + 53.474576, + 9.8162803 + ], + [ + 53.4746107, + 9.8168872 + ], + [ + 53.4746579, + 9.8177263 + ] + ] + }, + { + "osmId": "118083827", + "name": "Niederelbebahn", + "lengthMeters": 4748.472254195628, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4731995, + 9.7908334 + ], + [ + 53.4731439, + 9.789893 + ], + [ + 53.4730472, + 9.7881727 + ], + [ + 53.4729752, + 9.786867 + ], + [ + 53.472813, + 9.7839046 + ], + [ + 53.4726142, + 9.780516 + ], + [ + 53.4722959, + 9.7748338 + ], + [ + 53.4720981, + 9.7709327 + ], + [ + 53.4716624, + 9.7632684 + ], + [ + 53.4714736, + 9.7598108 + ], + [ + 53.471359, + 9.7579017 + ], + [ + 53.4707474, + 9.746771 + ], + [ + 53.470593, + 9.7439673 + ], + [ + 53.4703824, + 9.7401419 + ], + [ + 53.4697554, + 9.7289738 + ], + [ + 53.469709, + 9.7281474 + ], + [ + 53.4691888, + 9.7194068 + ] + ] + }, + { + "osmId": "118083830", + "name": "Niederelbebahn", + "lengthMeters": 1158.0920425372271, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4746922, + 9.8177203 + ], + [ + 53.4746835, + 9.8175556 + ], + [ + 53.4746751, + 9.8174027 + ], + [ + 53.4746464, + 9.8168881 + ], + [ + 53.4744901, + 9.8141268 + ], + [ + 53.4743663, + 9.8118322 + ], + [ + 53.4743082, + 9.8107543 + ], + [ + 53.4741429, + 9.8078369 + ], + [ + 53.4739574, + 9.8043205 + ], + [ + 53.4737311, + 9.8002963 + ] + ] + }, + { + "osmId": "118098553", + "name": "Hafenbahn", + "lengthMeters": 583.929166235616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4720116, + 9.9123991 + ], + [ + 53.4719997, + 9.9121059 + ], + [ + 53.4719956, + 9.9118508 + ], + [ + 53.4719965, + 9.9116326 + ], + [ + 53.4720002, + 9.9113877 + ], + [ + 53.4721573, + 9.9073208 + ], + [ + 53.4722185, + 9.9057714 + ], + [ + 53.4722391, + 9.9052294 + ], + [ + 53.472245, + 9.9050752 + ], + [ + 53.4723054, + 9.9035941 + ] + ] + }, + { + "osmId": "118098565", + "name": null, + "lengthMeters": 1043.4286825575057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5101753, + 9.910473 + ], + [ + 53.5095449, + 9.9107596 + ], + [ + 53.5091404, + 9.9109435 + ], + [ + 53.5090482, + 9.9109703 + ], + [ + 53.5088243, + 9.9110082 + ], + [ + 53.5085837, + 9.911038 + ], + [ + 53.5084326, + 9.9110293 + ], + [ + 53.5052346, + 9.9108461 + ], + [ + 53.5048717, + 9.9108253 + ], + [ + 53.5045001, + 9.910804 + ], + [ + 53.5039314, + 9.9107781 + ], + [ + 53.503636, + 9.9107114 + ], + [ + 53.5031413, + 9.9106387 + ], + [ + 53.5028302, + 9.9105552 + ], + [ + 53.5025643, + 9.9104609 + ], + [ + 53.5024017, + 9.9104035 + ], + [ + 53.5020053, + 9.9102487 + ], + [ + 53.5016802, + 9.9101092 + ], + [ + 53.5008998, + 9.9097641 + ] + ] + }, + { + "osmId": "118098568", + "name": "Hafenbahn", + "lengthMeters": 679.9700338275884, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4769912, + 9.8978244 + ], + [ + 53.476532, + 9.897739 + ], + [ + 53.4762291, + 9.8977406 + ], + [ + 53.4758856, + 9.8977929 + ], + [ + 53.4753629, + 9.8979158 + ], + [ + 53.4748813, + 9.898081 + ], + [ + 53.4745437, + 9.898221 + ], + [ + 53.4742393, + 9.8983749 + ], + [ + 53.473908, + 9.8985736 + ], + [ + 53.4735877, + 9.8988679 + ], + [ + 53.4733653, + 9.8991161 + ], + [ + 53.4731083, + 9.8995117 + ], + [ + 53.4729184, + 9.8998376 + ], + [ + 53.472706, + 9.9003603 + ], + [ + 53.4726013, + 9.9006378 + ], + [ + 53.4724598, + 9.9011481 + ], + [ + 53.4723833, + 9.901653 + ], + [ + 53.4723515, + 9.9018801 + ], + [ + 53.4723309, + 9.9020888 + ], + [ + 53.4723154, + 9.9023248 + ], + [ + 53.4723088, + 9.9024806 + ] + ] + }, + { + "osmId": "118098569", + "name": "Hafenbahn", + "lengthMeters": 795.0365131677482, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4844637, + 9.9006467 + ], + [ + 53.4839576, + 9.9003728 + ], + [ + 53.4835387, + 9.9001388 + ], + [ + 53.48298, + 9.899866 + ], + [ + 53.4821486, + 9.8995262 + ], + [ + 53.4816486, + 9.8993571 + ], + [ + 53.4796385, + 9.8986856 + ], + [ + 53.4788257, + 9.8984236 + ], + [ + 53.4785149, + 9.8983142 + ], + [ + 53.4783871, + 9.8982714 + ], + [ + 53.4781415, + 9.8981893 + ], + [ + 53.4775209, + 9.8979909 + ], + [ + 53.4774991, + 9.8979832 + ] + ] + }, + { + "osmId": "118098573", + "name": "Hafenbahn", + "lengthMeters": 423.47520756937604, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4721261, + 9.9050738 + ], + [ + 53.4720943, + 9.9057581 + ], + [ + 53.4720312, + 9.9073723 + ], + [ + 53.4719248, + 9.910093 + ], + [ + 53.4718715, + 9.9114578 + ] + ] + }, + { + "osmId": "118101289", + "name": "Hafenbahn", + "lengthMeters": 1042.8243138571843, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4934319, + 9.9059401 + ], + [ + 53.4927497, + 9.9055428 + ], + [ + 53.4925076, + 9.9054033 + ], + [ + 53.4917481, + 9.9049521 + ], + [ + 53.4917071, + 9.904928 + ], + [ + 53.4913914, + 9.9047419 + ], + [ + 53.4912838, + 9.9046793 + ], + [ + 53.4905645, + 9.9042525 + ], + [ + 53.489534, + 9.9036358 + ], + [ + 53.4893412, + 9.9035204 + ], + [ + 53.4874234, + 9.9023938 + ], + [ + 53.4874032, + 9.9023818 + ], + [ + 53.4845841, + 9.9007138 + ] + ] + }, + { + "osmId": "118150230", + "name": "Niederelbebahn", + "lengthMeters": 2064.0852902566257, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4732709, + 9.8732815 + ], + [ + 53.473206, + 9.8750362 + ], + [ + 53.4730702, + 9.8786258 + ], + [ + 53.4729827, + 9.8809277 + ], + [ + 53.4729484, + 9.8817705 + ], + [ + 53.4729159, + 9.882608 + ], + [ + 53.472861, + 9.8840306 + ], + [ + 53.472754, + 9.8867586 + ], + [ + 53.4724532, + 9.8945119 + ], + [ + 53.4724508, + 9.8945739 + ], + [ + 53.4723905, + 9.8961168 + ], + [ + 53.472297, + 9.898526 + ], + [ + 53.4722808, + 9.8989683 + ], + [ + 53.4722534, + 9.8996517 + ], + [ + 53.4721614, + 9.9020601 + ], + [ + 53.4720731, + 9.9044036 + ] + ] + }, + { + "osmId": "118150233", + "name": null, + "lengthMeters": 4847.0169640054355, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4715258, + 9.9464227 + ], + [ + 53.4715518, + 9.9454091 + ], + [ + 53.4715646, + 9.9447431 + ], + [ + 53.4715503, + 9.9422493 + ], + [ + 53.4715325, + 9.9414716 + ], + [ + 53.4714764, + 9.9388203 + ], + [ + 53.4715072, + 9.9352744 + ], + [ + 53.4715592, + 9.9289232 + ], + [ + 53.4715728, + 9.9270124 + ], + [ + 53.4715983, + 9.9234118 + ], + [ + 53.4716226, + 9.9215013 + ], + [ + 53.4716345, + 9.9200998 + ], + [ + 53.4716399, + 9.9191526 + ], + [ + 53.4716492, + 9.9170669 + ], + [ + 53.4716521, + 9.9155269 + ], + [ + 53.4716641, + 9.9139132 + ], + [ + 53.4716648, + 9.9138763 + ], + [ + 53.4716692, + 9.9136428 + ], + [ + 53.4716942, + 9.912327 + ], + [ + 53.4717294, + 9.9113736 + ], + [ + 53.4718764, + 9.9075716 + ], + [ + 53.4720893, + 9.9020644 + ], + [ + 53.4721486, + 9.9005119 + ], + [ + 53.4722055, + 9.899024 + ], + [ + 53.4723282, + 9.8961063 + ], + [ + 53.4726926, + 9.8867547 + ], + [ + 53.4727964, + 9.8840277 + ], + [ + 53.4728524, + 9.8826037 + ], + [ + 53.4728852, + 9.8817659 + ], + [ + 53.4729718, + 9.8795455 + ], + [ + 53.4729886, + 9.8791062 + ], + [ + 53.4729945, + 9.8789526 + ], + [ + 53.4730309, + 9.8780012 + ], + [ + 53.4730519, + 9.8774836 + ], + [ + 53.473053, + 9.8774566 + ], + [ + 53.4730906, + 9.8764649 + ], + [ + 53.4731088, + 9.8759929 + ], + [ + 53.473114, + 9.8758642 + ], + [ + 53.4731454, + 9.8750324 + ], + [ + 53.4732119, + 9.8733602 + ], + [ + 53.4732138, + 9.8732783 + ] + ] + }, + { + "osmId": "118150235", + "name": null, + "lengthMeters": 157.5238270017845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4702582, + 9.9539865 + ], + [ + 53.470371, + 9.9537729 + ], + [ + 53.4704915, + 9.9535087 + ], + [ + 53.4705586, + 9.9533377 + ], + [ + 53.4706328, + 9.9531472 + ], + [ + 53.470729, + 9.952879 + ], + [ + 53.4708212, + 9.9525961 + ], + [ + 53.4709294, + 9.9522334 + ], + [ + 53.4709993, + 9.9519707 + ] + ] + }, + { + "osmId": "118151933", + "name": "Niederelbebahn", + "lengthMeters": 865.6242195170148, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4733371, + 9.8728447 + ], + [ + 53.4733701, + 9.8719495 + ], + [ + 53.4735842, + 9.8678257 + ], + [ + 53.4736967, + 9.8650705 + ], + [ + 53.4737211, + 9.8644732 + ], + [ + 53.4737805, + 9.8630189 + ], + [ + 53.4739032, + 9.8598006 + ] + ] + }, + { + "osmId": "118151935", + "name": null, + "lengthMeters": 1021.3670436246539, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4732327, + 9.8728341 + ], + [ + 53.4734095, + 9.8693255 + ], + [ + 53.4734334, + 9.8688877 + ], + [ + 53.4734931, + 9.8677928 + ], + [ + 53.4736925, + 9.8632884 + ], + [ + 53.4737095, + 9.8629684 + ], + [ + 53.4737671, + 9.8614239 + ], + [ + 53.4738288, + 9.85977 + ], + [ + 53.4738591, + 9.8585938 + ], + [ + 53.4739135, + 9.8574452 + ] + ] + }, + { + "osmId": "118154741", + "name": null, + "lengthMeters": 82.76039236644226, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4587359, + 9.988173 + ], + [ + 53.458989, + 9.9876912 + ], + [ + 53.4592649, + 9.9872983 + ] + ] + }, + { + "osmId": "118154746", + "name": "Niederelbebahn", + "lengthMeters": 299.30680822241897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4587799, + 9.9882007 + ], + [ + 53.4590144, + 9.9877253 + ], + [ + 53.4592349, + 9.9874167 + ], + [ + 53.4592883, + 9.987342 + ], + [ + 53.4595061, + 9.9871094 + ], + [ + 53.4597405, + 9.9869323 + ], + [ + 53.4600251, + 9.9867947 + ], + [ + 53.4600934, + 9.9867617 + ], + [ + 53.4604306, + 9.9866786 + ], + [ + 53.4611456, + 9.9865604 + ], + [ + 53.4611715, + 9.9865561 + ] + ] + }, + { + "osmId": "118191293", + "name": "Harburger S-Bahn", + "lengthMeters": 524.8773710583204, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4651948, + 9.9979631 + ], + [ + 53.4662634, + 9.9974319 + ], + [ + 53.4666637, + 9.9972527 + ], + [ + 53.4671883, + 9.99706 + ], + [ + 53.4674744, + 9.9969865 + ], + [ + 53.4677267, + 9.9969401 + ], + [ + 53.4679385, + 9.9969011 + ], + [ + 53.4683247, + 9.9968865 + ], + [ + 53.4689104, + 9.9969292 + ], + [ + 53.4691489, + 9.9969666 + ], + [ + 53.4694482, + 9.9970479 + ], + [ + 53.4698227, + 9.9971834 + ] + ] + }, + { + "osmId": "118191294", + "name": "Harburger S-Bahn", + "lengthMeters": 527.6056243869208, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4698343, + 9.9971139 + ], + [ + 53.4694537, + 9.9969744 + ], + [ + 53.4691539, + 9.9968894 + ], + [ + 53.4690709, + 9.9968778 + ], + [ + 53.4689108, + 9.9968554 + ], + [ + 53.4683272, + 9.9968038 + ], + [ + 53.467937, + 9.9968365 + ], + [ + 53.4674672, + 9.9969161 + ], + [ + 53.4671829, + 9.9969868 + ], + [ + 53.4666634, + 9.9971765 + ], + [ + 53.4662598, + 9.9973661 + ], + [ + 53.4651828, + 9.9978942 + ] + ] + }, + { + "osmId": "118396621", + "name": null, + "lengthMeters": 375.75408856773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5211482, + 9.9194092 + ], + [ + 53.5210284, + 9.9196327 + ], + [ + 53.5209556, + 9.9197497 + ], + [ + 53.520928, + 9.9198019 + ], + [ + 53.5207904, + 9.9199953 + ], + [ + 53.5206429, + 9.9201572 + ], + [ + 53.5204939, + 9.9202897 + ], + [ + 53.5203308, + 9.9204183 + ], + [ + 53.520155, + 9.9205362 + ], + [ + 53.5200518, + 9.9205899 + ], + [ + 53.5199544, + 9.9206278 + ], + [ + 53.5198349, + 9.9206717 + ], + [ + 53.5197359, + 9.9206996 + ], + [ + 53.5196411, + 9.920724 + ], + [ + 53.5195372, + 9.9207464 + ], + [ + 53.5194314, + 9.9207569 + ], + [ + 53.5193368, + 9.9207557 + ], + [ + 53.5192474, + 9.9207597 + ], + [ + 53.5191839, + 9.9207609 + ], + [ + 53.5190909, + 9.9207493 + ], + [ + 53.5189929, + 9.9207327 + ], + [ + 53.5189003, + 9.9207099 + ], + [ + 53.5187198, + 9.9206539 + ], + [ + 53.518498, + 9.9205557 + ], + [ + 53.5183993, + 9.9205001 + ], + [ + 53.5183227, + 9.920451 + ], + [ + 53.5180515, + 9.9202534 + ] + ] + }, + { + "osmId": "118396626", + "name": null, + "lengthMeters": 201.4152816349408, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5229382, + 9.9261125 + ], + [ + 53.5233611, + 9.9266533 + ], + [ + 53.5237764, + 9.9271842 + ], + [ + 53.5238418, + 9.9272679 + ], + [ + 53.5242028, + 9.9277017 + ], + [ + 53.5242149, + 9.9277157 + ], + [ + 53.5243944, + 9.9279238 + ] + ] + }, + { + "osmId": "118423895", + "name": null, + "lengthMeters": 106.07637538065856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5300868, + 13.3813369 + ], + [ + 52.5301232, + 13.3814916 + ], + [ + 52.5301387, + 13.3815621 + ], + [ + 52.5301548, + 13.3816473 + ], + [ + 52.5301783, + 13.3817887 + ], + [ + 52.5302048, + 13.3819357 + ], + [ + 52.5302272, + 13.3820475 + ], + [ + 52.5302501, + 13.3821406 + ], + [ + 52.5302749, + 13.3822323 + ], + [ + 52.5304175, + 13.3827264 + ], + [ + 52.5304357, + 13.3827928 + ] + ] + }, + { + "osmId": "118626717", + "name": "Vogelfluglinie", + "lengthMeters": 1364.3249539615492, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5816297, + 10.1148791 + ], + [ + 53.5814269, + 10.1145334 + ], + [ + 53.5812334, + 10.1141991 + ], + [ + 53.5803981, + 10.1127557 + ], + [ + 53.5799794, + 10.112044 + ], + [ + 53.5787146, + 10.1098941 + ], + [ + 53.5786498, + 10.1097839 + ], + [ + 53.5782569, + 10.1090743 + ], + [ + 53.5780713, + 10.1087067 + ], + [ + 53.5775064, + 10.107588 + ], + [ + 53.5773789, + 10.1072912 + ], + [ + 53.5769404, + 10.1062701 + ], + [ + 53.5768584, + 10.1060496 + ], + [ + 53.5764279, + 10.1048926 + ], + [ + 53.5762289, + 10.1042776 + ], + [ + 53.5760759, + 10.1038048 + ], + [ + 53.5760677, + 10.1037795 + ], + [ + 53.5758721, + 10.1031523 + ], + [ + 53.575682, + 10.1024243 + ], + [ + 53.5753482, + 10.1011206 + ], + [ + 53.5752349, + 10.1005893 + ], + [ + 53.575105, + 10.0999372 + ], + [ + 53.5749944, + 10.0993702 + ], + [ + 53.5748605, + 10.0985606 + ], + [ + 53.5747907, + 10.0981171 + ] + ] + }, + { + "osmId": "118626720", + "name": "Vogelfluglinie", + "lengthMeters": 342.08486157295584, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.587229, + 10.1243239 + ], + [ + 53.5869258, + 10.1237775 + ], + [ + 53.5867604, + 10.1234833 + ], + [ + 53.5865045, + 10.1230375 + ], + [ + 53.5864238, + 10.1228969 + ], + [ + 53.5863182, + 10.1227116 + ], + [ + 53.5861326, + 10.1223958 + ], + [ + 53.5857528, + 10.121774 + ], + [ + 53.5854496, + 10.1212834 + ], + [ + 53.5850591, + 10.1206517 + ] + ] + }, + { + "osmId": "118628678", + "name": "Vogelfluglinie", + "lengthMeters": 1392.2258637789473, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5962182, + 10.1398249 + ], + [ + 53.5958614, + 10.1392011 + ], + [ + 53.5938695, + 10.135801 + ], + [ + 53.5931011, + 10.1344838 + ], + [ + 53.5925559, + 10.1335491 + ], + [ + 53.5916319, + 10.131965 + ], + [ + 53.5913003, + 10.1313966 + ], + [ + 53.5900435, + 10.1292423 + ], + [ + 53.5887887, + 10.1270912 + ], + [ + 53.5882352, + 10.1261425 + ], + [ + 53.5876066, + 10.1249975 + ], + [ + 53.5875554, + 10.1249042 + ], + [ + 53.5874657, + 10.1247416 + ] + ] + }, + { + "osmId": "118628681", + "name": "Vogelfluglinie", + "lengthMeters": 1399.4577787671826, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5873735, + 10.1247701 + ], + [ + 53.5874939, + 10.1249982 + ], + [ + 53.5882042, + 10.1261947 + ], + [ + 53.588758, + 10.1271389 + ], + [ + 53.5898598, + 10.1290174 + ], + [ + 53.5900187, + 10.1292883 + ], + [ + 53.5912771, + 10.1314338 + ], + [ + 53.5919485, + 10.1325785 + ], + [ + 53.5925341, + 10.1335842 + ], + [ + 53.593077, + 10.1345165 + ], + [ + 53.5938432, + 10.1358324 + ], + [ + 53.5958404, + 10.1392545 + ], + [ + 53.5962029, + 10.1398803 + ] + ] + }, + { + "osmId": "118632746", + "name": "Vogelfluglinie", + "lengthMeters": 5132.948976211911, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6779197, + 10.2473215 + ], + [ + 53.6779268, + 10.2473249 + ], + [ + 53.6779349, + 10.2473281 + ], + [ + 53.6779461, + 10.2473326 + ], + [ + 53.6800378, + 10.2482097 + ], + [ + 53.6814164, + 10.2487849 + ], + [ + 53.6822796, + 10.2491451 + ], + [ + 53.6833084, + 10.2495725 + ], + [ + 53.6840391, + 10.2498805 + ], + [ + 53.6843407, + 10.2500076 + ], + [ + 53.6845896, + 10.2501105 + ], + [ + 53.6847302, + 10.2501668 + ], + [ + 53.6853972, + 10.2504446 + ], + [ + 53.6858611, + 10.2506406 + ], + [ + 53.6859112, + 10.2506617 + ], + [ + 53.6866277, + 10.2509644 + ], + [ + 53.6878096, + 10.2514566 + ], + [ + 53.6880005, + 10.251535 + ], + [ + 53.6880053, + 10.251537 + ], + [ + 53.6881273, + 10.2515871 + ], + [ + 53.6883552, + 10.2516856 + ], + [ + 53.6890401, + 10.251972 + ], + [ + 53.6899047, + 10.2523335 + ], + [ + 53.6899828, + 10.2523661 + ], + [ + 53.6912221, + 10.2528837 + ], + [ + 53.6926211, + 10.2534782 + ], + [ + 53.6927342, + 10.2535211 + ], + [ + 53.6938761, + 10.2539932 + ], + [ + 53.6951797, + 10.2545368 + ], + [ + 53.6962426, + 10.2549745 + ], + [ + 53.6968324, + 10.2552116 + ], + [ + 53.6973505, + 10.2554318 + ], + [ + 53.69788, + 10.2556526 + ], + [ + 53.6987603, + 10.2560146 + ], + [ + 53.6994856, + 10.2563227 + ], + [ + 53.7000384, + 10.2565503 + ], + [ + 53.7004676, + 10.2567242 + ], + [ + 53.7015373, + 10.2571577 + ], + [ + 53.7025538, + 10.2575696 + ], + [ + 53.7038613, + 10.2581166 + ], + [ + 53.7056294, + 10.2588564 + ], + [ + 53.7073547, + 10.2595715 + ], + [ + 53.7111937, + 10.2611629 + ], + [ + 53.7114136, + 10.261254 + ], + [ + 53.7139419, + 10.2622997 + ], + [ + 53.7141725, + 10.2623951 + ], + [ + 53.7163907, + 10.2633253 + ], + [ + 53.7167047, + 10.2634562 + ], + [ + 53.7179744, + 10.2639853 + ], + [ + 53.7199332, + 10.2648017 + ], + [ + 53.7219364, + 10.2656367 + ], + [ + 53.7225701, + 10.2658956 + ], + [ + 53.7226373, + 10.2659231 + ], + [ + 53.7226465, + 10.2659268 + ], + [ + 53.7226573, + 10.2659312 + ], + [ + 53.7227422, + 10.2659659 + ] + ] + }, + { + "osmId": "118632748", + "name": "Vogelfluglinie", + "lengthMeters": 360.19251681917734, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6640244, + 10.2232442 + ], + [ + 53.6644335, + 10.2243135 + ], + [ + 53.6644737, + 10.2244185 + ], + [ + 53.6649096, + 10.225525 + ], + [ + 53.6652147, + 10.2263309 + ], + [ + 53.6656084, + 10.2274725 + ], + [ + 53.665611, + 10.2274793 + ], + [ + 53.6656466, + 10.2275744 + ], + [ + 53.6657552, + 10.2278639 + ] + ] + }, + { + "osmId": "118632750", + "name": null, + "lengthMeters": 376.0162852714371, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.667381, + 10.231593 + ], + [ + 53.6669492, + 10.2304995 + ], + [ + 53.6665723, + 10.2295646 + ], + [ + 53.6661173, + 10.2284432 + ], + [ + 53.6656942, + 10.2273751 + ], + [ + 53.6654894, + 10.2268621 + ] + ] + }, + { + "osmId": "118632751", + "name": null, + "lengthMeters": 763.6543667664849, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6657552, + 10.2278639 + ], + [ + 53.6659623, + 10.2285113 + ], + [ + 53.6659818, + 10.2285721 + ], + [ + 53.6663087, + 10.2295775 + ], + [ + 53.6664085, + 10.2298548 + ], + [ + 53.6665661, + 10.2302918 + ], + [ + 53.666961, + 10.2313751 + ], + [ + 53.6671851, + 10.2319451 + ], + [ + 53.6674763, + 10.2326732 + ], + [ + 53.6679591, + 10.233876 + ], + [ + 53.6683077, + 10.2347377 + ], + [ + 53.6686492, + 10.2356039 + ], + [ + 53.6691394, + 10.2368164 + ], + [ + 53.6694676, + 10.2376063 + ] + ] + }, + { + "osmId": "118694407", + "name": "Vogelfluglinie", + "lengthMeters": 4816.274238351384, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7349299, + 10.2761739 + ], + [ + 53.7355317, + 10.2772807 + ], + [ + 53.7366222, + 10.2792864 + ], + [ + 53.7368261, + 10.2796657 + ], + [ + 53.7373968, + 10.2807272 + ], + [ + 53.7380344, + 10.2819084 + ], + [ + 53.7389404, + 10.2835759 + ], + [ + 53.739187, + 10.2840314 + ], + [ + 53.7396223, + 10.2848353 + ], + [ + 53.7401115, + 10.2857637 + ], + [ + 53.7403292, + 10.2861607 + ], + [ + 53.7409297, + 10.2872558 + ], + [ + 53.7409945, + 10.2873756 + ], + [ + 53.741738, + 10.2887496 + ], + [ + 53.7422091, + 10.2896231 + ], + [ + 53.7437416, + 10.292448 + ], + [ + 53.7443277, + 10.293524 + ], + [ + 53.7453861, + 10.2954603 + ], + [ + 53.7464072, + 10.2973669 + ], + [ + 53.7476469, + 10.2996559 + ], + [ + 53.749664, + 10.3033802 + ], + [ + 53.7501121, + 10.3041934 + ], + [ + 53.7501246, + 10.3042159 + ], + [ + 53.7505801, + 10.3050425 + ], + [ + 53.7511089, + 10.306024 + ], + [ + 53.7515408, + 10.3068257 + ], + [ + 53.7537243, + 10.3108513 + ], + [ + 53.7549455, + 10.3131029 + ], + [ + 53.7561675, + 10.3153559 + ], + [ + 53.75738, + 10.3175917 + ], + [ + 53.7585792, + 10.3198027 + ], + [ + 53.7589894, + 10.3205592 + ], + [ + 53.7597953, + 10.3220447 + ], + [ + 53.7608873, + 10.3240574 + ], + [ + 53.7619802, + 10.3260867 + ], + [ + 53.7621039, + 10.3263168 + ], + [ + 53.762227, + 10.3265449 + ], + [ + 53.7622715, + 10.3266276 + ], + [ + 53.7626075, + 10.3272516 + ], + [ + 53.7634569, + 10.3288057 + ], + [ + 53.7642004, + 10.3301662 + ] + ] + }, + { + "osmId": "118740555", + "name": null, + "lengthMeters": 811.3735913482024, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6728912, + 13.2737187 + ], + [ + 52.6725994, + 13.2722241 + ], + [ + 52.672546, + 13.2719484 + ], + [ + 52.672383, + 13.271103 + ], + [ + 52.6723699, + 13.2710362 + ], + [ + 52.6723028, + 13.2706921 + ], + [ + 52.672147, + 13.2698919 + ], + [ + 52.6720637, + 13.2694638 + ], + [ + 52.6715442, + 13.266801 + ], + [ + 52.6711831, + 13.2649472 + ], + [ + 52.6706598, + 13.2622617 + ] + ] + }, + { + "osmId": "118740559", + "name": null, + "lengthMeters": 268.9092959638799, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6736926, + 13.2777487 + ], + [ + 52.6734243, + 13.2764221 + ], + [ + 52.6732163, + 13.2753652 + ], + [ + 52.6729386, + 13.2739592 + ] + ] + }, + { + "osmId": "118740561", + "name": null, + "lengthMeters": 1808.823561711788, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6825954, + 13.2886799 + ], + [ + 52.6816043, + 13.288576 + ], + [ + 52.6805674, + 13.2884584 + ], + [ + 52.6785077, + 13.2882436 + ], + [ + 52.6774351, + 13.2881373 + ], + [ + 52.6766831, + 13.2880706 + ], + [ + 52.6761682, + 13.2880208 + ], + [ + 52.6756249, + 13.2879642 + ], + [ + 52.6708329, + 13.2874542 + ], + [ + 52.6697513, + 13.2873351 + ], + [ + 52.6676155, + 13.2871265 + ], + [ + 52.6676081, + 13.2871257 + ], + [ + 52.6673487, + 13.287098 + ], + [ + 52.6668291, + 13.2870424 + ], + [ + 52.6666945, + 13.287027 + ], + [ + 52.6665594, + 13.287014 + ], + [ + 52.6664287, + 13.2870043 + ], + [ + 52.6663603, + 13.2870007 + ] + ] + }, + { + "osmId": "118748339", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1870.8081404058378, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6716535, + 13.3156276 + ], + [ + 52.6720481, + 13.3142545 + ], + [ + 52.6728444, + 13.3114965 + ], + [ + 52.6737088, + 13.3085027 + ], + [ + 52.6745042, + 13.3057378 + ], + [ + 52.6746961, + 13.3049748 + ], + [ + 52.675121, + 13.302984 + ], + [ + 52.6754375, + 13.3010253 + ], + [ + 52.6754535, + 13.3009259 + ], + [ + 52.6755264, + 13.3004025 + ], + [ + 52.6756148, + 13.2996868 + ], + [ + 52.6757577, + 13.2982436 + ], + [ + 52.6758624, + 13.2968094 + ], + [ + 52.6759086, + 13.2956119 + ], + [ + 52.6759232, + 13.294854 + ], + [ + 52.6759307, + 13.2941156 + ], + [ + 52.6759044, + 13.2925979 + ], + [ + 52.6758909, + 13.2923036 + ], + [ + 52.6758381, + 13.2911576 + ], + [ + 52.6758205, + 13.2909251 + ], + [ + 52.6757515, + 13.290012 + ], + [ + 52.6756827, + 13.2892781 + ] + ] + }, + { + "osmId": "118748341", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 4429.980791188334, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6716454, + 13.3155022 + ], + [ + 52.6711275, + 13.3172909 + ], + [ + 52.6710409, + 13.3175899 + ], + [ + 52.6710093, + 13.317699 + ], + [ + 52.6708763, + 13.3181584 + ], + [ + 52.6703011, + 13.3201453 + ], + [ + 52.6697044, + 13.3222062 + ], + [ + 52.6692745, + 13.3236909 + ], + [ + 52.669262, + 13.323734 + ], + [ + 52.6689236, + 13.3249025 + ], + [ + 52.6681303, + 13.3276418 + ], + [ + 52.6677785, + 13.3288567 + ], + [ + 52.6673195, + 13.3304417 + ], + [ + 52.6665945, + 13.3329452 + ], + [ + 52.6664518, + 13.3334419 + ], + [ + 52.666313, + 13.3339408 + ], + [ + 52.6661782, + 13.3344412 + ], + [ + 52.6660433, + 13.3349574 + ], + [ + 52.6660154, + 13.3350683 + ], + [ + 52.6659805, + 13.335207 + ], + [ + 52.6658757, + 13.3356314 + ], + [ + 52.6657697, + 13.3360703 + ], + [ + 52.6656694, + 13.3365002 + ], + [ + 52.6655723, + 13.3369321 + ], + [ + 52.6654766, + 13.3373644 + ], + [ + 52.6654603, + 13.3374402 + ], + [ + 52.6654398, + 13.3375353 + ], + [ + 52.665141, + 13.3389147 + ], + [ + 52.6648709, + 13.3401615 + ], + [ + 52.6646355, + 13.3412509 + ], + [ + 52.6639303, + 13.3445149 + ], + [ + 52.6636291, + 13.3459145 + ], + [ + 52.6635647, + 13.3462115 + ], + [ + 52.6631608, + 13.3480752 + ], + [ + 52.6628292, + 13.3496053 + ], + [ + 52.6626346, + 13.3505032 + ], + [ + 52.6622912, + 13.3520877 + ], + [ + 52.6621471, + 13.3527358 + ], + [ + 52.6620535, + 13.3531717 + ], + [ + 52.6617748, + 13.3544696 + ], + [ + 52.6616895, + 13.354867 + ], + [ + 52.6611334, + 13.3574404 + ], + [ + 52.6609846, + 13.3581289 + ], + [ + 52.6607115, + 13.3593928 + ], + [ + 52.6606783, + 13.3595466 + ], + [ + 52.6596629, + 13.3642543 + ], + [ + 52.6583281, + 13.3704209 + ], + [ + 52.6579409, + 13.3722113 + ], + [ + 52.6570047, + 13.3765165 + ] + ] + }, + { + "osmId": "118748343", + "name": null, + "lengthMeters": 1362.1036147564591, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6825954, + 13.2886799 + ], + [ + 52.6819586, + 13.288578 + ], + [ + 52.6818028, + 13.2885415 + ], + [ + 52.6816078, + 13.2884959 + ], + [ + 52.6812278, + 13.2883917 + ], + [ + 52.6805971, + 13.2882067 + ], + [ + 52.6798588, + 13.287996 + ], + [ + 52.6793352, + 13.2878599 + ], + [ + 52.6786849, + 13.287643 + ], + [ + 52.6783905, + 13.2875369 + ], + [ + 52.6781386, + 13.287413 + ], + [ + 52.6780769, + 13.2873827 + ], + [ + 52.6776683, + 13.2871311 + ], + [ + 52.6774435, + 13.2869716 + ], + [ + 52.677244, + 13.2868015 + ], + [ + 52.6769122, + 13.2865079 + ], + [ + 52.6765388, + 13.2860972 + ], + [ + 52.676158, + 13.2856064 + ], + [ + 52.6757401, + 13.2849491 + ], + [ + 52.6754144, + 13.2843337 + ], + [ + 52.675145, + 13.2837315 + ], + [ + 52.6749161, + 13.2831023 + ], + [ + 52.6747021, + 13.2824145 + ], + [ + 52.674497, + 13.2815508 + ], + [ + 52.6742574, + 13.2804053 + ], + [ + 52.6739693, + 13.2790284 + ], + [ + 52.6739153, + 13.2787788 + ], + [ + 52.6736926, + 13.2777487 + ] + ] + }, + { + "osmId": "118759062", + "name": null, + "lengthMeters": 5156.565945468944, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6485772, + 13.3991749 + ], + [ + 52.6485251, + 13.3992616 + ], + [ + 52.64796, + 13.4002018 + ], + [ + 52.6462602, + 13.4030456 + ], + [ + 52.6442995, + 13.4063264 + ], + [ + 52.6430606, + 13.4083992 + ], + [ + 52.6415041, + 13.4109754 + ], + [ + 52.6395722, + 13.4142033 + ], + [ + 52.6384968, + 13.4159776 + ], + [ + 52.636681, + 13.4188225 + ], + [ + 52.6353066, + 13.420887 + ], + [ + 52.6346021, + 13.4219084 + ], + [ + 52.6338937, + 13.4229129 + ], + [ + 52.6333952, + 13.4235911 + ], + [ + 52.6330247, + 13.424048 + ], + [ + 52.6317155, + 13.4258146 + ], + [ + 52.6313472, + 13.4263277 + ], + [ + 52.6295422, + 13.4288077 + ], + [ + 52.623841, + 13.4365382 + ], + [ + 52.6234454, + 13.4370754 + ], + [ + 52.6198423, + 13.4419542 + ], + [ + 52.6189609, + 13.4430637 + ], + [ + 52.6174022, + 13.445174 + ], + [ + 52.6169677, + 13.445804 + ], + [ + 52.6165276, + 13.4464461 + ], + [ + 52.6163866, + 13.4466444 + ], + [ + 52.6149225, + 13.4486254 + ], + [ + 52.6147367, + 13.4488858 + ], + [ + 52.6145545, + 13.4491529 + ], + [ + 52.6143925, + 13.4493971 + ], + [ + 52.6139974, + 13.4499589 + ] + ] + }, + { + "osmId": "118821346", + "name": "Stettiner Bahn", + "lengthMeters": 139.1912313091087, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5981104, + 13.4509072 + ], + [ + 52.5979159, + 13.4506982 + ], + [ + 52.5978954, + 13.4506761 + ], + [ + 52.5970657, + 13.4497719 + ] + ] + }, + { + "osmId": "118823569", + "name": "Stettiner Bahn", + "lengthMeters": 241.45551569849346, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6110286, + 13.4650185 + ], + [ + 52.611031, + 13.4650216 + ], + [ + 52.6114922, + 13.4656119 + ], + [ + 52.612043, + 13.4662947 + ], + [ + 52.6124005, + 13.4667101 + ], + [ + 52.6127796, + 13.4671315 + ] + ] + }, + { + "osmId": "118823817", + "name": "Stettiner Bahn", + "lengthMeters": 157.66207768897408, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6145682, + 13.4690659 + ], + [ + 52.6149304, + 13.4694572 + ], + [ + 52.6151048, + 13.4696454 + ], + [ + 52.6152674, + 13.4698207 + ], + [ + 52.6157428, + 13.4703342 + ], + [ + 52.6157538, + 13.4703467 + ] + ] + }, + { + "osmId": "118823818", + "name": "Stettiner Bahn", + "lengthMeters": 531.499621333035, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6214461, + 13.4765474 + ], + [ + 52.6225991, + 13.4777639 + ], + [ + 52.623125, + 13.4783103 + ], + [ + 52.6236724, + 13.4788751 + ], + [ + 52.6241957, + 13.479422 + ], + [ + 52.6242803, + 13.4795182 + ], + [ + 52.6245697, + 13.4798242 + ], + [ + 52.6254707, + 13.4807949 + ] + ] + }, + { + "osmId": "118823819", + "name": "Stettiner Bahn", + "lengthMeters": 82.20268844264606, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6174173, + 13.4721033 + ], + [ + 52.617893, + 13.4726259 + ], + [ + 52.6179969, + 13.4727426 + ], + [ + 52.6180318, + 13.4727802 + ] + ] + }, + { + "osmId": "118826572", + "name": null, + "lengthMeters": 452.64034759537856, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6301912, + 13.4855998 + ], + [ + 52.6292218, + 13.4845696 + ], + [ + 52.6284997, + 13.4838022 + ], + [ + 52.6270365, + 13.4822198 + ], + [ + 52.6267794, + 13.4819418 + ] + ] + }, + { + "osmId": "118826573", + "name": "Stettiner Bahn", + "lengthMeters": 835.449593328255, + "maxSpeedKph": 120.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.630254, + 13.4859176 + ], + [ + 52.630422, + 13.4860955 + ], + [ + 52.6314352, + 13.4871687 + ], + [ + 52.631467, + 13.4872023 + ], + [ + 52.6316826, + 13.4874303 + ], + [ + 52.6342926, + 13.4901897 + ], + [ + 52.6348977, + 13.4908271 + ], + [ + 52.6355197, + 13.4915354 + ], + [ + 52.6360877, + 13.4922488 + ], + [ + 52.6362693, + 13.4924947 + ], + [ + 52.6364938, + 13.4927987 + ] + ] + }, + { + "osmId": "118826574", + "name": "Stettiner Bahn", + "lengthMeters": 836.2798755612392, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6365266, + 13.4927545 + ], + [ + 52.6362935, + 13.492443 + ], + [ + 52.6361128, + 13.4922016 + ], + [ + 52.6355268, + 13.4914605 + ], + [ + 52.6349141, + 13.4907635 + ], + [ + 52.6343148, + 13.4901347 + ], + [ + 52.631701, + 13.487371 + ], + [ + 52.6314895, + 13.4871473 + ], + [ + 52.6314566, + 13.4871125 + ], + [ + 52.6302822, + 13.4858622 + ] + ] + }, + { + "osmId": "118828060", + "name": "Stettiner Bahn", + "lengthMeters": 695.6259314909322, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6497614, + 13.5158503 + ], + [ + 52.6477007, + 13.5120136 + ], + [ + 52.6476472, + 13.511914 + ], + [ + 52.6467651, + 13.5102676 + ], + [ + 52.6456045, + 13.5081448 + ] + ] + }, + { + "osmId": "118828061", + "name": "Stettiner Bahn", + "lengthMeters": 833.5932007330499, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.654889, + 13.5252903 + ], + [ + 52.6536682, + 13.5230567 + ], + [ + 52.6523706, + 13.5206826 + ], + [ + 52.6502245, + 13.5167131 + ], + [ + 52.6500601, + 13.5164068 + ], + [ + 52.6498875, + 13.5160851 + ] + ] + }, + { + "osmId": "118828064", + "name": "Stettiner Bahn", + "lengthMeters": 836.9088294394037, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6498612, + 13.5161273 + ], + [ + 52.6499982, + 13.5163852 + ], + [ + 52.6501955, + 13.5167564 + ], + [ + 52.652341, + 13.5207248 + ], + [ + 52.6536444, + 13.5231051 + ], + [ + 52.6548804, + 13.5253723 + ] + ] + }, + { + "osmId": "118828072", + "name": null, + "lengthMeters": 85.28639967120999, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6374039, + 13.4937506 + ], + [ + 52.6371905, + 13.4934038 + ], + [ + 52.6371593, + 13.4933531 + ], + [ + 52.6368595, + 13.4928603 + ] + ] + }, + { + "osmId": "118828073", + "name": "Stettiner Bahn", + "lengthMeters": 695.1738188569195, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.645578, + 13.5081865 + ], + [ + 52.6467421, + 13.5103116 + ], + [ + 52.6470726, + 13.510937 + ], + [ + 52.6482171, + 13.5130676 + ], + [ + 52.6497318, + 13.5158875 + ] + ] + }, + { + "osmId": "118828074", + "name": null, + "lengthMeters": 824.7530006654914, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6499485, + 13.5160008 + ], + [ + 52.6502609, + 13.5166373 + ], + [ + 52.6524057, + 13.5206319 + ], + [ + 52.6530901, + 13.5218719 + ], + [ + 52.6537104, + 13.5229958 + ], + [ + 52.6548924, + 13.5251132 + ] + ] + }, + { + "osmId": "118828075", + "name": null, + "lengthMeters": 301.9095835519355, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6367661, + 13.4929848 + ], + [ + 52.6371115, + 13.4933713 + ], + [ + 52.6374039, + 13.4937506 + ], + [ + 52.6376627, + 13.4941127 + ], + [ + 52.6381014, + 13.4947264 + ], + [ + 52.6387881, + 13.4957691 + ], + [ + 52.6388451, + 13.4958538 + ] + ] + }, + { + "osmId": "118828077", + "name": "Stettiner Bahn", + "lengthMeters": 877.3220248893939, + "maxSpeedKph": 120.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.6402268, + 13.4984597 + ], + [ + 52.6408446, + 13.4995974 + ], + [ + 52.6414345, + 13.5006782 + ], + [ + 52.6427414, + 13.5030862 + ], + [ + 52.6440795, + 13.5054956 + ], + [ + 52.6449453, + 13.5070497 + ], + [ + 52.6454887, + 13.5080251 + ], + [ + 52.6455262, + 13.5080927 + ] + ] + }, + { + "osmId": "118828078", + "name": "Stettiner Bahn", + "lengthMeters": 534.5675407412512, + "maxSpeedKph": 120.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.6366222, + 13.4929658 + ], + [ + 52.6372854, + 13.4938528 + ], + [ + 52.6378553, + 13.4946806 + ], + [ + 52.6383521, + 13.495425 + ], + [ + 52.6387982, + 13.4960873 + ], + [ + 52.6389682, + 13.4963477 + ], + [ + 52.6393075, + 13.4968675 + ], + [ + 52.6397089, + 13.4975337 + ], + [ + 52.6401556, + 13.4983268 + ] + ] + }, + { + "osmId": "118828079", + "name": null, + "lengthMeters": 166.5728666793955, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6481261, + 13.512412 + ], + [ + 52.6481514, + 13.5124568 + ], + [ + 52.6483734, + 13.5128495 + ], + [ + 52.6483785, + 13.512859 + ], + [ + 52.6484983, + 13.5130832 + ], + [ + 52.6486244, + 13.5133191 + ], + [ + 52.6486718, + 13.513413 + ], + [ + 52.648836, + 13.5137262 + ], + [ + 52.6490562, + 13.5141444 + ], + [ + 52.6491097, + 13.514246 + ], + [ + 52.649118, + 13.5142619 + ] + ] + }, + { + "osmId": "118828620", + "name": "Stettiner Bahn", + "lengthMeters": 90.4130461834611, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.625662, + 13.4809998 + ], + [ + 52.6263428, + 13.4817322 + ] + ] + }, + { + "osmId": "118828621", + "name": "Stettiner Bahn", + "lengthMeters": 452.6076161681416, + "maxSpeedKph": 120.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.6267101, + 13.4821186 + ], + [ + 52.6284286, + 13.4839683 + ], + [ + 52.628799, + 13.4843631 + ], + [ + 52.6301226, + 13.485774 + ] + ] + }, + { + "osmId": "118832962", + "name": "Stettiner Bahn", + "lengthMeters": 680.4107181560041, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6590654, + 13.5330091 + ], + [ + 52.6580937, + 13.5311921 + ], + [ + 52.6563186, + 13.5279335 + ], + [ + 52.6557078, + 13.5268123 + ], + [ + 52.6549927, + 13.5254804 + ] + ] + }, + { + "osmId": "118832963", + "name": "Stettiner Bahn", + "lengthMeters": 1748.7510971859654, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6667948, + 13.5583655 + ], + [ + 52.6677878, + 13.5625637 + ], + [ + 52.6678696, + 13.5629068 + ], + [ + 52.6684742, + 13.565432 + ], + [ + 52.6690575, + 13.5678825 + ], + [ + 52.6698732, + 13.5712868 + ], + [ + 52.6701298, + 13.5723658 + ], + [ + 52.6705699, + 13.5742163 + ], + [ + 52.6710453, + 13.5762157 + ], + [ + 52.6711232, + 13.5765432 + ], + [ + 52.6717111, + 13.5790154 + ], + [ + 52.6722692, + 13.5813374 + ], + [ + 52.6722728, + 13.5813524 + ], + [ + 52.6725542, + 13.5824982 + ] + ] + }, + { + "osmId": "118832964", + "name": "Stettiner Bahn", + "lengthMeters": 449.07319886584, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.672932, + 13.5840091 + ], + [ + 52.6730135, + 13.5843329 + ], + [ + 52.6734339, + 13.5860028 + ], + [ + 52.6738645, + 13.5876767 + ], + [ + 52.6741692, + 13.5887781 + ], + [ + 52.6743203, + 13.58927 + ], + [ + 52.6744694, + 13.5897217 + ], + [ + 52.6745039, + 13.5898262 + ], + [ + 52.6745881, + 13.5900787 + ] + ] + }, + { + "osmId": "118832965", + "name": "Stettiner Bahn", + "lengthMeters": 564.9118165168345, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6591254, + 13.5332345 + ], + [ + 52.6592116, + 13.5333939 + ], + [ + 52.659896, + 13.5346592 + ], + [ + 52.6603605, + 13.5354851 + ], + [ + 52.6608783, + 13.5364294 + ], + [ + 52.6610654, + 13.5367854 + ], + [ + 52.6612649, + 13.5371788 + ], + [ + 52.6614309, + 13.5375329 + ], + [ + 52.661574, + 13.5378476 + ], + [ + 52.6617431, + 13.5382455 + ], + [ + 52.6617961, + 13.5383832 + ], + [ + 52.6619034, + 13.5386623 + ], + [ + 52.6620569, + 13.5390841 + ], + [ + 52.6621963, + 13.5395012 + ], + [ + 52.6622801, + 13.5397626 + ] + ] + }, + { + "osmId": "118832978", + "name": "Stettiner Bahn", + "lengthMeters": 676.08680133775, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6549886, + 13.525573 + ], + [ + 52.655063, + 13.5257118 + ], + [ + 52.655362, + 13.5262691 + ], + [ + 52.6556786, + 13.5268592 + ], + [ + 52.656289, + 13.5279771 + ], + [ + 52.6580679, + 13.5312348 + ], + [ + 52.6590308, + 13.5330604 + ] + ] + }, + { + "osmId": "118832980", + "name": null, + "lengthMeters": 497.34233932658276, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6550254, + 13.5253666 + ], + [ + 52.655748, + 13.5267532 + ], + [ + 52.6572749, + 13.5295724 + ], + [ + 52.6579992, + 13.5308736 + ] + ] + }, + { + "osmId": "119455490", + "name": null, + "lengthMeters": 443.7904460868448, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5081316, + 13.4738345 + ], + [ + 52.508812, + 13.4744843 + ], + [ + 52.5094724, + 13.4751122 + ], + [ + 52.5096957, + 13.4753051 + ], + [ + 52.5097217, + 13.4753262 + ], + [ + 52.5098625, + 13.4754282 + ], + [ + 52.5100087, + 13.4755226 + ], + [ + 52.5102191, + 13.4756394 + ], + [ + 52.5104298, + 13.4757316 + ], + [ + 52.5105908, + 13.4757909 + ], + [ + 52.5107505, + 13.4758264 + ], + [ + 52.5109108, + 13.4758453 + ], + [ + 52.5110557, + 13.4758516 + ], + [ + 52.5113108, + 13.4758351 + ], + [ + 52.5115336, + 13.4758181 + ], + [ + 52.5118301, + 13.4757603 + ] + ] + }, + { + "osmId": "119455510", + "name": null, + "lengthMeters": 346.91428310849585, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5067595, + 13.4734215 + ], + [ + 52.5067915, + 13.4735173 + ], + [ + 52.5068571, + 13.4737423 + ], + [ + 52.5069188, + 13.4739762 + ], + [ + 52.5069858, + 13.4742622 + ], + [ + 52.5070501, + 13.4746046 + ], + [ + 52.5070948, + 13.4748963 + ], + [ + 52.5071309, + 13.4752205 + ], + [ + 52.5071564, + 13.4755774 + ], + [ + 52.5071686, + 13.4758286 + ], + [ + 52.5071693, + 13.4761796 + ], + [ + 52.5071605, + 13.4764948 + ], + [ + 52.5071499, + 13.476637 + ], + [ + 52.5071313, + 13.4768875 + ], + [ + 52.507095, + 13.4772094 + ], + [ + 52.507035, + 13.4775993 + ], + [ + 52.5069699, + 13.4779193 + ], + [ + 52.5069321, + 13.4780854 + ], + [ + 52.5068559, + 13.4783571 + ] + ] + }, + { + "osmId": "119455524", + "name": null, + "lengthMeters": 109.618893108234, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953357, + 13.4633095 + ], + [ + 52.4951641, + 13.4630666 + ], + [ + 52.4950391, + 13.4629182 + ], + [ + 52.4949246, + 13.4627937 + ], + [ + 52.4947964, + 13.4626689 + ], + [ + 52.4946516, + 13.4625341 + ], + [ + 52.4945187, + 13.462412 + ] + ] + }, + { + "osmId": "119455526", + "name": null, + "lengthMeters": 179.96602262222805, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5052436, + 13.4710109 + ], + [ + 52.5050374, + 13.4708059 + ], + [ + 52.5048699, + 13.4706565 + ], + [ + 52.5047242, + 13.4705342 + ], + [ + 52.5044817, + 13.4703571 + ], + [ + 52.5043044, + 13.4702366 + ], + [ + 52.5041124, + 13.4701233 + ], + [ + 52.504077, + 13.4701042 + ], + [ + 52.5039583, + 13.4700401 + ], + [ + 52.5037685, + 13.4699377 + ] + ] + }, + { + "osmId": "120208437", + "name": null, + "lengthMeters": 102.41229684958522, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1654352, + 11.4936909 + ], + [ + 48.1654354, + 11.4937755 + ], + [ + 48.1654383, + 11.4938298 + ], + [ + 48.165442, + 11.4938713 + ], + [ + 48.1654499, + 11.4939486 + ], + [ + 48.1654554, + 11.494025 + ], + [ + 48.1654557, + 11.4940912 + ], + [ + 48.1654504, + 11.4941862 + ], + [ + 48.1654103, + 11.4947125 + ], + [ + 48.1654023, + 11.494788 + ], + [ + 48.1653978, + 11.4948119 + ], + [ + 48.1653926, + 11.4948384 + ], + [ + 48.1653862, + 11.4948636 + ], + [ + 48.1653752, + 11.4949096 + ], + [ + 48.1653651, + 11.4949474 + ], + [ + 48.1653531, + 11.4949863 + ], + [ + 48.1653336, + 11.4950447 + ] + ] + }, + { + "osmId": "121380692", + "name": null, + "lengthMeters": 1031.342885456003, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5851263, + 9.7239142 + ], + [ + 53.5851445, + 9.7246186 + ], + [ + 53.5851728, + 9.7250015 + ], + [ + 53.5852242, + 9.7256982 + ], + [ + 53.5852497, + 9.7260738 + ], + [ + 53.5852574, + 9.7264753 + ], + [ + 53.5852371, + 9.7270157 + ], + [ + 53.5851591, + 9.7277375 + ], + [ + 53.5850857, + 9.7283333 + ], + [ + 53.5850617, + 9.7285137 + ], + [ + 53.584988, + 9.7291906 + ], + [ + 53.5849576, + 9.7297737 + ], + [ + 53.5849543, + 9.7302065 + ], + [ + 53.5849609, + 9.7306057 + ], + [ + 53.5850217, + 9.7314818 + ], + [ + 53.5851478, + 9.732537 + ], + [ + 53.585376, + 9.7345479 + ], + [ + 53.5856337, + 9.7366731 + ], + [ + 53.5858049, + 9.7383757 + ], + [ + 53.5858254, + 9.7387061 + ], + [ + 53.5858401, + 9.7390233 + ], + [ + 53.5858368, + 9.7393487 + ] + ] + }, + { + "osmId": "121380696", + "name": "City-S-Bahn", + "lengthMeters": 380.0515071925772, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5563628, + 9.9345652 + ], + [ + 53.5565274, + 9.9345022 + ], + [ + 53.5567911, + 9.9343906 + ], + [ + 53.5571258, + 9.9342113 + ], + [ + 53.5575411, + 9.9339403 + ], + [ + 53.5577255, + 9.9337941 + ], + [ + 53.5580428, + 9.9335043 + ], + [ + 53.55863, + 9.9329183 + ], + [ + 53.5589988, + 9.9325881 + ], + [ + 53.5592511, + 9.9324173 + ], + [ + 53.5594851, + 9.9323042 + ] + ] + }, + { + "osmId": "121421955", + "name": null, + "lengthMeters": 322.79373471922673, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080809, + 13.4735585 + ], + [ + 52.5078614, + 13.4733495 + ], + [ + 52.5074947, + 13.4730005 + ], + [ + 52.5073422, + 13.4728544 + ], + [ + 52.50679, + 13.4723268 + ], + [ + 52.5067043, + 13.4722448 + ], + [ + 52.5061407, + 13.471702 + ], + [ + 52.505885, + 13.4714343 + ], + [ + 52.5058092, + 13.4713511 + ], + [ + 52.5057242, + 13.4712481 + ], + [ + 52.5055973, + 13.4710943 + ] + ] + }, + { + "osmId": "121421962", + "name": null, + "lengthMeters": 326.913434586653, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055223, + 13.4711811 + ], + [ + 52.5058105, + 13.4714568 + ], + [ + 52.505883, + 13.4715246 + ], + [ + 52.5061347, + 13.4717665 + ], + [ + 52.5062374, + 13.4718662 + ], + [ + 52.5073215, + 13.4728993 + ], + [ + 52.5073265, + 13.472904 + ], + [ + 52.5073385, + 13.4729154 + ], + [ + 52.5079169, + 13.4734666 + ], + [ + 52.5080645, + 13.4736073 + ] + ] + }, + { + "osmId": "121483958", + "name": "Tempelhofer Kurve", + "lengthMeters": 584.0086032092901, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.45685, + 13.3587939 + ], + [ + 52.4567657, + 13.3587492 + ], + [ + 52.4565508, + 13.3586519 + ], + [ + 52.4562091, + 13.3585277 + ], + [ + 52.4559135, + 13.3584268 + ], + [ + 52.4558332, + 13.3584023 + ], + [ + 52.4557225, + 13.3583769 + ], + [ + 52.4556119, + 13.3583563 + ], + [ + 52.4553514, + 13.3583158 + ], + [ + 52.4552082, + 13.3582962 + ], + [ + 52.4551365, + 13.3582905 + ], + [ + 52.4550658, + 13.3582891 + ], + [ + 52.4548757, + 13.3582966 + ], + [ + 52.4548487, + 13.3582982 + ], + [ + 52.4540294, + 13.3583541 + ], + [ + 52.4539335, + 13.3583618 + ], + [ + 52.4538381, + 13.3583743 + ], + [ + 52.4537595, + 13.3583893 + ], + [ + 52.4536814, + 13.3584082 + ], + [ + 52.4535423, + 13.3584492 + ], + [ + 52.4533731, + 13.3585154 + ], + [ + 52.4530762, + 13.3586478 + ], + [ + 52.4524383, + 13.3589266 + ], + [ + 52.4522726, + 13.3589979 + ], + [ + 52.4521994, + 13.3590321 + ], + [ + 52.4521261, + 13.3590689 + ], + [ + 52.452024, + 13.3591288 + ], + [ + 52.4519179, + 13.3591951 + ], + [ + 52.451831, + 13.3592533 + ], + [ + 52.4517138, + 13.3593298 + ] + ] + }, + { + "osmId": "122462010", + "name": null, + "lengthMeters": 509.18049858602546, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289108, + 13.4246177 + ], + [ + 52.5289319, + 13.4246435 + ], + [ + 52.5292424, + 13.4250239 + ], + [ + 52.5294413, + 13.4252346 + ], + [ + 52.5295784, + 13.4253633 + ], + [ + 52.5296466, + 13.4254371 + ], + [ + 52.5297432, + 13.4255135 + ], + [ + 52.5298249, + 13.425583 + ], + [ + 52.5299397, + 13.425683 + ], + [ + 52.5300215, + 13.4257647 + ], + [ + 52.5314657, + 13.427431 + ], + [ + 52.5316316, + 13.427615 + ], + [ + 52.5320591, + 13.4281332 + ], + [ + 52.5322901, + 13.4284852 + ], + [ + 52.5323913, + 13.4286132 + ], + [ + 52.5324521, + 13.428684 + ], + [ + 52.5326588, + 13.4289202 + ] + ] + }, + { + "osmId": "122462011", + "name": null, + "lengthMeters": 336.6166242104804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5323763, + 13.428655 + ], + [ + 52.5326415, + 13.4289666 + ], + [ + 52.5327449, + 13.4290859 + ], + [ + 52.5328755, + 13.4292465 + ], + [ + 52.5329477, + 13.4293566 + ], + [ + 52.5330265, + 13.4294755 + ], + [ + 52.5331047, + 13.4295915 + ], + [ + 52.5331476, + 13.4296545 + ], + [ + 52.5335781, + 13.4301575 + ], + [ + 52.5339999, + 13.4306469 + ], + [ + 52.534204, + 13.4308837 + ], + [ + 52.5342569, + 13.4309442 + ], + [ + 52.5348195, + 13.4315863 + ] + ] + }, + { + "osmId": "122463699", + "name": null, + "lengthMeters": 126.41935894409896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255791, + 13.3665798 + ], + [ + 52.5256256, + 13.3667302 + ], + [ + 52.5258137, + 13.3673327 + ], + [ + 52.5258439, + 13.3674326 + ], + [ + 52.5259052, + 13.3676345 + ], + [ + 52.5259842, + 13.367895 + ], + [ + 52.526002, + 13.3679553 + ], + [ + 52.5260415, + 13.3680839 + ], + [ + 52.5260709, + 13.3681794 + ], + [ + 52.526091, + 13.3682483 + ] + ] + }, + { + "osmId": "122871525", + "name": "Vogelfluglinie", + "lengthMeters": 375.4155362531448, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5663396, + 10.0621469 + ], + [ + 53.5662974, + 10.0619899 + ], + [ + 53.5662349, + 10.061773 + ], + [ + 53.5661647, + 10.061543 + ], + [ + 53.5661058, + 10.0613604 + ], + [ + 53.566027, + 10.0611391 + ], + [ + 53.565907, + 10.0607921 + ], + [ + 53.5658061, + 10.0604997 + ], + [ + 53.5657298, + 10.0602651 + ], + [ + 53.5656493, + 10.0599825 + ], + [ + 53.5651944, + 10.0581759 + ], + [ + 53.5650526, + 10.0576237 + ], + [ + 53.5648964, + 10.0570157 + ] + ] + }, + { + "osmId": "123222141", + "name": null, + "lengthMeters": 76.31519526561283, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6613376, + 10.2859184 + ], + [ + 53.6617476, + 10.2862222 + ], + [ + 53.6618871, + 10.2863379 + ], + [ + 53.6619617, + 10.2863997 + ] + ] + }, + { + "osmId": "123222142", + "name": null, + "lengthMeters": 1381.3868710543234, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6280593, + 10.1411094 + ], + [ + 53.6282759, + 10.1413556 + ], + [ + 53.6284565, + 10.1415608 + ], + [ + 53.6287873, + 10.141981 + ], + [ + 53.6317149, + 10.1461708 + ], + [ + 53.6351075, + 10.1510263 + ], + [ + 53.6375783, + 10.1545629 + ] + ] + }, + { + "osmId": "123222144", + "name": null, + "lengthMeters": 291.0699499268308, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6519168, + 10.1638935 + ], + [ + 53.6521102, + 10.1639601 + ], + [ + 53.6522254, + 10.1640054 + ], + [ + 53.6525802, + 10.164105 + ], + [ + 53.6527455, + 10.1641429 + ], + [ + 53.6529383, + 10.1641585 + ], + [ + 53.6531038, + 10.1641529 + ], + [ + 53.6533013, + 10.1641172 + ], + [ + 53.6534612, + 10.1640735 + ], + [ + 53.6536475, + 10.1640154 + ], + [ + 53.6537841, + 10.1639677 + ], + [ + 53.6540079, + 10.163841 + ], + [ + 53.6542241, + 10.1636826 + ], + [ + 53.6544493, + 10.1634786 + ] + ] + }, + { + "osmId": "123751957", + "name": null, + "lengthMeters": 197.36354038374168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6615082, + 10.2407132 + ], + [ + 53.6614544, + 10.2411082 + ], + [ + 53.6614534, + 10.2411161 + ], + [ + 53.6614392, + 10.2412203 + ], + [ + 53.6613014, + 10.2422323 + ], + [ + 53.6612, + 10.2429567 + ], + [ + 53.6611973, + 10.2429761 + ], + [ + 53.661185, + 10.2430734 + ], + [ + 53.6611252, + 10.2435051 + ], + [ + 53.6611077, + 10.2436313 + ] + ] + }, + { + "osmId": "123751958", + "name": null, + "lengthMeters": 718.4035419987524, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6583938, + 10.2503893 + ], + [ + 53.6566323, + 10.2537827 + ], + [ + 53.6565852, + 10.2538708 + ], + [ + 53.6563338, + 10.2543547 + ], + [ + 53.6557264, + 10.2555813 + ], + [ + 53.6547061, + 10.257642 + ], + [ + 53.6542945, + 10.2584863 + ], + [ + 53.6541998, + 10.2586807 + ] + ] + }, + { + "osmId": "124703501", + "name": null, + "lengthMeters": 338.8393698626281, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3733231, + 13.1116438 + ], + [ + 52.3733342, + 13.1116133 + ], + [ + 52.3735087, + 13.1111327 + ], + [ + 52.3735206, + 13.1110978 + ], + [ + 52.3735296, + 13.1110736 + ], + [ + 52.3735298, + 13.1110729 + ], + [ + 52.3735475, + 13.1110222 + ], + [ + 52.3735942, + 13.1108799 + ], + [ + 52.3737479, + 13.110457 + ], + [ + 52.3738182, + 13.110267 + ], + [ + 52.3738865, + 13.1100769 + ], + [ + 52.3739765, + 13.1098179 + ], + [ + 52.3740459, + 13.1095898 + ], + [ + 52.3740924, + 13.1094149 + ], + [ + 52.3741399, + 13.1092049 + ], + [ + 52.3741703, + 13.1090391 + ], + [ + 52.374197, + 13.1088372 + ], + [ + 52.3742144, + 13.1086785 + ], + [ + 52.3742262, + 13.1084193 + ], + [ + 52.3742274, + 13.1082412 + ], + [ + 52.3742245, + 13.1080712 + ], + [ + 52.3742159, + 13.1079144 + ], + [ + 52.3741978, + 13.1077287 + ], + [ + 52.3741869, + 13.1076475 + ], + [ + 52.3741344, + 13.1073212 + ], + [ + 52.3740721, + 13.1070497 + ] + ] + }, + { + "osmId": "124703502", + "name": null, + "lengthMeters": 391.190695476713, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3726488, + 13.1186154 + ], + [ + 52.3726049, + 13.118554 + ], + [ + 52.3725525, + 13.1184785 + ], + [ + 52.3724536, + 13.1183252 + ], + [ + 52.3723905, + 13.1182119 + ], + [ + 52.3723316, + 13.1180949 + ], + [ + 52.3722184, + 13.1178477 + ], + [ + 52.3721445, + 13.117618 + ], + [ + 52.3721157, + 13.1175232 + ], + [ + 52.3720743, + 13.1173672 + ], + [ + 52.3720372, + 13.117197 + ], + [ + 52.3720094, + 13.117046 + ], + [ + 52.3719917, + 13.1169291 + ], + [ + 52.3719723, + 13.1167646 + ], + [ + 52.3719583, + 13.1166056 + ], + [ + 52.3719501, + 13.1164346 + ], + [ + 52.3719475, + 13.1162587 + ], + [ + 52.3719598, + 13.1159391 + ], + [ + 52.3719936, + 13.1156276 + ], + [ + 52.3720447, + 13.115335 + ], + [ + 52.3721455, + 13.1149433 + ], + [ + 52.3722916, + 13.1145025 + ], + [ + 52.3725285, + 13.1138453 + ], + [ + 52.3726575, + 13.1134876 + ] + ] + }, + { + "osmId": "124703503", + "name": null, + "lengthMeters": 145.41327938421617, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3726575, + 13.1134876 + ], + [ + 52.3733231, + 13.1116438 + ] + ] + }, + { + "osmId": "124703504", + "name": null, + "lengthMeters": 322.3563460200469, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.357853, + 13.1372046 + ], + [ + 52.3578242, + 13.1371898 + ], + [ + 52.3578099, + 13.1371785 + ], + [ + 52.3577898, + 13.1371643 + ], + [ + 52.3577693, + 13.1371464 + ], + [ + 52.357735, + 13.1371066 + ], + [ + 52.3577142, + 13.1370782 + ], + [ + 52.357688, + 13.137037 + ], + [ + 52.3576667, + 13.1369973 + ], + [ + 52.3576543, + 13.136969 + ], + [ + 52.3575861, + 13.1367994 + ], + [ + 52.3575606, + 13.1367445 + ], + [ + 52.3575414, + 13.1367088 + ], + [ + 52.3575225, + 13.1366797 + ], + [ + 52.3575031, + 13.1366522 + ], + [ + 52.3574798, + 13.136623 + ], + [ + 52.3574585, + 13.1365998 + ], + [ + 52.35743, + 13.1365746 + ], + [ + 52.3574062, + 13.1365576 + ], + [ + 52.3573733, + 13.1365366 + ], + [ + 52.3573565, + 13.1365286 + ], + [ + 52.357334, + 13.1365198 + ], + [ + 52.357309, + 13.1365121 + ], + [ + 52.3572907, + 13.1365091 + ], + [ + 52.3572712, + 13.1365066 + ], + [ + 52.3572433, + 13.1365057 + ], + [ + 52.3572102, + 13.1365093 + ], + [ + 52.3571841, + 13.1365143 + ], + [ + 52.3571543, + 13.1365237 + ], + [ + 52.3570597, + 13.1365666 + ], + [ + 52.3569878, + 13.1366202 + ], + [ + 52.3569323, + 13.1366787 + ], + [ + 52.3568801, + 13.136754 + ], + [ + 52.3568444, + 13.1368283 + ], + [ + 52.3568182, + 13.1369426 + ], + [ + 52.356815, + 13.1370838 + ], + [ + 52.3568129, + 13.1373604 + ], + [ + 52.356819, + 13.1375121 + ], + [ + 52.3568415, + 13.1375957 + ], + [ + 52.3568986, + 13.1377304 + ], + [ + 52.3569688, + 13.1378123 + ], + [ + 52.3570753, + 13.1378817 + ], + [ + 52.357186, + 13.1379386 + ], + [ + 52.3572301, + 13.1379457 + ], + [ + 52.3572546, + 13.1379459 + ], + [ + 52.3572837, + 13.1379427 + ], + [ + 52.3573294, + 13.1379326 + ], + [ + 52.3573555, + 13.1379223 + ], + [ + 52.3573806, + 13.1379108 + ], + [ + 52.3574151, + 13.1378883 + ], + [ + 52.3574366, + 13.1378707 + ], + [ + 52.3574571, + 13.1378508 + ], + [ + 52.3574842, + 13.1378227 + ], + [ + 52.3575115, + 13.1377857 + ], + [ + 52.3575321, + 13.1377541 + ], + [ + 52.3575524, + 13.1377176 + ], + [ + 52.3575776, + 13.1376676 + ], + [ + 52.3576042, + 13.1376105 + ], + [ + 52.357633, + 13.1375391 + ], + [ + 52.3576567, + 13.1374873 + ], + [ + 52.3576807, + 13.1374466 + ], + [ + 52.3577034, + 13.137414 + ], + [ + 52.3577286, + 13.137382 + ], + [ + 52.3577456, + 13.1373651 + ], + [ + 52.3577753, + 13.1373398 + ], + [ + 52.3578054, + 13.137319 + ] + ] + }, + { + "osmId": "124890748", + "name": null, + "lengthMeters": 81.96106075123977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1329724, + 11.6102269 + ], + [ + 48.1328918, + 11.6102122 + ], + [ + 48.1328743, + 11.6102076 + ], + [ + 48.1328105, + 11.6101909 + ], + [ + 48.1327376, + 11.6101589 + ], + [ + 48.1326422, + 11.6101143 + ], + [ + 48.1326396, + 11.6101132 + ], + [ + 48.1325815, + 11.610085 + ], + [ + 48.1325016, + 11.6100442 + ], + [ + 48.1324603, + 11.6100253 + ], + [ + 48.1323653, + 11.6099628 + ], + [ + 48.132309, + 11.6099149 + ], + [ + 48.1322763, + 11.6098871 + ] + ] + }, + { + "osmId": "124890750", + "name": null, + "lengthMeters": 114.31445931145716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1293734, + 11.6055466 + ], + [ + 48.1286809, + 11.6045102 + ], + [ + 48.1286503, + 11.6044524 + ] + ] + }, + { + "osmId": "125226160", + "name": null, + "lengthMeters": 1404.5087706450706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1486676, + 11.5944867 + ], + [ + 48.14854, + 11.5943906 + ], + [ + 48.1484708, + 11.594332 + ], + [ + 48.1484014, + 11.594266 + ], + [ + 48.148358, + 11.5942222 + ], + [ + 48.1483025, + 11.5941599 + ], + [ + 48.1482141, + 11.5940431 + ], + [ + 48.1481866, + 11.5940074 + ], + [ + 48.1479201, + 11.593625 + ], + [ + 48.147866, + 11.593565 + ], + [ + 48.1478106, + 11.5935116 + ], + [ + 48.147794, + 11.5934977 + ], + [ + 48.1477007, + 11.5934196 + ], + [ + 48.1474721, + 11.5932445 + ], + [ + 48.1474031, + 11.593198 + ], + [ + 48.1473048, + 11.5931318 + ], + [ + 48.1471414, + 11.593049 + ], + [ + 48.1467677, + 11.5929273 + ], + [ + 48.1467114, + 11.5929174 + ], + [ + 48.1466573, + 11.5929129 + ], + [ + 48.1466117, + 11.5929182 + ], + [ + 48.1465651, + 11.5929315 + ], + [ + 48.1465101, + 11.5929421 + ], + [ + 48.1464491, + 11.5929526 + ], + [ + 48.1463756, + 11.5929664 + ], + [ + 48.1463079, + 11.59296 + ], + [ + 48.1462397, + 11.592948 + ], + [ + 48.1461026, + 11.59286 + ], + [ + 48.1459681, + 11.5927648 + ], + [ + 48.1457189, + 11.5925945 + ], + [ + 48.1455972, + 11.5925041 + ], + [ + 48.1454743, + 11.5923989 + ], + [ + 48.1453361, + 11.5922798 + ], + [ + 48.1452234, + 11.5921743 + ], + [ + 48.1451009, + 11.5920519 + ], + [ + 48.1449823, + 11.5919235 + ], + [ + 48.1448717, + 11.5917885 + ], + [ + 48.1447645, + 11.5916512 + ], + [ + 48.1446579, + 11.5915055 + ], + [ + 48.144552, + 11.5913544 + ], + [ + 48.1445081, + 11.5912852 + ], + [ + 48.1443069, + 11.5909688 + ], + [ + 48.1442421, + 11.5908585 + ], + [ + 48.1441711, + 11.5907286 + ], + [ + 48.1441034, + 11.5905901 + ], + [ + 48.1440373, + 11.5904542 + ], + [ + 48.143974, + 11.5903109 + ], + [ + 48.1438949, + 11.5901245 + ], + [ + 48.1438194, + 11.5899384 + ], + [ + 48.143745, + 11.5897456 + ], + [ + 48.1436731, + 11.5895535 + ], + [ + 48.1436157, + 11.5893972 + ], + [ + 48.1435573, + 11.5892428 + ], + [ + 48.143434, + 11.5888733 + ], + [ + 48.1434016, + 11.5887809 + ], + [ + 48.1433867, + 11.5887444 + ], + [ + 48.1433689, + 11.588706 + ], + [ + 48.1433479, + 11.5886671 + ], + [ + 48.1433274, + 11.5886347 + ], + [ + 48.1433068, + 11.5886061 + ], + [ + 48.1432876, + 11.5885813 + ], + [ + 48.143272, + 11.588564 + ], + [ + 48.1432529, + 11.5885454 + ], + [ + 48.1432294, + 11.5885247 + ], + [ + 48.1432084, + 11.5885083 + ], + [ + 48.1431866, + 11.5884924 + ], + [ + 48.1431683, + 11.5884806 + ], + [ + 48.1431497, + 11.5884704 + ], + [ + 48.1431206, + 11.5884589 + ], + [ + 48.143101, + 11.5884531 + ], + [ + 48.1430858, + 11.5884491 + ], + [ + 48.1430597, + 11.5884439 + ], + [ + 48.1430349, + 11.588441 + ], + [ + 48.1430044, + 11.5884394 + ], + [ + 48.1429421, + 11.5884364 + ], + [ + 48.1429121, + 11.5884432 + ], + [ + 48.142784, + 11.5884537 + ], + [ + 48.1425902, + 11.5884725 + ], + [ + 48.142438, + 11.5884829 + ], + [ + 48.1422851, + 11.5885005 + ], + [ + 48.1421546, + 11.5885173 + ], + [ + 48.1420412, + 11.58854 + ], + [ + 48.1419805, + 11.5885513 + ], + [ + 48.1419154, + 11.588569 + ], + [ + 48.1418556, + 11.5885886 + ], + [ + 48.1418015, + 11.5886045 + ], + [ + 48.141284, + 11.5887725 + ], + [ + 48.1412505, + 11.5887843 + ], + [ + 48.1411705, + 11.5888125 + ], + [ + 48.1411312, + 11.5888214 + ], + [ + 48.1410398, + 11.5888236 + ], + [ + 48.141022, + 11.5888234 + ], + [ + 48.1409704, + 11.5888225 + ], + [ + 48.1409247, + 11.5888113 + ], + [ + 48.1408801, + 11.5888023 + ], + [ + 48.1401963, + 11.5885915 + ], + [ + 48.1401227, + 11.5885688 + ], + [ + 48.1399851, + 11.5885187 + ], + [ + 48.1399479, + 11.5885069 + ], + [ + 48.1399131, + 11.5884965 + ], + [ + 48.1398771, + 11.5884928 + ], + [ + 48.1398428, + 11.5884893 + ], + [ + 48.1398104, + 11.5884914 + ], + [ + 48.1397773, + 11.5885028 + ], + [ + 48.1397439, + 11.5885176 + ], + [ + 48.1395932, + 11.588581 + ], + [ + 48.1395324, + 11.5886069 + ], + [ + 48.1394491, + 11.5886424 + ], + [ + 48.1393332, + 11.5886865 + ], + [ + 48.1392939, + 11.5886966 + ], + [ + 48.139275, + 11.5887014 + ], + [ + 48.1392291, + 11.5887106 + ], + [ + 48.1391799, + 11.5887145 + ], + [ + 48.1391347, + 11.5887076 + ], + [ + 48.139083, + 11.5886947 + ], + [ + 48.1390427, + 11.588681 + ], + [ + 48.1383289, + 11.5883768 + ], + [ + 48.1379909, + 11.5882312 + ], + [ + 48.1379524, + 11.5882005 + ], + [ + 48.1379178, + 11.5881503 + ], + [ + 48.1379073, + 11.5881233 + ], + [ + 48.1378996, + 11.5881033 + ], + [ + 48.1378959, + 11.5880585 + ], + [ + 48.1378969, + 11.5879855 + ] + ] + }, + { + "osmId": "125226162", + "name": null, + "lengthMeters": 1199.5080952403491, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1395938, + 11.5886227 + ], + [ + 48.1397214, + 11.5885701 + ], + [ + 48.1397517, + 11.5885562 + ], + [ + 48.1397842, + 11.5885419 + ], + [ + 48.1398141, + 11.5885316 + ], + [ + 48.1398425, + 11.5885296 + ], + [ + 48.1398754, + 11.5885331 + ], + [ + 48.1399095, + 11.5885366 + ], + [ + 48.1399425, + 11.5885465 + ], + [ + 48.1399791, + 11.5885581 + ], + [ + 48.1401293, + 11.5886107 + ], + [ + 48.1401911, + 11.5886302 + ], + [ + 48.1408756, + 11.5888421 + ], + [ + 48.1409207, + 11.5888513 + ], + [ + 48.140967, + 11.5888626 + ], + [ + 48.1410218, + 11.58887 + ], + [ + 48.1410353, + 11.5888626 + ], + [ + 48.1410488, + 11.5888677 + ], + [ + 48.1411271, + 11.5888609 + ], + [ + 48.1411758, + 11.5888521 + ], + [ + 48.1412517, + 11.5888254 + ], + [ + 48.1412899, + 11.5888119 + ], + [ + 48.1418024, + 11.5886454 + ], + [ + 48.1418611, + 11.5886281 + ], + [ + 48.1419207, + 11.5886086 + ], + [ + 48.1419846, + 11.5885913 + ], + [ + 48.1420446, + 11.58858 + ], + [ + 48.1421576, + 11.5885575 + ], + [ + 48.1422873, + 11.5885407 + ], + [ + 48.1424396, + 11.5885233 + ], + [ + 48.1425897, + 11.588513 + ], + [ + 48.1428464, + 11.5884892 + ], + [ + 48.142937, + 11.5884817 + ], + [ + 48.1430156, + 11.5884811 + ], + [ + 48.1430365, + 11.5884827 + ], + [ + 48.1430481, + 11.5884835 + ], + [ + 48.1430779, + 11.5884888 + ], + [ + 48.1430977, + 11.5884956 + ], + [ + 48.143117, + 11.5885019 + ], + [ + 48.1431425, + 11.5885135 + ], + [ + 48.1431791, + 11.5885336 + ], + [ + 48.1432016, + 11.5885501 + ], + [ + 48.143225, + 11.5885694 + ], + [ + 48.1432489, + 11.588592 + ], + [ + 48.1432678, + 11.5886136 + ], + [ + 48.1432895, + 11.5886402 + ], + [ + 48.1433084, + 11.588668 + ], + [ + 48.1433243, + 11.5886931 + ], + [ + 48.1433443, + 11.5887295 + ], + [ + 48.1433597, + 11.5887614 + ], + [ + 48.143375, + 11.588796 + ], + [ + 48.1434082, + 11.5888865 + ], + [ + 48.1435335, + 11.5892574 + ], + [ + 48.1435899, + 11.589418 + ], + [ + 48.1436475, + 11.5895748 + ], + [ + 48.1437196, + 11.5897674 + ], + [ + 48.1437942, + 11.5899608 + ], + [ + 48.14387, + 11.5901477 + ], + [ + 48.1439495, + 11.5903348 + ], + [ + 48.1440133, + 11.5904792 + ], + [ + 48.1440797, + 11.590616 + ], + [ + 48.144148, + 11.5907555 + ], + [ + 48.1442197, + 11.590887 + ], + [ + 48.1442853, + 11.5909985 + ], + [ + 48.1444878, + 11.591317 + ], + [ + 48.1445313, + 11.5913854 + ], + [ + 48.144638, + 11.5915376 + ], + [ + 48.1447451, + 11.5916841 + ], + [ + 48.1448529, + 11.5918222 + ], + [ + 48.1449644, + 11.5919583 + ], + [ + 48.1450841, + 11.592088 + ], + [ + 48.1452078, + 11.5922115 + ], + [ + 48.1453233, + 11.5923195 + ], + [ + 48.1454595, + 11.5924368 + ], + [ + 48.1455834, + 11.5925429 + ], + [ + 48.1457063, + 11.5926341 + ], + [ + 48.1459563, + 11.592805 + ], + [ + 48.1462338, + 11.5929807 + ], + [ + 48.1463063, + 11.5929973 + ], + [ + 48.1463776, + 11.593002 + ], + [ + 48.1464517, + 11.5929925 + ], + [ + 48.146506, + 11.5929857 + ], + [ + 48.1465565, + 11.5929727 + ], + [ + 48.1466139, + 11.59296 + ], + [ + 48.146657, + 11.5929553 + ], + [ + 48.146709, + 11.5929597 + ], + [ + 48.146763, + 11.5929692 + ], + [ + 48.1471339, + 11.5930899 + ], + [ + 48.1472944, + 11.5931713 + ], + [ + 48.1473915, + 11.5932368 + ], + [ + 48.1474598, + 11.5932828 + ], + [ + 48.1476874, + 11.593457 + ], + [ + 48.1477818, + 11.5935361 + ], + [ + 48.147796, + 11.593548 + ], + [ + 48.1478499, + 11.5935999 + ], + [ + 48.1479018, + 11.5936575 + ], + [ + 48.1481675, + 11.5940387 + ], + [ + 48.148195, + 11.5940745 + ], + [ + 48.1482849, + 11.594193 + ], + [ + 48.1483416, + 11.5942568 + ], + [ + 48.1483859, + 11.5943015 + ], + [ + 48.1484562, + 11.5943683 + ], + [ + 48.1485262, + 11.5944277 + ], + [ + 48.1486871, + 11.5945453 + ] + ] + }, + { + "osmId": "125226166", + "name": null, + "lengthMeters": 567.6300926279696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.137309, + 11.5877467 + ], + [ + 48.1372742, + 11.5878341 + ], + [ + 48.1372511, + 11.5878533 + ], + [ + 48.1372151, + 11.5878708 + ], + [ + 48.1371713, + 11.5878741 + ], + [ + 48.1369525, + 11.5877798 + ], + [ + 48.1358362, + 11.5873084 + ], + [ + 48.1357805, + 11.5872747 + ], + [ + 48.1357259, + 11.5872331 + ], + [ + 48.1352243, + 11.5867523 + ], + [ + 48.1351876, + 11.5867159 + ], + [ + 48.1350435, + 11.5865836 + ], + [ + 48.1346001, + 11.5861634 + ], + [ + 48.1345553, + 11.5861195 + ], + [ + 48.1345217, + 11.5860738 + ], + [ + 48.1344953, + 11.5860241 + ], + [ + 48.1344702, + 11.5859518 + ], + [ + 48.1344589, + 11.5858852 + ], + [ + 48.1343668, + 11.5852669 + ], + [ + 48.1343363, + 11.585064 + ], + [ + 48.1341399, + 11.5837542 + ], + [ + 48.1341155, + 11.5835919 + ], + [ + 48.1340964, + 11.5834648 + ], + [ + 48.1340857, + 11.5833987 + ], + [ + 48.1340706, + 11.5833261 + ], + [ + 48.1340364, + 11.5831954 + ] + ] + }, + { + "osmId": "126050674", + "name": null, + "lengthMeters": 240.79186883187936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6574288, + 9.7944421 + ], + [ + 53.656777, + 9.7953819 + ], + [ + 53.6564008, + 9.7959365 + ], + [ + 53.6561763, + 9.7962642 + ], + [ + 53.6560104, + 9.796479 + ], + [ + 53.6557636, + 9.7967746 + ] + ] + }, + { + "osmId": "126050678", + "name": null, + "lengthMeters": 176.8754373613119, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6593546, + 9.7913865 + ], + [ + 53.6590424, + 9.7918539 + ], + [ + 53.6589776, + 9.7919481 + ], + [ + 53.6586811, + 9.7923791 + ], + [ + 53.6583026, + 9.7929298 + ], + [ + 53.6581513, + 9.7931419 + ] + ] + }, + { + "osmId": "126050683", + "name": null, + "lengthMeters": 86.90298767960796, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6575762, + 9.7940466 + ], + [ + 53.6577806, + 9.7937552 + ], + [ + 53.6579743, + 9.7934825 + ], + [ + 53.6581742, + 9.7931975 + ] + ] + }, + { + "osmId": "126050684", + "name": null, + "lengthMeters": 87.43020996255758, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6575762, + 9.7940466 + ], + [ + 53.657788, + 9.7937058 + ], + [ + 53.6579254, + 9.7934895 + ], + [ + 53.6581513, + 9.7931419 + ] + ] + }, + { + "osmId": "126050687", + "name": null, + "lengthMeters": 382.6485247879573, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6619528, + 9.7875795 + ], + [ + 53.6616756, + 9.7880013 + ], + [ + 53.6611283, + 9.7888338 + ], + [ + 53.6603127, + 9.789998 + ], + [ + 53.6601279, + 9.7902632 + ], + [ + 53.6600778, + 9.790337 + ], + [ + 53.659405, + 9.7913084 + ], + [ + 53.6593784, + 9.7913486 + ], + [ + 53.6593546, + 9.7913865 + ] + ] + }, + { + "osmId": "126550695", + "name": "Pr\u00fcfgleis Alstom", + "lengthMeters": 3402.361709334471, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6541067, + 13.2034257 + ], + [ + 52.6546921, + 13.2034039 + ], + [ + 52.6550421, + 13.2033889 + ], + [ + 52.6564829, + 13.2033258 + ], + [ + 52.6578249, + 13.2032897 + ], + [ + 52.6598732, + 13.2032591 + ], + [ + 52.6606635, + 13.2032282 + ], + [ + 52.6611691, + 13.2031955 + ], + [ + 52.6613853, + 13.2031757 + ], + [ + 52.6616764, + 13.2031365 + ], + [ + 52.6620014, + 13.2030742 + ], + [ + 52.6623265, + 13.2029839 + ], + [ + 52.6626106, + 13.2028948 + ], + [ + 52.6629218, + 13.2027653 + ], + [ + 52.6631975, + 13.202639 + ], + [ + 52.6636694, + 13.2023761 + ], + [ + 52.6638889, + 13.2022262 + ], + [ + 52.6642964, + 13.2019318 + ], + [ + 52.6646342, + 13.2016405 + ], + [ + 52.6650543, + 13.2012337 + ], + [ + 52.6653083, + 13.2009561 + ], + [ + 52.6656256, + 13.200568 + ], + [ + 52.6660293, + 13.2000263 + ], + [ + 52.6664293, + 13.1994582 + ], + [ + 52.6669366, + 13.198699 + ], + [ + 52.6678217, + 13.1973788 + ], + [ + 52.6689997, + 13.1956217 + ], + [ + 52.6703536, + 13.1936115 + ], + [ + 52.6715045, + 13.1919962 + ], + [ + 52.672058, + 13.1911874 + ], + [ + 52.6745328, + 13.1874954 + ], + [ + 52.674705, + 13.1872386 + ], + [ + 52.6758111, + 13.1855835 + ], + [ + 52.6759101, + 13.1854354 + ], + [ + 52.6760458, + 13.1852336 + ], + [ + 52.6772518, + 13.1834397 + ], + [ + 52.6778692, + 13.182513 + ], + [ + 52.6782077, + 13.182002 + ], + [ + 52.679573, + 13.1799706 + ] + ] + }, + { + "osmId": "126706676", + "name": null, + "lengthMeters": 1891.9890183099474, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6358184, + 9.9522685 + ], + [ + 53.6353144, + 9.9524674 + ], + [ + 53.6346646, + 9.9527237 + ], + [ + 53.6345095, + 9.9527774 + ], + [ + 53.6344426, + 9.9527975 + ], + [ + 53.6343872, + 9.9528081 + ], + [ + 53.634267, + 9.9528234 + ], + [ + 53.634127, + 9.9528227 + ], + [ + 53.6340356, + 9.9528135 + ], + [ + 53.6339686, + 9.9527996 + ], + [ + 53.6338065, + 9.9527443 + ], + [ + 53.6334669, + 9.9526113 + ], + [ + 53.6333928, + 9.9525786 + ], + [ + 53.6333394, + 9.952551 + ], + [ + 53.6332126, + 9.9524833 + ], + [ + 53.6331552, + 9.9524473 + ], + [ + 53.6331043, + 9.9524154 + ], + [ + 53.6330137, + 9.952352 + ], + [ + 53.6326454, + 9.9520641 + ], + [ + 53.6322182, + 9.9517037 + ], + [ + 53.6315533, + 9.9510987 + ], + [ + 53.6310259, + 9.9505605 + ], + [ + 53.6306476, + 9.9501671 + ], + [ + 53.6305788, + 9.9501016 + ], + [ + 53.6305209, + 9.9500553 + ], + [ + 53.6304316, + 9.949997 + ], + [ + 53.630348, + 9.9499457 + ], + [ + 53.6302811, + 9.9499035 + ], + [ + 53.630193, + 9.949854 + ], + [ + 53.6300868, + 9.9497925 + ], + [ + 53.62997, + 9.9497548 + ], + [ + 53.6298801, + 9.9497209 + ], + [ + 53.6298051, + 9.9497139 + ], + [ + 53.6297052, + 9.9496995 + ], + [ + 53.6296111, + 9.9496868 + ], + [ + 53.6294531, + 9.9496826 + ], + [ + 53.6293506, + 9.9497013 + ], + [ + 53.6291566, + 9.9497432 + ], + [ + 53.6290566, + 9.9497677 + ], + [ + 53.6289393, + 9.9498012 + ], + [ + 53.6287365, + 9.9499141 + ], + [ + 53.628192, + 9.950262 + ], + [ + 53.6276915, + 9.9505849 + ], + [ + 53.6275389, + 9.9506563 + ], + [ + 53.6273804, + 9.9507224 + ], + [ + 53.6271377, + 9.9507995 + ], + [ + 53.6269043, + 9.9508473 + ], + [ + 53.6262877, + 9.9508675 + ], + [ + 53.6260047, + 9.9509068 + ], + [ + 53.6256939, + 9.9509666 + ], + [ + 53.6249667, + 9.9510937 + ], + [ + 53.6237973, + 9.9513058 + ], + [ + 53.6236706, + 9.9513408 + ], + [ + 53.6235529, + 9.9513824 + ], + [ + 53.6234869, + 9.9514092 + ], + [ + 53.6234101, + 9.9514485 + ], + [ + 53.62282, + 9.9518346 + ], + [ + 53.6225506, + 9.9520018 + ], + [ + 53.6222617, + 9.9521501 + ], + [ + 53.6221533, + 9.9521783 + ], + [ + 53.6220471, + 9.9521989 + ], + [ + 53.6219705, + 9.9522062 + ], + [ + 53.6219057, + 9.9522088 + ], + [ + 53.6218298, + 9.9522072 + ], + [ + 53.621734, + 9.952195 + ], + [ + 53.6211245, + 9.9520387 + ], + [ + 53.6210868, + 9.9520269 + ], + [ + 53.6210566, + 9.9520139 + ], + [ + 53.620915, + 9.9519475 + ], + [ + 53.6209079, + 9.9519441 + ], + [ + 53.6209034, + 9.9519422 + ], + [ + 53.6204908, + 9.9517673 + ], + [ + 53.6198797, + 9.9515084 + ], + [ + 53.619526, + 9.9513386 + ] + ] + }, + { + "osmId": "127025011", + "name": null, + "lengthMeters": 80.66326303243339, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5041151, + 13.4700109 + ], + [ + 52.5041179, + 13.4700128 + ], + [ + 52.5041455, + 13.47003 + ], + [ + 52.5041944, + 13.4700606 + ], + [ + 52.5043624, + 13.4701656 + ], + [ + 52.5046012, + 13.4703374 + ], + [ + 52.5047742, + 13.4704799 + ], + [ + 52.50478, + 13.470485 + ] + ] + }, + { + "osmId": "127471569", + "name": null, + "lengthMeters": 337.21105789993413, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1929937, + 11.6019325 + ], + [ + 48.1928934, + 11.6016799 + ], + [ + 48.1928092, + 11.6014554 + ], + [ + 48.1927465, + 11.6012958 + ], + [ + 48.192693, + 11.6011596 + ], + [ + 48.1925458, + 11.600767 + ], + [ + 48.1922888, + 11.6001119 + ], + [ + 48.1921236, + 11.5996628 + ], + [ + 48.191924, + 11.5991339 + ], + [ + 48.1917845, + 11.5987626 + ], + [ + 48.1914877, + 11.5979842 + ] + ] + }, + { + "osmId": "127471575", + "name": null, + "lengthMeters": 127.91405046648008, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1909848, + 11.5911806 + ], + [ + 48.1909766, + 11.5904137 + ], + [ + 48.1909692, + 11.589972 + ], + [ + 48.1909635, + 11.5897302 + ], + [ + 48.1909496, + 11.5894562 + ] + ] + }, + { + "osmId": "127471577", + "name": null, + "lengthMeters": 146.014760790119, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1922007, + 11.5997131 + ], + [ + 48.1925427, + 11.6006027 + ], + [ + 48.1926153, + 11.6007903 + ], + [ + 48.1926676, + 11.6009609 + ], + [ + 48.1927134, + 11.6011228 + ], + [ + 48.1927591, + 11.6012833 + ], + [ + 48.1927658, + 11.6013069 + ], + [ + 48.1928092, + 11.6014554 + ] + ] + }, + { + "osmId": "127471578", + "name": null, + "lengthMeters": 139.4144283593893, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.191243, + 11.5943589 + ], + [ + 48.1912325, + 11.5935726 + ], + [ + 48.1912253, + 11.5933753 + ], + [ + 48.1912155, + 11.5931456 + ], + [ + 48.1911913, + 11.5929581 + ], + [ + 48.1911605, + 11.5927078 + ], + [ + 48.1911306, + 11.5924914 + ] + ] + }, + { + "osmId": "127488647", + "name": null, + "lengthMeters": 535.2944472566658, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2179686, + 11.4572464 + ], + [ + 48.2176621, + 11.457385 + ], + [ + 48.2172542, + 11.4575953 + ], + [ + 48.2171609, + 11.4576419 + ], + [ + 48.2171475, + 11.4576486 + ], + [ + 48.2167916, + 11.4578067 + ], + [ + 48.2165551, + 11.4578979 + ], + [ + 48.2147744, + 11.4585841 + ], + [ + 48.2133248, + 11.459141 + ] + ] + }, + { + "osmId": "127488658", + "name": null, + "lengthMeters": 75.64756754827876, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1833429, + 11.4706681 + ], + [ + 48.1836821, + 11.4705306 + ], + [ + 48.1838115, + 11.4704707 + ], + [ + 48.1839969, + 11.4703875 + ] + ] + }, + { + "osmId": "127647890", + "name": null, + "lengthMeters": 124.2600655699917, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5528556, + 10.0245499 + ], + [ + 53.5529769, + 10.0247143 + ], + [ + 53.55306, + 10.0248142 + ], + [ + 53.5531432, + 10.0249096 + ], + [ + 53.5532715, + 10.0250404 + ], + [ + 53.5533603, + 10.0251222 + ], + [ + 53.5534, + 10.025155 + ], + [ + 53.55348, + 10.0252202 + ], + [ + 53.5535225, + 10.0252555 + ], + [ + 53.5536222, + 10.0253255 + ], + [ + 53.5537777, + 10.0254097 + ], + [ + 53.5538309, + 10.0254385 + ] + ] + }, + { + "osmId": "127647891", + "name": null, + "lengthMeters": 78.8225319787963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5507221, + 10.0191109 + ], + [ + 53.5509548, + 10.0200023 + ], + [ + 53.550993, + 10.0201325 + ], + [ + 53.5510128, + 10.0201989 + ] + ] + }, + { + "osmId": "127647892", + "name": "Verbindungsbahn", + "lengthMeters": 199.12930733119669, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552512, + 10.0075634 + ], + [ + 53.5523061, + 10.007644 + ], + [ + 53.5521579, + 10.0077023 + ], + [ + 53.5520938, + 10.0077342 + ], + [ + 53.5518265, + 10.0078496 + ], + [ + 53.5516631, + 10.0079305 + ], + [ + 53.5516069, + 10.007967 + ], + [ + 53.5514909, + 10.0080425 + ], + [ + 53.5513767, + 10.0081297 + ], + [ + 53.5512613, + 10.0082303 + ], + [ + 53.551242, + 10.0082474 + ], + [ + 53.551108, + 10.0083809 + ], + [ + 53.5509854, + 10.0085247 + ], + [ + 53.5508671, + 10.0086721 + ] + ] + }, + { + "osmId": "127647894", + "name": "Verbindungsbahn", + "lengthMeters": 119.28078810337932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5535877, + 10.0074667 + ], + [ + 53.55369, + 10.0073877 + ], + [ + 53.553839, + 10.007265 + ], + [ + 53.5539965, + 10.0071212 + ], + [ + 53.5542557, + 10.0068473 + ], + [ + 53.5543646, + 10.0067175 + ], + [ + 53.5545078, + 10.0065463 + ] + ] + }, + { + "osmId": "127647898", + "name": null, + "lengthMeters": 163.09875439791972, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5559436, + 10.0040501 + ], + [ + 53.5557969, + 10.004393 + ], + [ + 53.5556853, + 10.0046205 + ], + [ + 53.5555349, + 10.0048941 + ], + [ + 53.5553783, + 10.0051547 + ], + [ + 53.5552087, + 10.0054253 + ], + [ + 53.5549379, + 10.0058377 + ] + ] + }, + { + "osmId": "127647900", + "name": null, + "lengthMeters": 150.78088294291678, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5528829, + 10.0244719 + ], + [ + 53.5528144, + 10.0243734 + ], + [ + 53.5527497, + 10.0242742 + ], + [ + 53.5526521, + 10.0241121 + ], + [ + 53.5525767, + 10.0239751 + ], + [ + 53.5525392, + 10.0239023 + ], + [ + 53.5524345, + 10.0236945 + ], + [ + 53.5522829, + 10.0233518 + ], + [ + 53.55212, + 10.0229885 + ], + [ + 53.5520222, + 10.0227696 + ], + [ + 53.5520053, + 10.0227403 + ] + ] + }, + { + "osmId": "127647901", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 155.43642422380256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5503997, + 10.0180842 + ], + [ + 53.5505862, + 10.0187362 + ], + [ + 53.5509485, + 10.0201807 + ], + [ + 53.5509654, + 10.020235 + ] + ] + }, + { + "osmId": "127751701", + "name": null, + "lengthMeters": 626.3804382931231, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338004, + 11.582564 + ], + [ + 48.1338429, + 11.5827044 + ], + [ + 48.1338516, + 11.582731 + ], + [ + 48.1338623, + 11.5827618 + ], + [ + 48.1339151, + 11.5829189 + ], + [ + 48.133917, + 11.5829245 + ], + [ + 48.1339286, + 11.5829589 + ], + [ + 48.1339306, + 11.5829647 + ], + [ + 48.1339412, + 11.5829962 + ], + [ + 48.1339497, + 11.5830228 + ], + [ + 48.1339875, + 11.5831414 + ], + [ + 48.1340052, + 11.5831966 + ], + [ + 48.1340055, + 11.5831973 + ], + [ + 48.134024, + 11.583255 + ], + [ + 48.1340442, + 11.5833294 + ], + [ + 48.1340612, + 11.5834116 + ], + [ + 48.1340745, + 11.583499 + ], + [ + 48.1340898, + 11.583601 + ], + [ + 48.1341142, + 11.5837637 + ], + [ + 48.13431, + 11.5850729 + ], + [ + 48.1343405, + 11.5852758 + ], + [ + 48.1344326, + 11.5858944 + ], + [ + 48.1344449, + 11.5859663 + ], + [ + 48.1344726, + 11.5860462 + ], + [ + 48.1345078, + 11.5861024 + ], + [ + 48.1345387, + 11.5861516 + ], + [ + 48.1345855, + 11.5861974 + ], + [ + 48.13503, + 11.5866184 + ], + [ + 48.1351614, + 11.5867434 + ], + [ + 48.1352287, + 11.586813 + ], + [ + 48.1356031, + 11.5871652 + ], + [ + 48.1357116, + 11.5872673 + ], + [ + 48.1357693, + 11.5873115 + ], + [ + 48.1358275, + 11.5873466 + ], + [ + 48.136945, + 11.5878186 + ], + [ + 48.1371496, + 11.5879108 + ], + [ + 48.1371863, + 11.5879401 + ], + [ + 48.137213, + 11.5879798 + ], + [ + 48.1372295, + 11.588021 + ], + [ + 48.1372381, + 11.5880785 + ], + [ + 48.1372405, + 11.588173 + ] + ] + }, + { + "osmId": "127751703", + "name": null, + "lengthMeters": 280.9270551083694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1322104, + 11.5852337 + ], + [ + 48.1322897, + 11.5850472 + ], + [ + 48.1323464, + 11.5849178 + ], + [ + 48.132407, + 11.5847793 + ], + [ + 48.1324353, + 11.5847149 + ], + [ + 48.1326001, + 11.5843524 + ], + [ + 48.1328679, + 11.5838045 + ], + [ + 48.1329543, + 11.5836506 + ], + [ + 48.133028, + 11.5835468 + ], + [ + 48.1331135, + 11.5834485 + ], + [ + 48.1335317, + 11.5831308 + ], + [ + 48.1336497, + 11.5830426 + ], + [ + 48.1336912, + 11.5830116 + ], + [ + 48.1337248, + 11.5829833 + ], + [ + 48.1337609, + 11.5829542 + ], + [ + 48.1337868, + 11.5829244 + ], + [ + 48.1337971, + 11.5829096 + ], + [ + 48.133818, + 11.5828773 + ], + [ + 48.1338358, + 11.5828248 + ], + [ + 48.1338453, + 11.5827939 + ], + [ + 48.1338495, + 11.5827712 + ], + [ + 48.1338511, + 11.582753 + ], + [ + 48.1338516, + 11.582731 + ], + [ + 48.1338519, + 11.582696 + ], + [ + 48.1338506, + 11.5826813 + ], + [ + 48.1338476, + 11.5826607 + ], + [ + 48.1338268, + 11.5825624 + ] + ] + }, + { + "osmId": "127875849", + "name": null, + "lengthMeters": 1884.0503583046045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1508542, + 11.6084395 + ], + [ + 48.1508491, + 11.6083649 + ], + [ + 48.1508412, + 11.608285 + ], + [ + 48.1508369, + 11.6082594 + ], + [ + 48.1508237, + 11.6081804 + ], + [ + 48.1508171, + 11.6081526 + ], + [ + 48.1508134, + 11.6081369 + ], + [ + 48.1508063, + 11.6081143 + ], + [ + 48.1507921, + 11.6080806 + ], + [ + 48.1507798, + 11.6080553 + ], + [ + 48.1507667, + 11.6080291 + ], + [ + 48.1507517, + 11.6080027 + ], + [ + 48.1507372, + 11.6079832 + ], + [ + 48.1507133, + 11.6079532 + ], + [ + 48.1506924, + 11.6079323 + ], + [ + 48.150675, + 11.6079138 + ], + [ + 48.1506519, + 11.6078914 + ], + [ + 48.150565, + 11.6078288 + ], + [ + 48.150383, + 11.6076989 + ], + [ + 48.1501488, + 11.6075317 + ], + [ + 48.1499727, + 11.6073988 + ], + [ + 48.1499351, + 11.6073704 + ], + [ + 48.1496897, + 11.6071615 + ], + [ + 48.1496221, + 11.6070963 + ], + [ + 48.1495561, + 11.6070243 + ], + [ + 48.1494282, + 11.6068731 + ], + [ + 48.1491817, + 11.6065725 + ], + [ + 48.1489062, + 11.6062316 + ], + [ + 48.1486086, + 11.6058695 + ], + [ + 48.1484749, + 11.605717 + ], + [ + 48.1484186, + 11.605655 + ], + [ + 48.1482942, + 11.6055214 + ], + [ + 48.1481743, + 11.6053927 + ], + [ + 48.1478872, + 11.6050893 + ], + [ + 48.1476165, + 11.6048068 + ], + [ + 48.1474515, + 11.6046297 + ], + [ + 48.1472681, + 11.6044325 + ], + [ + 48.1470823, + 11.604244 + ], + [ + 48.1469278, + 11.6041029 + ], + [ + 48.1467715, + 11.6039763 + ], + [ + 48.1466089, + 11.6038577 + ], + [ + 48.146534, + 11.6037931 + ], + [ + 48.1464599, + 11.6037269 + ], + [ + 48.1463959, + 11.6036571 + ], + [ + 48.1463355, + 11.6035834 + ], + [ + 48.1462894, + 11.6035208 + ], + [ + 48.1462298, + 11.6034314 + ], + [ + 48.1461893, + 11.6033637 + ], + [ + 48.146141, + 11.6032731 + ], + [ + 48.1460813, + 11.603175 + ], + [ + 48.1460583, + 11.6031392 + ], + [ + 48.1460297, + 11.6030991 + ], + [ + 48.1459694, + 11.6030133 + ], + [ + 48.1457801, + 11.6027584 + ], + [ + 48.1455542, + 11.6024583 + ], + [ + 48.1454659, + 11.6023591 + ], + [ + 48.1454476, + 11.6023386 + ], + [ + 48.1453396, + 11.6022215 + ], + [ + 48.1452709, + 11.6021541 + ], + [ + 48.1451977, + 11.602087 + ], + [ + 48.1450541, + 11.6019586 + ], + [ + 48.1449077, + 11.6018461 + ], + [ + 48.1448233, + 11.601787 + ], + [ + 48.1447617, + 11.6017439 + ], + [ + 48.1446329, + 11.6016628 + ], + [ + 48.1445037, + 11.6015882 + ], + [ + 48.144377, + 11.6015202 + ], + [ + 48.144249, + 11.6014609 + ], + [ + 48.1441001, + 11.601402 + ], + [ + 48.1439521, + 11.6013538 + ], + [ + 48.1437967, + 11.6013215 + ], + [ + 48.1436404, + 11.6013069 + ], + [ + 48.1433539, + 11.6012968 + ], + [ + 48.1432052, + 11.6012914 + ], + [ + 48.1427011, + 11.6012846 + ], + [ + 48.1425403, + 11.6012756 + ], + [ + 48.1424612, + 11.6012635 + ], + [ + 48.1423838, + 11.6012416 + ], + [ + 48.142314, + 11.6012148 + ], + [ + 48.142242, + 11.6011823 + ], + [ + 48.1421054, + 11.6011049 + ], + [ + 48.1420251, + 11.601044 + ], + [ + 48.1417692, + 11.6008499 + ], + [ + 48.140942, + 11.6002433 + ], + [ + 48.140772, + 11.6001186 + ], + [ + 48.1407162, + 11.6000769 + ], + [ + 48.1406565, + 11.6000326 + ], + [ + 48.1405812, + 11.5999838 + ], + [ + 48.140546, + 11.599961 + ], + [ + 48.1404396, + 11.599903 + ], + [ + 48.1401791, + 11.5997628 + ], + [ + 48.1400789, + 11.5997088 + ], + [ + 48.1399139, + 11.5996294 + ], + [ + 48.1391593, + 11.5992421 + ], + [ + 48.138546, + 11.5989789 + ], + [ + 48.1383959, + 11.5989145 + ], + [ + 48.1382317, + 11.5988387 + ], + [ + 48.1381942, + 11.5988228 + ], + [ + 48.1378543, + 11.5986682 + ], + [ + 48.1373203, + 11.5984112 + ], + [ + 48.1371794, + 11.5983414 + ], + [ + 48.1371281, + 11.5983167 + ], + [ + 48.136682, + 11.5981116 + ], + [ + 48.1366257, + 11.5980832 + ], + [ + 48.1365031, + 11.5980332 + ], + [ + 48.136407, + 11.5980036 + ], + [ + 48.1362828, + 11.5979653 + ], + [ + 48.1360839, + 11.5979139 + ], + [ + 48.1360112, + 11.5979015 + ], + [ + 48.1359223, + 11.5978864 + ] + ] + }, + { + "osmId": "127875863", + "name": null, + "lengthMeters": 208.74426199759597, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1500379, + 11.5966552 + ], + [ + 48.1500397, + 11.5966257 + ], + [ + 48.1500381, + 11.5965759 + ], + [ + 48.1500357, + 11.5965391 + ], + [ + 48.1500279, + 11.5964918 + ], + [ + 48.1500205, + 11.5964552 + ], + [ + 48.1499974, + 11.5964012 + ], + [ + 48.1499807, + 11.5963702 + ], + [ + 48.1499602, + 11.5963392 + ], + [ + 48.1499338, + 11.5963083 + ], + [ + 48.1498062, + 11.5961616 + ], + [ + 48.1496244, + 11.5959528 + ], + [ + 48.1495298, + 11.5958285 + ], + [ + 48.1494354, + 11.5956904 + ], + [ + 48.1493526, + 11.5955466 + ], + [ + 48.1492725, + 11.5953909 + ], + [ + 48.1491993, + 11.5952236 + ], + [ + 48.1490616, + 11.5948725 + ], + [ + 48.1490407, + 11.5948216 + ], + [ + 48.1490286, + 11.5947921 + ], + [ + 48.1489976, + 11.5947336 + ], + [ + 48.1489618, + 11.5946873 + ], + [ + 48.1489479, + 11.5946739 + ], + [ + 48.1489385, + 11.5946643 + ], + [ + 48.148841, + 11.5945852 + ] + ] + }, + { + "osmId": "127947767", + "name": null, + "lengthMeters": 533.9823909598238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1243907, + 11.5809893 + ], + [ + 48.1243646, + 11.581018 + ], + [ + 48.1242917, + 11.5810882 + ], + [ + 48.1242107, + 11.5811583 + ], + [ + 48.1239408, + 11.5813838 + ], + [ + 48.123791, + 11.581511 + ], + [ + 48.1237203, + 11.5815695 + ], + [ + 48.1236749, + 11.581607 + ], + [ + 48.1235919, + 11.5816683 + ], + [ + 48.1235042, + 11.5817288 + ], + [ + 48.123423, + 11.5817865 + ], + [ + 48.1233218, + 11.5818544 + ], + [ + 48.1232195, + 11.5819223 + ], + [ + 48.1230173, + 11.5820608 + ], + [ + 48.1229085, + 11.5821299 + ], + [ + 48.1228558, + 11.58216 + ], + [ + 48.1227948, + 11.5821937 + ], + [ + 48.1227467, + 11.5822119 + ], + [ + 48.1227026, + 11.5822235 + ], + [ + 48.1226555, + 11.5822329 + ], + [ + 48.1226096, + 11.5822373 + ], + [ + 48.1225624, + 11.5822389 + ], + [ + 48.1225291, + 11.5822375 + ], + [ + 48.1224928, + 11.5822338 + ], + [ + 48.1224536, + 11.5822291 + ], + [ + 48.1224149, + 11.5822212 + ], + [ + 48.1223798, + 11.5822125 + ], + [ + 48.1223439, + 11.582202 + ], + [ + 48.1222935, + 11.5821852 + ], + [ + 48.1222531, + 11.5821703 + ], + [ + 48.1222162, + 11.5821547 + ], + [ + 48.1221753, + 11.5821351 + ], + [ + 48.1221272, + 11.5821099 + ], + [ + 48.1220916, + 11.582089 + ], + [ + 48.1219162, + 11.5819735 + ], + [ + 48.1214218, + 11.5816082 + ], + [ + 48.1213749, + 11.581576 + ], + [ + 48.1213284, + 11.5815466 + ], + [ + 48.1212949, + 11.5815298 + ], + [ + 48.1212568, + 11.5815125 + ], + [ + 48.121217, + 11.5814968 + ], + [ + 48.1211794, + 11.5814841 + ], + [ + 48.1211469, + 11.5814749 + ], + [ + 48.1211284, + 11.581472 + ], + [ + 48.1210917, + 11.5814677 + ], + [ + 48.1210568, + 11.5814656 + ], + [ + 48.1210241, + 11.5814638 + ], + [ + 48.121, + 11.5814634 + ], + [ + 48.1209652, + 11.5814661 + ], + [ + 48.1209317, + 11.5814689 + ], + [ + 48.1209018, + 11.5814731 + ], + [ + 48.1208684, + 11.5814824 + ], + [ + 48.120838, + 11.5814927 + ], + [ + 48.1208102, + 11.5815046 + ], + [ + 48.1207826, + 11.5815156 + ], + [ + 48.1207503, + 11.5815325 + ], + [ + 48.1207223, + 11.5815493 + ], + [ + 48.1206962, + 11.5815647 + ], + [ + 48.1206696, + 11.581582 + ], + [ + 48.1206364, + 11.5816066 + ], + [ + 48.120616, + 11.5816227 + ], + [ + 48.1205645, + 11.5816678 + ], + [ + 48.1205167, + 11.5817107 + ], + [ + 48.1204741, + 11.5817562 + ], + [ + 48.1204313, + 11.5818036 + ], + [ + 48.1203823, + 11.5818569 + ], + [ + 48.1203488, + 11.5818908 + ], + [ + 48.1203258, + 11.5819148 + ], + [ + 48.1202993, + 11.5819389 + ], + [ + 48.1202715, + 11.5819613 + ], + [ + 48.1202334, + 11.5819905 + ], + [ + 48.1202004, + 11.5820134 + ], + [ + 48.1201647, + 11.5820323 + ], + [ + 48.1201208, + 11.582055 + ], + [ + 48.1200983, + 11.5820644 + ], + [ + 48.12007, + 11.582077 + ], + [ + 48.1200324, + 11.5820912 + ], + [ + 48.1199906, + 11.5821054 + ] + ] + }, + { + "osmId": "127947768", + "name": null, + "lengthMeters": 140.1927187830662, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1276779, + 11.5764439 + ], + [ + 48.1267427, + 11.5777107 + ] + ] + }, + { + "osmId": "127947769", + "name": null, + "lengthMeters": 600.6686336762829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1309577, + 11.5698087 + ], + [ + 48.1309147, + 11.5699504 + ], + [ + 48.1309032, + 11.5699935 + ], + [ + 48.1308914, + 11.57004 + ], + [ + 48.1308823, + 11.570086 + ], + [ + 48.1308737, + 11.5701287 + ], + [ + 48.1308684, + 11.5701628 + ], + [ + 48.1308642, + 11.5702078 + ], + [ + 48.1308607, + 11.5702561 + ], + [ + 48.1308598, + 11.570291 + ], + [ + 48.1308591, + 11.5703255 + ], + [ + 48.1308597, + 11.5703608 + ], + [ + 48.1308609, + 11.5703937 + ], + [ + 48.1308633, + 11.5704332 + ], + [ + 48.1308672, + 11.5704718 + ], + [ + 48.1308729, + 11.5705143 + ], + [ + 48.1308789, + 11.5705469 + ], + [ + 48.1308877, + 11.5705859 + ], + [ + 48.1308967, + 11.5706215 + ], + [ + 48.1309099, + 11.5706652 + ], + [ + 48.1309234, + 11.5707083 + ], + [ + 48.1309388, + 11.5707491 + ], + [ + 48.1309543, + 11.5707839 + ], + [ + 48.1309645, + 11.5708072 + ], + [ + 48.1310278, + 11.5709289 + ], + [ + 48.131179, + 11.5712192 + ], + [ + 48.1312236, + 11.5713064 + ], + [ + 48.1312364, + 11.571334 + ], + [ + 48.1312494, + 11.571368 + ], + [ + 48.1312527, + 11.5713812 + ], + [ + 48.1312589, + 11.5714063 + ], + [ + 48.1312642, + 11.5714356 + ], + [ + 48.1312669, + 11.5714588 + ], + [ + 48.1312678, + 11.5714822 + ], + [ + 48.1312668, + 11.5715052 + ], + [ + 48.1312658, + 11.5715174 + ], + [ + 48.1312624, + 11.5715432 + ], + [ + 48.1312579, + 11.57157 + ], + [ + 48.1312511, + 11.5715926 + ], + [ + 48.1312438, + 11.5716137 + ], + [ + 48.1312325, + 11.5716419 + ], + [ + 48.131219, + 11.5716706 + ], + [ + 48.1312064, + 11.5716902 + ], + [ + 48.1310624, + 11.5718826 + ], + [ + 48.1305549, + 11.5725714 + ], + [ + 48.1301471, + 11.573125 + ], + [ + 48.1300108, + 11.5733098 + ], + [ + 48.1296002, + 11.5738672 + ], + [ + 48.1285298, + 11.5753038 + ], + [ + 48.1284579, + 11.5754017 + ], + [ + 48.128364, + 11.5755298 + ], + [ + 48.1282855, + 11.5756354 + ], + [ + 48.1282425, + 11.5756933 + ] + ] + }, + { + "osmId": "128272904", + "name": "Niederelbebahn", + "lengthMeters": 702.0592987170746, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4720731, + 9.9044036 + ], + [ + 53.4719256, + 9.9080308 + ], + [ + 53.4717935, + 9.9114402 + ], + [ + 53.4717634, + 9.9123124 + ], + [ + 53.471745, + 9.9130107 + ], + [ + 53.4717349, + 9.9137998 + ], + [ + 53.4717256, + 9.914993 + ] + ] + }, + { + "osmId": "128679930", + "name": null, + "lengthMeters": 452.19854764284787, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5581724, + 13.4331617 + ], + [ + 52.5580773, + 13.4331223 + ], + [ + 52.5580717, + 13.4331168 + ], + [ + 52.5579801, + 13.4330736 + ], + [ + 52.5579275, + 13.4330382 + ], + [ + 52.5578906, + 13.4330039 + ], + [ + 52.5578518, + 13.432961 + ], + [ + 52.5577889, + 13.4328796 + ], + [ + 52.557722, + 13.4327564 + ], + [ + 52.5577023, + 13.4327081 + ], + [ + 52.5576407, + 13.4325574 + ], + [ + 52.557623, + 13.4325053 + ], + [ + 52.5575266, + 13.432222 + ], + [ + 52.5565563, + 13.4295342 + ], + [ + 52.5565214, + 13.4294374 + ], + [ + 52.5564898, + 13.4293584 + ], + [ + 52.5564831, + 13.429341 + ], + [ + 52.5564625, + 13.4292983 + ], + [ + 52.5564441, + 13.429257 + ], + [ + 52.5564272, + 13.4292427 + ], + [ + 52.5563964, + 13.4292121 + ], + [ + 52.5563693, + 13.4291978 + ], + [ + 52.5563395, + 13.4291829 + ], + [ + 52.5563021, + 13.4291749 + ], + [ + 52.556266, + 13.4291753 + ], + [ + 52.556229, + 13.429182 + ], + [ + 52.5561765, + 13.4291953 + ], + [ + 52.5554073, + 13.4293984 + ] + ] + }, + { + "osmId": "128679938", + "name": null, + "lengthMeters": 167.50094960748595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5603525, + 13.4340448 + ], + [ + 52.5602748, + 13.434012 + ], + [ + 52.5602022, + 13.4339803 + ], + [ + 52.5600667, + 13.4339208 + ], + [ + 52.5599833, + 13.4338837 + ], + [ + 52.5597388, + 13.4338046 + ], + [ + 52.5596312, + 13.433757 + ], + [ + 52.5588907, + 13.4334491 + ] + ] + }, + { + "osmId": "128679942", + "name": null, + "lengthMeters": 83.2041681706979, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5657153, + 13.4363898 + ], + [ + 52.5661687, + 13.4373691 + ] + ] + }, + { + "osmId": "128679943", + "name": null, + "lengthMeters": 620.8004896198752, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5657153, + 13.4363898 + ], + [ + 52.5656739, + 13.4362968 + ], + [ + 52.5656468, + 13.4362423 + ], + [ + 52.5656158, + 13.4361923 + ], + [ + 52.565593, + 13.4361647 + ], + [ + 52.5655664, + 13.4361406 + ], + [ + 52.5655411, + 13.4361226 + ], + [ + 52.5655136, + 13.4361084 + ], + [ + 52.5654776, + 13.4360929 + ], + [ + 52.5654341, + 13.4360766 + ], + [ + 52.5648336, + 13.4358341 + ], + [ + 52.5647737, + 13.435807 + ], + [ + 52.5644977, + 13.4357009 + ], + [ + 52.5643107, + 13.4356316 + ], + [ + 52.5641282, + 13.4355571 + ], + [ + 52.5637583, + 13.4354143 + ], + [ + 52.5630289, + 13.4351238 + ], + [ + 52.5629199, + 13.4350803 + ], + [ + 52.5625689, + 13.4349398 + ], + [ + 52.5622588, + 13.4348157 + ], + [ + 52.5619913, + 13.4347075 + ], + [ + 52.5619213, + 13.43468 + ], + [ + 52.5613716, + 13.4344637 + ], + [ + 52.5610641, + 13.4343378 + ], + [ + 52.5607554, + 13.4342238 + ], + [ + 52.5603525, + 13.4340448 + ] + ] + }, + { + "osmId": "128681401", + "name": null, + "lengthMeters": 216.0381072303383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538513, + 13.4298078 + ], + [ + 52.552809, + 13.4300862 + ], + [ + 52.5519333, + 13.4303175 + ] + ] + }, + { + "osmId": "128703126", + "name": null, + "lengthMeters": 136.19602313384985, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5007803, + 13.468231 + ], + [ + 52.5000418, + 13.4679357 + ], + [ + 52.4995902, + 13.4677552 + ] + ] + }, + { + "osmId": "129273993", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 306.9114243803505, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5341174, + 10.0238372 + ], + [ + 53.5316942, + 10.0216138 + ] + ] + }, + { + "osmId": "129273996", + "name": "Hafenbahn", + "lengthMeters": 536.765423933645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5007166, + 9.9096843 + ], + [ + 53.5005961, + 9.9096308 + ], + [ + 53.5001048, + 9.9094165 + ], + [ + 53.4980843, + 9.9085359 + ], + [ + 53.4976087, + 9.9083275 + ], + [ + 53.4972431, + 9.9081553 + ], + [ + 53.4971224, + 9.9080984 + ], + [ + 53.4966099, + 9.907819 + ], + [ + 53.4960694, + 9.907502 + ] + ] + }, + { + "osmId": "129274029", + "name": null, + "lengthMeters": 307.07221686401124, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5316773, + 10.0216636 + ], + [ + 53.5341026, + 10.0238856 + ] + ] + }, + { + "osmId": "129474194", + "name": null, + "lengthMeters": 97.79971170487062, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5233209, + 10.0068782 + ], + [ + 53.5232817, + 10.0070938 + ], + [ + 53.5232402, + 10.0072695 + ], + [ + 53.5231573, + 10.0076311 + ], + [ + 53.5230525, + 10.0080936 + ], + [ + 53.5230381, + 10.0081654 + ], + [ + 53.523021, + 10.0082681 + ] + ] + }, + { + "osmId": "130705850", + "name": "Verbindungsbahn", + "lengthMeters": 126.70283082839101, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536107, + 10.007061 + ], + [ + 53.5533602, + 10.0072014 + ], + [ + 53.5533167, + 10.0072293 + ], + [ + 53.5532319, + 10.0072694 + ], + [ + 53.5531858, + 10.0072893 + ], + [ + 53.5527525, + 10.0074702 + ], + [ + 53.552512, + 10.0075634 + ] + ] + }, + { + "osmId": "130782993", + "name": null, + "lengthMeters": 103.4150621668382, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.568182, + 9.9700374 + ], + [ + 53.5673336, + 9.9700678 + ], + [ + 53.5672522, + 9.9700634 + ] + ] + }, + { + "osmId": "130782997", + "name": null, + "lengthMeters": 235.12415942936587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5730806, + 9.9700175 + ], + [ + 53.5733865, + 9.9704055 + ], + [ + 53.5747212, + 9.9722633 + ] + ] + }, + { + "osmId": "130782999", + "name": null, + "lengthMeters": 100.4446028127896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5711958, + 9.9691438 + ], + [ + 53.5715055, + 9.9691449 + ], + [ + 53.5718046, + 9.9692005 + ], + [ + 53.572092, + 9.9692939 + ] + ] + }, + { + "osmId": "130783000", + "name": null, + "lengthMeters": 93.21019982046418, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.572092, + 9.9692939 + ], + [ + 53.5721395, + 9.9693156 + ], + [ + 53.5723082, + 9.9693931 + ], + [ + 53.5725103, + 9.9695189 + ], + [ + 53.5726992, + 9.9696566 + ], + [ + 53.57287, + 9.9698075 + ] + ] + }, + { + "osmId": "130783001", + "name": null, + "lengthMeters": 153.63387228780556, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5767895, + 9.9751663 + ], + [ + 53.576946, + 9.9753986 + ], + [ + 53.5769866, + 9.975459 + ], + [ + 53.5772891, + 9.975932 + ], + [ + 53.5774575, + 9.9761656 + ], + [ + 53.5776182, + 9.9763885 + ], + [ + 53.5777195, + 9.9765103 + ], + [ + 53.5778459, + 9.9766623 + ] + ] + }, + { + "osmId": "130783002", + "name": null, + "lengthMeters": 132.31055704850252, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5696064, + 9.9694385 + ], + [ + 53.5691497, + 9.9697655 + ], + [ + 53.5689862, + 9.9698632 + ], + [ + 53.5688105, + 9.9699472 + ], + [ + 53.5686925, + 9.9699849 + ], + [ + 53.5684764, + 9.9700247 + ] + ] + }, + { + "osmId": "130794899", + "name": null, + "lengthMeters": 77.87026009407072, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5861629, + 9.9877089 + ], + [ + 53.5855368, + 9.9871804 + ] + ] + }, + { + "osmId": "130794907", + "name": null, + "lengthMeters": 104.73420607475258, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5840107, + 9.9856857 + ], + [ + 53.5838005, + 9.9854458 + ], + [ + 53.5837632, + 9.9854135 + ], + [ + 53.5837356, + 9.985391 + ], + [ + 53.5837187, + 9.9853798 + ], + [ + 53.583658, + 9.9853431 + ], + [ + 53.5836179, + 9.9853251 + ], + [ + 53.5835604, + 9.9853049 + ], + [ + 53.5834957, + 9.9852938 + ], + [ + 53.5834504, + 9.9852879 + ], + [ + 53.5834168, + 9.9852879 + ], + [ + 53.5833509, + 9.9852925 + ], + [ + 53.5833069, + 9.9852979 + ], + [ + 53.5832702, + 9.9853072 + ], + [ + 53.5832394, + 9.9853174 + ], + [ + 53.5831972, + 9.9853363 + ], + [ + 53.5831336, + 9.9853672 + ] + ] + }, + { + "osmId": "130794915", + "name": null, + "lengthMeters": 149.46204643042344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5881796, + 9.9896787 + ], + [ + 53.5879355, + 9.989453 + ], + [ + 53.58775, + 9.9892712 + ], + [ + 53.587042, + 9.9884755 + ] + ] + }, + { + "osmId": "130794924", + "name": null, + "lengthMeters": 88.64743385107761, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.587042, + 9.9884755 + ], + [ + 53.5868874, + 9.9883017 + ], + [ + 53.5867197, + 9.9881424 + ], + [ + 53.5864876, + 9.9879432 + ], + [ + 53.5863486, + 9.9878154 + ] + ] + }, + { + "osmId": "130794925", + "name": null, + "lengthMeters": 129.42163605025308, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5873318, + 9.988865 + ], + [ + 53.5870546, + 9.9885588 + ], + [ + 53.5869081, + 9.9883968 + ], + [ + 53.5868369, + 9.9883229 + ], + [ + 53.5867573, + 9.9882526 + ], + [ + 53.5863298, + 9.9878714 + ] + ] + }, + { + "osmId": "130794933", + "name": null, + "lengthMeters": 217.46118903743988, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875775, + 9.9893041 + ], + [ + 53.587709, + 9.9894288 + ], + [ + 53.5881931, + 9.9899044 + ], + [ + 53.5883296, + 9.9900673 + ], + [ + 53.5884183, + 9.99019 + ], + [ + 53.5884931, + 9.9903097 + ], + [ + 53.5887374, + 9.990765 + ], + [ + 53.5889563, + 9.9911732 + ], + [ + 53.5890032, + 9.9912582 + ], + [ + 53.5890712, + 9.9913804 + ] + ] + }, + { + "osmId": "130794934", + "name": null, + "lengthMeters": 122.92377676676418, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5862848, + 9.9881276 + ], + [ + 53.5863037, + 9.988156 + ], + [ + 53.5863913, + 9.9882753 + ], + [ + 53.5865077, + 9.9884061 + ], + [ + 53.5866437, + 9.9885439 + ], + [ + 53.5868217, + 9.9887144 + ], + [ + 53.5872395, + 9.9890549 + ] + ] + }, + { + "osmId": "130910544", + "name": null, + "lengthMeters": 206.26608152626085, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5905184, + 10.0063157 + ], + [ + 53.5905996, + 10.0091403 + ], + [ + 53.590608, + 10.0094373 + ] + ] + }, + { + "osmId": "131057831", + "name": null, + "lengthMeters": 85.6594700288519, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113724, + 13.2251521 + ], + [ + 52.5112869, + 13.2253033 + ], + [ + 52.5112028, + 13.2254473 + ], + [ + 52.5111191, + 13.2255733 + ], + [ + 52.5110779, + 13.2256354 + ], + [ + 52.511048, + 13.2256884 + ], + [ + 52.5109524, + 13.2258369 + ], + [ + 52.5108267, + 13.2260447 + ] + ] + }, + { + "osmId": "131057832", + "name": null, + "lengthMeters": 188.3525124197611, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5125712, + 13.2231871 + ], + [ + 52.5124953, + 13.2233089 + ], + [ + 52.5121361, + 13.2238863 + ], + [ + 52.5117295, + 13.2245595 + ], + [ + 52.5115384, + 13.2248517 + ], + [ + 52.5114269, + 13.2250455 + ], + [ + 52.5113845, + 13.2251284 + ], + [ + 52.5113724, + 13.2251521 + ] + ] + }, + { + "osmId": "131113891", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1069.6117625282222, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5540939, + 13.1109555 + ], + [ + 52.5545552, + 13.1093037 + ], + [ + 52.5552506, + 13.1067645 + ], + [ + 52.555612, + 13.1053934 + ], + [ + 52.5557343, + 13.1049319 + ], + [ + 52.5560385, + 13.1037659 + ], + [ + 52.556361, + 13.1025414 + ], + [ + 52.5567365, + 13.1011154 + ], + [ + 52.5570113, + 13.1000719 + ], + [ + 52.5570769, + 13.0998091 + ], + [ + 52.5571364, + 13.099571 + ], + [ + 52.5577927, + 13.0970402 + ], + [ + 52.5579438, + 13.0964573 + ] + ] + }, + { + "osmId": "131118047", + "name": null, + "lengthMeters": 97.67347501822378, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5904024, + 10.0202765 + ], + [ + 53.5903772, + 10.0205088 + ], + [ + 53.5902689, + 10.0214899 + ], + [ + 53.5902491, + 10.0216887 + ], + [ + 53.5902443, + 10.0217322 + ] + ] + }, + { + "osmId": "131220241", + "name": null, + "lengthMeters": 108.67540944902963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5883456, + 10.0392966 + ], + [ + 53.588205, + 10.0395495 + ], + [ + 53.5881356, + 10.0396752 + ], + [ + 53.5880607, + 10.0398336 + ], + [ + 53.5880096, + 10.0399528 + ], + [ + 53.5879567, + 10.0400842 + ], + [ + 53.5879104, + 10.0402114 + ], + [ + 53.5878309, + 10.0404455 + ], + [ + 53.5877748, + 10.040623 + ] + ] + }, + { + "osmId": "131220242", + "name": null, + "lengthMeters": 85.59000921055839, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5883798, + 10.0393423 + ], + [ + 53.5884078, + 10.0392892 + ], + [ + 53.5884849, + 10.0391456 + ], + [ + 53.5887091, + 10.0387429 + ], + [ + 53.5888245, + 10.0385855 + ], + [ + 53.5888905, + 10.038506 + ], + [ + 53.5889365, + 10.0384543 + ] + ] + }, + { + "osmId": "131251700", + "name": null, + "lengthMeters": 81.12531846009226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5878665, + 10.0418452 + ], + [ + 53.5878534, + 10.0419211 + ], + [ + 53.5876544, + 10.0430212 + ] + ] + }, + { + "osmId": "131251710", + "name": null, + "lengthMeters": 81.4476982948635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5877735, + 10.0430817 + ], + [ + 53.5879868, + 10.0419012 + ] + ] + }, + { + "osmId": "131405861", + "name": null, + "lengthMeters": 160.6489814390547, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537269, + 10.0243447 + ], + [ + 53.5539371, + 10.0247861 + ], + [ + 53.5540217, + 10.0250186 + ], + [ + 53.5540837, + 10.0252233 + ], + [ + 53.5541456, + 10.0254531 + ], + [ + 53.5542209, + 10.0257499 + ], + [ + 53.5542645, + 10.0259812 + ], + [ + 53.5543023, + 10.0262302 + ], + [ + 53.5543386, + 10.0265128 + ] + ] + }, + { + "osmId": "131505888", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 3020.094165259252, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3717754, + 13.4687737 + ], + [ + 52.3709003, + 13.4667827 + ], + [ + 52.3706216, + 13.466163 + ], + [ + 52.3700566, + 13.4648789 + ], + [ + 52.3689619, + 13.4623908 + ], + [ + 52.3687039, + 13.4618091 + ], + [ + 52.3675603, + 13.4592265 + ], + [ + 52.366513, + 13.4568619 + ], + [ + 52.3661109, + 13.4559368 + ], + [ + 52.3657464, + 13.4551133 + ], + [ + 52.3650797, + 13.4536892 + ], + [ + 52.3646087, + 13.4527007 + ], + [ + 52.3638712, + 13.45112 + ], + [ + 52.3632919, + 13.4498108 + ], + [ + 52.362332, + 13.4475803 + ], + [ + 52.361979, + 13.4467833 + ], + [ + 52.3611445, + 13.4449449 + ], + [ + 52.3607288, + 13.4440264 + ], + [ + 52.3601274, + 13.4426741 + ], + [ + 52.3593214, + 13.4408507 + ], + [ + 52.3581051, + 13.4381024 + ], + [ + 52.3577339, + 13.437257 + ], + [ + 52.3573692, + 13.4363994 + ], + [ + 52.3573195, + 13.4362733 + ], + [ + 52.3570404, + 13.4355852 + ], + [ + 52.3568164, + 13.4350046 + ], + [ + 52.3565971, + 13.4344208 + ], + [ + 52.3563692, + 13.433793 + ], + [ + 52.3559715, + 13.4326238 + ] + ] + }, + { + "osmId": "131505890", + "name": null, + "lengthMeters": 368.86277517765825, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3620277, + 13.4466761 + ], + [ + 52.3623616, + 13.447399 + ], + [ + 52.3627939, + 13.4483492 + ], + [ + 52.3631165, + 13.449058 + ], + [ + 52.3634315, + 13.4497746 + ], + [ + 52.3635771, + 13.4501144 + ], + [ + 52.3637176, + 13.4504607 + ], + [ + 52.3639508, + 13.4510982 + ] + ] + }, + { + "osmId": "131505894", + "name": null, + "lengthMeters": 1499.4869629472762, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.362058, + 13.4466379 + ], + [ + 52.361302, + 13.4449555 + ], + [ + 52.3592798, + 13.4404864 + ], + [ + 52.3592509, + 13.4404232 + ], + [ + 52.3581775, + 13.4380014 + ], + [ + 52.3578093, + 13.43716 + ], + [ + 52.3574477, + 13.4363125 + ], + [ + 52.3573944, + 13.4361787 + ], + [ + 52.3571194, + 13.435496 + ], + [ + 52.3568962, + 13.4349162 + ], + [ + 52.3566772, + 13.4343364 + ], + [ + 52.3563796, + 13.4335115 + ], + [ + 52.3562351, + 13.4331061 + ], + [ + 52.3560536, + 13.4325591 + ], + [ + 52.3559992, + 13.4323884 + ], + [ + 52.3556955, + 13.4314323 + ], + [ + 52.3555219, + 13.4308529 + ], + [ + 52.355353, + 13.4302719 + ], + [ + 52.3550552, + 13.4292009 + ], + [ + 52.3547829, + 13.428131 + ] + ] + }, + { + "osmId": "131542337", + "name": null, + "lengthMeters": 80.78919248564158, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5686269, + 10.026225 + ], + [ + 53.5686733, + 10.026301 + ], + [ + 53.5687692, + 10.0264689 + ], + [ + 53.5690762, + 10.0270047 + ], + [ + 53.5690898, + 10.0270283 + ], + [ + 53.5691329, + 10.0271029 + ] + ] + }, + { + "osmId": "131542343", + "name": null, + "lengthMeters": 100.92496504086664, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5827336, + 10.0447123 + ], + [ + 53.5834722, + 10.0456009 + ] + ] + }, + { + "osmId": "131542344", + "name": null, + "lengthMeters": 238.80071253983226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5710125, + 10.0312776 + ], + [ + 53.5713233, + 10.0320291 + ], + [ + 53.5713324, + 10.032051 + ], + [ + 53.5722439, + 10.0342406 + ] + ] + }, + { + "osmId": "131542348", + "name": null, + "lengthMeters": 115.30690455525051, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5771567, + 10.040051 + ], + [ + 53.5781576, + 10.0405077 + ] + ] + }, + { + "osmId": "131542352", + "name": null, + "lengthMeters": 116.25126940934845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5697174, + 10.02816 + ], + [ + 53.5699015, + 10.0285864 + ], + [ + 53.5702109, + 10.0293386 + ], + [ + 53.5703192, + 10.0295995 + ] + ] + }, + { + "osmId": "131542354", + "name": null, + "lengthMeters": 93.08586641480116, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5834722, + 10.0456009 + ], + [ + 53.5837556, + 10.0459056 + ], + [ + 53.5841918, + 10.0463205 + ] + ] + }, + { + "osmId": "131542356", + "name": null, + "lengthMeters": 91.16073324372181, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.564225, + 10.0270791 + ], + [ + 53.5643581, + 10.0269904 + ], + [ + 53.5646933, + 10.0267757 + ], + [ + 53.5648579, + 10.0266712 + ], + [ + 53.5649907, + 10.0265859 + ] + ] + }, + { + "osmId": "131542360", + "name": null, + "lengthMeters": 144.3353522022425, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5782463, + 10.0405488 + ], + [ + 53.5784525, + 10.0406424 + ], + [ + 53.5789351, + 10.0408403 + ], + [ + 53.5794539, + 10.0410482 + ], + [ + 53.5795068, + 10.0410703 + ] + ] + }, + { + "osmId": "131542361", + "name": null, + "lengthMeters": 90.59068740703428, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5749026, + 10.0376423 + ], + [ + 53.5750271, + 10.0377601 + ], + [ + 53.5751532, + 10.0379446 + ], + [ + 53.5752663, + 10.0381436 + ], + [ + 53.5754913, + 10.0385758 + ] + ] + }, + { + "osmId": "131542362", + "name": null, + "lengthMeters": 80.22921299788476, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.57953, + 10.0410826 + ], + [ + 53.5796582, + 10.0411506 + ], + [ + 53.5797441, + 10.0412038 + ], + [ + 53.5798022, + 10.041244 + ], + [ + 53.5798623, + 10.0412971 + ], + [ + 53.5799371, + 10.0413707 + ], + [ + 53.5800153, + 10.0414542 + ], + [ + 53.5801667, + 10.0416353 + ] + ] + }, + { + "osmId": "131542363", + "name": null, + "lengthMeters": 130.45792546358607, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5725904, + 10.035081 + ], + [ + 53.5728719, + 10.0357277 + ], + [ + 53.5729894, + 10.0359651 + ], + [ + 53.5730972, + 10.0361489 + ], + [ + 53.573233, + 10.0363506 + ], + [ + 53.5733788, + 10.0365258 + ] + ] + }, + { + "osmId": "131542364", + "name": null, + "lengthMeters": 96.93828772758737, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5860371, + 10.0473876 + ], + [ + 53.5859713, + 10.0474017 + ], + [ + 53.5859093, + 10.0474043 + ], + [ + 53.5858187, + 10.047392 + ], + [ + 53.5856973, + 10.0473675 + ], + [ + 53.5855369, + 10.0473197 + ], + [ + 53.5853707, + 10.0472548 + ], + [ + 53.5852866, + 10.0472147 + ], + [ + 53.5852174, + 10.0471666 + ], + [ + 53.5851855, + 10.0471444 + ] + ] + }, + { + "osmId": "131542365", + "name": null, + "lengthMeters": 190.46982444015902, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5623756, + 10.0280865 + ], + [ + 53.5625658, + 10.0280173 + ], + [ + 53.5626048, + 10.0280031 + ], + [ + 53.5626327, + 10.027993 + ], + [ + 53.5627587, + 10.0279473 + ], + [ + 53.5629629, + 10.0278596 + ], + [ + 53.5631556, + 10.0277554 + ], + [ + 53.5633889, + 10.0276097 + ], + [ + 53.5635828, + 10.0274887 + ], + [ + 53.5640047, + 10.0272144 + ] + ] + }, + { + "osmId": "131542366", + "name": null, + "lengthMeters": 106.71878687226402, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5673274, + 10.0253537 + ], + [ + 53.5674355, + 10.0253583 + ], + [ + 53.5674597, + 10.0253592 + ], + [ + 53.567594, + 10.0253822 + ], + [ + 53.5677349, + 10.0254245 + ], + [ + 53.5679082, + 10.0255054 + ], + [ + 53.5680809, + 10.0256088 + ], + [ + 53.5682457, + 10.0257546 + ] + ] + }, + { + "osmId": "131542367", + "name": null, + "lengthMeters": 106.34393371244832, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5755895, + 10.0387675 + ], + [ + 53.5757429, + 10.0390606 + ], + [ + 53.5757909, + 10.0391418 + ], + [ + 53.5757992, + 10.0391558 + ], + [ + 53.575834, + 10.0392147 + ], + [ + 53.5758984, + 10.0392991 + ], + [ + 53.5759239, + 10.0393359 + ], + [ + 53.5759441, + 10.0393632 + ], + [ + 53.5759641, + 10.0393884 + ], + [ + 53.5760288, + 10.0394536 + ], + [ + 53.5760748, + 10.0395027 + ], + [ + 53.5761449, + 10.0395565 + ], + [ + 53.5762049, + 10.0396025 + ], + [ + 53.576247, + 10.0396262 + ], + [ + 53.5763254, + 10.0396703 + ], + [ + 53.5763534, + 10.0396851 + ] + ] + }, + { + "osmId": "131542368", + "name": null, + "lengthMeters": 273.4197973286544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5649907, + 10.0265859 + ], + [ + 53.5662391, + 10.0258212 + ], + [ + 53.5667783, + 10.0254944 + ], + [ + 53.5669365, + 10.0254267 + ], + [ + 53.5671064, + 10.0253739 + ], + [ + 53.5672177, + 10.0253584 + ], + [ + 53.5673274, + 10.0253537 + ] + ] + }, + { + "osmId": "131669551", + "name": null, + "lengthMeters": 151.380946695376, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.357186, + 13.1379386 + ], + [ + 52.3570669, + 13.1379076 + ], + [ + 52.3570442, + 13.1379024 + ], + [ + 52.3570096, + 13.1378913 + ], + [ + 52.3569795, + 13.1378783 + ], + [ + 52.356954, + 13.1378627 + ], + [ + 52.3569232, + 13.1378376 + ], + [ + 52.3569015, + 13.1378145 + ], + [ + 52.3568758, + 13.1377827 + ], + [ + 52.3568501, + 13.1377411 + ], + [ + 52.3568246, + 13.1376912 + ], + [ + 52.3568082, + 13.1376485 + ], + [ + 52.3567949, + 13.1376023 + ], + [ + 52.3567868, + 13.1375674 + ], + [ + 52.3567818, + 13.1375274 + ], + [ + 52.3567769, + 13.1374837 + ], + [ + 52.3567735, + 13.1373896 + ], + [ + 52.3567718, + 13.1373222 + ], + [ + 52.356769, + 13.137226 + ], + [ + 52.3567699, + 13.137115 + ], + [ + 52.3567729, + 13.1370275 + ], + [ + 52.356777, + 13.1369645 + ], + [ + 52.3567843, + 13.1369134 + ], + [ + 52.3567948, + 13.1368689 + ], + [ + 52.3568015, + 13.1368413 + ], + [ + 52.3568145, + 13.1368036 + ], + [ + 52.3568279, + 13.1367695 + ], + [ + 52.3568467, + 13.1367287 + ], + [ + 52.3568668, + 13.1366949 + ], + [ + 52.3568911, + 13.1366616 + ], + [ + 52.356916, + 13.136634 + ], + [ + 52.3569332, + 13.1366186 + ], + [ + 52.3569548, + 13.1366009 + ], + [ + 52.3569842, + 13.1365827 + ], + [ + 52.3570046, + 13.1365739 + ], + [ + 52.357023, + 13.1365668 + ], + [ + 52.3571543, + 13.1365237 + ] + ] + }, + { + "osmId": "131669555", + "name": null, + "lengthMeters": 118.56511036696668, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3624128, + 13.1371209 + ], + [ + 52.3625009, + 13.1371172 + ], + [ + 52.3632796, + 13.1370885 + ], + [ + 52.3634788, + 13.1370808 + ] + ] + }, + { + "osmId": "131670573", + "name": null, + "lengthMeters": 490.8453403260577, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5699507, + 9.9581567 + ], + [ + 53.5700219, + 9.9578789 + ], + [ + 53.5700942, + 9.957553 + ], + [ + 53.5704745, + 9.9559023 + ], + [ + 53.5707115, + 9.9549117 + ], + [ + 53.5707405, + 9.9548137 + ], + [ + 53.5707633, + 9.9547401 + ], + [ + 53.5708023, + 9.954622 + ], + [ + 53.5708461, + 9.9545112 + ], + [ + 53.5709116, + 9.9543666 + ], + [ + 53.5709942, + 9.9541991 + ], + [ + 53.5711575, + 9.9538872 + ], + [ + 53.5712415, + 9.9537374 + ], + [ + 53.5712873, + 9.9536515 + ], + [ + 53.5713272, + 9.9535716 + ], + [ + 53.5713666, + 9.9534869 + ], + [ + 53.5714092, + 9.9533915 + ], + [ + 53.5716847, + 9.9526475 + ], + [ + 53.5720409, + 9.9516795 + ] + ] + }, + { + "osmId": "132022373", + "name": null, + "lengthMeters": 388.1582054603472, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1265194, + 11.604525 + ], + [ + 48.1287324, + 11.607853 + ], + [ + 48.1289901, + 11.6082193 + ] + ] + }, + { + "osmId": "132022384", + "name": null, + "lengthMeters": 657.156022951374, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1296648, + 11.608804 + ], + [ + 48.1292704, + 11.6083179 + ], + [ + 48.1291578, + 11.6081792 + ], + [ + 48.1290663, + 11.6080631 + ], + [ + 48.1289242, + 11.6078831 + ], + [ + 48.1285664, + 11.6073963 + ], + [ + 48.1281561, + 11.6068063 + ], + [ + 48.1279014, + 11.6064045 + ], + [ + 48.1274092, + 11.6056883 + ], + [ + 48.1265728, + 11.6044364 + ], + [ + 48.1261089, + 11.6037509 + ], + [ + 48.1258157, + 11.6032758 + ], + [ + 48.1258015, + 11.6032527 + ], + [ + 48.1255902, + 11.6028859 + ], + [ + 48.1254422, + 11.6026235 + ] + ] + }, + { + "osmId": "132022388", + "name": null, + "lengthMeters": 387.46363092943517, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1290162, + 11.6081658 + ], + [ + 48.128773, + 11.6078247 + ], + [ + 48.1265468, + 11.6044829 + ] + ] + }, + { + "osmId": "132022403", + "name": null, + "lengthMeters": 248.12434643098948, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1265468, + 11.6044829 + ], + [ + 48.126158, + 11.6038945 + ], + [ + 48.1258241, + 11.6033738 + ], + [ + 48.125518, + 11.6028797 + ], + [ + 48.1253404, + 11.6025746 + ], + [ + 48.1252869, + 11.6024768 + ], + [ + 48.1251622, + 11.6022328 + ], + [ + 48.1250528, + 11.6020054 + ] + ] + }, + { + "osmId": "132022405", + "name": null, + "lengthMeters": 431.35903079431, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1266836, + 11.6042681 + ], + [ + 48.1275185, + 11.6055168 + ], + [ + 48.1290136, + 11.6077531 + ], + [ + 48.1292958, + 11.6081469 + ], + [ + 48.1294431, + 11.6083524 + ] + ] + }, + { + "osmId": "132048714", + "name": null, + "lengthMeters": 232.24588183977568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5492374, + 9.9901671 + ], + [ + 53.5491608, + 9.9900184 + ], + [ + 53.5491285, + 9.9899525 + ], + [ + 53.5491013, + 9.9898918 + ], + [ + 53.5490772, + 9.9898333 + ], + [ + 53.5490517, + 9.989766 + ], + [ + 53.5490302, + 9.9897038 + ], + [ + 53.5490248, + 9.9896874 + ], + [ + 53.5489957, + 9.9895867 + ], + [ + 53.5489814, + 9.9895277 + ], + [ + 53.548965, + 9.989455 + ], + [ + 53.5489491, + 9.9893788 + ], + [ + 53.5489346, + 9.9892981 + ], + [ + 53.548923, + 9.9892153 + ], + [ + 53.5489131, + 9.9891344 + ], + [ + 53.5489069, + 9.9890664 + ], + [ + 53.5489021, + 9.9890023 + ], + [ + 53.5488977, + 9.9889132 + ], + [ + 53.5488962, + 9.9888301 + ], + [ + 53.5488968, + 9.9887516 + ], + [ + 53.5489018, + 9.9885973 + ], + [ + 53.54892, + 9.9882631 + ], + [ + 53.5489231, + 9.988192 + ], + [ + 53.5489251, + 9.9881286 + ], + [ + 53.5489254, + 9.988067 + ], + [ + 53.5489243, + 9.9880036 + ], + [ + 53.548921, + 9.9879347 + ], + [ + 53.5489149, + 9.9878606 + ], + [ + 53.548908, + 9.9878036 + ], + [ + 53.5488991, + 9.9877464 + ], + [ + 53.5488958, + 9.987728 + ], + [ + 53.5488836, + 9.9876696 + ], + [ + 53.5488679, + 9.9876023 + ], + [ + 53.5488509, + 9.9875426 + ], + [ + 53.5488345, + 9.9874929 + ], + [ + 53.5488143, + 9.9874393 + ], + [ + 53.5487926, + 9.9873891 + ], + [ + 53.5487689, + 9.9873413 + ], + [ + 53.5487472, + 9.9873015 + ], + [ + 53.548727, + 9.9872679 + ], + [ + 53.548695, + 9.9872199 + ], + [ + 53.5486644, + 9.9871792 + ], + [ + 53.5486366, + 9.9871455 + ], + [ + 53.5486134, + 9.9871207 + ], + [ + 53.548579, + 9.9870892 + ], + [ + 53.5485466, + 9.9870645 + ] + ] + }, + { + "osmId": "132049170", + "name": null, + "lengthMeters": 94.15610308573649, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1299304, + 11.6081812 + ], + [ + 48.1297053, + 11.6078661 + ], + [ + 48.1295546, + 11.607674 + ], + [ + 48.1292893, + 11.6073534 + ] + ] + }, + { + "osmId": "132049171", + "name": null, + "lengthMeters": 183.8066433035834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1283443, + 11.6063966 + ], + [ + 48.1283537, + 11.6064103 + ], + [ + 48.1284122, + 11.6064959 + ], + [ + 48.1287538, + 11.6070081 + ], + [ + 48.1291436, + 11.607593 + ], + [ + 48.129511, + 11.608151 + ] + ] + }, + { + "osmId": "132140058", + "name": null, + "lengthMeters": 156.96906206644218, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3949061, + 13.136062 + ], + [ + 52.3958556, + 13.1377739 + ] + ] + }, + { + "osmId": "132375412", + "name": null, + "lengthMeters": 208.58312460495353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3932927, + 13.1095616 + ], + [ + 52.3933561, + 13.1101707 + ], + [ + 52.3934202, + 13.1105388 + ], + [ + 52.3934514, + 13.1107265 + ], + [ + 52.3935222, + 13.1111522 + ], + [ + 52.3936306, + 13.1118007 + ], + [ + 52.3936826, + 13.1120203 + ], + [ + 52.3937283, + 13.1121933 + ], + [ + 52.3937996, + 13.1125137 + ] + ] + }, + { + "osmId": "132449310", + "name": null, + "lengthMeters": 180.4847026619569, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5575332, + 9.9685912 + ], + [ + 53.5575901, + 9.9685864 + ], + [ + 53.5576552, + 9.9685884 + ], + [ + 53.5577218, + 9.968595 + ], + [ + 53.5577814, + 9.9686094 + ], + [ + 53.5591211, + 9.969124 + ] + ] + }, + { + "osmId": "132449311", + "name": null, + "lengthMeters": 1172.6461269435542, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5470579, + 9.970258 + ], + [ + 53.547686, + 9.9703194 + ], + [ + 53.5483176, + 9.9702821 + ], + [ + 53.5497873, + 9.9701851 + ], + [ + 53.5502067, + 9.9702304 + ], + [ + 53.5503205, + 9.9702303 + ], + [ + 53.5504681, + 9.9702223 + ], + [ + 53.5506555, + 9.9701857 + ], + [ + 53.5514007, + 9.970049 + ], + [ + 53.5516061, + 9.9699955 + ], + [ + 53.5531581, + 9.9696136 + ], + [ + 53.5561543, + 9.9688857 + ], + [ + 53.5563799, + 9.968841 + ], + [ + 53.5567282, + 9.9687754 + ], + [ + 53.5569375, + 9.9687323 + ], + [ + 53.5570098, + 9.9687153 + ], + [ + 53.5572421, + 9.9686518 + ], + [ + 53.5572779, + 9.9686423 + ], + [ + 53.5573733, + 9.9686198 + ], + [ + 53.5574527, + 9.9686014 + ], + [ + 53.5574886, + 9.968596 + ], + [ + 53.5575332, + 9.9685912 + ] + ] + }, + { + "osmId": "132530657", + "name": null, + "lengthMeters": 80.10635621424633, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5925059, + 9.9957859 + ], + [ + 53.5921507, + 9.9955938 + ], + [ + 53.5919392, + 9.9954561 + ], + [ + 53.5918295, + 9.9953716 + ] + ] + }, + { + "osmId": "132572548", + "name": null, + "lengthMeters": 174.59977533570395, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497705, + 9.9925805 + ], + [ + 53.5496995, + 9.9923962 + ], + [ + 53.549658, + 9.9922886 + ], + [ + 53.5496382, + 9.9922166 + ], + [ + 53.5496171, + 9.992116 + ], + [ + 53.5495832, + 9.9919151 + ], + [ + 53.5495689, + 9.9918136 + ], + [ + 53.5495574, + 9.9916986 + ], + [ + 53.5495456, + 9.9915089 + ], + [ + 53.5495412, + 9.9914098 + ], + [ + 53.5495358, + 9.9913013 + ], + [ + 53.5495216, + 9.9910854 + ], + [ + 53.5495129, + 9.9909625 + ], + [ + 53.5495023, + 9.9908663 + ], + [ + 53.5494844, + 9.99076 + ], + [ + 53.5494537, + 9.9906284 + ], + [ + 53.549419, + 9.9905276 + ], + [ + 53.5493853, + 9.9904498 + ], + [ + 53.5492374, + 9.9901671 + ] + ] + }, + { + "osmId": "132572549", + "name": null, + "lengthMeters": 159.1955755493719, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521764, + 10.0086761 + ], + [ + 53.5521505, + 10.0085914 + ], + [ + 53.5521324, + 10.008503 + ], + [ + 53.5521201, + 10.00843 + ], + [ + 53.5521002, + 10.0082893 + ], + [ + 53.5518682, + 10.0063272 + ] + ] + }, + { + "osmId": "132572550", + "name": null, + "lengthMeters": 357.7364601816151, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552863, + 10.0192847 + ], + [ + 53.5528048, + 10.0189621 + ], + [ + 53.5527528, + 10.0186554 + ], + [ + 53.5527229, + 10.0183267 + ], + [ + 53.5526945, + 10.0180231 + ], + [ + 53.5526718, + 10.0176827 + ], + [ + 53.5526432, + 10.0173435 + ], + [ + 53.5526389, + 10.0167522 + ], + [ + 53.5526331, + 10.0156597 + ], + [ + 53.5526179, + 10.0151139 + ], + [ + 53.5525905, + 10.0146286 + ], + [ + 53.5525438, + 10.0139164 + ] + ] + }, + { + "osmId": "132576637", + "name": null, + "lengthMeters": 388.7912020211014, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5914856, + 10.0387905 + ], + [ + 53.5916706, + 10.0390661 + ], + [ + 53.5918287, + 10.0393357 + ], + [ + 53.5919753, + 10.0396231 + ], + [ + 53.592111, + 10.0399253 + ], + [ + 53.592235, + 10.0402412 + ], + [ + 53.5923447, + 10.0405721 + ], + [ + 53.5924426, + 10.040913 + ], + [ + 53.592525, + 10.0412654 + ], + [ + 53.5925948, + 10.0416252 + ], + [ + 53.5926502, + 10.0419919 + ], + [ + 53.5926933, + 10.0423646 + ], + [ + 53.5928549, + 10.0440287 + ] + ] + }, + { + "osmId": "132576638", + "name": null, + "lengthMeters": 135.9779340069589, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5929088, + 10.0445841 + ], + [ + 53.593104, + 10.0465962 + ], + [ + 53.5931061, + 10.0466175 + ] + ] + }, + { + "osmId": "132576644", + "name": null, + "lengthMeters": 193.55944875868312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5931348, + 10.0469127 + ], + [ + 53.5934156, + 10.0498072 + ] + ] + }, + { + "osmId": "132576646", + "name": null, + "lengthMeters": 138.87012393531026, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.590353, + 10.0379669 + ], + [ + 53.5905417, + 10.0380252 + ], + [ + 53.5907173, + 10.0381029 + ], + [ + 53.5908866, + 10.0382011 + ], + [ + 53.5910519, + 10.038322 + ], + [ + 53.5912066, + 10.0384632 + ], + [ + 53.5913565, + 10.038624 + ], + [ + 53.5914856, + 10.0387905 + ] + ] + }, + { + "osmId": "132576647", + "name": null, + "lengthMeters": 83.05140711587015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5920332, + 10.0728486 + ], + [ + 53.5919986, + 10.072676 + ], + [ + 53.5919715, + 10.0725172 + ], + [ + 53.591903, + 10.0721491 + ], + [ + 53.5918367, + 10.0716359 + ] + ] + }, + { + "osmId": "132576648", + "name": null, + "lengthMeters": 177.52336235855225, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5918367, + 10.0716359 + ], + [ + 53.5918612, + 10.0719295 + ], + [ + 53.5919001, + 10.0722287 + ], + [ + 53.5919672, + 10.0726882 + ], + [ + 53.5920449, + 10.0731099 + ], + [ + 53.5921602, + 10.0736527 + ], + [ + 53.5922801, + 10.0742132 + ] + ] + }, + { + "osmId": "132576650", + "name": null, + "lengthMeters": 547.4950807196708, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5933225, + 10.0590684 + ], + [ + 53.5932321, + 10.0605253 + ], + [ + 53.5931952, + 10.0610346 + ], + [ + 53.5931436, + 10.0615244 + ], + [ + 53.5930753, + 10.0620047 + ], + [ + 53.592992, + 10.0624766 + ], + [ + 53.592145, + 10.0670954 + ] + ] + }, + { + "osmId": "132576651", + "name": null, + "lengthMeters": 247.2725809532313, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5921158, + 10.0672604 + ], + [ + 53.591982, + 10.0680025 + ], + [ + 53.591903, + 10.0685299 + ], + [ + 53.5918399, + 10.0691131 + ], + [ + 53.5918022, + 10.069686 + ], + [ + 53.5917847, + 10.0701847 + ], + [ + 53.5917841, + 10.070642 + ], + [ + 53.591794, + 10.0709426 + ] + ] + }, + { + "osmId": "132576652", + "name": null, + "lengthMeters": 75.29203181298769, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5925399, + 10.0752618 + ], + [ + 53.5925286, + 10.0752077 + ], + [ + 53.5923122, + 10.0741874 + ] + ] + }, + { + "osmId": "132616371", + "name": null, + "lengthMeters": 104.8975417068234, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.593028, + 10.0773262 + ], + [ + 53.5927324, + 10.0758168 + ] + ] + }, + { + "osmId": "132616375", + "name": null, + "lengthMeters": 90.44664089273212, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5925483, + 10.0758585 + ], + [ + 53.5926665, + 10.0763626 + ], + [ + 53.592835, + 10.0771409 + ] + ] + }, + { + "osmId": "132638922", + "name": null, + "lengthMeters": 91.65135965491221, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5943923, + 10.0843223 + ], + [ + 53.5946723, + 10.0856285 + ] + ] + }, + { + "osmId": "132638923", + "name": null, + "lengthMeters": 179.1844478483692, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5938497, + 10.0817657 + ], + [ + 53.5943923, + 10.0843223 + ] + ] + }, + { + "osmId": "132638925", + "name": null, + "lengthMeters": 111.76499450062045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5940877, + 10.082751 + ], + [ + 53.59375, + 10.0811559 + ] + ] + }, + { + "osmId": "132638926", + "name": null, + "lengthMeters": 416.2096784382272, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5947238, + 10.0858771 + ], + [ + 53.5959814, + 10.0918174 + ] + ] + }, + { + "osmId": "132660926", + "name": null, + "lengthMeters": 82.61253504130276, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418629, + 11.5539909 + ], + [ + 48.1418647, + 11.553948 + ], + [ + 48.1418632, + 11.5534659 + ], + [ + 48.1418633, + 11.5528776 + ] + ] + }, + { + "osmId": "132670648", + "name": null, + "lengthMeters": 139.59568592332633, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6053404, + 10.1159889 + ], + [ + 53.6056071, + 10.116292 + ], + [ + 53.6064172, + 10.1170746 + ] + ] + }, + { + "osmId": "132670650", + "name": null, + "lengthMeters": 93.50860265128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6079554, + 10.1182596 + ], + [ + 53.6079169, + 10.1182221 + ], + [ + 53.6073911, + 10.1177258 + ], + [ + 53.6072189, + 10.1175758 + ] + ] + }, + { + "osmId": "132701623", + "name": null, + "lengthMeters": 505.69702245574825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6093477, + 10.1198975 + ], + [ + 53.6122184, + 10.1225986 + ], + [ + 53.6124849, + 10.1228678 + ], + [ + 53.6127427, + 10.1231486 + ], + [ + 53.6132712, + 10.1237646 + ] + ] + }, + { + "osmId": "132726885", + "name": null, + "lengthMeters": 91.20791786357677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6495277, + 10.1624281 + ], + [ + 53.6492871, + 10.1621828 + ], + [ + 53.6488383, + 10.1616788 + ] + ] + }, + { + "osmId": "132726892", + "name": null, + "lengthMeters": 130.92347050945335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6498642, + 10.1626521 + ], + [ + 53.6497156, + 10.162527 + ], + [ + 53.6495624, + 10.1623938 + ], + [ + 53.6488383, + 10.1616788 + ] + ] + }, + { + "osmId": "132726894", + "name": null, + "lengthMeters": 255.0342402204132, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6438121, + 10.1593259 + ], + [ + 53.645124, + 10.159277 + ], + [ + 53.6455027, + 10.1593058 + ], + [ + 53.6458866, + 10.1593884 + ], + [ + 53.6460968, + 10.1594667 + ] + ] + }, + { + "osmId": "132726896", + "name": null, + "lengthMeters": 133.83893039732357, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6487905, + 10.16193 + ], + [ + 53.649187, + 10.1623305 + ], + [ + 53.6494198, + 10.1625294 + ], + [ + 53.6496411, + 10.1626892 + ], + [ + 53.649866, + 10.1628298 + ] + ] + }, + { + "osmId": "132726898", + "name": null, + "lengthMeters": 157.37241770786963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6491851, + 10.1621578 + ], + [ + 53.6485849, + 10.1615859 + ], + [ + 53.6484171, + 10.1614124 + ], + [ + 53.6482749, + 10.1612495 + ], + [ + 53.6480497, + 10.1609705 + ], + [ + 53.647986, + 10.1608949 + ] + ] + }, + { + "osmId": "132726899", + "name": null, + "lengthMeters": 278.7323843011287, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6412401, + 10.158751 + ], + [ + 53.6415189, + 10.1589015 + ], + [ + 53.6417757, + 10.159016 + ], + [ + 53.6420139, + 10.1590921 + ], + [ + 53.6422818, + 10.1591585 + ], + [ + 53.6426193, + 10.1592254 + ], + [ + 53.6427384, + 10.159249 + ], + [ + 53.6431916, + 10.1593144 + ], + [ + 53.6437121, + 10.1593259 + ] + ] + }, + { + "osmId": "132727661", + "name": null, + "lengthMeters": 451.81956958377265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2011605, + 11.6129761 + ], + [ + 48.2010202, + 11.6130217 + ], + [ + 48.2008378, + 11.6130911 + ], + [ + 48.2006657, + 11.613173 + ], + [ + 48.2005616, + 11.6132281 + ], + [ + 48.2003444, + 11.6133683 + ], + [ + 48.2002288, + 11.6134436 + ], + [ + 48.2001142, + 11.6135301 + ], + [ + 48.1999273, + 11.6136888 + ], + [ + 48.199779, + 11.6138351 + ], + [ + 48.1996, + 11.6140356 + ], + [ + 48.1994377, + 11.6142394 + ], + [ + 48.1987736, + 11.6151707 + ], + [ + 48.1986516, + 11.6153155 + ], + [ + 48.1984046, + 11.6155694 + ], + [ + 48.1982843, + 11.6156801 + ], + [ + 48.1981509, + 11.6157931 + ], + [ + 48.1979159, + 11.615963 + ], + [ + 48.1977242, + 11.616065 + ] + ] + }, + { + "osmId": "132727683", + "name": null, + "lengthMeters": 1389.0147972223012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1977242, + 11.616065 + ], + [ + 48.1975239, + 11.6161724 + ], + [ + 48.197355, + 11.6162421 + ], + [ + 48.1971886, + 11.6162934 + ], + [ + 48.1970175, + 11.6163345 + ], + [ + 48.1967693, + 11.6163735 + ], + [ + 48.196511, + 11.6163738 + ], + [ + 48.1961922, + 11.6163472 + ], + [ + 48.1958724, + 11.6162768 + ], + [ + 48.1956663, + 11.6162033 + ], + [ + 48.1954873, + 11.6161217 + ], + [ + 48.19349, + 11.6151353 + ], + [ + 48.1933232, + 11.6150528 + ], + [ + 48.1931088, + 11.6149406 + ], + [ + 48.1928948, + 11.614809 + ], + [ + 48.1925995, + 11.6146063 + ], + [ + 48.1924577, + 11.6145077 + ], + [ + 48.192306, + 11.6144023 + ], + [ + 48.192011, + 11.6142033 + ], + [ + 48.1917427, + 11.6140429 + ], + [ + 48.1914709, + 11.6138911 + ], + [ + 48.1906718, + 11.6135022 + ], + [ + 48.1903907, + 11.6133942 + ], + [ + 48.1901583, + 11.6133376 + ], + [ + 48.189986, + 11.6133106 + ], + [ + 48.1898199, + 11.6133107 + ], + [ + 48.1896772, + 11.6133283 + ], + [ + 48.1895154, + 11.6133385 + ], + [ + 48.1893491, + 11.6133338 + ], + [ + 48.1891882, + 11.6133087 + ], + [ + 48.1890164, + 11.613268 + ], + [ + 48.1887827, + 11.6131882 + ], + [ + 48.1884886, + 11.6130394 + ], + [ + 48.1883364, + 11.6129466 + ], + [ + 48.1882672, + 11.6128944 + ], + [ + 48.1880965, + 11.612765 + ], + [ + 48.1879306, + 11.6126231 + ], + [ + 48.1866381, + 11.6112537 + ], + [ + 48.1865135, + 11.6111036 + ], + [ + 48.1861443, + 11.6106077 + ] + ] + }, + { + "osmId": "132729759", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 276.75817565747826, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1437371, + 11.6757862 + ], + [ + 48.1436871, + 11.6753892 + ], + [ + 48.143635, + 11.6749759 + ], + [ + 48.1435847, + 11.6746185 + ], + [ + 48.1435133, + 11.6741589 + ], + [ + 48.1434611, + 11.6738679 + ], + [ + 48.1433719, + 11.6734054 + ], + [ + 48.143293, + 11.6730279 + ], + [ + 48.1431069, + 11.6721828 + ] + ] + }, + { + "osmId": "132729764", + "name": null, + "lengthMeters": 118.58030187710706, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135664, + 11.6557521 + ], + [ + 48.13626, + 11.6570772 + ] + ] + }, + { + "osmId": "132729767", + "name": null, + "lengthMeters": 1455.3056581384762, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433829, + 11.6732172 + ], + [ + 48.143156, + 11.6721983 + ], + [ + 48.1430803, + 11.6718584 + ], + [ + 48.1428997, + 11.6710424 + ], + [ + 48.1427894, + 11.6705953 + ], + [ + 48.1426838, + 11.670175 + ], + [ + 48.1425836, + 11.6698204 + ], + [ + 48.1424701, + 11.6694565 + ], + [ + 48.1423637, + 11.6691434 + ], + [ + 48.1422612, + 11.6688706 + ], + [ + 48.1421243, + 11.6685263 + ], + [ + 48.1420144, + 11.6682827 + ], + [ + 48.1419391, + 11.6681156 + ], + [ + 48.1416827, + 11.6676068 + ], + [ + 48.1415136, + 11.6672873 + ], + [ + 48.1411179, + 11.6665433 + ], + [ + 48.1402433, + 11.6648786 + ], + [ + 48.1397629, + 11.6639246 + ], + [ + 48.1392985, + 11.66296 + ], + [ + 48.1385704, + 11.6615376 + ], + [ + 48.138317, + 11.6610583 + ], + [ + 48.1378444, + 11.660118 + ], + [ + 48.1377001, + 11.6598251 + ], + [ + 48.1370011, + 11.6584066 + ], + [ + 48.1368325, + 11.6580609 + ], + [ + 48.1366557, + 11.6577155 + ], + [ + 48.1364763, + 11.6573781 + ], + [ + 48.1362582, + 11.6569438 + ] + ] + }, + { + "osmId": "132729769", + "name": null, + "lengthMeters": 402.67218844042725, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.142686, + 11.6705822 + ], + [ + 48.1427315, + 11.6707665 + ], + [ + 48.1428165, + 11.6711107 + ], + [ + 48.1432515, + 11.6730473 + ], + [ + 48.1433302, + 11.6734286 + ], + [ + 48.1434187, + 11.6738903 + ], + [ + 48.1434733, + 11.6741987 + ], + [ + 48.1435489, + 11.6746803 + ], + [ + 48.1435899, + 11.6749834 + ], + [ + 48.1436438, + 11.6754038 + ], + [ + 48.1436928, + 11.6757863 + ] + ] + }, + { + "osmId": "132735859", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 291.3875621435419, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1503668, + 11.7261378 + ], + [ + 48.1502852, + 11.7258101 + ], + [ + 48.1501906, + 11.7253846 + ], + [ + 48.1501444, + 11.7251796 + ], + [ + 48.150032, + 11.7246353 + ], + [ + 48.1499625, + 11.7242681 + ], + [ + 48.1498996, + 11.723886 + ], + [ + 48.1498004, + 11.7232215 + ], + [ + 48.1497122, + 11.7225471 + ], + [ + 48.1496871, + 11.7223508 + ] + ] + }, + { + "osmId": "132833390", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 78.67988282203046, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4588462, + 9.9917027 + ], + [ + 53.4591933, + 9.9917835 + ], + [ + 53.4595444, + 9.9918936 + ] + ] + }, + { + "osmId": "132833391", + "name": null, + "lengthMeters": 82.19152816186286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.460329, + 9.9920044 + ], + [ + 53.4604793, + 9.9920819 + ], + [ + 53.4610355, + 9.9923694 + ] + ] + }, + { + "osmId": "132915347", + "name": null, + "lengthMeters": 213.43780262753407, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5694731, + 9.9636965 + ], + [ + 53.569425, + 9.964335 + ], + [ + 53.5694047, + 9.9645738 + ], + [ + 53.5693745, + 9.9648984 + ], + [ + 53.5693598, + 9.9650323 + ], + [ + 53.5693339, + 9.9652135 + ], + [ + 53.5693153, + 9.9653196 + ], + [ + 53.5693067, + 9.9653673 + ], + [ + 53.5692129, + 9.9658219 + ], + [ + 53.5691556, + 9.9660525 + ], + [ + 53.5690379, + 9.9664473 + ], + [ + 53.5689324, + 9.9667637 + ] + ] + }, + { + "osmId": "132915348", + "name": null, + "lengthMeters": 150.78390331226103, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5694418, + 9.9614198 + ], + [ + 53.5694902, + 9.9621903 + ], + [ + 53.5694993, + 9.9623529 + ], + [ + 53.5695047, + 9.9625447 + ], + [ + 53.5695048, + 9.9627062 + ], + [ + 53.5695018, + 9.9628367 + ], + [ + 53.5694965, + 9.9629598 + ], + [ + 53.5694848, + 9.9632423 + ], + [ + 53.5694731, + 9.9636965 + ] + ] + }, + { + "osmId": "133117216", + "name": null, + "lengthMeters": 121.49695067512324, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.140967, + 11.5512288 + ], + [ + 48.1411386, + 11.5496117 + ] + ] + }, + { + "osmId": "133117268", + "name": null, + "lengthMeters": 749.7809826057005, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2145698, + 11.4584247 + ], + [ + 48.2145552, + 11.4584304 + ], + [ + 48.2140807, + 11.4586166 + ], + [ + 48.2133143, + 11.4589103 + ], + [ + 48.2126005, + 11.4591907 + ], + [ + 48.210639, + 11.4599577 + ], + [ + 48.2100692, + 11.4601838 + ], + [ + 48.2093467, + 11.4604706 + ], + [ + 48.2080466, + 11.4609867 + ] + ] + }, + { + "osmId": "133130813", + "name": null, + "lengthMeters": 90.89638347316583, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5560192, + 9.9355296 + ], + [ + 53.5563619, + 9.9355413 + ], + [ + 53.5564668, + 9.9355336 + ], + [ + 53.5565646, + 9.935537 + ], + [ + 53.5568364, + 9.9355466 + ] + ] + }, + { + "osmId": "133369042", + "name": null, + "lengthMeters": 105.51150036699421, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1277234, + 11.6052044 + ], + [ + 48.1270553, + 11.6041949 + ] + ] + }, + { + "osmId": "133373352", + "name": null, + "lengthMeters": 132.56751161566768, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1267961, + 11.6040689 + ], + [ + 48.1269332, + 11.6042812 + ], + [ + 48.1269491, + 11.6043057 + ], + [ + 48.1276364, + 11.6053359 + ] + ] + }, + { + "osmId": "133387908", + "name": null, + "lengthMeters": 406.7879328947797, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1510146, + 11.4580432 + ], + [ + 48.1506947, + 11.4589674 + ], + [ + 48.150291, + 11.460195 + ], + [ + 48.1502593, + 11.4602969 + ], + [ + 48.1500568, + 11.4609428 + ], + [ + 48.1498685, + 11.4615699 + ], + [ + 48.1496315, + 11.4623593 + ], + [ + 48.1494972, + 11.4628042 + ], + [ + 48.1494407, + 11.4629917 + ] + ] + }, + { + "osmId": "133387909", + "name": null, + "lengthMeters": 84.33048628836269, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1499464, + 11.4606529 + ], + [ + 48.1499675, + 11.4605846 + ], + [ + 48.1500689, + 11.4603206 + ], + [ + 48.1501747, + 11.4600494 + ], + [ + 48.1503244, + 11.4596678 + ] + ] + }, + { + "osmId": "133387910", + "name": null, + "lengthMeters": 154.4069022888077, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1483986, + 11.4663833 + ], + [ + 48.1488769, + 11.4652523 + ], + [ + 48.1491219, + 11.4646073 + ] + ] + }, + { + "osmId": "133645286", + "name": null, + "lengthMeters": 511.8989407108135, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1508749, + 11.4597659 + ], + [ + 48.1508119, + 11.4599713 + ], + [ + 48.1506973, + 11.460354 + ], + [ + 48.1504411, + 11.461202 + ], + [ + 48.1502455, + 11.4618452 + ], + [ + 48.1500149, + 11.4625994 + ], + [ + 48.1500057, + 11.4626276 + ], + [ + 48.1499168, + 11.4629014 + ], + [ + 48.1495655, + 11.4638626 + ], + [ + 48.1491421, + 11.4650083 + ], + [ + 48.1490638, + 11.4652114 + ], + [ + 48.1488011, + 11.4659204 + ] + ] + }, + { + "osmId": "133656501", + "name": null, + "lengthMeters": 140.55118639761264, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1488011, + 11.4659204 + ], + [ + 48.1486875, + 11.4662151 + ], + [ + 48.1485868, + 11.4664725 + ], + [ + 48.1481717, + 11.4675633 + ] + ] + }, + { + "osmId": "133656503", + "name": null, + "lengthMeters": 76.66445339307032, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1407314, + 11.5529539 + ], + [ + 48.1407581, + 11.5528007 + ], + [ + 48.1408651, + 11.5521861 + ], + [ + 48.1408903, + 11.5519494 + ] + ] + }, + { + "osmId": "133656506", + "name": null, + "lengthMeters": 812.1990711043774, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1485393, + 11.4667546 + ], + [ + 48.1487221, + 11.4662454 + ], + [ + 48.1488684, + 11.4658499 + ], + [ + 48.1489171, + 11.4657182 + ], + [ + 48.1491737, + 11.4650337 + ], + [ + 48.1492714, + 11.4647732 + ], + [ + 48.1496021, + 11.4638913 + ], + [ + 48.15005, + 11.4626417 + ], + [ + 48.150293, + 11.4618772 + ], + [ + 48.1504918, + 11.4612362 + ], + [ + 48.1510135, + 11.4595193 + ], + [ + 48.1512509, + 11.4587246 + ], + [ + 48.1515233, + 11.4577804 + ], + [ + 48.1515934, + 11.4575234 + ], + [ + 48.1517451, + 11.45693 + ] + ] + }, + { + "osmId": "133664499", + "name": "Isartalbahn", + "lengthMeters": 363.43260581635496, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0165382, + 11.4784393 + ], + [ + 48.0171445, + 11.4789143 + ], + [ + 48.017993, + 11.4795556 + ], + [ + 48.0186736, + 11.4800755 + ], + [ + 48.0191582, + 11.4804491 + ], + [ + 48.0194458, + 11.4806709 + ] + ] + }, + { + "osmId": "133668740", + "name": null, + "lengthMeters": 3060.6384017500022, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0735368, + 11.6634997 + ], + [ + 48.0733419, + 11.6637765 + ], + [ + 48.0733124, + 11.6638213 + ], + [ + 48.0732669, + 11.6638849 + ], + [ + 48.0731056, + 11.6641286 + ], + [ + 48.072933, + 11.66438 + ], + [ + 48.0728957, + 11.6644342 + ], + [ + 48.0717677, + 11.6660697 + ], + [ + 48.0710083, + 11.667173 + ], + [ + 48.0709433, + 11.6672673 + ], + [ + 48.0702497, + 11.6682749 + ], + [ + 48.0692553, + 11.6697358 + ], + [ + 48.0692387, + 11.66976 + ], + [ + 48.0681727, + 11.6713019 + ], + [ + 48.0681126, + 11.6713894 + ], + [ + 48.0680477, + 11.6714841 + ], + [ + 48.0677589, + 11.6719052 + ], + [ + 48.0667329, + 11.6733994 + ], + [ + 48.0662317, + 11.6741292 + ], + [ + 48.0657189, + 11.6748735 + ], + [ + 48.0652232, + 11.6755954 + ], + [ + 48.0648256, + 11.6761768 + ], + [ + 48.0646639, + 11.6764122 + ], + [ + 48.0644898, + 11.6766656 + ], + [ + 48.0641183, + 11.6772066 + ], + [ + 48.0633229, + 11.6783645 + ], + [ + 48.0629917, + 11.6788467 + ], + [ + 48.0628477, + 11.6790564 + ], + [ + 48.0627965, + 11.6791309 + ], + [ + 48.062745, + 11.6792059 + ], + [ + 48.0627084, + 11.6792592 + ], + [ + 48.061204, + 11.6814542 + ], + [ + 48.0606632, + 11.6822412 + ], + [ + 48.060195, + 11.6829227 + ], + [ + 48.0600803, + 11.6830897 + ], + [ + 48.0587113, + 11.6850818 + ], + [ + 48.0586905, + 11.6851121 + ], + [ + 48.057684, + 11.6865768 + ], + [ + 48.0572422, + 11.687213 + ], + [ + 48.0567785, + 11.6878532 + ], + [ + 48.0564817, + 11.6882393 + ], + [ + 48.0563016, + 11.6884735 + ], + [ + 48.0562523, + 11.6885344 + ], + [ + 48.0561331, + 11.6886815 + ], + [ + 48.0559201, + 11.6889399 + ], + [ + 48.0556235, + 11.6892815 + ], + [ + 48.0553239, + 11.6896126 + ], + [ + 48.0547512, + 11.690212 + ], + [ + 48.0545775, + 11.6903958 + ], + [ + 48.0534502, + 11.6915891 + ] + ] + }, + { + "osmId": "133668743", + "name": null, + "lengthMeters": 390.7085116119196, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0959849, + 11.6047402 + ], + [ + 48.0958016, + 11.6049464 + ], + [ + 48.0956688, + 11.6051151 + ], + [ + 48.0955885, + 11.6052293 + ], + [ + 48.0954995, + 11.6053612 + ], + [ + 48.0954142, + 11.6054932 + ], + [ + 48.0953324, + 11.6056334 + ], + [ + 48.0952517, + 11.6057784 + ], + [ + 48.0951582, + 11.6059647 + ], + [ + 48.09507, + 11.6061598 + ], + [ + 48.0949371, + 11.606478 + ], + [ + 48.0949017, + 11.6065757 + ], + [ + 48.0948272, + 11.6067988 + ], + [ + 48.0947569, + 11.607033 + ], + [ + 48.0947094, + 11.6072206 + ], + [ + 48.0946603, + 11.607425 + ], + [ + 48.0946226, + 11.6076162 + ], + [ + 48.0945946, + 11.6077651 + ], + [ + 48.0945491, + 11.6080729 + ], + [ + 48.0945165, + 11.6083375 + ], + [ + 48.0944825, + 11.6087813 + ], + [ + 48.0944602, + 11.6092609 + ] + ] + }, + { + "osmId": "133668744", + "name": "Isartalbahn", + "lengthMeters": 85.83904601871102, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0163351, + 11.4782671 + ], + [ + 48.0161815, + 11.478113 + ], + [ + 48.0160284, + 11.47795 + ], + [ + 48.0158851, + 11.4777879 + ], + [ + 48.0157135, + 11.4775837 + ] + ] + }, + { + "osmId": "133668747", + "name": null, + "lengthMeters": 353.2003826426679, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0204879, + 11.7189415 + ], + [ + 48.0195957, + 11.7190212 + ], + [ + 48.0195434, + 11.7190259 + ], + [ + 48.0194976, + 11.71903 + ], + [ + 48.0194546, + 11.7190356 + ], + [ + 48.0192337, + 11.7190645 + ], + [ + 48.0191475, + 11.7190758 + ], + [ + 48.0186515, + 11.7191285 + ], + [ + 48.0173294, + 11.7192828 + ], + [ + 48.0173199, + 11.7192839 + ] + ] + }, + { + "osmId": "133668749", + "name": "Isartalbahn", + "lengthMeters": 1456.6657779482116, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0411842, + 11.5080263 + ], + [ + 48.0405462, + 11.507532 + ], + [ + 48.0400764, + 11.507168 + ], + [ + 48.0400465, + 11.5071448 + ], + [ + 48.0400122, + 11.5071181 + ], + [ + 48.0383375, + 11.5058156 + ], + [ + 48.0383261, + 11.5058067 + ], + [ + 48.0374226, + 11.505104 + ], + [ + 48.0369011, + 11.5047003 + ], + [ + 48.0366429, + 11.5044958 + ], + [ + 48.0363857, + 11.504287 + ], + [ + 48.0361464, + 11.5040738 + ], + [ + 48.035992, + 11.5039232 + ], + [ + 48.0359847, + 11.5039161 + ], + [ + 48.0358822, + 11.50381 + ], + [ + 48.0356214, + 11.5035175 + ], + [ + 48.035383, + 11.5032174 + ], + [ + 48.0351479, + 11.5029028 + ], + [ + 48.0346844, + 11.5022598 + ], + [ + 48.0338553, + 11.5011028 + ], + [ + 48.0334396, + 11.5005282 + ], + [ + 48.0330238, + 11.4999525 + ], + [ + 48.0321006, + 11.4986694 + ], + [ + 48.0320126, + 11.498547 + ], + [ + 48.0318632, + 11.4983397 + ], + [ + 48.0312433, + 11.4974794 + ], + [ + 48.0308421, + 11.4969177 + ], + [ + 48.0306496, + 11.4966534 + ] + ] + }, + { + "osmId": "133668750", + "name": null, + "lengthMeters": 609.1835640106664, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.077471, + 11.6577939 + ], + [ + 48.0773, + 11.6580297 + ], + [ + 48.0770999, + 11.6583113 + ], + [ + 48.0769931, + 11.6584631 + ], + [ + 48.0768856, + 11.6586167 + ], + [ + 48.0766627, + 11.6589464 + ], + [ + 48.0763852, + 11.6593503 + ], + [ + 48.07629, + 11.6594899 + ], + [ + 48.0760558, + 11.6598348 + ], + [ + 48.07595, + 11.6599808 + ], + [ + 48.0757941, + 11.6602082 + ], + [ + 48.0755032, + 11.6606327 + ], + [ + 48.0753365, + 11.6608723 + ], + [ + 48.074905, + 11.6615033 + ], + [ + 48.0741658, + 11.6625774 + ], + [ + 48.0738356, + 11.6630597 + ], + [ + 48.0735368, + 11.6634997 + ] + ] + }, + { + "osmId": "133686477", + "name": "Norderstedter Industriebahn", + "lengthMeters": 3905.8852981751065, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7388433, + 9.9887095 + ], + [ + 53.7386564, + 9.9887934 + ], + [ + 53.7385099, + 9.9888748 + ], + [ + 53.7382718, + 9.9890952 + ], + [ + 53.7380636, + 9.9893553 + ], + [ + 53.7377372, + 9.9899174 + ], + [ + 53.7376624, + 9.9900685 + ], + [ + 53.7375926, + 9.9902362 + ], + [ + 53.737507, + 9.9904885 + ], + [ + 53.737407, + 9.9908745 + ], + [ + 53.7373343, + 9.9912902 + ], + [ + 53.7372959, + 9.9917731 + ], + [ + 53.7372919, + 9.9922354 + ], + [ + 53.7374081, + 9.9944753 + ], + [ + 53.7376027, + 9.9992778 + ], + [ + 53.7377777, + 10.0005826 + ], + [ + 53.7379663, + 10.0014319 + ], + [ + 53.7380487, + 10.001699 + ], + [ + 53.7382099, + 10.0022219 + ], + [ + 53.7382455, + 10.0023359 + ], + [ + 53.7383478, + 10.0026634 + ], + [ + 53.7387469, + 10.0039406 + ], + [ + 53.73911, + 10.0054995 + ], + [ + 53.7392663, + 10.0061706 + ], + [ + 53.739656, + 10.0078434 + ], + [ + 53.7397144, + 10.0080884 + ], + [ + 53.7401188, + 10.0097856 + ], + [ + 53.7401676, + 10.0099906 + ], + [ + 53.7404066, + 10.0110486 + ], + [ + 53.7405501, + 10.0118469 + ], + [ + 53.7406326, + 10.0127247 + ], + [ + 53.7406524, + 10.0137845 + ], + [ + 53.7406266, + 10.0142305 + ], + [ + 53.7405949, + 10.0145854 + ], + [ + 53.7405623, + 10.0149502 + ], + [ + 53.7404594, + 10.0155669 + ], + [ + 53.7403103, + 10.0161736 + ], + [ + 53.7401933, + 10.0165425 + ], + [ + 53.7401142, + 10.0167414 + ], + [ + 53.7399451, + 10.0171268 + ], + [ + 53.7399201, + 10.0171839 + ], + [ + 53.7397411, + 10.0175386 + ], + [ + 53.7396524, + 10.0177 + ], + [ + 53.7393841, + 10.0181042 + ], + [ + 53.7390294, + 10.0184802 + ], + [ + 53.7386271, + 10.0187949 + ], + [ + 53.7383545, + 10.0189427 + ], + [ + 53.7381731, + 10.0190224 + ], + [ + 53.7378818, + 10.019107 + ], + [ + 53.7375666, + 10.0191653 + ], + [ + 53.7361449, + 10.019417 + ], + [ + 53.7360448, + 10.0194347 + ], + [ + 53.7359562, + 10.0194504 + ], + [ + 53.7358107, + 10.0194742 + ], + [ + 53.7355366, + 10.0195189 + ], + [ + 53.733854, + 10.0198319 + ], + [ + 53.7327944, + 10.0200078 + ], + [ + 53.732292, + 10.0200454 + ], + [ + 53.7304999, + 10.0199482 + ], + [ + 53.7301732, + 10.0199267 + ], + [ + 53.7288971, + 10.0198324 + ], + [ + 53.7272346, + 10.0197293 + ], + [ + 53.7271594, + 10.0197394 + ], + [ + 53.7269234, + 10.0197711 + ], + [ + 53.726814, + 10.0197858 + ], + [ + 53.7237323, + 10.0202864 + ], + [ + 53.7235473, + 10.0203128 + ] + ] + }, + { + "osmId": "134124911", + "name": "Wendeschleife", + "lengthMeters": 161.70624895847354, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1171697, + 11.5887092 + ], + [ + 48.1171596, + 11.5887628 + ], + [ + 48.1171492, + 11.5887976 + ], + [ + 48.1171322, + 11.5888382 + ], + [ + 48.1171171, + 11.5888611 + ], + [ + 48.1171049, + 11.5888793 + ], + [ + 48.117071, + 11.5889099 + ], + [ + 48.1170604, + 11.5889157 + ], + [ + 48.1170521, + 11.5889197 + ], + [ + 48.1170379, + 11.5889232 + ], + [ + 48.117019, + 11.5889224 + ], + [ + 48.1170008, + 11.5889197 + ], + [ + 48.1169863, + 11.5889174 + ], + [ + 48.1169423, + 11.5889071 + ], + [ + 48.116871, + 11.5888902 + ], + [ + 48.1168565, + 11.5888878 + ], + [ + 48.116839, + 11.5888858 + ], + [ + 48.1168153, + 11.5888827 + ], + [ + 48.1167971, + 11.5888858 + ], + [ + 48.1167766, + 11.5888937 + ], + [ + 48.1167546, + 11.5889051 + ], + [ + 48.1167383, + 11.5889165 + ], + [ + 48.1167201, + 11.5889307 + ], + [ + 48.1167009, + 11.588952 + ], + [ + 48.1166809, + 11.5889779 + ], + [ + 48.1166695, + 11.5889983 + ], + [ + 48.1166595, + 11.5890175 + ], + [ + 48.1166544, + 11.5890311 + ], + [ + 48.1166498, + 11.5890441 + ], + [ + 48.1166465, + 11.5890535 + ], + [ + 48.1166397, + 11.5890728 + ], + [ + 48.1166342, + 11.5890929 + ], + [ + 48.1166304, + 11.5891115 + ], + [ + 48.1166263, + 11.5891386 + ], + [ + 48.1166242, + 11.5891649 + ], + [ + 48.1166243, + 11.5891875 + ], + [ + 48.1166245, + 11.5892173 + ], + [ + 48.1166266, + 11.5892468 + ], + [ + 48.1166305, + 11.5892712 + ], + [ + 48.116635, + 11.5892905 + ], + [ + 48.1166413, + 11.5893138 + ], + [ + 48.1166496, + 11.5893367 + ], + [ + 48.1166592, + 11.5893638 + ], + [ + 48.1166752, + 11.5893984 + ], + [ + 48.1166893, + 11.5894255 + ], + [ + 48.1167129, + 11.5894549 + ], + [ + 48.1167386, + 11.5894766 + ], + [ + 48.11676, + 11.5894928 + ], + [ + 48.116784, + 11.5895033 + ], + [ + 48.1168068, + 11.5895114 + ], + [ + 48.11694, + 11.5895444 + ], + [ + 48.1169898, + 11.5895484 + ], + [ + 48.1170161, + 11.5895433 + ], + [ + 48.1170395, + 11.5895292 + ], + [ + 48.1170513, + 11.5895174 + ], + [ + 48.1170622, + 11.5895084 + ], + [ + 48.1170749, + 11.5894926 + ], + [ + 48.1170844, + 11.5894778 + ], + [ + 48.1170871, + 11.5894742 + ], + [ + 48.1170911, + 11.589469 + ], + [ + 48.117101, + 11.5894479 + ], + [ + 48.1171091, + 11.5894266 + ], + [ + 48.1171146, + 11.5894077 + ], + [ + 48.117122, + 11.5893738 + ], + [ + 48.1171293, + 11.5893237 + ] + ] + }, + { + "osmId": "134134680", + "name": "Betriebsstrecke", + "lengthMeters": 760.7959715491943, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1070411, + 11.5961587 + ], + [ + 48.1069884, + 11.596189 + ], + [ + 48.1069639, + 11.5962056 + ], + [ + 48.1069447, + 11.5962237 + ], + [ + 48.1069308, + 11.5962369 + ], + [ + 48.106913, + 11.5962577 + ], + [ + 48.1069002, + 11.5962788 + ], + [ + 48.1068895, + 11.5962996 + ], + [ + 48.1068761, + 11.5963277 + ], + [ + 48.1068648, + 11.5963542 + ], + [ + 48.1068534, + 11.5963865 + ], + [ + 48.1068439, + 11.5964151 + ], + [ + 48.10684, + 11.5964329 + ], + [ + 48.1068383, + 11.5964704 + ], + [ + 48.1068364, + 11.5965029 + ], + [ + 48.1068375, + 11.5965553 + ], + [ + 48.1068558, + 11.5966616 + ], + [ + 48.1068744, + 11.5967144 + ], + [ + 48.1069513, + 11.5968639 + ], + [ + 48.1070245, + 11.597015 + ], + [ + 48.1070841, + 11.5971778 + ], + [ + 48.10713, + 11.5973455 + ], + [ + 48.1073079, + 11.5982392 + ], + [ + 48.1075343, + 11.5993438 + ], + [ + 48.1075389, + 11.5993737 + ], + [ + 48.107542, + 11.5994023 + ], + [ + 48.1075431, + 11.5994269 + ], + [ + 48.1075429, + 11.5994529 + ], + [ + 48.1075408, + 11.5994835 + ], + [ + 48.1075368, + 11.5995051 + ], + [ + 48.1075325, + 11.5995245 + ], + [ + 48.1075274, + 11.5995448 + ], + [ + 48.1075186, + 11.5995686 + ], + [ + 48.1074959, + 11.5996116 + ], + [ + 48.1074821, + 11.5996296 + ], + [ + 48.1074637, + 11.599649 + ], + [ + 48.1074514, + 11.5996592 + ], + [ + 48.1074306, + 11.5996747 + ], + [ + 48.107411, + 11.5996855 + ], + [ + 48.1071965, + 11.59979 + ], + [ + 48.1070951, + 11.5998381 + ], + [ + 48.106087, + 11.6003275 + ], + [ + 48.1057866, + 11.6004768 + ], + [ + 48.1054027, + 11.6006648 + ], + [ + 48.1053369, + 11.6006943 + ], + [ + 48.1053009, + 11.6007132 + ], + [ + 48.1050774, + 11.600824 + ], + [ + 48.104801, + 11.600959 + ], + [ + 48.1045167, + 11.6010992 + ], + [ + 48.1042968, + 11.6012049 + ], + [ + 48.1042812, + 11.6012118 + ], + [ + 48.1042235, + 11.6012403 + ], + [ + 48.1040046, + 11.6013474 + ], + [ + 48.1038344, + 11.6014262 + ], + [ + 48.103777, + 11.6014544 + ], + [ + 48.1037562, + 11.6014675 + ], + [ + 48.1037409, + 11.6014787 + ], + [ + 48.1037273, + 11.6014916 + ], + [ + 48.1037123, + 11.6015065 + ], + [ + 48.1036959, + 11.6015251 + ], + [ + 48.1036791, + 11.6015494 + ], + [ + 48.1036633, + 11.6015741 + ], + [ + 48.1036531, + 11.6015916 + ], + [ + 48.1036462, + 11.6016068 + ], + [ + 48.1036344, + 11.6016356 + ], + [ + 48.1036256, + 11.6016644 + ], + [ + 48.1036019, + 11.6017506 + ], + [ + 48.1035712, + 11.6018719 + ] + ] + }, + { + "osmId": "134136316", + "name": "Betriebsstrecke", + "lengthMeters": 758.7707650526925, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1070677, + 11.5961878 + ], + [ + 48.1070306, + 11.5962083 + ], + [ + 48.1070084, + 11.5962232 + ], + [ + 48.1069896, + 11.5962363 + ], + [ + 48.1069745, + 11.5962499 + ], + [ + 48.1069607, + 11.5962638 + ], + [ + 48.1069447, + 11.5962833 + ], + [ + 48.1069329, + 11.5963012 + ], + [ + 48.1069169, + 11.5963284 + ], + [ + 48.1069073, + 11.5963519 + ], + [ + 48.1069016, + 11.5963673 + ], + [ + 48.1068925, + 11.5963924 + ], + [ + 48.1068836, + 11.5964296 + ], + [ + 48.106878, + 11.596465 + ], + [ + 48.1068759, + 11.5964997 + ], + [ + 48.1068762, + 11.5965386 + ], + [ + 48.1068785, + 11.5965693 + ], + [ + 48.1068871, + 11.5966213 + ], + [ + 48.1069023, + 11.5966805 + ], + [ + 48.1069415, + 11.5967595 + ], + [ + 48.1069757, + 11.596828 + ], + [ + 48.1070467, + 11.5969775 + ], + [ + 48.1071092, + 11.5971412 + ], + [ + 48.1071618, + 11.5973351 + ], + [ + 48.1073325, + 11.598216 + ], + [ + 48.1074052, + 11.5985874 + ], + [ + 48.1075137, + 11.5991261 + ], + [ + 48.1075566, + 11.5993361 + ], + [ + 48.1075622, + 11.5993681 + ], + [ + 48.1075661, + 11.599391 + ], + [ + 48.1075683, + 11.5994189 + ], + [ + 48.1075699, + 11.5994513 + ], + [ + 48.1075688, + 11.5994755 + ], + [ + 48.1075657, + 11.5994984 + ], + [ + 48.1075615, + 11.5995234 + ], + [ + 48.1075544, + 11.5995513 + ], + [ + 48.107546, + 11.5995753 + ], + [ + 48.1075372, + 11.5995993 + ], + [ + 48.1075282, + 11.5996182 + ], + [ + 48.107513, + 11.5996413 + ], + [ + 48.107502, + 11.5996562 + ], + [ + 48.1074868, + 11.5996746 + ], + [ + 48.1074715, + 11.5996872 + ], + [ + 48.107453, + 11.5997 + ], + [ + 48.1074335, + 11.5997112 + ], + [ + 48.1072049, + 11.5998243 + ], + [ + 48.1071575, + 11.5998467 + ], + [ + 48.107103, + 11.5998723 + ], + [ + 48.1060939, + 11.6003641 + ], + [ + 48.1057947, + 11.6005112 + ], + [ + 48.1054094, + 11.6006991 + ], + [ + 48.1053448, + 11.6007296 + ], + [ + 48.1053094, + 11.6007483 + ], + [ + 48.1052766, + 11.6007644 + ], + [ + 48.1051565, + 11.6008235 + ], + [ + 48.1050833, + 11.6008579 + ], + [ + 48.1048755, + 11.6009594 + ], + [ + 48.1048093, + 11.6009937 + ], + [ + 48.1046338, + 11.6010809 + ], + [ + 48.104525, + 11.6011343 + ], + [ + 48.1043803, + 11.6012036 + ], + [ + 48.1043193, + 11.6012336 + ], + [ + 48.1043039, + 11.6012412 + ], + [ + 48.1042311, + 11.6012755 + ], + [ + 48.1042094, + 11.601286 + ], + [ + 48.1040133, + 11.6013816 + ], + [ + 48.1038438, + 11.601459 + ], + [ + 48.1037887, + 11.6014893 + ], + [ + 48.1037742, + 11.6014994 + ], + [ + 48.1037537, + 11.6015149 + ], + [ + 48.103739, + 11.601528 + ], + [ + 48.1037227, + 11.6015446 + ], + [ + 48.103704, + 11.6015701 + ], + [ + 48.1036863, + 11.6015963 + ], + [ + 48.1036727, + 11.6016191 + ], + [ + 48.1036578, + 11.6016537 + ], + [ + 48.1036463, + 11.6016851 + ], + [ + 48.1036363, + 11.6017167 + ], + [ + 48.103615, + 11.601802 + ], + [ + 48.1035924, + 11.6018882 + ] + ] + }, + { + "osmId": "134170509", + "name": null, + "lengthMeters": 370.53750759194105, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.677999, + 9.9999283 + ], + [ + 53.6779567, + 9.9994152 + ], + [ + 53.6778429, + 9.9980349 + ], + [ + 53.6777309, + 9.9966756 + ], + [ + 53.6776835, + 9.9960179 + ], + [ + 53.6776812, + 9.9959188 + ], + [ + 53.6776782, + 9.9957002 + ], + [ + 53.6776793, + 9.9954504 + ], + [ + 53.6777001, + 9.9949231 + ], + [ + 53.6777547, + 9.9943473 + ] + ] + }, + { + "osmId": "134170514", + "name": null, + "lengthMeters": 430.8157719430528, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.665386, + 10.019809 + ], + [ + 53.6663292, + 10.0200867 + ], + [ + 53.6667906, + 10.0201402 + ], + [ + 53.6669157, + 10.0201407 + ], + [ + 53.6673979, + 10.0201427 + ], + [ + 53.6681399, + 10.020036 + ], + [ + 53.6685254, + 10.0199206 + ], + [ + 53.669215, + 10.0196285 + ] + ] + }, + { + "osmId": "134624612", + "name": null, + "lengthMeters": 498.8154327237467, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1443375, + 11.5084539 + ], + [ + 48.144192, + 11.5098421 + ], + [ + 48.1441723, + 11.5100882 + ], + [ + 48.1441506, + 11.5103808 + ], + [ + 48.1441086, + 11.5109719 + ], + [ + 48.1440589, + 11.5114838 + ], + [ + 48.1440057, + 11.5119453 + ], + [ + 48.1438456, + 11.5133237 + ], + [ + 48.1438179, + 11.5135608 + ], + [ + 48.1437929, + 11.5137453 + ], + [ + 48.1437429, + 11.5140251 + ], + [ + 48.143685, + 11.5142617 + ], + [ + 48.1435297, + 11.5147785 + ], + [ + 48.1434545, + 11.5150115 + ] + ] + }, + { + "osmId": "134624613", + "name": null, + "lengthMeters": 365.15004405113956, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438094, + 11.5140713 + ], + [ + 48.1438323, + 11.5139642 + ], + [ + 48.1438794, + 11.5136919 + ], + [ + 48.1439259, + 11.5133397 + ], + [ + 48.1439927, + 11.512754 + ], + [ + 48.1441383, + 11.511501 + ], + [ + 48.1441984, + 11.5109625 + ], + [ + 48.1442882, + 11.5100906 + ], + [ + 48.1443258, + 11.5097441 + ], + [ + 48.1443791, + 11.5092269 + ] + ] + }, + { + "osmId": "134624614", + "name": null, + "lengthMeters": 104.26821262039701, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457201, + 11.4963458 + ], + [ + 48.1457479, + 11.4961281 + ], + [ + 48.1457946, + 11.4956857 + ], + [ + 48.1458413, + 11.495349 + ], + [ + 48.1458817, + 11.4950087 + ], + [ + 48.1458845, + 11.4949838 + ], + [ + 48.1458854, + 11.4949758 + ], + [ + 48.1458869, + 11.4949631 + ] + ] + }, + { + "osmId": "134624621", + "name": null, + "lengthMeters": 83.7555836362962, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1455397, + 11.4974413 + ], + [ + 48.1456809, + 11.4966467 + ], + [ + 48.1457201, + 11.4963458 + ] + ] + }, + { + "osmId": "134624623", + "name": null, + "lengthMeters": 87.74037282130494, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1404003, + 11.5211199 + ], + [ + 48.140981, + 11.5203193 + ] + ] + }, + { + "osmId": "134624624", + "name": null, + "lengthMeters": 83.3971371616053, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1456103, + 11.4974577 + ], + [ + 48.1456638, + 11.4969467 + ], + [ + 48.1457201, + 11.4963458 + ] + ] + }, + { + "osmId": "134624625", + "name": null, + "lengthMeters": 1072.1168504405318, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1573635, + 11.4807448 + ], + [ + 48.1572148, + 11.4807966 + ], + [ + 48.1571489, + 11.4808135 + ], + [ + 48.1568713, + 11.4809077 + ], + [ + 48.1564401, + 11.4810393 + ], + [ + 48.1558895, + 11.4812104 + ], + [ + 48.1550602, + 11.4814583 + ], + [ + 48.1545887, + 11.4816215 + ], + [ + 48.1542445, + 11.4817669 + ], + [ + 48.1539893, + 11.4818809 + ], + [ + 48.1537557, + 11.4819902 + ], + [ + 48.1534337, + 11.482149 + ], + [ + 48.1532311, + 11.4822518 + ], + [ + 48.1530832, + 11.4823373 + ], + [ + 48.1527517, + 11.4825209 + ], + [ + 48.1526397, + 11.4825861 + ], + [ + 48.1524213, + 11.4827197 + ], + [ + 48.1521025, + 11.4829248 + ], + [ + 48.1517035, + 11.4832025 + ], + [ + 48.1514297, + 11.4834077 + ], + [ + 48.1510236, + 11.4837572 + ], + [ + 48.1507127, + 11.4840545 + ], + [ + 48.1503787, + 11.484415 + ], + [ + 48.1501828, + 11.4846461 + ], + [ + 48.1496866, + 11.4852316 + ], + [ + 48.1491404, + 11.4858553 + ], + [ + 48.1486663, + 11.4863842 + ], + [ + 48.1486533, + 11.4863987 + ] + ] + }, + { + "osmId": "134624626", + "name": null, + "lengthMeters": 82.03762605785792, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1238906, + 11.549772 + ], + [ + 48.1239869, + 11.5495999 + ], + [ + 48.1241635, + 11.5492842 + ], + [ + 48.1243512, + 11.5489091 + ] + ] + }, + { + "osmId": "134624627", + "name": null, + "lengthMeters": 152.16273621427177, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1560248, + 11.4812241 + ], + [ + 48.1562816, + 11.4811456 + ], + [ + 48.157245, + 11.4808392 + ], + [ + 48.1573639, + 11.4808017 + ] + ] + }, + { + "osmId": "134624628", + "name": null, + "lengthMeters": 489.11078568634156, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1443375, + 11.5084539 + ], + [ + 48.1444174, + 11.5076794 + ], + [ + 48.1446614, + 11.505377 + ], + [ + 48.1449821, + 11.5023236 + ], + [ + 48.1450265, + 11.5019431 + ] + ] + }, + { + "osmId": "134624630", + "name": null, + "lengthMeters": 582.6532913564363, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1405037, + 11.5208919 + ], + [ + 48.140401, + 11.5210338 + ], + [ + 48.1400272, + 11.5215466 + ], + [ + 48.1387486, + 11.5233155 + ], + [ + 48.1373079, + 11.5252459 + ], + [ + 48.1366216, + 11.5261654 + ] + ] + }, + { + "osmId": "134995139", + "name": null, + "lengthMeters": 116.26145162632035, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5703418, + 10.0295735 + ], + [ + 53.5702343, + 10.0293128 + ], + [ + 53.5699348, + 10.0285902 + ], + [ + 53.5697393, + 10.0281346 + ] + ] + }, + { + "osmId": "135805394", + "name": null, + "lengthMeters": 290.7551744951912, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6901331, + 10.1374574 + ], + [ + 53.6897023, + 10.1375028 + ], + [ + 53.6893549, + 10.1375475 + ], + [ + 53.6891329, + 10.1375843 + ], + [ + 53.6889738, + 10.1376234 + ], + [ + 53.6888124, + 10.1376724 + ], + [ + 53.6886671, + 10.1377237 + ], + [ + 53.6885215, + 10.1377756 + ], + [ + 53.6883647, + 10.1378477 + ], + [ + 53.6881638, + 10.1379484 + ], + [ + 53.6880667, + 10.1380053 + ], + [ + 53.6878778, + 10.1381194 + ], + [ + 53.6877199, + 10.1382299 + ], + [ + 53.6875879, + 10.1383241 + ] + ] + }, + { + "osmId": "135805401", + "name": null, + "lengthMeters": 183.814622316963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6919831, + 10.1372465 + ], + [ + 53.6903338, + 10.1374353 + ] + ] + }, + { + "osmId": "135805402", + "name": null, + "lengthMeters": 214.18785414920544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6874216, + 10.1384604 + ], + [ + 53.6871999, + 10.1386539 + ], + [ + 53.6857436, + 10.140057 + ] + ] + }, + { + "osmId": "135805410", + "name": null, + "lengthMeters": 1126.7572401478712, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6636052, + 10.1561476 + ], + [ + 53.6632965, + 10.1563879 + ], + [ + 53.6596767, + 10.1592051 + ], + [ + 53.6592037, + 10.1595732 + ], + [ + 53.6584371, + 10.1601699 + ], + [ + 53.6575651, + 10.1608083 + ], + [ + 53.6566904, + 10.1614262 + ], + [ + 53.6562142, + 10.1618207 + ], + [ + 53.6553, + 10.1626506 + ], + [ + 53.6547664, + 10.1631351 + ], + [ + 53.6544359, + 10.1634105 + ] + ] + }, + { + "osmId": "135805411", + "name": null, + "lengthMeters": 1037.9530733675617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.675136, + 10.1502464 + ], + [ + 53.6720935, + 10.1530798 + ], + [ + 53.672016, + 10.153152 + ], + [ + 53.671785, + 10.1533369 + ], + [ + 53.6715553, + 10.1534982 + ], + [ + 53.6712678, + 10.1536675 + ], + [ + 53.671014, + 10.1537833 + ], + [ + 53.6708096, + 10.1538619 + ], + [ + 53.6705276, + 10.1539454 + ], + [ + 53.6676895, + 10.1545812 + ], + [ + 53.6663648, + 10.1549273 + ] + ] + }, + { + "osmId": "135844323", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 216.64902946525586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5531252, + 10.0066395 + ], + [ + 53.5532207, + 10.0065878 + ], + [ + 53.5532473, + 10.0065708 + ], + [ + 53.5532545, + 10.0065662 + ], + [ + 53.5534648, + 10.006427 + ], + [ + 53.5535085, + 10.0064 + ], + [ + 53.5536117, + 10.0063362 + ], + [ + 53.5537663, + 10.0062197 + ], + [ + 53.553803, + 10.0061744 + ], + [ + 53.5541254, + 10.0057761 + ], + [ + 53.5541919, + 10.005685 + ], + [ + 53.5543899, + 10.0054317 + ], + [ + 53.5544972, + 10.0052895 + ], + [ + 53.554598, + 10.0051598 + ], + [ + 53.5546359, + 10.005116 + ], + [ + 53.5547545, + 10.0049709 + ], + [ + 53.554773, + 10.0049447 + ] + ] + }, + { + "osmId": "136086603", + "name": null, + "lengthMeters": 215.8530515711207, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5519388, + 13.4303619 + ], + [ + 52.5528125, + 13.4301285 + ], + [ + 52.5538553, + 13.4298541 + ] + ] + }, + { + "osmId": "136087714", + "name": null, + "lengthMeters": 4575.971019723315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0768965, + 11.550239 + ], + [ + 48.0772117, + 11.5503911 + ], + [ + 48.077322, + 11.5504454 + ], + [ + 48.0777635, + 11.5506487 + ], + [ + 48.0786098, + 11.5510523 + ], + [ + 48.078949, + 11.5512242 + ], + [ + 48.0793752, + 11.5514279 + ], + [ + 48.0801481, + 11.5517858 + ], + [ + 48.0802192, + 11.5518187 + ], + [ + 48.0802978, + 11.5518555 + ], + [ + 48.0816745, + 11.5524999 + ], + [ + 48.082314, + 11.5527985 + ], + [ + 48.0830166, + 11.5531185 + ], + [ + 48.0831215, + 11.5531669 + ], + [ + 48.0843101, + 11.5537199 + ], + [ + 48.0854832, + 11.5542637 + ], + [ + 48.0862153, + 11.5546098 + ], + [ + 48.086681, + 11.5548218 + ], + [ + 48.086773, + 11.5548634 + ], + [ + 48.0868052, + 11.554879 + ], + [ + 48.0868794, + 11.5549147 + ], + [ + 48.0869487, + 11.554948 + ], + [ + 48.0873096, + 11.5551232 + ], + [ + 48.0875745, + 11.555254 + ], + [ + 48.087711, + 11.5553266 + ], + [ + 48.0878494, + 11.5554005 + ], + [ + 48.0879755, + 11.5554688 + ], + [ + 48.0880999, + 11.5555355 + ], + [ + 48.0883428, + 11.5556747 + ], + [ + 48.088584, + 11.5558171 + ], + [ + 48.0890248, + 11.5560727 + ], + [ + 48.089453, + 11.5563222 + ], + [ + 48.0898872, + 11.5565785 + ], + [ + 48.0900288, + 11.5566766 + ], + [ + 48.090131, + 11.5567596 + ], + [ + 48.0901839, + 11.5568105 + ], + [ + 48.0902309, + 11.5568585 + ], + [ + 48.0902735, + 11.5569098 + ], + [ + 48.0903344, + 11.5569839 + ], + [ + 48.0903946, + 11.5570669 + ], + [ + 48.0904205, + 11.557107 + ], + [ + 48.090451, + 11.5571625 + ], + [ + 48.0904873, + 11.557229 + ], + [ + 48.0905009, + 11.5572573 + ], + [ + 48.0905214, + 11.557298 + ], + [ + 48.0905435, + 11.5573428 + ], + [ + 48.0905808, + 11.5574289 + ], + [ + 48.0906312, + 11.5575657 + ], + [ + 48.0906644, + 11.5576737 + ], + [ + 48.0906966, + 11.5577866 + ], + [ + 48.090746, + 11.5579918 + ], + [ + 48.0907924, + 11.5582123 + ], + [ + 48.0908394, + 11.5584643 + ], + [ + 48.0908856, + 11.5587576 + ], + [ + 48.0909225, + 11.5590201 + ], + [ + 48.0911134, + 11.5604272 + ], + [ + 48.0911752, + 11.5608692 + ], + [ + 48.0912019, + 11.5610158 + ], + [ + 48.091233, + 11.5611638 + ], + [ + 48.0912816, + 11.56135 + ], + [ + 48.0913269, + 11.5614907 + ], + [ + 48.0913751, + 11.5616254 + ], + [ + 48.0914199, + 11.5617351 + ], + [ + 48.0914813, + 11.561869 + ], + [ + 48.0915555, + 11.5620142 + ], + [ + 48.0916414, + 11.562153 + ], + [ + 48.0917455, + 11.5622982 + ], + [ + 48.091813, + 11.5623822 + ], + [ + 48.0919086, + 11.5624882 + ], + [ + 48.0919727, + 11.562551 + ], + [ + 48.0920493, + 11.5626202 + ], + [ + 48.0921093, + 11.5626686 + ], + [ + 48.0922715, + 11.5627837 + ], + [ + 48.0923569, + 11.5628298 + ], + [ + 48.0924875, + 11.5628869 + ], + [ + 48.0926619, + 11.5629417 + ], + [ + 48.0928935, + 11.5629831 + ], + [ + 48.0931316, + 11.5630173 + ], + [ + 48.0935976, + 11.5630844 + ], + [ + 48.0939308, + 11.5631298 + ], + [ + 48.0941985, + 11.5631764 + ], + [ + 48.0942648, + 11.5631879 + ], + [ + 48.0946896, + 11.5632631 + ], + [ + 48.0951203, + 11.5633479 + ], + [ + 48.0953271, + 11.5634028 + ], + [ + 48.0955296, + 11.5634746 + ], + [ + 48.0956687, + 11.5635161 + ], + [ + 48.0958178, + 11.5635684 + ], + [ + 48.0959438, + 11.5636096 + ], + [ + 48.096043, + 11.5636423 + ], + [ + 48.0962875, + 11.5637236 + ], + [ + 48.0966581, + 11.5638554 + ], + [ + 48.096899, + 11.5639501 + ], + [ + 48.0971206, + 11.5640493 + ], + [ + 48.0973307, + 11.5641493 + ], + [ + 48.097585, + 11.5642826 + ], + [ + 48.0978325, + 11.5644272 + ], + [ + 48.0980358, + 11.5645557 + ], + [ + 48.0983235, + 11.5647497 + ], + [ + 48.0986144, + 11.5649653 + ], + [ + 48.0987766, + 11.5650998 + ], + [ + 48.0997334, + 11.5658605 + ], + [ + 48.1007851, + 11.5666873 + ], + [ + 48.1008764, + 11.5667621 + ], + [ + 48.100958, + 11.5668277 + ], + [ + 48.1012253, + 11.567044 + ], + [ + 48.1014987, + 11.5672677 + ], + [ + 48.1017894, + 11.5675003 + ], + [ + 48.1020384, + 11.5677055 + ], + [ + 48.102318, + 11.5679298 + ], + [ + 48.1025977, + 11.5681586 + ], + [ + 48.1029336, + 11.5684261 + ], + [ + 48.103119, + 11.5685773 + ], + [ + 48.1032767, + 11.5687016 + ], + [ + 48.103592, + 11.5689614 + ], + [ + 48.103912, + 11.5692332 + ], + [ + 48.1042282, + 11.5695155 + ], + [ + 48.1044446, + 11.5697111 + ], + [ + 48.1045491, + 11.569813 + ], + [ + 48.1046298, + 11.5698882 + ], + [ + 48.1046911, + 11.5699456 + ], + [ + 48.1048799, + 11.5701257 + ], + [ + 48.1050617, + 11.5702948 + ], + [ + 48.1055317, + 11.5707396 + ], + [ + 48.1058152, + 11.5710078 + ], + [ + 48.1061031, + 11.5712818 + ], + [ + 48.1063661, + 11.5715342 + ], + [ + 48.1065108, + 11.5716791 + ], + [ + 48.1066481, + 11.5718289 + ], + [ + 48.1068822, + 11.5720836 + ], + [ + 48.1070048, + 11.5722301 + ], + [ + 48.1071239, + 11.5723773 + ], + [ + 48.107448, + 11.5727892 + ], + [ + 48.1077459, + 11.5731579 + ], + [ + 48.1079907, + 11.5734671 + ], + [ + 48.1081687, + 11.5736628 + ], + [ + 48.1083455, + 11.573863 + ], + [ + 48.1085615, + 11.5741039 + ], + [ + 48.1088501, + 11.5744203 + ], + [ + 48.1088637, + 11.5744332 + ], + [ + 48.1089019, + 11.5744747 + ], + [ + 48.1089539, + 11.5745252 + ], + [ + 48.1090653, + 11.5746296 + ], + [ + 48.1092184, + 11.5747704 + ], + [ + 48.1093849, + 11.5749121 + ], + [ + 48.1094714, + 11.5749855 + ], + [ + 48.109602, + 11.5750878 + ], + [ + 48.1096752, + 11.5751447 + ], + [ + 48.1099817, + 11.5753594 + ], + [ + 48.1101664, + 11.5754755 + ], + [ + 48.11034, + 11.5755736 + ], + [ + 48.1109083, + 11.5758542 + ], + [ + 48.111419, + 11.5760852 + ], + [ + 48.1114863, + 11.5761133 + ], + [ + 48.1116535, + 11.5761806 + ], + [ + 48.1117102, + 11.5762026 + ], + [ + 48.1118112, + 11.5762469 + ], + [ + 48.1120073, + 11.5763245 + ], + [ + 48.1121069, + 11.5763596 + ], + [ + 48.1124069, + 11.5764557 + ] + ] + }, + { + "osmId": "136099332", + "name": null, + "lengthMeters": 135.22043593084686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0760461, + 11.5500096 + ], + [ + 48.0760275, + 11.550042 + ], + [ + 48.0760184, + 11.550057 + ], + [ + 48.0760119, + 11.5500674 + ], + [ + 48.0760045, + 11.5500822 + ], + [ + 48.0759968, + 11.5501051 + ], + [ + 48.0759881, + 11.5501305 + ], + [ + 48.0759816, + 11.5501536 + ], + [ + 48.0759785, + 11.5501757 + ], + [ + 48.0759765, + 11.550195 + ], + [ + 48.0759759, + 11.550208 + ], + [ + 48.0759759, + 11.5502262 + ], + [ + 48.075976, + 11.5502446 + ], + [ + 48.0759792, + 11.5502778 + ], + [ + 48.0759851, + 11.5503046 + ], + [ + 48.0759954, + 11.5503427 + ], + [ + 48.0760039, + 11.550367 + ], + [ + 48.0760136, + 11.5503904 + ], + [ + 48.0760262, + 11.5504251 + ], + [ + 48.076048, + 11.5504641 + ], + [ + 48.0760621, + 11.5504836 + ], + [ + 48.076072, + 11.5504963 + ], + [ + 48.0760811, + 11.5505072 + ], + [ + 48.0760945, + 11.5505208 + ], + [ + 48.0761065, + 11.5505316 + ], + [ + 48.0761236, + 11.5505422 + ], + [ + 48.0761371, + 11.5505489 + ], + [ + 48.0761563, + 11.5505563 + ], + [ + 48.076169, + 11.5505605 + ], + [ + 48.0761807, + 11.5505619 + ], + [ + 48.0762004, + 11.5505615 + ], + [ + 48.0762138, + 11.5505611 + ], + [ + 48.0762244, + 11.5505587 + ], + [ + 48.0762376, + 11.5505554 + ], + [ + 48.0762673, + 11.5505437 + ], + [ + 48.0762985, + 11.5505205 + ], + [ + 48.076451, + 11.5503654 + ], + [ + 48.0765131, + 11.5503043 + ], + [ + 48.0765424, + 11.5502755 + ], + [ + 48.0765499, + 11.5502681 + ], + [ + 48.0765672, + 11.5502524 + ], + [ + 48.076587, + 11.5502387 + ], + [ + 48.0765983, + 11.5502307 + ], + [ + 48.0766127, + 11.5502234 + ], + [ + 48.0766258, + 11.5502186 + ], + [ + 48.0766418, + 11.5502126 + ], + [ + 48.0766597, + 11.5502087 + ], + [ + 48.0766896, + 11.5502077 + ], + [ + 48.076705, + 11.550208 + ], + [ + 48.0767287, + 11.5502097 + ], + [ + 48.0767566, + 11.5502113 + ], + [ + 48.0767715, + 11.5502122 + ], + [ + 48.076788, + 11.5502129 + ], + [ + 48.0768165, + 11.5502157 + ], + [ + 48.0768366, + 11.5502212 + ] + ] + }, + { + "osmId": "136105814", + "name": null, + "lengthMeters": 1711.4351996153973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1203816, + 11.5848367 + ], + [ + 48.1204295, + 11.5848676 + ], + [ + 48.120458, + 11.5848889 + ], + [ + 48.1205013, + 11.5849159 + ], + [ + 48.1205772, + 11.5849592 + ], + [ + 48.1207093, + 11.5850301 + ], + [ + 48.1208299, + 11.5851109 + ], + [ + 48.1209182, + 11.5851854 + ], + [ + 48.1214453, + 11.5856768 + ], + [ + 48.1215323, + 11.5857579 + ], + [ + 48.1215803, + 11.5858026 + ], + [ + 48.1216531, + 11.5858705 + ], + [ + 48.1217639, + 11.5859584 + ], + [ + 48.1217922, + 11.5859826 + ], + [ + 48.1221426, + 11.5862831 + ], + [ + 48.1221791, + 11.5863125 + ], + [ + 48.1224839, + 11.5865609 + ], + [ + 48.1226685, + 11.5867069 + ], + [ + 48.1229729, + 11.5869379 + ], + [ + 48.1238952, + 11.587592 + ], + [ + 48.123998, + 11.5876684 + ], + [ + 48.1240977, + 11.5877571 + ], + [ + 48.1241388, + 11.5878062 + ], + [ + 48.1241689, + 11.5878374 + ], + [ + 48.1242482, + 11.5879558 + ], + [ + 48.1243376, + 11.5881158 + ], + [ + 48.1244249, + 11.5882661 + ], + [ + 48.1245874, + 11.5885714 + ], + [ + 48.1247756, + 11.5889055 + ], + [ + 48.1248047, + 11.5889573 + ], + [ + 48.1248313, + 11.5890045 + ], + [ + 48.124861, + 11.5890683 + ], + [ + 48.1248976, + 11.5891521 + ], + [ + 48.125252, + 11.5899645 + ], + [ + 48.1254114, + 11.590334 + ], + [ + 48.1255356, + 11.590622 + ], + [ + 48.125805, + 11.5912361 + ], + [ + 48.1258336, + 11.5912975 + ], + [ + 48.1259283, + 11.591503 + ], + [ + 48.1260762, + 11.5918229 + ], + [ + 48.1261858, + 11.5920339 + ], + [ + 48.1262122, + 11.5920773 + ], + [ + 48.1262914, + 11.5922077 + ], + [ + 48.1264747, + 11.5924661 + ], + [ + 48.1265605, + 11.5925626 + ], + [ + 48.1267988, + 11.5927644 + ], + [ + 48.1270539, + 11.5929559 + ], + [ + 48.1278343, + 11.5934464 + ], + [ + 48.1284157, + 11.5938326 + ], + [ + 48.1284593, + 11.5938616 + ], + [ + 48.1285201, + 11.593899 + ], + [ + 48.1286307, + 11.5939552 + ], + [ + 48.1286805, + 11.59398 + ], + [ + 48.1287228, + 11.594003 + ], + [ + 48.1287658, + 11.5940264 + ], + [ + 48.1288223, + 11.594062 + ], + [ + 48.128877, + 11.5941015 + ], + [ + 48.128931, + 11.5941448 + ], + [ + 48.1289753, + 11.5941869 + ], + [ + 48.1295099, + 11.5947694 + ], + [ + 48.1300576, + 11.5953189 + ], + [ + 48.1301161, + 11.5953953 + ], + [ + 48.1301635, + 11.5954592 + ], + [ + 48.1302194, + 11.5955537 + ], + [ + 48.1302615, + 11.5956086 + ], + [ + 48.1303049, + 11.5956493 + ], + [ + 48.1303341, + 11.5956767 + ], + [ + 48.1306354, + 11.5959609 + ], + [ + 48.1306768, + 11.5959963 + ], + [ + 48.1310201, + 11.5962531 + ], + [ + 48.1310857, + 11.5963088 + ], + [ + 48.1311476, + 11.5963768 + ], + [ + 48.1311847, + 11.5964205 + ], + [ + 48.131221, + 11.5964709 + ], + [ + 48.1318501, + 11.5975673 + ], + [ + 48.1318661, + 11.5975951 + ], + [ + 48.1319044, + 11.5976572 + ], + [ + 48.1319276, + 11.5976901 + ], + [ + 48.1319489, + 11.5977111 + ], + [ + 48.1319683, + 11.597728 + ], + [ + 48.1319828, + 11.5977369 + ], + [ + 48.1319893, + 11.5977401 + ], + [ + 48.1320208, + 11.5977549 + ], + [ + 48.1320505, + 11.5977606 + ], + [ + 48.1320719, + 11.5977619 + ], + [ + 48.132093, + 11.5977603 + ], + [ + 48.1321223, + 11.5977543 + ], + [ + 48.1321546, + 11.5977394 + ], + [ + 48.1321914, + 11.5977193 + ], + [ + 48.1322236, + 11.5976896 + ], + [ + 48.1322513, + 11.5976614 + ], + [ + 48.1322548, + 11.5976586 + ], + [ + 48.1323105, + 11.5976132 + ], + [ + 48.132358, + 11.5975849 + ], + [ + 48.1324087, + 11.597564 + ], + [ + 48.1325541, + 11.5975321 + ], + [ + 48.1325602, + 11.5975312 + ] + ] + }, + { + "osmId": "136326294", + "name": null, + "lengthMeters": 484.61731311097645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6542655, + 10.1749723 + ], + [ + 53.6550859, + 10.1701266 + ], + [ + 53.6551338, + 10.1697471 + ], + [ + 53.6551646, + 10.1693639 + ], + [ + 53.6551747, + 10.1690044 + ], + [ + 53.6551674, + 10.1686023 + ], + [ + 53.6551408, + 10.1682264 + ], + [ + 53.655091, + 10.1678365 + ] + ] + }, + { + "osmId": "136610265", + "name": null, + "lengthMeters": 188.497365302268, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5558288, + 10.0448553 + ], + [ + 53.5558316, + 10.0443399 + ], + [ + 53.5558505, + 10.0436542 + ], + [ + 53.5558521, + 10.0429872 + ], + [ + 53.5558527, + 10.0427615 + ], + [ + 53.5558554, + 10.0420024 + ] + ] + }, + { + "osmId": "136624235", + "name": null, + "lengthMeters": 940.9630483758734, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188814, + 11.5834149 + ], + [ + 48.1188453, + 11.5833801 + ], + [ + 48.1187513, + 11.5832882 + ], + [ + 48.1186558, + 11.5831895 + ], + [ + 48.118612, + 11.583145 + ], + [ + 48.1185154, + 11.5830423 + ], + [ + 48.1182685, + 11.5827791 + ], + [ + 48.1180719, + 11.5825819 + ], + [ + 48.1179693, + 11.5824805 + ], + [ + 48.11792, + 11.5824299 + ], + [ + 48.1177843, + 11.5822921 + ], + [ + 48.1176066, + 11.5821089 + ], + [ + 48.117505, + 11.5820017 + ], + [ + 48.1174041, + 11.5818945 + ], + [ + 48.1173372, + 11.5818215 + ], + [ + 48.1169705, + 11.5814091 + ], + [ + 48.1168421, + 11.5812635 + ], + [ + 48.116709, + 11.5811151 + ], + [ + 48.1166311, + 11.5810291 + ], + [ + 48.1164326, + 11.5808037 + ], + [ + 48.1162312, + 11.5805791 + ], + [ + 48.1158387, + 11.5801518 + ], + [ + 48.1157907, + 11.5800997 + ], + [ + 48.1157334, + 11.5800378 + ], + [ + 48.1154716, + 11.5797423 + ], + [ + 48.1153549, + 11.5796078 + ], + [ + 48.1152571, + 11.5794936 + ], + [ + 48.1152348, + 11.5794663 + ], + [ + 48.1151793, + 11.5794057 + ], + [ + 48.1151509, + 11.5793745 + ], + [ + 48.1151245, + 11.5793505 + ], + [ + 48.1150878, + 11.5793186 + ], + [ + 48.1150498, + 11.5792896 + ], + [ + 48.1150183, + 11.5792683 + ], + [ + 48.1148163, + 11.579148 + ], + [ + 48.114652, + 11.579054 + ], + [ + 48.1145735, + 11.579005 + ], + [ + 48.1144934, + 11.5789528 + ], + [ + 48.1144022, + 11.5788755 + ], + [ + 48.1143538, + 11.5788314 + ], + [ + 48.114315, + 11.5787902 + ], + [ + 48.1142058, + 11.5786628 + ], + [ + 48.1141438, + 11.5785804 + ], + [ + 48.1139416, + 11.5783028 + ], + [ + 48.1137423, + 11.5780267 + ], + [ + 48.1136359, + 11.5778803 + ], + [ + 48.1134782, + 11.577663 + ], + [ + 48.113211, + 11.5772974 + ], + [ + 48.1131577, + 11.5772236 + ], + [ + 48.1131015, + 11.5771398 + ], + [ + 48.113034, + 11.5770306 + ], + [ + 48.1129934, + 11.5769607 + ], + [ + 48.1128971, + 11.5767623 + ], + [ + 48.1128659, + 11.5767021 + ], + [ + 48.112829, + 11.5766372 + ], + [ + 48.112799, + 11.5765967 + ], + [ + 48.112768, + 11.5765623 + ], + [ + 48.1127384, + 11.5765367 + ], + [ + 48.1127028, + 11.5765107 + ], + [ + 48.1126769, + 11.5764959 + ], + [ + 48.1126443, + 11.5764816 + ], + [ + 48.1126081, + 11.5764695 + ], + [ + 48.1125682, + 11.5764548 + ], + [ + 48.1121111, + 11.5763113 + ], + [ + 48.1120134, + 11.5762774 + ] + ] + }, + { + "osmId": "136651800", + "name": null, + "lengthMeters": 169.76755761145205, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5043465, + 13.4864071 + ], + [ + 52.5042961, + 13.486284 + ], + [ + 52.5042642, + 13.486206 + ], + [ + 52.5041217, + 13.4858462 + ], + [ + 52.5039494, + 13.4854114 + ], + [ + 52.5039183, + 13.4853329 + ], + [ + 52.5036017, + 13.4845309 + ], + [ + 52.5035831, + 13.4844856 + ], + [ + 52.5035613, + 13.4844323 + ], + [ + 52.5035105, + 13.4843084 + ] + ] + }, + { + "osmId": "136651804", + "name": null, + "lengthMeters": 257.3732070500109, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5093175, + 13.4963083 + ], + [ + 52.5094439, + 13.4965391 + ], + [ + 52.5097484, + 13.4970975 + ], + [ + 52.5103897, + 13.4982733 + ], + [ + 52.5107077, + 13.4988547 + ], + [ + 52.5107327, + 13.498901 + ], + [ + 52.5108631, + 13.4991392 + ] + ] + }, + { + "osmId": "136651806", + "name": null, + "lengthMeters": 301.4545212840944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.508436, + 13.4935895 + ], + [ + 52.5086447, + 13.4939743 + ], + [ + 52.509446, + 13.4954515 + ], + [ + 52.5095246, + 13.4955971 + ], + [ + 52.5102376, + 13.496918 + ] + ] + }, + { + "osmId": "136651807", + "name": null, + "lengthMeters": 1152.6082662532287, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5111186, + 13.4992915 + ], + [ + 52.5108151, + 13.4987551 + ], + [ + 52.5107448, + 13.4986279 + ], + [ + 52.5106368, + 13.4984288 + ], + [ + 52.5105227, + 13.4982198 + ], + [ + 52.5104607, + 13.4981066 + ], + [ + 52.5098537, + 13.4969968 + ], + [ + 52.5098154, + 13.4969292 + ], + [ + 52.5096014, + 13.4965359 + ], + [ + 52.509497, + 13.49634 + ], + [ + 52.5085175, + 13.4945406 + ], + [ + 52.5080651, + 13.4936799 + ], + [ + 52.507421, + 13.49242 + ], + [ + 52.5072539, + 13.4920909 + ], + [ + 52.5068073, + 13.4912174 + ], + [ + 52.5064746, + 13.4905652 + ], + [ + 52.5061242, + 13.4899008 + ], + [ + 52.5051933, + 13.4881761 + ], + [ + 52.5048483, + 13.4875249 + ], + [ + 52.504668, + 13.4871548 + ], + [ + 52.5045036, + 13.4867823 + ], + [ + 52.5043465, + 13.4864071 + ] + ] + }, + { + "osmId": "136697959", + "name": null, + "lengthMeters": 131.70769926350292, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099029, + 13.4370743 + ], + [ + 52.5098361, + 13.4372215 + ], + [ + 52.5097414, + 13.4374161 + ], + [ + 52.5097107, + 13.4374793 + ], + [ + 52.5096509, + 13.4376029 + ], + [ + 52.5095466, + 13.4378184 + ], + [ + 52.5094321, + 13.438055 + ], + [ + 52.5093152, + 13.438305 + ], + [ + 52.5091803, + 13.4386158 + ] + ] + }, + { + "osmId": "136697960", + "name": null, + "lengthMeters": 108.7579148340188, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5106059, + 13.4350936 + ], + [ + 52.5104377, + 13.4354909 + ], + [ + 52.5103248, + 13.4357568 + ], + [ + 52.5102431, + 13.4359505 + ], + [ + 52.5102382, + 13.4359618 + ], + [ + 52.5101983, + 13.4360543 + ], + [ + 52.5100461, + 13.4364114 + ] + ] + }, + { + "osmId": "136697962", + "name": null, + "lengthMeters": 101.01479401239419, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5107345, + 13.4334283 + ], + [ + 52.5105901, + 13.4337816 + ], + [ + 52.5102219, + 13.4346606 + ] + ] + }, + { + "osmId": "136697963", + "name": null, + "lengthMeters": 94.26633168326916, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5107436, + 13.4352229 + ], + [ + 52.510834, + 13.4350104 + ], + [ + 52.5110733, + 13.4344481 + ], + [ + 52.5111345, + 13.4343042 + ], + [ + 52.5111741, + 13.4342111 + ], + [ + 52.5111943, + 13.4341622 + ], + [ + 52.5112283, + 13.4340801 + ] + ] + }, + { + "osmId": "136697964", + "name": null, + "lengthMeters": 94.08898182661352, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5108252, + 13.4353143 + ], + [ + 52.5111522, + 13.4345463 + ], + [ + 52.5112741, + 13.43426 + ], + [ + 52.5113092, + 13.4341739 + ] + ] + }, + { + "osmId": "136697969", + "name": null, + "lengthMeters": 208.50140303970238, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099162, + 13.4362617 + ], + [ + 52.5104324, + 13.4350534 + ], + [ + 52.5109953, + 13.4337421 + ] + ] + }, + { + "osmId": "136697970", + "name": null, + "lengthMeters": 87.01945474480877, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5107014, + 13.4351799 + ], + [ + 52.5105277, + 13.4355991 + ], + [ + 52.5104164, + 13.4358675 + ], + [ + 52.5103389, + 13.4360546 + ], + [ + 52.5102935, + 13.4361641 + ], + [ + 52.5102732, + 13.436213 + ], + [ + 52.5102609, + 13.4362427 + ] + ] + }, + { + "osmId": "136698261", + "name": null, + "lengthMeters": 273.5176876442625, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046237, + 13.4627829 + ], + [ + 52.5048075, + 13.4609429 + ], + [ + 52.5048697, + 13.4602855 + ], + [ + 52.504942, + 13.4596558 + ], + [ + 52.5050609, + 13.4588076 + ] + ] + }, + { + "osmId": "136703810", + "name": null, + "lengthMeters": 195.48482454698404, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778867, + 13.3667296 + ], + [ + 52.4784214, + 13.3670656 + ], + [ + 52.4795181, + 13.3678048 + ] + ] + }, + { + "osmId": "136703812", + "name": null, + "lengthMeters": 892.3280880566797, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778926, + 13.3663352 + ], + [ + 52.4779128, + 13.3663443 + ], + [ + 52.4786472, + 13.3667759 + ], + [ + 52.4789903, + 13.3669775 + ], + [ + 52.4794579, + 13.3672189 + ], + [ + 52.4799306, + 13.3674385 + ], + [ + 52.4805794, + 13.3677843 + ], + [ + 52.4813362, + 13.3682204 + ], + [ + 52.481453, + 13.3682873 + ], + [ + 52.4821156, + 13.368674 + ], + [ + 52.4824693, + 13.3688848 + ], + [ + 52.4827437, + 13.3690418 + ], + [ + 52.4829501, + 13.369165 + ], + [ + 52.4837585, + 13.3696392 + ], + [ + 52.4839522, + 13.3697533 + ], + [ + 52.4844034, + 13.3699966 + ], + [ + 52.4847489, + 13.3702191 + ], + [ + 52.4854746, + 13.3706432 + ] + ] + }, + { + "osmId": "136703814", + "name": null, + "lengthMeters": 107.32391414216137, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4945093, + 13.4624753 + ], + [ + 52.4946394, + 13.4625999 + ], + [ + 52.4947682, + 13.4627205 + ], + [ + 52.4949075, + 13.4628698 + ], + [ + 52.4949779, + 13.4629478 + ], + [ + 52.4950826, + 13.463077 + ], + [ + 52.4952183, + 13.4632621 + ], + [ + 52.4952998, + 13.4633778 + ] + ] + }, + { + "osmId": "136703817", + "name": null, + "lengthMeters": 214.53174780762237, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4543763, + 13.510908 + ], + [ + 52.4544735, + 13.5107525 + ], + [ + 52.45477, + 13.5102968 + ], + [ + 52.4550242, + 13.5099019 + ], + [ + 52.4553397, + 13.5094103 + ], + [ + 52.4554498, + 13.5092403 + ], + [ + 52.4556604, + 13.5089201 + ], + [ + 52.4557765, + 13.5087301 + ] + ] + }, + { + "osmId": "136703818", + "name": null, + "lengthMeters": 127.50059712711607, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4556896, + 13.5086158 + ], + [ + 52.4561253, + 13.5080323 + ], + [ + 52.45633, + 13.5077583 + ], + [ + 52.4564313, + 13.5076167 + ], + [ + 52.4565676, + 13.5074065 + ] + ] + }, + { + "osmId": "136703819", + "name": null, + "lengthMeters": 227.84605185303107, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777955, + 13.3672012 + ], + [ + 52.4785985, + 13.3676712 + ], + [ + 52.478901, + 13.3678296 + ], + [ + 52.4797393, + 13.368264 + ] + ] + }, + { + "osmId": "136703821", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 520.2614361859277, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568725, + 13.5063225 + ], + [ + 52.4573893, + 13.5055212 + ], + [ + 52.457762, + 13.5049524 + ], + [ + 52.4581698, + 13.504312 + ], + [ + 52.4588194, + 13.5033122 + ], + [ + 52.4588768, + 13.5032239 + ], + [ + 52.4590049, + 13.5030241 + ], + [ + 52.4602003, + 13.5011853 + ], + [ + 52.4602083, + 13.501173 + ], + [ + 52.4602805, + 13.5010615 + ] + ] + }, + { + "osmId": "136703825", + "name": null, + "lengthMeters": 165.05981411917625, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4945998, + 13.4623167 + ], + [ + 52.4945269, + 13.4622381 + ], + [ + 52.4944167, + 13.4621244 + ], + [ + 52.4940649, + 13.4617574 + ], + [ + 52.4938906, + 13.461584 + ], + [ + 52.4936654, + 13.4613814 + ], + [ + 52.4934982, + 13.4612421 + ], + [ + 52.493408, + 13.4611736 + ], + [ + 52.4933145, + 13.461103 + ] + ] + }, + { + "osmId": "136703826", + "name": null, + "lengthMeters": 443.2548535858349, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4779028, + 13.366138 + ], + [ + 52.4778916, + 13.3661332 + ], + [ + 52.476874, + 13.3654837 + ], + [ + 52.4768187, + 13.3654499 + ], + [ + 52.476741, + 13.3654005 + ], + [ + 52.4765914, + 13.3653053 + ], + [ + 52.4765818, + 13.3652994 + ], + [ + 52.4764984, + 13.365248 + ], + [ + 52.4758254, + 13.3648332 + ], + [ + 52.4758197, + 13.3648297 + ], + [ + 52.475678, + 13.364756 + ], + [ + 52.4755478, + 13.3646883 + ], + [ + 52.4755021, + 13.3646645 + ], + [ + 52.4754291, + 13.3646305 + ], + [ + 52.4752474, + 13.3645566 + ], + [ + 52.4743788, + 13.3642022 + ], + [ + 52.4741231, + 13.3640904 + ] + ] + }, + { + "osmId": "136703828", + "name": null, + "lengthMeters": 160.47817171227655, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4945187, + 13.462412 + ], + [ + 52.494459, + 13.4623563 + ], + [ + 52.4933523, + 13.46132 + ], + [ + 52.4933076, + 13.4612777 + ], + [ + 52.4932651, + 13.4612375 + ] + ] + }, + { + "osmId": "136703829", + "name": null, + "lengthMeters": 153.12685100140666, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4555617, + 13.5084344 + ], + [ + 52.4554832, + 13.5085539 + ], + [ + 52.4552943, + 13.5088435 + ], + [ + 52.4552101, + 13.5089733 + ], + [ + 52.4551273, + 13.5090999 + ], + [ + 52.4550256, + 13.5092622 + ], + [ + 52.4547956, + 13.50962 + ], + [ + 52.4545591, + 13.5099835 + ] + ] + }, + { + "osmId": "136703830", + "name": null, + "lengthMeters": 418.0086732268469, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4779452, + 13.3664678 + ], + [ + 52.4779328, + 13.3664601 + ], + [ + 52.4778733, + 13.3664247 + ], + [ + 52.4771702, + 13.3660067 + ], + [ + 52.4766002, + 13.3656679 + ], + [ + 52.4765738, + 13.3656522 + ], + [ + 52.476427, + 13.3655653 + ], + [ + 52.4762167, + 13.3654404 + ], + [ + 52.4754412, + 13.3649799 + ], + [ + 52.4753992, + 13.364955 + ], + [ + 52.4752452, + 13.364871 + ], + [ + 52.4750721, + 13.3647769 + ], + [ + 52.4748552, + 13.3646678 + ], + [ + 52.4744355, + 13.364445 + ], + [ + 52.4744262, + 13.364441 + ], + [ + 52.4743977, + 13.3644288 + ] + ] + }, + { + "osmId": "136703831", + "name": null, + "lengthMeters": 160.911221261913, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4932523, + 13.4612979 + ], + [ + 52.4932903, + 13.4613344 + ], + [ + 52.4937608, + 13.4617868 + ], + [ + 52.4942839, + 13.4622665 + ], + [ + 52.4944423, + 13.4624141 + ], + [ + 52.4945093, + 13.4624753 + ] + ] + }, + { + "osmId": "136703832", + "name": null, + "lengthMeters": 212.8504383651863, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4556539, + 13.5085567 + ], + [ + 52.455576, + 13.5086822 + ], + [ + 52.4546545, + 13.5101089 + ], + [ + 52.4543584, + 13.5105632 + ], + [ + 52.4542618, + 13.5107127 + ] + ] + }, + { + "osmId": "136703834", + "name": null, + "lengthMeters": 162.5127383938179, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4931629, + 13.4613991 + ], + [ + 52.493225, + 13.4614646 + ], + [ + 52.4933734, + 13.4616211 + ], + [ + 52.493561, + 13.4618189 + ], + [ + 52.4936043, + 13.4618646 + ], + [ + 52.4937457, + 13.462001 + ], + [ + 52.4939252, + 13.4621638 + ], + [ + 52.4939335, + 13.4621711 + ], + [ + 52.4940923, + 13.4623108 + ], + [ + 52.4941218, + 13.4623367 + ], + [ + 52.4942152, + 13.4624123 + ], + [ + 52.4943847, + 13.4625549 + ], + [ + 52.4944296, + 13.4625923 + ] + ] + }, + { + "osmId": "136703835", + "name": null, + "lengthMeters": 237.5922890027369, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5699038, + 13.5644476 + ], + [ + 52.5704, + 13.564877 + ], + [ + 52.5707588, + 13.5651883 + ], + [ + 52.5717942, + 13.5660863 + ] + ] + }, + { + "osmId": "136703837", + "name": null, + "lengthMeters": 413.07761923525726, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4743416, + 13.3649022 + ], + [ + 52.4743506, + 13.3649072 + ], + [ + 52.474621, + 13.3650592 + ], + [ + 52.4748435, + 13.3651842 + ], + [ + 52.4751531, + 13.3653581 + ], + [ + 52.4759464, + 13.3658038 + ], + [ + 52.4761749, + 13.3659397 + ], + [ + 52.4767318, + 13.3662709 + ], + [ + 52.4770771, + 13.3664763 + ], + [ + 52.4775492, + 13.366757 + ], + [ + 52.4777872, + 13.3668936 + ], + [ + 52.4778242, + 13.3669153 + ], + [ + 52.477829, + 13.3669182 + ], + [ + 52.4778454, + 13.3669282 + ] + ] + }, + { + "osmId": "136708509", + "name": null, + "lengthMeters": 1640.316686647599, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3937379, + 13.518577 + ], + [ + 52.3940847, + 13.5192339 + ], + [ + 52.3942853, + 13.5196473 + ], + [ + 52.3951625, + 13.5215326 + ], + [ + 52.395339, + 13.5219113 + ], + [ + 52.3957834, + 13.5228429 + ], + [ + 52.3962168, + 13.5237902 + ], + [ + 52.3963849, + 13.5242037 + ], + [ + 52.3964329, + 13.5243249 + ], + [ + 52.3966359, + 13.524901 + ], + [ + 52.3967551, + 13.5252723 + ], + [ + 52.3968827, + 13.5257232 + ], + [ + 52.3970185, + 13.5262663 + ], + [ + 52.3971503, + 13.5269003 + ], + [ + 52.3972406, + 13.5274364 + ], + [ + 52.3973243, + 13.5279827 + ], + [ + 52.3976349, + 13.5301671 + ], + [ + 52.3976904, + 13.5305585 + ], + [ + 52.3977146, + 13.5307292 + ], + [ + 52.3977154, + 13.5307348 + ], + [ + 52.3977681, + 13.5311065 + ], + [ + 52.3978306, + 13.5315683 + ], + [ + 52.3980984, + 13.5334235 + ], + [ + 52.3983845, + 13.5354226 + ], + [ + 52.3985105, + 13.5362975 + ], + [ + 52.3986596, + 13.5373784 + ], + [ + 52.3987333, + 13.5380225 + ], + [ + 52.3987615, + 13.5383089 + ], + [ + 52.3987764, + 13.5384392 + ], + [ + 52.3988032, + 13.5386734 + ], + [ + 52.3989412, + 13.5399812 + ], + [ + 52.3990309, + 13.5406401 + ] + ] + }, + { + "osmId": "136708516", + "name": null, + "lengthMeters": 137.08462494190837, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3915538, + 13.5142003 + ], + [ + 52.3908014, + 13.5126 + ] + ] + }, + { + "osmId": "136708525", + "name": null, + "lengthMeters": 409.0314193741947, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3901286, + 13.5109509 + ], + [ + 52.3914872, + 13.5138508 + ], + [ + 52.3917407, + 13.5143992 + ], + [ + 52.3920532, + 13.5150649 + ], + [ + 52.3923821, + 13.5157144 + ] + ] + }, + { + "osmId": "136820886", + "name": null, + "lengthMeters": 138.17049178778234, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412646, + 11.5517901 + ], + [ + 48.1412998, + 11.5512639 + ], + [ + 48.141342, + 11.5507094 + ], + [ + 48.1414007, + 11.5499392 + ] + ] + }, + { + "osmId": "136840577", + "name": "Nordring", + "lengthMeters": 1363.7182416547223, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1830754, + 11.6327349 + ], + [ + 48.1829298, + 11.6331656 + ], + [ + 48.1828592, + 11.6334233 + ], + [ + 48.182801, + 11.6337026 + ], + [ + 48.1827458, + 11.6340058 + ], + [ + 48.1827204, + 11.6341749 + ], + [ + 48.1826904, + 11.6343754 + ], + [ + 48.1826527, + 11.6347346 + ], + [ + 48.1826166, + 11.6351219 + ], + [ + 48.1824724, + 11.6368093 + ], + [ + 48.1824064, + 11.637583 + ], + [ + 48.1823923, + 11.6377458 + ], + [ + 48.182321, + 11.6385724 + ], + [ + 48.182252, + 11.6393305 + ], + [ + 48.1821803, + 11.6398804 + ], + [ + 48.1820841, + 11.6403776 + ], + [ + 48.1819981, + 11.640736 + ], + [ + 48.1818678, + 11.6411335 + ], + [ + 48.1817506, + 11.6414467 + ], + [ + 48.1816041, + 11.6418144 + ], + [ + 48.1814669, + 11.642112 + ], + [ + 48.1813308, + 11.6423803 + ], + [ + 48.1811928, + 11.6426271 + ], + [ + 48.1810459, + 11.6428552 + ], + [ + 48.1808816, + 11.6430911 + ], + [ + 48.1807358, + 11.6432655 + ], + [ + 48.1805884, + 11.643424 + ], + [ + 48.1804103, + 11.6435967 + ], + [ + 48.1802461, + 11.6437381 + ], + [ + 48.1800634, + 11.6438851 + ], + [ + 48.1799087, + 11.6439924 + ], + [ + 48.1798222, + 11.6440492 + ], + [ + 48.1796927, + 11.644132 + ], + [ + 48.1794839, + 11.6442525 + ], + [ + 48.1792925, + 11.6443464 + ], + [ + 48.1790638, + 11.6444427 + ], + [ + 48.1789935, + 11.6444679 + ], + [ + 48.1786853, + 11.6445786 + ], + [ + 48.1785833, + 11.6446152 + ], + [ + 48.1781872, + 11.6447407 + ], + [ + 48.1777657, + 11.6448591 + ], + [ + 48.1774924, + 11.6449365 + ], + [ + 48.1772786, + 11.6449888 + ], + [ + 48.1768053, + 11.645092 + ], + [ + 48.176301, + 11.6451801 + ] + ] + }, + { + "osmId": "136844174", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 545.1893155715507, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0241228, + 11.5813282 + ], + [ + 48.0238932, + 11.5814279 + ], + [ + 48.0235109, + 11.5815939 + ], + [ + 48.0234042, + 11.5816402 + ], + [ + 48.0233566, + 11.5816609 + ], + [ + 48.0230438, + 11.5818066 + ], + [ + 48.0228833, + 11.5818779 + ], + [ + 48.0226008, + 11.5820028 + ], + [ + 48.0220865, + 11.582222 + ], + [ + 48.0217903, + 11.5823645 + ], + [ + 48.0215817, + 11.5824649 + ], + [ + 48.0207162, + 11.5828631 + ], + [ + 48.0202012, + 11.583102 + ], + [ + 48.0199793, + 11.5832049 + ], + [ + 48.0199347, + 11.5832256 + ], + [ + 48.0199239, + 11.5832308 + ], + [ + 48.0198531, + 11.5832651 + ], + [ + 48.0194337, + 11.5834681 + ] + ] + }, + { + "osmId": "136861595", + "name": null, + "lengthMeters": 112.85251531189546, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426031, + 11.5389281 + ], + [ + 48.1424937, + 11.5404402 + ] + ] + }, + { + "osmId": "136861596", + "name": null, + "lengthMeters": 1059.225187924379, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1427846, + 11.5352763 + ], + [ + 48.1427819, + 11.5350822 + ], + [ + 48.1427873, + 11.5345499 + ], + [ + 48.1428039, + 11.5339432 + ], + [ + 48.142807, + 11.5336724 + ], + [ + 48.1428149, + 11.5329824 + ], + [ + 48.1428107, + 11.5325777 + ], + [ + 48.1427771, + 11.5319018 + ], + [ + 48.1427421, + 11.5312065 + ], + [ + 48.1427332, + 11.5306 + ], + [ + 48.1427536, + 11.5299076 + ], + [ + 48.1427818, + 11.5295078 + ], + [ + 48.1428699, + 11.5282603 + ], + [ + 48.1431521, + 11.5244498 + ], + [ + 48.1432033, + 11.5238786 + ], + [ + 48.143275, + 11.5232066 + ], + [ + 48.1433555, + 11.5225213 + ], + [ + 48.1434336, + 11.5218058 + ], + [ + 48.1434921, + 11.5211816 + ], + [ + 48.1434941, + 11.5211579 + ], + [ + 48.1434961, + 11.5211339 + ], + [ + 48.1435009, + 11.5210793 + ] + ] + }, + { + "osmId": "136861599", + "name": null, + "lengthMeters": 164.35226091715236, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1424972, + 11.5410883 + ], + [ + 48.1425577, + 11.5404564 + ], + [ + 48.1426805, + 11.5388905 + ] + ] + }, + { + "osmId": "136861600", + "name": null, + "lengthMeters": 251.1561887305681, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1425485, + 11.5389056 + ], + [ + 48.1424544, + 11.5402352 + ], + [ + 48.1424392, + 11.540442 + ], + [ + 48.1423044, + 11.5422707 + ] + ] + }, + { + "osmId": "136866100", + "name": null, + "lengthMeters": 111.41451568464419, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4040903, + 13.3056284 + ], + [ + 52.4043294, + 13.3058052 + ], + [ + 52.4046358, + 13.3060115 + ], + [ + 52.4047333, + 13.3060669 + ], + [ + 52.4048327, + 13.3061174 + ], + [ + 52.4050243, + 13.3062179 + ] + ] + }, + { + "osmId": "136962041", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 190.34632342105272, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1296648, + 11.608804 + ], + [ + 48.1299004, + 11.6090899 + ], + [ + 48.1304558, + 11.6097987 + ], + [ + 48.1307614, + 11.6101656 + ], + [ + 48.1309828, + 11.6104403 + ] + ] + }, + { + "osmId": "136964780", + "name": null, + "lengthMeters": 215.8643906182474, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1313077, + 11.6108485 + ], + [ + 48.1316635, + 11.6112893 + ], + [ + 48.1317314, + 11.6113734 + ], + [ + 48.132057, + 11.6117988 + ], + [ + 48.1324169, + 11.6122867 + ], + [ + 48.1326223, + 11.6125834 + ], + [ + 48.1327478, + 11.6127949 + ] + ] + }, + { + "osmId": "136964791", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 121.97675452109304, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1246353, + 11.6009784 + ], + [ + 48.1248447, + 11.6013327 + ], + [ + 48.1253014, + 11.6020922 + ], + [ + 48.1253702, + 11.6021983 + ] + ] + }, + { + "osmId": "136964794", + "name": null, + "lengthMeters": 382.09999922843224, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1449146, + 11.6847852 + ], + [ + 48.1448945, + 11.6846049 + ], + [ + 48.1448404, + 11.6841278 + ], + [ + 48.1447419, + 11.6833433 + ], + [ + 48.144723, + 11.6831885 + ], + [ + 48.1445536, + 11.6817992 + ], + [ + 48.1444963, + 11.6812671 + ], + [ + 48.1444527, + 11.680862 + ], + [ + 48.1443932, + 11.6802478 + ], + [ + 48.1443335, + 11.6797099 + ] + ] + }, + { + "osmId": "136964795", + "name": null, + "lengthMeters": 153.7098190004993, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1316853, + 11.6114248 + ], + [ + 48.1314713, + 11.6111427 + ], + [ + 48.1311086, + 11.6106803 + ], + [ + 48.1306234, + 11.6100994 + ] + ] + }, + { + "osmId": "136964796", + "name": null, + "lengthMeters": 1069.4093395825485, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1371061, + 11.6588954 + ], + [ + 48.1371229, + 11.6589283 + ], + [ + 48.1376774, + 11.6600161 + ], + [ + 48.1377725, + 11.6602026 + ], + [ + 48.1382243, + 11.6610971 + ], + [ + 48.1382919, + 11.6612309 + ], + [ + 48.1385219, + 11.6616909 + ], + [ + 48.1388176, + 11.6622745 + ], + [ + 48.1392232, + 11.6630776 + ], + [ + 48.1396941, + 11.6640053 + ], + [ + 48.1401774, + 11.6649574 + ], + [ + 48.1410583, + 11.6666211 + ], + [ + 48.1414536, + 11.6673743 + ], + [ + 48.1416123, + 11.6676849 + ], + [ + 48.141863, + 11.6682063 + ], + [ + 48.1420429, + 11.668603 + ], + [ + 48.1421801, + 11.6689468 + ], + [ + 48.142366, + 11.6694662 + ], + [ + 48.1424993, + 11.6698836 + ], + [ + 48.1425967, + 11.6702254 + ], + [ + 48.142686, + 11.6705822 + ] + ] + }, + { + "osmId": "136964798", + "name": null, + "lengthMeters": 1125.6765338021103, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1413416, + 11.5442937 + ], + [ + 48.1414157, + 11.5432887 + ], + [ + 48.1414661, + 11.5427188 + ], + [ + 48.1416267, + 11.5409375 + ], + [ + 48.1416919, + 11.5400597 + ], + [ + 48.1418231, + 11.5382949 + ], + [ + 48.1418904, + 11.537401 + ], + [ + 48.1419819, + 11.5361862 + ], + [ + 48.1420983, + 11.5345567 + ], + [ + 48.1421423, + 11.5333382 + ], + [ + 48.1421704, + 11.5324273 + ], + [ + 48.1421716, + 11.5321339 + ], + [ + 48.142171, + 11.5318917 + ], + [ + 48.1421584, + 11.5314987 + ], + [ + 48.1421494, + 11.5313479 + ], + [ + 48.1421323, + 11.5311463 + ], + [ + 48.1421051, + 11.53091 + ], + [ + 48.1420667, + 11.5306487 + ], + [ + 48.1420261, + 11.5304022 + ], + [ + 48.1419923, + 11.5302472 + ], + [ + 48.1419574, + 11.5300943 + ], + [ + 48.1419132, + 11.5299252 + ], + [ + 48.1418397, + 11.5296734 + ], + [ + 48.1417898, + 11.5295197 + ], + [ + 48.141715, + 11.5293091 + ] + ] + }, + { + "osmId": "136967617", + "name": null, + "lengthMeters": 522.4831522586122, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5741475, + 9.988962 + ], + [ + 53.5744272, + 9.9888596 + ], + [ + 53.574562, + 9.9888183 + ], + [ + 53.5746582, + 9.9888019 + ], + [ + 53.5747603, + 9.9887861 + ], + [ + 53.5748644, + 9.9887868 + ], + [ + 53.5764466, + 9.9888829 + ], + [ + 53.5771811, + 9.9889348 + ], + [ + 53.5779252, + 9.9889722 + ], + [ + 53.5782208, + 9.9889561 + ], + [ + 53.5788336, + 9.9889009 + ] + ] + }, + { + "osmId": "136967618", + "name": null, + "lengthMeters": 445.2309750758006, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5788336, + 9.9889009 + ], + [ + 53.580839, + 9.9887056 + ], + [ + 53.5810827, + 9.9886608 + ], + [ + 53.5811903, + 9.9886342 + ], + [ + 53.5812584, + 9.9886126 + ], + [ + 53.5813291, + 9.9885854 + ], + [ + 53.5813606, + 9.9885696 + ], + [ + 53.5814043, + 9.9885432 + ], + [ + 53.5816161, + 9.9883724 + ], + [ + 53.5817303, + 9.9882549 + ], + [ + 53.581838, + 9.9881228 + ], + [ + 53.5820211, + 9.9878592 + ], + [ + 53.5821895, + 9.9875685 + ], + [ + 53.5822072, + 9.9875324 + ], + [ + 53.5822377, + 9.9874536 + ], + [ + 53.5823745, + 9.9870822 + ], + [ + 53.5824216, + 9.9869465 + ] + ] + }, + { + "osmId": "137037884", + "name": null, + "lengthMeters": 94.91063264446882, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5720993, + 9.9692489 + ], + [ + 53.572315, + 9.9693538 + ], + [ + 53.5725209, + 9.9694666 + ], + [ + 53.5727114, + 9.9696158 + ], + [ + 53.5728922, + 9.9697691 + ] + ] + }, + { + "osmId": "137037886", + "name": null, + "lengthMeters": 235.35558262246263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5730992, + 9.9699817 + ], + [ + 53.5731794, + 9.9700835 + ], + [ + 53.5734037, + 9.9703713 + ], + [ + 53.5742147, + 9.971503 + ], + [ + 53.5746761, + 9.972147 + ], + [ + 53.5747409, + 9.9722308 + ] + ] + }, + { + "osmId": "137154569", + "name": null, + "lengthMeters": 153.77020685454207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5778799, + 9.9765889 + ], + [ + 53.5776872, + 9.9762847 + ], + [ + 53.5776679, + 9.9762555 + ], + [ + 53.5775213, + 9.9760442 + ], + [ + 53.5773549, + 9.9758044 + ], + [ + 53.5770393, + 9.9754176 + ], + [ + 53.5769776, + 9.9753394 + ], + [ + 53.5768071, + 9.9751234 + ] + ] + }, + { + "osmId": "137247341", + "name": null, + "lengthMeters": 100.52436872379272, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5831522, + 9.9854484 + ], + [ + 53.5832566, + 9.9853957 + ], + [ + 53.5832907, + 9.9853818 + ], + [ + 53.5833293, + 9.9853689 + ], + [ + 53.5833695, + 9.9853602 + ], + [ + 53.5834164, + 9.9853568 + ], + [ + 53.583454, + 9.9853576 + ], + [ + 53.5835008, + 9.9853621 + ], + [ + 53.5835692, + 9.9853779 + ], + [ + 53.5836218, + 9.9853961 + ], + [ + 53.5836885, + 9.985429 + ], + [ + 53.5837387, + 9.985464 + ], + [ + 53.5837904, + 9.9855075 + ], + [ + 53.5839986, + 9.9857228 + ] + ] + }, + { + "osmId": "137247342", + "name": null, + "lengthMeters": 87.28092008901935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5846096, + 9.9861423 + ], + [ + 53.5851686, + 9.9867212 + ], + [ + 53.5852778, + 9.9868361 + ] + ] + }, + { + "osmId": "137332705", + "name": null, + "lengthMeters": 310.7670585249055, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418037, + 11.5515995 + ], + [ + 48.1417564, + 11.5509953 + ], + [ + 48.1417467, + 11.5508599 + ], + [ + 48.1417457, + 11.5508454 + ], + [ + 48.1417434, + 11.5508133 + ], + [ + 48.1417381, + 11.5506997 + ], + [ + 48.1417325, + 11.5505123 + ], + [ + 48.1417323, + 11.5503599 + ], + [ + 48.1417361, + 11.5501997 + ], + [ + 48.1417421, + 11.5500686 + ], + [ + 48.1417586, + 11.549777 + ], + [ + 48.1417973, + 11.5492759 + ], + [ + 48.141844, + 11.5486228 + ], + [ + 48.1419144, + 11.5477391 + ], + [ + 48.141916, + 11.5477216 + ], + [ + 48.1419282, + 11.5475911 + ], + [ + 48.1419421, + 11.5474345 + ] + ] + }, + { + "osmId": "137332708", + "name": null, + "lengthMeters": 78.67732832117748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0224473, + 11.582239 + ], + [ + 48.0224292, + 11.5822475 + ], + [ + 48.0218013, + 11.5825435 + ], + [ + 48.021786, + 11.5825502 + ], + [ + 48.0217723, + 11.5825562 + ] + ] + }, + { + "osmId": "137332709", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 514.0009422554908, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0108604, + 11.5888997 + ], + [ + 48.0112024, + 11.5885284 + ], + [ + 48.0115839, + 11.588127 + ], + [ + 48.0117531, + 11.5879688 + ], + [ + 48.0119193, + 11.5878134 + ], + [ + 48.0119862, + 11.5877545 + ], + [ + 48.01232, + 11.5874609 + ], + [ + 48.012929, + 11.5869743 + ], + [ + 48.0132897, + 11.5867204 + ], + [ + 48.0134862, + 11.586582 + ], + [ + 48.013731, + 11.5864199 + ], + [ + 48.014005, + 11.5862605 + ], + [ + 48.0141958, + 11.5861488 + ], + [ + 48.0149534, + 11.5857663 + ] + ] + }, + { + "osmId": "137332713", + "name": null, + "lengthMeters": 255.66328099577768, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0281514, + 11.5849462 + ], + [ + 48.0277135, + 11.5844571 + ], + [ + 48.0273275, + 11.5840266 + ], + [ + 48.0263018, + 11.582904 + ] + ] + }, + { + "osmId": "137342784", + "name": null, + "lengthMeters": 1348.388132606404, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1171961, + 11.5884561 + ], + [ + 48.117178, + 11.5886351 + ], + [ + 48.1171697, + 11.5887092 + ], + [ + 48.1171647, + 11.5887636 + ], + [ + 48.1170871, + 11.5894742 + ], + [ + 48.1170668, + 11.5896666 + ], + [ + 48.1170345, + 11.5899565 + ], + [ + 48.1170258, + 11.5900228 + ], + [ + 48.1170162, + 11.5900711 + ], + [ + 48.1170063, + 11.5901129 + ], + [ + 48.1169931, + 11.5901608 + ], + [ + 48.1169805, + 11.5901955 + ], + [ + 48.1169694, + 11.5902256 + ], + [ + 48.1169505, + 11.5902605 + ], + [ + 48.1169347, + 11.590289 + ], + [ + 48.1169181, + 11.5903199 + ], + [ + 48.1168979, + 11.5903478 + ], + [ + 48.1168828, + 11.5903696 + ], + [ + 48.1168577, + 11.5903986 + ], + [ + 48.1166599, + 11.5906343 + ], + [ + 48.1164374, + 11.5909019 + ], + [ + 48.1160031, + 11.5914189 + ], + [ + 48.1158545, + 11.5915986 + ], + [ + 48.1157096, + 11.5917712 + ], + [ + 48.1155762, + 11.5919382 + ], + [ + 48.1154403, + 11.5920991 + ], + [ + 48.115414, + 11.5921268 + ], + [ + 48.1153866, + 11.5921524 + ], + [ + 48.1153693, + 11.5921668 + ], + [ + 48.1153487, + 11.5921854 + ], + [ + 48.1153288, + 11.5922038 + ], + [ + 48.1153104, + 11.5922208 + ], + [ + 48.1152797, + 11.5922481 + ], + [ + 48.1152329, + 11.5922838 + ], + [ + 48.1151987, + 11.5923079 + ], + [ + 48.1151573, + 11.5923363 + ], + [ + 48.1151316, + 11.5923523 + ], + [ + 48.1150903, + 11.5923766 + ], + [ + 48.1150477, + 11.5924027 + ], + [ + 48.1149836, + 11.5924311 + ], + [ + 48.1148979, + 11.5924668 + ], + [ + 48.1148145, + 11.5924947 + ], + [ + 48.1147448, + 11.5925082 + ], + [ + 48.114558, + 11.5925448 + ], + [ + 48.1142823, + 11.5925852 + ], + [ + 48.1141529, + 11.5926091 + ], + [ + 48.1139844, + 11.5926348 + ], + [ + 48.1138983, + 11.5926497 + ], + [ + 48.1138627, + 11.5926566 + ], + [ + 48.1136747, + 11.5927014 + ], + [ + 48.1135783, + 11.5927233 + ], + [ + 48.113487, + 11.5927492 + ], + [ + 48.1132953, + 11.5928038 + ], + [ + 48.1131889, + 11.5928363 + ], + [ + 48.1130753, + 11.5928748 + ], + [ + 48.1129746, + 11.5929077 + ], + [ + 48.1128686, + 11.5929434 + ], + [ + 48.1127112, + 11.5930016 + ], + [ + 48.1125529, + 11.5930557 + ], + [ + 48.1124902, + 11.5930783 + ], + [ + 48.1124283, + 11.5931052 + ], + [ + 48.1123574, + 11.5931391 + ], + [ + 48.1122925, + 11.5931735 + ], + [ + 48.112215, + 11.5932207 + ], + [ + 48.112143, + 11.5932746 + ], + [ + 48.1120492, + 11.5933486 + ], + [ + 48.1119608, + 11.5934334 + ], + [ + 48.1118587, + 11.5935469 + ], + [ + 48.1117616, + 11.5936594 + ], + [ + 48.1115619, + 11.5938956 + ], + [ + 48.1113707, + 11.5941115 + ], + [ + 48.1112718, + 11.594232 + ], + [ + 48.1111598, + 11.5943583 + ], + [ + 48.1110974, + 11.5944255 + ], + [ + 48.1110507, + 11.5944681 + ], + [ + 48.1110062, + 11.5945121 + ], + [ + 48.1109679, + 11.5945433 + ], + [ + 48.1109525, + 11.5945554 + ], + [ + 48.1109, + 11.5945911 + ], + [ + 48.1108507, + 11.59462 + ], + [ + 48.1108144, + 11.5946413 + ], + [ + 48.110766, + 11.5946684 + ], + [ + 48.1107156, + 11.5946932 + ], + [ + 48.1104128, + 11.5948028 + ], + [ + 48.1102291, + 11.5948695 + ], + [ + 48.1098968, + 11.5949805 + ], + [ + 48.1091935, + 11.5952433 + ], + [ + 48.1089588, + 11.5953413 + ], + [ + 48.1088683, + 11.5953778 + ], + [ + 48.1086956, + 11.5954502 + ], + [ + 48.1083875, + 11.5955807 + ], + [ + 48.1077219, + 11.5958685 + ], + [ + 48.107637, + 11.5959062 + ], + [ + 48.1074951, + 11.595968 + ], + [ + 48.1070411, + 11.5961587 + ] + ] + }, + { + "osmId": "137409431", + "name": null, + "lengthMeters": 1069.7415261224205, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1309577, + 11.5698087 + ], + [ + 48.1309207, + 11.5699492 + ], + [ + 48.1309123, + 11.569989 + ], + [ + 48.1309047, + 11.5700303 + ], + [ + 48.130899, + 11.5700644 + ], + [ + 48.1308944, + 11.5700944 + ], + [ + 48.1308894, + 11.5701288 + ], + [ + 48.1308853, + 11.5701609 + ], + [ + 48.1308825, + 11.5701892 + ], + [ + 48.130881, + 11.5702144 + ], + [ + 48.1308797, + 11.5702475 + ], + [ + 48.1308799, + 11.5702624 + ], + [ + 48.1308801, + 11.5702928 + ], + [ + 48.1308818, + 11.5703356 + ], + [ + 48.1308843, + 11.570378 + ], + [ + 48.1308937, + 11.5704556 + ], + [ + 48.1309006, + 11.5705027 + ], + [ + 48.1309086, + 11.5705473 + ], + [ + 48.1309159, + 11.570579 + ], + [ + 48.130925, + 11.5706134 + ], + [ + 48.1309347, + 11.5706461 + ], + [ + 48.1309474, + 11.5706814 + ], + [ + 48.1309606, + 11.5707168 + ], + [ + 48.1309746, + 11.5707502 + ], + [ + 48.1309893, + 11.5707824 + ], + [ + 48.1309985, + 11.5708019 + ], + [ + 48.1310606, + 11.5709235 + ], + [ + 48.1312607, + 11.5713027 + ], + [ + 48.1312774, + 11.5713366 + ], + [ + 48.1312892, + 11.5713628 + ], + [ + 48.1313158, + 11.5714313 + ], + [ + 48.1313192, + 11.5714408 + ], + [ + 48.1313555, + 11.5715322 + ], + [ + 48.1313642, + 11.5715542 + ], + [ + 48.1313928, + 11.5716169 + ], + [ + 48.1314292, + 11.5716882 + ], + [ + 48.1314421, + 11.5717149 + ], + [ + 48.1314628, + 11.5717546 + ], + [ + 48.1317238, + 11.5722484 + ], + [ + 48.1318288, + 11.5724467 + ], + [ + 48.1322227, + 11.5731905 + ], + [ + 48.1322677, + 11.5732767 + ], + [ + 48.132366, + 11.5734651 + ], + [ + 48.1324454, + 11.5736037 + ], + [ + 48.1325254, + 11.5737191 + ], + [ + 48.1328518, + 11.574168 + ], + [ + 48.1329445, + 11.5742949 + ], + [ + 48.133022, + 11.5744023 + ], + [ + 48.1332609, + 11.574731 + ], + [ + 48.1332896, + 11.5747887 + ], + [ + 48.1333081, + 11.5748485 + ], + [ + 48.1333131, + 11.5749097 + ], + [ + 48.1333125, + 11.5749781 + ], + [ + 48.1331766, + 11.5759865 + ], + [ + 48.1331708, + 11.5760445 + ], + [ + 48.1331702, + 11.5760992 + ], + [ + 48.1331705, + 11.5761084 + ], + [ + 48.1331726, + 11.5761623 + ], + [ + 48.1331786, + 11.5762266 + ], + [ + 48.1331824, + 11.5762572 + ], + [ + 48.1332, + 11.5763421 + ], + [ + 48.1332161, + 11.5764075 + ], + [ + 48.1332356, + 11.5764872 + ], + [ + 48.1332955, + 11.5767382 + ], + [ + 48.1333394, + 11.5769196 + ], + [ + 48.1339139, + 11.5792913 + ], + [ + 48.1339296, + 11.5793752 + ], + [ + 48.1339385, + 11.5794366 + ], + [ + 48.1339438, + 11.5795106 + ], + [ + 48.1339494, + 11.579575 + ], + [ + 48.1339508, + 11.5796327 + ], + [ + 48.1339505, + 11.5797113 + ], + [ + 48.1339473, + 11.5798024 + ], + [ + 48.1339399, + 11.5798941 + ], + [ + 48.1338504, + 11.5805173 + ], + [ + 48.1338193, + 11.5807338 + ], + [ + 48.1337605, + 11.5811542 + ], + [ + 48.1337067, + 11.5815866 + ], + [ + 48.1336757, + 11.5818546 + ], + [ + 48.1336695, + 11.5819228 + ], + [ + 48.1336667, + 11.5819921 + ], + [ + 48.1336683, + 11.5820737 + ], + [ + 48.1336763, + 11.5821597 + ], + [ + 48.1336929, + 11.5822306 + ], + [ + 48.1337139, + 11.5823062 + ], + [ + 48.1338004, + 11.582564 + ] + ] + }, + { + "osmId": "137433772", + "name": "Verbindungsbahn", + "lengthMeters": 469.74988855664685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5640006, + 9.9781668 + ], + [ + 53.5639931, + 9.9766834 + ], + [ + 53.5639831, + 9.9750299 + ], + [ + 53.5639465, + 9.9736828 + ], + [ + 53.5639433, + 9.9735646 + ], + [ + 53.5639346, + 9.9732452 + ], + [ + 53.5639336, + 9.9732243 + ], + [ + 53.5638951, + 9.9724218 + ], + [ + 53.5638672, + 9.9717225 + ], + [ + 53.563848, + 9.9710609 + ] + ] + }, + { + "osmId": "137445058", + "name": null, + "lengthMeters": 265.2683544577979, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2062915, + 11.4624004 + ], + [ + 48.2062274, + 11.4624926 + ], + [ + 48.2060917, + 11.4627083 + ], + [ + 48.205979, + 11.4629245 + ], + [ + 48.2058802, + 11.4631428 + ], + [ + 48.2057886, + 11.4633711 + ], + [ + 48.2057238, + 11.4635574 + ], + [ + 48.2056362, + 11.463848 + ], + [ + 48.2055494, + 11.4641798 + ], + [ + 48.2052692, + 11.4652466 + ], + [ + 48.205192, + 11.465537 + ] + ] + }, + { + "osmId": "137710052", + "name": "Ostbahn", + "lengthMeters": 333.7357454492537, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5041109, + 13.4856893 + ], + [ + 52.5034335, + 13.4839993 + ], + [ + 52.5033162, + 13.483659 + ], + [ + 52.5031996, + 13.4832697 + ], + [ + 52.5030973, + 13.4828971 + ], + [ + 52.5029166, + 13.4821932 + ], + [ + 52.5028092, + 13.4817415 + ], + [ + 52.5027205, + 13.4813427 + ] + ] + }, + { + "osmId": "138117920", + "name": null, + "lengthMeters": 185.28682701635893, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6584573, + 9.7927908 + ], + [ + 53.6588281, + 9.7922591 + ], + [ + 53.6591327, + 9.791809 + ], + [ + 53.6597167, + 9.7909496 + ] + ] + }, + { + "osmId": "138119199", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 141.10465462809628, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5556712, + 10.00396 + ], + [ + 53.5554859, + 10.0043049 + ], + [ + 53.5553211, + 10.0045942 + ], + [ + 53.555139, + 10.0048734 + ], + [ + 53.5549548, + 10.0051427 + ], + [ + 53.5549157, + 10.0051999 + ], + [ + 53.5547625, + 10.0054479 + ] + ] + }, + { + "osmId": "138121664", + "name": null, + "lengthMeters": 77.97184236413604, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5566391, + 9.9997228 + ], + [ + 53.5566055, + 10.0001987 + ], + [ + 53.5565795, + 10.0005009 + ], + [ + 53.5565734, + 10.0005761 + ], + [ + 53.5565721, + 10.0005921 + ], + [ + 53.5565682, + 10.0006404 + ], + [ + 53.5565516, + 10.0007985 + ], + [ + 53.5565404, + 10.0008911 + ] + ] + }, + { + "osmId": "138229220", + "name": null, + "lengthMeters": 514.9587831134868, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1508465, + 11.6082874 + ], + [ + 48.1508451, + 11.6082576 + ], + [ + 48.1508425, + 11.6081951 + ], + [ + 48.1508397, + 11.608129 + ], + [ + 48.150835, + 11.6080193 + ], + [ + 48.1508315, + 11.6079312 + ], + [ + 48.1508292, + 11.6079079 + ], + [ + 48.1508253, + 11.6078635 + ], + [ + 48.1508205, + 11.6078298 + ], + [ + 48.1508155, + 11.6077966 + ], + [ + 48.1508096, + 11.6077668 + ], + [ + 48.150803, + 11.6077357 + ], + [ + 48.1507945, + 11.6077034 + ], + [ + 48.1507848, + 11.6076731 + ], + [ + 48.1507748, + 11.6076453 + ], + [ + 48.1507602, + 11.6076074 + ], + [ + 48.1507458, + 11.6075729 + ], + [ + 48.1507252, + 11.6075284 + ], + [ + 48.1506938, + 11.6074618 + ], + [ + 48.1506655, + 11.60741 + ], + [ + 48.150629, + 11.607345 + ], + [ + 48.150416, + 11.6069802 + ], + [ + 48.150377, + 11.6069082 + ], + [ + 48.1503276, + 11.6068143 + ], + [ + 48.1502957, + 11.6067518 + ], + [ + 48.1502534, + 11.6066631 + ], + [ + 48.1502165, + 11.6065784 + ], + [ + 48.1501858, + 11.6065061 + ], + [ + 48.1501224, + 11.6063511 + ], + [ + 48.1500828, + 11.6062467 + ], + [ + 48.1500436, + 11.6061385 + ], + [ + 48.1499892, + 11.605987 + ], + [ + 48.1499409, + 11.6058445 + ], + [ + 48.1498859, + 11.6056812 + ], + [ + 48.1498268, + 11.6054933 + ], + [ + 48.1497821, + 11.6053489 + ], + [ + 48.1497382, + 11.6051986 + ], + [ + 48.1497144, + 11.6051171 + ], + [ + 48.149686, + 11.6050184 + ], + [ + 48.1496465, + 11.6048764 + ], + [ + 48.1496085, + 11.6047299 + ], + [ + 48.1494885, + 11.6042622 + ], + [ + 48.1494327, + 11.6040383 + ], + [ + 48.1494062, + 11.6039379 + ], + [ + 48.1493872, + 11.6038676 + ], + [ + 48.1493673, + 11.6037917 + ], + [ + 48.1493467, + 11.6037178 + ], + [ + 48.1493237, + 11.6036354 + ], + [ + 48.1493036, + 11.6035672 + ], + [ + 48.1492786, + 11.6034825 + ], + [ + 48.1492406, + 11.6033579 + ], + [ + 48.1491861, + 11.6031818 + ], + [ + 48.1491295, + 11.6029999 + ], + [ + 48.1490864, + 11.602858 + ], + [ + 48.1490527, + 11.6027 + ], + [ + 48.1489946, + 11.6023526 + ], + [ + 48.1489803, + 11.6022639 + ], + [ + 48.148972, + 11.6022123 + ], + [ + 48.148946, + 11.6020533 + ] + ] + }, + { + "osmId": "138508943", + "name": null, + "lengthMeters": 114.36256911809012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4932464, + 10.2133668 + ], + [ + 53.4938165, + 10.2148057 + ] + ] + }, + { + "osmId": "139084182", + "name": null, + "lengthMeters": 123.19622306233639, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5604779, + 9.9903281 + ], + [ + 53.5605368, + 9.9902594 + ], + [ + 53.5605709, + 9.99022 + ], + [ + 53.5606255, + 9.9901511 + ], + [ + 53.5611925, + 9.9894336 + ], + [ + 53.5612412, + 9.9893743 + ], + [ + 53.5612679, + 9.9893407 + ], + [ + 53.5613305, + 9.9892616 + ], + [ + 53.5613671, + 9.9892156 + ] + ] + }, + { + "osmId": "139249386", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 469.44437749336817, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6004511, + 9.9156398 + ], + [ + 53.5999675, + 9.9149841 + ], + [ + 53.5995908, + 9.9143397 + ], + [ + 53.5994258, + 9.9139898 + ], + [ + 53.5992762, + 9.9136308 + ], + [ + 53.5991724, + 9.9133287 + ], + [ + 53.5990585, + 9.9129592 + ], + [ + 53.5989511, + 9.9125304 + ], + [ + 53.5988367, + 9.9119499 + ], + [ + 53.5987599, + 9.9113454 + ], + [ + 53.5986373, + 9.9095398 + ] + ] + }, + { + "osmId": "139249387", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 180.18988721057073, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5984622, + 9.9066606 + ], + [ + 53.5986288, + 9.9093768 + ] + ] + }, + { + "osmId": "139593784", + "name": null, + "lengthMeters": 232.1239368718962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1506374, + 11.4596185 + ], + [ + 48.1508594, + 11.4589397 + ], + [ + 48.1511657, + 11.4580155 + ], + [ + 48.1512426, + 11.4577738 + ], + [ + 48.1513337, + 11.4575004 + ], + [ + 48.1515519, + 11.4568059 + ] + ] + }, + { + "osmId": "139609606", + "name": null, + "lengthMeters": 925.2846720360828, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356227, + 11.5523419 + ], + [ + 48.1374471, + 11.554707 + ], + [ + 48.1376392, + 11.5549653 + ], + [ + 48.1378172, + 11.5552225 + ], + [ + 48.138024, + 11.5555422 + ], + [ + 48.1382221, + 11.5558717 + ], + [ + 48.1383941, + 11.5561979 + ], + [ + 48.1385857, + 11.556622 + ], + [ + 48.1387381, + 11.5570167 + ], + [ + 48.1388731, + 11.5574343 + ], + [ + 48.1390015, + 11.557891 + ], + [ + 48.1390777, + 11.5582336 + ], + [ + 48.13913, + 11.5585468 + ], + [ + 48.1391831, + 11.5589572 + ], + [ + 48.1392374, + 11.5600769 + ], + [ + 48.1392867, + 11.5610457 + ], + [ + 48.1393196, + 11.5627137 + ] + ] + }, + { + "osmId": "140166841", + "name": null, + "lengthMeters": 771.5851731264073, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5372613, + 13.6092654 + ], + [ + 52.5384399, + 13.6149074 + ], + [ + 52.5385245, + 13.6154006 + ], + [ + 52.538593, + 13.6158978 + ], + [ + 52.5387225, + 13.6168936 + ], + [ + 52.5389923, + 13.6190831 + ], + [ + 52.5391468, + 13.6202237 + ] + ] + }, + { + "osmId": "140166842", + "name": null, + "lengthMeters": 374.91159829915114, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5359427, + 13.604164 + ], + [ + 52.5367896, + 13.6073992 + ], + [ + 52.5369542, + 13.6080185 + ], + [ + 52.5372613, + 13.6092654 + ] + ] + }, + { + "osmId": "140478324", + "name": null, + "lengthMeters": 380.61853930500826, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5269728, + 13.3674637 + ], + [ + 52.5258834, + 13.3682268 + ], + [ + 52.5247546, + 13.3690176 + ], + [ + 52.5242819, + 13.36935 + ], + [ + 52.5240534, + 13.3695099 + ], + [ + 52.5238269, + 13.3696808 + ] + ] + }, + { + "osmId": "140478325", + "name": "Berliner Ringbahn", + "lengthMeters": 224.4790632656898, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5360456, + 13.3465074 + ], + [ + 52.5360075, + 13.3462017 + ], + [ + 52.5359777, + 13.3459067 + ], + [ + 52.5359523, + 13.3456202 + ], + [ + 52.535928, + 13.3452846 + ], + [ + 52.5359145, + 13.3451053 + ], + [ + 52.5359093, + 13.3450343 + ], + [ + 52.5358973, + 13.3448617 + ], + [ + 52.5358333, + 13.3439739 + ], + [ + 52.5357747, + 13.3432196 + ] + ] + }, + { + "osmId": "140491722", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 314.11263634596236, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371323, + 13.1565437 + ], + [ + 52.5371161, + 13.1563988 + ], + [ + 52.537085, + 13.1560749 + ], + [ + 52.5370583, + 13.1557498 + ], + [ + 52.5370407, + 13.1554675 + ], + [ + 52.5370264, + 13.1551828 + ], + [ + 52.5370172, + 13.1549277 + ], + [ + 52.5370098, + 13.1545051 + ], + [ + 52.5370102, + 13.1541877 + ], + [ + 52.5370147, + 13.153938 + ], + [ + 52.5370227, + 13.1536353 + ], + [ + 52.5370332, + 13.1533699 + ], + [ + 52.5370452, + 13.1531078 + ], + [ + 52.5370618, + 13.1528154 + ], + [ + 52.5370758, + 13.1525635 + ], + [ + 52.5371109, + 13.1519945 + ], + [ + 52.5371156, + 13.1519192 + ] + ] + }, + { + "osmId": "140491728", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 1886.5690557153423, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371987, + 13.1512364 + ], + [ + 52.5373077, + 13.149494 + ], + [ + 52.5373085, + 13.1494809 + ], + [ + 52.5373969, + 13.148063 + ], + [ + 52.5374603, + 13.1470297 + ], + [ + 52.5374931, + 13.146537 + ], + [ + 52.5375509, + 13.1456564 + ], + [ + 52.5376004, + 13.1449597 + ], + [ + 52.5376498, + 13.144246 + ], + [ + 52.5377691, + 13.1425613 + ], + [ + 52.5378178, + 13.1418729 + ], + [ + 52.5380064, + 13.1392002 + ], + [ + 52.5382248, + 13.1361407 + ], + [ + 52.5383302, + 13.1346431 + ], + [ + 52.5384419, + 13.1330557 + ], + [ + 52.538648, + 13.1301267 + ], + [ + 52.5387618, + 13.1285104 + ], + [ + 52.5388478, + 13.1272879 + ], + [ + 52.5390485, + 13.1244353 + ], + [ + 52.5391133, + 13.1235205 + ] + ] + }, + { + "osmId": "140491734", + "name": null, + "lengthMeters": 203.00627569125527, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018176, + 13.2930445 + ], + [ + 52.5022176, + 13.2944485 + ], + [ + 52.5023917, + 13.2950634 + ], + [ + 52.5025895, + 13.2957624 + ] + ] + }, + { + "osmId": "140607280", + "name": null, + "lengthMeters": 172.33199366232915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151795, + 11.6122529 + ], + [ + 48.1517112, + 11.6119988 + ], + [ + 48.1514599, + 11.6112819 + ], + [ + 48.1513508, + 11.6109277 + ], + [ + 48.1513063, + 11.6107819 + ], + [ + 48.1512609, + 11.6106201 + ], + [ + 48.1511946, + 11.610378 + ], + [ + 48.1511363, + 11.6101523 + ] + ] + }, + { + "osmId": "140643608", + "name": null, + "lengthMeters": 1400.2501201263985, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5185229, + 13.6782562 + ], + [ + 52.5185378, + 13.678426 + ], + [ + 52.5193725, + 13.6873633 + ], + [ + 52.5193841, + 13.6874878 + ], + [ + 52.5193942, + 13.6875923 + ], + [ + 52.5197206, + 13.6909949 + ], + [ + 52.520047, + 13.6939212 + ], + [ + 52.5202406, + 13.6960296 + ], + [ + 52.5205224, + 13.6979824 + ], + [ + 52.5205966, + 13.6986624 + ] + ] + }, + { + "osmId": "141175716", + "name": null, + "lengthMeters": 187.05408091845436, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5010441, + 13.2854812 + ], + [ + 52.5011443, + 13.2857247 + ], + [ + 52.5012681, + 13.2859929 + ], + [ + 52.5013289, + 13.2861439 + ], + [ + 52.5013874, + 13.2863051 + ], + [ + 52.5014533, + 13.2864829 + ], + [ + 52.5015356, + 13.2867424 + ], + [ + 52.5016483, + 13.2871009 + ], + [ + 52.5017672, + 13.2874901 + ], + [ + 52.5018708, + 13.287879 + ] + ] + }, + { + "osmId": "141176100", + "name": null, + "lengthMeters": 102.09041474585432, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4673906, + 13.4299916 + ], + [ + 52.4676105, + 13.4314548 + ] + ] + }, + { + "osmId": "141226243", + "name": null, + "lengthMeters": 77.56962031164397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.150976, + 11.6094652 + ], + [ + 48.1509327, + 11.609252 + ], + [ + 48.1509151, + 11.6091466 + ], + [ + 48.150899, + 11.609034 + ], + [ + 48.1508854, + 11.6089248 + ], + [ + 48.1508746, + 11.6088229 + ], + [ + 48.1508677, + 11.60873 + ], + [ + 48.150862, + 11.6086075 + ], + [ + 48.1508587, + 11.6085368 + ], + [ + 48.1508542, + 11.6084395 + ] + ] + }, + { + "osmId": "141624080", + "name": null, + "lengthMeters": 314.29640032063026, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1277027, + 11.3579042 + ], + [ + 48.1277191, + 11.3579544 + ], + [ + 48.1278095, + 11.3582273 + ], + [ + 48.1279189, + 11.3586339 + ], + [ + 48.1280116, + 11.3590038 + ], + [ + 48.1281057, + 11.3594615 + ], + [ + 48.128157, + 11.3597399 + ], + [ + 48.1282144, + 11.3601054 + ], + [ + 48.1283725, + 11.3613527 + ], + [ + 48.1284539, + 11.3619686 + ] + ] + }, + { + "osmId": "141624085", + "name": null, + "lengthMeters": 1380.6511171038594, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1329402, + 11.3865203 + ], + [ + 48.1329368, + 11.3865121 + ], + [ + 48.1328748, + 11.3863634 + ], + [ + 48.1327292, + 11.3859989 + ], + [ + 48.1325397, + 11.3854641 + ], + [ + 48.1324085, + 11.3850645 + ], + [ + 48.1322833, + 11.3846496 + ], + [ + 48.1321709, + 11.3842386 + ], + [ + 48.1320614, + 11.3838075 + ], + [ + 48.131953, + 11.3832953 + ], + [ + 48.1318574, + 11.3827871 + ], + [ + 48.1315952, + 11.3811804 + ], + [ + 48.130813, + 11.3762607 + ], + [ + 48.1301503, + 11.3720501 + ], + [ + 48.1297637, + 11.3696436 + ], + [ + 48.1296078, + 11.3686671 + ] + ] + }, + { + "osmId": "141624093", + "name": null, + "lengthMeters": 187.88658471064542, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1296078, + 11.3686671 + ], + [ + 48.1293731, + 11.3671775 + ], + [ + 48.1292169, + 11.3662042 + ] + ] + }, + { + "osmId": "142019412", + "name": "Anhalter Bahn", + "lengthMeters": 1163.1557442606104, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3471078, + 13.2831303 + ], + [ + 52.3468399, + 13.2830203 + ], + [ + 52.3463863, + 13.2828349 + ], + [ + 52.3460157, + 13.2826839 + ], + [ + 52.3449422, + 13.2822461 + ], + [ + 52.3442858, + 13.2819795 + ], + [ + 52.3436073, + 13.2817012 + ], + [ + 52.3432233, + 13.2815442 + ], + [ + 52.3426454, + 13.2813071 + ], + [ + 52.3423405, + 13.2811809 + ], + [ + 52.341552, + 13.2808575 + ], + [ + 52.3403029, + 13.2803425 + ], + [ + 52.3398647, + 13.2801633 + ], + [ + 52.3380467, + 13.2794136 + ], + [ + 52.3374628, + 13.2791757 + ], + [ + 52.337029, + 13.2789982 + ], + [ + 52.3369607, + 13.2789706 + ] + ] + }, + { + "osmId": "142019433", + "name": "Stettiner Bahn", + "lengthMeters": 642.8008319247142, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5526253, + 13.3987962 + ], + [ + 52.5525446, + 13.3988136 + ], + [ + 52.5522582, + 13.3988755 + ], + [ + 52.5519499, + 13.3989241 + ], + [ + 52.5516406, + 13.3989164 + ], + [ + 52.5512516, + 13.3988204 + ], + [ + 52.5511996, + 13.3987979 + ], + [ + 52.5511239, + 13.3987651 + ], + [ + 52.5510574, + 13.3987363 + ], + [ + 52.5507178, + 13.3985361 + ], + [ + 52.5504214, + 13.3982708 + ], + [ + 52.5502603, + 13.3980904 + ], + [ + 52.5501727, + 13.3979827 + ], + [ + 52.5501101, + 13.3979041 + ], + [ + 52.5499438, + 13.3976545 + ], + [ + 52.5497435, + 13.3972998 + ], + [ + 52.5495112, + 13.3967522 + ], + [ + 52.5494299, + 13.3965007 + ], + [ + 52.5493561, + 13.3962453 + ], + [ + 52.5492943, + 13.3959766 + ], + [ + 52.5492654, + 13.3958496 + ], + [ + 52.5492427, + 13.3957189 + ], + [ + 52.5492129, + 13.3955191 + ], + [ + 52.5491839, + 13.3953064 + ], + [ + 52.5491587, + 13.3950436 + ], + [ + 52.5491329, + 13.3946654 + ], + [ + 52.5491082, + 13.3942549 + ], + [ + 52.5490662, + 13.3934908 + ], + [ + 52.5490577, + 13.3933235 + ], + [ + 52.5490548, + 13.3932655 + ] + ] + }, + { + "osmId": "142019436", + "name": "Stettiner Bahn", + "lengthMeters": 266.6509578986988, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6144231, + 13.4688252 + ], + [ + 52.6143049, + 13.4687 + ], + [ + 52.6129106, + 13.4671869 + ], + [ + 52.612427, + 13.4666368 + ] + ] + }, + { + "osmId": "142019448", + "name": null, + "lengthMeters": 448.4805773365492, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4722021, + 13.3635868 + ], + [ + 52.4720817, + 13.3635429 + ], + [ + 52.4720044, + 13.3635147 + ], + [ + 52.4715903, + 13.3633656 + ], + [ + 52.470413, + 13.3629465 + ], + [ + 52.4700609, + 13.3628212 + ], + [ + 52.4687813, + 13.3623629 + ], + [ + 52.4687742, + 13.3623603 + ], + [ + 52.4686929, + 13.362331 + ], + [ + 52.468261, + 13.3621794 + ] + ] + }, + { + "osmId": "142023974", + "name": "Berliner Ringbahn", + "lengthMeters": 113.79206824198398, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5484163, + 13.3852901 + ], + [ + 52.5483858, + 13.3846854 + ], + [ + 52.5483548, + 13.3840742 + ], + [ + 52.54833, + 13.3836132 + ] + ] + }, + { + "osmId": "142027751", + "name": "Anhalter Bahn", + "lengthMeters": 165.4177298701211, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3484784, + 13.2837541 + ], + [ + 52.3486662, + 13.2838318 + ], + [ + 52.3493719, + 13.2841177 + ], + [ + 52.3499221, + 13.2843416 + ] + ] + }, + { + "osmId": "142091566", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 217.61047908031105, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5362406, + 10.0513115 + ], + [ + 53.5361463, + 10.0516152 + ], + [ + 53.5353358, + 10.0542313 + ] + ] + }, + { + "osmId": "142142492", + "name": null, + "lengthMeters": 682.4421765834869, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.492126, + 13.3726137 + ], + [ + 52.4894756, + 13.3724465 + ], + [ + 52.4891924, + 13.3724132 + ], + [ + 52.4887876, + 13.3723655 + ], + [ + 52.4881052, + 13.3722477 + ], + [ + 52.4876544, + 13.3721425 + ], + [ + 52.4872766, + 13.3720361 + ], + [ + 52.4867898, + 13.3718811 + ], + [ + 52.4867126, + 13.3718565 + ], + [ + 52.4860341, + 13.3716024 + ] + ] + }, + { + "osmId": "142142493", + "name": null, + "lengthMeters": 974.0538054947413, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4835239, + 13.3703683 + ], + [ + 52.4842262, + 13.3707785 + ], + [ + 52.4847636, + 13.3710899 + ], + [ + 52.4852705, + 13.3713519 + ], + [ + 52.485508, + 13.3714633 + ], + [ + 52.4857265, + 13.3715659 + ], + [ + 52.4861948, + 13.3717624 + ], + [ + 52.4866126, + 13.3719165 + ], + [ + 52.4866926, + 13.371946 + ], + [ + 52.4872282, + 13.372115 + ], + [ + 52.4876776, + 13.3722413 + ], + [ + 52.4880458, + 13.3723284 + ], + [ + 52.4882669, + 13.3723723 + ], + [ + 52.4887883, + 13.3724604 + ], + [ + 52.4891938, + 13.3725138 + ], + [ + 52.4894012, + 13.3725333 + ], + [ + 52.4921099, + 13.3727017 + ] + ] + }, + { + "osmId": "142142494", + "name": null, + "lengthMeters": 400.6863796992472, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5301246, + 13.3653207 + ], + [ + 52.5301342, + 13.3653079 + ], + [ + 52.5315988, + 13.3637473 + ], + [ + 52.5321742, + 13.3631292 + ], + [ + 52.5325515, + 13.3627267 + ], + [ + 52.5329999, + 13.3622529 + ], + [ + 52.533145, + 13.3620905 + ] + ] + }, + { + "osmId": "142142497", + "name": null, + "lengthMeters": 232.84604443222466, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292849, + 13.2293874 + ], + [ + 52.5290966, + 13.2312698 + ], + [ + 52.5290186, + 13.232037 + ], + [ + 52.5289858, + 13.2323338 + ], + [ + 52.5289826, + 13.232363 + ], + [ + 52.5289448, + 13.2327837 + ] + ] + }, + { + "osmId": "142142501", + "name": null, + "lengthMeters": 129.4857937732901, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321137, + 13.3630833 + ], + [ + 52.5327222, + 13.3624298 + ], + [ + 52.5329269, + 13.3622121 + ], + [ + 52.5330891, + 13.3620376 + ] + ] + }, + { + "osmId": "142166070", + "name": null, + "lengthMeters": 317.7215427917944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6760579, + 13.5925392 + ], + [ + 52.6759386, + 13.5923015 + ], + [ + 52.6753796, + 13.5911668 + ], + [ + 52.675156, + 13.5907001 + ], + [ + 52.675082, + 13.5905382 + ], + [ + 52.6749904, + 13.5903377 + ], + [ + 52.6749302, + 13.590201 + ], + [ + 52.6748638, + 13.5900425 + ], + [ + 52.6747564, + 13.5897647 + ], + [ + 52.6746585, + 13.5894882 + ], + [ + 52.6744338, + 13.5888215 + ], + [ + 52.6744002, + 13.5887159 + ] + ] + }, + { + "osmId": "142377050", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 894.3743094605522, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6041695, + 9.9668848 + ], + [ + 53.6038297, + 9.9678887 + ], + [ + 53.6036773, + 9.9683433 + ], + [ + 53.6035766, + 9.9686678 + ], + [ + 53.6034628, + 9.9690313 + ], + [ + 53.6033606, + 9.9694034 + ], + [ + 53.6032774, + 9.9697401 + ], + [ + 53.603197, + 9.9700868 + ], + [ + 53.6030713, + 9.9707271 + ], + [ + 53.6029946, + 9.9712079 + ], + [ + 53.6029205, + 9.9717725 + ], + [ + 53.6028601, + 9.9723492 + ], + [ + 53.6027932, + 9.9730781 + ], + [ + 53.602687, + 9.974289 + ], + [ + 53.602498, + 9.9763651 + ], + [ + 53.6024002, + 9.9774427 + ], + [ + 53.6023403, + 9.9781254 + ], + [ + 53.6022883, + 9.978704 + ], + [ + 53.6022174, + 9.9794141 + ], + [ + 53.602176, + 9.9798782 + ] + ] + }, + { + "osmId": "142692913", + "name": null, + "lengthMeters": 123.63709496475897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5562827, + 10.0022673 + ], + [ + 53.5561905, + 10.0025174 + ], + [ + 53.5560904, + 10.0027553 + ], + [ + 53.556054, + 10.0028361 + ], + [ + 53.5560322, + 10.0028844 + ], + [ + 53.555933, + 10.0030777 + ], + [ + 53.5558965, + 10.0031419 + ], + [ + 53.5557837, + 10.0033403 + ], + [ + 53.5555615, + 10.0036794 + ] + ] + }, + { + "osmId": "142692914", + "name": null, + "lengthMeters": 79.6902177920896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5563219, + 10.0019868 + ], + [ + 53.5562612, + 10.0021866 + ], + [ + 53.5562091, + 10.0023364 + ], + [ + 53.5562069, + 10.0023421 + ], + [ + 53.556142, + 10.0025127 + ], + [ + 53.5560741, + 10.0026739 + ], + [ + 53.5559755, + 10.0028827 + ], + [ + 53.5559268, + 10.0029896 + ] + ] + }, + { + "osmId": "142692915", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 95.10893632179719, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5554571, + 10.0042095 + ], + [ + 53.5552487, + 10.0045125 + ], + [ + 53.5552326, + 10.0045359 + ], + [ + 53.5552117, + 10.0045654 + ], + [ + 53.5550853, + 10.0047441 + ], + [ + 53.5547962, + 10.0051229 + ] + ] + }, + { + "osmId": "142692920", + "name": null, + "lengthMeters": 127.93388260252065, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5564188, + 10.0022901 + ], + [ + 53.5562745, + 10.0029116 + ], + [ + 53.5562029, + 10.0032105 + ], + [ + 53.5560766, + 10.0036622 + ], + [ + 53.5560378, + 10.0037775 + ], + [ + 53.5559747, + 10.0039683 + ], + [ + 53.5559436, + 10.0040501 + ] + ] + }, + { + "osmId": "142771976", + "name": null, + "lengthMeters": 1599.345902477051, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1748492, + 11.5660734 + ], + [ + 48.1747916, + 11.5660152 + ], + [ + 48.1747316, + 11.5659696 + ], + [ + 48.1746713, + 11.5659334 + ], + [ + 48.1745442, + 11.5658787 + ], + [ + 48.1744038, + 11.5658213 + ], + [ + 48.1741736, + 11.5657268 + ], + [ + 48.1738107, + 11.5655757 + ], + [ + 48.1736691, + 11.5655152 + ], + [ + 48.1734406, + 11.5654223 + ], + [ + 48.1731852, + 11.5653192 + ], + [ + 48.1729286, + 11.5652136 + ], + [ + 48.1726267, + 11.5650895 + ], + [ + 48.1723485, + 11.5649777 + ], + [ + 48.1721845, + 11.5649101 + ], + [ + 48.172143, + 11.5648934 + ], + [ + 48.1719923, + 11.5648322 + ], + [ + 48.1716082, + 11.5646796 + ], + [ + 48.171507, + 11.5646377 + ], + [ + 48.1712415, + 11.5645522 + ], + [ + 48.1710531, + 11.564517 + ], + [ + 48.1708591, + 11.5644885 + ], + [ + 48.1705958, + 11.5644918 + ], + [ + 48.1705829, + 11.564493 + ], + [ + 48.1705428, + 11.5644967 + ], + [ + 48.1703473, + 11.5645163 + ], + [ + 48.1702923, + 11.5645262 + ], + [ + 48.1702219, + 11.5645438 + ], + [ + 48.1699775, + 11.564605 + ], + [ + 48.1691589, + 11.5648328 + ], + [ + 48.1689168, + 11.5648872 + ], + [ + 48.1686921, + 11.5649241 + ], + [ + 48.1684416, + 11.5649325 + ], + [ + 48.1682431, + 11.5649373 + ], + [ + 48.1680669, + 11.5649196 + ], + [ + 48.1680028, + 11.5649117 + ], + [ + 48.1679356, + 11.5649048 + ], + [ + 48.167883, + 11.5649027 + ], + [ + 48.1677797, + 11.5648968 + ], + [ + 48.1675982, + 11.564882 + ], + [ + 48.1664737, + 11.5647644 + ], + [ + 48.1664539, + 11.564763 + ], + [ + 48.1657985, + 11.5646974 + ], + [ + 48.1651825, + 11.5645855 + ], + [ + 48.164674, + 11.5645093 + ], + [ + 48.1646031, + 11.5644913 + ], + [ + 48.1645337, + 11.5644736 + ], + [ + 48.1644622, + 11.5644554 + ], + [ + 48.1644096, + 11.564442 + ], + [ + 48.163566, + 11.5641915 + ], + [ + 48.1634825, + 11.5641667 + ], + [ + 48.1634639, + 11.5641612 + ], + [ + 48.1633932, + 11.56414 + ], + [ + 48.1631727, + 11.5640738 + ], + [ + 48.1621345, + 11.5637608 + ], + [ + 48.1614545, + 11.5635432 + ], + [ + 48.1612206, + 11.5634711 + ], + [ + 48.1611617, + 11.5634554 + ], + [ + 48.161161, + 11.5634553 + ], + [ + 48.1611134, + 11.5634501 + ], + [ + 48.161082, + 11.5634547 + ], + [ + 48.1610673, + 11.5634596 + ], + [ + 48.1610242, + 11.563474 + ], + [ + 48.1609959, + 11.5634957 + ], + [ + 48.1609884, + 11.5635014 + ], + [ + 48.1609675, + 11.5635278 + ], + [ + 48.1609617, + 11.5635348 + ], + [ + 48.1609448, + 11.5635556 + ], + [ + 48.1609287, + 11.5635874 + ], + [ + 48.160908, + 11.5636346 + ], + [ + 48.1608901, + 11.5636914 + ], + [ + 48.1608777, + 11.5638398 + ] + ] + }, + { + "osmId": "142775851", + "name": null, + "lengthMeters": 223.097267505787, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1880541, + 11.5365348 + ], + [ + 48.188009, + 11.5368299 + ], + [ + 48.1879115, + 11.5372664 + ], + [ + 48.1877827, + 11.5376539 + ], + [ + 48.1876329, + 11.5379951 + ], + [ + 48.1874201, + 11.53836 + ], + [ + 48.1872731, + 11.5385511 + ], + [ + 48.1870916, + 11.5387445 + ], + [ + 48.1869263, + 11.538903 + ] + ] + }, + { + "osmId": "142775852", + "name": null, + "lengthMeters": 288.85079151409974, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.151859, + 11.6490965 + ], + [ + 48.1520227, + 11.6490745 + ], + [ + 48.1522037, + 11.6490502 + ], + [ + 48.1525475, + 11.6489984 + ], + [ + 48.1530559, + 11.6489312 + ], + [ + 48.153827, + 11.648821 + ], + [ + 48.1538906, + 11.6488119 + ], + [ + 48.1541037, + 11.6487796 + ], + [ + 48.154445, + 11.6487279 + ] + ] + }, + { + "osmId": "142775853", + "name": null, + "lengthMeters": 324.26832182186115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2043968, + 11.4679324 + ], + [ + 48.2044503, + 11.4677774 + ], + [ + 48.204459, + 11.467752 + ], + [ + 48.2048335, + 11.466656 + ], + [ + 48.2050278, + 11.4660801 + ], + [ + 48.2051335, + 11.4657438 + ], + [ + 48.205192, + 11.465537 + ], + [ + 48.2052717, + 11.4652123 + ], + [ + 48.2053577, + 11.4647805 + ], + [ + 48.2054086, + 11.4644368 + ], + [ + 48.2054434, + 11.4641375 + ], + [ + 48.2054638, + 11.4638931 + ] + ] + }, + { + "osmId": "142775855", + "name": null, + "lengthMeters": 1715.69147856861, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1926401, + 11.5097007 + ], + [ + 48.1926208, + 11.5098099 + ], + [ + 48.1924796, + 11.5106965 + ], + [ + 48.1922785, + 11.5119441 + ], + [ + 48.1920266, + 11.513339 + ], + [ + 48.1916992, + 11.5149382 + ], + [ + 48.1902471, + 11.5214103 + ], + [ + 48.1899259, + 11.5228786 + ], + [ + 48.1897712, + 11.5236604 + ], + [ + 48.1897077, + 11.5240359 + ], + [ + 48.1896515, + 11.5244247 + ], + [ + 48.1895754, + 11.5250109 + ], + [ + 48.1895111, + 11.5256392 + ], + [ + 48.1894627, + 11.5262716 + ], + [ + 48.1893961, + 11.5273501 + ], + [ + 48.1893635, + 11.5278527 + ], + [ + 48.1893263, + 11.5283037 + ], + [ + 48.18925, + 11.529063 + ], + [ + 48.1892106, + 11.5293896 + ], + [ + 48.1891478, + 11.5298168 + ], + [ + 48.1890157, + 11.5305859 + ], + [ + 48.1887785, + 11.5318301 + ], + [ + 48.1887419, + 11.5320289 + ] + ] + }, + { + "osmId": "142775858", + "name": null, + "lengthMeters": 3275.0890852925063, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2034775, + 11.4699732 + ], + [ + 48.2029823, + 11.4711931 + ], + [ + 48.2028613, + 11.471474 + ], + [ + 48.202722, + 11.4717611 + ], + [ + 48.2026057, + 11.4719823 + ], + [ + 48.2024727, + 11.4722071 + ], + [ + 48.2022419, + 11.4725538 + ], + [ + 48.2020944, + 11.4727521 + ], + [ + 48.2019307, + 11.4729474 + ], + [ + 48.2011278, + 11.4738012 + ], + [ + 48.2010054, + 11.4739313 + ], + [ + 48.2003772, + 11.4745984 + ], + [ + 48.2000646, + 11.4749402 + ], + [ + 48.1999422, + 11.4750823 + ], + [ + 48.1998231, + 11.4752318 + ], + [ + 48.199657, + 11.4754607 + ], + [ + 48.1995596, + 11.4756073 + ], + [ + 48.1994548, + 11.4757696 + ], + [ + 48.1993068, + 11.476027 + ], + [ + 48.1992174, + 11.4761988 + ], + [ + 48.199114, + 11.4764173 + ], + [ + 48.1990122, + 11.4766433 + ], + [ + 48.198922, + 11.4768686 + ], + [ + 48.1988361, + 11.4770987 + ], + [ + 48.1986335, + 11.4776773 + ], + [ + 48.1984698, + 11.4781565 + ], + [ + 48.198255, + 11.478791 + ], + [ + 48.1980214, + 11.479469 + ], + [ + 48.197848, + 11.4799947 + ], + [ + 48.1976929, + 11.4805166 + ], + [ + 48.1975745, + 11.4809603 + ], + [ + 48.1974658, + 11.4814109 + ], + [ + 48.1972654, + 11.4823256 + ], + [ + 48.1968335, + 11.4842631 + ], + [ + 48.1965775, + 11.4853982 + ], + [ + 48.1957085, + 11.4893228 + ], + [ + 48.1956118, + 11.4898096 + ], + [ + 48.1955193, + 11.4903294 + ], + [ + 48.1954527, + 11.4907457 + ], + [ + 48.195388, + 11.4911943 + ], + [ + 48.1952247, + 11.4925495 + ], + [ + 48.1951674, + 11.4929953 + ], + [ + 48.1950531, + 11.4937089 + ], + [ + 48.1949556, + 11.4942178 + ], + [ + 48.1948365, + 11.494798 + ], + [ + 48.1941907, + 11.4976814 + ], + [ + 48.1940775, + 11.4981876 + ], + [ + 48.1938201, + 11.4993729 + ], + [ + 48.1937452, + 11.4997807 + ], + [ + 48.193535, + 11.5010587 + ], + [ + 48.1934747, + 11.5014387 + ], + [ + 48.1933376, + 11.5023815 + ], + [ + 48.193267, + 11.5031701 + ], + [ + 48.1932409, + 11.5036927 + ], + [ + 48.1932133, + 11.5048362 + ], + [ + 48.1931909, + 11.5054174 + ], + [ + 48.1931593, + 11.505862 + ], + [ + 48.1931337, + 11.5062059 + ], + [ + 48.1930934, + 11.506612 + ], + [ + 48.1930034, + 11.5073529 + ], + [ + 48.1928708, + 11.508231 + ], + [ + 48.1926401, + 11.5097007 + ] + ] + }, + { + "osmId": "142775859", + "name": null, + "lengthMeters": 2365.9867752913783, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1885399, + 11.5336384 + ], + [ + 48.1886071, + 11.5332064 + ], + [ + 48.1887216, + 11.5326013 + ], + [ + 48.1888423, + 11.532041 + ], + [ + 48.1889672, + 11.5315065 + ], + [ + 48.1890822, + 11.5309672 + ], + [ + 48.1892114, + 11.5303172 + ], + [ + 48.189317, + 11.5296175 + ], + [ + 48.1893732, + 11.5292428 + ], + [ + 48.1895414, + 11.5280914 + ], + [ + 48.1896103, + 11.5276557 + ], + [ + 48.189716, + 11.5271096 + ], + [ + 48.1898308, + 11.5266183 + ], + [ + 48.1899846, + 11.5260734 + ], + [ + 48.1904829, + 11.5245187 + ], + [ + 48.1906313, + 11.5240386 + ], + [ + 48.1907708, + 11.5235221 + ], + [ + 48.1909549, + 11.5227672 + ], + [ + 48.1926335, + 11.5152359 + ], + [ + 48.1932168, + 11.5126446 + ], + [ + 48.1933536, + 11.5120693 + ], + [ + 48.1935119, + 11.5114829 + ], + [ + 48.1936838, + 11.510963 + ], + [ + 48.1938914, + 11.5104481 + ], + [ + 48.194058, + 11.5100639 + ], + [ + 48.1942445, + 11.5097001 + ], + [ + 48.1944852, + 11.5092651 + ], + [ + 48.1947358, + 11.5088271 + ], + [ + 48.1952326, + 11.507932 + ], + [ + 48.195408, + 11.5075524 + ], + [ + 48.1955436, + 11.5072346 + ], + [ + 48.1956771, + 11.5068792 + ], + [ + 48.1957861, + 11.5065584 + ], + [ + 48.1959553, + 11.5059831 + ], + [ + 48.1960722, + 11.5055148 + ], + [ + 48.1963555, + 11.504267 + ], + [ + 48.1963617, + 11.504227 + ] + ] + }, + { + "osmId": "142775860", + "name": null, + "lengthMeters": 496.4904355330098, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1749218, + 11.6453308 + ], + [ + 48.1757018, + 11.6452929 + ], + [ + 48.1758817, + 11.6452771 + ], + [ + 48.1763033, + 11.6452328 + ], + [ + 48.1768906, + 11.6451669 + ], + [ + 48.1771642, + 11.6451356 + ], + [ + 48.1775144, + 11.6450797 + ], + [ + 48.1777982, + 11.6450223 + ], + [ + 48.1780819, + 11.6449551 + ], + [ + 48.1783929, + 11.6448674 + ], + [ + 48.1787038, + 11.6447677 + ], + [ + 48.1793455, + 11.6445473 + ] + ] + }, + { + "osmId": "142775862", + "name": null, + "lengthMeters": 153.9388901979961, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1882606, + 11.5356252 + ], + [ + 48.1882601, + 11.5356658 + ], + [ + 48.1882575, + 11.5362205 + ], + [ + 48.1882653, + 11.5366621 + ], + [ + 48.188302, + 11.5371176 + ], + [ + 48.1883564, + 11.5376925 + ] + ] + }, + { + "osmId": "142788548", + "name": null, + "lengthMeters": 134.4776504782256, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6312155, + 13.2917618 + ], + [ + 52.6310133, + 13.2919676 + ], + [ + 52.630752, + 13.2922372 + ], + [ + 52.630467, + 13.2925484 + ], + [ + 52.6302114, + 13.2928697 + ] + ] + }, + { + "osmId": "142788549", + "name": null, + "lengthMeters": 166.01829730707954, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6313852, + 13.2913496 + ], + [ + 52.6309869, + 13.2919113 + ], + [ + 52.630752, + 13.2922372 + ], + [ + 52.630491, + 13.2925984 + ], + [ + 52.630239, + 13.2929255 + ] + ] + }, + { + "osmId": "142792879", + "name": null, + "lengthMeters": 114.66998972460235, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1753662, + 11.5668011 + ], + [ + 48.1753247, + 11.5667471 + ], + [ + 48.1752993, + 11.5667078 + ], + [ + 48.1752609, + 11.5666513 + ], + [ + 48.1752071, + 11.5665864 + ], + [ + 48.1748175, + 11.5661339 + ], + [ + 48.1747321, + 11.5660387 + ], + [ + 48.1746972, + 11.5659971 + ], + [ + 48.1746641, + 11.5659622 + ], + [ + 48.1746306, + 11.56593 + ], + [ + 48.1745442, + 11.5658787 + ] + ] + }, + { + "osmId": "143384237", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 881.0390070307824, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0741792, + 11.5365915 + ], + [ + 48.0741407, + 11.5361652 + ], + [ + 48.0740905, + 11.5355404 + ], + [ + 48.0740752, + 11.5352546 + ], + [ + 48.0740686, + 11.535072 + ], + [ + 48.0740611, + 11.5348066 + ], + [ + 48.0740605, + 11.5345868 + ], + [ + 48.0740684, + 11.5342789 + ], + [ + 48.0740921, + 11.5339272 + ], + [ + 48.0741292, + 11.5335691 + ], + [ + 48.0741848, + 11.5331505 + ], + [ + 48.0742668, + 11.5327005 + ], + [ + 48.0743383, + 11.5323979 + ], + [ + 48.074429, + 11.5320684 + ], + [ + 48.0745116, + 11.5317866 + ], + [ + 48.0746551, + 11.5313547 + ], + [ + 48.0747557, + 11.5310728 + ], + [ + 48.074803, + 11.5309459 + ], + [ + 48.0749632, + 11.5305526 + ], + [ + 48.0750744, + 11.5303147 + ], + [ + 48.0751947, + 11.5300641 + ], + [ + 48.0754581, + 11.5296004 + ], + [ + 48.0757824, + 11.5291125 + ], + [ + 48.0761279, + 11.528673 + ], + [ + 48.0764755, + 11.5282966 + ], + [ + 48.0766566, + 11.5281257 + ], + [ + 48.0768599, + 11.5279451 + ], + [ + 48.0770366, + 11.5278007 + ], + [ + 48.0771523, + 11.5277149 + ], + [ + 48.0772178, + 11.5276664 + ], + [ + 48.0773508, + 11.5275774 + ], + [ + 48.0774865, + 11.5274973 + ], + [ + 48.07768, + 11.5273956 + ], + [ + 48.0778679, + 11.5273037 + ] + ] + }, + { + "osmId": "143384238", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 870.2907782210431, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0778265, + 11.5271999 + ], + [ + 48.0776066, + 11.5273209 + ], + [ + 48.077482, + 11.5273949 + ], + [ + 48.0773771, + 11.5274609 + ], + [ + 48.0772845, + 11.5275238 + ], + [ + 48.0771931, + 11.5275887 + ], + [ + 48.0771016, + 11.5276576 + ], + [ + 48.0770109, + 11.527726 + ], + [ + 48.0768356, + 11.5278747 + ], + [ + 48.0766331, + 11.5280622 + ], + [ + 48.0764496, + 11.5282446 + ], + [ + 48.0761054, + 11.5286193 + ], + [ + 48.0757536, + 11.5290693 + ], + [ + 48.0754241, + 11.5295607 + ], + [ + 48.0751676, + 11.5300217 + ], + [ + 48.0750471, + 11.5302701 + ], + [ + 48.0749108, + 11.5305615 + ], + [ + 48.0747702, + 11.5309145 + ], + [ + 48.0747229, + 11.5310469 + ], + [ + 48.0746208, + 11.5313302 + ], + [ + 48.0744753, + 11.5317681 + ], + [ + 48.0743906, + 11.5320514 + ], + [ + 48.0743274, + 11.5322812 + ], + [ + 48.0743005, + 11.532379 + ], + [ + 48.0742288, + 11.5326847 + ], + [ + 48.0741447, + 11.5331359 + ], + [ + 48.0740909, + 11.5335539 + ], + [ + 48.0740537, + 11.5339203 + ], + [ + 48.07403, + 11.5342748 + ], + [ + 48.0740209, + 11.5345857 + ], + [ + 48.0740215, + 11.5348088 + ], + [ + 48.0740288, + 11.5350771 + ], + [ + 48.0740356, + 11.5352581 + ], + [ + 48.074051, + 11.5355472 + ], + [ + 48.074098, + 11.5361662 + ], + [ + 48.0741188, + 11.5363926 + ] + ] + }, + { + "osmId": "143384239", + "name": "Isartalbahn", + "lengthMeters": 122.38712436788781, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0744973, + 11.5310832 + ], + [ + 48.0746399, + 11.5309712 + ], + [ + 48.0747872, + 11.5308389 + ], + [ + 48.0748783, + 11.5307463 + ], + [ + 48.0749748, + 11.5306382 + ], + [ + 48.0750503, + 11.5305471 + ], + [ + 48.0751309, + 11.5304382 + ], + [ + 48.0752277, + 11.5303017 + ], + [ + 48.075292, + 11.5302018 + ], + [ + 48.0753639, + 11.5300854 + ] + ] + }, + { + "osmId": "143385007", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 256.56032319715257, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293995, + 10.0690891 + ], + [ + 53.5286889, + 10.0704899 + ], + [ + 53.5285632, + 10.0707398 + ], + [ + 53.5281959, + 10.0714793 + ], + [ + 53.5280028, + 10.0718674 + ], + [ + 53.5279074, + 10.0720497 + ] + ] + }, + { + "osmId": "143385012", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 258.8720938781628, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5294465, + 10.0691517 + ], + [ + 53.5286887, + 10.0706493 + ], + [ + 53.5281506, + 10.0717432 + ], + [ + 53.5281371, + 10.0717706 + ], + [ + 53.52795, + 10.0721518 + ] + ] + }, + { + "osmId": "143413186", + "name": null, + "lengthMeters": 818.5262336965709, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1608777, + 11.5638398 + ], + [ + 48.1608963, + 11.5645399 + ], + [ + 48.1609043, + 11.5648433 + ], + [ + 48.1609089, + 11.56509 + ], + [ + 48.16091, + 11.565152 + ], + [ + 48.1609289, + 11.5655118 + ], + [ + 48.1610367, + 11.56673 + ], + [ + 48.161072, + 11.5671549 + ], + [ + 48.1611553, + 11.5682694 + ], + [ + 48.1611792, + 11.5685225 + ], + [ + 48.1611822, + 11.5685545 + ], + [ + 48.1611911, + 11.5686662 + ], + [ + 48.1611966, + 11.5687352 + ], + [ + 48.161204, + 11.5688523 + ], + [ + 48.1612031, + 11.5689535 + ], + [ + 48.1611993, + 11.5690648 + ], + [ + 48.161184, + 11.5691795 + ], + [ + 48.1611665, + 11.5693024 + ], + [ + 48.1609538, + 11.5702157 + ], + [ + 48.1606764, + 11.5714009 + ], + [ + 48.1605972, + 11.5717538 + ], + [ + 48.1605638, + 11.5719334 + ], + [ + 48.1605466, + 11.5720584 + ], + [ + 48.1605301, + 11.5721834 + ], + [ + 48.1605188, + 11.5723092 + ], + [ + 48.1605128, + 11.5724117 + ], + [ + 48.1605075, + 11.5725642 + ], + [ + 48.1605048, + 11.5732305 + ], + [ + 48.1604988, + 11.5734379 + ], + [ + 48.1604888, + 11.573628 + ], + [ + 48.160473, + 11.5737844 + ], + [ + 48.1604513, + 11.5739482 + ], + [ + 48.1604441, + 11.5740028 + ], + [ + 48.1604366, + 11.5740525 + ], + [ + 48.1604198, + 11.574179 + ], + [ + 48.1603554, + 11.5746645 + ] + ] + }, + { + "osmId": "143413187", + "name": null, + "lengthMeters": 1657.4999317573647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1609062, + 11.5638598 + ], + [ + 48.1609131, + 11.5637513 + ], + [ + 48.1609248, + 11.5636934 + ], + [ + 48.1609336, + 11.5636647 + ], + [ + 48.1609562, + 11.5636189 + ], + [ + 48.1609647, + 11.5636018 + ], + [ + 48.1609718, + 11.5635904 + ], + [ + 48.1609856, + 11.5635697 + ], + [ + 48.1609929, + 11.5635631 + ], + [ + 48.1610141, + 11.563544 + ], + [ + 48.1610167, + 11.5635419 + ], + [ + 48.1610513, + 11.5635146 + ], + [ + 48.1611097, + 11.5634983 + ], + [ + 48.1611562, + 11.5634948 + ], + [ + 48.1611567, + 11.5634952 + ], + [ + 48.161515, + 11.5635995 + ], + [ + 48.1621314, + 11.5637988 + ], + [ + 48.162813, + 11.5639972 + ], + [ + 48.1630401, + 11.5640634 + ], + [ + 48.1633887, + 11.5641749 + ], + [ + 48.1634596, + 11.5641975 + ], + [ + 48.1634784, + 11.5642032 + ], + [ + 48.1635609, + 11.564228 + ], + [ + 48.1637852, + 11.5642959 + ], + [ + 48.1643994, + 11.5644814 + ], + [ + 48.1644478, + 11.5644909 + ], + [ + 48.1645237, + 11.5645058 + ], + [ + 48.164593, + 11.5645193 + ], + [ + 48.1646699, + 11.5645344 + ], + [ + 48.1657989, + 11.5647318 + ], + [ + 48.1664522, + 11.5648021 + ], + [ + 48.1664702, + 11.5648035 + ], + [ + 48.1677783, + 11.5649288 + ], + [ + 48.1678814, + 11.5649366 + ], + [ + 48.1679188, + 11.5649394 + ], + [ + 48.167995, + 11.5649468 + ], + [ + 48.1680651, + 11.5649507 + ], + [ + 48.168243, + 11.5649684 + ], + [ + 48.1684429, + 11.5649615 + ], + [ + 48.1686932, + 11.5649585 + ], + [ + 48.168919, + 11.5649221 + ], + [ + 48.1691642, + 11.564867 + ], + [ + 48.1699798, + 11.5646419 + ], + [ + 48.1701766, + 11.5645975 + ], + [ + 48.1703203, + 11.564565 + ], + [ + 48.1705446, + 11.5645386 + ], + [ + 48.1705961, + 11.5645323 + ], + [ + 48.1705995, + 11.5645323 + ], + [ + 48.1708595, + 11.5645304 + ], + [ + 48.1710525, + 11.5645504 + ], + [ + 48.1712382, + 11.5645894 + ], + [ + 48.1716048, + 11.5647148 + ], + [ + 48.1719842, + 11.5648663 + ], + [ + 48.1721368, + 11.5649285 + ], + [ + 48.1731802, + 11.5653549 + ], + [ + 48.1734345, + 11.5654583 + ], + [ + 48.1736487, + 11.5655483 + ], + [ + 48.1738034, + 11.5656117 + ], + [ + 48.1741678, + 11.5657607 + ], + [ + 48.174259, + 11.5657956 + ], + [ + 48.1743388, + 11.5658157 + ], + [ + 48.1744038, + 11.5658213 + ], + [ + 48.1745476, + 11.5658469 + ], + [ + 48.1746941, + 11.5659009 + ], + [ + 48.1747994, + 11.5659453 + ], + [ + 48.1753223, + 11.5661513 + ], + [ + 48.1754197, + 11.5661992 + ] + ] + }, + { + "osmId": "143558112", + "name": null, + "lengthMeters": 608.4804322537693, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1489023, + 11.5990792 + ], + [ + 48.1488874, + 11.5991514 + ], + [ + 48.1488638, + 11.5992116 + ], + [ + 48.1488428, + 11.5992753 + ], + [ + 48.1488232, + 11.5993474 + ], + [ + 48.1488155, + 11.5993807 + ], + [ + 48.1488097, + 11.5994061 + ], + [ + 48.1488031, + 11.5994477 + ], + [ + 48.148798, + 11.5994841 + ], + [ + 48.1487922, + 11.5995288 + ], + [ + 48.1487884, + 11.5995855 + ], + [ + 48.1487868, + 11.5996458 + ], + [ + 48.1487862, + 11.5997088 + ], + [ + 48.1487934, + 11.6000331 + ], + [ + 48.148796, + 11.6001189 + ], + [ + 48.1488112, + 11.6005767 + ], + [ + 48.1488242, + 11.6009726 + ], + [ + 48.1488272, + 11.6010942 + ], + [ + 48.1488403, + 11.6013951 + ], + [ + 48.1488421, + 11.6014312 + ], + [ + 48.1488443, + 11.6014695 + ], + [ + 48.1488468, + 11.6015069 + ], + [ + 48.1488525, + 11.601568 + ], + [ + 48.14886, + 11.6016476 + ], + [ + 48.1488688, + 11.6017218 + ], + [ + 48.1488771, + 11.6017781 + ], + [ + 48.1489003, + 11.601952 + ], + [ + 48.1489429, + 11.6022238 + ], + [ + 48.148953, + 11.6022778 + ], + [ + 48.1489688, + 11.6023619 + ], + [ + 48.148983, + 11.6024233 + ], + [ + 48.1489937, + 11.6024823 + ], + [ + 48.1490089, + 11.6025708 + ], + [ + 48.1490313, + 11.6027009 + ], + [ + 48.14906, + 11.6028619 + ], + [ + 48.1491476, + 11.6031502 + ], + [ + 48.1491637, + 11.6032039 + ], + [ + 48.1492201, + 11.6033836 + ], + [ + 48.1493114, + 11.6036706 + ], + [ + 48.1493465, + 11.6037913 + ], + [ + 48.1493731, + 11.6038824 + ], + [ + 48.1494358, + 11.6041279 + ], + [ + 48.1494993, + 11.604376 + ], + [ + 48.1495378, + 11.6045289 + ], + [ + 48.1495879, + 11.60473 + ], + [ + 48.149621, + 11.6048547 + ], + [ + 48.149655, + 11.6049768 + ], + [ + 48.1497158, + 11.6051847 + ], + [ + 48.1497963, + 11.6054596 + ], + [ + 48.1498268, + 11.6055561 + ], + [ + 48.1498796, + 11.6057171 + ], + [ + 48.1499315, + 11.605878 + ], + [ + 48.1500326, + 11.606157 + ], + [ + 48.1501077, + 11.6063622 + ], + [ + 48.1501534, + 11.6064802 + ], + [ + 48.1501932, + 11.6065839 + ], + [ + 48.1502385, + 11.6066958 + ], + [ + 48.1502827, + 11.6067938 + ] + ] + }, + { + "osmId": "143586053", + "name": null, + "lengthMeters": 237.25262341207218, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.148946, + 11.6020533 + ], + [ + 48.1489154, + 11.6018599 + ], + [ + 48.148904, + 11.6017745 + ], + [ + 48.1488959, + 11.6017108 + ], + [ + 48.1488886, + 11.6016488 + ], + [ + 48.1488841, + 11.6016077 + ], + [ + 48.148879, + 11.6015653 + ], + [ + 48.1488729, + 11.6015034 + ], + [ + 48.1488683, + 11.6014372 + ], + [ + 48.1488644, + 11.6013708 + ], + [ + 48.1488603, + 11.6012873 + ], + [ + 48.1488534, + 11.6011298 + ], + [ + 48.1488305, + 11.6002412 + ], + [ + 48.1488249, + 11.6000326 + ], + [ + 48.1488212, + 11.5998961 + ], + [ + 48.1488186, + 11.5997254 + ], + [ + 48.1488194, + 11.5996929 + ], + [ + 48.1488209, + 11.5995608 + ], + [ + 48.1488242, + 11.5995137 + ], + [ + 48.1488313, + 11.5994662 + ], + [ + 48.1488384, + 11.5994193 + ], + [ + 48.1488511, + 11.5993649 + ], + [ + 48.148863, + 11.5993135 + ], + [ + 48.148874, + 11.5992748 + ], + [ + 48.1488882, + 11.5992333 + ], + [ + 48.148905, + 11.5991897 + ], + [ + 48.1489236, + 11.5991423 + ], + [ + 48.1490054, + 11.5989337 + ] + ] + }, + { + "osmId": "143586266", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 84.3736466060882, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5498011, + 10.0109978 + ], + [ + 53.5497375, + 10.0112644 + ], + [ + 53.5496819, + 10.0115373 + ], + [ + 53.5496247, + 10.0118862 + ], + [ + 53.549578, + 10.0122164 + ] + ] + }, + { + "osmId": "143586270", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 230.47154219638546, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5494433, + 10.0135429 + ], + [ + 53.549437, + 10.0137749 + ], + [ + 53.5494356, + 10.0140837 + ], + [ + 53.5494444, + 10.0143816 + ], + [ + 53.5494706, + 10.0147452 + ], + [ + 53.5495371, + 10.0152525 + ], + [ + 53.5495529, + 10.0153574 + ], + [ + 53.5496501, + 10.0158858 + ], + [ + 53.5496591, + 10.0159393 + ], + [ + 53.5498943, + 10.0169081 + ] + ] + }, + { + "osmId": "143586271", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 269.7363603768493, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5495109, + 10.0129256 + ], + [ + 53.5495096, + 10.0129708 + ], + [ + 53.5494921, + 10.0133074 + ], + [ + 53.5494741, + 10.0138482 + ], + [ + 53.5494747, + 10.0141039 + ], + [ + 53.5494754, + 10.0141253 + ], + [ + 53.549484, + 10.0143901 + ], + [ + 53.5495097, + 10.0147139 + ], + [ + 53.5495873, + 10.0153064 + ], + [ + 53.5495914, + 10.0153286 + ], + [ + 53.549687, + 10.0158449 + ], + [ + 53.5497723, + 10.0162404 + ], + [ + 53.5499348, + 10.0168822 + ] + ] + }, + { + "osmId": "143586340", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 233.6284876408701, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502743, + 10.0166474 + ], + [ + 53.5501424, + 10.0160538 + ], + [ + 53.5499567, + 10.0151785 + ], + [ + 53.5498868, + 10.014791 + ], + [ + 53.5498372, + 10.0144268 + ], + [ + 53.5498045, + 10.0141292 + ], + [ + 53.549779, + 10.0138276 + ], + [ + 53.5497611, + 10.0133377 + ], + [ + 53.5497622, + 10.0132412 + ] + ] + }, + { + "osmId": "143586346", + "name": "Harburger S-Bahn", + "lengthMeters": 292.56543896103415, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5478799, + 10.022762 + ], + [ + 53.5481971, + 10.0225065 + ], + [ + 53.5484136, + 10.0223376 + ], + [ + 53.5484601, + 10.0223017 + ], + [ + 53.549287, + 10.0216479 + ], + [ + 53.5493935, + 10.0215498 + ], + [ + 53.5495228, + 10.0214236 + ], + [ + 53.5497751, + 10.0210986 + ], + [ + 53.5499376, + 10.0208246 + ], + [ + 53.550098, + 10.0204856 + ] + ] + }, + { + "osmId": "143586348", + "name": "Harburger S-Bahn", + "lengthMeters": 170.33837510793495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.550098, + 10.0204856 + ], + [ + 53.5502391, + 10.0200996 + ], + [ + 53.5503259, + 10.0197671 + ], + [ + 53.5503976, + 10.0194296 + ], + [ + 53.5504384, + 10.0191571 + ], + [ + 53.5504426, + 10.0191199 + ], + [ + 53.5504696, + 10.0188195 + ], + [ + 53.5504824, + 10.0184559 + ], + [ + 53.5504706, + 10.0180397 + ] + ] + }, + { + "osmId": "143600056", + "name": null, + "lengthMeters": 218.79523961908095, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5422141, + 13.3362076 + ], + [ + 52.5421935, + 13.3361762 + ], + [ + 52.5421628, + 13.3361373 + ], + [ + 52.5421328, + 13.3361035 + ], + [ + 52.542101, + 13.3360754 + ], + [ + 52.5420683, + 13.3360544 + ], + [ + 52.5420348, + 13.3360377 + ], + [ + 52.5419856, + 13.3360233 + ], + [ + 52.5419356, + 13.3360194 + ], + [ + 52.5418703, + 13.3360311 + ], + [ + 52.5418622, + 13.3360347 + ], + [ + 52.5418126, + 13.3360582 + ], + [ + 52.5417881, + 13.3360698 + ], + [ + 52.5417512, + 13.3361042 + ], + [ + 52.5417135, + 13.3361531 + ], + [ + 52.541669, + 13.3362188 + ], + [ + 52.5416459, + 13.3362643 + ], + [ + 52.541624, + 13.3363167 + ], + [ + 52.5416049, + 13.3363757 + ], + [ + 52.5415913, + 13.3364327 + ], + [ + 52.541581, + 13.3364922 + ], + [ + 52.5415767, + 13.3365457 + ], + [ + 52.5415744, + 13.3366086 + ], + [ + 52.5415803, + 13.3366768 + ], + [ + 52.5415929, + 13.3367443 + ], + [ + 52.5416048, + 13.3367918 + ], + [ + 52.5416202, + 13.3368352 + ], + [ + 52.5416456, + 13.3368874 + ], + [ + 52.5416745, + 13.33693 + ], + [ + 52.5417004, + 13.3369608 + ], + [ + 52.5417326, + 13.3369906 + ], + [ + 52.5417528, + 13.3370008 + ], + [ + 52.5417663, + 13.3370076 + ], + [ + 52.5417999, + 13.3370175 + ], + [ + 52.5418283, + 13.3370201 + ], + [ + 52.5418559, + 13.3370174 + ], + [ + 52.5418866, + 13.3370087 + ], + [ + 52.5419158, + 13.3369946 + ], + [ + 52.5419502, + 13.3369674 + ], + [ + 52.5420969, + 13.3367585 + ], + [ + 52.5421256, + 13.3367284 + ], + [ + 52.5421467, + 13.3367063 + ], + [ + 52.5421982, + 13.3366723 + ], + [ + 52.5422424, + 13.3366598 + ], + [ + 52.5422895, + 13.3366611 + ], + [ + 52.5423183, + 13.336671 + ], + [ + 52.5423435, + 13.3366867 + ], + [ + 52.5423949, + 13.3367332 + ], + [ + 52.5424429, + 13.3367911 + ] + ] + }, + { + "osmId": "143600066", + "name": null, + "lengthMeters": 740.6304377998047, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5449355, + 13.3415088 + ], + [ + 52.5461393, + 13.3438041 + ], + [ + 52.5461947, + 13.3439101 + ], + [ + 52.5462935, + 13.3440995 + ], + [ + 52.5463508, + 13.344209 + ], + [ + 52.5467123, + 13.3448975 + ], + [ + 52.5475077, + 13.3464118 + ], + [ + 52.547574, + 13.3465386 + ], + [ + 52.5476347, + 13.3466543 + ], + [ + 52.547693, + 13.3467636 + ], + [ + 52.548701, + 13.3486843 + ], + [ + 52.549287, + 13.3498012 + ] + ] + }, + { + "osmId": "143710419", + "name": "Pinneberger S-Bahn", + "lengthMeters": 361.8107373506008, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5665294, + 9.9345079 + ], + [ + 53.5662016, + 9.9346408 + ], + [ + 53.5657856, + 9.9348911 + ], + [ + 53.5655696, + 9.9350688 + ], + [ + 53.5653104, + 9.9353512 + ], + [ + 53.5651581, + 9.9355434 + ], + [ + 53.5648775, + 9.9359439 + ], + [ + 53.5645285, + 9.9365425 + ], + [ + 53.5642423, + 9.9371037 + ], + [ + 53.5641067, + 9.9373932 + ], + [ + 53.5640948, + 9.9374172 + ], + [ + 53.564065, + 9.9374848 + ], + [ + 53.5639761, + 9.9376724 + ] + ] + }, + { + "osmId": "143710430", + "name": "City-S-Bahn", + "lengthMeters": 352.0022674009275, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5652296, + 9.9349691 + ], + [ + 53.5649405, + 9.9350624 + ], + [ + 53.5646405, + 9.9351133 + ], + [ + 53.5643449, + 9.9351181 + ], + [ + 53.564104, + 9.9350868 + ], + [ + 53.563911, + 9.9350337 + ], + [ + 53.5637306, + 9.9349629 + ], + [ + 53.5635386, + 9.9348575 + ], + [ + 53.5633607, + 9.9347422 + ], + [ + 53.5631319, + 9.9345535 + ], + [ + 53.5628876, + 9.9343005 + ], + [ + 53.5626005, + 9.9339528 + ], + [ + 53.5623104, + 9.9335829 + ] + ] + }, + { + "osmId": "143742579", + "name": null, + "lengthMeters": 1520.7097237705714, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495954, + 13.66409 + ], + [ + 52.4494767, + 13.664778 + ], + [ + 52.4491588, + 13.6659704 + ], + [ + 52.4484984, + 13.6683096 + ], + [ + 52.4482569, + 13.6691187 + ], + [ + 52.4477485, + 13.6708218 + ], + [ + 52.4476458, + 13.6711513 + ], + [ + 52.4475699, + 13.671423 + ], + [ + 52.4469721, + 13.6734437 + ], + [ + 52.4469389, + 13.6735578 + ], + [ + 52.4457181, + 13.6776394 + ], + [ + 52.4456494, + 13.6778581 + ], + [ + 52.4454003, + 13.6786863 + ], + [ + 52.4448874, + 13.6804305 + ], + [ + 52.444344, + 13.682288 + ], + [ + 52.4437383, + 13.6843531 + ] + ] + }, + { + "osmId": "143742581", + "name": null, + "lengthMeters": 1885.3010038219609, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4564867, + 13.6360309 + ], + [ + 52.4564631, + 13.6364625 + ], + [ + 52.4564304, + 13.6369746 + ], + [ + 52.4563694, + 13.6379165 + ], + [ + 52.4563155, + 13.6387717 + ], + [ + 52.4562558, + 13.6396365 + ], + [ + 52.4561848, + 13.6404981 + ], + [ + 52.4561094, + 13.6413579 + ], + [ + 52.4560552, + 13.6419956 + ], + [ + 52.4560005, + 13.6426111 + ], + [ + 52.4559787, + 13.6428175 + ], + [ + 52.4559554, + 13.6430227 + ], + [ + 52.4559001, + 13.643379 + ], + [ + 52.455828, + 13.6437724 + ], + [ + 52.4557915, + 13.6439402 + ], + [ + 52.4557542, + 13.6441068 + ], + [ + 52.4556743, + 13.6444362 + ], + [ + 52.4556331, + 13.6445834 + ], + [ + 52.4555904, + 13.6447281 + ], + [ + 52.455501, + 13.6450143 + ], + [ + 52.4554055, + 13.6452865 + ], + [ + 52.4553042, + 13.6455506 + ], + [ + 52.4551295, + 13.6459362 + ], + [ + 52.4550382, + 13.6461253 + ], + [ + 52.4549447, + 13.6463055 + ], + [ + 52.4548398, + 13.6464922 + ], + [ + 52.4547299, + 13.6466676 + ], + [ + 52.4545066, + 13.6470182 + ], + [ + 52.4540037, + 13.6477999 + ], + [ + 52.4538377, + 13.6480702 + ], + [ + 52.4537599, + 13.6482048 + ], + [ + 52.4536778, + 13.6483512 + ], + [ + 52.453572, + 13.6485644 + ], + [ + 52.4534731, + 13.648787 + ], + [ + 52.4533954, + 13.6489787 + ], + [ + 52.4533199, + 13.6491861 + ], + [ + 52.4532482, + 13.6494011 + ], + [ + 52.4531811, + 13.6496173 + ], + [ + 52.453117, + 13.649836 + ], + [ + 52.4524638, + 13.6521704 + ], + [ + 52.4523733, + 13.6524938 + ], + [ + 52.4509274, + 13.6576945 + ], + [ + 52.4501514, + 13.6604509 + ], + [ + 52.4499704, + 13.6610952 + ] + ] + }, + { + "osmId": "143742582", + "name": null, + "lengthMeters": 209.44718368970408, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4499704, + 13.6610952 + ], + [ + 52.4498523, + 13.6615253 + ], + [ + 52.449823, + 13.6616269 + ], + [ + 52.4497969, + 13.6617289 + ], + [ + 52.4497738, + 13.6618319 + ], + [ + 52.4497515, + 13.6619353 + ], + [ + 52.4497281, + 13.6620695 + ], + [ + 52.4497082, + 13.6621994 + ], + [ + 52.4496827, + 13.6623862 + ], + [ + 52.4496794, + 13.6624169 + ], + [ + 52.4496659, + 13.6625384 + ], + [ + 52.4496506, + 13.6627296 + ], + [ + 52.4496401, + 13.6629301 + ], + [ + 52.4496346, + 13.6632135 + ], + [ + 52.4496174, + 13.6635581 + ], + [ + 52.4496111, + 13.6638408 + ], + [ + 52.4495954, + 13.66409 + ] + ] + }, + { + "osmId": "143847359", + "name": null, + "lengthMeters": 292.32004954559704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4403314, + 13.5817013 + ], + [ + 52.4401713, + 13.5817361 + ], + [ + 52.4400324, + 13.58176 + ], + [ + 52.4398143, + 13.5817979 + ], + [ + 52.4397897, + 13.5818018 + ], + [ + 52.4395523, + 13.5818443 + ], + [ + 52.4394396, + 13.5818632 + ], + [ + 52.4392896, + 13.5818893 + ], + [ + 52.4392512, + 13.5818965 + ], + [ + 52.4392032, + 13.581905 + ], + [ + 52.4389457, + 13.5819491 + ], + [ + 52.4388357, + 13.5819707 + ], + [ + 52.438713, + 13.5819995 + ], + [ + 52.4383296, + 13.5821129 + ], + [ + 52.4381213, + 13.5821666 + ], + [ + 52.4377232, + 13.5822263 + ] + ] + }, + { + "osmId": "143847364", + "name": null, + "lengthMeters": 147.72362645636642, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4423764, + 13.582862 + ], + [ + 52.4421267, + 13.5835082 + ], + [ + 52.4416701, + 13.5847079 + ] + ] + }, + { + "osmId": "143847369", + "name": null, + "lengthMeters": 1130.6948221098623, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4342767, + 13.5828714 + ], + [ + 52.4342149, + 13.5828878 + ], + [ + 52.4324057, + 13.5833952 + ], + [ + 52.4319766, + 13.5835193 + ], + [ + 52.4316011, + 13.5836094 + ], + [ + 52.4311549, + 13.5837173 + ], + [ + 52.430704, + 13.5838513 + ], + [ + 52.4299479, + 13.5840557 + ], + [ + 52.4297421, + 13.5841281 + ], + [ + 52.4279327, + 13.585007 + ], + [ + 52.4279176, + 13.5850143 + ], + [ + 52.4276471, + 13.5851454 + ], + [ + 52.4275558, + 13.5851897 + ], + [ + 52.4274137, + 13.5852586 + ], + [ + 52.426979, + 13.5854581 + ], + [ + 52.4248423, + 13.5864837 + ], + [ + 52.4243979, + 13.586698 + ] + ] + }, + { + "osmId": "143847372", + "name": null, + "lengthMeters": 85.73184914649218, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4427847, + 13.5817891 + ], + [ + 52.4427331, + 13.5819266 + ], + [ + 52.4427285, + 13.5819388 + ], + [ + 52.4426963, + 13.5820249 + ], + [ + 52.4426028, + 13.5822693 + ], + [ + 52.4425293, + 13.5824619 + ], + [ + 52.4424977, + 13.5825483 + ], + [ + 52.4424506, + 13.5826714 + ], + [ + 52.4423764, + 13.582862 + ] + ] + }, + { + "osmId": "143866699", + "name": null, + "lengthMeters": 749.4795830449273, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5563438, + 13.3782022 + ], + [ + 52.5563108, + 13.37861 + ], + [ + 52.5562959, + 13.3787928 + ], + [ + 52.5562892, + 13.3788753 + ], + [ + 52.5560999, + 13.3813029 + ], + [ + 52.556097, + 13.3813395 + ], + [ + 52.5560927, + 13.3813944 + ], + [ + 52.5560855, + 13.3814844 + ], + [ + 52.5560804, + 13.3815497 + ], + [ + 52.5560768, + 13.3815946 + ], + [ + 52.5560741, + 13.3816291 + ], + [ + 52.5559704, + 13.3829363 + ], + [ + 52.5559049, + 13.3837609 + ], + [ + 52.5558855, + 13.3840065 + ], + [ + 52.5558813, + 13.3840584 + ], + [ + 52.5558752, + 13.3841341 + ], + [ + 52.5558615, + 13.3843033 + ], + [ + 52.5558535, + 13.3844024 + ], + [ + 52.5558484, + 13.3844662 + ], + [ + 52.5555976, + 13.3876165 + ], + [ + 52.5555232, + 13.3885341 + ], + [ + 52.5554692, + 13.3891946 + ] + ] + }, + { + "osmId": "143866701", + "name": null, + "lengthMeters": 741.0467129034375, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493127, + 13.3497689 + ], + [ + 52.5487253, + 13.3486499 + ], + [ + 52.547717, + 13.3467284 + ], + [ + 52.5476578, + 13.3466217 + ], + [ + 52.5475975, + 13.3465058 + ], + [ + 52.5475313, + 13.3463786 + ], + [ + 52.5464797, + 13.3443768 + ], + [ + 52.546374, + 13.3441758 + ], + [ + 52.546317, + 13.3440669 + ], + [ + 52.546218, + 13.343878 + ], + [ + 52.5461627, + 13.3437724 + ], + [ + 52.5449577, + 13.3414734 + ] + ] + }, + { + "osmId": "143867589", + "name": null, + "lengthMeters": 103.35946298780574, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3543721, + 13.4266745 + ], + [ + 52.3547298, + 13.4280792 + ] + ] + }, + { + "osmId": "143867590", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 213.07332655443759, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3551247, + 13.4299792 + ], + [ + 52.3551496, + 13.4300702 + ], + [ + 52.3552762, + 13.4305239 + ], + [ + 52.3554004, + 13.4309382 + ], + [ + 52.35549, + 13.4312334 + ], + [ + 52.3559818, + 13.4327846 + ] + ] + }, + { + "osmId": "143891040", + "name": null, + "lengthMeters": 323.9533224916066, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260097, + 13.3886063 + ], + [ + 52.5259564, + 13.3888258 + ], + [ + 52.52593, + 13.388941 + ], + [ + 52.5258534, + 13.389275 + ], + [ + 52.525828, + 13.3893778 + ], + [ + 52.5257062, + 13.3898716 + ], + [ + 52.5256971, + 13.3899094 + ], + [ + 52.5256591, + 13.3900667 + ], + [ + 52.5256264, + 13.3901961 + ], + [ + 52.5255833, + 13.3903668 + ], + [ + 52.5255112, + 13.3906552 + ], + [ + 52.5252718, + 13.3916572 + ], + [ + 52.5250979, + 13.3923646 + ], + [ + 52.5250182, + 13.3926858 + ], + [ + 52.5250102, + 13.3927182 + ], + [ + 52.5249863, + 13.3928163 + ], + [ + 52.5249752, + 13.3928603 + ], + [ + 52.5249628, + 13.3929092 + ], + [ + 52.5249278, + 13.3930522 + ] + ] + }, + { + "osmId": "143930340", + "name": null, + "lengthMeters": 96.47708847254992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5340754, + 13.404018 + ], + [ + 52.5341272, + 13.4043529 + ], + [ + 52.5341398, + 13.4044372 + ], + [ + 52.5341441, + 13.404503 + ], + [ + 52.534145, + 13.4045163 + ], + [ + 52.5341413, + 13.4045831 + ], + [ + 52.5341331, + 13.4046391 + ], + [ + 52.5341015, + 13.4048024 + ], + [ + 52.534091, + 13.4048644 + ], + [ + 52.5340844, + 13.4049212 + ], + [ + 52.5340814, + 13.4049569 + ], + [ + 52.5340789, + 13.4049862 + ], + [ + 52.5340798, + 13.4050427 + ], + [ + 52.5340855, + 13.4051121 + ], + [ + 52.5340994, + 13.40518 + ], + [ + 52.534118, + 13.4052323 + ], + [ + 52.5341285, + 13.4052617 + ], + [ + 52.5341367, + 13.4052775 + ], + [ + 52.5341528, + 13.4053086 + ], + [ + 52.534191, + 13.4053516 + ] + ] + }, + { + "osmId": "143931933", + "name": null, + "lengthMeters": 230.12980773311816, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281835, + 13.4025551 + ], + [ + 52.5281287, + 13.4026005 + ], + [ + 52.5280776, + 13.4026429 + ], + [ + 52.5280285, + 13.4026828 + ], + [ + 52.5277119, + 13.4029402 + ], + [ + 52.5274269, + 13.403172 + ], + [ + 52.5273041, + 13.4032608 + ], + [ + 52.5271781, + 13.4033318 + ], + [ + 52.5271247, + 13.4033574 + ], + [ + 52.5270902, + 13.4033691 + ], + [ + 52.5269222, + 13.403426 + ], + [ + 52.526806, + 13.4034632 + ], + [ + 52.526712, + 13.4034933 + ], + [ + 52.5265522, + 13.4035447 + ], + [ + 52.5263932, + 13.4035932 + ], + [ + 52.5262632, + 13.4036349 + ], + [ + 52.5262395, + 13.4036425 + ] + ] + }, + { + "osmId": "143931934", + "name": null, + "lengthMeters": 163.41841687849595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5246711, + 13.4053568 + ], + [ + 52.5246324, + 13.4051914 + ], + [ + 52.5245937, + 13.4050257 + ], + [ + 52.5245732, + 13.4049125 + ], + [ + 52.5245582, + 13.4047749 + ], + [ + 52.5245564, + 13.404659 + ], + [ + 52.5245559, + 13.4046236 + ], + [ + 52.5245637, + 13.4045108 + ], + [ + 52.524568, + 13.4044492 + ], + [ + 52.5245964, + 13.4042016 + ], + [ + 52.5246233, + 13.4039675 + ], + [ + 52.5246587, + 13.4036586 + ], + [ + 52.5246831, + 13.4034568 + ], + [ + 52.5246857, + 13.4034046 + ], + [ + 52.5246857, + 13.4033798 + ], + [ + 52.524684, + 13.4033524 + ], + [ + 52.5246817, + 13.4033293 + ], + [ + 52.5246775, + 13.4033005 + ], + [ + 52.5246695, + 13.4032672 + ], + [ + 52.5246597, + 13.4032336 + ], + [ + 52.5246413, + 13.403192 + ], + [ + 52.5246288, + 13.4031685 + ], + [ + 52.5246133, + 13.4031443 + ], + [ + 52.5245968, + 13.4031227 + ], + [ + 52.5245792, + 13.4031044 + ], + [ + 52.5245535, + 13.403081 + ] + ] + }, + { + "osmId": "143932287", + "name": null, + "lengthMeters": 410.0318491074509, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5463547, + 13.5725623 + ], + [ + 52.5464096, + 13.5727623 + ], + [ + 52.5466803, + 13.5737538 + ], + [ + 52.5469908, + 13.5749113 + ], + [ + 52.5470097, + 13.5749823 + ], + [ + 52.5470274, + 13.5750491 + ], + [ + 52.5470542, + 13.5751504 + ], + [ + 52.5470767, + 13.5752353 + ], + [ + 52.5470949, + 13.5753064 + ], + [ + 52.5472113, + 13.5757539 + ], + [ + 52.5474173, + 13.5765414 + ], + [ + 52.5476687, + 13.5775065 + ], + [ + 52.547756, + 13.5778377 + ], + [ + 52.5478308, + 13.578119 + ] + ] + }, + { + "osmId": "144014228", + "name": null, + "lengthMeters": 102.21401906643393, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191201, + 13.3922432 + ], + [ + 52.5191287, + 13.3923816 + ], + [ + 52.5191395, + 13.3925516 + ], + [ + 52.5191717, + 13.3930451 + ], + [ + 52.5191957, + 13.3933983 + ], + [ + 52.5192178, + 13.3937453 + ] + ] + }, + { + "osmId": "144014230", + "name": null, + "lengthMeters": 78.87061341101838, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5192663, + 13.3942484 + ], + [ + 52.5192658, + 13.3942637 + ], + [ + 52.5192648, + 13.3943004 + ], + [ + 52.5192625, + 13.3943625 + ], + [ + 52.519262, + 13.3943944 + ], + [ + 52.519262, + 13.3944254 + ], + [ + 52.5192627, + 13.3944622 + ], + [ + 52.5192769, + 13.3946394 + ], + [ + 52.5192821, + 13.3946912 + ], + [ + 52.5192866, + 13.3947314 + ], + [ + 52.5192915, + 13.3947667 + ], + [ + 52.5192979, + 13.3948052 + ], + [ + 52.5193044, + 13.3948374 + ], + [ + 52.5193122, + 13.3948755 + ], + [ + 52.5193222, + 13.3949198 + ], + [ + 52.5194258, + 13.3953708 + ] + ] + }, + { + "osmId": "144014233", + "name": null, + "lengthMeters": 125.99640085188788, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191354, + 13.3922198 + ], + [ + 52.5191408, + 13.3922591 + ], + [ + 52.5191475, + 13.3923079 + ], + [ + 52.5191563, + 13.3923789 + ], + [ + 52.5191606, + 13.3924205 + ], + [ + 52.5191663, + 13.3924871 + ], + [ + 52.5191725, + 13.3925715 + ], + [ + 52.519205, + 13.3930883 + ], + [ + 52.5192122, + 13.3932006 + ], + [ + 52.5192316, + 13.3935013 + ], + [ + 52.5192445, + 13.3937023 + ], + [ + 52.5192536, + 13.3938207 + ], + [ + 52.5192702, + 13.3940678 + ] + ] + }, + { + "osmId": "144014237", + "name": null, + "lengthMeters": 125.23095615345926, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5188199, + 13.3902285 + ], + [ + 52.5188284, + 13.3902605 + ], + [ + 52.518839, + 13.3902945 + ], + [ + 52.5188512, + 13.3903295 + ], + [ + 52.5188691, + 13.3903727 + ], + [ + 52.5189032, + 13.3904503 + ], + [ + 52.5189229, + 13.3904928 + ], + [ + 52.5189385, + 13.3905277 + ], + [ + 52.518954, + 13.390564 + ], + [ + 52.5189688, + 13.3906009 + ], + [ + 52.5189855, + 13.3906489 + ], + [ + 52.5189999, + 13.3906944 + ], + [ + 52.5190099, + 13.3907344 + ], + [ + 52.5190185, + 13.3907784 + ], + [ + 52.5190255, + 13.3908262 + ], + [ + 52.5190303, + 13.3908677 + ], + [ + 52.5190344, + 13.3909138 + ], + [ + 52.5190377, + 13.390963 + ], + [ + 52.5190894, + 13.391762 + ], + [ + 52.5191032, + 13.3919779 + ] + ] + }, + { + "osmId": "144015555", + "name": null, + "lengthMeters": 103.02215519040271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5324562, + 13.397077 + ], + [ + 52.5324696, + 13.3974236 + ], + [ + 52.5324846, + 13.3977682 + ], + [ + 52.5324996, + 13.3980339 + ], + [ + 52.5325063, + 13.3981248 + ], + [ + 52.5325511, + 13.3985909 + ] + ] + }, + { + "osmId": "144015556", + "name": null, + "lengthMeters": 418.8481140460726, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318534, + 13.3909697 + ], + [ + 52.531913, + 13.3915305 + ], + [ + 52.5319758, + 13.3921216 + ], + [ + 52.5320383, + 13.3927096 + ], + [ + 52.5320444, + 13.3927672 + ], + [ + 52.5321234, + 13.3934768 + ], + [ + 52.5321881, + 13.3940503 + ], + [ + 52.5322026, + 13.3941918 + ], + [ + 52.5322689, + 13.3947562 + ], + [ + 52.532391, + 13.3958399 + ], + [ + 52.5324017, + 13.3959655 + ], + [ + 52.5324137, + 13.3960993 + ], + [ + 52.5324183, + 13.3961649 + ], + [ + 52.5324562, + 13.397077 + ] + ] + }, + { + "osmId": "144019120", + "name": null, + "lengthMeters": 321.4476278150884, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627662, + 13.512472 + ], + [ + 52.462905, + 13.5118589 + ], + [ + 52.4629524, + 13.5116552 + ], + [ + 52.4630318, + 13.5112936 + ], + [ + 52.4632135, + 13.5104868 + ], + [ + 52.4633579, + 13.5098523 + ], + [ + 52.4634338, + 13.5095114 + ], + [ + 52.463482, + 13.5092954 + ], + [ + 52.4635935, + 13.5087924 + ], + [ + 52.4636102, + 13.5087306 + ], + [ + 52.4636219, + 13.5086863 + ], + [ + 52.463626, + 13.5086735 + ], + [ + 52.4636379, + 13.5086357 + ], + [ + 52.463655, + 13.5085949 + ], + [ + 52.4636601, + 13.5085851 + ], + [ + 52.4636787, + 13.5085489 + ], + [ + 52.4636968, + 13.5085173 + ], + [ + 52.4637103, + 13.5084983 + ], + [ + 52.4637256, + 13.5084773 + ], + [ + 52.4637505, + 13.508447 + ], + [ + 52.4637679, + 13.5084272 + ], + [ + 52.4638133, + 13.5083851 + ], + [ + 52.4638165, + 13.5083821 + ], + [ + 52.4638534, + 13.508353 + ], + [ + 52.4639591, + 13.5082751 + ] + ] + }, + { + "osmId": "144019637", + "name": null, + "lengthMeters": 1902.523857220972, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1390692, + 11.5141277 + ], + [ + 48.1390694, + 11.5140574 + ], + [ + 48.1390674, + 11.5138017 + ], + [ + 48.139069, + 11.5136895 + ], + [ + 48.1390718, + 11.5135722 + ], + [ + 48.1390791, + 11.5134008 + ], + [ + 48.1390799, + 11.5133886 + ], + [ + 48.1390923, + 11.5131481 + ], + [ + 48.1391026, + 11.512995 + ], + [ + 48.1391167, + 11.5128398 + ], + [ + 48.1391506, + 11.5125307 + ], + [ + 48.1391868, + 11.5122627 + ], + [ + 48.1392256, + 11.5120071 + ], + [ + 48.1392903, + 11.5115599 + ], + [ + 48.1393262, + 11.5113146 + ], + [ + 48.1393536, + 11.5111247 + ], + [ + 48.1393863, + 11.5109054 + ], + [ + 48.1394687, + 11.5103236 + ], + [ + 48.1395145, + 11.5099751 + ], + [ + 48.1395449, + 11.5096429 + ], + [ + 48.1395689, + 11.509275 + ], + [ + 48.1395878, + 11.5089151 + ], + [ + 48.1396229, + 11.5082761 + ], + [ + 48.1396883, + 11.5070214 + ], + [ + 48.1396942, + 11.5068759 + ], + [ + 48.1397089, + 11.5064901 + ], + [ + 48.139723, + 11.5060588 + ], + [ + 48.1397221, + 11.5049898 + ], + [ + 48.1397206, + 11.5044075 + ], + [ + 48.1397138, + 11.5039771 + ], + [ + 48.1397104, + 11.5035456 + ], + [ + 48.1397102, + 11.50351 + ], + [ + 48.1397089, + 11.5032926 + ], + [ + 48.1397079, + 11.5031855 + ], + [ + 48.1397081, + 11.5031294 + ], + [ + 48.1397083, + 11.5030914 + ], + [ + 48.1397081, + 11.5030253 + ], + [ + 48.139708, + 11.5029284 + ], + [ + 48.1397103, + 11.5027361 + ], + [ + 48.139712, + 11.5026002 + ], + [ + 48.1397137, + 11.5024375 + ], + [ + 48.1397166, + 11.5022579 + ], + [ + 48.1397264, + 11.5016844 + ], + [ + 48.1397166, + 11.5012486 + ], + [ + 48.1397099, + 11.5009518 + ], + [ + 48.1396991, + 11.5006133 + ], + [ + 48.1396916, + 11.5003781 + ], + [ + 48.1396858, + 11.5002251 + ], + [ + 48.1396679, + 11.4996365 + ], + [ + 48.1396557, + 11.4992561 + ], + [ + 48.1396503, + 11.4989687 + ], + [ + 48.1396566, + 11.4983857 + ], + [ + 48.1396803, + 11.4979242 + ], + [ + 48.1396929, + 11.4977664 + ], + [ + 48.1397023, + 11.4976476 + ], + [ + 48.139727, + 11.4973837 + ], + [ + 48.139755, + 11.497117 + ], + [ + 48.1398096, + 11.4965849 + ], + [ + 48.1398488, + 11.4961907 + ], + [ + 48.1398642, + 11.4960404 + ], + [ + 48.1398798, + 11.4958933 + ], + [ + 48.139933, + 11.4954253 + ], + [ + 48.1400291, + 11.4945963 + ], + [ + 48.1401155, + 11.4938466 + ], + [ + 48.1402479, + 11.4926975 + ], + [ + 48.1402625, + 11.4925709 + ], + [ + 48.1403535, + 11.4918365 + ], + [ + 48.1404632, + 11.4911698 + ], + [ + 48.1407466, + 11.4896347 + ], + [ + 48.14079, + 11.4893988 + ], + [ + 48.1408313, + 11.4891803 + ], + [ + 48.140846, + 11.4890965 + ], + [ + 48.1409062, + 11.4887646 + ] + ] + }, + { + "osmId": "144077980", + "name": null, + "lengthMeters": 1109.1630510645853, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4471582, + 13.6153144 + ], + [ + 52.4472351, + 13.6149947 + ], + [ + 52.4476268, + 13.613485 + ], + [ + 52.4479044, + 13.6124341 + ], + [ + 52.4480142, + 13.6120789 + ], + [ + 52.4485096, + 13.6107255 + ], + [ + 52.4487883, + 13.6099758 + ], + [ + 52.4489214, + 13.6095875 + ], + [ + 52.4490544, + 13.6091864 + ], + [ + 52.4492553, + 13.6085751 + ], + [ + 52.449661, + 13.6073038 + ], + [ + 52.4502332, + 13.6055878 + ], + [ + 52.4504691, + 13.6048394 + ], + [ + 52.45073, + 13.6040019 + ], + [ + 52.4510839, + 13.6028705 + ], + [ + 52.4514081, + 13.6018368 + ], + [ + 52.4514523, + 13.6017151 + ], + [ + 52.4515129, + 13.6015803 + ], + [ + 52.4515854, + 13.6014521 + ], + [ + 52.4516465, + 13.6013537 + ], + [ + 52.4516839, + 13.601298 + ], + [ + 52.4517212, + 13.6012274 + ], + [ + 52.4517425, + 13.6011819 + ], + [ + 52.4517701, + 13.6011159 + ], + [ + 52.4517801, + 13.601088 + ], + [ + 52.4518084, + 13.6009876 + ], + [ + 52.4518328, + 13.600901 + ] + ] + }, + { + "osmId": "144077982", + "name": null, + "lengthMeters": 1108.7749306453604, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.451807, + 13.6008874 + ], + [ + 52.4517788, + 13.6009835 + ], + [ + 52.4517617, + 13.6010418 + ], + [ + 52.4517457, + 13.6010865 + ], + [ + 52.4517263, + 13.601141 + ], + [ + 52.4517083, + 13.601183 + ], + [ + 52.451694, + 13.6012162 + ], + [ + 52.4516865, + 13.6012324 + ], + [ + 52.4516641, + 13.6012767 + ], + [ + 52.4515197, + 13.6015097 + ], + [ + 52.4514496, + 13.6016578 + ], + [ + 52.4513882, + 13.6018109 + ], + [ + 52.4510586, + 13.6028589 + ], + [ + 52.4507036, + 13.603976 + ], + [ + 52.4504441, + 13.6048155 + ], + [ + 52.4502063, + 13.6055724 + ], + [ + 52.4496418, + 13.6072739 + ], + [ + 52.4490623, + 13.6090983 + ], + [ + 52.4490377, + 13.6091712 + ], + [ + 52.4489065, + 13.6095696 + ], + [ + 52.4487675, + 13.6099558 + ], + [ + 52.448484, + 13.6107078 + ], + [ + 52.4479893, + 13.6120603 + ], + [ + 52.4478806, + 13.6124121 + ], + [ + 52.447603, + 13.6134694 + ], + [ + 52.4471321, + 13.6152959 + ] + ] + }, + { + "osmId": "144077983", + "name": null, + "lengthMeters": 81.49073138998943, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4520261, + 13.5997403 + ], + [ + 52.4519807, + 13.5999394 + ], + [ + 52.4519531, + 13.6000785 + ], + [ + 52.4519098, + 13.6003183 + ], + [ + 52.4518544, + 13.6006253 + ], + [ + 52.4518112, + 13.6008648 + ], + [ + 52.451807, + 13.6008874 + ] + ] + }, + { + "osmId": "144077985", + "name": null, + "lengthMeters": 596.1629844001319, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4537925, + 13.6111926 + ], + [ + 52.4534209, + 13.609552 + ], + [ + 52.4532397, + 13.6087538 + ], + [ + 52.4532123, + 13.6086322 + ], + [ + 52.453131, + 13.6082703 + ], + [ + 52.4530552, + 13.6079334 + ], + [ + 52.4527349, + 13.6065074 + ], + [ + 52.4522898, + 13.6045381 + ], + [ + 52.4519309, + 13.6029423 + ] + ] + }, + { + "osmId": "144134805", + "name": null, + "lengthMeters": 1545.485004971306, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6313852, + 13.2913496 + ], + [ + 52.6302114, + 13.2928697 + ], + [ + 52.6301792, + 13.2929072 + ], + [ + 52.6300668, + 13.2930381 + ], + [ + 52.6294536, + 13.2937938 + ], + [ + 52.6291741, + 13.2941259 + ], + [ + 52.6279424, + 13.2955927 + ], + [ + 52.6271009, + 13.2966254 + ], + [ + 52.6259444, + 13.2981045 + ], + [ + 52.6258634, + 13.2982072 + ], + [ + 52.6258004, + 13.2982836 + ], + [ + 52.6244188, + 13.2999592 + ], + [ + 52.6239028, + 13.3005855 + ], + [ + 52.6233117, + 13.3012617 + ], + [ + 52.622811, + 13.3018042 + ], + [ + 52.6215531, + 13.3031125 + ], + [ + 52.6208269, + 13.3039283 + ], + [ + 52.6201216, + 13.3047464 + ] + ] + }, + { + "osmId": "144161852", + "name": null, + "lengthMeters": 630.593554741972, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.567649, + 13.3883317 + ], + [ + 52.5684616, + 13.3868702 + ], + [ + 52.5691491, + 13.3856361 + ], + [ + 52.5714799, + 13.3814519 + ] + ] + }, + { + "osmId": "144267194", + "name": null, + "lengthMeters": 275.2066439556753, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133346, + 11.6497027 + ], + [ + 48.1332625, + 11.6459964 + ] + ] + }, + { + "osmId": "144267195", + "name": null, + "lengthMeters": 108.5608275857759, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332687, + 11.649618 + ], + [ + 48.1332353, + 11.648156 + ] + ] + }, + { + "osmId": "144320469", + "name": null, + "lengthMeters": 140.39693198181632, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.133032, + 11.6102724 + ], + [ + 48.1332576, + 11.6103091 + ], + [ + 48.1333508, + 11.6103194 + ], + [ + 48.133584, + 11.610345 + ], + [ + 48.1336764, + 11.6103503 + ], + [ + 48.1338312, + 11.6103567 + ], + [ + 48.133944, + 11.6103493 + ], + [ + 48.134054, + 11.6103333 + ], + [ + 48.1342886, + 11.6102763 + ] + ] + }, + { + "osmId": "144343056", + "name": null, + "lengthMeters": 298.6090927209458, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336556, + 11.64716 + ], + [ + 48.1336538, + 11.647329 + ], + [ + 48.1336967, + 11.6489507 + ], + [ + 48.133684, + 11.6493182 + ], + [ + 48.1336716, + 11.6496749 + ], + [ + 48.1336728, + 11.6499821 + ], + [ + 48.1336737, + 11.6502352 + ], + [ + 48.1336878, + 11.6505101 + ], + [ + 48.1337244, + 11.6508624 + ], + [ + 48.1337701, + 11.6511689 + ] + ] + }, + { + "osmId": "144343057", + "name": null, + "lengthMeters": 385.6991171790257, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334891, + 11.6458002 + ], + [ + 48.1335266, + 11.6465555 + ], + [ + 48.1335643, + 11.6478413 + ], + [ + 48.1336055, + 11.6489625 + ], + [ + 48.1336216, + 11.6494372 + ], + [ + 48.1336394, + 11.6503508 + ], + [ + 48.1336609, + 11.6506539 + ], + [ + 48.1337034, + 11.6509837 + ] + ] + }, + { + "osmId": "144343058", + "name": null, + "lengthMeters": 110.41286369102932, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343043, + 11.6522253 + ], + [ + 48.1341626, + 11.6518049 + ], + [ + 48.1339957, + 11.6513443 + ], + [ + 48.1338685, + 11.6508899 + ] + ] + }, + { + "osmId": "144343062", + "name": null, + "lengthMeters": 379.99192785990556, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1382183, + 11.6515052 + ], + [ + 48.1379856, + 11.6515454 + ], + [ + 48.1376885, + 11.6515561 + ], + [ + 48.1374871, + 11.6515388 + ], + [ + 48.1372787, + 11.6514998 + ], + [ + 48.1369896, + 11.651418 + ], + [ + 48.1367774, + 11.6513309 + ], + [ + 48.1365734, + 11.651225 + ], + [ + 48.1363442, + 11.6510707 + ], + [ + 48.1361473, + 11.6509232 + ], + [ + 48.1359433, + 11.6507462 + ], + [ + 48.1357517, + 11.650561 + ], + [ + 48.13546, + 11.6501695 + ], + [ + 48.1351843, + 11.6497001 + ] + ] + }, + { + "osmId": "144343063", + "name": null, + "lengthMeters": 377.14796090533696, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335625, + 11.6505772 + ], + [ + 48.1335267, + 11.6488418 + ], + [ + 48.1334801, + 11.6468827 + ], + [ + 48.1334551, + 11.6461837 + ], + [ + 48.1334247, + 11.6454997 + ] + ] + }, + { + "osmId": "144343066", + "name": null, + "lengthMeters": 628.1884678698866, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342208, + 11.6447099 + ], + [ + 48.1342857, + 11.6444188 + ], + [ + 48.1343931, + 11.6438153 + ], + [ + 48.1345184, + 11.6426217 + ], + [ + 48.134812, + 11.6397437 + ], + [ + 48.1348907, + 11.6390088 + ], + [ + 48.1349158, + 11.6386735 + ], + [ + 48.1349176, + 11.6383034 + ], + [ + 48.1348335, + 11.6363454 + ] + ] + }, + { + "osmId": "144343068", + "name": null, + "lengthMeters": 174.314805936547, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336716, + 11.6496749 + ], + [ + 48.1336538, + 11.6490269 + ], + [ + 48.133627, + 11.6477716 + ], + [ + 48.1336538, + 11.647329 + ] + ] + }, + { + "osmId": "144343070", + "name": null, + "lengthMeters": 519.1986387350836, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347135, + 11.6383463 + ], + [ + 48.1346955, + 11.6387476 + ], + [ + 48.1345614, + 11.6399878 + ], + [ + 48.1343197, + 11.6423535 + ], + [ + 48.1341156, + 11.6443936 + ], + [ + 48.1340208, + 11.6452637 + ] + ] + }, + { + "osmId": "144343071", + "name": null, + "lengthMeters": 670.0840682451229, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133738, + 11.6463094 + ], + [ + 48.1337459, + 11.6462587 + ], + [ + 48.1338471, + 11.6456365 + ], + [ + 48.1339688, + 11.6445331 + ], + [ + 48.1341586, + 11.6426834 + ], + [ + 48.1345684, + 11.6386429 + ], + [ + 48.1346401, + 11.6379922 + ], + [ + 48.1346884, + 11.6373957 + ] + ] + }, + { + "osmId": "144343075", + "name": null, + "lengthMeters": 610.3082416422519, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338632, + 11.645783 + ], + [ + 48.1339169, + 11.6454193 + ], + [ + 48.13413, + 11.6433567 + ], + [ + 48.1344039, + 11.6406879 + ], + [ + 48.1346151, + 11.6386816 + ], + [ + 48.1346795, + 11.6379842 + ], + [ + 48.1346973, + 11.6376562 + ] + ] + }, + { + "osmId": "144343079", + "name": null, + "lengthMeters": 256.92594899210275, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336538, + 11.6490269 + ], + [ + 48.133684, + 11.6493182 + ], + [ + 48.1337181, + 11.6496639 + ], + [ + 48.1337772, + 11.6502623 + ], + [ + 48.1338149, + 11.6506094 + ], + [ + 48.1338685, + 11.6508899 + ], + [ + 48.1339438, + 11.6513121 + ], + [ + 48.1340816, + 11.6517976 + ], + [ + 48.1342891, + 11.6523165 + ] + ] + }, + { + "osmId": "144343082", + "name": null, + "lengthMeters": 617.6778821656933, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347117, + 11.6380794 + ], + [ + 48.1346633, + 11.6386081 + ], + [ + 48.1345005, + 11.6402104 + ], + [ + 48.1342212, + 11.6429372 + ], + [ + 48.1340011, + 11.6450545 + ], + [ + 48.1339539, + 11.6453722 + ], + [ + 48.1338632, + 11.645783 + ], + [ + 48.1337628, + 11.6462695 + ] + ] + }, + { + "osmId": "144343084", + "name": null, + "lengthMeters": 591.894710082012, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1341505, + 11.6448118 + ], + [ + 48.1342123, + 11.644223 + ], + [ + 48.1343734, + 11.6426432 + ], + [ + 48.1345882, + 11.6405323 + ], + [ + 48.1347225, + 11.6392475 + ], + [ + 48.1347708, + 11.6387835 + ], + [ + 48.1347816, + 11.6384455 + ], + [ + 48.1347511, + 11.637783 + ], + [ + 48.1347547, + 11.6373619 + ], + [ + 48.1347761, + 11.6369102 + ] + ] + }, + { + "osmId": "144343087", + "name": null, + "lengthMeters": 645.9724144833967, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339437, + 11.6456274 + ], + [ + 48.1340208, + 11.6452637 + ], + [ + 48.1341139, + 11.6447192 + ], + [ + 48.1342231, + 11.6436866 + ], + [ + 48.1344951, + 11.6410795 + ], + [ + 48.1346669, + 11.6393564 + ], + [ + 48.1347135, + 11.6388666 + ], + [ + 48.1347243, + 11.6386735 + ], + [ + 48.1347135, + 11.6383463 + ], + [ + 48.1347117, + 11.6380794 + ], + [ + 48.1346973, + 11.6376562 + ], + [ + 48.1346884, + 11.6373957 + ], + [ + 48.1346759, + 11.6370293 + ] + ] + }, + { + "osmId": "144343090", + "name": null, + "lengthMeters": 100.20470911296793, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133763, + 11.6507703 + ], + [ + 48.1337057, + 11.6503331 + ], + [ + 48.1336728, + 11.6499821 + ], + [ + 48.1336216, + 11.6494372 + ] + ] + }, + { + "osmId": "144343092", + "name": null, + "lengthMeters": 299.5967916531049, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336967, + 11.6489507 + ], + [ + 48.1337181, + 11.6496639 + ], + [ + 48.1337396, + 11.6503803 + ], + [ + 48.133763, + 11.6507703 + ], + [ + 48.1338184, + 11.651126 + ], + [ + 48.1339384, + 11.6515857 + ], + [ + 48.1341025, + 11.6520392 + ], + [ + 48.1344138, + 11.6527375 + ] + ] + }, + { + "osmId": "144387926", + "name": null, + "lengthMeters": 103.16939175159845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5457293, + 9.9719127 + ], + [ + 53.5457962, + 9.9716372 + ], + [ + 53.5458436, + 9.9714516 + ], + [ + 53.5458741, + 9.9713482 + ], + [ + 53.5459322, + 9.9711594 + ], + [ + 53.5459848, + 9.9710259 + ], + [ + 53.5460404, + 9.9709082 + ], + [ + 53.546101, + 9.9707935 + ], + [ + 53.546165, + 9.9706949 + ], + [ + 53.5461976, + 9.9706548 + ], + [ + 53.5462256, + 9.9706249 + ] + ] + }, + { + "osmId": "144529199", + "name": null, + "lengthMeters": 373.48805832090545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293973, + 13.3790041 + ], + [ + 52.529341, + 13.3788162 + ], + [ + 52.5292874, + 13.3786221 + ], + [ + 52.5291928, + 13.3783008 + ], + [ + 52.5291699, + 13.3782255 + ], + [ + 52.5290551, + 13.3778392 + ], + [ + 52.5290081, + 13.3776814 + ], + [ + 52.5286147, + 13.3763477 + ], + [ + 52.5285754, + 13.376218 + ], + [ + 52.5285143, + 13.3760085 + ], + [ + 52.5284927, + 13.3759335 + ], + [ + 52.5282469, + 13.3751035 + ], + [ + 52.5281834, + 13.3748986 + ], + [ + 52.5281414, + 13.3747728 + ], + [ + 52.5280958, + 13.3746509 + ], + [ + 52.528039, + 13.3744898 + ], + [ + 52.5279973, + 13.3743588 + ], + [ + 52.5279757, + 13.37429 + ], + [ + 52.5279043, + 13.37406 + ] + ] + }, + { + "osmId": "144871143", + "name": null, + "lengthMeters": 149.1845472128601, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5346527, + 10.0246933 + ], + [ + 53.5349285, + 10.0248976 + ], + [ + 53.5349734, + 10.0249295 + ], + [ + 53.535076, + 10.0249984 + ], + [ + 53.535262, + 10.0251166 + ], + [ + 53.5353569, + 10.0251726 + ], + [ + 53.5354957, + 10.0252475 + ], + [ + 53.5356351, + 10.0253191 + ], + [ + 53.5357387, + 10.025368 + ], + [ + 53.5358245, + 10.0254075 + ], + [ + 53.5358701, + 10.0254275 + ], + [ + 53.5359151, + 10.0254473 + ] + ] + }, + { + "osmId": "145046308", + "name": null, + "lengthMeters": 211.5659517268328, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363634, + 13.3455324 + ], + [ + 52.5364801, + 13.3463296 + ], + [ + 52.5365622, + 13.3468816 + ], + [ + 52.536628, + 13.34733 + ], + [ + 52.5366859, + 13.3477987 + ], + [ + 52.5367046, + 13.3480027 + ], + [ + 52.5367214, + 13.3482087 + ], + [ + 52.5367444, + 13.348593 + ] + ] + }, + { + "osmId": "145046901", + "name": null, + "lengthMeters": 1013.1982218595256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6016704, + 13.4315739 + ], + [ + 52.6020283, + 13.4313576 + ], + [ + 52.6020902, + 13.4313213 + ], + [ + 52.6021523, + 13.4312944 + ], + [ + 52.6022133, + 13.4312777 + ], + [ + 52.6022542, + 13.4312715 + ], + [ + 52.6023189, + 13.4312712 + ], + [ + 52.6023549, + 13.4312763 + ], + [ + 52.6024178, + 13.4312931 + ], + [ + 52.6025599, + 13.4313416 + ], + [ + 52.6028785, + 13.4314557 + ], + [ + 52.603009, + 13.4315024 + ], + [ + 52.6031606, + 13.4315784 + ], + [ + 52.6032273, + 13.4316118 + ], + [ + 52.6035986, + 13.431778 + ], + [ + 52.6038412, + 13.4318935 + ], + [ + 52.6043071, + 13.4321183 + ], + [ + 52.6044769, + 13.4322133 + ], + [ + 52.6048772, + 13.4324352 + ], + [ + 52.6049828, + 13.4324937 + ], + [ + 52.6051417, + 13.4325851 + ], + [ + 52.6052362, + 13.4326377 + ], + [ + 52.6053914, + 13.4327243 + ], + [ + 52.6056251, + 13.4328564 + ], + [ + 52.6057389, + 13.4329238 + ], + [ + 52.6059943, + 13.4330622 + ], + [ + 52.6062667, + 13.43321 + ], + [ + 52.6063328, + 13.4332504 + ], + [ + 52.6064024, + 13.4333116 + ], + [ + 52.606469, + 13.4333744 + ], + [ + 52.6065156, + 13.4334186 + ], + [ + 52.6065889, + 13.4334839 + ], + [ + 52.606656, + 13.4335283 + ], + [ + 52.6067024, + 13.4335555 + ], + [ + 52.6067747, + 13.4335835 + ], + [ + 52.6071368, + 13.4336533 + ], + [ + 52.6074075, + 13.4337057 + ], + [ + 52.6074383, + 13.4337047 + ], + [ + 52.6074743, + 13.4337025 + ], + [ + 52.6075243, + 13.4336831 + ], + [ + 52.6075555, + 13.433663 + ], + [ + 52.6075846, + 13.4336387 + ], + [ + 52.6076142, + 13.4336065 + ], + [ + 52.6076426, + 13.4335638 + ], + [ + 52.6076553, + 13.43354 + ], + [ + 52.6076723, + 13.4335071 + ], + [ + 52.6076897, + 13.4334667 + ], + [ + 52.6076992, + 13.4334388 + ], + [ + 52.6077091, + 13.4334077 + ], + [ + 52.6078982, + 13.4323018 + ], + [ + 52.6079251, + 13.4321403 + ], + [ + 52.607952, + 13.4319807 + ], + [ + 52.6079627, + 13.431911 + ], + [ + 52.6079709, + 13.4318476 + ], + [ + 52.6079772, + 13.4317943 + ], + [ + 52.6079821, + 13.4317383 + ], + [ + 52.6079876, + 13.43168 + ], + [ + 52.6079908, + 13.4316211 + ], + [ + 52.6079996, + 13.4314139 + ], + [ + 52.6080076, + 13.43123 + ], + [ + 52.6080143, + 13.4311556 + ], + [ + 52.6080244, + 13.4310799 + ], + [ + 52.6080371, + 13.4310071 + ], + [ + 52.6080534, + 13.4309305 + ], + [ + 52.6080739, + 13.4308552 + ], + [ + 52.608099, + 13.4307774 + ], + [ + 52.6081252, + 13.4307117 + ], + [ + 52.6081535, + 13.4306489 + ], + [ + 52.6082048, + 13.4305464 + ], + [ + 52.608258, + 13.4304436 + ], + [ + 52.6082863, + 13.4303838 + ], + [ + 52.6083109, + 13.4303252 + ], + [ + 52.6083311, + 13.4302654 + ], + [ + 52.608348, + 13.4302043 + ], + [ + 52.6083567, + 13.4301622 + ], + [ + 52.6083638, + 13.430123 + ], + [ + 52.6083728, + 13.4300581 + ], + [ + 52.6083796, + 13.429986 + ], + [ + 52.6083807, + 13.4299043 + ], + [ + 52.6083775, + 13.4298339 + ], + [ + 52.6083737, + 13.4297972 + ], + [ + 52.6083678, + 13.4297569 + ], + [ + 52.608356, + 13.4296847 + ], + [ + 52.6083391, + 13.4296083 + ], + [ + 52.6082903, + 13.4293964 + ], + [ + 52.6082404, + 13.429168 + ] + ] + }, + { + "osmId": "145046909", + "name": null, + "lengthMeters": 344.47545628068275, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6050842, + 13.4153023 + ], + [ + 52.6050647, + 13.4151822 + ], + [ + 52.6050584, + 13.4150719 + ], + [ + 52.6050592, + 13.4149714 + ], + [ + 52.6050699, + 13.4148612 + ], + [ + 52.6050952, + 13.414748 + ], + [ + 52.6051265, + 13.4146525 + ], + [ + 52.6051445, + 13.4146053 + ], + [ + 52.6052158, + 13.414477 + ], + [ + 52.6053007, + 13.4143851 + ], + [ + 52.6054152, + 13.4142866 + ], + [ + 52.6055397, + 13.4141907 + ], + [ + 52.6056066, + 13.4141255 + ], + [ + 52.6056627, + 13.4140606 + ], + [ + 52.6057082, + 13.4139704 + ], + [ + 52.6057227, + 13.413922 + ], + [ + 52.6057367, + 13.4138677 + ], + [ + 52.6057453, + 13.4138083 + ], + [ + 52.6057488, + 13.4137507 + ], + [ + 52.6057463, + 13.413658 + ], + [ + 52.6057375, + 13.4135971 + ], + [ + 52.6057239, + 13.413543 + ], + [ + 52.6057051, + 13.4134906 + ], + [ + 52.6056833, + 13.4134474 + ], + [ + 52.6056538, + 13.4134024 + ], + [ + 52.6056193, + 13.4133675 + ], + [ + 52.6055609, + 13.4133243 + ], + [ + 52.6054954, + 13.4133083 + ], + [ + 52.6054433, + 13.4133108 + ], + [ + 52.6053965, + 13.4133264 + ], + [ + 52.6053358, + 13.4133799 + ], + [ + 52.6052813, + 13.4134612 + ], + [ + 52.6052437, + 13.413554 + ], + [ + 52.6052106, + 13.4137407 + ], + [ + 52.6051599, + 13.4140905 + ], + [ + 52.6051021, + 13.4144688 + ], + [ + 52.6050597, + 13.4147359 + ], + [ + 52.6050352, + 13.4149325 + ], + [ + 52.6050307, + 13.4150234 + ], + [ + 52.6050302, + 13.4151129 + ], + [ + 52.6050418, + 13.4152132 + ], + [ + 52.6050605, + 13.4153148 + ] + ] + }, + { + "osmId": "145127607", + "name": null, + "lengthMeters": 945.2711355887491, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6082144, + 13.4291814 + ], + [ + 52.608242, + 13.4293062 + ], + [ + 52.6082645, + 13.4294121 + ], + [ + 52.6083141, + 13.4296279 + ], + [ + 52.6083286, + 13.4296958 + ], + [ + 52.6083449, + 13.4298035 + ], + [ + 52.6083531, + 13.4298873 + ], + [ + 52.608354, + 13.4299632 + ], + [ + 52.6083497, + 13.4300198 + ], + [ + 52.6083442, + 13.4300728 + ], + [ + 52.6083376, + 13.4301181 + ], + [ + 52.6083315, + 13.4301504 + ], + [ + 52.6083254, + 13.4301795 + ], + [ + 52.6083134, + 13.4302239 + ], + [ + 52.608301, + 13.4302641 + ], + [ + 52.6082791, + 13.4303216 + ], + [ + 52.6081635, + 13.4305613 + ], + [ + 52.6081295, + 13.4306265 + ], + [ + 52.6080947, + 13.430706 + ], + [ + 52.6080636, + 13.4307935 + ], + [ + 52.6080385, + 13.4308776 + ], + [ + 52.6080191, + 13.4309571 + ], + [ + 52.6080035, + 13.4310341 + ], + [ + 52.6079886, + 13.4311363 + ], + [ + 52.6079823, + 13.4312059 + ], + [ + 52.6079784, + 13.4312731 + ], + [ + 52.6079754, + 13.4313437 + ], + [ + 52.607972, + 13.431415 + ], + [ + 52.607962, + 13.4316602 + ], + [ + 52.6079491, + 13.4317923 + ], + [ + 52.6079367, + 13.431905 + ], + [ + 52.6079198, + 13.4320132 + ], + [ + 52.6078575, + 13.4323783 + ], + [ + 52.6076944, + 13.4333342 + ], + [ + 52.6076883, + 13.4333648 + ], + [ + 52.6076696, + 13.4334332 + ], + [ + 52.6076564, + 13.4334639 + ], + [ + 52.6076346, + 13.4335089 + ], + [ + 52.6076042, + 13.4335573 + ], + [ + 52.6075784, + 13.4335878 + ], + [ + 52.6075519, + 13.433614 + ], + [ + 52.6075059, + 13.4336436 + ], + [ + 52.6074804, + 13.4336525 + ], + [ + 52.6074427, + 13.4336595 + ], + [ + 52.6074106, + 13.4336594 + ], + [ + 52.6071269, + 13.433607 + ], + [ + 52.6067776, + 13.4335384 + ], + [ + 52.6067074, + 13.433513 + ], + [ + 52.60666, + 13.4334874 + ], + [ + 52.6065985, + 13.4334422 + ], + [ + 52.6065386, + 13.4333879 + ], + [ + 52.606425, + 13.4332783 + ], + [ + 52.6063219, + 13.4331909 + ], + [ + 52.6062449, + 13.4331475 + ], + [ + 52.6059926, + 13.4330037 + ], + [ + 52.6059116, + 13.4329576 + ], + [ + 52.6057481, + 13.43287 + ], + [ + 52.6051837, + 13.4325335 + ], + [ + 52.6051582, + 13.4325199 + ], + [ + 52.6049959, + 13.4324345 + ], + [ + 52.6043972, + 13.4321146 + ], + [ + 52.604253, + 13.4320376 + ], + [ + 52.6035836, + 13.4316944 + ], + [ + 52.6031715, + 13.4315154 + ], + [ + 52.6029855, + 13.4314475 + ], + [ + 52.6028799, + 13.4314161 + ], + [ + 52.6025776, + 13.4313005 + ], + [ + 52.6024187, + 13.4312471 + ], + [ + 52.6023537, + 13.4312312 + ], + [ + 52.6023267, + 13.4312272 + ], + [ + 52.6022513, + 13.431225 + ], + [ + 52.6022103, + 13.4312303 + ], + [ + 52.6021996, + 13.4312319 + ] + ] + }, + { + "osmId": "145127608", + "name": null, + "lengthMeters": 946.5836533223256, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6082404, + 13.429168 + ], + [ + 52.6080936, + 13.4285114 + ], + [ + 52.6080546, + 13.4283401 + ], + [ + 52.6080334, + 13.4282428 + ], + [ + 52.6078861, + 13.4274965 + ], + [ + 52.6077225, + 13.4266486 + ], + [ + 52.6076959, + 13.4265062 + ], + [ + 52.6076206, + 13.4261038 + ], + [ + 52.6075867, + 13.4259224 + ], + [ + 52.6073954, + 13.4249175 + ], + [ + 52.6072965, + 13.4243941 + ], + [ + 52.6071465, + 13.4235947 + ], + [ + 52.6071094, + 13.4234058 + ], + [ + 52.6070339, + 13.4230486 + ], + [ + 52.6066935, + 13.4215364 + ], + [ + 52.6065109, + 13.4207273 + ], + [ + 52.6064633, + 13.4205562 + ], + [ + 52.606412, + 13.4204166 + ], + [ + 52.6063468, + 13.4202739 + ], + [ + 52.6063255, + 13.4202339 + ], + [ + 52.6062878, + 13.4201634 + ], + [ + 52.6062398, + 13.4200736 + ], + [ + 52.6061872, + 13.4199478 + ], + [ + 52.6061731, + 13.4199141 + ], + [ + 52.6061463, + 13.4198361 + ], + [ + 52.6061294, + 13.419782 + ], + [ + 52.6060912, + 13.4196326 + ], + [ + 52.6059135, + 13.4188658 + ], + [ + 52.6058789, + 13.4187181 + ], + [ + 52.6058082, + 13.4184092 + ], + [ + 52.6055401, + 13.4172588 + ], + [ + 52.605499, + 13.4170817 + ], + [ + 52.6054513, + 13.4168764 + ], + [ + 52.6052662, + 13.4160793 + ] + ] + }, + { + "osmId": "145175519", + "name": null, + "lengthMeters": 212.23157056273047, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.555651, + 9.9798123 + ], + [ + 53.5555923, + 9.9800984 + ], + [ + 53.5555511, + 9.9803683 + ], + [ + 53.5555211, + 9.9806255 + ], + [ + 53.5554974, + 9.9809345 + ], + [ + 53.5554888, + 9.9811415 + ], + [ + 53.5554835, + 9.9814232 + ], + [ + 53.5554963, + 9.9817346 + ], + [ + 53.5555501, + 9.9826411 + ], + [ + 53.555566, + 9.9829855 + ] + ] + }, + { + "osmId": "145175521", + "name": null, + "lengthMeters": 775.2245149014526, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5610134, + 9.9754862 + ], + [ + 53.561617, + 9.9754033 + ], + [ + 53.5623647, + 9.9753085 + ], + [ + 53.563055, + 9.9752107 + ], + [ + 53.5634564, + 9.9751392 + ], + [ + 53.5636204, + 9.9751045 + ], + [ + 53.5638, + 9.975047 + ], + [ + 53.5639986, + 9.9749628 + ], + [ + 53.564202, + 9.9748624 + ], + [ + 53.5644402, + 9.9747394 + ], + [ + 53.5646962, + 9.9745794 + ], + [ + 53.5649098, + 9.9744149 + ], + [ + 53.565051, + 9.9743091 + ], + [ + 53.5653227, + 9.974071 + ], + [ + 53.565541, + 9.9738539 + ], + [ + 53.5657929, + 9.9735741 + ], + [ + 53.5659164, + 9.9734183 + ], + [ + 53.5661217, + 9.9731546 + ], + [ + 53.5663637, + 9.9727979 + ], + [ + 53.5665742, + 9.9724501 + ], + [ + 53.56675, + 9.9721268 + ], + [ + 53.5668988, + 9.9718347 + ], + [ + 53.5670925, + 9.9714078 + ], + [ + 53.5671794, + 9.9712127 + ] + ] + }, + { + "osmId": "145246687", + "name": null, + "lengthMeters": 323.92694155782846, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1333601, + 11.6458726 + ], + [ + 48.1333937, + 11.6465802 + ], + [ + 48.1334049, + 11.6471385 + ], + [ + 48.1334152, + 11.6475592 + ], + [ + 48.1334259, + 11.6479669 + ], + [ + 48.1334438, + 11.6484497 + ], + [ + 48.133455, + 11.6493942 + ], + [ + 48.1334761, + 11.6502334 + ] + ] + }, + { + "osmId": "145246688", + "name": null, + "lengthMeters": 332.76829331556775, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133455, + 11.6502338 + ], + [ + 48.133421, + 11.6493057 + ], + [ + 48.1333942, + 11.6483562 + ], + [ + 48.1333709, + 11.6474282 + ], + [ + 48.1333512, + 11.6466987 + ], + [ + 48.1333387, + 11.6462213 + ], + [ + 48.1333065, + 11.6457561 + ] + ] + }, + { + "osmId": "145246689", + "name": null, + "lengthMeters": 350.3479293691941, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335087, + 11.6502338 + ], + [ + 48.1334872, + 11.6495203 + ], + [ + 48.1334765, + 11.6490214 + ], + [ + 48.1334604, + 11.6481631 + ], + [ + 48.1334532, + 11.6476186 + ], + [ + 48.1334532, + 11.6471921 + ], + [ + 48.1334353, + 11.6466612 + ], + [ + 48.1333885, + 11.6455171 + ] + ] + }, + { + "osmId": "145246691", + "name": null, + "lengthMeters": 317.9457311120043, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1333065, + 11.6457561 + ], + [ + 48.1333154, + 11.646932 + ], + [ + 48.1333405, + 11.6477125 + ], + [ + 48.1333633, + 11.6487367 + ], + [ + 48.1333977, + 11.6498582 + ], + [ + 48.1334074, + 11.6500371 + ] + ] + }, + { + "osmId": "145246692", + "name": null, + "lengthMeters": 692.7370744223763, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337459, + 11.6462587 + ], + [ + 48.1340637, + 11.6431529 + ], + [ + 48.1342248, + 11.6415972 + ], + [ + 48.1343912, + 11.6400737 + ], + [ + 48.1345183, + 11.6387809 + ], + [ + 48.1346096, + 11.6379118 + ], + [ + 48.1346759, + 11.6370293 + ] + ] + }, + { + "osmId": "145511465", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 592.8634435559209, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5596901, + 9.9007009 + ], + [ + 53.5597042, + 9.9011262 + ], + [ + 53.5597268, + 9.9018062 + ], + [ + 53.5598373, + 9.9051405 + ], + [ + 53.5599, + 9.9070324 + ], + [ + 53.5599364, + 9.908271 + ], + [ + 53.5599503, + 9.9087267 + ], + [ + 53.5599555, + 9.9088973 + ], + [ + 53.5599697, + 9.9096646 + ] + ] + }, + { + "osmId": "145689811", + "name": null, + "lengthMeters": 366.2842617118365, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5598335, + 9.9356659 + ], + [ + 53.560863, + 9.9356937 + ], + [ + 53.5612917, + 9.9356896 + ], + [ + 53.5614421, + 9.9356882 + ], + [ + 53.5616667, + 9.9356517 + ], + [ + 53.5619057, + 9.9355943 + ], + [ + 53.5620052, + 9.9355589 + ], + [ + 53.5620746, + 9.9355342 + ], + [ + 53.5623712, + 9.935387 + ], + [ + 53.5625446, + 9.9352858 + ], + [ + 53.5630424, + 9.9348807 + ] + ] + }, + { + "osmId": "145689821", + "name": "Verbindungsbahn", + "lengthMeters": 278.27296690131686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.557664, + 9.9356751 + ], + [ + 53.5580309, + 9.9356832 + ], + [ + 53.5583116, + 9.9356594 + ], + [ + 53.5588656, + 9.9355926 + ], + [ + 53.5588765, + 9.9355913 + ], + [ + 53.5594414, + 9.9355231 + ], + [ + 53.5597542, + 9.9355361 + ], + [ + 53.5599075, + 9.9355424 + ], + [ + 53.5601624, + 9.9355752 + ] + ] + }, + { + "osmId": "146160668", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 818.6602808573076, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6099492, + 10.0246643 + ], + [ + 53.6099928, + 10.0249346 + ], + [ + 53.610029, + 10.0251625 + ], + [ + 53.6101073, + 10.0259802 + ], + [ + 53.6101229, + 10.0263669 + ], + [ + 53.6101202, + 10.0268862 + ], + [ + 53.6100806, + 10.0274519 + ], + [ + 53.6100078, + 10.0280787 + ], + [ + 53.609913, + 10.0285772 + ], + [ + 53.6098329, + 10.0289676 + ], + [ + 53.6097492, + 10.0292479 + ], + [ + 53.6097251, + 10.0293238 + ], + [ + 53.609634, + 10.029611 + ], + [ + 53.6095664, + 10.0297861 + ], + [ + 53.6094964, + 10.0299677 + ], + [ + 53.6093991, + 10.0301967 + ], + [ + 53.6092216, + 10.0305646 + ], + [ + 53.609044, + 10.0308876 + ], + [ + 53.6089917, + 10.0309653 + ], + [ + 53.6087703, + 10.0312944 + ], + [ + 53.6084503, + 10.0316744 + ], + [ + 53.6082413, + 10.0318854 + ], + [ + 53.6079227, + 10.0321279 + ], + [ + 53.6076508, + 10.0322879 + ], + [ + 53.6073842, + 10.0324083 + ], + [ + 53.6072682, + 10.0324457 + ], + [ + 53.6065468, + 10.0326784 + ], + [ + 53.6061656, + 10.0328016 + ], + [ + 53.6059619, + 10.0328669 + ] + ] + }, + { + "osmId": "146186143", + "name": null, + "lengthMeters": 3521.856789475123, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420243, + 11.5566311 + ], + [ + 48.1420323, + 11.5565319 + ], + [ + 48.1420367, + 11.5564497 + ], + [ + 48.1420439, + 11.556323 + ], + [ + 48.1420475, + 11.5562753 + ], + [ + 48.1420518, + 11.5562144 + ], + [ + 48.1420676, + 11.5560689 + ], + [ + 48.142074, + 11.5560113 + ], + [ + 48.1420804, + 11.5559537 + ], + [ + 48.1421356, + 11.5556044 + ], + [ + 48.1422415, + 11.5550044 + ], + [ + 48.1423626, + 11.554411 + ], + [ + 48.142409, + 11.5541847 + ], + [ + 48.1424339, + 11.5540681 + ], + [ + 48.142445, + 11.5540183 + ], + [ + 48.1426812, + 11.5528573 + ], + [ + 48.1427236, + 11.5526489 + ], + [ + 48.1430393, + 11.5511995 + ], + [ + 48.1431018, + 11.5509126 + ], + [ + 48.1431353, + 11.550759 + ], + [ + 48.1431771, + 11.5505675 + ], + [ + 48.1432185, + 11.5504053 + ], + [ + 48.1432815, + 11.5501108 + ], + [ + 48.1435184, + 11.5490265 + ], + [ + 48.1435515, + 11.5488742 + ], + [ + 48.1435697, + 11.5487827 + ], + [ + 48.1436021, + 11.5486291 + ], + [ + 48.1436997, + 11.5481605 + ], + [ + 48.1439174, + 11.547132 + ], + [ + 48.1442111, + 11.5457571 + ], + [ + 48.1442406, + 11.5456175 + ], + [ + 48.1442786, + 11.5454386 + ], + [ + 48.144311, + 11.5452864 + ], + [ + 48.144672, + 11.543597 + ], + [ + 48.1446885, + 11.5435214 + ], + [ + 48.1448149, + 11.5429259 + ], + [ + 48.1448712, + 11.5426605 + ], + [ + 48.1449703, + 11.5422231 + ], + [ + 48.1450646, + 11.5418282 + ], + [ + 48.1451177, + 11.5416154 + ], + [ + 48.1451531, + 11.5414534 + ], + [ + 48.1451872, + 11.5412916 + ], + [ + 48.1451975, + 11.5412481 + ], + [ + 48.1452069, + 11.5412081 + ], + [ + 48.1452164, + 11.5411651 + ], + [ + 48.1452793, + 11.5409062 + ], + [ + 48.1454326, + 11.540295 + ], + [ + 48.1455587, + 11.5398039 + ], + [ + 48.1458468, + 11.538657 + ], + [ + 48.1459748, + 11.5381342 + ], + [ + 48.1460361, + 11.5378145 + ], + [ + 48.1460868, + 11.5375242 + ], + [ + 48.1461375, + 11.5371993 + ], + [ + 48.1461764, + 11.5369151 + ], + [ + 48.146218, + 11.536576 + ], + [ + 48.146241, + 11.5363467 + ], + [ + 48.1462469, + 11.5362881 + ], + [ + 48.1462554, + 11.5361895 + ], + [ + 48.1462982, + 11.5356313 + ], + [ + 48.1463085, + 11.535526 + ], + [ + 48.1463128, + 11.5354715 + ], + [ + 48.1463471, + 11.535036 + ], + [ + 48.1463695, + 11.5347972 + ], + [ + 48.146399, + 11.5345655 + ], + [ + 48.146533, + 11.5336278 + ], + [ + 48.1465761, + 11.5333393 + ], + [ + 48.1466178, + 11.5330573 + ], + [ + 48.1466605, + 11.5327841 + ], + [ + 48.1467055, + 11.5325161 + ], + [ + 48.1467436, + 11.5322747 + ], + [ + 48.1467859, + 11.5320384 + ], + [ + 48.1468667, + 11.531583 + ], + [ + 48.1469117, + 11.5313524 + ], + [ + 48.146981, + 11.5309861 + ], + [ + 48.1470336, + 11.5307213 + ], + [ + 48.1471308, + 11.5302645 + ], + [ + 48.1471985, + 11.5299305 + ], + [ + 48.1472726, + 11.5295853 + ], + [ + 48.1473198, + 11.5293766 + ], + [ + 48.1473514, + 11.529237 + ], + [ + 48.1473827, + 11.5291079 + ], + [ + 48.1474496, + 11.5288361 + ], + [ + 48.1475204, + 11.5285623 + ], + [ + 48.1475682, + 11.5283951 + ], + [ + 48.147632, + 11.5281766 + ], + [ + 48.1477336, + 11.5278636 + ], + [ + 48.1477519, + 11.5278071 + ], + [ + 48.1477716, + 11.5277472 + ], + [ + 48.1478216, + 11.5276045 + ], + [ + 48.1478572, + 11.5275029 + ], + [ + 48.1484372, + 11.5260724 + ], + [ + 48.1486995, + 11.5253951 + ], + [ + 48.1488984, + 11.5248668 + ], + [ + 48.1490919, + 11.5243306 + ], + [ + 48.1491471, + 11.5241696 + ], + [ + 48.1494735, + 11.5232291 + ], + [ + 48.1496645, + 11.522584 + ], + [ + 48.1498062, + 11.5220266 + ], + [ + 48.1498597, + 11.5217726 + ], + [ + 48.1499121, + 11.5215174 + ], + [ + 48.1500132, + 11.5209434 + ], + [ + 48.1500939, + 11.520482 + ], + [ + 48.150113, + 11.5203736 + ], + [ + 48.1501301, + 11.5202763 + ], + [ + 48.1501434, + 11.5201995 + ], + [ + 48.1501565, + 11.5201239 + ], + [ + 48.150163, + 11.5200863 + ], + [ + 48.1502038, + 11.5198499 + ], + [ + 48.1502458, + 11.5196337 + ], + [ + 48.1503111, + 11.5193315 + ], + [ + 48.1503924, + 11.5190036 + ], + [ + 48.1504653, + 11.5187443 + ], + [ + 48.1505316, + 11.5185252 + ], + [ + 48.1505804, + 11.5183727 + ], + [ + 48.150679, + 11.5180868 + ], + [ + 48.1508072, + 11.5177602 + ], + [ + 48.1509513, + 11.5174318 + ], + [ + 48.1511135, + 11.5170945 + ], + [ + 48.1512584, + 11.5168182 + ], + [ + 48.151454, + 11.5164953 + ], + [ + 48.1516472, + 11.5161931 + ], + [ + 48.1518808, + 11.5158554 + ], + [ + 48.1520528, + 11.5156046 + ], + [ + 48.1522831, + 11.5152732 + ], + [ + 48.1523566, + 11.5151664 + ], + [ + 48.1530551, + 11.5141518 + ], + [ + 48.1536666, + 11.5132673 + ] + ] + }, + { + "osmId": "146483401", + "name": null, + "lengthMeters": 482.9578247165034, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.539489, + 10.033046 + ], + [ + 53.5394319, + 10.0332632 + ], + [ + 53.5391086, + 10.0344871 + ], + [ + 53.5390348, + 10.0347665 + ], + [ + 53.53902, + 10.0348226 + ], + [ + 53.5388177, + 10.0356064 + ], + [ + 53.5387397, + 10.0358959 + ], + [ + 53.5385503, + 10.0366001 + ], + [ + 53.5382834, + 10.0376223 + ], + [ + 53.5381901, + 10.0379833 + ], + [ + 53.5380548, + 10.0384816 + ], + [ + 53.5380278, + 10.0385888 + ], + [ + 53.5378957, + 10.0391141 + ], + [ + 53.5377518, + 10.0397435 + ] + ] + }, + { + "osmId": "146483402", + "name": null, + "lengthMeters": 205.71579393911787, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5377333, + 10.0395242 + ], + [ + 53.5377439, + 10.0394704 + ], + [ + 53.5377606, + 10.0393965 + ], + [ + 53.5379577, + 10.0386125 + ], + [ + 53.5381797, + 10.0377808 + ], + [ + 53.5382066, + 10.0376817 + ], + [ + 53.5382318, + 10.037589 + ], + [ + 53.5382472, + 10.0375249 + ], + [ + 53.5384352, + 10.0368021 + ], + [ + 53.538471, + 10.0366699 + ] + ] + }, + { + "osmId": "146483403", + "name": null, + "lengthMeters": 419.91965398298686, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5394084, + 10.0329807 + ], + [ + 53.5391849, + 10.0338243 + ], + [ + 53.5388168, + 10.0351965 + ], + [ + 53.5387167, + 10.0355683 + ], + [ + 53.5386747, + 10.0357315 + ], + [ + 53.5386287, + 10.0359147 + ], + [ + 53.538348, + 10.0369692 + ], + [ + 53.5383055, + 10.0371324 + ], + [ + 53.5381937, + 10.0375615 + ], + [ + 53.5381092, + 10.0378861 + ], + [ + 53.5378681, + 10.0387826 + ] + ] + }, + { + "osmId": "146483407", + "name": null, + "lengthMeters": 997.233217752458, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5377518, + 10.0397435 + ], + [ + 53.5376542, + 10.0402266 + ], + [ + 53.5375043, + 10.0410231 + ], + [ + 53.5374927, + 10.0410912 + ], + [ + 53.5372774, + 10.0423504 + ], + [ + 53.5371629, + 10.043004 + ], + [ + 53.5369646, + 10.0441354 + ], + [ + 53.5367949, + 10.0451782 + ], + [ + 53.5366308, + 10.0462585 + ], + [ + 53.5365157, + 10.0470637 + ], + [ + 53.5364114, + 10.0478957 + ], + [ + 53.5363077, + 10.0488009 + ], + [ + 53.5362149, + 10.0497168 + ], + [ + 53.5361633, + 10.0502082 + ], + [ + 53.5360969, + 10.0508228 + ], + [ + 53.5360422, + 10.0512252 + ], + [ + 53.5360356, + 10.0512702 + ], + [ + 53.5359918, + 10.0515431 + ], + [ + 53.5358902, + 10.0520987 + ], + [ + 53.5357856, + 10.0525841 + ], + [ + 53.535719, + 10.0528558 + ], + [ + 53.535643, + 10.053166 + ], + [ + 53.5355186, + 10.0536224 + ], + [ + 53.5353358, + 10.0542313 + ] + ] + }, + { + "osmId": "146606781", + "name": "Nulldamm", + "lengthMeters": 1059.5703195100955, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7380876, + 9.8643587 + ], + [ + 53.7380825, + 9.8643157 + ], + [ + 53.7380789, + 9.864285 + ], + [ + 53.7380893, + 9.8641988 + ], + [ + 53.7389434, + 9.8633403 + ], + [ + 53.7389728, + 9.86331 + ], + [ + 53.7390426, + 9.8632416 + ], + [ + 53.7401586, + 9.862149 + ], + [ + 53.7412822, + 9.861001 + ], + [ + 53.7416124, + 9.8606636 + ], + [ + 53.7422303, + 9.8600238 + ], + [ + 53.7433497, + 9.8588885 + ], + [ + 53.743485, + 9.8587481 + ], + [ + 53.7435894, + 9.8586398 + ], + [ + 53.7446103, + 9.8575804 + ], + [ + 53.744741, + 9.8574448 + ], + [ + 53.7457804, + 9.8563662 + ], + [ + 53.7458414, + 9.8562627 + ], + [ + 53.7458812, + 9.856182 + ], + [ + 53.745897, + 9.8560533 + ], + [ + 53.7458923, + 9.8559326 + ], + [ + 53.7458423, + 9.8557493 + ], + [ + 53.7458213, + 9.8556988 + ] + ] + }, + { + "osmId": "146606789", + "name": null, + "lengthMeters": 256.3598095516561, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7414589, + 9.8704323 + ], + [ + 53.7414627, + 9.8705471 + ], + [ + 53.7414517, + 9.870632 + ], + [ + 53.7413862, + 9.8709047 + ], + [ + 53.7410803, + 9.8721751 + ], + [ + 53.7409985, + 9.8724986 + ], + [ + 53.740986, + 9.8725824 + ], + [ + 53.7409717, + 9.8726488 + ], + [ + 53.7409455, + 9.8727474 + ], + [ + 53.7409332, + 9.8728175 + ], + [ + 53.7409297, + 9.8728994 + ], + [ + 53.7408836, + 9.8730498 + ], + [ + 53.7408535, + 9.8731175 + ], + [ + 53.740823, + 9.8731564 + ], + [ + 53.740794, + 9.8731765 + ], + [ + 53.7407551, + 9.8731705 + ], + [ + 53.7407131, + 9.873147 + ], + [ + 53.740679, + 9.8731139 + ], + [ + 53.7403363, + 9.8727599 + ] + ] + }, + { + "osmId": "146632921", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 116.03837923138758, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6034886, + 10.000736 + ], + [ + 53.6037374, + 10.0018641 + ], + [ + 53.6038522, + 10.0023845 + ] + ] + }, + { + "osmId": "146702839", + "name": null, + "lengthMeters": 231.00637247052438, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5908936, + 9.94481 + ], + [ + 53.5911138, + 9.9446924 + ], + [ + 53.5913269, + 9.9445856 + ], + [ + 53.5914734, + 9.9445204 + ], + [ + 53.5916225, + 9.94446 + ], + [ + 53.5917731, + 9.9444068 + ], + [ + 53.592177, + 9.9442741 + ], + [ + 53.5928114, + 9.9440705 + ], + [ + 53.5929176, + 9.9440365 + ] + ] + }, + { + "osmId": "146825237", + "name": null, + "lengthMeters": 125.00669499208404, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0764032, + 11.657901 + ], + [ + 48.0764084, + 11.6580371 + ], + [ + 48.0764054, + 11.6582142 + ], + [ + 48.0763891, + 11.6583996 + ], + [ + 48.0763706, + 11.6585358 + ], + [ + 48.0763406, + 11.6587053 + ], + [ + 48.0763037, + 11.6588486 + ], + [ + 48.076237, + 11.6590111 + ], + [ + 48.0761618, + 11.659166 + ], + [ + 48.0760694, + 11.6593276 + ], + [ + 48.0760172, + 11.6594178 + ] + ] + }, + { + "osmId": "147109654", + "name": null, + "lengthMeters": 78.40003962733888, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5970559, + 10.0355703 + ], + [ + 53.5963641, + 10.0357997 + ] + ] + }, + { + "osmId": "147233415", + "name": null, + "lengthMeters": 494.02382644435704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5911198, + 10.0370697 + ], + [ + 53.5906405, + 10.0372416 + ], + [ + 53.5903422, + 10.0373653 + ], + [ + 53.5902031, + 10.037423 + ], + [ + 53.589734, + 10.0377079 + ], + [ + 53.5895162, + 10.0378847 + ], + [ + 53.5894031, + 10.038006 + ], + [ + 53.5892847, + 10.038133 + ], + [ + 53.5890334, + 10.0384357 + ], + [ + 53.5887959, + 10.0388087 + ], + [ + 53.588606, + 10.0391598 + ], + [ + 53.5883651, + 10.0397284 + ], + [ + 53.5882671, + 10.0400375 + ], + [ + 53.5882003, + 10.0402482 + ], + [ + 53.5880628, + 10.0408103 + ], + [ + 53.5879232, + 10.041525 + ] + ] + }, + { + "osmId": "147279011", + "name": null, + "lengthMeters": 152.26484980275254, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5870117, + 10.0465805 + ], + [ + 53.586972, + 10.0467489 + ], + [ + 53.5869187, + 10.0469497 + ], + [ + 53.5868637, + 10.0471358 + ], + [ + 53.5867984, + 10.0473242 + ], + [ + 53.5867318, + 10.0474952 + ], + [ + 53.5866744, + 10.0476328 + ], + [ + 53.5865471, + 10.0479005 + ], + [ + 53.5864354, + 10.048096 + ], + [ + 53.5862244, + 10.048437 + ] + ] + }, + { + "osmId": "147413551", + "name": null, + "lengthMeters": 455.27553153609773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6235294, + 10.0321561 + ], + [ + 53.623292, + 10.0320011 + ], + [ + 53.6230845, + 10.0318795 + ], + [ + 53.6228881, + 10.0317645 + ], + [ + 53.622428, + 10.0315358 + ], + [ + 53.6219769, + 10.0314421 + ], + [ + 53.6214683, + 10.0313822 + ], + [ + 53.6209842, + 10.0312691 + ], + [ + 53.620884, + 10.0312371 + ], + [ + 53.6205121, + 10.0311295 + ], + [ + 53.6204875, + 10.0311209 + ], + [ + 53.6203134, + 10.0311042 + ], + [ + 53.6201143, + 10.0310817 + ], + [ + 53.619771, + 10.0310603 + ], + [ + 53.6196418, + 10.0310236 + ], + [ + 53.6195187, + 10.0309741 + ] + ] + }, + { + "osmId": "147423078", + "name": null, + "lengthMeters": 1910.3092145786297, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6295896, + 10.0086465 + ], + [ + 53.6295095, + 10.0088185 + ], + [ + 53.6294028, + 10.00909 + ], + [ + 53.6292546, + 10.0095718 + ], + [ + 53.6291435, + 10.0099897 + ], + [ + 53.629097, + 10.0102097 + ], + [ + 53.6290531, + 10.0104797 + ], + [ + 53.6290038, + 10.0108648 + ], + [ + 53.6289727, + 10.011189 + ], + [ + 53.6289521, + 10.0114668 + ], + [ + 53.62895, + 10.0119598 + ], + [ + 53.6289614, + 10.0124971 + ], + [ + 53.6289925, + 10.013037 + ], + [ + 53.6294527, + 10.0186509 + ], + [ + 53.6296348, + 10.0208508 + ], + [ + 53.6297691, + 10.0227024 + ], + [ + 53.6298034, + 10.0231434 + ], + [ + 53.629828, + 10.02349 + ], + [ + 53.6298378, + 10.0237935 + ], + [ + 53.6298452, + 10.0242659 + ], + [ + 53.6298238, + 10.0255477 + ], + [ + 53.6297732, + 10.0266066 + ], + [ + 53.6297031, + 10.0282643 + ], + [ + 53.6296587, + 10.0292666 + ], + [ + 53.6296378, + 10.0297165 + ], + [ + 53.629596, + 10.0301459 + ], + [ + 53.6295628, + 10.0303781 + ], + [ + 53.6295127, + 10.0306517 + ], + [ + 53.6294567, + 10.0309296 + ], + [ + 53.6292916, + 10.0315398 + ], + [ + 53.6291452, + 10.0319447 + ], + [ + 53.62898, + 10.032307 + ], + [ + 53.6288772, + 10.0324987 + ], + [ + 53.6287316, + 10.0327485 + ], + [ + 53.6285934, + 10.0329479 + ], + [ + 53.6284022, + 10.0331664 + ], + [ + 53.6281981, + 10.0333805 + ], + [ + 53.6280277, + 10.0335195 + ], + [ + 53.6278607, + 10.033631 + ], + [ + 53.6276342, + 10.0337576 + ], + [ + 53.6274824, + 10.0338225 + ], + [ + 53.6273477, + 10.0338527 + ], + [ + 53.6272482, + 10.0338671 + ], + [ + 53.6271597, + 10.0338773 + ], + [ + 53.626978, + 10.0338836 + ], + [ + 53.6267445, + 10.0338699 + ], + [ + 53.6264812, + 10.0338165 + ] + ] + }, + { + "osmId": "147521961", + "name": null, + "lengthMeters": 2212.847836091471, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1695084, + 11.4938789 + ], + [ + 48.1703244, + 11.4952177 + ], + [ + 48.170553, + 11.4955663 + ], + [ + 48.1707839, + 11.4959066 + ], + [ + 48.1710463, + 11.4962672 + ], + [ + 48.171297, + 11.4966011 + ], + [ + 48.1713902, + 11.496718 + ], + [ + 48.1715174, + 11.4968775 + ], + [ + 48.1717502, + 11.4971648 + ], + [ + 48.1720763, + 11.4975267 + ], + [ + 48.1721971, + 11.4976608 + ], + [ + 48.1722865, + 11.4977561 + ], + [ + 48.173515, + 11.4990802 + ], + [ + 48.1743927, + 11.5000262 + ], + [ + 48.1747266, + 11.5003862 + ], + [ + 48.1748961, + 11.5005651 + ], + [ + 48.1749072, + 11.5005768 + ], + [ + 48.1750318, + 11.5007083 + ], + [ + 48.1753975, + 11.5011125 + ], + [ + 48.1760296, + 11.5017794 + ], + [ + 48.1763681, + 11.5021454 + ], + [ + 48.1777861, + 11.5036767 + ], + [ + 48.1800144, + 11.5060735 + ], + [ + 48.1804038, + 11.5064918 + ], + [ + 48.180529, + 11.5066209 + ], + [ + 48.1806184, + 11.5067165 + ], + [ + 48.1807701, + 11.5068779 + ], + [ + 48.1810908, + 11.5072307 + ], + [ + 48.1811736, + 11.5073198 + ], + [ + 48.1813786, + 11.5075403 + ], + [ + 48.1817151, + 11.5079016 + ], + [ + 48.1828199, + 11.5090878 + ], + [ + 48.1835234, + 11.5098422 + ], + [ + 48.1841798, + 11.510546 + ], + [ + 48.1850551, + 11.5114831 + ], + [ + 48.1852117, + 11.5116507 + ], + [ + 48.1853683, + 11.5118184 + ] + ] + }, + { + "osmId": "147521976", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 2905.4485810013766, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1695355, + 11.4938441 + ], + [ + 48.1703528, + 11.4951763 + ], + [ + 48.170583, + 11.4955222 + ], + [ + 48.1708152, + 11.4958617 + ], + [ + 48.1710756, + 11.4962192 + ], + [ + 48.1713253, + 11.4965457 + ], + [ + 48.1714201, + 11.4966642 + ], + [ + 48.1715455, + 11.4968209 + ], + [ + 48.1717835, + 11.4971049 + ], + [ + 48.1722266, + 11.4976054 + ], + [ + 48.1739999, + 11.4995067 + ], + [ + 48.1742331, + 11.4997577 + ], + [ + 48.1748023, + 11.5003715 + ], + [ + 48.175084, + 11.5006741 + ], + [ + 48.1754263, + 11.5010417 + ], + [ + 48.1757091, + 11.5013389 + ], + [ + 48.1761093, + 11.5017752 + ], + [ + 48.1762822, + 11.5019578 + ], + [ + 48.1763983, + 11.5020805 + ], + [ + 48.1773599, + 11.503084 + ], + [ + 48.1778335, + 11.5035806 + ], + [ + 48.1786136, + 11.5044006 + ], + [ + 48.1794229, + 11.5052674 + ], + [ + 48.1800697, + 11.5059623 + ], + [ + 48.1808228, + 11.5067832 + ], + [ + 48.1810238, + 11.5070009 + ], + [ + 48.1820287, + 11.5081113 + ], + [ + 48.1823209, + 11.5084322 + ], + [ + 48.1824403, + 11.5085634 + ], + [ + 48.184028, + 11.5102873 + ], + [ + 48.184209, + 11.5104789 + ], + [ + 48.1856275, + 11.5120014 + ], + [ + 48.1871536, + 11.5136394 + ], + [ + 48.1871912, + 11.5136797 + ], + [ + 48.1884117, + 11.5149898 + ], + [ + 48.1893941, + 11.5160442 + ], + [ + 48.1904674, + 11.5172112 + ] + ] + }, + { + "osmId": "147521977", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 298.12444872459594, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1679962, + 11.4912708 + ], + [ + 48.1671402, + 11.4898772 + ], + [ + 48.1666707, + 11.4891164 + ], + [ + 48.1661799, + 11.4883139 + ] + ] + }, + { + "osmId": "147855141", + "name": null, + "lengthMeters": 149.56179505317937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1808664, + 11.604924 + ], + [ + 48.1797676, + 11.6037606 + ] + ] + }, + { + "osmId": "148449390", + "name": null, + "lengthMeters": 119.84669707947317, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5220321, + 13.4110935 + ], + [ + 52.5221641, + 13.4108799 + ], + [ + 52.5222262, + 13.4107755 + ], + [ + 52.5222741, + 13.4106951 + ], + [ + 52.5224564, + 13.4103656 + ], + [ + 52.5225011, + 13.4103034 + ], + [ + 52.5225305, + 13.4102734 + ], + [ + 52.5225503, + 13.4102558 + ], + [ + 52.5225824, + 13.4102359 + ], + [ + 52.5226167, + 13.4102235 + ], + [ + 52.5226626, + 13.4102215 + ], + [ + 52.5226982, + 13.4102276 + ], + [ + 52.5227273, + 13.4102395 + ], + [ + 52.5227482, + 13.4102529 + ], + [ + 52.5227811, + 13.4102818 + ], + [ + 52.5228277, + 13.4103351 + ], + [ + 52.5228663, + 13.4103898 + ] + ] + }, + { + "osmId": "148452597", + "name": null, + "lengthMeters": 134.67418261215562, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229486, + 13.4104563 + ], + [ + 52.5229253, + 13.4104189 + ], + [ + 52.5228417, + 13.4102917 + ], + [ + 52.522803, + 13.4102437 + ], + [ + 52.5227707, + 13.4102153 + ], + [ + 52.5227418, + 13.4101952 + ], + [ + 52.5226999, + 13.4101785 + ], + [ + 52.5226681, + 13.410171 + ], + [ + 52.5226344, + 13.410171 + ], + [ + 52.5225968, + 13.4101779 + ], + [ + 52.5225669, + 13.410192 + ], + [ + 52.5225322, + 13.410217 + ], + [ + 52.5225014, + 13.4102418 + ], + [ + 52.5224631, + 13.4102911 + ], + [ + 52.5223576, + 13.4104704 + ], + [ + 52.5222588, + 13.4106594 + ], + [ + 52.5222079, + 13.4107461 + ], + [ + 52.5221961, + 13.4107663 + ], + [ + 52.5221112, + 13.4108977 + ], + [ + 52.5220099, + 13.4110544 + ] + ] + }, + { + "osmId": "148458826", + "name": null, + "lengthMeters": 105.56706197275015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5594264, + 13.4337133 + ], + [ + 52.5595796, + 13.4337777 + ], + [ + 52.5597483, + 13.433848 + ], + [ + 52.560049, + 13.4339642 + ], + [ + 52.5600621, + 13.4339692 + ], + [ + 52.5601963, + 13.4340222 + ], + [ + 52.5602683, + 13.4340505 + ], + [ + 52.5603491, + 13.4340807 + ] + ] + }, + { + "osmId": "148477614", + "name": null, + "lengthMeters": 171.30341436115287, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6053404, + 10.1159889 + ], + [ + 53.6054611, + 10.1161459 + ], + [ + 53.6056011, + 10.1163072 + ], + [ + 53.605989, + 10.1167322 + ], + [ + 53.6063838, + 10.1171483 + ], + [ + 53.6066308, + 10.1174051 + ] + ] + }, + { + "osmId": "148832982", + "name": "Vogelfluglinie", + "lengthMeters": 883.3624379094235, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6657552, + 10.2278639 + ], + [ + 53.6659933, + 10.2284751 + ], + [ + 53.666029, + 10.2285668 + ], + [ + 53.6663623, + 10.2295441 + ], + [ + 53.6664559, + 10.2298123 + ], + [ + 53.6666107, + 10.2302556 + ], + [ + 53.6670167, + 10.2313679 + ], + [ + 53.6672192, + 10.2318841 + ], + [ + 53.6673467, + 10.2322017 + ], + [ + 53.667385, + 10.2322971 + ], + [ + 53.6675906, + 10.2328456 + ], + [ + 53.6678738, + 10.2335011 + ], + [ + 53.6680013, + 10.2338194 + ], + [ + 53.668359, + 10.2347186 + ], + [ + 53.6689617, + 10.2362195 + ], + [ + 53.6691134, + 10.2365923 + ], + [ + 53.6694789, + 10.2374822 + ], + [ + 53.6695496, + 10.2376543 + ], + [ + 53.6695971, + 10.2377699 + ], + [ + 53.6697096, + 10.238012 + ], + [ + 53.6698077, + 10.2382222 + ], + [ + 53.6699913, + 10.2386105 + ], + [ + 53.6701714, + 10.2389969 + ] + ] + }, + { + "osmId": "149398400", + "name": null, + "lengthMeters": 685.9228380477932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406363, + 13.411845 + ], + [ + 52.5406082, + 13.4118147 + ], + [ + 52.5404793, + 13.4116787 + ], + [ + 52.540204, + 13.4113879 + ], + [ + 52.5398707, + 13.4110437 + ], + [ + 52.5395642, + 13.410727 + ], + [ + 52.5392369, + 13.4103888 + ], + [ + 52.5392183, + 13.4103696 + ], + [ + 52.5390776, + 13.4102212 + ], + [ + 52.5388721, + 13.4100043 + ], + [ + 52.5388245, + 13.4099541 + ], + [ + 52.5386562, + 13.4097765 + ], + [ + 52.5385787, + 13.4096947 + ], + [ + 52.5385007, + 13.4096124 + ], + [ + 52.5384793, + 13.4095898 + ], + [ + 52.5381124, + 13.4091962 + ], + [ + 52.5380274, + 13.4091052 + ], + [ + 52.5378574, + 13.4089228 + ], + [ + 52.5376893, + 13.4087499 + ], + [ + 52.5376582, + 13.408718 + ], + [ + 52.5376023, + 13.4086607 + ], + [ + 52.5375745, + 13.4086322 + ], + [ + 52.5374651, + 13.4085172 + ], + [ + 52.5373683, + 13.4084154 + ], + [ + 52.5372501, + 13.4082912 + ], + [ + 52.5372124, + 13.4082516 + ], + [ + 52.5370814, + 13.408114 + ], + [ + 52.5368974, + 13.4079206 + ], + [ + 52.5366155, + 13.4076243 + ], + [ + 52.5365045, + 13.4075076 + ], + [ + 52.5362498, + 13.4072593 + ], + [ + 52.5358662, + 13.4068723 + ], + [ + 52.5357226, + 13.4067221 + ], + [ + 52.535621, + 13.4066246 + ], + [ + 52.5355631, + 13.4065647 + ], + [ + 52.535484, + 13.4064904 + ], + [ + 52.5354215, + 13.4064289 + ] + ] + }, + { + "osmId": "149716851", + "name": null, + "lengthMeters": 214.38967537887078, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5862364, + 9.924803 + ], + [ + 53.5867325, + 9.9240368 + ], + [ + 53.5871199, + 9.9234067 + ], + [ + 53.5874236, + 9.922886 + ], + [ + 53.5876172, + 9.9225378 + ] + ] + }, + { + "osmId": "150178431", + "name": null, + "lengthMeters": 87.51402846700702, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.524288, + 13.4188449 + ], + [ + 52.5243228, + 13.4189088 + ], + [ + 52.5243489, + 13.4189471 + ], + [ + 52.524371, + 13.4189736 + ], + [ + 52.5244282, + 13.4190393 + ], + [ + 52.524558, + 13.4191794 + ], + [ + 52.5247719, + 13.4194109 + ], + [ + 52.5249305, + 13.4195868 + ] + ] + }, + { + "osmId": "150178892", + "name": null, + "lengthMeters": 142.25668204021517, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249305, + 13.4195868 + ], + [ + 52.5249879, + 13.4196511 + ], + [ + 52.5250295, + 13.4197013 + ], + [ + 52.5250626, + 13.4197391 + ], + [ + 52.5250844, + 13.4197653 + ], + [ + 52.5251633, + 13.4198601 + ], + [ + 52.5252085, + 13.4199155 + ], + [ + 52.525303, + 13.4200319 + ], + [ + 52.5253917, + 13.4201411 + ], + [ + 52.5253953, + 13.4201455 + ], + [ + 52.5256949, + 13.4205155 + ], + [ + 52.5259577, + 13.42084 + ] + ] + }, + { + "osmId": "150186735", + "name": null, + "lengthMeters": 122.3563543170732, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5530638, + 13.4671137 + ], + [ + 52.5531565, + 13.4671707 + ], + [ + 52.5536535, + 13.4674204 + ], + [ + 52.553716, + 13.4674762 + ], + [ + 52.5537467, + 13.4675196 + ], + [ + 52.5537572, + 13.4675346 + ], + [ + 52.5537786, + 13.4675755 + ], + [ + 52.5538155, + 13.467673 + ], + [ + 52.5538283, + 13.4677447 + ], + [ + 52.5538352, + 13.467863 + ], + [ + 52.5538353, + 13.4678837 + ], + [ + 52.5538343, + 13.4679734 + ], + [ + 52.5538272, + 13.4680859 + ] + ] + }, + { + "osmId": "150186736", + "name": null, + "lengthMeters": 106.34243740000574, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5528074, + 13.4669156 + ], + [ + 52.5529702, + 13.4670212 + ], + [ + 52.5530528, + 13.4670622 + ], + [ + 52.5537144, + 13.4674127 + ] + ] + }, + { + "osmId": "150189704", + "name": null, + "lengthMeters": 956.8476917885098, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5479836, + 13.4502657 + ], + [ + 52.5476315, + 13.4494756 + ], + [ + 52.5475805, + 13.4493622 + ], + [ + 52.5472799, + 13.4487136 + ], + [ + 52.5471837, + 13.4485082 + ], + [ + 52.5471245, + 13.4483791 + ], + [ + 52.5470747, + 13.448259 + ], + [ + 52.5470355, + 13.4481499 + ], + [ + 52.5469797, + 13.4479943 + ], + [ + 52.5469019, + 13.4477819 + ], + [ + 52.5466427, + 13.4472011 + ], + [ + 52.5464332, + 13.4467427 + ], + [ + 52.5457085, + 13.4451461 + ], + [ + 52.5456352, + 13.444988 + ], + [ + 52.5455899, + 13.4448901 + ], + [ + 52.5455552, + 13.4448154 + ], + [ + 52.5453784, + 13.4444231 + ], + [ + 52.5453551, + 13.4443716 + ], + [ + 52.5452993, + 13.4442486 + ], + [ + 52.5452407, + 13.444118 + ], + [ + 52.5450664, + 13.4437392 + ], + [ + 52.544957, + 13.4435251 + ], + [ + 52.5448502, + 13.4433361 + ], + [ + 52.5446146, + 13.4429607 + ], + [ + 52.5445571, + 13.4428651 + ], + [ + 52.544473, + 13.4427488 + ], + [ + 52.5442546, + 13.442476 + ], + [ + 52.5439683, + 13.442143 + ], + [ + 52.5435834, + 13.4416996 + ], + [ + 52.5434459, + 13.4415348 + ], + [ + 52.543369, + 13.4414457 + ], + [ + 52.5432818, + 13.4413448 + ], + [ + 52.5430358, + 13.4410608 + ], + [ + 52.5421657, + 13.4400522 + ] + ] + }, + { + "osmId": "150201972", + "name": null, + "lengthMeters": 108.53283573286217, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5274198, + 13.4147809 + ], + [ + 52.5273449, + 13.4149535 + ], + [ + 52.5273087, + 13.4150355 + ], + [ + 52.5272242, + 13.4152119 + ], + [ + 52.5271893, + 13.4152849 + ], + [ + 52.5271463, + 13.415379 + ], + [ + 52.5270646, + 13.4155591 + ], + [ + 52.527032, + 13.415631 + ], + [ + 52.5270064, + 13.4156882 + ], + [ + 52.5269937, + 13.4157166 + ], + [ + 52.5269413, + 13.4158348 + ], + [ + 52.5269165, + 13.4158893 + ], + [ + 52.5268798, + 13.4159712 + ], + [ + 52.5268721, + 13.4159885 + ], + [ + 52.5268364, + 13.4160669 + ] + ] + }, + { + "osmId": "150201975", + "name": null, + "lengthMeters": 168.31127791079675, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266449, + 13.4165021 + ], + [ + 52.5265183, + 13.4167855 + ], + [ + 52.5262881, + 13.4173057 + ], + [ + 52.5262554, + 13.417378 + ], + [ + 52.5259225, + 13.4181394 + ], + [ + 52.5257535, + 13.4185128 + ] + ] + }, + { + "osmId": "150221885", + "name": null, + "lengthMeters": 85.21458966291682, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5570138, + 13.4677089 + ], + [ + 52.557017, + 13.4676246 + ], + [ + 52.5570195, + 13.4675597 + ], + [ + 52.5570421, + 13.4671215 + ], + [ + 52.5570466, + 13.467041 + ], + [ + 52.5570514, + 13.466944 + ], + [ + 52.5570585, + 13.4668021 + ], + [ + 52.5570617, + 13.4667563 + ], + [ + 52.5570643, + 13.4667199 + ], + [ + 52.5570698, + 13.4666742 + ], + [ + 52.5570758, + 13.4666322 + ], + [ + 52.5570818, + 13.4665971 + ], + [ + 52.5570898, + 13.4665605 + ], + [ + 52.5571003, + 13.4665237 + ], + [ + 52.557116, + 13.4664671 + ] + ] + }, + { + "osmId": "150221890", + "name": null, + "lengthMeters": 89.50014834276733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5569954, + 13.4667167 + ], + [ + 52.5569533, + 13.4668218 + ], + [ + 52.5569381, + 13.4668562 + ], + [ + 52.5569219, + 13.4668874 + ], + [ + 52.5569069, + 13.4669131 + ], + [ + 52.5568859, + 13.4669463 + ], + [ + 52.5568632, + 13.4669742 + ], + [ + 52.5568391, + 13.4669997 + ], + [ + 52.5568176, + 13.4670182 + ], + [ + 52.5567969, + 13.467033 + ], + [ + 52.5567679, + 13.4670484 + ], + [ + 52.5566974, + 13.4670914 + ], + [ + 52.5566587, + 13.4671099 + ], + [ + 52.5565473, + 13.4671638 + ], + [ + 52.5563479, + 13.4672599 + ], + [ + 52.5562964, + 13.4672811 + ] + ] + }, + { + "osmId": "150294486", + "name": null, + "lengthMeters": 239.74524740014573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6613201, + 10.0176874 + ], + [ + 53.6608303, + 10.0174147 + ], + [ + 53.6605208, + 10.0172888 + ], + [ + 53.6602231, + 10.017161 + ], + [ + 53.6598815, + 10.0170072 + ], + [ + 53.6596265, + 10.0168923 + ], + [ + 53.6594808, + 10.0168408 + ], + [ + 53.6593886, + 10.0168108 + ], + [ + 53.659237, + 10.0167603 + ] + ] + }, + { + "osmId": "150294487", + "name": null, + "lengthMeters": 429.4777116709523, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.669208, + 10.0195825 + ], + [ + 53.6691018, + 10.0196359 + ], + [ + 53.6685131, + 10.0198527 + ], + [ + 53.6683066, + 10.0199202 + ], + [ + 53.6681309, + 10.0199777 + ], + [ + 53.6673924, + 10.0200858 + ], + [ + 53.666786, + 10.0200757 + ], + [ + 53.6663257, + 10.0200284 + ], + [ + 53.6659842, + 10.0199564 + ], + [ + 53.6653904, + 10.0197463 + ] + ] + }, + { + "osmId": "150302205", + "name": null, + "lengthMeters": 313.01204912876415, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485128, + 13.4520251 + ], + [ + 52.5485959, + 13.4524061 + ], + [ + 52.5486302, + 13.452565 + ], + [ + 52.548985, + 13.4541938 + ], + [ + 52.549071, + 13.4545924 + ], + [ + 52.5494239, + 13.4562097 + ], + [ + 52.5494621, + 13.4563832 + ] + ] + }, + { + "osmId": "150302776", + "name": null, + "lengthMeters": 378.52996583348306, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5574786, + 13.4655805 + ], + [ + 52.5575633, + 13.4653797 + ], + [ + 52.5577581, + 13.4649118 + ], + [ + 52.5577784, + 13.4648627 + ], + [ + 52.5578293, + 13.4647397 + ], + [ + 52.5578701, + 13.4646423 + ], + [ + 52.5585513, + 13.4630162 + ], + [ + 52.5586732, + 13.4627211 + ], + [ + 52.5587681, + 13.4624916 + ], + [ + 52.5588997, + 13.4621731 + ], + [ + 52.5589099, + 13.4621503 + ], + [ + 52.5589533, + 13.4620457 + ], + [ + 52.5590044, + 13.4619245 + ], + [ + 52.5592682, + 13.4612989 + ], + [ + 52.5594065, + 13.4609656 + ] + ] + }, + { + "osmId": "150302782", + "name": null, + "lengthMeters": 91.86977647626817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5567025, + 13.467129 + ], + [ + 52.5567456, + 13.4671148 + ], + [ + 52.5567669, + 13.4671095 + ], + [ + 52.5567837, + 13.4671062 + ], + [ + 52.5568027, + 13.4671053 + ], + [ + 52.556806, + 13.4671061 + ], + [ + 52.5568163, + 13.4671075 + ], + [ + 52.5568291, + 13.4671097 + ], + [ + 52.5568428, + 13.4671132 + ], + [ + 52.5568645, + 13.4671214 + ], + [ + 52.5568776, + 13.4671293 + ], + [ + 52.5568878, + 13.4671372 + ], + [ + 52.5568982, + 13.4671466 + ], + [ + 52.5569079, + 13.4671564 + ], + [ + 52.5569165, + 13.4671658 + ], + [ + 52.5569251, + 13.4671766 + ], + [ + 52.5569351, + 13.4671899 + ], + [ + 52.5569445, + 13.4672081 + ], + [ + 52.5569532, + 13.4672258 + ], + [ + 52.5569624, + 13.4672474 + ], + [ + 52.5569691, + 13.4672687 + ], + [ + 52.5569746, + 13.4672899 + ], + [ + 52.5569782, + 13.4673087 + ], + [ + 52.5569827, + 13.4673359 + ], + [ + 52.5569869, + 13.4673675 + ], + [ + 52.5569893, + 13.4674007 + ], + [ + 52.5569914, + 13.4674393 + ], + [ + 52.5569935, + 13.4674828 + ], + [ + 52.5569941, + 13.4675111 + ], + [ + 52.5569934, + 13.4675337 + ], + [ + 52.5569923, + 13.4675615 + ], + [ + 52.5569662, + 13.4681183 + ] + ] + }, + { + "osmId": "150394034", + "name": null, + "lengthMeters": 199.7774243064431, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5211748, + 13.4129816 + ], + [ + 52.521051, + 13.4127233 + ], + [ + 52.5209763, + 13.4125674 + ], + [ + 52.5209399, + 13.4124915 + ], + [ + 52.5208997, + 13.4124055 + ], + [ + 52.5208305, + 13.4122571 + ], + [ + 52.5207783, + 13.4121451 + ], + [ + 52.5207537, + 13.4120783 + ], + [ + 52.5207432, + 13.4120046 + ], + [ + 52.5207434, + 13.4119404 + ], + [ + 52.5207498, + 13.411878 + ], + [ + 52.5207642, + 13.4118162 + ], + [ + 52.5207859, + 13.4117543 + ], + [ + 52.5208052, + 13.411712 + ], + [ + 52.5208425, + 13.4116464 + ], + [ + 52.5208658, + 13.4116086 + ], + [ + 52.5212168, + 13.4110566 + ], + [ + 52.5212548, + 13.4109982 + ], + [ + 52.5214284, + 13.4107278 + ] + ] + }, + { + "osmId": "150455367", + "name": null, + "lengthMeters": 819.112340241602, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6777861, + 9.9941286 + ], + [ + 53.6778146, + 9.9939699 + ], + [ + 53.67783, + 9.9938844 + ], + [ + 53.6779459, + 9.9932387 + ], + [ + 53.6782299, + 9.99212 + ], + [ + 53.6785637, + 9.9907845 + ], + [ + 53.678788, + 9.9900129 + ], + [ + 53.6790633, + 9.9893874 + ], + [ + 53.6792229, + 9.9891074 + ], + [ + 53.6792618, + 9.989039 + ], + [ + 53.6794746, + 9.9887363 + ], + [ + 53.6797, + 9.9884913 + ], + [ + 53.6800564, + 9.988134 + ], + [ + 53.6802369, + 9.9879491 + ], + [ + 53.6806833, + 9.9875097 + ], + [ + 53.6811327, + 9.9870603 + ], + [ + 53.6815337, + 9.9867191 + ], + [ + 53.6818256, + 9.9865303 + ], + [ + 53.6820756, + 9.9864051 + ], + [ + 53.6823452, + 9.9863054 + ], + [ + 53.6828135, + 9.9862429 + ] + ] + }, + { + "osmId": "150455370", + "name": null, + "lengthMeters": 410.6183499469414, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6776781, + 9.9943226 + ], + [ + 53.6776187, + 9.9947174 + ], + [ + 53.6775459, + 9.99558 + ], + [ + 53.6775392, + 9.9958169 + ], + [ + 53.6775376, + 9.9960194 + ], + [ + 53.67754, + 9.9962474 + ], + [ + 53.6775538, + 9.9964854 + ], + [ + 53.6776674, + 9.997689 + ], + [ + 53.6777519, + 9.9986637 + ], + [ + 53.6779024, + 10.0004911 + ] + ] + }, + { + "osmId": "150455372", + "name": null, + "lengthMeters": 233.76792937289662, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6771254, + 10.0118032 + ], + [ + 53.676912, + 10.0123904 + ], + [ + 53.6767869, + 10.0126945 + ], + [ + 53.6758436, + 10.0146087 + ] + ] + }, + { + "osmId": "150478184", + "name": null, + "lengthMeters": 180.73770774633672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249466, + 13.4195598 + ], + [ + 52.5249316, + 13.4195415 + ], + [ + 52.5248153, + 13.4194138 + ], + [ + 52.5245863, + 13.4191649 + ], + [ + 52.5245153, + 13.4190889 + ], + [ + 52.5244452, + 13.4190129 + ], + [ + 52.5244077, + 13.4189675 + ], + [ + 52.5243702, + 13.4189178 + ], + [ + 52.5243465, + 13.4188846 + ], + [ + 52.5243196, + 13.4188358 + ], + [ + 52.5242978, + 13.4187852 + ], + [ + 52.524281, + 13.4187304 + ], + [ + 52.5242715, + 13.4186882 + ], + [ + 52.5242636, + 13.4186294 + ], + [ + 52.5242621, + 13.4185789 + ], + [ + 52.5242643, + 13.4185027 + ], + [ + 52.5242666, + 13.4184668 + ], + [ + 52.5242883, + 13.4183643 + ], + [ + 52.5243226, + 13.4182579 + ], + [ + 52.5243614, + 13.418157 + ], + [ + 52.5244244, + 13.4179885 + ], + [ + 52.5244437, + 13.4179216 + ], + [ + 52.5244538, + 13.4178547 + ], + [ + 52.5244578, + 13.4177478 + ], + [ + 52.5244465, + 13.4176417 + ], + [ + 52.5244317, + 13.4175769 + ], + [ + 52.5244221, + 13.4175347 + ] + ] + }, + { + "osmId": "150478187", + "name": null, + "lengthMeters": 102.95707119360438, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483928, + 13.4513517 + ], + [ + 52.5483809, + 13.4512488 + ], + [ + 52.5483753, + 13.4511935 + ], + [ + 52.5483744, + 13.4511257 + ], + [ + 52.5483788, + 13.4510715 + ], + [ + 52.5483864, + 13.4510182 + ], + [ + 52.5484023, + 13.4509549 + ], + [ + 52.5484148, + 13.4509277 + ], + [ + 52.5484412, + 13.450867 + ], + [ + 52.548448, + 13.4508514 + ], + [ + 52.5485356, + 13.4506916 + ], + [ + 52.5486181, + 13.4505729 + ], + [ + 52.5486252, + 13.4505615 + ], + [ + 52.5486795, + 13.4504006 + ], + [ + 52.5487002, + 13.4503331 + ], + [ + 52.5487883, + 13.4500513 + ] + ] + }, + { + "osmId": "150596955", + "name": null, + "lengthMeters": 216.89731754972178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6237722, + 10.0328583 + ], + [ + 53.6242574, + 10.0329965 + ], + [ + 53.6247423, + 10.0331277 + ], + [ + 53.624851, + 10.0331654 + ], + [ + 53.6251085, + 10.0332695 + ], + [ + 53.625261, + 10.0333449 + ], + [ + 53.6254059, + 10.0334147 + ], + [ + 53.6255818, + 10.0335065 + ], + [ + 53.6256754, + 10.0335549 + ] + ] + }, + { + "osmId": "150839155", + "name": "Isartalbahn", + "lengthMeters": 1792.2487295298172, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.043977, + 11.5102021 + ], + [ + 48.0446478, + 11.5107112 + ], + [ + 48.0448019, + 11.5108318 + ], + [ + 48.0454567, + 11.5113442 + ], + [ + 48.0455199, + 11.5113942 + ], + [ + 48.0455676, + 11.5114318 + ], + [ + 48.0462389, + 11.5119551 + ], + [ + 48.047893, + 11.5132446 + ], + [ + 48.0489339, + 11.5140561 + ], + [ + 48.0499418, + 11.5148428 + ], + [ + 48.0511003, + 11.5157438 + ], + [ + 48.0520881, + 11.5165151 + ], + [ + 48.0544873, + 11.5183886 + ], + [ + 48.0545238, + 11.5184177 + ], + [ + 48.0545559, + 11.5184438 + ], + [ + 48.0552302, + 11.5189657 + ], + [ + 48.0563713, + 11.5198488 + ], + [ + 48.057679, + 11.5208719 + ], + [ + 48.0580856, + 11.52119 + ], + [ + 48.0581898, + 11.5212715 + ], + [ + 48.0582742, + 11.5213347 + ] + ] + }, + { + "osmId": "150839169", + "name": "Isartalbahn", + "lengthMeters": 261.7518216676971, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0717951, + 11.5311544 + ], + [ + 48.071637, + 11.5310739 + ], + [ + 48.0711832, + 11.530843 + ], + [ + 48.0708139, + 11.5306549 + ], + [ + 48.0704451, + 11.5304639 + ], + [ + 48.0701253, + 11.5302992 + ], + [ + 48.0699627, + 11.5302165 + ], + [ + 48.0696961, + 11.5300708 + ], + [ + 48.0695718, + 11.5299977 + ] + ] + }, + { + "osmId": "151003923", + "name": null, + "lengthMeters": 487.19727545886303, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5737152, + 9.9309836 + ], + [ + 53.5733808, + 9.9313073 + ], + [ + 53.573259, + 9.9314307 + ], + [ + 53.5728063, + 9.9318894 + ], + [ + 53.5721716, + 9.9325133 + ], + [ + 53.571948, + 9.9327132 + ], + [ + 53.5717615, + 9.93288 + ], + [ + 53.571437, + 9.9331215 + ], + [ + 53.5712631, + 9.9332273 + ], + [ + 53.571258, + 9.9332301 + ], + [ + 53.5709996, + 9.9333716 + ], + [ + 53.5708507, + 9.9334363 + ], + [ + 53.5705417, + 9.9335451 + ], + [ + 53.5703045, + 9.933602 + ], + [ + 53.5700904, + 9.933634 + ], + [ + 53.5699163, + 9.9336423 + ], + [ + 53.5697603, + 9.9336518 + ], + [ + 53.5697053, + 9.9336552 + ] + ] + }, + { + "osmId": "151233856", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 207.15445079774247, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5511177, + 10.0201189 + ], + [ + 53.5511045, + 10.0200607 + ], + [ + 53.5510148, + 10.0197075 + ], + [ + 53.5506819, + 10.0183097 + ], + [ + 53.5504409, + 10.0173423 + ], + [ + 53.5504114, + 10.0172174 + ] + ] + }, + { + "osmId": "151681217", + "name": null, + "lengthMeters": 181.78462036514355, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6078887, + 10.1186575 + ], + [ + 53.6083402, + 10.1190374 + ], + [ + 53.6086835, + 10.1192943 + ], + [ + 53.6089507, + 10.1195253 + ], + [ + 53.6093477, + 10.1198975 + ] + ] + }, + { + "osmId": "151847465", + "name": null, + "lengthMeters": 106.02682700736585, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5294631, + 13.2927833 + ], + [ + 52.5295213, + 13.2934064 + ], + [ + 52.5295659, + 13.2938458 + ], + [ + 52.5296136, + 13.2942475 + ], + [ + 52.5296232, + 13.2943282 + ] + ] + }, + { + "osmId": "151847466", + "name": null, + "lengthMeters": 144.72732009131548, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5296232, + 13.2943282 + ], + [ + 52.5296943, + 13.294893 + ], + [ + 52.5297716, + 13.2954477 + ], + [ + 52.5298168, + 13.2957524 + ], + [ + 52.5299222, + 13.29641 + ] + ] + }, + { + "osmId": "151996926", + "name": null, + "lengthMeters": 327.879866451172, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5983811, + 10.1029088 + ], + [ + 53.5986522, + 10.1039299 + ], + [ + 53.5988518, + 10.1046828 + ], + [ + 53.5989669, + 10.1050825 + ], + [ + 53.5990819, + 10.1054481 + ], + [ + 53.5997407, + 10.1073098 + ] + ] + }, + { + "osmId": "151998678", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 687.7917849576256, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5599105, + 10.0663833 + ], + [ + 53.5596943, + 10.0665249 + ], + [ + 53.5594812, + 10.0666431 + ], + [ + 53.5592645, + 10.0667474 + ], + [ + 53.559077, + 10.0668084 + ], + [ + 53.5590541, + 10.0668158 + ], + [ + 53.5589227, + 10.0668506 + ], + [ + 53.5571264, + 10.0671473 + ], + [ + 53.5556146, + 10.067397 + ], + [ + 53.5537912, + 10.067703 + ] + ] + }, + { + "osmId": "152112723", + "name": null, + "lengthMeters": 435.87835928559423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1459712, + 11.4924848 + ], + [ + 48.1458514, + 11.4928966 + ], + [ + 48.145693, + 11.4935149 + ], + [ + 48.1456102, + 11.4938615 + ], + [ + 48.1455218, + 11.4942897 + ], + [ + 48.1454086, + 11.494906 + ], + [ + 48.1453359, + 11.4953161 + ], + [ + 48.14517, + 11.4962412 + ], + [ + 48.1450606, + 11.4969306 + ], + [ + 48.1449031, + 11.4981243 + ] + ] + }, + { + "osmId": "152177651", + "name": null, + "lengthMeters": 476.0779726244599, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4184717, + 13.5593875 + ], + [ + 52.4185176, + 13.559761 + ], + [ + 52.418541, + 13.5600345 + ], + [ + 52.4185697, + 13.5604127 + ], + [ + 52.4185788, + 13.5607097 + ], + [ + 52.4185827, + 13.5610537 + ], + [ + 52.4185762, + 13.5613443 + ], + [ + 52.4185553, + 13.5617139 + ], + [ + 52.4185306, + 13.5619917 + ], + [ + 52.418498, + 13.5623143 + ], + [ + 52.4184446, + 13.5626712 + ], + [ + 52.4184042, + 13.5629361 + ], + [ + 52.4183612, + 13.5631348 + ], + [ + 52.4182765, + 13.563513 + ], + [ + 52.4182026, + 13.5638168 + ], + [ + 52.4180275, + 13.5643526 + ], + [ + 52.4179338, + 13.5646054 + ], + [ + 52.4178765, + 13.5647326 + ], + [ + 52.4177623, + 13.5649888 + ], + [ + 52.4173213, + 13.5658311 + ] + ] + }, + { + "osmId": "152177653", + "name": null, + "lengthMeters": 1126.0003231024898, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4231891, + 13.5580808 + ], + [ + 52.4230452, + 13.5579286 + ], + [ + 52.4229033, + 13.5577841 + ], + [ + 52.4227532, + 13.557658 + ], + [ + 52.4225816, + 13.5575379 + ], + [ + 52.4224086, + 13.5574236 + ], + [ + 52.422248, + 13.5573353 + ], + [ + 52.4221299, + 13.5572811 + ], + [ + 52.4219385, + 13.5572058 + ], + [ + 52.4217622, + 13.5571629 + ], + [ + 52.4215112, + 13.5571326 + ], + [ + 52.4212205, + 13.5571207 + ], + [ + 52.4209931, + 13.5571362 + ], + [ + 52.4208125, + 13.5571548 + ], + [ + 52.4205877, + 13.5572154 + ], + [ + 52.4203596, + 13.5572934 + ], + [ + 52.4201351, + 13.5573896 + ], + [ + 52.4199438, + 13.5575029 + ], + [ + 52.4197508, + 13.5576288 + ], + [ + 52.4196111, + 13.557744 + ], + [ + 52.4194809, + 13.55786 + ], + [ + 52.4193086, + 13.5580215 + ], + [ + 52.4191161, + 13.5582348 + ], + [ + 52.418937, + 13.5584494 + ], + [ + 52.4187578, + 13.5587159 + ], + [ + 52.4184992, + 13.559136 + ], + [ + 52.4182925, + 13.5595443 + ], + [ + 52.4181517, + 13.5599221 + ], + [ + 52.4180497, + 13.5601956 + ], + [ + 52.4178866, + 13.5607469 + ], + [ + 52.416848, + 13.5643015 + ], + [ + 52.4162481, + 13.5663652 + ] + ] + }, + { + "osmId": "152177654", + "name": null, + "lengthMeters": 1443.4566759721367, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4257239, + 13.5546747 + ], + [ + 52.4256699, + 13.5547539 + ], + [ + 52.4256262, + 13.5548181 + ], + [ + 52.4253448, + 13.5552307 + ], + [ + 52.4252635, + 13.555339 + ], + [ + 52.4251514, + 13.5554789 + ], + [ + 52.4250283, + 13.5556165 + ], + [ + 52.4249794, + 13.5556728 + ], + [ + 52.4249128, + 13.5557356 + ], + [ + 52.4247314, + 13.5559078 + ], + [ + 52.4245012, + 13.5561138 + ], + [ + 52.4243428, + 13.5562257 + ], + [ + 52.4241577, + 13.5563572 + ], + [ + 52.4240173, + 13.5564438 + ], + [ + 52.4237986, + 13.5565575 + ], + [ + 52.4236497, + 13.5566301 + ], + [ + 52.4234198, + 13.5567192 + ], + [ + 52.4232709, + 13.5567661 + ], + [ + 52.4230425, + 13.5568222 + ], + [ + 52.4228947, + 13.5568464 + ], + [ + 52.4227442, + 13.5568622 + ], + [ + 52.4224358, + 13.5568756 + ], + [ + 52.4216488, + 13.5568636 + ], + [ + 52.4213462, + 13.5569001 + ], + [ + 52.4211627, + 13.5569178 + ], + [ + 52.4208977, + 13.5569929 + ], + [ + 52.4206885, + 13.5570562 + ], + [ + 52.4204528, + 13.557156 + ], + [ + 52.4202515, + 13.557246 + ], + [ + 52.4200672, + 13.557341 + ], + [ + 52.4198702, + 13.5574646 + ], + [ + 52.4197135, + 13.5575801 + ], + [ + 52.4196087, + 13.5576743 + ], + [ + 52.4193868, + 13.5578574 + ], + [ + 52.4191335, + 13.5581199 + ], + [ + 52.4189141, + 13.5583884 + ], + [ + 52.4186805, + 13.5587551 + ], + [ + 52.4184694, + 13.5591037 + ], + [ + 52.418255, + 13.5595106 + ], + [ + 52.4180104, + 13.5601687 + ], + [ + 52.4178483, + 13.5607192 + ], + [ + 52.4171491, + 13.5630983 + ], + [ + 52.4168141, + 13.56428 + ], + [ + 52.4161946, + 13.5663558 + ] + ] + }, + { + "osmId": "152177657", + "name": "Gr\u00fcnauer Kreuz", + "lengthMeters": 123.88699597138569, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4161692, + 13.5666426 + ], + [ + 52.4160057, + 13.5671777 + ], + [ + 52.4158059, + 13.5678021 + ], + [ + 52.4156405, + 13.5682494 + ] + ] + }, + { + "osmId": "152354502", + "name": null, + "lengthMeters": 1297.5351738560876, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6936317, + 9.9874511 + ], + [ + 53.6937374, + 9.987569 + ], + [ + 53.6949717, + 9.9889341 + ], + [ + 53.6955946, + 9.9896178 + ], + [ + 53.6960383, + 9.9901075 + ], + [ + 53.6961957, + 9.9902812 + ], + [ + 53.6967091, + 9.9908176 + ], + [ + 53.6974027, + 9.9914432 + ], + [ + 53.6980741, + 9.9919175 + ], + [ + 53.6987476, + 9.9922972 + ], + [ + 53.698815, + 9.9923241 + ], + [ + 53.6993065, + 9.9925201 + ], + [ + 53.6995126, + 9.9925851 + ], + [ + 53.7001449, + 9.9927516 + ], + [ + 53.7010173, + 9.9928676 + ], + [ + 53.7024325, + 9.9927991 + ], + [ + 53.7027136, + 9.9927923 + ], + [ + 53.7028767, + 9.9927883 + ], + [ + 53.7033825, + 9.992784 + ], + [ + 53.7036853, + 9.992798 + ], + [ + 53.7044954, + 9.9927532 + ] + ] + }, + { + "osmId": "152354880", + "name": null, + "lengthMeters": 326.89247098079187, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7044954, + 9.9927532 + ], + [ + 53.7048555, + 9.9927238 + ], + [ + 53.7054054, + 9.9926823 + ], + [ + 53.7056847, + 9.9926612 + ], + [ + 53.7072184, + 9.9925453 + ], + [ + 53.7072253, + 9.9925453 + ], + [ + 53.7074322, + 9.9925287 + ] + ] + }, + { + "osmId": "152354881", + "name": null, + "lengthMeters": 978.5380486501076, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7044556, + 9.99257 + ], + [ + 53.7040346, + 9.9926083 + ], + [ + 53.7028884, + 9.9926956 + ], + [ + 53.7027136, + 9.9927135 + ], + [ + 53.7026421, + 9.9927209 + ], + [ + 53.7024304, + 9.9927326 + ], + [ + 53.7011462, + 9.9928035 + ], + [ + 53.7008911, + 9.9927981 + ], + [ + 53.7001475, + 9.9926829 + ], + [ + 53.6993152, + 9.9924635 + ], + [ + 53.6989067, + 9.9922998 + ], + [ + 53.6988244, + 9.9922668 + ], + [ + 53.6987582, + 9.9922403 + ], + [ + 53.6980877, + 9.9918597 + ], + [ + 53.6974217, + 9.9913838 + ], + [ + 53.6967274, + 9.9907695 + ], + [ + 53.6962171, + 9.9902273 + ], + [ + 53.6960022, + 9.9899988 + ] + ] + }, + { + "osmId": "152385833", + "name": null, + "lengthMeters": 224.47665944386037, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.453588, + 13.568662 + ], + [ + 52.4540091, + 13.5681969 + ], + [ + 52.4548787, + 13.5672271 + ], + [ + 52.4551958, + 13.5668771 + ], + [ + 52.4552262, + 13.5668433 + ], + [ + 52.4552598, + 13.5668051 + ] + ] + }, + { + "osmId": "152773705", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 6159.340006912966, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5259717, + 10.1340553 + ], + [ + 53.5248121, + 10.1378983 + ], + [ + 53.5247344, + 10.1381551 + ], + [ + 53.5243505, + 10.1393626 + ], + [ + 53.5239243, + 10.1405198 + ], + [ + 53.5225588, + 10.1442554 + ], + [ + 53.5219642, + 10.1458822 + ], + [ + 53.521656, + 10.1465867 + ], + [ + 53.5213236, + 10.1472719 + ], + [ + 53.5198007, + 10.1504026 + ], + [ + 53.5188221, + 10.1524142 + ], + [ + 53.5186957, + 10.1526908 + ], + [ + 53.5186131, + 10.1528965 + ], + [ + 53.5185267, + 10.1531355 + ], + [ + 53.5184324, + 10.1534469 + ], + [ + 53.5183532, + 10.1537732 + ], + [ + 53.5182924, + 10.1540567 + ], + [ + 53.5182347, + 10.1543988 + ], + [ + 53.5181994, + 10.1549064 + ], + [ + 53.5181922, + 10.1556227 + ], + [ + 53.5181845, + 10.1567879 + ], + [ + 53.5181835, + 10.157079 + ], + [ + 53.5181683, + 10.1617282 + ], + [ + 53.5181785, + 10.1621505 + ], + [ + 53.5182053, + 10.162542 + ], + [ + 53.5182095, + 10.1625903 + ], + [ + 53.5182463, + 10.1630178 + ], + [ + 53.5182918, + 10.1633979 + ], + [ + 53.5185088, + 10.1645068 + ], + [ + 53.5186034, + 10.1649903 + ], + [ + 53.5191112, + 10.1675855 + ], + [ + 53.5192191, + 10.168145 + ], + [ + 53.5193917, + 10.1690305 + ], + [ + 53.5202276, + 10.1733049 + ], + [ + 53.5207613, + 10.1760383 + ], + [ + 53.5211663, + 10.1780435 + ], + [ + 53.5213565, + 10.1787519 + ], + [ + 53.52153, + 10.1792555 + ], + [ + 53.5217377, + 10.1797335 + ], + [ + 53.5220347, + 10.1802385 + ], + [ + 53.5223771, + 10.1806508 + ], + [ + 53.5227563, + 10.1809748 + ], + [ + 53.523167, + 10.1812036 + ], + [ + 53.5252249, + 10.1821349 + ], + [ + 53.5257565, + 10.1824996 + ], + [ + 53.5263056, + 10.1830209 + ], + [ + 53.5298995, + 10.1868868 + ], + [ + 53.532578, + 10.1897494 + ], + [ + 53.5351244, + 10.1924972 + ], + [ + 53.5352493, + 10.1926319 + ], + [ + 53.5356387, + 10.193132 + ], + [ + 53.5358961, + 10.1935707 + ], + [ + 53.5361164, + 10.194077 + ], + [ + 53.5362539, + 10.1944756 + ], + [ + 53.536358, + 10.1948581 + ], + [ + 53.5365028, + 10.1957824 + ], + [ + 53.5366884, + 10.197687 + ], + [ + 53.5367564, + 10.1985338 + ], + [ + 53.5369983, + 10.2013823 + ], + [ + 53.5370151, + 10.2017288 + ], + [ + 53.5370158, + 10.2020395 + ], + [ + 53.5369998, + 10.2023441 + ], + [ + 53.5369664, + 10.2026966 + ], + [ + 53.5367108, + 10.2045534 + ], + [ + 53.5365591, + 10.205808 + ], + [ + 53.5365444, + 10.2059817 + ], + [ + 53.5365416, + 10.2062841 + ], + [ + 53.5365519, + 10.2066167 + ], + [ + 53.5365764, + 10.2068941 + ], + [ + 53.5366189, + 10.2072108 + ], + [ + 53.5366704, + 10.207498 + ], + [ + 53.5367702, + 10.2078687 + ] + ] + }, + { + "osmId": "152796044", + "name": null, + "lengthMeters": 862.6104086874369, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5039367, + 13.5588394 + ], + [ + 52.5036766, + 13.5584102 + ], + [ + 52.5034312, + 13.5579709 + ], + [ + 52.5031704, + 13.5574636 + ], + [ + 52.5028424, + 13.5567618 + ], + [ + 52.5025294, + 13.5560484 + ], + [ + 52.5022447, + 13.5553562 + ], + [ + 52.5020656, + 13.554898 + ], + [ + 52.5018945, + 13.5544377 + ], + [ + 52.5018287, + 13.5542554 + ], + [ + 52.5017287, + 13.5539665 + ], + [ + 52.5016606, + 13.5537618 + ], + [ + 52.5015885, + 13.5535352 + ], + [ + 52.5015169, + 13.5533021 + ], + [ + 52.5014529, + 13.5530835 + ], + [ + 52.5013899, + 13.5528581 + ], + [ + 52.5006912, + 13.5502709 + ], + [ + 52.5000542, + 13.5479135 + ] + ] + }, + { + "osmId": "152796065", + "name": null, + "lengthMeters": 212.06627650888768, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042302, + 13.55951 + ], + [ + 52.5045248, + 13.5599378 + ], + [ + 52.5054484, + 13.5611929 + ], + [ + 52.5056914, + 13.5615231 + ] + ] + }, + { + "osmId": "152813970", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 129.66067351514224, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5534105, + 10.0068116 + ], + [ + 53.553548, + 10.0067337 + ], + [ + 53.5536693, + 10.0066651 + ], + [ + 53.5537596, + 10.0066014 + ], + [ + 53.5538329, + 10.0065496 + ], + [ + 53.5541861, + 10.0061477 + ], + [ + 53.5542778, + 10.0060333 + ], + [ + 53.5543474, + 10.0059393 + ], + [ + 53.5543905, + 10.0058794 + ], + [ + 53.5544136, + 10.0058471 + ] + ] + }, + { + "osmId": "152815837", + "name": null, + "lengthMeters": 230.28755811092145, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5169527, + 10.0105437 + ], + [ + 53.5187293, + 10.0113106 + ], + [ + 53.518959, + 10.0114077 + ] + ] + }, + { + "osmId": "152815838", + "name": null, + "lengthMeters": 248.33291567362744, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.522214, + 10.0132609 + ], + [ + 53.5227532, + 10.0136575 + ], + [ + 53.5232168, + 10.0140297 + ], + [ + 53.5238033, + 10.0144772 + ], + [ + 53.5242499, + 10.0148043 + ] + ] + }, + { + "osmId": "152977298", + "name": null, + "lengthMeters": 302.63977799522564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1401957, + 11.5574512 + ], + [ + 48.1402879, + 11.5562231 + ], + [ + 48.1403621, + 11.5552161 + ], + [ + 48.1403792, + 11.5549596 + ], + [ + 48.1403926, + 11.5547967 + ], + [ + 48.1404179, + 11.554538 + ], + [ + 48.1404405, + 11.5543449 + ], + [ + 48.1404706, + 11.5541311 + ], + [ + 48.1404804, + 11.5540734 + ], + [ + 48.1405053, + 11.5539272 + ], + [ + 48.1405919, + 11.5534223 + ] + ] + }, + { + "osmId": "152977299", + "name": null, + "lengthMeters": 93.89076444724498, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402325, + 11.5574566 + ], + [ + 48.1401392, + 11.5587142 + ] + ] + }, + { + "osmId": "152977302", + "name": null, + "lengthMeters": 95.01185847191432, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1410084, + 11.5575727 + ], + [ + 48.1409162, + 11.5588457 + ] + ] + }, + { + "osmId": "152977899", + "name": null, + "lengthMeters": 252.1025827173827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415926, + 11.5571902 + ], + [ + 48.1416041, + 11.557032 + ], + [ + 48.1416897, + 11.5558443 + ], + [ + 48.1418055, + 11.554239 + ], + [ + 48.1418138, + 11.5540825 + ], + [ + 48.1418162, + 11.553952 + ], + [ + 48.1418162, + 11.5538215 + ], + [ + 48.1418163, + 11.5538103 + ] + ] + }, + { + "osmId": "152977901", + "name": null, + "lengthMeters": 239.14585005452565, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.140041, + 11.557428 + ], + [ + 48.1401279, + 11.5561972 + ], + [ + 48.1401989, + 11.5551885 + ], + [ + 48.1402207, + 11.554962 + ], + [ + 48.1402463, + 11.5547394 + ], + [ + 48.140278, + 11.5544972 + ], + [ + 48.1403078, + 11.5543125 + ], + [ + 48.1403196, + 11.5542351 + ] + ] + }, + { + "osmId": "152977913", + "name": null, + "lengthMeters": 299.88136982101037, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.141336, + 11.5571493 + ], + [ + 48.1413481, + 11.5569867 + ], + [ + 48.1414366, + 11.5557981 + ], + [ + 48.1415557, + 11.5541983 + ], + [ + 48.1415867, + 11.5537959 + ], + [ + 48.141602, + 11.5534665 + ], + [ + 48.1416065, + 11.5531296 + ] + ] + }, + { + "osmId": "153011448", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 411.19463896112876, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1298242, + 11.5368528 + ], + [ + 48.1300613, + 11.5366272 + ], + [ + 48.1301942, + 11.5364846 + ], + [ + 48.1302914, + 11.5363758 + ], + [ + 48.1303834, + 11.5362599 + ], + [ + 48.1305434, + 11.5360429 + ], + [ + 48.1306957, + 11.5358036 + ], + [ + 48.1308257, + 11.5355805 + ], + [ + 48.1309457, + 11.535359 + ], + [ + 48.131117, + 11.535018 + ], + [ + 48.1314925, + 11.5342229 + ], + [ + 48.1316586, + 11.5338887 + ], + [ + 48.1318326, + 11.5335609 + ], + [ + 48.1320739, + 11.5331503 + ], + [ + 48.1323067, + 11.5328003 + ] + ] + }, + { + "osmId": "153134060", + "name": null, + "lengthMeters": 2709.5635343177164, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3453594, + 13.6299671 + ], + [ + 52.3451854, + 13.6300939 + ], + [ + 52.3451541, + 13.6301167 + ], + [ + 52.3449329, + 13.630266 + ], + [ + 52.344313, + 13.6306605 + ], + [ + 52.3436416, + 13.631052 + ], + [ + 52.3428534, + 13.631508 + ], + [ + 52.3421553, + 13.6319345 + ], + [ + 52.3419774, + 13.6320477 + ], + [ + 52.3418879, + 13.6321074 + ], + [ + 52.341603, + 13.6322903 + ], + [ + 52.3410099, + 13.6326855 + ], + [ + 52.3394356, + 13.6336806 + ], + [ + 52.3392152, + 13.6338292 + ], + [ + 52.3390367, + 13.6339398 + ], + [ + 52.3388928, + 13.6340289 + ], + [ + 52.3388279, + 13.6340691 + ], + [ + 52.3387634, + 13.6341111 + ], + [ + 52.3386715, + 13.634171 + ], + [ + 52.3383762, + 13.6343632 + ], + [ + 52.3373618, + 13.6350204 + ], + [ + 52.3359245, + 13.6359484 + ], + [ + 52.335242, + 13.6363648 + ], + [ + 52.3349438, + 13.6365469 + ], + [ + 52.3346805, + 13.6367075 + ], + [ + 52.3337991, + 13.6371121 + ], + [ + 52.3328438, + 13.6374261 + ], + [ + 52.3325006, + 13.6375169 + ], + [ + 52.3321491, + 13.6375684 + ], + [ + 52.331761, + 13.6376199 + ], + [ + 52.3312942, + 13.63768 + ], + [ + 52.3308473, + 13.6377229 + ], + [ + 52.3307251, + 13.6377346 + ], + [ + 52.3305326, + 13.6377344 + ], + [ + 52.330267, + 13.6377341 + ], + [ + 52.3297096, + 13.6377078 + ], + [ + 52.3290032, + 13.6376022 + ], + [ + 52.3285913, + 13.6375079 + ], + [ + 52.3282047, + 13.6374225 + ], + [ + 52.3271398, + 13.6370366 + ], + [ + 52.3269694, + 13.6369749 + ], + [ + 52.3269083, + 13.6369504 + ], + [ + 52.3268506, + 13.636926 + ], + [ + 52.3266932, + 13.6368595 + ], + [ + 52.326173, + 13.6366399 + ], + [ + 52.3251915, + 13.6362431 + ], + [ + 52.32456, + 13.6359567 + ], + [ + 52.323915, + 13.6356706 + ], + [ + 52.3235717, + 13.6355265 + ], + [ + 52.323497, + 13.6354952 + ], + [ + 52.3230153, + 13.635293 + ], + [ + 52.3226291, + 13.6351327 + ], + [ + 52.3221767, + 13.6349546 + ], + [ + 52.322174, + 13.6349536 + ], + [ + 52.3220705, + 13.6349136 + ], + [ + 52.3220239, + 13.6348956 + ] + ] + }, + { + "osmId": "153148973", + "name": null, + "lengthMeters": 101.06679292393015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4716547, + 9.9980275 + ], + [ + 53.4715349, + 9.9979668 + ], + [ + 53.470788, + 9.9975676 + ] + ] + }, + { + "osmId": "153148977", + "name": "Niederelbebahn", + "lengthMeters": 390.13724105751805, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4744361, + 9.8453153 + ], + [ + 53.4744843, + 9.844093 + ], + [ + 53.4745221, + 9.8430836 + ], + [ + 53.474541, + 9.8425982 + ], + [ + 53.4745607, + 9.8421126 + ], + [ + 53.4746456, + 9.8398868 + ], + [ + 53.4746595, + 9.8394323 + ] + ] + }, + { + "osmId": "153148983", + "name": null, + "lengthMeters": 1822.96744282113, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6310925, + 9.8376644 + ], + [ + 53.6308771, + 9.83807 + ], + [ + 53.6306941, + 9.8384145 + ], + [ + 53.6303641, + 9.8390359 + ], + [ + 53.6302838, + 9.8391968 + ], + [ + 53.6300626, + 9.8396401 + ], + [ + 53.6296818, + 9.8404033 + ], + [ + 53.6296327, + 9.8405017 + ], + [ + 53.6289328, + 9.8419061 + ], + [ + 53.6279204, + 9.8439532 + ], + [ + 53.626432, + 9.8469759 + ], + [ + 53.6251454, + 9.84954 + ], + [ + 53.6250661, + 9.8496943 + ], + [ + 53.623896, + 9.8519701 + ], + [ + 53.6234581, + 9.8528301 + ], + [ + 53.6225832, + 9.8545461 + ], + [ + 53.6224357, + 9.8548315 + ], + [ + 53.6211544, + 9.8573071 + ], + [ + 53.6204446, + 9.8586819 + ] + ] + }, + { + "osmId": "153384056", + "name": null, + "lengthMeters": 628.2235944633389, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5641734, + 10.0537712 + ], + [ + 53.5642251, + 10.0540037 + ], + [ + 53.5645615, + 10.0554166 + ], + [ + 53.5647317, + 10.0561369 + ], + [ + 53.5648012, + 10.056431 + ], + [ + 53.5649026, + 10.0568601 + ], + [ + 53.564922, + 10.0569421 + ], + [ + 53.5649266, + 10.056961 + ], + [ + 53.5649526, + 10.0570682 + ], + [ + 53.5650484, + 10.0574627 + ], + [ + 53.5650674, + 10.0575315 + ], + [ + 53.5652849, + 10.0582644 + ], + [ + 53.565373, + 10.0585059 + ], + [ + 53.5655227, + 10.0588607 + ], + [ + 53.5656525, + 10.0591231 + ], + [ + 53.565795, + 10.0593564 + ], + [ + 53.5659284, + 10.0595853 + ], + [ + 53.566021, + 10.0597283 + ], + [ + 53.566139, + 10.0598949 + ], + [ + 53.5662777, + 10.0600806 + ], + [ + 53.5664326, + 10.0602295 + ], + [ + 53.5665724, + 10.0603788 + ], + [ + 53.5666585, + 10.0604471 + ], + [ + 53.5667468, + 10.0605157 + ], + [ + 53.5668515, + 10.0605869 + ], + [ + 53.5669532, + 10.0606474 + ], + [ + 53.5670793, + 10.0607106 + ], + [ + 53.5672015, + 10.0607584 + ], + [ + 53.5673862, + 10.0608161 + ], + [ + 53.5674655, + 10.0608309 + ] + ] + }, + { + "osmId": "153407184", + "name": null, + "lengthMeters": 1356.638700111588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4835353, + 10.2120632 + ], + [ + 53.4831326, + 10.2128017 + ], + [ + 53.4830139, + 10.2130082 + ], + [ + 53.4829645, + 10.2130908 + ], + [ + 53.4818852, + 10.2148685 + ], + [ + 53.4814605, + 10.2155691 + ], + [ + 53.481259, + 10.2159017 + ], + [ + 53.4811643, + 10.2160769 + ], + [ + 53.4810807, + 10.2162485 + ], + [ + 53.481005, + 10.2164247 + ], + [ + 53.4809383, + 10.216591 + ], + [ + 53.4808789, + 10.216754 + ], + [ + 53.4808239, + 10.2169201 + ], + [ + 53.4807722, + 10.2170958 + ], + [ + 53.4807234, + 10.2172816 + ], + [ + 53.4806701, + 10.2175068 + ], + [ + 53.4805459, + 10.2180398 + ], + [ + 53.4802646, + 10.219242 + ], + [ + 53.4796494, + 10.2218753 + ], + [ + 53.4790849, + 10.2242881 + ], + [ + 53.4790454, + 10.2244554 + ], + [ + 53.4789896, + 10.2247105 + ], + [ + 53.4789405, + 10.2249793 + ], + [ + 53.478903, + 10.2252344 + ], + [ + 53.4788725, + 10.2255158 + ], + [ + 53.4788532, + 10.2258067 + ], + [ + 53.4788443, + 10.226103 + ], + [ + 53.4788455, + 10.2264025 + ], + [ + 53.4788597, + 10.226707 + ], + [ + 53.4788879, + 10.2270337 + ], + [ + 53.4791212, + 10.2291934 + ], + [ + 53.4791507, + 10.2294958 + ], + [ + 53.4791652, + 10.2296976 + ], + [ + 53.4791787, + 10.2298918 + ], + [ + 53.4791857, + 10.2300818 + ] + ] + }, + { + "osmId": "153407189", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 125.54813108117179, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4880219, + 10.2022827 + ], + [ + 53.48823, + 10.2029635 + ], + [ + 53.4884066, + 10.2034586 + ], + [ + 53.4885844, + 10.2039263 + ] + ] + }, + { + "osmId": "153424801", + "name": null, + "lengthMeters": 367.8555381839719, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5272996, + 13.4082967 + ], + [ + 52.5272139, + 13.4082299 + ], + [ + 52.5270733, + 13.4081129 + ], + [ + 52.5270199, + 13.4080707 + ], + [ + 52.5269691, + 13.4080305 + ], + [ + 52.5268958, + 13.4079717 + ], + [ + 52.5266075, + 13.4077408 + ], + [ + 52.5263142, + 13.4075016 + ], + [ + 52.5262807, + 13.4074742 + ], + [ + 52.5262234, + 13.4074274 + ], + [ + 52.526147, + 13.4073649 + ], + [ + 52.5260464, + 13.4072816 + ], + [ + 52.5253628, + 13.406737 + ], + [ + 52.5250592, + 13.4064952 + ], + [ + 52.5250315, + 13.4064722 + ], + [ + 52.5250022, + 13.4064404 + ], + [ + 52.5249375, + 13.4063528 + ], + [ + 52.5249006, + 13.4062654 + ], + [ + 52.5248671, + 13.4061733 + ], + [ + 52.5248478, + 13.406096 + ], + [ + 52.5248318, + 13.4060289 + ], + [ + 52.5247329, + 13.4056154 + ], + [ + 52.5246711, + 13.4053568 + ] + ] + }, + { + "osmId": "153424809", + "name": null, + "lengthMeters": 168.34044236411864, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257751, + 13.4185342 + ], + [ + 52.5259413, + 13.4181546 + ], + [ + 52.526193, + 13.4175711 + ], + [ + 52.5262732, + 13.4173968 + ], + [ + 52.5263057, + 13.4173262 + ], + [ + 52.5265393, + 13.4167971 + ], + [ + 52.5266632, + 13.4165191 + ] + ] + }, + { + "osmId": "153424817", + "name": null, + "lengthMeters": 84.49157732682622, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289194, + 13.4087008 + ], + [ + 52.5287997, + 13.4092283 + ], + [ + 52.5287545, + 13.4094402 + ], + [ + 52.528719, + 13.4096139 + ], + [ + 52.5287053, + 13.4096791 + ], + [ + 52.5286693, + 13.4098798 + ] + ] + }, + { + "osmId": "153424826", + "name": null, + "lengthMeters": 199.18894810203713, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5274367, + 13.4147959 + ], + [ + 52.527523, + 13.4145738 + ], + [ + 52.5276085, + 13.4143229 + ], + [ + 52.5281129, + 13.412543 + ], + [ + 52.5282235, + 13.4121535 + ] + ] + }, + { + "osmId": "153424828", + "name": null, + "lengthMeters": 366.5047047683116, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5273113, + 13.4082648 + ], + [ + 52.5272262, + 13.4081925 + ], + [ + 52.5271196, + 13.4081099 + ], + [ + 52.5270926, + 13.4080881 + ], + [ + 52.5270292, + 13.408037 + ], + [ + 52.5269656, + 13.4079862 + ], + [ + 52.5269059, + 13.4079376 + ], + [ + 52.5266314, + 13.4077164 + ], + [ + 52.5263236, + 13.4074689 + ], + [ + 52.5262773, + 13.4074303 + ], + [ + 52.5262327, + 13.407396 + ], + [ + 52.5260512, + 13.4072503 + ], + [ + 52.5259163, + 13.4071406 + ], + [ + 52.5256247, + 13.4069045 + ], + [ + 52.525415, + 13.4067356 + ], + [ + 52.5252726, + 13.406621 + ], + [ + 52.5252077, + 13.4065674 + ], + [ + 52.5250747, + 13.4064578 + ], + [ + 52.5250343, + 13.4064253 + ], + [ + 52.5250169, + 13.4063996 + ], + [ + 52.5249664, + 13.4063288 + ], + [ + 52.5249447, + 13.4062833 + ], + [ + 52.5249211, + 13.4062337 + ], + [ + 52.5248957, + 13.4061514 + ], + [ + 52.5248892, + 13.4061315 + ], + [ + 52.5248746, + 13.4060654 + ], + [ + 52.5246946, + 13.4053289 + ] + ] + }, + { + "osmId": "153424840", + "name": null, + "lengthMeters": 199.27894978284715, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5282036, + 13.4121352 + ], + [ + 52.5280913, + 13.4125181 + ], + [ + 52.5275904, + 13.4143042 + ], + [ + 52.5275155, + 13.4145453 + ], + [ + 52.5274198, + 13.4147809 + ] + ] + }, + { + "osmId": "153427725", + "name": null, + "lengthMeters": 445.31107393344905, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289457, + 13.4087167 + ], + [ + 52.5290065, + 13.408419 + ], + [ + 52.5290649, + 13.4080875 + ], + [ + 52.5291279, + 13.4077023 + ], + [ + 52.5292335, + 13.4070813 + ], + [ + 52.5292763, + 13.4068293 + ], + [ + 52.5294052, + 13.4060682 + ], + [ + 52.5294782, + 13.4056457 + ], + [ + 52.5294869, + 13.4055947 + ], + [ + 52.5294937, + 13.4055549 + ], + [ + 52.5295988, + 13.4049458 + ], + [ + 52.5297479, + 13.4040525 + ], + [ + 52.529776, + 13.403874 + ], + [ + 52.5297976, + 13.4036945 + ], + [ + 52.5298074, + 13.4035515 + ], + [ + 52.5298092, + 13.4034208 + ], + [ + 52.5298107, + 13.4033075 + ], + [ + 52.5297977, + 13.4030317 + ], + [ + 52.5297626, + 13.4023305 + ] + ] + }, + { + "osmId": "153537606", + "name": null, + "lengthMeters": 219.5538125414679, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5241679, + 13.4028557 + ], + [ + 52.5245499, + 13.4030789 + ], + [ + 52.5245535, + 13.403081 + ], + [ + 52.5246537, + 13.4031443 + ], + [ + 52.5247207, + 13.4031847 + ], + [ + 52.5248728, + 13.4032739 + ], + [ + 52.5253215, + 13.4035047 + ], + [ + 52.525577, + 13.4036321 + ], + [ + 52.525683, + 13.4036796 + ], + [ + 52.5257756, + 13.4037025 + ], + [ + 52.525784, + 13.4037038 + ], + [ + 52.5258672, + 13.4037171 + ], + [ + 52.5259254, + 13.4037185 + ], + [ + 52.5259796, + 13.4037164 + ], + [ + 52.5260061, + 13.4037105 + ], + [ + 52.5260192, + 13.4037076 + ], + [ + 52.5260588, + 13.4036987 + ] + ] + }, + { + "osmId": "153537614", + "name": null, + "lengthMeters": 516.0958505141541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281661, + 13.4025086 + ], + [ + 52.5281215, + 13.4025451 + ], + [ + 52.5280697, + 13.4025874 + ], + [ + 52.5280222, + 13.4026241 + ], + [ + 52.5278802, + 13.4027337 + ], + [ + 52.5277066, + 13.4028759 + ], + [ + 52.5272969, + 13.4032116 + ], + [ + 52.5271524, + 13.4032935 + ], + [ + 52.5270038, + 13.4033555 + ], + [ + 52.5267974, + 13.4034202 + ], + [ + 52.5263885, + 13.4035528 + ], + [ + 52.5262388, + 13.4036043 + ], + [ + 52.5262055, + 13.403612 + ], + [ + 52.5261029, + 13.4036357 + ], + [ + 52.5259659, + 13.4036716 + ], + [ + 52.5259308, + 13.4036759 + ], + [ + 52.5258897, + 13.4036728 + ], + [ + 52.5257984, + 13.4036629 + ], + [ + 52.5256912, + 13.4036372 + ], + [ + 52.5255821, + 13.4035925 + ], + [ + 52.5255494, + 13.4035756 + ], + [ + 52.5253284, + 13.4034615 + ], + [ + 52.5250075, + 13.4033014 + ], + [ + 52.5248806, + 13.4032328 + ], + [ + 52.5245625, + 13.4030406 + ], + [ + 52.5245583, + 13.4030382 + ], + [ + 52.5241136, + 13.402772 + ], + [ + 52.5239106, + 13.402648 + ], + [ + 52.5238354, + 13.402603 + ], + [ + 52.5237672, + 13.4025562 + ] + ] + }, + { + "osmId": "153758826", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1073.3946440696616, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4871917, + 10.1856817 + ], + [ + 53.4869549, + 10.1877855 + ], + [ + 53.4868803, + 10.1884677 + ], + [ + 53.4868612, + 10.1886481 + ], + [ + 53.4868304, + 10.1889569 + ], + [ + 53.4867825, + 10.1894493 + ], + [ + 53.4867446, + 10.1899011 + ], + [ + 53.4867078, + 10.190361 + ], + [ + 53.4866767, + 10.1908338 + ], + [ + 53.486651, + 10.1913229 + ], + [ + 53.486647, + 10.1914231 + ], + [ + 53.4866199, + 10.1922263 + ], + [ + 53.4866148, + 10.1929964 + ], + [ + 53.4866361, + 10.1941259 + ], + [ + 53.4866852, + 10.1950748 + ], + [ + 53.486767, + 10.1960717 + ], + [ + 53.4868946, + 10.1971858 + ], + [ + 53.486901, + 10.1972414 + ], + [ + 53.4870499, + 10.1982461 + ], + [ + 53.4872005, + 10.1990887 + ], + [ + 53.48744, + 10.2001767 + ], + [ + 53.4876164, + 10.2008906 + ], + [ + 53.4877934, + 10.201528 + ] + ] + }, + { + "osmId": "153950519", + "name": null, + "lengthMeters": 228.46772597325014, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118365, + 13.4306131 + ], + [ + 52.5120708, + 13.4287781 + ], + [ + 52.5120793, + 13.4287112 + ], + [ + 52.5121493, + 13.4280797 + ], + [ + 52.5121677, + 13.4276899 + ], + [ + 52.5121701, + 13.42729 + ] + ] + }, + { + "osmId": "153963632", + "name": null, + "lengthMeters": 146.294288082393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5380901, + 13.423598 + ], + [ + 52.5381542, + 13.4236357 + ], + [ + 52.5387531, + 13.4239898 + ], + [ + 52.5388436, + 13.4240433 + ], + [ + 52.5388854, + 13.424068 + ], + [ + 52.5390141, + 13.4241441 + ], + [ + 52.5390635, + 13.4241733 + ], + [ + 52.5391641, + 13.4242327 + ], + [ + 52.539192, + 13.4242492 + ], + [ + 52.5392663, + 13.4242931 + ], + [ + 52.5393282, + 13.4243297 + ] + ] + }, + { + "osmId": "153964325", + "name": null, + "lengthMeters": 433.0470903528008, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381865, + 13.4271475 + ], + [ + 52.5378916, + 13.4280022 + ], + [ + 52.5376701, + 13.428643 + ], + [ + 52.5376193, + 13.4287918 + ], + [ + 52.5375695, + 13.4289375 + ], + [ + 52.5372486, + 13.4298678 + ], + [ + 52.5363204, + 13.4325586 + ], + [ + 52.5362666, + 13.4327182 + ] + ] + }, + { + "osmId": "154121673", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1173.0291240437487, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4959905, + 10.2250567 + ], + [ + 53.4962715, + 10.2275017 + ], + [ + 53.4964295, + 10.2285317 + ], + [ + 53.4965449, + 10.2292084 + ], + [ + 53.4966645, + 10.2298673 + ], + [ + 53.4968213, + 10.2306236 + ], + [ + 53.4969965, + 10.2313712 + ], + [ + 53.4972136, + 10.2322359 + ], + [ + 53.4973292, + 10.2326384 + ], + [ + 53.4974147, + 10.232936 + ], + [ + 53.4976706, + 10.2337616 + ], + [ + 53.4979309, + 10.2345108 + ], + [ + 53.4979915, + 10.2346733 + ], + [ + 53.4981883, + 10.2352006 + ], + [ + 53.4984849, + 10.2359263 + ], + [ + 53.4987393, + 10.2364696 + ], + [ + 53.4989064, + 10.2368264 + ], + [ + 53.4993456, + 10.2377305 + ], + [ + 53.4994026, + 10.2378445 + ], + [ + 53.499628, + 10.2382951 + ], + [ + 53.4999411, + 10.2388337 + ], + [ + 53.5004363, + 10.2396551 + ], + [ + 53.5006503, + 10.2399719 + ], + [ + 53.5008898, + 10.2403029 + ] + ] + }, + { + "osmId": "154121762", + "name": null, + "lengthMeters": 1161.7231868492597, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4960809, + 10.2250304 + ], + [ + 53.4960956, + 10.2251992 + ], + [ + 53.4963456, + 10.2274779 + ], + [ + 53.4964904, + 10.2284984 + ], + [ + 53.4965998, + 10.2291818 + ], + [ + 53.4967343, + 10.2298492 + ], + [ + 53.4968767, + 10.230585 + ], + [ + 53.4970585, + 10.2313492 + ], + [ + 53.4972773, + 10.2321995 + ], + [ + 53.497471, + 10.2328748 + ], + [ + 53.4977245, + 10.2337081 + ], + [ + 53.4979863, + 10.234446 + ], + [ + 53.4982455, + 10.235146 + ], + [ + 53.4985382, + 10.2358508 + ], + [ + 53.4989446, + 10.2367559 + ], + [ + 53.4993802, + 10.2376493 + ], + [ + 53.4996779, + 10.2382267 + ], + [ + 53.4999806, + 10.2387114 + ], + [ + 53.5002275, + 10.2391349 + ], + [ + 53.5004936, + 10.2395329 + ], + [ + 53.5009022, + 10.240136 + ] + ] + }, + { + "osmId": "154121768", + "name": null, + "lengthMeters": 187.76037783203185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4956746, + 10.2217354 + ], + [ + 53.4958103, + 10.2226654 + ], + [ + 53.4959162, + 10.2235504 + ], + [ + 53.4959831, + 10.2241382 + ], + [ + 53.4960239, + 10.2245117 + ] + ] + }, + { + "osmId": "154121773", + "name": null, + "lengthMeters": 504.91357786859976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4938165, + 10.2148057 + ], + [ + 53.4940035, + 10.2153157 + ], + [ + 53.4943311, + 10.2162092 + ], + [ + 53.4947083, + 10.2174657 + ], + [ + 53.4949895, + 10.2184583 + ], + [ + 53.4952605, + 10.2195392 + ], + [ + 53.4954713, + 10.2205832 + ], + [ + 53.4955773, + 10.2211473 + ], + [ + 53.4956746, + 10.2217354 + ] + ] + }, + { + "osmId": "154137225", + "name": null, + "lengthMeters": 188.49985210361754, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406363, + 13.411845 + ], + [ + 52.5407377, + 13.4119651 + ], + [ + 52.5409054, + 13.4121411 + ], + [ + 52.5409469, + 13.4121892 + ], + [ + 52.5409937, + 13.4122354 + ], + [ + 52.5409987, + 13.4122404 + ], + [ + 52.5410141, + 13.4122573 + ], + [ + 52.5410302, + 13.4122743 + ], + [ + 52.5410503, + 13.4122952 + ], + [ + 52.5410721, + 13.4123186 + ], + [ + 52.5411134, + 13.4123624 + ], + [ + 52.5411375, + 13.4123882 + ], + [ + 52.5411417, + 13.4123925 + ], + [ + 52.5412124, + 13.4124633 + ], + [ + 52.5412355, + 13.4124886 + ], + [ + 52.5413929, + 13.412652 + ], + [ + 52.5415991, + 13.4128789 + ], + [ + 52.5420526, + 13.4133758 + ] + ] + }, + { + "osmId": "154188922", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 330.4668273102225, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4886882, + 10.2041903 + ], + [ + 53.4888852, + 10.2046577 + ], + [ + 53.4890036, + 10.2049294 + ], + [ + 53.4891159, + 10.2051814 + ], + [ + 53.4892693, + 10.2055135 + ], + [ + 53.4895476, + 10.2060945 + ], + [ + 53.490084, + 10.2071603 + ], + [ + 53.4902867, + 10.2075631 + ], + [ + 53.4904944, + 10.2079646 + ], + [ + 53.4905525, + 10.2080769 + ] + ] + }, + { + "osmId": "154188927", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 422.2423585523709, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4906634, + 10.2082917 + ], + [ + 53.4913342, + 10.2096062 + ], + [ + 53.4915397, + 10.210015 + ], + [ + 53.4918289, + 10.2105778 + ], + [ + 53.4921225, + 10.2111626 + ], + [ + 53.492308, + 10.2115458 + ], + [ + 53.4925884, + 10.2121399 + ], + [ + 53.4928739, + 10.2127794 + ], + [ + 53.4929852, + 10.2130341 + ], + [ + 53.4930694, + 10.2132266 + ] + ] + }, + { + "osmId": "154284647", + "name": null, + "lengthMeters": 415.2681152394357, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5341058, + 13.4039961 + ], + [ + 52.5340298, + 13.4035111 + ], + [ + 52.5340173, + 13.4034599 + ], + [ + 52.5340037, + 13.4034208 + ], + [ + 52.5339889, + 13.403392 + ], + [ + 52.5339598, + 13.4033344 + ], + [ + 52.5339294, + 13.4032912 + ], + [ + 52.5339005, + 13.4032581 + ], + [ + 52.5337419, + 13.4031036 + ], + [ + 52.533667, + 13.4030297 + ], + [ + 52.5336194, + 13.4029802 + ], + [ + 52.5335883, + 13.4029397 + ], + [ + 52.533559, + 13.4028891 + ], + [ + 52.5335249, + 13.4028108 + ], + [ + 52.533494, + 13.4026909 + ], + [ + 52.532764, + 13.3995725 + ], + [ + 52.5326549, + 13.3991038 + ], + [ + 52.5326229, + 13.3988967 + ], + [ + 52.5326203, + 13.3988802 + ], + [ + 52.5326187, + 13.3988691 + ], + [ + 52.5325899, + 13.3986676 + ], + [ + 52.5325757, + 13.3985615 + ] + ] + }, + { + "osmId": "154305219", + "name": null, + "lengthMeters": 95.8436847913321, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245363, + 13.4216718 + ], + [ + 52.5248647, + 13.4208075 + ], + [ + 52.5249092, + 13.4206844 + ], + [ + 52.5249909, + 13.4204682 + ] + ] + }, + { + "osmId": "154321040", + "name": null, + "lengthMeters": 332.2921787498817, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5238446, + 13.3974023 + ], + [ + 52.5238623, + 13.3973238 + ], + [ + 52.5238839, + 13.3972396 + ], + [ + 52.5239229, + 13.3971018 + ], + [ + 52.5240176, + 13.3967295 + ], + [ + 52.5240275, + 13.3966904 + ], + [ + 52.5240546, + 13.3966016 + ], + [ + 52.5241355, + 13.3962799 + ], + [ + 52.5241958, + 13.3960533 + ], + [ + 52.5242507, + 13.3958412 + ], + [ + 52.5243105, + 13.3956214 + ], + [ + 52.5243654, + 13.3954263 + ], + [ + 52.5243698, + 13.3954106 + ], + [ + 52.5243987, + 13.3952945 + ], + [ + 52.5244759, + 13.3949844 + ], + [ + 52.5244997, + 13.3948843 + ], + [ + 52.5245301, + 13.3947568 + ], + [ + 52.524585, + 13.3945338 + ], + [ + 52.5246837, + 13.3941396 + ], + [ + 52.5247802, + 13.3937506 + ], + [ + 52.5248384, + 13.3935156 + ], + [ + 52.52495, + 13.393065 + ], + [ + 52.5249978, + 13.392872 + ] + ] + }, + { + "osmId": "154351852", + "name": null, + "lengthMeters": 166.83238716080956, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5517295, + 13.4649391 + ], + [ + 52.5517883, + 13.4650658 + ], + [ + 52.5518375, + 13.4651795 + ], + [ + 52.5518745, + 13.4652767 + ], + [ + 52.551903, + 13.4653541 + ], + [ + 52.5519301, + 13.4654335 + ], + [ + 52.5519397, + 13.4654629 + ], + [ + 52.5519982, + 13.4656272 + ], + [ + 52.5520179, + 13.4656795 + ], + [ + 52.55204, + 13.4657353 + ], + [ + 52.5520903, + 13.4658542 + ], + [ + 52.5522341, + 13.4661666 + ], + [ + 52.5523432, + 13.4663601 + ], + [ + 52.5523685, + 13.4663984 + ], + [ + 52.5524982, + 13.4665945 + ], + [ + 52.5525722, + 13.4666855 + ], + [ + 52.5526822, + 13.4668136 + ] + ] + }, + { + "osmId": "154359983", + "name": null, + "lengthMeters": 125.79178075087385, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.551682, + 13.509016 + ], + [ + 52.551511, + 13.5091241 + ], + [ + 52.551444, + 13.5091643 + ], + [ + 52.5508669, + 13.5095067 + ], + [ + 52.5506196, + 13.5096551 + ] + ] + }, + { + "osmId": "154396789", + "name": null, + "lengthMeters": 242.73303780270777, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5541347, + 13.4676442 + ], + [ + 52.5542305, + 13.4676553 + ], + [ + 52.5543661, + 13.4676622 + ], + [ + 52.5546518, + 13.4676523 + ], + [ + 52.5548156, + 13.4676381 + ], + [ + 52.5548897, + 13.4676339 + ], + [ + 52.5549325, + 13.4676315 + ], + [ + 52.5550011, + 13.4676298 + ], + [ + 52.5551357, + 13.4676152 + ], + [ + 52.5553455, + 13.467569 + ], + [ + 52.5554794, + 13.4675383 + ], + [ + 52.555615, + 13.4675081 + ], + [ + 52.5558914, + 13.4674454 + ], + [ + 52.5561113, + 13.467392 + ], + [ + 52.5562048, + 13.467361 + ], + [ + 52.5563028, + 13.4673236 + ] + ] + }, + { + "osmId": "154417174", + "name": "Isartalbahn", + "lengthMeters": 285.2072540231791, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0719879, + 11.5313569 + ], + [ + 48.0720158, + 11.5313671 + ], + [ + 48.0721148, + 11.5314034 + ], + [ + 48.072253, + 11.5314444 + ], + [ + 48.0723574, + 11.5314712 + ], + [ + 48.0725106, + 11.5315045 + ], + [ + 48.0726645, + 11.5315266 + ], + [ + 48.0727763, + 11.5315377 + ], + [ + 48.0730505, + 11.5315504 + ], + [ + 48.0732373, + 11.5315378 + ], + [ + 48.0734248, + 11.5315156 + ], + [ + 48.0735939, + 11.5314821 + ], + [ + 48.0737643, + 11.5314402 + ], + [ + 48.0739484, + 11.5313795 + ], + [ + 48.0741172, + 11.5313125 + ], + [ + 48.0742651, + 11.5312363 + ], + [ + 48.0744056, + 11.5311472 + ], + [ + 48.0744973, + 11.5310832 + ] + ] + }, + { + "osmId": "154417176", + "name": "Isartalbahn", + "lengthMeters": 316.93471490813135, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0746876, + 11.5305241 + ], + [ + 48.0745961, + 11.5306373 + ], + [ + 48.0744993, + 11.5307475 + ], + [ + 48.0743955, + 11.5308482 + ], + [ + 48.0742907, + 11.5309447 + ], + [ + 48.0741798, + 11.5310359 + ], + [ + 48.0740673, + 11.5311185 + ], + [ + 48.0739152, + 11.5312159 + ], + [ + 48.0737159, + 11.5313156 + ], + [ + 48.0735911, + 11.5313666 + ], + [ + 48.0734274, + 11.5314201 + ], + [ + 48.0732411, + 11.5314591 + ], + [ + 48.0731294, + 11.5314778 + ], + [ + 48.0730152, + 11.5314859 + ], + [ + 48.07291, + 11.5314871 + ], + [ + 48.0728049, + 11.5314857 + ], + [ + 48.0726719, + 11.5314725 + ], + [ + 48.072522, + 11.5314487 + ], + [ + 48.0723992, + 11.5314189 + ], + [ + 48.0722609, + 11.5313734 + ], + [ + 48.072126, + 11.5313191 + ], + [ + 48.0720348, + 11.5312772 + ], + [ + 48.0720075, + 11.5312647 + ] + ] + }, + { + "osmId": "154456585", + "name": null, + "lengthMeters": 449.17799265850294, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969818, + 13.4660618 + ], + [ + 52.4971722, + 13.466342 + ], + [ + 52.4973563, + 13.4665832 + ], + [ + 52.4975718, + 13.4668459 + ], + [ + 52.4978618, + 13.4671471 + ], + [ + 52.4980306, + 13.4673032 + ], + [ + 52.4981618, + 13.467415 + ], + [ + 52.4983051, + 13.4675277 + ], + [ + 52.4984536, + 13.4676285 + ], + [ + 52.4985924, + 13.4677128 + ], + [ + 52.4987314, + 13.4677912 + ], + [ + 52.4989311, + 13.4678912 + ], + [ + 52.4990963, + 13.467965 + ], + [ + 52.4992586, + 13.4680301 + ], + [ + 52.4994057, + 13.4680871 + ], + [ + 52.5001991, + 13.4684037 + ], + [ + 52.5006522, + 13.4685845 + ] + ] + }, + { + "osmId": "154456590", + "name": null, + "lengthMeters": 173.72850361020522, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5022951, + 13.469096 + ], + [ + 52.5023589, + 13.4691245 + ], + [ + 52.5024992, + 13.4691909 + ], + [ + 52.5036523, + 13.4697774 + ], + [ + 52.5037893, + 13.4698456 + ] + ] + }, + { + "osmId": "154456594", + "name": null, + "lengthMeters": 179.00656167495853, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023616, + 13.4687014 + ], + [ + 52.5020356, + 13.4686559 + ], + [ + 52.5017516, + 13.4685895 + ], + [ + 52.5015918, + 13.4685426 + ], + [ + 52.5014222, + 13.4684854 + ], + [ + 52.5010741, + 13.4683521 + ], + [ + 52.500875, + 13.46827 + ], + [ + 52.5008725, + 13.468269 + ], + [ + 52.5007803, + 13.468231 + ] + ] + }, + { + "osmId": "154456628", + "name": null, + "lengthMeters": 176.21354825528869, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038985, + 13.4692922 + ], + [ + 52.5035035, + 13.4690568 + ], + [ + 52.5033385, + 13.4689771 + ], + [ + 52.5032683, + 13.468943 + ], + [ + 52.5031982, + 13.4689153 + ], + [ + 52.503015, + 13.4688562 + ], + [ + 52.5029187, + 13.4688277 + ], + [ + 52.5027427, + 13.4687755 + ], + [ + 52.5026443, + 13.4687517 + ], + [ + 52.5026333, + 13.4687501 + ], + [ + 52.5025382, + 13.4687367 + ], + [ + 52.5024075, + 13.4687101 + ], + [ + 52.5023616, + 13.4687014 + ] + ] + }, + { + "osmId": "154457256", + "name": null, + "lengthMeters": 107.37222948862144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520359, + 13.4789919 + ], + [ + 52.5203743, + 13.4791629 + ], + [ + 52.520382, + 13.4792483 + ], + [ + 52.5203919, + 13.4793232 + ], + [ + 52.5204069, + 13.4794126 + ], + [ + 52.5204258, + 13.4794995 + ], + [ + 52.5204529, + 13.4796 + ], + [ + 52.5204689, + 13.4796442 + ], + [ + 52.5206145, + 13.480031 + ], + [ + 52.5206361, + 13.4800879 + ], + [ + 52.5206738, + 13.4801625 + ], + [ + 52.5206992, + 13.4801965 + ], + [ + 52.5207326, + 13.4802267 + ], + [ + 52.5208315, + 13.4802744 + ] + ] + }, + { + "osmId": "154460035", + "name": null, + "lengthMeters": 845.179364140135, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6828135, + 9.9862429 + ], + [ + 53.6828531, + 9.9862399 + ], + [ + 53.6834052, + 9.9862275 + ], + [ + 53.6837901, + 9.9861871 + ], + [ + 53.6844786, + 9.9861288 + ], + [ + 53.6856023, + 9.9860324 + ], + [ + 53.6867557, + 9.9858725 + ], + [ + 53.6888937, + 9.9856725 + ], + [ + 53.6892441, + 9.9856479 + ], + [ + 53.6896923, + 9.9856091 + ], + [ + 53.6901537, + 9.9855837 + ], + [ + 53.6904029, + 9.9855912 + ] + ] + }, + { + "osmId": "154480484", + "name": null, + "lengthMeters": 304.3887717327431, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6635648, + 13.2865368 + ], + [ + 52.6636998, + 13.2865539 + ], + [ + 52.6638346, + 13.2865736 + ], + [ + 52.663856, + 13.2865773 + ], + [ + 52.6639692, + 13.286597 + ], + [ + 52.664326, + 13.2866621 + ], + [ + 52.6644613, + 13.2866848 + ], + [ + 52.6645963, + 13.2867062 + ], + [ + 52.6647308, + 13.2867221 + ], + [ + 52.664866, + 13.2867345 + ], + [ + 52.6650006, + 13.2867469 + ], + [ + 52.6651365, + 13.2867545 + ], + [ + 52.6652721, + 13.2867594 + ], + [ + 52.6654522, + 13.2867658 + ], + [ + 52.6656268, + 13.286772 + ], + [ + 52.6657626, + 13.2867759 + ], + [ + 52.6658988, + 13.286786 + ], + [ + 52.6661642, + 13.2868092 + ], + [ + 52.6662374, + 13.286817 + ], + [ + 52.6662953, + 13.2868232 + ] + ] + }, + { + "osmId": "154480485", + "name": null, + "lengthMeters": 3043.282526621615, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6717134, + 13.3150185 + ], + [ + 52.6717677, + 13.3148212 + ], + [ + 52.6718204, + 13.3146234 + ], + [ + 52.6718706, + 13.3144256 + ], + [ + 52.6719184, + 13.3142274 + ], + [ + 52.671965, + 13.3140267 + ], + [ + 52.6720106, + 13.3138222 + ], + [ + 52.6720528, + 13.3136178 + ], + [ + 52.6720927, + 13.3134112 + ], + [ + 52.6721287, + 13.3132013 + ], + [ + 52.6721613, + 13.312991 + ], + [ + 52.6721902, + 13.3127808 + ], + [ + 52.6722148, + 13.3125659 + ], + [ + 52.6722356, + 13.3123516 + ], + [ + 52.6722516, + 13.3121375 + ], + [ + 52.672265, + 13.3119228 + ], + [ + 52.672275, + 13.311707 + ], + [ + 52.6722796, + 13.3114914 + ], + [ + 52.6722817, + 13.3112748 + ], + [ + 52.6722802, + 13.3110591 + ], + [ + 52.6722738, + 13.3108431 + ], + [ + 52.6722641, + 13.310628 + ], + [ + 52.6722506, + 13.310415 + ], + [ + 52.6722324, + 13.3102002 + ], + [ + 52.6722116, + 13.309987 + ], + [ + 52.6721867, + 13.309775 + ], + [ + 52.6721579, + 13.3095648 + ], + [ + 52.6721261, + 13.3093556 + ], + [ + 52.6720899, + 13.3091489 + ], + [ + 52.6720503, + 13.3089435 + ], + [ + 52.6720064, + 13.3087408 + ], + [ + 52.6719598, + 13.3085393 + ], + [ + 52.6719094, + 13.3083397 + ], + [ + 52.6718548, + 13.3081433 + ], + [ + 52.6717975, + 13.307949 + ], + [ + 52.6717366, + 13.3077575 + ], + [ + 52.6716715, + 13.3075708 + ], + [ + 52.6716051, + 13.3073851 + ], + [ + 52.6715336, + 13.307204 + ], + [ + 52.6714593, + 13.3070252 + ], + [ + 52.6713826, + 13.3068506 + ], + [ + 52.6713016, + 13.3066798 + ], + [ + 52.6712178, + 13.3065131 + ], + [ + 52.6711323, + 13.3063499 + ], + [ + 52.6710426, + 13.3061917 + ], + [ + 52.6709508, + 13.3060379 + ], + [ + 52.6708563, + 13.3058868 + ], + [ + 52.6707588, + 13.3057429 + ], + [ + 52.670659, + 13.3056026 + ], + [ + 52.6705568, + 13.3054666 + ], + [ + 52.6704522, + 13.305337 + ], + [ + 52.6703455, + 13.3052119 + ], + [ + 52.6702366, + 13.3050922 + ], + [ + 52.6701258, + 13.3049773 + ], + [ + 52.670013, + 13.3048673 + ], + [ + 52.6698982, + 13.3047625 + ], + [ + 52.6697812, + 13.3046645 + ], + [ + 52.6696625, + 13.3045713 + ], + [ + 52.6695427, + 13.3044839 + ], + [ + 52.6694213, + 13.3044032 + ], + [ + 52.6692987, + 13.3043292 + ], + [ + 52.669175, + 13.3042584 + ], + [ + 52.6690496, + 13.3041948 + ], + [ + 52.6689222, + 13.3041375 + ], + [ + 52.6687949, + 13.3040843 + ], + [ + 52.6686659, + 13.3040359 + ], + [ + 52.6685381, + 13.303991 + ], + [ + 52.6662391, + 13.3032511 + ], + [ + 52.6661099, + 13.3032077 + ], + [ + 52.665972, + 13.3031589 + ], + [ + 52.6658443, + 13.3031102 + ], + [ + 52.6657166, + 13.3030595 + ], + [ + 52.6655905, + 13.3030009 + ], + [ + 52.6654638, + 13.3029391 + ], + [ + 52.6653386, + 13.3028678 + ], + [ + 52.6652148, + 13.3027945 + ], + [ + 52.6650915, + 13.3027174 + ], + [ + 52.6649703, + 13.3026348 + ], + [ + 52.6648496, + 13.3025467 + ], + [ + 52.6647308, + 13.3024547 + ], + [ + 52.6646131, + 13.3023577 + ], + [ + 52.6644975, + 13.3022558 + ], + [ + 52.6643823, + 13.3021497 + ], + [ + 52.6642695, + 13.3020385 + ], + [ + 52.6641579, + 13.3019237 + ], + [ + 52.6640482, + 13.3018032 + ], + [ + 52.6639404, + 13.3016793 + ], + [ + 52.6638347, + 13.3015513 + ], + [ + 52.6637295, + 13.3014179 + ], + [ + 52.6636264, + 13.3012799 + ], + [ + 52.6635256, + 13.3011387 + ], + [ + 52.6634262, + 13.3009924 + ], + [ + 52.6633304, + 13.3008432 + ], + [ + 52.6632361, + 13.3006898 + ], + [ + 52.6631444, + 13.3005331 + ], + [ + 52.6630546, + 13.3003733 + ], + [ + 52.6629674, + 13.3002091 + ], + [ + 52.6628825, + 13.3000412 + ], + [ + 52.6628005, + 13.2998697 + ], + [ + 52.6627209, + 13.2996947 + ], + [ + 52.6626441, + 13.2995185 + ], + [ + 52.6625697, + 13.299338 + ], + [ + 52.6624968, + 13.2991556 + ], + [ + 52.6624284, + 13.298967 + ], + [ + 52.6623615, + 13.2987769 + ], + [ + 52.6622973, + 13.2985853 + ], + [ + 52.6622366, + 13.2983901 + ], + [ + 52.6621794, + 13.2981916 + ], + [ + 52.662124, + 13.2979899 + ], + [ + 52.6620718, + 13.2977889 + ], + [ + 52.6620225, + 13.2975844 + ], + [ + 52.6619777, + 13.2973771 + ], + [ + 52.6619342, + 13.2971687 + ], + [ + 52.6618946, + 13.2969596 + ], + [ + 52.661858, + 13.296747 + ], + [ + 52.6618245, + 13.2965346 + ], + [ + 52.6617945, + 13.2963216 + ], + [ + 52.6617674, + 13.2961074 + ], + [ + 52.6617441, + 13.2958908 + ], + [ + 52.6617231, + 13.2956749 + ], + [ + 52.6617062, + 13.2954568 + ], + [ + 52.6616921, + 13.2952378 + ], + [ + 52.6616807, + 13.2950205 + ], + [ + 52.6616733, + 13.2948011 + ], + [ + 52.6616693, + 13.2945815 + ], + [ + 52.6616682, + 13.2943612 + ], + [ + 52.6616702, + 13.2941413 + ], + [ + 52.6616714, + 13.2940958 + ], + [ + 52.661676, + 13.2939208 + ], + [ + 52.6616852, + 13.293701 + ], + [ + 52.6616977, + 13.2934832 + ], + [ + 52.6617146, + 13.2932642 + ], + [ + 52.6617356, + 13.2930481 + ], + [ + 52.6617609, + 13.2928319 + ], + [ + 52.6617889, + 13.2926168 + ], + [ + 52.6618214, + 13.2924033 + ], + [ + 52.6618581, + 13.2921917 + ], + [ + 52.6618983, + 13.2919822 + ], + [ + 52.6619428, + 13.2917743 + ], + [ + 52.6619897, + 13.2915684 + ], + [ + 52.6620414, + 13.2913658 + ], + [ + 52.6620959, + 13.291165 + ], + [ + 52.6621549, + 13.2909674 + ], + [ + 52.662217, + 13.290773 + ], + [ + 52.6622828, + 13.2905796 + ], + [ + 52.6623521, + 13.2903915 + ], + [ + 52.6624253, + 13.290205 + ], + [ + 52.6625008, + 13.2900237 + ], + [ + 52.6625793, + 13.2898469 + ], + [ + 52.6626622, + 13.2896738 + ], + [ + 52.6627472, + 13.2895044 + ], + [ + 52.6628351, + 13.2893395 + ], + [ + 52.6629267, + 13.2891785 + ], + [ + 52.6630211, + 13.289023 + ], + [ + 52.6631184, + 13.2888712 + ], + [ + 52.6632176, + 13.2887247 + ], + [ + 52.6633198, + 13.2885837 + ], + [ + 52.6634238, + 13.2884477 + ], + [ + 52.6634738, + 13.2883866 + ], + [ + 52.663532, + 13.2883156 + ], + [ + 52.6636425, + 13.2881886 + ], + [ + 52.6637548, + 13.2880676 + ], + [ + 52.663869, + 13.2879518 + ], + [ + 52.6639852, + 13.2878424 + ], + [ + 52.6641037, + 13.2877382 + ], + [ + 52.6642241, + 13.2876394 + ], + [ + 52.6643462, + 13.2875472 + ], + [ + 52.6644694, + 13.2874607 + ], + [ + 52.6645944, + 13.2873797 + ], + [ + 52.6647208, + 13.2873072 + ], + [ + 52.6648484, + 13.2872384 + ], + [ + 52.6649772, + 13.2871777 + ], + [ + 52.6651075, + 13.2871226 + ], + [ + 52.665238, + 13.2870741 + ], + [ + 52.6653697, + 13.2870322 + ], + [ + 52.6655024, + 13.2869955 + ], + [ + 52.6655164, + 13.2869924 + ], + [ + 52.6656189, + 13.2869695 + ], + [ + 52.6656357, + 13.2869657 + ], + [ + 52.6657699, + 13.2869434 + ], + [ + 52.6659033, + 13.2869272 + ], + [ + 52.6660369, + 13.286918 + ], + [ + 52.666166, + 13.2869155 + ], + [ + 52.6662959, + 13.2869176 + ], + [ + 52.666429, + 13.2869243 + ], + [ + 52.6666974, + 13.2869475 + ], + [ + 52.667454, + 13.2870277 + ], + [ + 52.6675543, + 13.2870384 + ], + [ + 52.6677645, + 13.2870607 + ] + ] + }, + { + "osmId": "154505703", + "name": null, + "lengthMeters": 912.5402839886954, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1352586, + 11.5978039 + ], + [ + 48.1351917, + 11.5977811 + ], + [ + 48.1351664, + 11.5977712 + ], + [ + 48.1351418, + 11.597758 + ], + [ + 48.1351253, + 11.5977496 + ], + [ + 48.1350908, + 11.5977285 + ], + [ + 48.135057, + 11.5977033 + ], + [ + 48.1349855, + 11.5976435 + ], + [ + 48.1349185, + 11.5975873 + ], + [ + 48.1345536, + 11.5972904 + ], + [ + 48.1345053, + 11.597244 + ], + [ + 48.1344572, + 11.5971911 + ], + [ + 48.1344172, + 11.5971408 + ], + [ + 48.1343805, + 11.5970834 + ], + [ + 48.1343387, + 11.5970047 + ], + [ + 48.1343094, + 11.5969349 + ], + [ + 48.1342845, + 11.5968567 + ], + [ + 48.1342662, + 11.596774 + ], + [ + 48.1342636, + 11.596758 + ], + [ + 48.1342156, + 11.596417 + ], + [ + 48.134208, + 11.5963667 + ], + [ + 48.1341952, + 11.5962826 + ], + [ + 48.1341821, + 11.5962112 + ], + [ + 48.1341642, + 11.5961252 + ], + [ + 48.1340896, + 11.5957729 + ], + [ + 48.1340669, + 11.5956834 + ], + [ + 48.1338141, + 11.5946861 + ], + [ + 48.13379, + 11.5945968 + ], + [ + 48.1337211, + 11.5943484 + ], + [ + 48.133674, + 11.5941803 + ], + [ + 48.1336381, + 11.5940528 + ], + [ + 48.1335447, + 11.5937383 + ], + [ + 48.133442, + 11.5934178 + ], + [ + 48.1332496, + 11.5928229 + ], + [ + 48.1330746, + 11.5922818 + ], + [ + 48.1330583, + 11.5922313 + ], + [ + 48.1329589, + 11.5919205 + ], + [ + 48.13284, + 11.5915435 + ], + [ + 48.132746, + 11.5912498 + ], + [ + 48.1326044, + 11.5908351 + ], + [ + 48.1325697, + 11.5907524 + ], + [ + 48.1325302, + 11.5906731 + ], + [ + 48.1324988, + 11.5906126 + ], + [ + 48.1324604, + 11.5905492 + ], + [ + 48.1323776, + 11.5904324 + ], + [ + 48.131961, + 11.5898624 + ], + [ + 48.1319197, + 11.5898073 + ], + [ + 48.1318777, + 11.5897454 + ], + [ + 48.1318433, + 11.5896936 + ], + [ + 48.1317933, + 11.589603 + ], + [ + 48.1317605, + 11.5895342 + ], + [ + 48.131745, + 11.5894903 + ], + [ + 48.131719, + 11.5894208 + ], + [ + 48.1316996, + 11.589338 + ], + [ + 48.1316791, + 11.5892177 + ], + [ + 48.1315691, + 11.5881296 + ], + [ + 48.1315461, + 11.5878853 + ], + [ + 48.1315423, + 11.5877786 + ], + [ + 48.1315467, + 11.5876695 + ], + [ + 48.1315539, + 11.5875799 + ], + [ + 48.1315626, + 11.5874895 + ], + [ + 48.1315703, + 11.5874272 + ] + ] + }, + { + "osmId": "154520445", + "name": null, + "lengthMeters": 126.47127027517598, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0421281, + 11.5234542 + ], + [ + 48.0420602, + 11.5234003 + ], + [ + 48.0420503, + 11.5233921 + ], + [ + 48.0419275, + 11.5232925 + ], + [ + 48.0419137, + 11.5232838 + ], + [ + 48.0418994, + 11.5232762 + ], + [ + 48.0418851, + 11.5232695 + ], + [ + 48.0418707, + 11.5232639 + ], + [ + 48.0418542, + 11.5232599 + ], + [ + 48.0418375, + 11.5232577 + ], + [ + 48.0418198, + 11.5232581 + ], + [ + 48.0418021, + 11.5232599 + ], + [ + 48.0417848, + 11.523265 + ], + [ + 48.0417674, + 11.5232723 + ], + [ + 48.0417529, + 11.5232814 + ], + [ + 48.0417385, + 11.5232917 + ], + [ + 48.0417249, + 11.5233033 + ], + [ + 48.0417115, + 11.5233164 + ], + [ + 48.0416906, + 11.5233412 + ], + [ + 48.0416805, + 11.5233561 + ], + [ + 48.0416713, + 11.5233717 + ], + [ + 48.0416616, + 11.5233934 + ], + [ + 48.0416529, + 11.5234162 + ], + [ + 48.0416381, + 11.523464 + ], + [ + 48.0416292, + 11.5235004 + ], + [ + 48.041626, + 11.5235191 + ], + [ + 48.0416235, + 11.5235373 + ], + [ + 48.0416223, + 11.5235625 + ], + [ + 48.041623, + 11.5235835 + ], + [ + 48.0416246, + 11.5236045 + ], + [ + 48.0416292, + 11.5236469 + ], + [ + 48.0416354, + 11.5236784 + ], + [ + 48.0416435, + 11.523709 + ], + [ + 48.0416507, + 11.5237282 + ], + [ + 48.0416587, + 11.5237462 + ], + [ + 48.0416763, + 11.5237815 + ], + [ + 48.0416933, + 11.5238049 + ], + [ + 48.0417118, + 11.5238266 + ], + [ + 48.0417619, + 11.5238686 + ], + [ + 48.0419595, + 11.5240291 + ] + ] + }, + { + "osmId": "154520448", + "name": null, + "lengthMeters": 4480.52598727799, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0419595, + 11.5240291 + ], + [ + 48.0420941, + 11.5241416 + ], + [ + 48.042107, + 11.5241491 + ], + [ + 48.0421204, + 11.5241553 + ], + [ + 48.0421421, + 11.5241624 + ], + [ + 48.0421593, + 11.5241648 + ], + [ + 48.0421768, + 11.5241652 + ], + [ + 48.0422019, + 11.5241603 + ], + [ + 48.0422264, + 11.5241524 + ], + [ + 48.0422462, + 11.5241426 + ], + [ + 48.0422652, + 11.5241308 + ], + [ + 48.0422844, + 11.5241173 + ], + [ + 48.0423036, + 11.5241017 + ], + [ + 48.0423222, + 11.5240851 + ], + [ + 48.0423716, + 11.5240359 + ], + [ + 48.0424318, + 11.5239867 + ], + [ + 48.0424919, + 11.5239407 + ], + [ + 48.0425144, + 11.5239263 + ], + [ + 48.0425258, + 11.5239209 + ], + [ + 48.0425372, + 11.5239171 + ], + [ + 48.0425517, + 11.5239145 + ], + [ + 48.0425662, + 11.5239131 + ], + [ + 48.0425803, + 11.5239141 + ], + [ + 48.0425945, + 11.5239163 + ], + [ + 48.0426071, + 11.52392 + ], + [ + 48.0426194, + 11.5239249 + ], + [ + 48.0426314, + 11.5239307 + ], + [ + 48.0426417, + 11.5239371 + ], + [ + 48.0426514, + 11.5239444 + ], + [ + 48.0430441, + 11.5242751 + ], + [ + 48.0431916, + 11.5244326 + ], + [ + 48.0432864, + 11.5245789 + ], + [ + 48.0433586, + 11.5247185 + ], + [ + 48.0434248, + 11.5248806 + ], + [ + 48.0434881, + 11.5251169 + ], + [ + 48.0435151, + 11.5252925 + ], + [ + 48.0435181, + 11.5255085 + ], + [ + 48.0435136, + 11.5257696 + ], + [ + 48.0434881, + 11.5262963 + ], + [ + 48.0434734, + 11.5268175 + ], + [ + 48.0434625, + 11.5271102 + ], + [ + 48.0434589, + 11.5272165 + ], + [ + 48.0434559, + 11.5273196 + ], + [ + 48.0434545, + 11.5274259 + ], + [ + 48.0434575, + 11.5275494 + ], + [ + 48.04347, + 11.5276611 + ], + [ + 48.0435089, + 11.5278696 + ], + [ + 48.0435422, + 11.5280002 + ], + [ + 48.0435923, + 11.5281368 + ], + [ + 48.0436468, + 11.5282683 + ], + [ + 48.0437252, + 11.5284142 + ], + [ + 48.0438327, + 11.5285562 + ], + [ + 48.0442125, + 11.5290156 + ], + [ + 48.0463456, + 11.5314822 + ], + [ + 48.0468693, + 11.53209 + ], + [ + 48.0471492, + 11.5324253 + ], + [ + 48.0473929, + 11.5327765 + ], + [ + 48.0477977, + 11.5334157 + ], + [ + 48.0483289, + 11.5342305 + ], + [ + 48.0489834, + 11.535034 + ], + [ + 48.049471, + 11.5354905 + ], + [ + 48.0495651, + 11.5355793 + ], + [ + 48.0510261, + 11.5370147 + ], + [ + 48.0522614, + 11.5382118 + ], + [ + 48.0525694, + 11.5385185 + ], + [ + 48.0528812, + 11.5388113 + ], + [ + 48.0531981, + 11.5391003 + ], + [ + 48.0535229, + 11.5393701 + ], + [ + 48.0539031, + 11.5397 + ], + [ + 48.0542881, + 11.540016 + ], + [ + 48.0550295, + 11.5406155 + ], + [ + 48.0550828, + 11.5406587 + ], + [ + 48.0551231, + 11.5406906 + ], + [ + 48.0551796, + 11.5407345 + ], + [ + 48.0558463, + 11.5412542 + ], + [ + 48.0582457, + 11.5427758 + ], + [ + 48.0593722, + 11.5434218 + ], + [ + 48.060212, + 11.5439033 + ], + [ + 48.0606795, + 11.5441503 + ], + [ + 48.0620825, + 11.5448082 + ], + [ + 48.0624659, + 11.5449673 + ], + [ + 48.0625288, + 11.5449959 + ], + [ + 48.0626974, + 11.5450726 + ], + [ + 48.0629611, + 11.5451842 + ], + [ + 48.063551, + 11.5454161 + ], + [ + 48.0641039, + 11.5456236 + ], + [ + 48.0645819, + 11.5457825 + ], + [ + 48.0647353, + 11.5458266 + ], + [ + 48.0651279, + 11.5459255 + ], + [ + 48.0656018, + 11.5460216 + ], + [ + 48.0665724, + 11.5461948 + ], + [ + 48.0669974, + 11.546257 + ], + [ + 48.0674258, + 11.5462976 + ], + [ + 48.0675837, + 11.5463027 + ], + [ + 48.0680037, + 11.5463043 + ], + [ + 48.0683117, + 11.5462858 + ], + [ + 48.0684819, + 11.5462707 + ], + [ + 48.0686614, + 11.5462646 + ], + [ + 48.0688419, + 11.546277 + ], + [ + 48.069015, + 11.5463078 + ], + [ + 48.069263, + 11.5463785 + ], + [ + 48.0695996, + 11.5465448 + ], + [ + 48.0714286, + 11.547498 + ], + [ + 48.0715369, + 11.5475521 + ], + [ + 48.0729319, + 11.5482854 + ], + [ + 48.0743253, + 11.5489653 + ], + [ + 48.0759775, + 11.5497878 + ], + [ + 48.0760722, + 11.5498365 + ] + ] + }, + { + "osmId": "154552716", + "name": null, + "lengthMeters": 520.7745037080476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1033118, + 11.5967781 + ], + [ + 48.1031636, + 11.5967698 + ], + [ + 48.1031352, + 11.5967703 + ], + [ + 48.1031114, + 11.596773 + ], + [ + 48.1030879, + 11.5967783 + ], + [ + 48.1030679, + 11.5967883 + ], + [ + 48.1030485, + 11.5968035 + ], + [ + 48.1030301, + 11.596824 + ], + [ + 48.1030148, + 11.5968454 + ], + [ + 48.1030011, + 11.5968715 + ], + [ + 48.1029873, + 11.5969066 + ], + [ + 48.1029777, + 11.5969482 + ], + [ + 48.1029734, + 11.5969796 + ], + [ + 48.1029717, + 11.5970187 + ], + [ + 48.1029755, + 11.5970547 + ], + [ + 48.1029826, + 11.5970877 + ], + [ + 48.1029919, + 11.5971212 + ], + [ + 48.1030008, + 11.5971412 + ], + [ + 48.1030121, + 11.5971622 + ], + [ + 48.1030303, + 11.5971905 + ], + [ + 48.1030528, + 11.5972128 + ], + [ + 48.103073, + 11.5972261 + ], + [ + 48.1030929, + 11.5972352 + ], + [ + 48.1031119, + 11.59724 + ], + [ + 48.1031391, + 11.5972426 + ], + [ + 48.1031678, + 11.5972405 + ], + [ + 48.1038072, + 11.5971132 + ], + [ + 48.1041283, + 11.5970477 + ], + [ + 48.104288, + 11.5970105 + ], + [ + 48.1044482, + 11.5969791 + ], + [ + 48.1045824, + 11.5969508 + ], + [ + 48.1047182, + 11.5969258 + ], + [ + 48.1048328, + 11.5968997 + ], + [ + 48.1049604, + 11.5968779 + ], + [ + 48.1050253, + 11.5968637 + ], + [ + 48.1051033, + 11.5968507 + ], + [ + 48.1051553, + 11.5968387 + ], + [ + 48.1052272, + 11.5968219 + ], + [ + 48.1052938, + 11.5968071 + ], + [ + 48.1053551, + 11.5967918 + ], + [ + 48.1055081, + 11.5967567 + ], + [ + 48.105598, + 11.5967311 + ], + [ + 48.1057013, + 11.5967015 + ], + [ + 48.1058347, + 11.5966603 + ], + [ + 48.1059228, + 11.5966336 + ], + [ + 48.1059969, + 11.5966081 + ], + [ + 48.1061339, + 11.5965615 + ], + [ + 48.106263, + 11.5965164 + ], + [ + 48.1063506, + 11.5964845 + ], + [ + 48.1064084, + 11.5964635 + ], + [ + 48.1065668, + 11.5964029 + ], + [ + 48.1066663, + 11.59636 + ], + [ + 48.1067705, + 11.5963152 + ], + [ + 48.106913, + 11.5962577 + ], + [ + 48.1070677, + 11.5961878 + ] + ] + }, + { + "osmId": "154556134", + "name": "Santa Fe-Express", + "lengthMeters": 1037.2420956976237, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4867313, + 13.4885968 + ], + [ + 52.4867877, + 13.4889606 + ], + [ + 52.4868913, + 13.4896161 + ], + [ + 52.4869741, + 13.4902228 + ], + [ + 52.4869869, + 13.4904041 + ], + [ + 52.4869699, + 13.490568 + ], + [ + 52.4869274, + 13.4907145 + ], + [ + 52.4868467, + 13.4909132 + ], + [ + 52.4866832, + 13.4910876 + ], + [ + 52.4865643, + 13.4911852 + ], + [ + 52.4864518, + 13.4913212 + ], + [ + 52.4863944, + 13.4915304 + ], + [ + 52.486284, + 13.4917292 + ], + [ + 52.4860165, + 13.4919942 + ], + [ + 52.4856321, + 13.4923185 + ], + [ + 52.4852563, + 13.4925765 + ], + [ + 52.4849208, + 13.4928206 + ], + [ + 52.4847233, + 13.4930368 + ], + [ + 52.4845067, + 13.4932564 + ], + [ + 52.484271, + 13.4933785 + ], + [ + 52.4841894, + 13.4934459 + ], + [ + 52.4840381, + 13.4934166 + ], + [ + 52.4839758, + 13.4933322 + ], + [ + 52.4839406, + 13.4932125 + ], + [ + 52.483935, + 13.4930253 + ], + [ + 52.4839233, + 13.492947 + ], + [ + 52.4838668, + 13.4928175 + ], + [ + 52.4838153, + 13.4926976 + ], + [ + 52.4837914, + 13.492634 + ], + [ + 52.4837738, + 13.4925325 + ], + [ + 52.4837805, + 13.4924302 + ], + [ + 52.4838081, + 13.4923199 + ], + [ + 52.4838492, + 13.4922144 + ], + [ + 52.4839279, + 13.4921597 + ], + [ + 52.4840936, + 13.4921293 + ], + [ + 52.4843254, + 13.4921533 + ], + [ + 52.4844062, + 13.4921388 + ], + [ + 52.4845195, + 13.4920848 + ], + [ + 52.4846426, + 13.4919258 + ], + [ + 52.4846985, + 13.4917665 + ], + [ + 52.4847936, + 13.4914954 + ], + [ + 52.4848629, + 13.4912977 + ], + [ + 52.4848884, + 13.4911433 + ], + [ + 52.4848902, + 13.4910352 + ], + [ + 52.4848906, + 13.4909734 + ], + [ + 52.4848762, + 13.4908993 + ], + [ + 52.4848468, + 13.4908695 + ], + [ + 52.4847617, + 13.4908015 + ], + [ + 52.4846708, + 13.4907422 + ], + [ + 52.484586, + 13.4906371 + ], + [ + 52.4845206, + 13.4904604 + ], + [ + 52.4844887, + 13.4901955 + ], + [ + 52.4845216, + 13.4898811 + ], + [ + 52.4845425, + 13.4897461 + ], + [ + 52.4845318, + 13.4892787 + ], + [ + 52.4845983, + 13.4888874 + ], + [ + 52.4846744, + 13.4885335 + ], + [ + 52.4846988, + 13.4883362 + ], + [ + 52.4846941, + 13.4881204 + ], + [ + 52.4846573, + 13.4879155 + ], + [ + 52.4846151, + 13.4876471 + ] + ] + }, + { + "osmId": "154798655", + "name": null, + "lengthMeters": 161.72368019657142, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1338536, + 11.5660138 + ], + [ + 48.1338707, + 11.5660056 + ], + [ + 48.1338862, + 11.5660009 + ], + [ + 48.1339076, + 11.5659967 + ], + [ + 48.1339284, + 11.5659942 + ], + [ + 48.1339548, + 11.5659924 + ], + [ + 48.1339818, + 11.5659915 + ], + [ + 48.1340049, + 11.565993 + ], + [ + 48.1340461, + 11.5660005 + ], + [ + 48.134087, + 11.5660115 + ], + [ + 48.1341311, + 11.5660223 + ], + [ + 48.134177, + 11.5660313 + ], + [ + 48.1342132, + 11.5660338 + ], + [ + 48.1342365, + 11.5660322 + ], + [ + 48.1342594, + 11.5660287 + ], + [ + 48.1342951, + 11.5660181 + ], + [ + 48.1343309, + 11.5660069 + ], + [ + 48.1343644, + 11.5659917 + ], + [ + 48.1343976, + 11.5659738 + ], + [ + 48.1347178, + 11.5657641 + ], + [ + 48.1349462, + 11.5656207 + ], + [ + 48.1350098, + 11.5655849 + ], + [ + 48.1350758, + 11.5655639 + ], + [ + 48.1352355, + 11.5654798 + ] + ] + }, + { + "osmId": "154982528", + "name": null, + "lengthMeters": 120.28543278244756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5948678, + 9.9436338 + ], + [ + 53.5953688, + 9.9434988 + ], + [ + 53.5955156, + 9.9434378 + ], + [ + 53.5956127, + 9.9433964 + ], + [ + 53.5957395, + 9.9433446 + ], + [ + 53.5959262, + 9.9432652 + ] + ] + }, + { + "osmId": "154982529", + "name": null, + "lengthMeters": 126.20606846588622, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.594607, + 9.9434123 + ], + [ + 53.5947995, + 9.9433994 + ], + [ + 53.5950737, + 9.9434262 + ], + [ + 53.5953169, + 9.943397 + ], + [ + 53.5955059, + 9.9433804 + ], + [ + 53.5956102, + 9.9433684 + ], + [ + 53.5957395, + 9.9433446 + ] + ] + }, + { + "osmId": "154982534", + "name": null, + "lengthMeters": 94.1039526186517, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5950522, + 9.9435 + ], + [ + 53.5952457, + 9.9434741 + ], + [ + 53.5953688, + 9.9434988 + ], + [ + 53.5956572, + 9.943544 + ], + [ + 53.5958953, + 9.9435693 + ] + ] + }, + { + "osmId": "154982536", + "name": null, + "lengthMeters": 252.21176010345323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5959811, + 9.9431273 + ], + [ + 53.5957735, + 9.9431983 + ], + [ + 53.595508, + 9.9433121 + ], + [ + 53.5953169, + 9.943397 + ], + [ + 53.5951988, + 9.9434401 + ], + [ + 53.5950522, + 9.9435 + ], + [ + 53.5946944, + 9.9435466 + ], + [ + 53.5942141, + 9.9436015 + ], + [ + 53.5938307, + 9.9436509 + ], + [ + 53.5937427, + 9.9436631 + ] + ] + }, + { + "osmId": "154982537", + "name": null, + "lengthMeters": 322.6195279719031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.596576, + 9.9430647 + ], + [ + 53.5959811, + 9.9431273 + ], + [ + 53.5955278, + 9.9431929 + ], + [ + 53.5952178, + 9.9432533 + ], + [ + 53.594607, + 9.9434123 + ], + [ + 53.594214, + 9.9435214 + ], + [ + 53.593955, + 9.9435678 + ], + [ + 53.5936943, + 9.943602 + ] + ] + }, + { + "osmId": "154982538", + "name": null, + "lengthMeters": 486.83954720064196, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5868068, + 9.9474467 + ], + [ + 53.5868169, + 9.9474421 + ], + [ + 53.5870914, + 9.9473145 + ], + [ + 53.5872629, + 9.9472234 + ], + [ + 53.5874109, + 9.9471317 + ], + [ + 53.5875576, + 9.9470362 + ], + [ + 53.5885502, + 9.9463713 + ], + [ + 53.5896271, + 9.9456497 + ], + [ + 53.5904527, + 9.9450937 + ], + [ + 53.5907297, + 9.9449112 + ], + [ + 53.5908936, + 9.94481 + ] + ] + }, + { + "osmId": "154982539", + "name": null, + "lengthMeters": 238.87367342986585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5972628, + 9.9434245 + ], + [ + 53.5979813, + 9.9434431 + ], + [ + 53.5989069, + 9.9437371 + ], + [ + 53.5993888, + 9.9438641 + ] + ] + }, + { + "osmId": "154982540", + "name": null, + "lengthMeters": 823.3531210051093, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5993888, + 9.9438641 + ], + [ + 53.6000118, + 9.9440611 + ], + [ + 53.6021776, + 9.9447388 + ], + [ + 53.604342, + 9.9453973 + ], + [ + 53.6049023, + 9.9455686 + ], + [ + 53.6066725, + 9.9461096 + ] + ] + }, + { + "osmId": "154982541", + "name": null, + "lengthMeters": 2344.848362591675, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.619526, + 9.9513386 + ], + [ + 53.6193246, + 9.9512413 + ], + [ + 53.618714, + 9.9509905 + ], + [ + 53.6182819, + 9.9508058 + ], + [ + 53.6181073, + 9.9507284 + ], + [ + 53.6180365, + 9.9507026 + ], + [ + 53.6180005, + 9.95069 + ], + [ + 53.6178686, + 9.9506633 + ], + [ + 53.6176924, + 9.9506235 + ], + [ + 53.6175664, + 9.9506025 + ], + [ + 53.6174647, + 9.9505955 + ], + [ + 53.6171776, + 9.9506122 + ], + [ + 53.6168948, + 9.9506527 + ], + [ + 53.6166944, + 9.9507028 + ], + [ + 53.6162842, + 9.9508559 + ], + [ + 53.6156235, + 9.9511093 + ], + [ + 53.6151913, + 9.9512281 + ], + [ + 53.6147373, + 9.9512994 + ], + [ + 53.614374, + 9.951331 + ], + [ + 53.6141383, + 9.9513474 + ], + [ + 53.6135896, + 9.9513126 + ], + [ + 53.6134923, + 9.9512908 + ], + [ + 53.6133891, + 9.951265 + ], + [ + 53.612968, + 9.9511085 + ], + [ + 53.6128551, + 9.9510619 + ], + [ + 53.6126568, + 9.9509515 + ], + [ + 53.6124888, + 9.9508444 + ], + [ + 53.6123966, + 9.9507791 + ], + [ + 53.6122555, + 9.9506474 + ], + [ + 53.6118516, + 9.9502594 + ], + [ + 53.6115384, + 9.949948 + ], + [ + 53.610984, + 9.9493779 + ], + [ + 53.6100484, + 9.9484673 + ], + [ + 53.6095693, + 9.9479724 + ], + [ + 53.6091606, + 9.9475725 + ], + [ + 53.6089539, + 9.9473548 + ], + [ + 53.6086869, + 9.9471093 + ], + [ + 53.6084684, + 9.9469113 + ], + [ + 53.6083471, + 9.9468156 + ], + [ + 53.6082209, + 9.9467222 + ], + [ + 53.608122, + 9.9466509 + ], + [ + 53.6080276, + 9.946592 + ], + [ + 53.6077864, + 9.946464 + ], + [ + 53.6075578, + 9.9463557 + ], + [ + 53.6073749, + 9.9462798 + ], + [ + 53.6060157, + 9.9458418 + ], + [ + 53.6050201, + 9.9455336 + ], + [ + 53.604344, + 9.9453311 + ], + [ + 53.6037591, + 9.9451516 + ], + [ + 53.6032322, + 9.94499 + ], + [ + 53.6019988, + 9.9446114 + ], + [ + 53.5993934, + 9.9438185 + ] + ] + }, + { + "osmId": "155187886", + "name": null, + "lengthMeters": 213.21312830262835, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493611, + 13.394036 + ], + [ + 52.5493564, + 13.3938926 + ], + [ + 52.5492941, + 13.3923992 + ], + [ + 52.5492818, + 13.3920642 + ], + [ + 52.5492664, + 13.3916751 + ], + [ + 52.5492527, + 13.3913189 + ], + [ + 52.5492343, + 13.3908896 + ] + ] + }, + { + "osmId": "155187888", + "name": null, + "lengthMeters": 128.80240100592945, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5481688, + 13.3841635 + ], + [ + 52.5482277, + 13.3843551 + ], + [ + 52.5484093, + 13.3850132 + ], + [ + 52.5484713, + 13.3852852 + ], + [ + 52.548597, + 13.3859299 + ] + ] + }, + { + "osmId": "155187890", + "name": null, + "lengthMeters": 337.9941188788767, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.540674, + 13.3794981 + ], + [ + 52.5416909, + 13.3792571 + ], + [ + 52.5423014, + 13.3791277 + ], + [ + 52.5426848, + 13.3790483 + ], + [ + 52.5429578, + 13.3789983 + ], + [ + 52.5431128, + 13.3789776 + ], + [ + 52.5432521, + 13.3789686 + ], + [ + 52.5434121, + 13.3789698 + ], + [ + 52.5435518, + 13.3789791 + ], + [ + 52.5436921, + 13.3789994 + ] + ] + }, + { + "osmId": "155513078", + "name": null, + "lengthMeters": 152.88832025083963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482673, + 13.500435 + ], + [ + 52.5480383, + 13.4999948 + ], + [ + 52.5479081, + 13.4997444 + ], + [ + 52.547776, + 13.4994905 + ], + [ + 52.5473736, + 13.4987167 + ] + ] + }, + { + "osmId": "155513079", + "name": null, + "lengthMeters": 144.76738401429216, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5506196, + 13.5096551 + ], + [ + 52.5505895, + 13.5096744 + ], + [ + 52.5505559, + 13.5096902 + ], + [ + 52.5505225, + 13.5096967 + ], + [ + 52.5504953, + 13.5096962 + ], + [ + 52.5504559, + 13.5096881 + ], + [ + 52.5504247, + 13.5096753 + ], + [ + 52.5503967, + 13.5096603 + ], + [ + 52.5503724, + 13.5096416 + ], + [ + 52.5503548, + 13.5096246 + ], + [ + 52.5503286, + 13.5095915 + ], + [ + 52.550306, + 13.5095533 + ], + [ + 52.5502827, + 13.5095083 + ], + [ + 52.5502633, + 13.5094567 + ], + [ + 52.5502449, + 13.5093937 + ], + [ + 52.5502295, + 13.5093261 + ], + [ + 52.5501336, + 13.5088754 + ], + [ + 52.5501172, + 13.5088262 + ], + [ + 52.550101, + 13.5087746 + ], + [ + 52.5500733, + 13.5086852 + ], + [ + 52.5500181, + 13.5085993 + ], + [ + 52.549955, + 13.5085404 + ], + [ + 52.5498904, + 13.5085091 + ], + [ + 52.5498029, + 13.5084976 + ], + [ + 52.5497271, + 13.5085096 + ] + ] + }, + { + "osmId": "155513080", + "name": null, + "lengthMeters": 290.8104944502648, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485756, + 13.5079997 + ], + [ + 52.548594, + 13.5072132 + ], + [ + 52.5486035, + 13.5070445 + ], + [ + 52.5486196, + 13.5068764 + ], + [ + 52.5486361, + 13.5067418 + ], + [ + 52.5487073, + 13.5062807 + ], + [ + 52.5487472, + 13.5060266 + ], + [ + 52.5487774, + 13.5058079 + ], + [ + 52.5488013, + 13.5055663 + ], + [ + 52.5488077, + 13.5054792 + ], + [ + 52.5488194, + 13.5053201 + ], + [ + 52.5488737, + 13.5045505 + ], + [ + 52.548886, + 13.5043665 + ], + [ + 52.54891, + 13.5040226 + ], + [ + 52.5489142, + 13.503747 + ] + ] + }, + { + "osmId": "155513081", + "name": null, + "lengthMeters": 190.95858524609818, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5457227, + 13.5098721 + ], + [ + 52.5461347, + 13.509622 + ], + [ + 52.5462387, + 13.5095612 + ], + [ + 52.5463177, + 13.509515 + ], + [ + 52.5463539, + 13.5094932 + ], + [ + 52.5464356, + 13.5094441 + ], + [ + 52.5464729, + 13.5094224 + ], + [ + 52.5465353, + 13.5093844 + ], + [ + 52.5466115, + 13.5093396 + ], + [ + 52.547194, + 13.5089953 + ], + [ + 52.5473373, + 13.5089101 + ] + ] + }, + { + "osmId": "155513082", + "name": null, + "lengthMeters": 1388.5552904327203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489467, + 13.5022825 + ], + [ + 52.5489573, + 13.5021236 + ], + [ + 52.5489646, + 13.5020582 + ], + [ + 52.5489667, + 13.5020393 + ], + [ + 52.5489808, + 13.5019122 + ], + [ + 52.548997, + 13.5018101 + ], + [ + 52.5490151, + 13.501709 + ], + [ + 52.5490353, + 13.5016138 + ], + [ + 52.5490598, + 13.5014987 + ], + [ + 52.5490739, + 13.5014345 + ], + [ + 52.5491067, + 13.5012927 + ], + [ + 52.5497365, + 13.4985346 + ], + [ + 52.549755, + 13.4984564 + ], + [ + 52.549877, + 13.4979135 + ], + [ + 52.5499315, + 13.4976809 + ], + [ + 52.5499574, + 13.4975622 + ], + [ + 52.5500061, + 13.4973672 + ], + [ + 52.5500447, + 13.4972199 + ], + [ + 52.5500817, + 13.4970579 + ], + [ + 52.5503554, + 13.4958253 + ], + [ + 52.550472, + 13.4953161 + ], + [ + 52.550498, + 13.4951973 + ], + [ + 52.5506013, + 13.4947328 + ], + [ + 52.5507792, + 13.4939469 + ], + [ + 52.5508134, + 13.4937928 + ], + [ + 52.5512449, + 13.4918318 + ], + [ + 52.5513966, + 13.4911589 + ], + [ + 52.5515798, + 13.4902702 + ], + [ + 52.5517538, + 13.4892681 + ], + [ + 52.551832, + 13.4887934 + ], + [ + 52.5521404, + 13.4868528 + ], + [ + 52.5521732, + 13.4866583 + ], + [ + 52.5522074, + 13.4864616 + ], + [ + 52.5523154, + 13.4858397 + ], + [ + 52.5523932, + 13.4853921 + ], + [ + 52.5524339, + 13.4851841 + ], + [ + 52.552473, + 13.4849991 + ], + [ + 52.5528576, + 13.4828025 + ] + ] + }, + { + "osmId": "155513083", + "name": null, + "lengthMeters": 297.0733766269034, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.54914, + 13.5086322 + ], + [ + 52.5492224, + 13.5086387 + ], + [ + 52.5493429, + 13.5086436 + ], + [ + 52.5494572, + 13.5086354 + ], + [ + 52.5495599, + 13.5086179 + ], + [ + 52.5496901, + 13.5085739 + ], + [ + 52.5498035, + 13.5085474 + ], + [ + 52.5498835, + 13.5085552 + ], + [ + 52.5499395, + 13.5085799 + ], + [ + 52.5499988, + 13.5086393 + ], + [ + 52.5500495, + 13.5087178 + ], + [ + 52.5500757, + 13.5087892 + ], + [ + 52.5500901, + 13.50884 + ], + [ + 52.5501065, + 13.5088898 + ], + [ + 52.5501979, + 13.5093169 + ], + [ + 52.5502143, + 13.5093867 + ], + [ + 52.5502305, + 13.5094483 + ], + [ + 52.5502474, + 13.5095044 + ], + [ + 52.5502675, + 13.5095534 + ], + [ + 52.5502904, + 13.5095968 + ], + [ + 52.5503145, + 13.5096323 + ], + [ + 52.5503355, + 13.5096593 + ], + [ + 52.5503591, + 13.5096821 + ], + [ + 52.5503815, + 13.5097009 + ], + [ + 52.5504094, + 13.5097176 + ], + [ + 52.5504353, + 13.5097292 + ], + [ + 52.5504634, + 13.5097369 + ], + [ + 52.5504869, + 13.5097413 + ], + [ + 52.5505069, + 13.5097419 + ], + [ + 52.5505295, + 13.5097399 + ], + [ + 52.5505578, + 13.5097331 + ], + [ + 52.5505922, + 13.5097197 + ], + [ + 52.5506256, + 13.5097008 + ], + [ + 52.5507216, + 13.5096412 + ], + [ + 52.55093, + 13.5095161 + ], + [ + 52.5513534, + 13.5092658 + ] + ] + }, + { + "osmId": "155513085", + "name": null, + "lengthMeters": 455.0603296119277, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5619475, + 13.5067336 + ], + [ + 52.5612423, + 13.5075425 + ], + [ + 52.5606617, + 13.5082085 + ], + [ + 52.5605369, + 13.50835 + ], + [ + 52.5604747, + 13.5084294 + ], + [ + 52.560426, + 13.5085028 + ], + [ + 52.5603449, + 13.5086368 + ], + [ + 52.5602816, + 13.5087673 + ], + [ + 52.5602629, + 13.5088176 + ], + [ + 52.5602463, + 13.5088588 + ], + [ + 52.5602166, + 13.5089544 + ], + [ + 52.5599848, + 13.5097678 + ], + [ + 52.5599516, + 13.5098946 + ], + [ + 52.5599351, + 13.5099615 + ], + [ + 52.5599116, + 13.510044 + ], + [ + 52.5594373, + 13.5117702 + ] + ] + }, + { + "osmId": "155513088", + "name": null, + "lengthMeters": 567.7412545871307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5688035, + 13.5218576 + ], + [ + 52.5687037, + 13.5210637 + ], + [ + 52.5686727, + 13.520826 + ], + [ + 52.568662, + 13.5207391 + ], + [ + 52.5686501, + 13.5206409 + ], + [ + 52.5686368, + 13.5205353 + ], + [ + 52.5686248, + 13.5204407 + ], + [ + 52.5685017, + 13.5195448 + ], + [ + 52.5684794, + 13.5193978 + ], + [ + 52.5684591, + 13.5192638 + ], + [ + 52.5684015, + 13.5189472 + ], + [ + 52.568321, + 13.5186295 + ], + [ + 52.5681497, + 13.5180415 + ], + [ + 52.5681158, + 13.5179337 + ], + [ + 52.5680235, + 13.5176549 + ], + [ + 52.5679286, + 13.5173782 + ], + [ + 52.5678383, + 13.5171402 + ], + [ + 52.5677482, + 13.5169099 + ], + [ + 52.5675703, + 13.5164503 + ], + [ + 52.5671924, + 13.5154774 + ], + [ + 52.5671386, + 13.5153389 + ], + [ + 52.5670972, + 13.515231 + ], + [ + 52.5670524, + 13.5151083 + ], + [ + 52.5670032, + 13.514982 + ], + [ + 52.5667359, + 13.5142867 + ] + ] + }, + { + "osmId": "155513089", + "name": null, + "lengthMeters": 694.6755137048408, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5620937, + 13.5018809 + ], + [ + 52.5617111, + 13.5008256 + ], + [ + 52.5616455, + 13.5006421 + ], + [ + 52.5616047, + 13.5005172 + ], + [ + 52.5615871, + 13.5004631 + ], + [ + 52.5615296, + 13.5002609 + ], + [ + 52.5615103, + 13.5002007 + ], + [ + 52.5614806, + 13.5001079 + ], + [ + 52.5612044, + 13.4992999 + ], + [ + 52.5611532, + 13.4991527 + ], + [ + 52.5610177, + 13.4987456 + ], + [ + 52.5607889, + 13.4980553 + ], + [ + 52.5606428, + 13.4976224 + ], + [ + 52.5605101, + 13.4972374 + ], + [ + 52.5601508, + 13.4962342 + ], + [ + 52.5599664, + 13.4957193 + ], + [ + 52.5597435, + 13.4950964 + ], + [ + 52.5596801, + 13.4949218 + ], + [ + 52.5596257, + 13.4947659 + ], + [ + 52.5595408, + 13.4945302 + ], + [ + 52.5595171, + 13.4944644 + ], + [ + 52.5589811, + 13.4929728 + ] + ] + }, + { + "osmId": "155513096", + "name": null, + "lengthMeters": 259.7783469315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5528576, + 13.4828025 + ], + [ + 52.5530579, + 13.4816588 + ], + [ + 52.5531004, + 13.4813818 + ], + [ + 52.5531335, + 13.4811006 + ], + [ + 52.5531635, + 13.4808206 + ], + [ + 52.5531915, + 13.4805508 + ], + [ + 52.5532153, + 13.4802428 + ], + [ + 52.5532292, + 13.4799909 + ], + [ + 52.5532389, + 13.47979 + ], + [ + 52.5532407, + 13.47972 + ], + [ + 52.5532482, + 13.4794311 + ], + [ + 52.5532503, + 13.4793497 + ], + [ + 52.5532535, + 13.479223 + ], + [ + 52.5532564, + 13.4791112 + ], + [ + 52.5532584, + 13.4790336 + ] + ] + }, + { + "osmId": "155513098", + "name": null, + "lengthMeters": 327.8718037181361, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5532776, + 13.478555 + ], + [ + 52.5532894, + 13.4781544 + ], + [ + 52.5533085, + 13.4776227 + ], + [ + 52.5533421, + 13.4767151 + ], + [ + 52.5533521, + 13.4763554 + ], + [ + 52.5533671, + 13.4758148 + ], + [ + 52.5533884, + 13.4753656 + ], + [ + 52.5533949, + 13.4752154 + ], + [ + 52.5534088, + 13.47488 + ], + [ + 52.5534271, + 13.4745192 + ], + [ + 52.5534644, + 13.4737156 + ] + ] + }, + { + "osmId": "155531542", + "name": null, + "lengthMeters": 173.91449954606696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368006, + 13.4757921 + ], + [ + 52.5368487, + 13.4759515 + ], + [ + 52.5369517, + 13.4762727 + ], + [ + 52.5370799, + 13.4766724 + ], + [ + 52.5371325, + 13.4768203 + ], + [ + 52.5375012, + 13.4778561 + ], + [ + 52.537565, + 13.4780346 + ] + ] + }, + { + "osmId": "155531543", + "name": null, + "lengthMeters": 748.2785203109282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443467, + 13.468673 + ], + [ + 52.544646, + 13.4685729 + ], + [ + 52.5450658, + 13.4684325 + ], + [ + 52.5453735, + 13.4683246 + ], + [ + 52.5460691, + 13.4680519 + ], + [ + 52.5463206, + 13.4679528 + ], + [ + 52.546341, + 13.4679453 + ], + [ + 52.546459, + 13.4679038 + ], + [ + 52.5467295, + 13.4678013 + ], + [ + 52.5468924, + 13.4677418 + ], + [ + 52.5469244, + 13.4677291 + ], + [ + 52.5485019, + 13.4671538 + ], + [ + 52.5487893, + 13.4670414 + ], + [ + 52.5494065, + 13.4668152 + ], + [ + 52.5495316, + 13.466769 + ], + [ + 52.5500008, + 13.4665958 + ], + [ + 52.5505156, + 13.466448 + ], + [ + 52.550629, + 13.4664156 + ], + [ + 52.5507767, + 13.4663737 + ], + [ + 52.5508489, + 13.4663493 + ], + [ + 52.5509212, + 13.4663206 + ] + ] + }, + { + "osmId": "155531545", + "name": null, + "lengthMeters": 773.6283714586122, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377158, + 13.4719797 + ], + [ + 52.5378128, + 13.4718985 + ], + [ + 52.5379953, + 13.4717509 + ], + [ + 52.538259, + 13.4715675 + ], + [ + 52.5385243, + 13.4713825 + ], + [ + 52.5385595, + 13.4713576 + ], + [ + 52.5387823, + 13.4712003 + ], + [ + 52.5390739, + 13.4709991 + ], + [ + 52.539975, + 13.4703738 + ], + [ + 52.5400712, + 13.4703081 + ], + [ + 52.5401463, + 13.470258 + ], + [ + 52.540222, + 13.4702139 + ], + [ + 52.5403003, + 13.4701769 + ], + [ + 52.5403914, + 13.4701433 + ], + [ + 52.5415095, + 13.4697318 + ], + [ + 52.5421238, + 13.4695054 + ], + [ + 52.5426005, + 13.4693276 + ], + [ + 52.5433478, + 13.4690502 + ], + [ + 52.5436777, + 13.4689252 + ], + [ + 52.5440181, + 13.4688036 + ], + [ + 52.5442346, + 13.4687215 + ], + [ + 52.5443467, + 13.468673 + ] + ] + }, + { + "osmId": "155531549", + "name": null, + "lengthMeters": 242.5195342139623, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266341, + 13.4793707 + ], + [ + 52.5266319, + 13.4793117 + ], + [ + 52.5266198, + 13.4784194 + ], + [ + 52.526621, + 13.478253 + ], + [ + 52.5266305, + 13.4780623 + ], + [ + 52.5266506, + 13.4778802 + ], + [ + 52.5266654, + 13.4777921 + ], + [ + 52.5266811, + 13.4777042 + ], + [ + 52.5266957, + 13.4776131 + ], + [ + 52.5267811, + 13.4770982 + ], + [ + 52.5269933, + 13.4758671 + ] + ] + }, + { + "osmId": "155531552", + "name": null, + "lengthMeters": 95.02229571965115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255782, + 13.4797027 + ], + [ + 52.5260055, + 13.479756 + ], + [ + 52.5264305, + 13.4798046 + ] + ] + }, + { + "osmId": "155531562", + "name": null, + "lengthMeters": 297.1601957537177, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229078, + 13.479613 + ], + [ + 52.5229235, + 13.4796121 + ], + [ + 52.5230644, + 13.4796051 + ], + [ + 52.5230916, + 13.4796032 + ], + [ + 52.5232515, + 13.4795942 + ], + [ + 52.5237384, + 13.4795876 + ], + [ + 52.5238424, + 13.4795914 + ], + [ + 52.5239239, + 13.4795895 + ], + [ + 52.5244941, + 13.479605 + ], + [ + 52.5250058, + 13.4796431 + ], + [ + 52.525234, + 13.4796619 + ], + [ + 52.5255782, + 13.4797027 + ] + ] + }, + { + "osmId": "155531564", + "name": null, + "lengthMeters": 397.54381129806865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119723, + 13.4755284 + ], + [ + 52.5120361, + 13.4756178 + ], + [ + 52.512385, + 13.4759331 + ], + [ + 52.5131797, + 13.4766689 + ], + [ + 52.5132449, + 13.4767353 + ], + [ + 52.5132754, + 13.4767692 + ], + [ + 52.5133029, + 13.4768019 + ], + [ + 52.513334, + 13.476842 + ], + [ + 52.5133701, + 13.4768949 + ], + [ + 52.5134163, + 13.4769705 + ], + [ + 52.5134654, + 13.4770586 + ], + [ + 52.5135189, + 13.4771415 + ], + [ + 52.5135874, + 13.4772289 + ], + [ + 52.5136409, + 13.4772816 + ], + [ + 52.5136954, + 13.4773277 + ], + [ + 52.5139808, + 13.4775557 + ], + [ + 52.5144378, + 13.4779213 + ], + [ + 52.5145192, + 13.4779866 + ], + [ + 52.514564, + 13.4780225 + ], + [ + 52.5146066, + 13.4780567 + ], + [ + 52.51465, + 13.4780917 + ], + [ + 52.5150652, + 13.4784245 + ] + ] + }, + { + "osmId": "155531566", + "name": null, + "lengthMeters": 435.49734437521954, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531816, + 13.4770377 + ], + [ + 52.5320318, + 13.4769105 + ], + [ + 52.5322371, + 13.4767785 + ], + [ + 52.532769, + 13.4764087 + ], + [ + 52.5328384, + 13.4763634 + ], + [ + 52.5328887, + 13.4763286 + ], + [ + 52.5329604, + 13.4762785 + ], + [ + 52.5330805, + 13.4761869 + ], + [ + 52.5331324, + 13.476143 + ], + [ + 52.5331799, + 13.4761027 + ], + [ + 52.5333067, + 13.4759982 + ], + [ + 52.5341936, + 13.4752113 + ], + [ + 52.534685, + 13.4747759 + ], + [ + 52.5351796, + 13.4743413 + ], + [ + 52.5353288, + 13.47421 + ] + ] + }, + { + "osmId": "155533115", + "name": null, + "lengthMeters": 481.8472065707552, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354998, + 13.4344465 + ], + [ + 52.5346425, + 13.4362491 + ], + [ + 52.5342203, + 13.437123 + ], + [ + 52.53419, + 13.4371864 + ], + [ + 52.534139, + 13.4372933 + ], + [ + 52.5340868, + 13.4374025 + ], + [ + 52.5340149, + 13.4375529 + ], + [ + 52.5335739, + 13.4384687 + ], + [ + 52.5335281, + 13.4385643 + ], + [ + 52.533294, + 13.4390518 + ], + [ + 52.5332692, + 13.4391036 + ], + [ + 52.5328184, + 13.4400427 + ] + ] + }, + { + "osmId": "155533116", + "name": null, + "lengthMeters": 271.9362466068795, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328184, + 13.4400427 + ], + [ + 52.5323216, + 13.4410698 + ], + [ + 52.5321889, + 13.4413372 + ], + [ + 52.5321441, + 13.4414112 + ], + [ + 52.5320912, + 13.4414868 + ], + [ + 52.5320449, + 13.4415423 + ], + [ + 52.5319739, + 13.4416256 + ], + [ + 52.5319082, + 13.4416998 + ], + [ + 52.5315225, + 13.4421124 + ], + [ + 52.531004, + 13.4426694 + ] + ] + }, + { + "osmId": "155533117", + "name": null, + "lengthMeters": 90.23573672550572, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5355229, + 13.4344885 + ], + [ + 52.5359594, + 13.4335857 + ], + [ + 52.5359994, + 13.4335047 + ], + [ + 52.5360276, + 13.4334438 + ] + ] + }, + { + "osmId": "155533121", + "name": null, + "lengthMeters": 109.0799648399043, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199911, + 13.4519948 + ], + [ + 52.519215, + 13.4525257 + ], + [ + 52.5190859, + 13.4526161 + ] + ] + }, + { + "osmId": "155533123", + "name": null, + "lengthMeters": 471.0684668468399, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5239042, + 13.4493274 + ], + [ + 52.5230839, + 13.4498881 + ], + [ + 52.5224781, + 13.4503004 + ], + [ + 52.5224043, + 13.4503455 + ], + [ + 52.5223205, + 13.4504015 + ], + [ + 52.5221982, + 13.4504867 + ], + [ + 52.5215579, + 13.4509327 + ], + [ + 52.5208322, + 13.451423 + ], + [ + 52.5205601, + 13.4516099 + ], + [ + 52.5204424, + 13.4516907 + ], + [ + 52.5203449, + 13.4517571 + ], + [ + 52.5199911, + 13.4519948 + ] + ] + }, + { + "osmId": "155533124", + "name": null, + "lengthMeters": 403.105779224397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5271809, + 13.4468173 + ], + [ + 52.5267024, + 13.4473159 + ], + [ + 52.526617, + 13.4474114 + ], + [ + 52.526583, + 13.4474491 + ], + [ + 52.5265469, + 13.4474871 + ], + [ + 52.5265099, + 13.447526 + ], + [ + 52.5264821, + 13.4475539 + ], + [ + 52.5264607, + 13.4475747 + ], + [ + 52.5264232, + 13.4476057 + ], + [ + 52.5263905, + 13.4476295 + ], + [ + 52.5263648, + 13.4476469 + ], + [ + 52.5262783, + 13.447707 + ], + [ + 52.5262511, + 13.4477252 + ], + [ + 52.5262257, + 13.4477419 + ], + [ + 52.526175, + 13.4477752 + ], + [ + 52.5261435, + 13.447796 + ], + [ + 52.5261188, + 13.4478149 + ], + [ + 52.5248962, + 13.4486493 + ], + [ + 52.5244107, + 13.4489806 + ], + [ + 52.5243324, + 13.449034 + ], + [ + 52.5242412, + 13.4490965 + ], + [ + 52.5239042, + 13.4493274 + ] + ] + }, + { + "osmId": "155533125", + "name": null, + "lengthMeters": 509.38407408442276, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531004, + 13.4426694 + ], + [ + 52.5305825, + 13.443127 + ], + [ + 52.52959, + 13.4441961 + ], + [ + 52.5294991, + 13.4442941 + ], + [ + 52.5293914, + 13.4444107 + ], + [ + 52.5289276, + 13.4449135 + ], + [ + 52.528882, + 13.4449709 + ], + [ + 52.5277968, + 13.446138 + ], + [ + 52.5274852, + 13.4464757 + ], + [ + 52.5271809, + 13.4468173 + ] + ] + }, + { + "osmId": "155572678", + "name": null, + "lengthMeters": 546.4197377159585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1312509, + 11.571226 + ], + [ + 48.1310736, + 11.5708869 + ], + [ + 48.1310206, + 11.5707869 + ], + [ + 48.1309978, + 11.5707353 + ], + [ + 48.1309756, + 11.5706762 + ], + [ + 48.1309606, + 11.5706278 + ], + [ + 48.1309439, + 11.5705642 + ], + [ + 48.1309335, + 11.5705154 + ], + [ + 48.1309231, + 11.5704575 + ], + [ + 48.1309151, + 11.5703934 + ], + [ + 48.1309109, + 11.570322 + ], + [ + 48.1309097, + 11.570276 + ], + [ + 48.1309107, + 11.5702355 + ], + [ + 48.1309128, + 11.5701819 + ], + [ + 48.1309162, + 11.5701415 + ], + [ + 48.1309244, + 11.5700821 + ], + [ + 48.1309338, + 11.5700268 + ], + [ + 48.1309445, + 11.5699778 + ], + [ + 48.1309585, + 11.569907 + ], + [ + 48.1309732, + 11.5698455 + ], + [ + 48.1311735, + 11.5691241 + ], + [ + 48.131365, + 11.5684334 + ], + [ + 48.1314099, + 11.5682935 + ], + [ + 48.1314549, + 11.5681718 + ], + [ + 48.1314864, + 11.5681012 + ], + [ + 48.1315171, + 11.5680439 + ], + [ + 48.1315533, + 11.5679845 + ], + [ + 48.1315914, + 11.5679332 + ], + [ + 48.1318033, + 11.5677007 + ], + [ + 48.1319107, + 11.5675805 + ], + [ + 48.1319167, + 11.5675738 + ], + [ + 48.1320299, + 11.5674479 + ], + [ + 48.1322752, + 11.5671797 + ], + [ + 48.132305, + 11.5671502 + ], + [ + 48.1323419, + 11.5671172 + ], + [ + 48.1323612, + 11.5671021 + ], + [ + 48.1323788, + 11.5670896 + ], + [ + 48.1324018, + 11.5670734 + ], + [ + 48.1324222, + 11.56706 + ], + [ + 48.1324366, + 11.5670506 + ], + [ + 48.1324651, + 11.567034 + ], + [ + 48.1324982, + 11.5670175 + ], + [ + 48.1325394, + 11.5669994 + ], + [ + 48.1325834, + 11.5669838 + ], + [ + 48.1326357, + 11.5669656 + ], + [ + 48.1326907, + 11.5669433 + ], + [ + 48.1327209, + 11.5669282 + ], + [ + 48.132759, + 11.5669073 + ], + [ + 48.1327979, + 11.5668834 + ], + [ + 48.1328485, + 11.5668471 + ], + [ + 48.1328967, + 11.5668086 + ], + [ + 48.1329372, + 11.5667732 + ], + [ + 48.1329938, + 11.5667205 + ], + [ + 48.1330388, + 11.5666785 + ], + [ + 48.1330582, + 11.5666615 + ], + [ + 48.1330864, + 11.5666377 + ], + [ + 48.1331109, + 11.5666188 + ], + [ + 48.1331495, + 11.566587 + ], + [ + 48.1331781, + 11.5665663 + ], + [ + 48.1332153, + 11.5665394 + ], + [ + 48.1332626, + 11.5665083 + ], + [ + 48.1332956, + 11.5664873 + ], + [ + 48.1333742, + 11.5664374 + ], + [ + 48.1334142, + 11.5664117 + ], + [ + 48.1334648, + 11.566379 + ], + [ + 48.1337361, + 11.5662078 + ] + ] + }, + { + "osmId": "155572679", + "name": null, + "lengthMeters": 486.06550500817804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1282596, + 11.5757254 + ], + [ + 48.1283045, + 11.5756654 + ], + [ + 48.1283882, + 11.5755534 + ], + [ + 48.1284792, + 11.5754266 + ], + [ + 48.1295775, + 11.5739459 + ], + [ + 48.1300285, + 11.5733379 + ], + [ + 48.1310817, + 11.5719179 + ], + [ + 48.1312159, + 11.5717409 + ], + [ + 48.131247, + 11.5716968 + ], + [ + 48.1312711, + 11.571657 + ], + [ + 48.1312826, + 11.5716362 + ], + [ + 48.1312946, + 11.5716069 + ], + [ + 48.1313039, + 11.5715843 + ], + [ + 48.1313058, + 11.5715768 + ], + [ + 48.1313126, + 11.5715488 + ], + [ + 48.1313165, + 11.5715235 + ], + [ + 48.131319, + 11.5714949 + ], + [ + 48.1313184, + 11.5714712 + ], + [ + 48.1313174, + 11.5714533 + ], + [ + 48.1313161, + 11.5714347 + ], + [ + 48.1313158, + 11.5714313 + ], + [ + 48.1313133, + 11.5714137 + ], + [ + 48.1313104, + 11.5713968 + ], + [ + 48.1313057, + 11.5713747 + ], + [ + 48.1312958, + 11.5713377 + ], + [ + 48.1312908, + 11.5713216 + ], + [ + 48.1312849, + 11.5713026 + ], + [ + 48.1312734, + 11.5712745 + ], + [ + 48.1312509, + 11.571226 + ] + ] + }, + { + "osmId": "155580615", + "name": null, + "lengthMeters": 255.344278939985, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1206264, + 11.5816525 + ], + [ + 48.1206466, + 11.5816366 + ], + [ + 48.120679, + 11.5816125 + ], + [ + 48.1207048, + 11.5815958 + ], + [ + 48.1207308, + 11.5815804 + ], + [ + 48.1207582, + 11.581564 + ], + [ + 48.1207892, + 11.5815478 + ], + [ + 48.1208162, + 11.581537 + ], + [ + 48.1208436, + 11.5815253 + ], + [ + 48.1208729, + 11.5815154 + ], + [ + 48.1209049, + 11.5815065 + ], + [ + 48.1209334, + 11.5815025 + ], + [ + 48.1209663, + 11.5814997 + ], + [ + 48.1210005, + 11.5814971 + ], + [ + 48.1210236, + 11.5814974 + ], + [ + 48.1210559, + 11.5814992 + ], + [ + 48.1210904, + 11.5815013 + ], + [ + 48.1211263, + 11.5815055 + ], + [ + 48.1211437, + 11.5815082 + ], + [ + 48.1211748, + 11.581517 + ], + [ + 48.1212117, + 11.5815295 + ], + [ + 48.1212507, + 11.5815449 + ], + [ + 48.1212881, + 11.5815619 + ], + [ + 48.1213205, + 11.5815781 + ], + [ + 48.1213658, + 11.5816068 + ], + [ + 48.1214122, + 11.5816386 + ], + [ + 48.1219068, + 11.582004 + ], + [ + 48.122083, + 11.5821201 + ], + [ + 48.1221194, + 11.5821415 + ], + [ + 48.1221682, + 11.582167 + ], + [ + 48.1222097, + 11.5821869 + ], + [ + 48.1222474, + 11.5822028 + ], + [ + 48.1222884, + 11.582218 + ], + [ + 48.1223393, + 11.5822349 + ], + [ + 48.1223758, + 11.5822456 + ], + [ + 48.1224115, + 11.5822545 + ], + [ + 48.1224512, + 11.5822626 + ], + [ + 48.1224912, + 11.5822674 + ], + [ + 48.1225281, + 11.5822711 + ], + [ + 48.1225629, + 11.5822725 + ], + [ + 48.1226106, + 11.5822709 + ], + [ + 48.1226577, + 11.5822664 + ], + [ + 48.122706, + 11.5822568 + ], + [ + 48.1227514, + 11.5822448 + ], + [ + 48.1228003, + 11.5822263 + ] + ] + }, + { + "osmId": "155580616", + "name": null, + "lengthMeters": 79.6744784148372, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1199967, + 11.5821422 + ], + [ + 48.1200631, + 11.5821188 + ], + [ + 48.1201279, + 11.5820903 + ], + [ + 48.1201726, + 11.582065 + ], + [ + 48.1202094, + 11.5820444 + ], + [ + 48.1202458, + 11.5820233 + ], + [ + 48.120282, + 11.5819954 + ], + [ + 48.1203123, + 11.58197 + ], + [ + 48.1203373, + 11.5819458 + ], + [ + 48.1203607, + 11.5819224 + ], + [ + 48.1203976, + 11.5818839 + ], + [ + 48.1204489, + 11.5818285 + ], + [ + 48.1204689, + 11.5818064 + ], + [ + 48.1205277, + 11.5817425 + ], + [ + 48.1205717, + 11.5816983 + ], + [ + 48.1206264, + 11.5816525 + ] + ] + }, + { + "osmId": "155580620", + "name": null, + "lengthMeters": 359.14532923621005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1243948, + 11.5810294 + ], + [ + 48.1244341, + 11.5809879 + ], + [ + 48.1244672, + 11.5809523 + ], + [ + 48.1244996, + 11.5809123 + ], + [ + 48.1245443, + 11.5808548 + ], + [ + 48.1247148, + 11.5806245 + ], + [ + 48.124881, + 11.5803902 + ], + [ + 48.124935, + 11.5803109 + ], + [ + 48.1249887, + 11.5802229 + ], + [ + 48.1250376, + 11.5801431 + ], + [ + 48.1251131, + 11.5800175 + ], + [ + 48.1251623, + 11.5799332 + ], + [ + 48.125181, + 11.5799024 + ], + [ + 48.1254604, + 11.5795136 + ], + [ + 48.125748, + 11.5791211 + ], + [ + 48.126075, + 11.5786764 + ], + [ + 48.1262429, + 11.578448 + ], + [ + 48.1262552, + 11.5784312 + ], + [ + 48.1262798, + 11.5783978 + ], + [ + 48.1263575, + 11.5782894 + ], + [ + 48.1263713, + 11.5782701 + ], + [ + 48.1264277, + 11.5781914 + ], + [ + 48.1264326, + 11.5781845 + ], + [ + 48.1264559, + 11.5781519 + ], + [ + 48.1266009, + 11.5779495 + ], + [ + 48.1267596, + 11.5777391 + ] + ] + }, + { + "osmId": "155594940", + "name": null, + "lengthMeters": 372.9431521139693, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4699426, + 13.446935 + ], + [ + 52.4699621, + 13.4470622 + ], + [ + 52.4700793, + 13.4478745 + ], + [ + 52.4701358, + 13.448278 + ], + [ + 52.4701962, + 13.4487175 + ], + [ + 52.4703736, + 13.4500292 + ], + [ + 52.4704163, + 13.4503473 + ], + [ + 52.4704917, + 13.4508948 + ], + [ + 52.4705244, + 13.4511353 + ], + [ + 52.4705622, + 13.4513827 + ], + [ + 52.4706124, + 13.4516716 + ], + [ + 52.4706622, + 13.4519198 + ], + [ + 52.4707028, + 13.4520903 + ], + [ + 52.4707513, + 13.4522719 + ] + ] + }, + { + "osmId": "155637608", + "name": null, + "lengthMeters": 176.39378249542253, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1547608, + 11.5113463 + ], + [ + 48.1547274, + 11.5113465 + ], + [ + 48.154669, + 11.511347 + ], + [ + 48.1546332, + 11.5113481 + ], + [ + 48.1545984, + 11.5113507 + ], + [ + 48.1545562, + 11.5113618 + ], + [ + 48.1545157, + 11.5113817 + ], + [ + 48.1545077, + 11.5113864 + ], + [ + 48.1544854, + 11.5114053 + ], + [ + 48.154468, + 11.5114209 + ], + [ + 48.1544472, + 11.5114411 + ], + [ + 48.1544123, + 11.5114846 + ], + [ + 48.1544025, + 11.5114979 + ], + [ + 48.1543767, + 11.5115357 + ], + [ + 48.1543445, + 11.5115968 + ], + [ + 48.1543402, + 11.5116077 + ], + [ + 48.1543232, + 11.5116486 + ], + [ + 48.1543066, + 11.511693 + ], + [ + 48.1542888, + 11.5117478 + ], + [ + 48.1542761, + 11.5117909 + ], + [ + 48.1541912, + 11.5120829 + ], + [ + 48.154127, + 11.5122961 + ], + [ + 48.1540648, + 11.5124788 + ], + [ + 48.1540139, + 11.5126083 + ], + [ + 48.1539516, + 11.5127398 + ], + [ + 48.1537861, + 11.5130259 + ] + ] + }, + { + "osmId": "155647217", + "name": null, + "lengthMeters": 875.9624996016269, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1702147, + 11.5739555 + ], + [ + 48.1702044, + 11.5742216 + ], + [ + 48.1701985, + 11.5743856 + ], + [ + 48.1701872, + 11.5745566 + ], + [ + 48.1701711, + 11.5747495 + ], + [ + 48.1701599, + 11.5748744 + ], + [ + 48.1701398, + 11.5750572 + ], + [ + 48.1701253, + 11.5751886 + ], + [ + 48.1700929, + 11.5754672 + ], + [ + 48.1700666, + 11.5757453 + ], + [ + 48.1700418, + 11.5760467 + ], + [ + 48.1700386, + 11.5761019 + ], + [ + 48.1700381, + 11.5761334 + ], + [ + 48.1700382, + 11.5764617 + ], + [ + 48.1700402, + 11.5764947 + ], + [ + 48.1700714, + 11.5770222 + ], + [ + 48.1701006, + 11.5775417 + ], + [ + 48.1701106, + 11.5776693 + ], + [ + 48.170118, + 11.5777797 + ], + [ + 48.1701446, + 11.5780184 + ], + [ + 48.17019, + 11.5783879 + ], + [ + 48.1702062, + 11.5785381 + ], + [ + 48.1703587, + 11.5799807 + ], + [ + 48.1703852, + 11.5801636 + ], + [ + 48.1705229, + 11.5809623 + ], + [ + 48.1706499, + 11.5815353 + ], + [ + 48.1708063, + 11.5822412 + ], + [ + 48.1708405, + 11.5824046 + ], + [ + 48.1708833, + 11.5826418 + ], + [ + 48.1709036, + 11.5827542 + ], + [ + 48.1709165, + 11.5828894 + ], + [ + 48.1709794, + 11.5835493 + ], + [ + 48.17105, + 11.5844565 + ], + [ + 48.1710792, + 11.584932 + ], + [ + 48.1710892, + 11.5850868 + ], + [ + 48.1711101, + 11.5854088 + ], + [ + 48.1711209, + 11.5855758 + ] + ] + }, + { + "osmId": "155647223", + "name": null, + "lengthMeters": 83.74290228561973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1711483, + 11.5855759 + ], + [ + 48.171123, + 11.5851659 + ], + [ + 48.171107, + 11.5849294 + ], + [ + 48.1710868, + 11.5846305 + ], + [ + 48.1710791, + 11.5844515 + ] + ] + }, + { + "osmId": "155667501", + "name": "U1", + "lengthMeters": 175.810446921378, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5011587, + 13.4450657 + ], + [ + 52.5011355, + 13.445033 + ], + [ + 52.501113, + 13.4449987 + ], + [ + 52.5010912, + 13.4449642 + ], + [ + 52.5010659, + 13.4449187 + ], + [ + 52.5010416, + 13.4448716 + ], + [ + 52.5010218, + 13.4448297 + ], + [ + 52.5010038, + 13.4447855 + ], + [ + 52.5009851, + 13.4447341 + ], + [ + 52.5009631, + 13.4446664 + ], + [ + 52.5009437, + 13.4445939 + ], + [ + 52.5009268, + 13.4445204 + ], + [ + 52.500913, + 13.4444411 + ], + [ + 52.5009038, + 13.4443706 + ], + [ + 52.5008951, + 13.4442813 + ], + [ + 52.5008908, + 13.444186 + ], + [ + 52.5008914, + 13.444123 + ], + [ + 52.5008935, + 13.4440582 + ], + [ + 52.5008987, + 13.4439867 + ], + [ + 52.5009087, + 13.4439022 + ], + [ + 52.5009246, + 13.4437948 + ], + [ + 52.5010504, + 13.4430856 + ], + [ + 52.5010726, + 13.442953 + ], + [ + 52.5010835, + 13.4428741 + ], + [ + 52.5010917, + 13.4428045 + ], + [ + 52.5010992, + 13.442727 + ], + [ + 52.5011039, + 13.442648 + ] + ] + }, + { + "osmId": "155667505", + "name": "U1", + "lengthMeters": 182.31620425569852, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5010793, + 13.4425924 + ], + [ + 52.5010772, + 13.4426602 + ], + [ + 52.5010715, + 13.4427467 + ], + [ + 52.5010629, + 13.4428256 + ], + [ + 52.5010486, + 13.4429279 + ], + [ + 52.501025, + 13.4430694 + ], + [ + 52.5008974, + 13.4437842 + ], + [ + 52.5008815, + 13.4438918 + ], + [ + 52.5008719, + 13.4439797 + ], + [ + 52.5008665, + 13.4440603 + ], + [ + 52.5008645, + 13.4441295 + ], + [ + 52.5008646, + 13.4441986 + ], + [ + 52.5008683, + 13.4442893 + ], + [ + 52.5008765, + 13.4443728 + ], + [ + 52.5008864, + 13.4444513 + ], + [ + 52.500901, + 13.4445314 + ], + [ + 52.5009171, + 13.4446045 + ], + [ + 52.5009373, + 13.4446773 + ], + [ + 52.5009616, + 13.4447535 + ], + [ + 52.500982, + 13.4448089 + ], + [ + 52.5010019, + 13.4448575 + ], + [ + 52.5010232, + 13.4449039 + ], + [ + 52.5010466, + 13.4449504 + ], + [ + 52.5010724, + 13.4449956 + ], + [ + 52.501095, + 13.4450316 + ], + [ + 52.5011189, + 13.4450668 + ], + [ + 52.5011428, + 13.4450995 + ] + ] + }, + { + "osmId": "155667513", + "name": "U1", + "lengthMeters": 127.38482812666194, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4996413, + 13.3640001 + ], + [ + 52.499665, + 13.3641076 + ], + [ + 52.4996866, + 13.3641881 + ], + [ + 52.499826, + 13.3646658 + ], + [ + 52.4998591, + 13.3647688 + ], + [ + 52.499884, + 13.3648483 + ], + [ + 52.499907, + 13.3649296 + ], + [ + 52.499934, + 13.3650394 + ], + [ + 52.4999561, + 13.3651532 + ], + [ + 52.4999696, + 13.3652405 + ], + [ + 52.4999837, + 13.3653585 + ], + [ + 52.4999912, + 13.3654598 + ], + [ + 52.5000134, + 13.3656104 + ], + [ + 52.5000178, + 13.3657593 + ] + ] + }, + { + "osmId": "155667519", + "name": "U1", + "lengthMeters": 154.45615961200448, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5000359, + 13.3657624 + ], + [ + 52.5000272, + 13.3654379 + ], + [ + 52.5000197, + 13.3651925 + ], + [ + 52.5000079, + 13.3651065 + ], + [ + 52.4999933, + 13.365021 + ], + [ + 52.4999067, + 13.3646375 + ], + [ + 52.4998773, + 13.3645305 + ], + [ + 52.4998348, + 13.3644024 + ], + [ + 52.499801, + 13.3642983 + ], + [ + 52.4997777, + 13.3642175 + ], + [ + 52.4997503, + 13.3641082 + ], + [ + 52.4997259, + 13.3639956 + ], + [ + 52.4997057, + 13.3638798 + ], + [ + 52.4996837, + 13.3637226 + ], + [ + 52.4996707, + 13.3635892 + ] + ] + }, + { + "osmId": "155667522", + "name": "U1", + "lengthMeters": 894.1584405865256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992274, + 13.4271661 + ], + [ + 52.4992005, + 13.4265182 + ], + [ + 52.4991905, + 13.4262486 + ], + [ + 52.499161, + 13.4253117 + ], + [ + 52.4991583, + 13.4251733 + ], + [ + 52.4991551, + 13.4250141 + ], + [ + 52.4991309, + 13.422873 + ], + [ + 52.4991305, + 13.4227132 + ], + [ + 52.4991319, + 13.4225761 + ], + [ + 52.4991351, + 13.4224193 + ], + [ + 52.4991375, + 13.4222669 + ], + [ + 52.4991384, + 13.4221083 + ], + [ + 52.4991207, + 13.420568 + ], + [ + 52.4990984, + 13.4196313 + ], + [ + 52.499092, + 13.4192815 + ], + [ + 52.4990755, + 13.4188046 + ], + [ + 52.4990631, + 13.418556 + ], + [ + 52.4990392, + 13.4181784 + ], + [ + 52.4990137, + 13.4178906 + ], + [ + 52.4989719, + 13.4174993 + ], + [ + 52.4989182, + 13.4170759 + ], + [ + 52.4988512, + 13.4165691 + ], + [ + 52.4985563, + 13.4145429 + ], + [ + 52.4985335, + 13.4142961 + ], + [ + 52.4985231, + 13.4140562 + ] + ] + }, + { + "osmId": "155667526", + "name": "U1", + "lengthMeters": 894.1823647398887, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984966, + 13.4140527 + ], + [ + 52.4985059, + 13.4142928 + ], + [ + 52.4985337, + 13.4145507 + ], + [ + 52.498828, + 13.4165898 + ], + [ + 52.4988586, + 13.4168421 + ], + [ + 52.4988748, + 13.4169892 + ], + [ + 52.4988848, + 13.4171067 + ], + [ + 52.4988919, + 13.4172058 + ], + [ + 52.4988971, + 13.4173 + ], + [ + 52.4989036, + 13.417521 + ], + [ + 52.4989108, + 13.417852 + ], + [ + 52.4989193, + 13.4181308 + ], + [ + 52.4989331, + 13.4184452 + ], + [ + 52.4989542, + 13.4187411 + ], + [ + 52.4989749, + 13.4189795 + ], + [ + 52.4990083, + 13.4192946 + ], + [ + 52.4990275, + 13.4194934 + ], + [ + 52.4990339, + 13.4195676 + ], + [ + 52.4990382, + 13.4196266 + ], + [ + 52.4990417, + 13.4196884 + ], + [ + 52.499044, + 13.4197449 + ], + [ + 52.4990475, + 13.4199316 + ], + [ + 52.4990629, + 13.4205911 + ], + [ + 52.4990672, + 13.4208854 + ], + [ + 52.4990787, + 13.4219611 + ], + [ + 52.4990809, + 13.4221418 + ], + [ + 52.4990855, + 13.4223065 + ], + [ + 52.499091, + 13.4224453 + ], + [ + 52.4990957, + 13.4225516 + ], + [ + 52.4990999, + 13.4226688 + ], + [ + 52.4991026, + 13.4227837 + ], + [ + 52.4991276, + 13.4250142 + ], + [ + 52.499131, + 13.42517 + ], + [ + 52.4991348, + 13.4253341 + ], + [ + 52.4991633, + 13.4262518 + ], + [ + 52.4991737, + 13.4265214 + ], + [ + 52.4992003, + 13.427171 + ] + ] + }, + { + "osmId": "155667532", + "name": "U1", + "lengthMeters": 200.85282549732403, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5011428, + 13.4450995 + ], + [ + 52.5012116, + 13.4451912 + ], + [ + 52.5021955, + 13.4464635 + ], + [ + 52.5025611, + 13.446937 + ] + ] + }, + { + "osmId": "155667537", + "name": "U1", + "lengthMeters": 200.7419995613054, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5025766, + 13.4469014 + ], + [ + 52.5022109, + 13.4464292 + ], + [ + 52.5012289, + 13.4451585 + ], + [ + 52.5011587, + 13.4450657 + ] + ] + }, + { + "osmId": "155667540", + "name": "U1", + "lengthMeters": 841.5277587910489, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983963, + 13.4044352 + ], + [ + 52.4983736, + 13.3997496 + ], + [ + 52.4983727, + 13.3994435 + ], + [ + 52.498353, + 13.3968806 + ], + [ + 52.4983475, + 13.3966168 + ], + [ + 52.4983319, + 13.3963546 + ], + [ + 52.4983136, + 13.3961794 + ], + [ + 52.4982409, + 13.3954259 + ], + [ + 52.4982275, + 13.3953124 + ], + [ + 52.4981115, + 13.3946711 + ], + [ + 52.4980302, + 13.394178 + ], + [ + 52.4978794, + 13.3927418 + ], + [ + 52.4978398, + 13.3923487 + ], + [ + 52.4978246, + 13.3920929 + ] + ] + }, + { + "osmId": "155672448", + "name": null, + "lengthMeters": 791.9715010601622, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1710791, + 11.5844515 + ], + [ + 48.17101, + 11.5835388 + ], + [ + 48.1709971, + 11.5834078 + ], + [ + 48.1709456, + 11.5828864 + ], + [ + 48.1709325, + 11.5827538 + ], + [ + 48.1709162, + 11.5826323 + ], + [ + 48.1709082, + 11.5825723 + ], + [ + 48.1708645, + 11.5823712 + ], + [ + 48.1708046, + 11.5821038 + ], + [ + 48.1706405, + 11.5813813 + ], + [ + 48.1705825, + 11.5811047 + ], + [ + 48.1705397, + 11.5809009 + ], + [ + 48.1704756, + 11.580535 + ], + [ + 48.1704125, + 11.5801545 + ], + [ + 48.1703969, + 11.5800578 + ], + [ + 48.1703728, + 11.5798624 + ], + [ + 48.1702858, + 11.5790328 + ], + [ + 48.1702368, + 11.5785216 + ], + [ + 48.1702181, + 11.5783741 + ], + [ + 48.1701717, + 11.5780169 + ], + [ + 48.1701504, + 11.5777758 + ], + [ + 48.170141, + 11.5776666 + ], + [ + 48.1701295, + 11.5774413 + ], + [ + 48.1701249, + 11.577369 + ], + [ + 48.1701157, + 11.5772266 + ], + [ + 48.1701024, + 11.57702 + ], + [ + 48.1700843, + 11.5766728 + ], + [ + 48.17007, + 11.5763985 + ], + [ + 48.1700727, + 11.5761141 + ], + [ + 48.1700863, + 11.575882 + ], + [ + 48.1701067, + 11.5756253 + ], + [ + 48.1701486, + 11.5752773 + ], + [ + 48.1701743, + 11.5750658 + ], + [ + 48.1701907, + 11.574931 + ], + [ + 48.1702131, + 11.574722 + ], + [ + 48.1702314, + 11.5745158 + ], + [ + 48.1702511, + 11.574205 + ], + [ + 48.1702644, + 11.5740103 + ], + [ + 48.1702676, + 11.5739627 + ] + ] + }, + { + "osmId": "155699026", + "name": null, + "lengthMeters": 595.4499701676267, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5274696, + 10.2986172 + ], + [ + 53.5276979, + 10.2995623 + ], + [ + 53.5277447, + 10.2997555 + ], + [ + 53.5279192, + 10.3004787 + ], + [ + 53.5280953, + 10.3012774 + ], + [ + 53.5282304, + 10.3019138 + ], + [ + 53.5283921, + 10.3026753 + ], + [ + 53.5285153, + 10.3033249 + ], + [ + 53.5285472, + 10.3034934 + ], + [ + 53.5286868, + 10.3042925 + ], + [ + 53.5286907, + 10.3043147 + ], + [ + 53.5288573, + 10.305355 + ], + [ + 53.5291413, + 10.307164 + ] + ] + }, + { + "osmId": "155913715", + "name": null, + "lengthMeters": 1297.1701458232058, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5752351, + 9.9294315 + ], + [ + 53.5756106, + 9.9290787 + ], + [ + 53.5759134, + 9.9287969 + ], + [ + 53.5764651, + 9.9283303 + ], + [ + 53.5770265, + 9.9278775 + ], + [ + 53.5776689, + 9.9273896 + ], + [ + 53.5783138, + 9.9268905 + ], + [ + 53.5788027, + 9.9265145 + ], + [ + 53.5789049, + 9.9264386 + ], + [ + 53.5808404, + 9.9249522 + ], + [ + 53.5812225, + 9.924662 + ], + [ + 53.5816084, + 9.9243688 + ], + [ + 53.5831808, + 9.9231648 + ], + [ + 53.5845149, + 9.9221409 + ], + [ + 53.5855096, + 9.9213733 + ], + [ + 53.5858096, + 9.9211443 + ] + ] + }, + { + "osmId": "156041986", + "name": null, + "lengthMeters": 157.17980724113724, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6477095, + 10.0913773 + ], + [ + 53.6490371, + 10.0921962 + ] + ] + }, + { + "osmId": "156225598", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 312.30423989313323, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0747404, + 11.5426176 + ], + [ + 48.0743563, + 11.5384536 + ] + ] + }, + { + "osmId": "156225660", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 4907.174935339991, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0744693, + 11.5492342 + ], + [ + 48.0743954, + 11.5496434 + ], + [ + 48.0742907, + 11.5501565 + ], + [ + 48.0742122, + 11.5504967 + ], + [ + 48.0741495, + 11.5507465 + ], + [ + 48.0740834, + 11.5509974 + ], + [ + 48.0739656, + 11.5514212 + ], + [ + 48.0738518, + 11.5517928 + ], + [ + 48.0737678, + 11.552053 + ], + [ + 48.073681, + 11.5523139 + ], + [ + 48.0735883, + 11.5525737 + ], + [ + 48.0734928, + 11.5528269 + ], + [ + 48.0733331, + 11.553233 + ], + [ + 48.0732266, + 11.5534952 + ], + [ + 48.0731676, + 11.5536404 + ], + [ + 48.0728103, + 11.5544212 + ], + [ + 48.0726342, + 11.554772 + ], + [ + 48.0723765, + 11.555231 + ], + [ + 48.0720851, + 11.5557149 + ], + [ + 48.0717157, + 11.5562992 + ], + [ + 48.0713012, + 11.5568736 + ], + [ + 48.070835, + 11.5574595 + ], + [ + 48.0707004, + 11.557615 + ], + [ + 48.0705316, + 11.5578101 + ], + [ + 48.0700051, + 11.5583815 + ], + [ + 48.0695308, + 11.5588626 + ], + [ + 48.0693948, + 11.5589968 + ], + [ + 48.0688323, + 11.559519 + ], + [ + 48.0682367, + 11.5600259 + ], + [ + 48.0678301, + 11.5603408 + ], + [ + 48.0676667, + 11.5604613 + ], + [ + 48.0673512, + 11.5606939 + ], + [ + 48.066879, + 11.5610008 + ], + [ + 48.0663559, + 11.5613323 + ], + [ + 48.0656148, + 11.5617449 + ], + [ + 48.0643508, + 11.5623651 + ], + [ + 48.0643189, + 11.5623802 + ], + [ + 48.0637609, + 11.5626448 + ], + [ + 48.0629498, + 11.5630284 + ], + [ + 48.0611212, + 11.5638931 + ], + [ + 48.0608937, + 11.5640007 + ], + [ + 48.0595583, + 11.5646322 + ], + [ + 48.0575902, + 11.5655628 + ], + [ + 48.0562194, + 11.566211 + ], + [ + 48.054159, + 11.5671853 + ], + [ + 48.0527933, + 11.567831 + ], + [ + 48.0525502, + 11.5679459 + ], + [ + 48.0523841, + 11.5680245 + ], + [ + 48.0513315, + 11.5685156 + ], + [ + 48.0507297, + 11.5688009 + ], + [ + 48.0493638, + 11.5694483 + ], + [ + 48.0481355, + 11.5700306 + ], + [ + 48.0473041, + 11.5704237 + ], + [ + 48.0459342, + 11.5710714 + ], + [ + 48.0456027, + 11.5712282 + ], + [ + 48.0438763, + 11.5720428 + ], + [ + 48.0425085, + 11.5726882 + ], + [ + 48.0404504, + 11.5736592 + ], + [ + 48.0390783, + 11.5743066 + ], + [ + 48.0356351, + 11.575931 + ] + ] + }, + { + "osmId": "156225664", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 451.51820676259325, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.074612, + 11.548653 + ], + [ + 48.0746608, + 11.5483169 + ], + [ + 48.0746851, + 11.548124 + ], + [ + 48.0747537, + 11.5475519 + ], + [ + 48.0747826, + 11.5472631 + ], + [ + 48.0748039, + 11.5470078 + ], + [ + 48.0748502, + 11.5463825 + ], + [ + 48.0748789, + 11.5456858 + ], + [ + 48.0748806, + 11.5448671 + ], + [ + 48.074873, + 11.5445271 + ], + [ + 48.0748555, + 11.5441185 + ], + [ + 48.0748269, + 11.5436287 + ], + [ + 48.0747777, + 11.5430532 + ], + [ + 48.0747404, + 11.5426176 + ] + ] + }, + { + "osmId": "156225668", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 449.24590325159267, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0747058, + 11.5426248 + ], + [ + 48.0747442, + 11.5430615 + ], + [ + 48.0747937, + 11.5436247 + ], + [ + 48.0748205, + 11.5441161 + ], + [ + 48.0748398, + 11.5445423 + ], + [ + 48.0748435, + 11.5448661 + ], + [ + 48.0748417, + 11.5456854 + ], + [ + 48.0748086, + 11.546384 + ], + [ + 48.0747637, + 11.5470026 + ], + [ + 48.0747425, + 11.5472561 + ], + [ + 48.074714, + 11.5475402 + ], + [ + 48.0746468, + 11.548113 + ], + [ + 48.0746227, + 11.5483034 + ], + [ + 48.074575, + 11.5486298 + ] + ] + }, + { + "osmId": "156239885", + "name": null, + "lengthMeters": 778.6559019908921, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5598998, + 13.413161 + ], + [ + 52.5599212, + 13.4131601 + ], + [ + 52.5599679, + 13.4131583 + ], + [ + 52.5600313, + 13.4131557 + ], + [ + 52.5610112, + 13.4130868 + ], + [ + 52.5611428, + 13.4130749 + ], + [ + 52.5612561, + 13.4130592 + ], + [ + 52.5621036, + 13.4129534 + ], + [ + 52.5621168, + 13.4129514 + ], + [ + 52.5621838, + 13.4129413 + ], + [ + 52.5630081, + 13.4128154 + ], + [ + 52.5630857, + 13.4128036 + ], + [ + 52.5632037, + 13.4127872 + ], + [ + 52.5637924, + 13.4127056 + ], + [ + 52.5649383, + 13.4125469 + ], + [ + 52.565744, + 13.4124342 + ], + [ + 52.5659337, + 13.4124048 + ], + [ + 52.5660777, + 13.4123816 + ], + [ + 52.5661914, + 13.4123652 + ], + [ + 52.566352, + 13.4123444 + ], + [ + 52.5664139, + 13.4123343 + ], + [ + 52.5664481, + 13.4123287 + ], + [ + 52.5668804, + 13.4122707 + ] + ] + }, + { + "osmId": "156239889", + "name": null, + "lengthMeters": 726.9106930298083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5598996, + 13.4132132 + ], + [ + 52.5599233, + 13.4132122 + ], + [ + 52.5599701, + 13.41321 + ], + [ + 52.5600337, + 13.4132074 + ], + [ + 52.5610125, + 13.4131381 + ], + [ + 52.5611421, + 13.4131277 + ], + [ + 52.5612584, + 13.4131127 + ], + [ + 52.5620308, + 13.4130075 + ], + [ + 52.5621176, + 13.4129955 + ], + [ + 52.562185, + 13.4129863 + ], + [ + 52.5630126, + 13.4128713 + ], + [ + 52.5630886, + 13.4128608 + ], + [ + 52.5636566, + 13.4127766 + ], + [ + 52.5637949, + 13.4127561 + ], + [ + 52.5649418, + 13.4125988 + ], + [ + 52.5657459, + 13.4124845 + ], + [ + 52.5659364, + 13.4124572 + ], + [ + 52.5660812, + 13.412433 + ], + [ + 52.566194, + 13.4124171 + ], + [ + 52.5663545, + 13.4123943 + ], + [ + 52.5663812, + 13.4123882 + ], + [ + 52.5664164, + 13.4123856 + ] + ] + }, + { + "osmId": "156239893", + "name": null, + "lengthMeters": 127.04939747918803, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5587598, + 13.4133332 + ], + [ + 52.5587836, + 13.4133279 + ], + [ + 52.5588695, + 13.413309 + ], + [ + 52.5589439, + 13.4132985 + ], + [ + 52.5590002, + 13.4132905 + ], + [ + 52.5596168, + 13.413232 + ], + [ + 52.5597078, + 13.4132214 + ], + [ + 52.5597674, + 13.4132188 + ], + [ + 52.5598996, + 13.4132132 + ] + ] + }, + { + "osmId": "156307278", + "name": null, + "lengthMeters": 878.2714002742488, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.571979, + 13.4137799 + ], + [ + 52.5720674, + 13.4141208 + ], + [ + 52.5721335, + 13.4143855 + ], + [ + 52.5721657, + 13.4145095 + ], + [ + 52.5722305, + 13.4147655 + ], + [ + 52.5722559, + 13.4148659 + ], + [ + 52.5722595, + 13.41488 + ], + [ + 52.5723096, + 13.4150065 + ], + [ + 52.5723315, + 13.4150477 + ], + [ + 52.5723813, + 13.4151267 + ], + [ + 52.5724388, + 13.4152099 + ], + [ + 52.5727169, + 13.4156121 + ], + [ + 52.5728142, + 13.4157492 + ], + [ + 52.5734573, + 13.4166556 + ], + [ + 52.5736336, + 13.4169042 + ], + [ + 52.5739638, + 13.4173665 + ], + [ + 52.5741473, + 13.4176235 + ], + [ + 52.574785, + 13.4185209 + ], + [ + 52.5748337, + 13.4185985 + ], + [ + 52.5748705, + 13.4186864 + ], + [ + 52.574899, + 13.4187607 + ], + [ + 52.5749194, + 13.4188391 + ], + [ + 52.5749436, + 13.4189361 + ], + [ + 52.5749588, + 13.4190103 + ], + [ + 52.575075, + 13.4195974 + ], + [ + 52.5751059, + 13.419737 + ], + [ + 52.575359, + 13.4209739 + ], + [ + 52.575437, + 13.4213502 + ], + [ + 52.5754553, + 13.4214385 + ], + [ + 52.5754767, + 13.4215434 + ], + [ + 52.5757969, + 13.423116 + ], + [ + 52.5758444, + 13.4233484 + ], + [ + 52.5759672, + 13.4239454 + ], + [ + 52.5759976, + 13.4240943 + ], + [ + 52.5760298, + 13.4242525 + ], + [ + 52.5760621, + 13.4244108 + ] + ] + }, + { + "osmId": "156310838", + "name": null, + "lengthMeters": 76.40311171965602, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5706985, + 13.4102524 + ], + [ + 52.570802, + 13.4101537 + ], + [ + 52.570823, + 13.4101295 + ], + [ + 52.5708358, + 13.410114 + ], + [ + 52.5708504, + 13.4100938 + ], + [ + 52.5708636, + 13.4100741 + ], + [ + 52.5708844, + 13.4100429 + ], + [ + 52.5708948, + 13.4100229 + ], + [ + 52.5709102, + 13.4099923 + ], + [ + 52.5709309, + 13.4099463 + ], + [ + 52.5709444, + 13.4099119 + ], + [ + 52.5709585, + 13.409873 + ], + [ + 52.5709752, + 13.4098087 + ], + [ + 52.570984, + 13.4097754 + ], + [ + 52.5709887, + 13.4097488 + ], + [ + 52.5709929, + 13.4097234 + ], + [ + 52.570998, + 13.4096857 + ], + [ + 52.5710009, + 13.4096654 + ], + [ + 52.5710027, + 13.4096459 + ], + [ + 52.5710049, + 13.4096188 + ], + [ + 52.5710067, + 13.4095832 + ], + [ + 52.571008, + 13.4095383 + ], + [ + 52.5710075, + 13.4095256 + ], + [ + 52.5710058, + 13.409476 + ], + [ + 52.5710031, + 13.409432 + ], + [ + 52.570998, + 13.4093865 + ], + [ + 52.5709911, + 13.4093394 + ] + ] + }, + { + "osmId": "156364043", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 288.7833850555866, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0812538, + 11.5272464 + ], + [ + 48.0812512, + 11.5272453 + ], + [ + 48.0810604, + 11.527164 + ], + [ + 48.0809192, + 11.5271048 + ], + [ + 48.0806819, + 11.5270152 + ], + [ + 48.0806124, + 11.526993 + ], + [ + 48.0804597, + 11.5269442 + ], + [ + 48.0802344, + 11.5268851 + ], + [ + 48.0799414, + 11.5268367 + ], + [ + 48.0796863, + 11.5268104 + ], + [ + 48.0794502, + 11.5268101 + ], + [ + 48.0792563, + 11.5268154 + ], + [ + 48.0791908, + 11.52682 + ], + [ + 48.0790858, + 11.5268292 + ], + [ + 48.0789279, + 11.5268531 + ], + [ + 48.0788404, + 11.5268663 + ], + [ + 48.0786909, + 11.5268957 + ] + ] + }, + { + "osmId": "156364050", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 500.8171088230678, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0904535, + 11.5311094 + ], + [ + 48.0901927, + 11.531002 + ], + [ + 48.089464, + 11.5307018 + ], + [ + 48.0886865, + 11.5303817 + ], + [ + 48.0886208, + 11.5303546 + ], + [ + 48.0871756, + 11.5297596 + ], + [ + 48.0862029, + 11.5293591 + ], + [ + 48.0861109, + 11.5293208 + ] + ] + }, + { + "osmId": "156364051", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 502.05760454266135, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0861017, + 11.5293722 + ], + [ + 48.0861947, + 11.5294106 + ], + [ + 48.0871669, + 11.5298119 + ], + [ + 48.0886119, + 11.5304083 + ], + [ + 48.088678, + 11.5304356 + ], + [ + 48.0901839, + 11.5310572 + ], + [ + 48.0904544, + 11.5311688 + ] + ] + }, + { + "osmId": "156364052", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 273.53979737300784, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0788013, + 11.527 + ], + [ + 48.0789194, + 11.5269797 + ], + [ + 48.0790148, + 11.5269676 + ], + [ + 48.0790587, + 11.526962 + ], + [ + 48.0790908, + 11.5269579 + ], + [ + 48.0791993, + 11.5269512 + ], + [ + 48.0794094, + 11.5269411 + ], + [ + 48.0795092, + 11.5269398 + ], + [ + 48.0796876, + 11.5269478 + ], + [ + 48.0799345, + 11.5269704 + ], + [ + 48.0802004, + 11.5270191 + ], + [ + 48.0804135, + 11.5270696 + ], + [ + 48.0806243, + 11.5271378 + ], + [ + 48.0808143, + 11.5272019 + ], + [ + 48.081043, + 11.5272896 + ], + [ + 48.0812311, + 11.5273637 + ] + ] + }, + { + "osmId": "156364055", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 226.9959303814208, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0954951, + 11.5331897 + ], + [ + 48.0954568, + 11.5331744 + ], + [ + 48.0943091, + 11.5326999 + ], + [ + 48.093527, + 11.5323779 + ] + ] + }, + { + "osmId": "156364059", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 320.88969782537754, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0907344, + 11.5312812 + ], + [ + 48.0920664, + 11.5318316 + ], + [ + 48.0932428, + 11.5323178 + ], + [ + 48.0934247, + 11.532393 + ], + [ + 48.0935162, + 11.5324308 + ] + ] + }, + { + "osmId": "156366337", + "name": "Isartalbahn", + "lengthMeters": 155.2526335800328, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0411842, + 11.5080263 + ], + [ + 48.0416901, + 11.5084232 + ], + [ + 48.0420137, + 11.5086771 + ], + [ + 48.0424215, + 11.5089939 + ] + ] + }, + { + "osmId": "156422100", + "name": null, + "lengthMeters": 4496.515982824969, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0763522, + 11.5499308 + ], + [ + 48.0759847, + 11.5497523 + ], + [ + 48.0743309, + 11.5489328 + ], + [ + 48.0729534, + 11.5482386 + ], + [ + 48.0715435, + 11.5475185 + ], + [ + 48.0712396, + 11.5473645 + ], + [ + 48.0696115, + 11.5465037 + ], + [ + 48.0692642, + 11.5463396 + ], + [ + 48.0690177, + 11.5462711 + ], + [ + 48.0688416, + 11.5462475 + ], + [ + 48.068664, + 11.5462326 + ], + [ + 48.0684852, + 11.5462375 + ], + [ + 48.0683163, + 11.5462467 + ], + [ + 48.0680045, + 11.5462674 + ], + [ + 48.0677338, + 11.5462713 + ], + [ + 48.0675906, + 11.5462671 + ], + [ + 48.0674291, + 11.5462619 + ], + [ + 48.0670097, + 11.5462203 + ], + [ + 48.0665982, + 11.5461634 + ], + [ + 48.0656022, + 11.5459819 + ], + [ + 48.0651303, + 11.5458894 + ], + [ + 48.0647372, + 11.545794 + ], + [ + 48.0645839, + 11.5457495 + ], + [ + 48.0641136, + 11.5455946 + ], + [ + 48.0635584, + 11.5453838 + ], + [ + 48.0629842, + 11.5451553 + ], + [ + 48.0629535, + 11.5451422 + ], + [ + 48.0627403, + 11.5450512 + ], + [ + 48.0620819, + 11.5447656 + ], + [ + 48.0606972, + 11.5440963 + ], + [ + 48.0602376, + 11.5438637 + ], + [ + 48.0593825, + 11.5433782 + ], + [ + 48.0582566, + 11.5427373 + ], + [ + 48.0558538, + 11.5412301 + ], + [ + 48.0552728, + 11.5407672 + ], + [ + 48.05518, + 11.5406958 + ], + [ + 48.0551229, + 11.5406519 + ], + [ + 48.0550789, + 11.5406158 + ], + [ + 48.0543102, + 11.5399855 + ], + [ + 48.0539201, + 11.5396695 + ], + [ + 48.0535331, + 11.5393456 + ], + [ + 48.0532091, + 11.5390737 + ], + [ + 48.0528922, + 11.538786 + ], + [ + 48.0525821, + 11.5384893 + ], + [ + 48.0522737, + 11.5381789 + ], + [ + 48.051042, + 11.5369859 + ], + [ + 48.0496939, + 11.5356626 + ], + [ + 48.0495781, + 11.5355476 + ], + [ + 48.0490025, + 11.5350044 + ], + [ + 48.0483527, + 11.5342156 + ], + [ + 48.0478116, + 11.5333929 + ], + [ + 48.0474087, + 11.5327548 + ], + [ + 48.0471667, + 11.5324071 + ], + [ + 48.0468881, + 11.5320702 + ], + [ + 48.0463576, + 11.5314517 + ], + [ + 48.0442251, + 11.5289785 + ], + [ + 48.0438489, + 11.5285317 + ], + [ + 48.0437354, + 11.5283862 + ], + [ + 48.0436637, + 11.528251 + ], + [ + 48.0436143, + 11.5281214 + ], + [ + 48.0435656, + 11.5279897 + ], + [ + 48.0435308, + 11.5278516 + ], + [ + 48.0434953, + 11.5276535 + ], + [ + 48.043485, + 11.5275367 + ], + [ + 48.0434782, + 11.5274225 + ], + [ + 48.0434798, + 11.5273306 + ], + [ + 48.0434825, + 11.5272269 + ], + [ + 48.0434874, + 11.5271207 + ], + [ + 48.0434984, + 11.5268214 + ], + [ + 48.0435188, + 11.5262989 + ], + [ + 48.0435441, + 11.5257831 + ], + [ + 48.0435461, + 11.5255105 + ], + [ + 48.0435415, + 11.5252965 + ], + [ + 48.0435148, + 11.5251065 + ], + [ + 48.043454, + 11.5248629 + ], + [ + 48.0433787, + 11.5246847 + ], + [ + 48.0433123, + 11.5245659 + ], + [ + 48.0432069, + 11.5244071 + ], + [ + 48.0430645, + 11.5242488 + ], + [ + 48.0426951, + 11.523936 + ], + [ + 48.0423702, + 11.5236629 + ], + [ + 48.0421281, + 11.5234542 + ] + ] + }, + { + "osmId": "156648672", + "name": null, + "lengthMeters": 1859.3501362733646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1360989, + 11.5979608 + ], + [ + 48.1362472, + 11.5979972 + ], + [ + 48.1362776, + 11.5980046 + ], + [ + 48.1364004, + 11.5980394 + ], + [ + 48.1364518, + 11.5980562 + ], + [ + 48.1364963, + 11.5980708 + ], + [ + 48.1366132, + 11.5981206 + ], + [ + 48.1366734, + 11.5981498 + ], + [ + 48.1371682, + 11.5983834 + ], + [ + 48.137227, + 11.5984115 + ], + [ + 48.1373121, + 11.5984497 + ], + [ + 48.1377561, + 11.5986634 + ], + [ + 48.1378463, + 11.5987068 + ], + [ + 48.1381291, + 11.5988353 + ], + [ + 48.1383493, + 11.5989353 + ], + [ + 48.138387, + 11.5989524 + ], + [ + 48.1386457, + 11.5990635 + ], + [ + 48.1389877, + 11.5992104 + ], + [ + 48.1391512, + 11.5992806 + ], + [ + 48.1398105, + 11.5996189 + ], + [ + 48.1399046, + 11.5996672 + ], + [ + 48.1399625, + 11.5996951 + ], + [ + 48.1400702, + 11.5997471 + ], + [ + 48.1404971, + 11.5999771 + ], + [ + 48.140536, + 11.5999985 + ], + [ + 48.1405747, + 11.6000236 + ], + [ + 48.1406486, + 11.6000716 + ], + [ + 48.1407081, + 11.6001161 + ], + [ + 48.1407642, + 11.6001579 + ], + [ + 48.1417572, + 11.6008861 + ], + [ + 48.1420164, + 11.6010827 + ], + [ + 48.1420945, + 11.6011419 + ], + [ + 48.1422334, + 11.6012206 + ], + [ + 48.1423067, + 11.6012537 + ], + [ + 48.1423533, + 11.6012716 + ], + [ + 48.1423779, + 11.601281 + ], + [ + 48.1424573, + 11.6013035 + ], + [ + 48.1425384, + 11.6013159 + ], + [ + 48.1427005, + 11.6013249 + ], + [ + 48.1429895, + 11.6013269 + ], + [ + 48.1432015, + 11.6013318 + ], + [ + 48.1436393, + 11.6013472 + ], + [ + 48.143794, + 11.6013617 + ], + [ + 48.1439473, + 11.6013936 + ], + [ + 48.1440937, + 11.6014413 + ], + [ + 48.1442415, + 11.6014998 + ], + [ + 48.1443685, + 11.6015585 + ], + [ + 48.1444943, + 11.6016261 + ], + [ + 48.1446228, + 11.6017003 + ], + [ + 48.1447507, + 11.6017808 + ], + [ + 48.1448138, + 11.601825 + ], + [ + 48.1448958, + 11.6018824 + ], + [ + 48.145041, + 11.601994 + ], + [ + 48.1451838, + 11.6021216 + ], + [ + 48.1452565, + 11.6021883 + ], + [ + 48.1453244, + 11.6022548 + ], + [ + 48.1454316, + 11.6023711 + ], + [ + 48.1454528, + 11.6023949 + ], + [ + 48.1455371, + 11.6024896 + ], + [ + 48.1457265, + 11.6027424 + ], + [ + 48.1459675, + 11.6030639 + ], + [ + 48.1460293, + 11.6031567 + ], + [ + 48.1460397, + 11.6031728 + ], + [ + 48.146062, + 11.6032073 + ], + [ + 48.1461204, + 11.6032992 + ], + [ + 48.1461589, + 11.6033704 + ], + [ + 48.1462101, + 11.6034591 + ], + [ + 48.1462732, + 11.6035532 + ], + [ + 48.146318, + 11.6036141 + ], + [ + 48.1463795, + 11.6036891 + ], + [ + 48.146445, + 11.6037606 + ], + [ + 48.1465203, + 11.603828 + ], + [ + 48.1465963, + 11.6038934 + ], + [ + 48.1467592, + 11.6040122 + ], + [ + 48.1469144, + 11.6041379 + ], + [ + 48.1470677, + 11.604278 + ], + [ + 48.1472527, + 11.6044656 + ], + [ + 48.1474358, + 11.6046626 + ], + [ + 48.147601, + 11.6048398 + ], + [ + 48.1478791, + 11.6051304 + ], + [ + 48.148171, + 11.6054367 + ], + [ + 48.1482789, + 11.6055526 + ], + [ + 48.1484594, + 11.6057464 + ], + [ + 48.1485919, + 11.6059013 + ], + [ + 48.1488892, + 11.6062628 + ], + [ + 48.1491646, + 11.6066037 + ], + [ + 48.1494113, + 11.6069046 + ], + [ + 48.1495398, + 11.6070565 + ], + [ + 48.1496069, + 11.6071296 + ], + [ + 48.1496758, + 11.6071961 + ], + [ + 48.1499224, + 11.607406 + ], + [ + 48.1499535, + 11.6074295 + ], + [ + 48.1501369, + 11.607568 + ], + [ + 48.1505534, + 11.6078653 + ], + [ + 48.1506445, + 11.6079339 + ], + [ + 48.1506806, + 11.6079693 + ], + [ + 48.1507203, + 11.6080165 + ], + [ + 48.1507424, + 11.6080535 + ], + [ + 48.1507583, + 11.6080861 + ], + [ + 48.1507712, + 11.6081184 + ], + [ + 48.1507801, + 11.6081451 + ], + [ + 48.1507934, + 11.6081874 + ], + [ + 48.1508017, + 11.608224 + ], + [ + 48.1508039, + 11.6082344 + ], + [ + 48.1508086, + 11.6082622 + ], + [ + 48.1508203, + 11.608365 + ], + [ + 48.1508259, + 11.6084409 + ] + ] + }, + { + "osmId": "156666135", + "name": null, + "lengthMeters": 951.3654331313695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338268, + 11.5825624 + ], + [ + 48.1337391, + 11.5822931 + ], + [ + 48.133718, + 11.5822161 + ], + [ + 48.133703, + 11.5821541 + ], + [ + 48.1336952, + 11.5820703 + ], + [ + 48.1336937, + 11.5819927 + ], + [ + 48.1336963, + 11.5819267 + ], + [ + 48.1337023, + 11.5818608 + ], + [ + 48.1337334, + 11.5815911 + ], + [ + 48.1337868, + 11.5811616 + ], + [ + 48.1338456, + 11.5807423 + ], + [ + 48.1339666, + 11.5799007 + ], + [ + 48.1339741, + 11.5798059 + ], + [ + 48.1339775, + 11.5797125 + ], + [ + 48.1339777, + 11.5796426 + ], + [ + 48.1339763, + 11.5795747 + ], + [ + 48.1339706, + 11.5795062 + ], + [ + 48.1339652, + 11.5794301 + ], + [ + 48.1339557, + 11.5793654 + ], + [ + 48.1339396, + 11.579279 + ], + [ + 48.1336759, + 11.5781806 + ], + [ + 48.1333692, + 11.5769034 + ], + [ + 48.1332877, + 11.5765639 + ], + [ + 48.1332459, + 11.5763924 + ], + [ + 48.1332204, + 11.5762859 + ], + [ + 48.1332141, + 11.5762533 + ], + [ + 48.1332105, + 11.5762302 + ], + [ + 48.1332011, + 11.5761576 + ], + [ + 48.1331993, + 11.5761137 + ], + [ + 48.1331987, + 11.5760988 + ], + [ + 48.1331989, + 11.5760475 + ], + [ + 48.1332032, + 11.5759935 + ], + [ + 48.1333394, + 11.5749824 + ], + [ + 48.13334, + 11.5749075 + ], + [ + 48.1333343, + 11.5748372 + ], + [ + 48.1333129, + 11.5747679 + ], + [ + 48.1332809, + 11.5747038 + ], + [ + 48.1330412, + 11.5743738 + ], + [ + 48.132999, + 11.5743159 + ], + [ + 48.1329731, + 11.5742798 + ], + [ + 48.1329571, + 11.574259 + ], + [ + 48.1328694, + 11.5741375 + ], + [ + 48.1325439, + 11.5736897 + ], + [ + 48.132465, + 11.573576 + ], + [ + 48.1323869, + 11.5734395 + ], + [ + 48.1322426, + 11.5731659 + ], + [ + 48.1315199, + 11.5718001 + ], + [ + 48.1314872, + 11.5717367 + ], + [ + 48.1314644, + 11.5716904 + ], + [ + 48.1314518, + 11.5716628 + ], + [ + 48.1314115, + 11.5715765 + ], + [ + 48.131379, + 11.5715049 + ], + [ + 48.1313252, + 11.5713822 + ], + [ + 48.1313083, + 11.5713432 + ], + [ + 48.1312962, + 11.5713156 + ], + [ + 48.1312787, + 11.5712781 + ], + [ + 48.1312509, + 11.571226 + ] + ] + }, + { + "osmId": "156686731", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 6121.867858903476, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5299403, + 10.3213104 + ], + [ + 53.5299399, + 10.3217438 + ], + [ + 53.5299398, + 10.3218429 + ], + [ + 53.5299288, + 10.3228572 + ], + [ + 53.5299076, + 10.3239128 + ], + [ + 53.5298979, + 10.3243538 + ], + [ + 53.5298922, + 10.3246295 + ], + [ + 53.5298351, + 10.3260328 + ], + [ + 53.5298295, + 10.3261215 + ], + [ + 53.5297527, + 10.3273485 + ], + [ + 53.5297313, + 10.3275788 + ], + [ + 53.5296739, + 10.3283056 + ], + [ + 53.5295091, + 10.330143 + ], + [ + 53.5293902, + 10.3312154 + ], + [ + 53.5293358, + 10.3317326 + ], + [ + 53.529276, + 10.3323005 + ], + [ + 53.5291959, + 10.3329928 + ], + [ + 53.5291717, + 10.333202 + ], + [ + 53.5289435, + 10.3347681 + ], + [ + 53.5287893, + 10.3357113 + ], + [ + 53.5286968, + 10.3362773 + ], + [ + 53.5284755, + 10.3375465 + ], + [ + 53.5281997, + 10.3391283 + ], + [ + 53.5276627, + 10.3421658 + ], + [ + 53.5274818, + 10.3431127 + ], + [ + 53.5273241, + 10.3439914 + ], + [ + 53.5271906, + 10.3446733 + ], + [ + 53.5270031, + 10.345476 + ], + [ + 53.5268166, + 10.3461984 + ], + [ + 53.5267696, + 10.3463805 + ], + [ + 53.5265378, + 10.3471692 + ], + [ + 53.5260886, + 10.3485894 + ], + [ + 53.5259606, + 10.3489272 + ], + [ + 53.5256102, + 10.3498966 + ], + [ + 53.525368, + 10.3504941 + ], + [ + 53.5251418, + 10.3510192 + ], + [ + 53.5239592, + 10.353642 + ], + [ + 53.5235896, + 10.3545008 + ], + [ + 53.5232125, + 10.3554264 + ], + [ + 53.5228904, + 10.3562892 + ], + [ + 53.5226652, + 10.3569295 + ], + [ + 53.5222391, + 10.3582683 + ], + [ + 53.5221946, + 10.3584127 + ], + [ + 53.522032, + 10.3590143 + ], + [ + 53.5219102, + 10.3594646 + ], + [ + 53.5216096, + 10.3608461 + ], + [ + 53.5214987, + 10.361414 + ], + [ + 53.5214428, + 10.3617002 + ], + [ + 53.5212483, + 10.3628358 + ], + [ + 53.5210574, + 10.3641757 + ], + [ + 53.5209073, + 10.3654939 + ], + [ + 53.5208435, + 10.366909 + ], + [ + 53.5208031, + 10.3679387 + ], + [ + 53.5207954, + 10.3691545 + ], + [ + 53.5208226, + 10.3708281 + ], + [ + 53.5209021, + 10.3725936 + ], + [ + 53.5211733, + 10.3768352 + ], + [ + 53.5213172, + 10.3790864 + ], + [ + 53.5214575, + 10.3812734 + ], + [ + 53.521458, + 10.3812805 + ], + [ + 53.5220029, + 10.3897722 + ], + [ + 53.5221172, + 10.3917285 + ], + [ + 53.5228239, + 10.4038297 + ], + [ + 53.5230428, + 10.4068464 + ], + [ + 53.5230474, + 10.40691 + ], + [ + 53.5231751, + 10.4090417 + ], + [ + 53.5232353, + 10.410364 + ] + ] + }, + { + "osmId": "156781147", + "name": null, + "lengthMeters": 199.66961546647173, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1488551, + 11.5946357 + ], + [ + 48.1489442, + 11.5947179 + ], + [ + 48.1489805, + 11.5947688 + ], + [ + 48.1490053, + 11.5948164 + ], + [ + 48.1490249, + 11.594864 + ], + [ + 48.1490374, + 11.5948944 + ], + [ + 48.1491752, + 11.5952459 + ], + [ + 48.1492494, + 11.5954155 + ], + [ + 48.1493307, + 11.5955735 + ], + [ + 48.1494148, + 11.5957195 + ], + [ + 48.1495106, + 11.5958597 + ], + [ + 48.1496064, + 11.5959856 + ], + [ + 48.1498761, + 11.5962955 + ], + [ + 48.1499166, + 11.596342 + ], + [ + 48.1499508, + 11.596383 + ], + [ + 48.1499696, + 11.5964091 + ], + [ + 48.1499838, + 11.5964355 + ], + [ + 48.1499952, + 11.5964682 + ], + [ + 48.1500005, + 11.5965009 + ], + [ + 48.1500047, + 11.5965459 + ], + [ + 48.1500054, + 11.5965539 + ], + [ + 48.1500039, + 11.5966195 + ] + ] + }, + { + "osmId": "156822498", + "name": null, + "lengthMeters": 84.66638378194598, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1493286, + 11.5981336 + ], + [ + 48.1489023, + 11.5990792 + ] + ] + }, + { + "osmId": "156822499", + "name": null, + "lengthMeters": 117.71578173521033, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1493729, + 11.5981787 + ], + [ + 48.1495296, + 11.597802 + ], + [ + 48.1495526, + 11.5977531 + ], + [ + 48.1495871, + 11.5976812 + ], + [ + 48.1496138, + 11.5976254 + ], + [ + 48.1497149, + 11.597414 + ], + [ + 48.1497309, + 11.5973807 + ], + [ + 48.1497673, + 11.5973047 + ], + [ + 48.1499632, + 11.5968622 + ] + ] + }, + { + "osmId": "156822500", + "name": null, + "lengthMeters": 117.75710954530547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1499431, + 11.596841 + ], + [ + 48.1497417, + 11.5972785 + ], + [ + 48.1497102, + 11.5973445 + ], + [ + 48.1496874, + 11.5973921 + ], + [ + 48.1495939, + 11.5975887 + ], + [ + 48.1495612, + 11.5976573 + ], + [ + 48.1495251, + 11.5977314 + ], + [ + 48.149502, + 11.5977795 + ], + [ + 48.1493286, + 11.5981336 + ] + ] + }, + { + "osmId": "156988183", + "name": null, + "lengthMeters": 172.11005810115097, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1176933, + 11.5735822 + ], + [ + 48.117843, + 11.5741232 + ], + [ + 48.1182858, + 11.5757241 + ] + ] + }, + { + "osmId": "156988413", + "name": null, + "lengthMeters": 255.00605309542965, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.180665, + 11.5076633 + ], + [ + 48.180685, + 11.50769 + ], + [ + 48.1807123, + 11.5077272 + ], + [ + 48.1807385, + 11.5077673 + ], + [ + 48.1807609, + 11.507807 + ], + [ + 48.1807819, + 11.507846 + ], + [ + 48.1808008, + 11.5078872 + ], + [ + 48.1808185, + 11.5079331 + ], + [ + 48.1808343, + 11.5079802 + ], + [ + 48.1808477, + 11.508018 + ], + [ + 48.1808595, + 11.5080595 + ], + [ + 48.1808736, + 11.5081162 + ], + [ + 48.180885, + 11.5081795 + ], + [ + 48.1808976, + 11.5082691 + ], + [ + 48.1809247, + 11.5084958 + ], + [ + 48.1809486, + 11.5087228 + ], + [ + 48.180958, + 11.5088494 + ], + [ + 48.1810079, + 11.5098704 + ], + [ + 48.1810395, + 11.5105551 + ], + [ + 48.1810592, + 11.5109808 + ] + ] + }, + { + "osmId": "156990840", + "name": null, + "lengthMeters": 384.2706505943545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1695961, + 11.5286974 + ], + [ + 48.1695, + 11.5287119 + ], + [ + 48.1694759, + 11.5287161 + ], + [ + 48.1694647, + 11.5287187 + ], + [ + 48.1694537, + 11.5287213 + ], + [ + 48.1694312, + 11.5287307 + ], + [ + 48.1694109, + 11.5287422 + ], + [ + 48.1693957, + 11.5287543 + ], + [ + 48.1693809, + 11.5287659 + ], + [ + 48.1693651, + 11.5287811 + ], + [ + 48.1693499, + 11.5287998 + ], + [ + 48.1693366, + 11.5288192 + ], + [ + 48.1693238, + 11.5288432 + ], + [ + 48.169311, + 11.5288701 + ], + [ + 48.1692995, + 11.5288976 + ], + [ + 48.1692895, + 11.5289319 + ], + [ + 48.1692787, + 11.5289805 + ], + [ + 48.1692747, + 11.5290162 + ], + [ + 48.1692728, + 11.5290534 + ], + [ + 48.1692731, + 11.5290974 + ], + [ + 48.1692733, + 11.5291437 + ], + [ + 48.1693229, + 11.5300867 + ], + [ + 48.1693529, + 11.530421 + ], + [ + 48.1694244, + 11.5310253 + ], + [ + 48.1695482, + 11.5319114 + ], + [ + 48.1696007, + 11.5322186 + ], + [ + 48.1696263, + 11.5323329 + ], + [ + 48.1696625, + 11.5324526 + ], + [ + 48.1697253, + 11.532653 + ], + [ + 48.1697306, + 11.5326829 + ], + [ + 48.1697344, + 11.5327152 + ], + [ + 48.169738, + 11.5327704 + ], + [ + 48.169737, + 11.5328063 + ], + [ + 48.1697335, + 11.5328431 + ], + [ + 48.1697289, + 11.5328752 + ], + [ + 48.1697215, + 11.5329104 + ], + [ + 48.1697134, + 11.5329358 + ], + [ + 48.169706, + 11.5329572 + ], + [ + 48.1696955, + 11.5329842 + ], + [ + 48.1696812, + 11.5330162 + ], + [ + 48.1696657, + 11.533047 + ], + [ + 48.1694852, + 11.5333398 + ] + ] + }, + { + "osmId": "157388721", + "name": "Berliner Stadtbahn", + "lengthMeters": 248.55049417676037, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5195946, + 13.3515714 + ], + [ + 52.5195684, + 13.3519215 + ], + [ + 52.5195674, + 13.3519405 + ], + [ + 52.5194521, + 13.3535865 + ], + [ + 52.5194243, + 13.3540722 + ], + [ + 52.5194207, + 13.3544948 + ], + [ + 52.5194347, + 13.3549263 + ], + [ + 52.5194469, + 13.3551089 + ], + [ + 52.5194534, + 13.3552269 + ] + ] + }, + { + "osmId": "157388729", + "name": "Berliner Stadtbahn", + "lengthMeters": 255.0801171363028, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196714, + 13.3514971 + ], + [ + 52.5195355, + 13.3534051 + ], + [ + 52.5195332, + 13.3534225 + ], + [ + 52.5195208, + 13.353599 + ], + [ + 52.5194993, + 13.354059 + ], + [ + 52.5194945, + 13.3545086 + ], + [ + 52.5195067, + 13.3549132 + ], + [ + 52.5195298, + 13.3552484 + ] + ] + }, + { + "osmId": "157671449", + "name": null, + "lengthMeters": 177.88740819765175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291736, + 13.3662268 + ], + [ + 52.5297669, + 13.3655924 + ], + [ + 52.5304672, + 13.3648403 + ], + [ + 52.5305138, + 13.3647908 + ] + ] + }, + { + "osmId": "157698498", + "name": "Isartalbahn", + "lengthMeters": 242.75134556667533, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0681247, + 11.5290203 + ], + [ + 48.0686026, + 11.5293961 + ], + [ + 48.0689108, + 11.5296229 + ], + [ + 48.069056, + 11.5297327 + ], + [ + 48.0692086, + 11.529845 + ], + [ + 48.0694842, + 11.5300263 + ], + [ + 48.0696762, + 11.5301501 + ], + [ + 48.0699414, + 11.5303102 + ], + [ + 48.070101, + 11.530402 + ] + ] + }, + { + "osmId": "157698499", + "name": "Isartalbahn", + "lengthMeters": 233.56955073539274, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.068054, + 11.5289009 + ], + [ + 48.0666472, + 11.527799 + ], + [ + 48.0661916, + 11.5274472 + ] + ] + }, + { + "osmId": "157698507", + "name": "Isartalbahn", + "lengthMeters": 618.5779652838802, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0228679, + 11.489052 + ], + [ + 48.0226705, + 11.4888804 + ], + [ + 48.022594, + 11.4888019 + ], + [ + 48.0225178, + 11.4887223 + ], + [ + 48.0224281, + 11.4886188 + ], + [ + 48.0223438, + 11.4885055 + ], + [ + 48.022199, + 11.4882863 + ], + [ + 48.0221209, + 11.4881414 + ], + [ + 48.0220426, + 11.4879929 + ], + [ + 48.0219791, + 11.4878537 + ], + [ + 48.0218991, + 11.4876361 + ], + [ + 48.0218392, + 11.4874581 + ], + [ + 48.0218171, + 11.4873776 + ], + [ + 48.0217934, + 11.4872914 + ], + [ + 48.0217486, + 11.487096 + ], + [ + 48.0217156, + 11.4869099 + ], + [ + 48.021676, + 11.4866225 + ], + [ + 48.0216497, + 11.4863559 + ], + [ + 48.0215925, + 11.4856523 + ], + [ + 48.0215828, + 11.4855325 + ], + [ + 48.0215803, + 11.4854898 + ], + [ + 48.021514, + 11.4846559 + ], + [ + 48.02148, + 11.4842106 + ], + [ + 48.0214392, + 11.4837668 + ], + [ + 48.0214145, + 11.4835736 + ], + [ + 48.0213836, + 11.483379 + ], + [ + 48.0213575, + 11.4832576 + ], + [ + 48.0212931, + 11.4829916 + ], + [ + 48.021232, + 11.4827956 + ], + [ + 48.0211696, + 11.4826121 + ], + [ + 48.0210956, + 11.4824254 + ], + [ + 48.0210108, + 11.4822439 + ], + [ + 48.0209194, + 11.4820797 + ], + [ + 48.0208243, + 11.481922 + ], + [ + 48.0207602, + 11.4818282 + ], + [ + 48.0207211, + 11.481771 + ] + ] + }, + { + "osmId": "157698510", + "name": "S\u00fcdring", + "lengthMeters": 100.90158369868826, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1406534, + 11.527709 + ], + [ + 48.1407255, + 11.5277981 + ], + [ + 48.1408378, + 11.5279543 + ], + [ + 48.140938, + 11.5281165 + ], + [ + 48.1410422, + 11.5282954 + ], + [ + 48.1411504, + 11.5284986 + ], + [ + 48.1412041, + 11.5286093 + ], + [ + 48.1412577, + 11.5287139 + ], + [ + 48.1412588, + 11.5287164 + ] + ] + }, + { + "osmId": "157698511", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 380.89248570149005, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1369425, + 11.5267253 + ], + [ + 48.1370922, + 11.5266572 + ], + [ + 48.1372549, + 11.5265832 + ], + [ + 48.1374432, + 11.5265181 + ], + [ + 48.1377581, + 11.5264411 + ], + [ + 48.1380629, + 11.5264108 + ], + [ + 48.1382887, + 11.5264039 + ], + [ + 48.1385155, + 11.5264191 + ], + [ + 48.1388273, + 11.5264739 + ], + [ + 48.1391024, + 11.5265542 + ], + [ + 48.1394179, + 11.5266826 + ], + [ + 48.139736, + 11.5268596 + ], + [ + 48.1399995, + 11.5270444 + ], + [ + 48.14013, + 11.5271445 + ], + [ + 48.1402425, + 11.5272431 + ] + ] + }, + { + "osmId": "157785348", + "name": null, + "lengthMeters": 99.2822664959868, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5208204, + 13.2290981 + ], + [ + 52.5216256, + 13.228464 + ] + ] + }, + { + "osmId": "157946258", + "name": null, + "lengthMeters": 345.38802882581103, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1508259, + 11.6084409 + ], + [ + 48.15083, + 11.608509 + ], + [ + 48.150833, + 11.6085841 + ], + [ + 48.150839, + 11.6087059 + ], + [ + 48.150844, + 11.6087959 + ], + [ + 48.1508538, + 11.6089067 + ], + [ + 48.1508664, + 11.6090177 + ], + [ + 48.15088, + 11.609117 + ], + [ + 48.1508957, + 11.6092116 + ], + [ + 48.1509053, + 11.6092639 + ], + [ + 48.1509502, + 11.6094803 + ], + [ + 48.1509764, + 11.6096067 + ], + [ + 48.1510457, + 11.6098965 + ], + [ + 48.1510822, + 11.6100489 + ], + [ + 48.1511215, + 11.610199 + ], + [ + 48.1512012, + 11.6104992 + ], + [ + 48.1512428, + 11.6106475 + ], + [ + 48.1512854, + 11.6107957 + ], + [ + 48.1513311, + 11.6109423 + ], + [ + 48.1514387, + 11.6112946 + ], + [ + 48.1516843, + 11.6120174 + ], + [ + 48.151721, + 11.6121345 + ], + [ + 48.151755, + 11.6122485 + ], + [ + 48.1517845, + 11.6123513 + ], + [ + 48.1518051, + 11.6124324 + ], + [ + 48.1518282, + 11.6125245 + ], + [ + 48.1518434, + 11.6125888 + ], + [ + 48.151856, + 11.6126428 + ], + [ + 48.1518688, + 11.6127084 + ], + [ + 48.1518851, + 11.612786 + ] + ] + }, + { + "osmId": "157946265", + "name": null, + "lengthMeters": 105.74000109707004, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1197277, + 11.5822034 + ], + [ + 48.1196902, + 11.5822221 + ], + [ + 48.1196766, + 11.5822315 + ], + [ + 48.1196613, + 11.5822403 + ], + [ + 48.1196263, + 11.5822695 + ], + [ + 48.1195854, + 11.5823146 + ], + [ + 48.119563, + 11.5823469 + ], + [ + 48.1195491, + 11.5823682 + ], + [ + 48.1195363, + 11.5823905 + ], + [ + 48.1195263, + 11.5824096 + ], + [ + 48.1195165, + 11.5824297 + ], + [ + 48.1195074, + 11.5824511 + ], + [ + 48.1194984, + 11.582475 + ], + [ + 48.1193908, + 11.5827993 + ], + [ + 48.1193514, + 11.5829131 + ], + [ + 48.1192945, + 11.5830761 + ], + [ + 48.1192583, + 11.5831709 + ], + [ + 48.1192196, + 11.5832544 + ], + [ + 48.1192049, + 11.5832836 + ], + [ + 48.1191838, + 11.5833258 + ] + ] + }, + { + "osmId": "157946269", + "name": null, + "lengthMeters": 141.79340002867585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1502827, + 11.6067938 + ], + [ + 48.1503226, + 11.606872 + ], + [ + 48.1503932, + 11.607007 + ], + [ + 48.1505464, + 11.6072708 + ], + [ + 48.1506106, + 11.6073813 + ], + [ + 48.1506728, + 11.6074862 + ], + [ + 48.1507036, + 11.6075532 + ], + [ + 48.1507241, + 11.6075965 + ], + [ + 48.1507508, + 11.6076647 + ], + [ + 48.1507714, + 11.6077255 + ], + [ + 48.1507877, + 11.6077979 + ], + [ + 48.150798, + 11.6078591 + ], + [ + 48.1508027, + 11.607908 + ], + [ + 48.1508063, + 11.6079914 + ], + [ + 48.1508134, + 11.6081369 + ], + [ + 48.1508142, + 11.608156 + ], + [ + 48.150815, + 11.6081736 + ], + [ + 48.1508177, + 11.6082352 + ], + [ + 48.1508182, + 11.6082394 + ], + [ + 48.150823, + 11.608365 + ], + [ + 48.1508259, + 11.6084409 + ] + ] + }, + { + "osmId": "158044735", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1804.9106234105313, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4973677, + 10.132215 + ], + [ + 53.4964924, + 10.1340073 + ], + [ + 53.4958376, + 10.1354254 + ], + [ + 53.4953342, + 10.1365416 + ], + [ + 53.4946088, + 10.1382474 + ], + [ + 53.4940993, + 10.1395273 + ], + [ + 53.4936252, + 10.1408703 + ], + [ + 53.4933285, + 10.1417921 + ], + [ + 53.4928004, + 10.1436577 + ], + [ + 53.492323, + 10.1455574 + ], + [ + 53.4918952, + 10.1474191 + ], + [ + 53.4916221, + 10.1486869 + ], + [ + 53.4913405, + 10.1500878 + ], + [ + 53.4912233, + 10.1507714 + ], + [ + 53.4911081, + 10.1515274 + ], + [ + 53.4908852, + 10.1531171 + ], + [ + 53.4907044, + 10.1545451 + ], + [ + 53.4906893, + 10.1546647 + ], + [ + 53.4904767, + 10.1564948 + ] + ] + }, + { + "osmId": "158044747", + "name": null, + "lengthMeters": 1492.694250277315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4874579, + 10.1854112 + ], + [ + 53.4875824, + 10.1843817 + ], + [ + 53.487714, + 10.1834306 + ], + [ + 53.4878484, + 10.1824802 + ], + [ + 53.4878559, + 10.1824247 + ], + [ + 53.4878795, + 10.1822488 + ], + [ + 53.4879039, + 10.1820679 + ], + [ + 53.4879184, + 10.1819599 + ], + [ + 53.4880194, + 10.1811031 + ], + [ + 53.4881074, + 10.180282 + ], + [ + 53.4881287, + 10.1800518 + ], + [ + 53.4881482, + 10.1798408 + ], + [ + 53.488167, + 10.1796369 + ], + [ + 53.4881859, + 10.1794322 + ], + [ + 53.4882723, + 10.1784064 + ], + [ + 53.4883663, + 10.1773823 + ], + [ + 53.4892383, + 10.1692118 + ], + [ + 53.4894585, + 10.1671452 + ], + [ + 53.4896812, + 10.1650606 + ], + [ + 53.4897792, + 10.164142 + ], + [ + 53.4898827, + 10.163225 + ] + ] + }, + { + "osmId": "158075152", + "name": null, + "lengthMeters": 1004.2686783124506, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1623953, + 11.5866102 + ], + [ + 48.1624128, + 11.586598 + ], + [ + 48.1625378, + 11.586515 + ], + [ + 48.162582, + 11.5864862 + ], + [ + 48.1626056, + 11.5864708 + ], + [ + 48.162649, + 11.5864515 + ], + [ + 48.1626722, + 11.5864412 + ], + [ + 48.1627133, + 11.5864313 + ], + [ + 48.162756, + 11.586429 + ], + [ + 48.1630411, + 11.5864422 + ], + [ + 48.1633279, + 11.5864618 + ], + [ + 48.1637701, + 11.5865006 + ], + [ + 48.1642156, + 11.5865169 + ], + [ + 48.1642866, + 11.586519 + ], + [ + 48.1643825, + 11.5865167 + ], + [ + 48.1647547, + 11.5864929 + ], + [ + 48.1651597, + 11.5864674 + ], + [ + 48.1652766, + 11.5864448 + ], + [ + 48.1656042, + 11.5863827 + ], + [ + 48.1658263, + 11.586347 + ], + [ + 48.1660431, + 11.5863269 + ], + [ + 48.1669374, + 11.5862438 + ], + [ + 48.1670734, + 11.5862322 + ], + [ + 48.1672088, + 11.5862268 + ], + [ + 48.1673153, + 11.5862273 + ], + [ + 48.1674239, + 11.5862301 + ], + [ + 48.1675754, + 11.586238 + ], + [ + 48.1676299, + 11.5862409 + ], + [ + 48.1678143, + 11.5862422 + ], + [ + 48.1679947, + 11.5862408 + ], + [ + 48.1681427, + 11.5862418 + ], + [ + 48.1683121, + 11.5862369 + ], + [ + 48.1684808, + 11.5862353 + ], + [ + 48.168651, + 11.5862292 + ], + [ + 48.1688168, + 11.5862139 + ], + [ + 48.1690939, + 11.586185 + ], + [ + 48.1693818, + 11.5861598 + ], + [ + 48.1694916, + 11.5861502 + ], + [ + 48.169556, + 11.586144 + ], + [ + 48.1696108, + 11.5861397 + ], + [ + 48.1701823, + 11.5860895 + ], + [ + 48.1708295, + 11.5860223 + ], + [ + 48.1709019, + 11.5860148 + ], + [ + 48.1710234, + 11.5860043 + ], + [ + 48.1711619, + 11.5859967 + ], + [ + 48.171265, + 11.5859909 + ], + [ + 48.1713892, + 11.5859808 + ] + ] + }, + { + "osmId": "158075153", + "name": null, + "lengthMeters": 961.7749908289929, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1861942, + 11.5909622 + ], + [ + 48.1857664, + 11.5907927 + ], + [ + 48.1853035, + 11.5906439 + ], + [ + 48.1840116, + 11.5903029 + ], + [ + 48.1836311, + 11.590201 + ], + [ + 48.1835835, + 11.5901896 + ], + [ + 48.1834371, + 11.5901509 + ], + [ + 48.1818042, + 11.5897057 + ], + [ + 48.1816514, + 11.5896635 + ], + [ + 48.1799854, + 11.5892397 + ], + [ + 48.179674, + 11.5891615 + ], + [ + 48.1795466, + 11.5891279 + ], + [ + 48.1793652, + 11.5890796 + ], + [ + 48.1792845, + 11.5890569 + ], + [ + 48.1792072, + 11.5890352 + ], + [ + 48.1790314, + 11.588989 + ], + [ + 48.1786987, + 11.5889105 + ], + [ + 48.1776827, + 11.5886731 + ] + ] + }, + { + "osmId": "158075154", + "name": null, + "lengthMeters": 175.8133062548012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1870064, + 11.591547 + ], + [ + 48.1871909, + 11.5915945 + ], + [ + 48.1872242, + 11.591601 + ], + [ + 48.1872652, + 11.5916041 + ], + [ + 48.187305, + 11.5915997 + ], + [ + 48.1873402, + 11.5915846 + ], + [ + 48.1873735, + 11.5915626 + ], + [ + 48.1873929, + 11.591544 + ], + [ + 48.1874302, + 11.5914956 + ], + [ + 48.187458, + 11.591439 + ], + [ + 48.1874745, + 11.5913862 + ], + [ + 48.1874841, + 11.5913316 + ], + [ + 48.1874888, + 11.5912752 + ], + [ + 48.1874867, + 11.5912185 + ], + [ + 48.1874815, + 11.5911802 + ], + [ + 48.1874734, + 11.5911454 + ], + [ + 48.1874563, + 11.5910931 + ], + [ + 48.1874339, + 11.5910463 + ], + [ + 48.1874068, + 11.5910048 + ], + [ + 48.1873844, + 11.5909821 + ], + [ + 48.1873604, + 11.5909625 + ], + [ + 48.1873338, + 11.5909464 + ], + [ + 48.1873056, + 11.5909368 + ], + [ + 48.187272, + 11.5909305 + ], + [ + 48.1872374, + 11.5909312 + ], + [ + 48.1872017, + 11.5909325 + ], + [ + 48.1869383, + 11.5909488 + ], + [ + 48.18665, + 11.5909661 + ] + ] + }, + { + "osmId": "158082933", + "name": null, + "lengthMeters": 85.70125277236637, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337102, + 11.5430413 + ], + [ + 48.1337981, + 11.541894 + ] + ] + }, + { + "osmId": "158084892", + "name": "U9", + "lengthMeters": 331.2803819309126, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5603801, + 13.3759001 + ], + [ + 52.560152, + 13.3756183 + ], + [ + 52.5599465, + 13.3753929 + ], + [ + 52.5597058, + 13.3751749 + ], + [ + 52.5580232, + 13.3739093 + ], + [ + 52.5577218, + 13.3737226 + ] + ] + }, + { + "osmId": "158236383", + "name": null, + "lengthMeters": 155.5352852107248, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4330009, + 13.5429421 + ], + [ + 52.4332048, + 13.5426735 + ], + [ + 52.4333442, + 13.5424875 + ], + [ + 52.433409, + 13.5423988 + ], + [ + 52.4334472, + 13.5423411 + ], + [ + 52.4335355, + 13.5421773 + ], + [ + 52.4336558, + 13.5419546 + ], + [ + 52.4336874, + 13.5419019 + ], + [ + 52.4337299, + 13.5418366 + ], + [ + 52.4337743, + 13.5417754 + ], + [ + 52.4338399, + 13.5416848 + ], + [ + 52.4339949, + 13.5414764 + ], + [ + 52.4340417, + 13.5414174 + ] + ] + }, + { + "osmId": "158236384", + "name": null, + "lengthMeters": 103.30157280949028, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4329374, + 13.5258291 + ], + [ + 52.4330665, + 13.5256363 + ], + [ + 52.4330934, + 13.525595 + ], + [ + 52.4331045, + 13.5255784 + ], + [ + 52.4331327, + 13.5255434 + ], + [ + 52.4331617, + 13.5255105 + ], + [ + 52.433185, + 13.5254871 + ], + [ + 52.4331909, + 13.5254815 + ], + [ + 52.4332145, + 13.5254598 + ], + [ + 52.4332436, + 13.5254341 + ], + [ + 52.4332817, + 13.5254049 + ], + [ + 52.4333194, + 13.5253766 + ], + [ + 52.4333687, + 13.5253497 + ], + [ + 52.4334183, + 13.525328 + ], + [ + 52.4334872, + 13.525303 + ], + [ + 52.4335369, + 13.5252913 + ], + [ + 52.4335916, + 13.5252812 + ], + [ + 52.4337277, + 13.5252763 + ], + [ + 52.4337666, + 13.5252784 + ] + ] + }, + { + "osmId": "158236729", + "name": null, + "lengthMeters": 459.1359968378057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4324964, + 13.5264686 + ], + [ + 52.4324301, + 13.5265724 + ], + [ + 52.432246, + 13.526856 + ], + [ + 52.4322163, + 13.5269003 + ], + [ + 52.4321737, + 13.5269608 + ], + [ + 52.4321365, + 13.5270096 + ], + [ + 52.4320974, + 13.5270597 + ], + [ + 52.4320615, + 13.5271021 + ], + [ + 52.4320196, + 13.5271498 + ], + [ + 52.4319996, + 13.527171 + ], + [ + 52.4319811, + 13.5271894 + ], + [ + 52.4319587, + 13.5272114 + ], + [ + 52.4319337, + 13.5272347 + ], + [ + 52.4309527, + 13.528074 + ], + [ + 52.4304094, + 13.5285334 + ], + [ + 52.429687, + 13.5291525 + ], + [ + 52.429669, + 13.5291699 + ], + [ + 52.4296551, + 13.5291835 + ], + [ + 52.4296345, + 13.5292097 + ], + [ + 52.4296156, + 13.5292389 + ], + [ + 52.4296004, + 13.5292672 + ], + [ + 52.429587, + 13.5292945 + ], + [ + 52.429577, + 13.5293186 + ], + [ + 52.4295641, + 13.5293571 + ], + [ + 52.4295549, + 13.5293869 + ], + [ + 52.4295463, + 13.5294228 + ], + [ + 52.4295381, + 13.5294704 + ], + [ + 52.4295336, + 13.5295087 + ], + [ + 52.4295311, + 13.5295511 + ], + [ + 52.4295303, + 13.5295969 + ], + [ + 52.4295319, + 13.5296352 + ], + [ + 52.4295354, + 13.5296713 + ], + [ + 52.4295406, + 13.5297079 + ], + [ + 52.4295483, + 13.529748 + ], + [ + 52.4295562, + 13.5297802 + ], + [ + 52.4295656, + 13.5298104 + ], + [ + 52.4295782, + 13.5298444 + ], + [ + 52.4295943, + 13.5298832 + ], + [ + 52.4296584, + 13.5300318 + ], + [ + 52.4298023, + 13.5303325 + ] + ] + }, + { + "osmId": "158470016", + "name": null, + "lengthMeters": 336.0132285909202, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4951764, + 13.4636536 + ], + [ + 52.4950672, + 13.4635132 + ], + [ + 52.4949573, + 13.4633738 + ], + [ + 52.4947625, + 13.463139 + ], + [ + 52.4946605, + 13.4630208 + ], + [ + 52.494558, + 13.4629035 + ], + [ + 52.4944117, + 13.4627426 + ], + [ + 52.4942525, + 13.4625702 + ], + [ + 52.4939246, + 13.4622413 + ], + [ + 52.4935907, + 13.461919 + ], + [ + 52.4934275, + 13.4617553 + ], + [ + 52.4932475, + 13.4615668 + ], + [ + 52.4930766, + 13.4613871 + ], + [ + 52.4929633, + 13.4612735 + ], + [ + 52.4928549, + 13.4611753 + ], + [ + 52.4927341, + 13.4610755 + ], + [ + 52.4926281, + 13.4610011 + ] + ] + }, + { + "osmId": "158470018", + "name": null, + "lengthMeters": 292.3541542209222, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080401, + 13.4736792 + ], + [ + 52.507591, + 13.4732511 + ], + [ + 52.5072948, + 13.4729678 + ], + [ + 52.5069486, + 13.4726381 + ], + [ + 52.5069044, + 13.4725961 + ], + [ + 52.506205, + 13.4719282 + ], + [ + 52.5057661, + 13.471511 + ] + ] + }, + { + "osmId": "158512978", + "name": null, + "lengthMeters": 92.38464056943805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3745458, + 13.6497067 + ], + [ + 52.3746269, + 13.6497891 + ], + [ + 52.374689, + 13.6498519 + ], + [ + 52.3747222, + 13.6498811 + ], + [ + 52.3747476, + 13.6499019 + ], + [ + 52.3747637, + 13.6499126 + ], + [ + 52.3747851, + 13.6499242 + ], + [ + 52.3748005, + 13.6499293 + ], + [ + 52.3748208, + 13.6499329 + ], + [ + 52.3748477, + 13.6499326 + ], + [ + 52.3748668, + 13.6499316 + ], + [ + 52.3748876, + 13.6499277 + ], + [ + 52.3749016, + 13.6499224 + ], + [ + 52.3749189, + 13.6499128 + ], + [ + 52.3749312, + 13.6499045 + ], + [ + 52.3749508, + 13.6498898 + ], + [ + 52.3749734, + 13.6498693 + ], + [ + 52.3750484, + 13.6497967 + ], + [ + 52.3752495, + 13.6495964 + ], + [ + 52.3752811, + 13.6495632 + ] + ] + }, + { + "osmId": "158520528", + "name": null, + "lengthMeters": 972.0972156798398, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5322095, + 13.3136833 + ], + [ + 52.5322977, + 13.3143291 + ], + [ + 52.5325411, + 13.3160791 + ], + [ + 52.5327873, + 13.3179158 + ], + [ + 52.5331509, + 13.3206267 + ], + [ + 52.5333525, + 13.3221264 + ], + [ + 52.5337021, + 13.3247442 + ], + [ + 52.5338594, + 13.3258695 + ], + [ + 52.5340151, + 13.3269515 + ], + [ + 52.5341225, + 13.3277064 + ] + ] + }, + { + "osmId": "158537642", + "name": null, + "lengthMeters": 544.2539601624246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3911239, + 13.6349375 + ], + [ + 52.3909781, + 13.6349948 + ], + [ + 52.3907249, + 13.635087 + ], + [ + 52.39052, + 13.6351408 + ], + [ + 52.3904741, + 13.6351529 + ], + [ + 52.3901555, + 13.6351997 + ], + [ + 52.3899425, + 13.6352312 + ], + [ + 52.3895452, + 13.6352447 + ], + [ + 52.3891485, + 13.6352183 + ], + [ + 52.3888297, + 13.6351623 + ], + [ + 52.3885035, + 13.6350828 + ], + [ + 52.3883013, + 13.6350158 + ], + [ + 52.3880978, + 13.6349483 + ], + [ + 52.3876947, + 13.6347771 + ], + [ + 52.3875385, + 13.6346971 + ], + [ + 52.3873941, + 13.6346119 + ], + [ + 52.3872138, + 13.634494 + ], + [ + 52.3871098, + 13.6344186 + ], + [ + 52.3870102, + 13.634344 + ], + [ + 52.3868925, + 13.6342447 + ], + [ + 52.3868152, + 13.6341776 + ], + [ + 52.3867251, + 13.6340941 + ], + [ + 52.3864113, + 13.6337903 + ] + ] + }, + { + "osmId": "158659291", + "name": null, + "lengthMeters": 1186.21278169253, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1006795, + 11.6458739 + ], + [ + 48.100263, + 11.6457034 + ], + [ + 48.100145, + 11.6456584 + ], + [ + 48.0991459, + 11.6452781 + ], + [ + 48.0975451, + 11.6445247 + ], + [ + 48.096237, + 11.6434878 + ], + [ + 48.0960698, + 11.6433643 + ], + [ + 48.0958108, + 11.6431991 + ], + [ + 48.0947482, + 11.6426409 + ], + [ + 48.0937019, + 11.642087 + ], + [ + 48.093411, + 11.6419365 + ], + [ + 48.093123, + 11.6418421 + ], + [ + 48.0928722, + 11.6418218 + ], + [ + 48.0926262, + 11.6418267 + ], + [ + 48.0922757, + 11.641903 + ], + [ + 48.0919977, + 11.6419943 + ], + [ + 48.0917207, + 11.6421718 + ], + [ + 48.0913561, + 11.6424642 + ], + [ + 48.0910173, + 11.6427606 + ], + [ + 48.0907104, + 11.6430847 + ] + ] + }, + { + "osmId": "158961088", + "name": null, + "lengthMeters": 82.50620154617522, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4402635, + 13.5041647 + ], + [ + 52.4402547, + 13.5041743 + ], + [ + 52.4402134, + 13.5042192 + ], + [ + 52.4401762, + 13.5042787 + ], + [ + 52.4401532, + 13.5043575 + ], + [ + 52.4401439, + 13.5044534 + ], + [ + 52.4401509, + 13.5045486 + ], + [ + 52.4401727, + 13.5046679 + ], + [ + 52.4402944, + 13.5052638 + ] + ] + }, + { + "osmId": "159251376", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 382.3452285549829, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0084321, + 11.5925185 + ], + [ + 48.0088424, + 11.5917735 + ], + [ + 48.0090712, + 11.5913684 + ], + [ + 48.009358, + 11.5909051 + ], + [ + 48.0094227, + 11.5908094 + ], + [ + 48.0097658, + 11.5903021 + ], + [ + 48.0100852, + 11.5898636 + ], + [ + 48.0102175, + 11.5896819 + ], + [ + 48.0105262, + 11.5892965 + ], + [ + 48.0108604, + 11.5888997 + ] + ] + }, + { + "osmId": "159494765", + "name": null, + "lengthMeters": 1406.0273411804412, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2069705, + 11.3820752 + ], + [ + 48.2069742, + 11.382039 + ], + [ + 48.2069935, + 11.381805 + ], + [ + 48.2070935, + 11.3808677 + ], + [ + 48.2071409, + 11.380405 + ], + [ + 48.2071779, + 11.379894 + ], + [ + 48.2072829, + 11.3782907 + ], + [ + 48.2074093, + 11.3763571 + ], + [ + 48.2074251, + 11.3759284 + ], + [ + 48.2074391, + 11.375538 + ], + [ + 48.2074421, + 11.3751398 + ], + [ + 48.2074385, + 11.3747611 + ], + [ + 48.2074251, + 11.374329 + ], + [ + 48.2074072, + 11.3739308 + ], + [ + 48.207381, + 11.3735351 + ], + [ + 48.2073228, + 11.372923 + ], + [ + 48.2072799, + 11.3725642 + ], + [ + 48.207232, + 11.3722164 + ], + [ + 48.2067673, + 11.3691492 + ], + [ + 48.2059262, + 11.3636072 + ], + [ + 48.2059059, + 11.3634742 + ], + [ + 48.2058928, + 11.3633911 + ] + ] + }, + { + "osmId": "159496283", + "name": null, + "lengthMeters": 560.1522374497899, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0743602, + 11.5379823 + ], + [ + 48.0743508, + 11.5374471 + ], + [ + 48.0743319, + 11.5371584 + ], + [ + 48.0742595, + 11.5363457 + ], + [ + 48.0741814, + 11.5355133 + ], + [ + 48.0741362, + 11.5349303 + ], + [ + 48.074123, + 11.5345035 + ], + [ + 48.074139, + 11.5339514 + ], + [ + 48.074171, + 11.5335726 + ], + [ + 48.0742275, + 11.5331374 + ], + [ + 48.0742827, + 11.532843 + ], + [ + 48.0743517, + 11.5325487 + ], + [ + 48.0743909, + 11.5323658 + ], + [ + 48.0744721, + 11.5320849 + ], + [ + 48.0746262, + 11.5316201 + ], + [ + 48.0748701, + 11.5310017 + ], + [ + 48.0749745, + 11.5307354 + ] + ] + }, + { + "osmId": "159496286", + "name": null, + "lengthMeters": 163.0292099061234, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0748701, + 11.5310017 + ], + [ + 48.0746894, + 11.5316183 + ], + [ + 48.0745881, + 11.5319126 + ], + [ + 48.0745145, + 11.5321131 + ], + [ + 48.0744315, + 11.5323734 + ], + [ + 48.0743843, + 11.5325646 + ], + [ + 48.0743422, + 11.5327731 + ], + [ + 48.0743069, + 11.5330186 + ] + ] + }, + { + "osmId": "160610766", + "name": null, + "lengthMeters": 2393.797577568605, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15568, + 11.512539 + ], + [ + 48.1556944, + 11.5130537 + ], + [ + 48.1556976, + 11.513147 + ], + [ + 48.1557519, + 11.514594 + ], + [ + 48.1558263, + 11.5167337 + ], + [ + 48.1558643, + 11.5178114 + ], + [ + 48.1558966, + 11.518818 + ], + [ + 48.1559272, + 11.5196922 + ], + [ + 48.1559311, + 11.5197828 + ], + [ + 48.1559358, + 11.5199168 + ], + [ + 48.1559407, + 11.52005 + ], + [ + 48.1560167, + 11.5221266 + ], + [ + 48.1560196, + 11.5222209 + ], + [ + 48.1560239, + 11.5223263 + ], + [ + 48.1560318, + 11.522435 + ], + [ + 48.1560429, + 11.5225795 + ], + [ + 48.1560553, + 11.5227255 + ], + [ + 48.1560715, + 11.5228612 + ], + [ + 48.1560757, + 11.5228979 + ], + [ + 48.1560891, + 11.5230143 + ], + [ + 48.1561022, + 11.5231062 + ], + [ + 48.156431, + 11.5253887 + ], + [ + 48.1565216, + 11.5260178 + ], + [ + 48.1565678, + 11.5263384 + ], + [ + 48.1565929, + 11.5264943 + ], + [ + 48.1566055, + 11.5265725 + ], + [ + 48.1566217, + 11.5266839 + ], + [ + 48.1566906, + 11.5271393 + ], + [ + 48.15671, + 11.5272468 + ], + [ + 48.1567493, + 11.5274106 + ], + [ + 48.1567734, + 11.5275111 + ], + [ + 48.156789, + 11.5275729 + ], + [ + 48.156808, + 11.5276646 + ], + [ + 48.1570145, + 11.5287867 + ], + [ + 48.1571664, + 11.5296118 + ], + [ + 48.1571734, + 11.5296565 + ], + [ + 48.157177, + 11.5297037 + ], + [ + 48.1571755, + 11.5297464 + ], + [ + 48.1571727, + 11.5297982 + ], + [ + 48.1571717, + 11.5298179 + ], + [ + 48.1571644, + 11.5298459 + ], + [ + 48.1571523, + 11.5298939 + ], + [ + 48.1571394, + 11.5299371 + ], + [ + 48.1571201, + 11.5299797 + ], + [ + 48.15707, + 11.5300763 + ], + [ + 48.156829, + 11.5305238 + ], + [ + 48.1567401, + 11.5306889 + ], + [ + 48.156662, + 11.5308354 + ], + [ + 48.1566248, + 11.5309046 + ], + [ + 48.156596, + 11.5309581 + ], + [ + 48.1565768, + 11.5309937 + ], + [ + 48.1565403, + 11.5310616 + ], + [ + 48.1564949, + 11.5311458 + ], + [ + 48.1564663, + 11.531199 + ], + [ + 48.1564527, + 11.5312243 + ], + [ + 48.1564167, + 11.5312911 + ], + [ + 48.1562696, + 11.5315638 + ], + [ + 48.1562022, + 11.5316856 + ], + [ + 48.1561771, + 11.5317232 + ], + [ + 48.1561465, + 11.5317736 + ], + [ + 48.1561173, + 11.5318154 + ], + [ + 48.1560869, + 11.5318537 + ], + [ + 48.156046, + 11.5318986 + ], + [ + 48.156025, + 11.5319243 + ], + [ + 48.1556743, + 11.532206 + ], + [ + 48.1552952, + 11.532517 + ], + [ + 48.1551873, + 11.532602 + ], + [ + 48.1550706, + 11.5326795 + ], + [ + 48.1550193, + 11.5327057 + ], + [ + 48.1549886, + 11.5327207 + ], + [ + 48.1548987, + 11.5327621 + ], + [ + 48.1548268, + 11.5327914 + ], + [ + 48.1548133, + 11.5327948 + ], + [ + 48.1544189, + 11.5328929 + ], + [ + 48.1540883, + 11.5329885 + ], + [ + 48.153775, + 11.5330733 + ], + [ + 48.1536377, + 11.5331101 + ], + [ + 48.1534197, + 11.5331716 + ], + [ + 48.1533159, + 11.5331984 + ], + [ + 48.1532708, + 11.5332148 + ], + [ + 48.153233, + 11.5332306 + ], + [ + 48.1531862, + 11.5332621 + ], + [ + 48.1531545, + 11.5332925 + ], + [ + 48.1531209, + 11.5333356 + ], + [ + 48.1531027, + 11.5333631 + ], + [ + 48.1530877, + 11.5333949 + ], + [ + 48.153076, + 11.5334232 + ], + [ + 48.1530593, + 11.5335032 + ], + [ + 48.1530549, + 11.5335706 + ], + [ + 48.153054, + 11.5335847 + ], + [ + 48.1530556, + 11.5336224 + ], + [ + 48.15306, + 11.5336656 + ], + [ + 48.1530661, + 11.5337015 + ], + [ + 48.1530836, + 11.5337813 + ], + [ + 48.1531132, + 11.5339087 + ], + [ + 48.153202, + 11.5343383 + ], + [ + 48.1533489, + 11.535065 + ], + [ + 48.1534741, + 11.5356841 + ], + [ + 48.1536107, + 11.5363157 + ], + [ + 48.1536403, + 11.5364352 + ], + [ + 48.1536527, + 11.5364784 + ], + [ + 48.1536685, + 11.536539 + ], + [ + 48.1537419, + 11.5367663 + ], + [ + 48.153765, + 11.5368403 + ], + [ + 48.1537811, + 11.5368803 + ], + [ + 48.1538086, + 11.5369415 + ], + [ + 48.153849, + 11.5370211 + ], + [ + 48.1539792, + 11.5372539 + ], + [ + 48.1540661, + 11.5374172 + ], + [ + 48.1542113, + 11.5376842 + ], + [ + 48.1542792, + 11.5378136 + ], + [ + 48.1542949, + 11.5378442 + ], + [ + 48.1544626, + 11.5381552 + ], + [ + 48.154806, + 11.5387887 + ], + [ + 48.1550925, + 11.5392967 + ], + [ + 48.1553117, + 11.5396861 + ], + [ + 48.1553247, + 11.5397093 + ] + ] + }, + { + "osmId": "161177308", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 1722.5241434984207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4339966, + 10.0178033 + ], + [ + 53.4335954, + 10.0182201 + ], + [ + 53.4329077, + 10.0190502 + ], + [ + 53.4314623, + 10.020689 + ], + [ + 53.4275622, + 10.0251947 + ], + [ + 53.4270089, + 10.0258264 + ], + [ + 53.4263571, + 10.0265746 + ], + [ + 53.4260449, + 10.0269592 + ], + [ + 53.4259062, + 10.02713 + ], + [ + 53.4254448, + 10.0277176 + ], + [ + 53.4249295, + 10.0284481 + ], + [ + 53.4245993, + 10.0288931 + ], + [ + 53.424443, + 10.0291308 + ], + [ + 53.423995, + 10.0298123 + ], + [ + 53.4235786, + 10.0304456 + ], + [ + 53.4234972, + 10.0305695 + ], + [ + 53.423281, + 10.0309158 + ], + [ + 53.4231154, + 10.0311804 + ], + [ + 53.4226664, + 10.0319003 + ], + [ + 53.4224026, + 10.0322827 + ], + [ + 53.4215846, + 10.0332859 + ] + ] + }, + { + "osmId": "161627660", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 312.30344843560454, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0743141, + 11.5384624 + ], + [ + 48.0747058, + 11.5426248 + ] + ] + }, + { + "osmId": "161705612", + "name": "Isartalbahn", + "lengthMeters": 351.032810616731, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0753639, + 11.5300854 + ], + [ + 48.0754717, + 11.5299036 + ], + [ + 48.0756517, + 11.5296 + ], + [ + 48.0758557, + 11.5292757 + ], + [ + 48.0760626, + 11.5289761 + ], + [ + 48.0762511, + 11.5287283 + ], + [ + 48.0764416, + 11.5284945 + ], + [ + 48.0767319, + 11.5281813 + ], + [ + 48.0768888, + 11.5280277 + ], + [ + 48.07706, + 11.527871 + ], + [ + 48.0772345, + 11.5277189 + ], + [ + 48.0773588, + 11.5276179 + ], + [ + 48.0774908, + 11.527521 + ], + [ + 48.0776779, + 11.5274065 + ], + [ + 48.0778679, + 11.5273037 + ] + ] + }, + { + "osmId": "162428544", + "name": null, + "lengthMeters": 592.5974433100255, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5107577, + 9.9202226 + ], + [ + 53.51073, + 9.9203316 + ], + [ + 53.510668, + 9.9205592 + ], + [ + 53.5105273, + 9.9211558 + ], + [ + 53.5103821, + 9.9218693 + ], + [ + 53.5102453, + 9.9225567 + ], + [ + 53.5100998, + 9.9232882 + ], + [ + 53.5100114, + 9.9237394 + ], + [ + 53.5098875, + 9.9243271 + ], + [ + 53.5097198, + 9.9249274 + ], + [ + 53.5096148, + 9.9252396 + ], + [ + 53.5096011, + 9.9252802 + ], + [ + 53.5095173, + 9.9255059 + ], + [ + 53.509441, + 9.9257007 + ], + [ + 53.5094313, + 9.9257255 + ], + [ + 53.5092211, + 9.9262012 + ], + [ + 53.5092065, + 9.9262345 + ], + [ + 53.5090235, + 9.9266176 + ], + [ + 53.5088401, + 9.9269974 + ], + [ + 53.5085592, + 9.9275583 + ], + [ + 53.5083127, + 9.9280674 + ] + ] + }, + { + "osmId": "162598217", + "name": null, + "lengthMeters": 76.21521420522362, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340465, + 11.5976986 + ], + [ + 48.134088, + 11.597731 + ], + [ + 48.1341155, + 11.5977531 + ], + [ + 48.1341615, + 11.5977961 + ], + [ + 48.1342115, + 11.597847 + ], + [ + 48.1342394, + 11.5978793 + ], + [ + 48.1342876, + 11.5979338 + ], + [ + 48.1343386, + 11.5979969 + ], + [ + 48.1343939, + 11.5980695 + ], + [ + 48.1344666, + 11.5981647 + ], + [ + 48.1344941, + 11.5982033 + ], + [ + 48.134513, + 11.5982308 + ], + [ + 48.1345289, + 11.598253 + ], + [ + 48.1345428, + 11.598277 + ], + [ + 48.1345573, + 11.5983083 + ], + [ + 48.1345721, + 11.5983448 + ] + ] + }, + { + "osmId": "164248384", + "name": null, + "lengthMeters": 1025.259247761555, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629788, + 9.9861299 + ], + [ + 53.563064, + 9.9859713 + ], + [ + 53.5631615, + 9.9857899 + ], + [ + 53.5632938, + 9.985529 + ], + [ + 53.5634732, + 9.9851497 + ], + [ + 53.5636403, + 9.9846662 + ], + [ + 53.5637538, + 9.9842338 + ], + [ + 53.5637873, + 9.9840652 + ], + [ + 53.5638025, + 9.9839885 + ], + [ + 53.5638897, + 9.9833785 + ], + [ + 53.5639072, + 9.9832016 + ], + [ + 53.5639154, + 9.9830688 + ], + [ + 53.5639235, + 9.9828873 + ], + [ + 53.5639327, + 9.980247 + ], + [ + 53.5639333, + 9.9800712 + ], + [ + 53.5639254, + 9.9787879 + ], + [ + 53.5639226, + 9.9785044 + ], + [ + 53.5639215, + 9.9782767 + ], + [ + 53.563919, + 9.9778034 + ], + [ + 53.5639074, + 9.9766861 + ], + [ + 53.5638969, + 9.975217 + ], + [ + 53.5638953, + 9.9750737 + ], + [ + 53.5638948, + 9.9750511 + ], + [ + 53.5638737, + 9.9740992 + ], + [ + 53.5638507, + 9.9732385 + ], + [ + 53.5637745, + 9.9710682 + ] + ] + }, + { + "osmId": "164248385", + "name": null, + "lengthMeters": 128.8355834162479, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5613061, + 9.9890641 + ], + [ + 53.5612984, + 9.9890743 + ], + [ + 53.5612664, + 9.989115 + ], + [ + 53.561127, + 9.9892898 + ], + [ + 53.5604994, + 9.9900897 + ], + [ + 53.5604675, + 9.9901263 + ], + [ + 53.56038, + 9.9902362 + ] + ] + }, + { + "osmId": "164248386", + "name": null, + "lengthMeters": 131.5283245888472, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5611945, + 9.9888928 + ], + [ + 53.5611501, + 9.988944 + ], + [ + 53.5609626, + 9.9891862 + ], + [ + 53.5603102, + 9.9900117 + ], + [ + 53.5602763, + 9.9900577 + ], + [ + 53.5602488, + 9.9900886 + ] + ] + }, + { + "osmId": "164248387", + "name": null, + "lengthMeters": 562.7954243337874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5630325, + 9.9862237 + ], + [ + 53.5632282, + 9.9858532 + ], + [ + 53.5633525, + 9.9856069 + ], + [ + 53.5635395, + 9.985213 + ], + [ + 53.5637081, + 9.9847409 + ], + [ + 53.5638068, + 9.9843423 + ], + [ + 53.5638722, + 9.9840431 + ], + [ + 53.5639652, + 9.9833891 + ], + [ + 53.5639916, + 9.9829234 + ], + [ + 53.5640035, + 9.9802462 + ], + [ + 53.5640006, + 9.9781668 + ] + ] + }, + { + "osmId": "165409971", + "name": null, + "lengthMeters": 150.14564438143498, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5202851, + 13.3883072 + ], + [ + 52.5203352, + 13.3882986 + ], + [ + 52.5203534, + 13.3882955 + ], + [ + 52.5207009, + 13.3882358 + ], + [ + 52.5209669, + 13.3881901 + ], + [ + 52.521549, + 13.3880902 + ], + [ + 52.5216153, + 13.3880788 + ], + [ + 52.5216281, + 13.3880769 + ] + ] + }, + { + "osmId": "165411078", + "name": null, + "lengthMeters": 160.70922538656527, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205154, + 13.3900311 + ], + [ + 52.5208754, + 13.3897997 + ], + [ + 52.5210526, + 13.3896873 + ], + [ + 52.5211442, + 13.3896324 + ], + [ + 52.5212571, + 13.3895736 + ], + [ + 52.5213582, + 13.3895377 + ], + [ + 52.5214083, + 13.3895219 + ], + [ + 52.5214462, + 13.3895121 + ], + [ + 52.5214932, + 13.3895049 + ], + [ + 52.5216119, + 13.3894877 + ], + [ + 52.5217411, + 13.3894727 + ], + [ + 52.521766, + 13.3894675 + ], + [ + 52.5217918, + 13.3894601 + ], + [ + 52.521822, + 13.3894452 + ], + [ + 52.521844, + 13.3894318 + ], + [ + 52.52187, + 13.3894144 + ], + [ + 52.5218969, + 13.3893933 + ] + ] + }, + { + "osmId": "165450402", + "name": null, + "lengthMeters": 132.09219039015247, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356942, + 11.5976214 + ], + [ + 48.1356703, + 11.5977452 + ], + [ + 48.1356655, + 11.5977751 + ], + [ + 48.135658, + 11.5978192 + ], + [ + 48.1356521, + 11.5978743 + ], + [ + 48.1356501, + 11.5978954 + ], + [ + 48.1356487, + 11.5979121 + ], + [ + 48.1356441, + 11.5980181 + ], + [ + 48.1356425, + 11.5981059 + ], + [ + 48.1356411, + 11.5981783 + ], + [ + 48.1356331, + 11.598567 + ], + [ + 48.1356226, + 11.5989284 + ], + [ + 48.1356222, + 11.5989422 + ], + [ + 48.1356214, + 11.5991084 + ], + [ + 48.1356201, + 11.5993922 + ] + ] + }, + { + "osmId": "165452721", + "name": null, + "lengthMeters": 140.47472735501702, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342309, + 11.6102543 + ], + [ + 48.1340433, + 11.610295 + ], + [ + 48.1339426, + 11.6103065 + ], + [ + 48.1338303, + 11.6103146 + ], + [ + 48.1336772, + 11.6103095 + ], + [ + 48.133589, + 11.6103056 + ], + [ + 48.1333513, + 11.6102793 + ], + [ + 48.1332601, + 11.6102702 + ], + [ + 48.1330274, + 11.6102389 + ], + [ + 48.1329724, + 11.6102269 + ] + ] + }, + { + "osmId": "166482106", + "name": null, + "lengthMeters": 617.8035583134038, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.421728, + 13.1808075 + ], + [ + 52.4230327, + 13.1832733 + ], + [ + 52.4230849, + 13.1833754 + ], + [ + 52.4232073, + 13.1836092 + ], + [ + 52.4233496, + 13.1838804 + ], + [ + 52.4234551, + 13.1840872 + ], + [ + 52.4235309, + 13.1842408 + ], + [ + 52.4236032, + 13.1843924 + ], + [ + 52.4236884, + 13.1845711 + ], + [ + 52.4237722, + 13.1847551 + ], + [ + 52.423937, + 13.1851263 + ], + [ + 52.4240797, + 13.1854626 + ], + [ + 52.4242175, + 13.1857955 + ], + [ + 52.4246146, + 13.1867604 + ], + [ + 52.4247732, + 13.1871316 + ], + [ + 52.4248562, + 13.1873177 + ], + [ + 52.4249408, + 13.1874993 + ], + [ + 52.4250517, + 13.1877311 + ], + [ + 52.4251632, + 13.1879547 + ] + ] + }, + { + "osmId": "166482107", + "name": null, + "lengthMeters": 624.510811551386, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4219607, + 13.1809122 + ], + [ + 52.4220197, + 13.1810429 + ], + [ + 52.4221648, + 13.181372 + ], + [ + 52.4223162, + 13.1817306 + ], + [ + 52.4224172, + 13.1819687 + ], + [ + 52.422505, + 13.1821604 + ], + [ + 52.4226432, + 13.1824376 + ], + [ + 52.4227023, + 13.1825458 + ], + [ + 52.4231036, + 13.1833087 + ], + [ + 52.4238147, + 13.1846563 + ], + [ + 52.4240229, + 13.1850373 + ], + [ + 52.4241903, + 13.1853174 + ], + [ + 52.4243679, + 13.1855927 + ], + [ + 52.4245093, + 13.1857898 + ], + [ + 52.4246477, + 13.1859729 + ], + [ + 52.4248022, + 13.186166 + ], + [ + 52.4249561, + 13.1863496 + ], + [ + 52.425388, + 13.1868486 + ], + [ + 52.4258759, + 13.1874229 + ] + ] + }, + { + "osmId": "166482108", + "name": null, + "lengthMeters": 150.03551994673637, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4205589, + 13.1787272 + ], + [ + 52.4203934, + 13.1784226 + ], + [ + 52.4203881, + 13.1784129 + ], + [ + 52.420299, + 13.1782524 + ], + [ + 52.4201898, + 13.178051 + ], + [ + 52.420044, + 13.1777808 + ], + [ + 52.4196607, + 13.1770762 + ] + ] + }, + { + "osmId": "166482109", + "name": null, + "lengthMeters": 78.52352438470338, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4208384, + 13.1786977 + ], + [ + 52.420366, + 13.177837 + ] + ] + }, + { + "osmId": "166482110", + "name": null, + "lengthMeters": 201.53518292080446, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4210091, + 13.1787485 + ], + [ + 52.4202293, + 13.1774416 + ], + [ + 52.4197481, + 13.1766139 + ] + ] + }, + { + "osmId": "166482111", + "name": null, + "lengthMeters": 338.2852811993873, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.423192, + 13.1840312 + ], + [ + 52.4236148, + 13.1849004 + ], + [ + 52.4238233, + 13.1853482 + ], + [ + 52.4240969, + 13.1859389 + ], + [ + 52.4242592, + 13.1863057 + ], + [ + 52.4244641, + 13.1867635 + ], + [ + 52.4246758, + 13.187235 + ], + [ + 52.4248405, + 13.1875896 + ], + [ + 52.4249308, + 13.187786 + ], + [ + 52.4250341, + 13.1880008 + ] + ] + }, + { + "osmId": "166482112", + "name": null, + "lengthMeters": 179.13328359205116, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4220648, + 13.1807417 + ], + [ + 52.4220331, + 13.1806765 + ], + [ + 52.4219782, + 13.1805649 + ], + [ + 52.4219234, + 13.1804552 + ], + [ + 52.4218112, + 13.1802266 + ], + [ + 52.4217253, + 13.1800542 + ], + [ + 52.421641, + 13.1798885 + ], + [ + 52.4215598, + 13.1797273 + ], + [ + 52.4214805, + 13.1795762 + ], + [ + 52.4213582, + 13.1793471 + ], + [ + 52.4212215, + 13.1791072 + ], + [ + 52.4210576, + 13.1788293 + ], + [ + 52.4210091, + 13.1787485 + ] + ] + }, + { + "osmId": "166482113", + "name": null, + "lengthMeters": 175.43201462874396, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4206912, + 13.1788576 + ], + [ + 52.4207705, + 13.1790034 + ], + [ + 52.4207904, + 13.17904 + ], + [ + 52.4208216, + 13.1790976 + ], + [ + 52.4209913, + 13.1794108 + ], + [ + 52.4216084, + 13.1805807 + ], + [ + 52.421728, + 13.1808075 + ] + ] + }, + { + "osmId": "166482114", + "name": null, + "lengthMeters": 459.806174394463, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4232711, + 13.1838455 + ], + [ + 52.4232277, + 13.1837611 + ], + [ + 52.4232225, + 13.1837511 + ], + [ + 52.4232084, + 13.1837242 + ], + [ + 52.4223416, + 13.1820755 + ], + [ + 52.4220921, + 13.1816009 + ], + [ + 52.4220273, + 13.1814787 + ], + [ + 52.4209564, + 13.1794611 + ], + [ + 52.4207511, + 13.1790827 + ], + [ + 52.4205589, + 13.1787272 + ] + ] + }, + { + "osmId": "166482115", + "name": null, + "lengthMeters": 465.0860234134113, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.420467, + 13.1788283 + ], + [ + 52.4204744, + 13.1788424 + ], + [ + 52.4206774, + 13.1792256 + ], + [ + 52.4208664, + 13.1795909 + ], + [ + 52.4210654, + 13.1799656 + ], + [ + 52.4211812, + 13.1801855 + ], + [ + 52.4213015, + 13.1804139 + ], + [ + 52.4213267, + 13.180462 + ], + [ + 52.4214865, + 13.180767 + ], + [ + 52.4216733, + 13.1811166 + ], + [ + 52.4217044, + 13.1811758 + ], + [ + 52.421933, + 13.1816111 + ], + [ + 52.4219577, + 13.1816581 + ], + [ + 52.4222453, + 13.1821995 + ], + [ + 52.422519, + 13.1827214 + ], + [ + 52.4227057, + 13.1830761 + ], + [ + 52.4228939, + 13.1834454 + ], + [ + 52.4230953, + 13.1838389 + ], + [ + 52.4231196, + 13.1838862 + ], + [ + 52.4231225, + 13.1838919 + ], + [ + 52.4231279, + 13.1839027 + ], + [ + 52.423192, + 13.1840312 + ] + ] + }, + { + "osmId": "166818972", + "name": null, + "lengthMeters": 147.0593647497782, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4299742, + 13.7502522 + ], + [ + 52.4297518, + 13.750539 + ], + [ + 52.429524, + 13.7508079 + ], + [ + 52.4288795, + 13.7514652 + ] + ] + }, + { + "osmId": "166913841", + "name": null, + "lengthMeters": 158.5420662791367, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5412956, + 13.4081351 + ], + [ + 52.541306, + 13.4082257 + ], + [ + 52.5413081, + 13.4082435 + ], + [ + 52.541313, + 13.4083235 + ], + [ + 52.5413124, + 13.4084509 + ], + [ + 52.5413118, + 13.4085308 + ], + [ + 52.5413014, + 13.4086598 + ], + [ + 52.5412927, + 13.4087627 + ], + [ + 52.5412666, + 13.4091073 + ], + [ + 52.5412085, + 13.4097724 + ], + [ + 52.5411488, + 13.4104585 + ] + ] + }, + { + "osmId": "167272512", + "name": null, + "lengthMeters": 461.4321281581689, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5206962, + 13.3945119 + ], + [ + 52.5203096, + 13.39369 + ], + [ + 52.5202818, + 13.3936384 + ], + [ + 52.5202437, + 13.3935647 + ], + [ + 52.5202115, + 13.3934805 + ], + [ + 52.5201936, + 13.3934023 + ], + [ + 52.5201847, + 13.39333 + ], + [ + 52.5201744, + 13.3931798 + ], + [ + 52.5201579, + 13.3929381 + ], + [ + 52.5200959, + 13.3920906 + ], + [ + 52.5200886, + 13.3919904 + ], + [ + 52.5200797, + 13.3918455 + ], + [ + 52.5200057, + 13.3906425 + ], + [ + 52.5199903, + 13.3905108 + ], + [ + 52.5199694, + 13.3904428 + ], + [ + 52.5199453, + 13.3903874 + ], + [ + 52.5199026, + 13.3903283 + ], + [ + 52.5198647, + 13.3902975 + ], + [ + 52.5198392, + 13.3902829 + ], + [ + 52.5198301, + 13.3902777 + ], + [ + 52.5198017, + 13.3902691 + ], + [ + 52.5197562, + 13.3902675 + ], + [ + 52.5197108, + 13.3902738 + ], + [ + 52.5195278, + 13.3903055 + ], + [ + 52.5191171, + 13.3903864 + ], + [ + 52.519088, + 13.3903888 + ], + [ + 52.5190525, + 13.3903904 + ], + [ + 52.5190175, + 13.390386 + ], + [ + 52.5189925, + 13.3903784 + ], + [ + 52.5189692, + 13.3903681 + ], + [ + 52.5189462, + 13.3903514 + ], + [ + 52.5189223, + 13.3903306 + ], + [ + 52.5189087, + 13.3903137 + ], + [ + 52.5188943, + 13.3902928 + ], + [ + 52.5188786, + 13.3902638 + ], + [ + 52.5188653, + 13.3902324 + ], + [ + 52.5188568, + 13.3902058 + ], + [ + 52.5188486, + 13.3901749 + ], + [ + 52.5188432, + 13.3901476 + ], + [ + 52.5188365, + 13.3901083 + ], + [ + 52.51883, + 13.3900547 + ], + [ + 52.5188251, + 13.3899852 + ], + [ + 52.5188086, + 13.3897366 + ] + ] + }, + { + "osmId": "167272531", + "name": null, + "lengthMeters": 95.64968815449976, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5249749, + 13.3875578 + ], + [ + 52.5250626, + 13.3875427 + ], + [ + 52.5250983, + 13.3875365 + ], + [ + 52.5251412, + 13.3875226 + ], + [ + 52.5252066, + 13.3874889 + ], + [ + 52.5252445, + 13.387475 + ], + [ + 52.5252995, + 13.3874607 + ], + [ + 52.5253565, + 13.3874512 + ], + [ + 52.5258261, + 13.3873723 + ] + ] + }, + { + "osmId": "167523653", + "name": null, + "lengthMeters": 84.81039146589936, + "maxSpeedKph": 15.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5201874, + 13.4051355 + ], + [ + 52.520192, + 13.4051452 + ], + [ + 52.5206248, + 13.4060067 + ], + [ + 52.520673, + 13.4061021 + ] + ] + }, + { + "osmId": "167527254", + "name": null, + "lengthMeters": 268.66886784073563, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5728569, + 13.4953337 + ], + [ + 52.5729485, + 13.4953595 + ], + [ + 52.57306, + 13.4953927 + ], + [ + 52.5731871, + 13.4954116 + ], + [ + 52.5732178, + 13.495416 + ], + [ + 52.5732451, + 13.4954168 + ], + [ + 52.5732761, + 13.4954153 + ], + [ + 52.5733098, + 13.4954071 + ], + [ + 52.5733355, + 13.4953961 + ], + [ + 52.5733667, + 13.4953766 + ], + [ + 52.5733901, + 13.4953562 + ], + [ + 52.5734209, + 13.4953219 + ], + [ + 52.573449, + 13.4952871 + ], + [ + 52.5734728, + 13.4952526 + ], + [ + 52.5734925, + 13.4952173 + ], + [ + 52.5735117, + 13.4951784 + ], + [ + 52.5735264, + 13.4951391 + ], + [ + 52.5735428, + 13.4950831 + ], + [ + 52.5735559, + 13.4950248 + ], + [ + 52.5735669, + 13.4949655 + ], + [ + 52.5735732, + 13.4949003 + ], + [ + 52.5735746, + 13.4948415 + ], + [ + 52.5735732, + 13.4947783 + ], + [ + 52.5735691, + 13.4947231 + ], + [ + 52.5735608, + 13.4946675 + ], + [ + 52.5735453, + 13.4946055 + ], + [ + 52.573527, + 13.4945465 + ], + [ + 52.5735079, + 13.4945 + ], + [ + 52.5734866, + 13.4944547 + ], + [ + 52.5734602, + 13.4944094 + ], + [ + 52.5734349, + 13.4943757 + ], + [ + 52.5734009, + 13.4943389 + ], + [ + 52.5733723, + 13.4943134 + ], + [ + 52.5733415, + 13.4942897 + ], + [ + 52.5733048, + 13.4942713 + ], + [ + 52.5732799, + 13.4942622 + ], + [ + 52.5732447, + 13.4942554 + ], + [ + 52.5732151, + 13.4942545 + ], + [ + 52.573184, + 13.4942575 + ], + [ + 52.5731584, + 13.4942641 + ], + [ + 52.5731312, + 13.4942748 + ], + [ + 52.5731023, + 13.4942889 + ], + [ + 52.5730632, + 13.4943119 + ], + [ + 52.5729797, + 13.4943782 + ], + [ + 52.5729132, + 13.4944329 + ], + [ + 52.5729014, + 13.4944423 + ], + [ + 52.5728318, + 13.4944947 + ], + [ + 52.5723695, + 13.494867 + ] + ] + }, + { + "osmId": "167528219", + "name": null, + "lengthMeters": 232.75878059600302, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553366, + 13.475213 + ], + [ + 52.5533362, + 13.4760326 + ], + [ + 52.5533249, + 13.4763546 + ], + [ + 52.5533124, + 13.4767134 + ], + [ + 52.5532795, + 13.4776183 + ], + [ + 52.55326, + 13.4781555 + ], + [ + 52.5532434, + 13.4786498 + ] + ] + }, + { + "osmId": "167569489", + "name": null, + "lengthMeters": 418.8171809475133, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5324856, + 13.3970675 + ], + [ + 52.5324776, + 13.396895 + ], + [ + 52.5324465, + 13.3961622 + ], + [ + 52.5324362, + 13.3960515 + ], + [ + 52.5324284, + 13.3959553 + ], + [ + 52.5324158, + 13.3958294 + ], + [ + 52.5322699, + 13.3945079 + ], + [ + 52.5322274, + 13.3941825 + ], + [ + 52.5322213, + 13.3941358 + ], + [ + 52.532208, + 13.3940339 + ], + [ + 52.5321688, + 13.393661 + ], + [ + 52.5321479, + 13.393466 + ], + [ + 52.5320743, + 13.3927626 + ], + [ + 52.5319845, + 13.391909 + ], + [ + 52.5318879, + 13.390959 + ] + ] + }, + { + "osmId": "167584726", + "name": null, + "lengthMeters": 243.28855877026433, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5269665, + 13.4758601 + ], + [ + 52.5267568, + 13.4770868 + ], + [ + 52.5266704, + 13.4776012 + ], + [ + 52.5266553, + 13.4776919 + ], + [ + 52.5266402, + 13.4777827 + ], + [ + 52.5266278, + 13.4778709 + ], + [ + 52.5266076, + 13.4780508 + ], + [ + 52.5265978, + 13.4782085 + ], + [ + 52.5265946, + 13.478417 + ], + [ + 52.5266001, + 13.479068 + ], + [ + 52.5266035, + 13.4793182 + ], + [ + 52.5266055, + 13.4793765 + ] + ] + }, + { + "osmId": "167651708", + "name": null, + "lengthMeters": 79.72983934892676, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5510655, + 13.5081728 + ], + [ + 52.5510111, + 13.5082105 + ], + [ + 52.5509768, + 13.5082365 + ], + [ + 52.550945, + 13.5082699 + ], + [ + 52.5509196, + 13.5083026 + ], + [ + 52.5509044, + 13.5083263 + ], + [ + 52.5508892, + 13.5083647 + ], + [ + 52.5508753, + 13.5084157 + ], + [ + 52.5508667, + 13.5084653 + ], + [ + 52.5508584, + 13.5085298 + ], + [ + 52.5508434, + 13.5087573 + ], + [ + 52.5508154, + 13.5091772 + ] + ] + }, + { + "osmId": "167791953", + "name": null, + "lengthMeters": 253.07641404471772, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119866, + 13.4696737 + ], + [ + 52.5122095, + 13.4698986 + ], + [ + 52.5122647, + 13.4699643 + ], + [ + 52.5123058, + 13.4700392 + ], + [ + 52.5123306, + 13.4701003 + ], + [ + 52.5123491, + 13.4701734 + ], + [ + 52.512357, + 13.4702641 + ], + [ + 52.5123595, + 13.4703202 + ], + [ + 52.5123557, + 13.4703749 + ], + [ + 52.51216, + 13.4723057 + ], + [ + 52.5121123, + 13.4728527 + ], + [ + 52.5120898, + 13.4730813 + ] + ] + }, + { + "osmId": "167791954", + "name": null, + "lengthMeters": 157.06641320683568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118973, + 13.4708034 + ], + [ + 52.5118248, + 13.4707227 + ], + [ + 52.5113715, + 13.470218 + ], + [ + 52.5113518, + 13.4701903 + ], + [ + 52.5113389, + 13.4701481 + ], + [ + 52.5113328, + 13.4701155 + ], + [ + 52.5113278, + 13.4700707 + ], + [ + 52.5113246, + 13.4699852 + ], + [ + 52.5113327, + 13.4698983 + ], + [ + 52.5113561, + 13.469801 + ], + [ + 52.511414, + 13.4696279 + ], + [ + 52.5114706, + 13.4694956 + ], + [ + 52.5115197, + 13.4694346 + ], + [ + 52.5115786, + 13.4693943 + ], + [ + 52.5116197, + 13.46939 + ], + [ + 52.5116627, + 13.4693978 + ], + [ + 52.5117376, + 13.4694234 + ] + ] + }, + { + "osmId": "167847595", + "name": null, + "lengthMeters": 3817.502475331775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1745641, + 11.6360278 + ], + [ + 48.1743286, + 11.6362324 + ], + [ + 48.1741593, + 11.6363519 + ], + [ + 48.1739342, + 11.6364796 + ], + [ + 48.1737461, + 11.6365557 + ], + [ + 48.1735569, + 11.6366128 + ], + [ + 48.1732953, + 11.6366524 + ], + [ + 48.1730202, + 11.6366647 + ], + [ + 48.1728909, + 11.6366601 + ], + [ + 48.1727594, + 11.6366509 + ], + [ + 48.1726896, + 11.6366435 + ], + [ + 48.1725122, + 11.6366174 + ], + [ + 48.172423, + 11.6365992 + ], + [ + 48.1722457, + 11.6365623 + ], + [ + 48.1721194, + 11.6365205 + ], + [ + 48.1720121, + 11.6364839 + ], + [ + 48.1718397, + 11.6364277 + ], + [ + 48.1716805, + 11.6363599 + ], + [ + 48.1714766, + 11.6362637 + ], + [ + 48.1712683, + 11.6361444 + ], + [ + 48.1708106, + 11.6358513 + ], + [ + 48.1705551, + 11.6356536 + ], + [ + 48.1703025, + 11.6354432 + ], + [ + 48.1701115, + 11.6352865 + ], + [ + 48.1698119, + 11.6350169 + ], + [ + 48.1693793, + 11.6346331 + ], + [ + 48.1693647, + 11.6346202 + ], + [ + 48.1692805, + 11.6345447 + ], + [ + 48.1692034, + 11.6344743 + ], + [ + 48.1691108, + 11.6343907 + ], + [ + 48.169071, + 11.6343548 + ], + [ + 48.1688006, + 11.6340983 + ], + [ + 48.1686521, + 11.6339401 + ], + [ + 48.1685041, + 11.6337711 + ], + [ + 48.1683552, + 11.6335694 + ], + [ + 48.168233, + 11.6333923 + ], + [ + 48.1681145, + 11.6332074 + ], + [ + 48.1680177, + 11.6330384 + ], + [ + 48.1679695, + 11.6329452 + ], + [ + 48.1678897, + 11.6327965 + ], + [ + 48.1672767, + 11.6316035 + ], + [ + 48.1670763, + 11.6312478 + ], + [ + 48.1669834, + 11.6310927 + ], + [ + 48.1668875, + 11.6309483 + ], + [ + 48.1668172, + 11.6308434 + ], + [ + 48.1667338, + 11.6307361 + ], + [ + 48.166654, + 11.630634 + ], + [ + 48.1665002, + 11.6304553 + ], + [ + 48.166445, + 11.6303912 + ], + [ + 48.166196, + 11.630145 + ], + [ + 48.1658195, + 11.6298459 + ], + [ + 48.1657392, + 11.6297929 + ], + [ + 48.165646, + 11.6297346 + ], + [ + 48.1654215, + 11.6296009 + ], + [ + 48.1652943, + 11.6295448 + ], + [ + 48.1651843, + 11.6295024 + ], + [ + 48.1649258, + 11.6294104 + ], + [ + 48.1646706, + 11.6293392 + ], + [ + 48.1644447, + 11.6293037 + ], + [ + 48.1642189, + 11.6292819 + ], + [ + 48.1637689, + 11.6292519 + ], + [ + 48.1633209, + 11.6292298 + ], + [ + 48.1632476, + 11.6292239 + ], + [ + 48.1627552, + 11.6291875 + ], + [ + 48.1625049, + 11.6291712 + ], + [ + 48.162349, + 11.6291612 + ], + [ + 48.1622229, + 11.6291545 + ], + [ + 48.1621068, + 11.6291471 + ], + [ + 48.1605593, + 11.6290482 + ], + [ + 48.1604523, + 11.6290425 + ], + [ + 48.1591549, + 11.6289705 + ], + [ + 48.1590538, + 11.6289648 + ], + [ + 48.1589417, + 11.6289612 + ], + [ + 48.1586311, + 11.6289649 + ], + [ + 48.1584736, + 11.628974 + ], + [ + 48.158315, + 11.6289867 + ], + [ + 48.1582971, + 11.6289881 + ], + [ + 48.1579215, + 11.6290416 + ], + [ + 48.157555, + 11.6291272 + ], + [ + 48.1572185, + 11.6292467 + ], + [ + 48.1568788, + 11.6293878 + ], + [ + 48.1568265, + 11.6294093 + ], + [ + 48.1565086, + 11.6295386 + ], + [ + 48.1562874, + 11.6295969 + ], + [ + 48.1560633, + 11.6296315 + ], + [ + 48.1558185, + 11.6296688 + ], + [ + 48.1555749, + 11.629681 + ], + [ + 48.1552755, + 11.6296722 + ], + [ + 48.1551672, + 11.6296711 + ], + [ + 48.1549025, + 11.6296641 + ], + [ + 48.1543631, + 11.6296113 + ], + [ + 48.1537374, + 11.6295273 + ], + [ + 48.1537163, + 11.6295223 + ], + [ + 48.1536826, + 11.6295121 + ], + [ + 48.1536481, + 11.6294904 + ], + [ + 48.1536076, + 11.6294489 + ], + [ + 48.1535739, + 11.6293973 + ], + [ + 48.1535613, + 11.6293731 + ], + [ + 48.1535468, + 11.629321 + ], + [ + 48.1535377, + 11.6292745 + ], + [ + 48.1535295, + 11.6292046 + ], + [ + 48.1535688, + 11.6284774 + ], + [ + 48.153583, + 11.6282081 + ], + [ + 48.1535937, + 11.6278633 + ], + [ + 48.1535947, + 11.6277889 + ], + [ + 48.1535952, + 11.6274657 + ], + [ + 48.1536034, + 11.6267939 + ], + [ + 48.1536561, + 11.6257206 + ], + [ + 48.1537379, + 11.6243474 + ], + [ + 48.1537499, + 11.6240236 + ], + [ + 48.1537587, + 11.6236457 + ], + [ + 48.1537613, + 11.6234124 + ], + [ + 48.1537636, + 11.6232485 + ], + [ + 48.1537624, + 11.622574 + ], + [ + 48.1537319, + 11.6215873 + ], + [ + 48.1537249, + 11.6214193 + ], + [ + 48.1537179, + 11.621237 + ], + [ + 48.1536877, + 11.6206862 + ], + [ + 48.1536529, + 11.6201626 + ], + [ + 48.1535639, + 11.6190595 + ], + [ + 48.1535562, + 11.6189262 + ], + [ + 48.1535502, + 11.6187478 + ], + [ + 48.1535488, + 11.618608 + ], + [ + 48.1535517, + 11.6184224 + ], + [ + 48.1535561, + 11.6183026 + ], + [ + 48.1535688, + 11.6181336 + ], + [ + 48.1535804, + 11.618004 + ], + [ + 48.153605, + 11.6178026 + ], + [ + 48.1536241, + 11.6176786 + ], + [ + 48.1536848, + 11.6173281 + ], + [ + 48.1537739, + 11.6169864 + ], + [ + 48.1539476, + 11.61639 + ], + [ + 48.1539868, + 11.6162324 + ], + [ + 48.1539976, + 11.6161637 + ], + [ + 48.1540029, + 11.6160943 + ], + [ + 48.153997, + 11.6160038 + ], + [ + 48.1539844, + 11.6159297 + ], + [ + 48.1539735, + 11.6158792 + ], + [ + 48.1539504, + 11.6158181 + ], + [ + 48.1539248, + 11.6157691 + ], + [ + 48.1538958, + 11.6157237 + ], + [ + 48.1538516, + 11.6156692 + ], + [ + 48.1533358, + 11.6151796 + ], + [ + 48.1532244, + 11.6150447 + ], + [ + 48.1531273, + 11.614919 + ], + [ + 48.1530283, + 11.6147847 + ], + [ + 48.152877, + 11.6145295 + ], + [ + 48.1528323, + 11.6144815 + ], + [ + 48.1527964, + 11.6144453 + ], + [ + 48.152739, + 11.6143949 + ], + [ + 48.1526735, + 11.6143425 + ], + [ + 48.1524274, + 11.6141828 + ], + [ + 48.152391, + 11.6141528 + ], + [ + 48.1523509, + 11.6141234 + ], + [ + 48.1523263, + 11.6141001 + ], + [ + 48.1523036, + 11.6140726 + ], + [ + 48.1522663, + 11.6140271 + ], + [ + 48.1522349, + 11.6139811 + ], + [ + 48.1522115, + 11.6139368 + ], + [ + 48.1522066, + 11.6139277 + ], + [ + 48.1521651, + 11.613833 + ], + [ + 48.1521369, + 11.6137603 + ], + [ + 48.1521229, + 11.6137248 + ], + [ + 48.1521048, + 11.6136698 + ] + ] + }, + { + "osmId": "167895771", + "name": null, + "lengthMeters": 116.82113649930652, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5255712, + 13.4449667 + ], + [ + 52.5254847, + 13.4446884 + ], + [ + 52.525329, + 13.4441787 + ], + [ + 52.525288, + 13.444044 + ], + [ + 52.5252283, + 13.4438192 + ], + [ + 52.5251904, + 13.4436767 + ], + [ + 52.5251234, + 13.4434057 + ] + ] + }, + { + "osmId": "168253001", + "name": null, + "lengthMeters": 384.5119442525933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.534191, + 13.4053516 + ], + [ + 52.5339933, + 13.4051598 + ], + [ + 52.5338721, + 13.405048 + ], + [ + 52.5334989, + 13.404704 + ], + [ + 52.533211, + 13.4044314 + ], + [ + 52.533131, + 13.4043559 + ], + [ + 52.5330443, + 13.4042723 + ], + [ + 52.5318983, + 13.4031352 + ], + [ + 52.531488, + 13.4027281 + ], + [ + 52.5314643, + 13.4027061 + ], + [ + 52.5313052, + 13.4025697 + ], + [ + 52.5312058, + 13.4024844 + ] + ] + }, + { + "osmId": "168254759", + "name": null, + "lengthMeters": 138.3415173274429, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312219, + 13.3853991 + ], + [ + 52.531191, + 13.3853029 + ], + [ + 52.5311624, + 13.3851924 + ], + [ + 52.5310879, + 13.3849294 + ], + [ + 52.5310157, + 13.3846709 + ], + [ + 52.530975, + 13.3845261 + ], + [ + 52.5307062, + 13.3835382 + ] + ] + }, + { + "osmId": "168293909", + "name": null, + "lengthMeters": 383.56767065907303, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5333987, + 13.466082 + ], + [ + 52.5336105, + 13.46669 + ], + [ + 52.5337549, + 13.4670548 + ], + [ + 52.5339083, + 13.4674059 + ], + [ + 52.5339702, + 13.4675416 + ], + [ + 52.5341801, + 13.4680099 + ], + [ + 52.5342728, + 13.4682168 + ], + [ + 52.5343424, + 13.4683657 + ], + [ + 52.5345651, + 13.4688614 + ], + [ + 52.5346673, + 13.4690883 + ], + [ + 52.5348711, + 13.4695406 + ], + [ + 52.535, + 13.4698577 + ], + [ + 52.5350652, + 13.4700411 + ], + [ + 52.5351267, + 13.4702156 + ], + [ + 52.5351704, + 13.4703471 + ], + [ + 52.535211, + 13.4704799 + ], + [ + 52.535304, + 13.4707961 + ] + ] + }, + { + "osmId": "168294595", + "name": null, + "lengthMeters": 171.98892807078028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5359969, + 13.4730699 + ], + [ + 52.5359909, + 13.473049 + ], + [ + 52.5357243, + 13.472126 + ], + [ + 52.5356956, + 13.4720253 + ], + [ + 52.5355756, + 13.4716176 + ], + [ + 52.5354848, + 13.4713028 + ], + [ + 52.5354008, + 13.4710156 + ], + [ + 52.5353268, + 13.4707782 + ] + ] + }, + { + "osmId": "168298367", + "name": null, + "lengthMeters": 82.0777650380716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362303, + 13.4739845 + ], + [ + 52.5362848, + 13.4741666 + ], + [ + 52.5364787, + 13.4748251 + ], + [ + 52.536531, + 13.4750004 + ], + [ + 52.5365534, + 13.4750756 + ] + ] + }, + { + "osmId": "168444438", + "name": null, + "lengthMeters": 122.3120065468799, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5459934, + 13.5641756 + ], + [ + 52.5459404, + 13.5642071 + ], + [ + 52.5458874, + 13.5642359 + ], + [ + 52.5458013, + 13.564269 + ], + [ + 52.5457077, + 13.5643049 + ], + [ + 52.5449177, + 13.564544 + ] + ] + }, + { + "osmId": "168444441", + "name": null, + "lengthMeters": 152.23712370385087, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5448553, + 13.5666093 + ], + [ + 52.5448223, + 13.5663451 + ], + [ + 52.5447722, + 13.5658949 + ], + [ + 52.544694, + 13.5651794 + ], + [ + 52.5446883, + 13.5651035 + ], + [ + 52.5446876, + 13.5650654 + ], + [ + 52.5446868, + 13.5650238 + ], + [ + 52.5446894, + 13.5649755 + ], + [ + 52.544695, + 13.5649228 + ], + [ + 52.5447058, + 13.564868 + ], + [ + 52.5447259, + 13.5648049 + ], + [ + 52.5447484, + 13.5647509 + ], + [ + 52.544758, + 13.5647368 + ], + [ + 52.5447855, + 13.5646959 + ], + [ + 52.5448157, + 13.5646587 + ], + [ + 52.5448705, + 13.564617 + ], + [ + 52.544894, + 13.564604 + ], + [ + 52.5449294, + 13.5645887 + ] + ] + }, + { + "osmId": "168445186", + "name": null, + "lengthMeters": 167.71963110203168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467762, + 13.5575544 + ], + [ + 52.5470457, + 13.557743 + ], + [ + 52.5473777, + 13.5579851 + ], + [ + 52.5475689, + 13.5581462 + ], + [ + 52.5476071, + 13.5581784 + ], + [ + 52.5476435, + 13.558209 + ], + [ + 52.5476692, + 13.5582322 + ], + [ + 52.5477003, + 13.5582567 + ], + [ + 52.5477458, + 13.5582949 + ], + [ + 52.5479163, + 13.5584393 + ], + [ + 52.5480028, + 13.5585137 + ], + [ + 52.5480076, + 13.5585178 + ], + [ + 52.5480358, + 13.558543 + ], + [ + 52.5481342, + 13.5586304 + ] + ] + }, + { + "osmId": "168447214", + "name": null, + "lengthMeters": 109.7305586290008, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5476268, + 13.5597586 + ], + [ + 52.5477606, + 13.5589539 + ], + [ + 52.5477708, + 13.5589007 + ], + [ + 52.5477865, + 13.55884 + ], + [ + 52.5478072, + 13.5587817 + ], + [ + 52.5478227, + 13.5587491 + ], + [ + 52.5478409, + 13.5587183 + ], + [ + 52.5478598, + 13.5586919 + ], + [ + 52.5478778, + 13.55867 + ], + [ + 52.5478973, + 13.5586517 + ], + [ + 52.5479169, + 13.5586372 + ], + [ + 52.5479426, + 13.5586204 + ], + [ + 52.5479717, + 13.5586072 + ], + [ + 52.547986, + 13.5586048 + ], + [ + 52.5479977, + 13.5586028 + ], + [ + 52.5480236, + 13.5586031 + ], + [ + 52.5480747, + 13.5586088 + ], + [ + 52.5481342, + 13.5586304 + ] + ] + }, + { + "osmId": "168448169", + "name": null, + "lengthMeters": 192.39053686161793, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5481342, + 13.5586304 + ], + [ + 52.5481796, + 13.5586636 + ], + [ + 52.548225, + 13.5587013 + ], + [ + 52.5483197, + 13.558786 + ], + [ + 52.5484116, + 13.5588679 + ], + [ + 52.548503, + 13.5589535 + ], + [ + 52.5486956, + 13.5591487 + ], + [ + 52.5488826, + 13.5593568 + ], + [ + 52.5489404, + 13.5594247 + ], + [ + 52.5490091, + 13.5595048 + ], + [ + 52.549096, + 13.5596125 + ], + [ + 52.5491856, + 13.5597298 + ], + [ + 52.5492453, + 13.5598082 + ], + [ + 52.5495492, + 13.5602488 + ] + ] + }, + { + "osmId": "168448763", + "name": null, + "lengthMeters": 158.99450877745335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5448553, + 13.5666093 + ], + [ + 52.5447734, + 13.566198 + ], + [ + 52.5447544, + 13.5660865 + ], + [ + 52.5447382, + 13.565975 + ], + [ + 52.5447194, + 13.5658342 + ], + [ + 52.5447035, + 13.5656783 + ], + [ + 52.5446555, + 13.5651076 + ], + [ + 52.5446514, + 13.565073 + ], + [ + 52.5446465, + 13.5650305 + ], + [ + 52.5446341, + 13.5649664 + ], + [ + 52.5446152, + 13.5648833 + ], + [ + 52.5445988, + 13.5648362 + ], + [ + 52.5445738, + 13.564775 + ], + [ + 52.5445664, + 13.5647617 + ], + [ + 52.5445525, + 13.5647383 + ], + [ + 52.544539, + 13.5647196 + ], + [ + 52.5445225, + 13.5646981 + ], + [ + 52.5445023, + 13.5646752 + ], + [ + 52.54448, + 13.5646551 + ], + [ + 52.5444628, + 13.5646417 + ], + [ + 52.5444461, + 13.5646301 + ], + [ + 52.5444242, + 13.5646189 + ], + [ + 52.5443944, + 13.5646089 + ], + [ + 52.5443805, + 13.5646058 + ], + [ + 52.5443329, + 13.5645976 + ] + ] + }, + { + "osmId": "168454107", + "name": null, + "lengthMeters": 155.89087403611944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5692495, + 13.4013889 + ], + [ + 52.5692417, + 13.4014084 + ], + [ + 52.5692343, + 13.4014311 + ], + [ + 52.5692244, + 13.4014674 + ], + [ + 52.5692166, + 13.4015013 + ], + [ + 52.5692065, + 13.4015513 + ], + [ + 52.5691924, + 13.4016468 + ], + [ + 52.5691869, + 13.4017412 + ], + [ + 52.5691892, + 13.4018254 + ], + [ + 52.5691958, + 13.4019751 + ], + [ + 52.5692051, + 13.4020918 + ], + [ + 52.5692155, + 13.40218 + ], + [ + 52.5692675, + 13.4025658 + ], + [ + 52.569309, + 13.4028737 + ], + [ + 52.5693823, + 13.4034082 + ], + [ + 52.5693847, + 13.4034254 + ], + [ + 52.5694115, + 13.4036385 + ] + ] + }, + { + "osmId": "168456278", + "name": null, + "lengthMeters": 417.331828956016, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.546083, + 13.5570149 + ], + [ + 52.5459306, + 13.5569071 + ], + [ + 52.5457775, + 13.5567979 + ], + [ + 52.5456418, + 13.5567009 + ], + [ + 52.5455679, + 13.5566443 + ], + [ + 52.5454961, + 13.5565837 + ], + [ + 52.5454228, + 13.556512 + ], + [ + 52.5453505, + 13.5564379 + ], + [ + 52.5452996, + 13.5563797 + ], + [ + 52.5452493, + 13.5563186 + ], + [ + 52.5451447, + 13.5561774 + ], + [ + 52.5450378, + 13.5560106 + ], + [ + 52.5449629, + 13.5558739 + ], + [ + 52.5448961, + 13.5557407 + ], + [ + 52.5448347, + 13.5556104 + ], + [ + 52.5447653, + 13.5554342 + ], + [ + 52.5447046, + 13.5552581 + ], + [ + 52.5445487, + 13.554742 + ], + [ + 52.5438386, + 13.5523585 + ] + ] + }, + { + "osmId": "168469054", + "name": null, + "lengthMeters": 197.6772073775033, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368347, + 13.5162456 + ], + [ + 52.5364372, + 13.5165777 + ], + [ + 52.5363927, + 13.5166184 + ], + [ + 52.5363163, + 13.5166756 + ], + [ + 52.5358377, + 13.5170344 + ], + [ + 52.5356935, + 13.5171493 + ], + [ + 52.5356498, + 13.5171809 + ], + [ + 52.5356195, + 13.5171991 + ], + [ + 52.5355501, + 13.5172404 + ], + [ + 52.5354674, + 13.5172898 + ], + [ + 52.5353312, + 13.5173711 + ], + [ + 52.5352683, + 13.5174087 + ], + [ + 52.5352146, + 13.5174407 + ] + ] + }, + { + "osmId": "168469055", + "name": null, + "lengthMeters": 456.00381740528485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5271917, + 13.5194771 + ], + [ + 52.5279801, + 13.5194065 + ], + [ + 52.5286222, + 13.5193448 + ], + [ + 52.5287762, + 13.5193295 + ], + [ + 52.5289057, + 13.5193166 + ], + [ + 52.5291707, + 13.5192959 + ], + [ + 52.5294311, + 13.5192685 + ], + [ + 52.5295894, + 13.5192578 + ], + [ + 52.5305689, + 13.5191657 + ], + [ + 52.5308897, + 13.5191357 + ], + [ + 52.5312862, + 13.5191007 + ] + ] + }, + { + "osmId": "168472528", + "name": null, + "lengthMeters": 503.0403669554552, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307664, + 13.5494249 + ], + [ + 52.5298746, + 13.549229 + ], + [ + 52.5288224, + 13.5489962 + ], + [ + 52.5282171, + 13.548862 + ], + [ + 52.5281071, + 13.5488383 + ], + [ + 52.527997, + 13.5488146 + ], + [ + 52.527324, + 13.5486679 + ], + [ + 52.5269675, + 13.5485888 + ], + [ + 52.5268633, + 13.5485521 + ], + [ + 52.5267591, + 13.5485005 + ], + [ + 52.5266838, + 13.5484521 + ], + [ + 52.5266099, + 13.5483934 + ], + [ + 52.5265712, + 13.5483595 + ], + [ + 52.5265338, + 13.5483222 + ], + [ + 52.5264972, + 13.5482827 + ], + [ + 52.5264605, + 13.5482408 + ], + [ + 52.5264334, + 13.5482072 + ], + [ + 52.5264076, + 13.5481713 + ], + [ + 52.5263553, + 13.5480973 + ] + ] + }, + { + "osmId": "168472534", + "name": null, + "lengthMeters": 617.765928375434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257837, + 13.5391763 + ], + [ + 52.5258097, + 13.5399581 + ], + [ + 52.5258141, + 13.5400969 + ], + [ + 52.5258178, + 13.5402179 + ], + [ + 52.5258215, + 13.5403354 + ], + [ + 52.5258249, + 13.5404452 + ], + [ + 52.5258331, + 13.5407086 + ], + [ + 52.5258753, + 13.5420336 + ], + [ + 52.5258784, + 13.5421819 + ], + [ + 52.5258954, + 13.5429853 + ], + [ + 52.5259172, + 13.5441578 + ], + [ + 52.5259193, + 13.5442663 + ], + [ + 52.5259672, + 13.546779 + ], + [ + 52.5259772, + 13.546968 + ], + [ + 52.5259962, + 13.5471557 + ], + [ + 52.5260213, + 13.5473064 + ], + [ + 52.5260522, + 13.5474523 + ], + [ + 52.5260926, + 13.5475988 + ], + [ + 52.5261445, + 13.5477486 + ], + [ + 52.5261803, + 13.5478407 + ], + [ + 52.5262159, + 13.5479205 + ], + [ + 52.5262561, + 13.5480007 + ], + [ + 52.5263025, + 13.548079 + ], + [ + 52.5263347, + 13.5481351 + ] + ] + }, + { + "osmId": "168475928", + "name": null, + "lengthMeters": 689.1341421136622, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257076, + 13.5359403 + ], + [ + 52.5257078, + 13.5358239 + ], + [ + 52.5257015, + 13.5355746 + ], + [ + 52.5256727, + 13.5347109 + ], + [ + 52.5256694, + 13.5346295 + ], + [ + 52.5256614, + 13.5344702 + ], + [ + 52.5256462, + 13.5342237 + ], + [ + 52.5256327, + 13.5339204 + ], + [ + 52.5256279, + 13.5337984 + ], + [ + 52.5256222, + 13.5336544 + ], + [ + 52.5256194, + 13.5335651 + ], + [ + 52.5256155, + 13.5334399 + ], + [ + 52.5255941, + 13.5327922 + ], + [ + 52.5255457, + 13.531714 + ], + [ + 52.5255207, + 13.5310126 + ], + [ + 52.5255039, + 13.5297264 + ], + [ + 52.5255013, + 13.5293929 + ], + [ + 52.5255027, + 13.5292634 + ], + [ + 52.5255052, + 13.5291726 + ], + [ + 52.5255072, + 13.5290612 + ], + [ + 52.525511, + 13.5289296 + ], + [ + 52.52554, + 13.5283145 + ], + [ + 52.5255544, + 13.5275387 + ], + [ + 52.5255622, + 13.527278 + ], + [ + 52.5255722, + 13.5270339 + ], + [ + 52.5256314, + 13.5257715 + ] + ] + }, + { + "osmId": "168475931", + "name": null, + "lengthMeters": 83.46534715475418, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259214, + 13.5202148 + ], + [ + 52.5259323, + 13.5200423 + ], + [ + 52.5259372, + 13.5199634 + ], + [ + 52.5259449, + 13.5198421 + ], + [ + 52.5259498, + 13.5197637 + ], + [ + 52.5259609, + 13.5195881 + ], + [ + 52.5259641, + 13.5195362 + ], + [ + 52.5259744, + 13.5193729 + ], + [ + 52.5259812, + 13.5192653 + ], + [ + 52.5259849, + 13.5192072 + ], + [ + 52.5259944, + 13.5190553 + ], + [ + 52.5259987, + 13.5189876 + ] + ] + }, + { + "osmId": "168476797", + "name": null, + "lengthMeters": 97.4740605198954, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263165, + 13.519558 + ], + [ + 52.5265923, + 13.5195373 + ], + [ + 52.5271917, + 13.5194771 + ] + ] + }, + { + "osmId": "168484580", + "name": null, + "lengthMeters": 546.8524842452974, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307639, + 13.5494741 + ], + [ + 52.5322707, + 13.5498063 + ], + [ + 52.5323052, + 13.5498142 + ], + [ + 52.5323856, + 13.5498325 + ], + [ + 52.5328475, + 13.5499363 + ], + [ + 52.5329516, + 13.5499723 + ], + [ + 52.5330061, + 13.5499959 + ], + [ + 52.5330611, + 13.5500252 + ], + [ + 52.5331061, + 13.5500515 + ], + [ + 52.5331499, + 13.5500825 + ], + [ + 52.5332399, + 13.5501547 + ], + [ + 52.5333223, + 13.5502345 + ], + [ + 52.533395, + 13.5503182 + ], + [ + 52.5334602, + 13.550405 + ], + [ + 52.5334918, + 13.5504519 + ], + [ + 52.5335224, + 13.5505014 + ], + [ + 52.5336047, + 13.5506551 + ], + [ + 52.5336558, + 13.550762 + ], + [ + 52.5337101, + 13.5509036 + ], + [ + 52.5337565, + 13.5510526 + ], + [ + 52.5337955, + 13.5512017 + ], + [ + 52.5338277, + 13.5513565 + ], + [ + 52.5338452, + 13.551475 + ], + [ + 52.5338592, + 13.5515955 + ], + [ + 52.5338705, + 13.5517625 + ], + [ + 52.533883, + 13.5521123 + ], + [ + 52.5339031, + 13.552675 + ], + [ + 52.5339149, + 13.5529975 + ], + [ + 52.5339202, + 13.5531419 + ], + [ + 52.533927, + 13.5533263 + ], + [ + 52.5339394, + 13.5537079 + ] + ] + }, + { + "osmId": "168484581", + "name": null, + "lengthMeters": 118.43204926706751, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5339394, + 13.5537079 + ], + [ + 52.5339433, + 13.5538211 + ], + [ + 52.5339714, + 13.5546263 + ], + [ + 52.5339896, + 13.5551428 + ], + [ + 52.533997, + 13.5553628 + ], + [ + 52.5340001, + 13.555456 + ] + ] + }, + { + "osmId": "168484954", + "name": null, + "lengthMeters": 706.0663000077144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5340536, + 13.5559819 + ], + [ + 52.5340429, + 13.5557785 + ], + [ + 52.5340346, + 13.5555524 + ], + [ + 52.5340196, + 13.5551401 + ], + [ + 52.5339975, + 13.5545353 + ], + [ + 52.5339571, + 13.5533152 + ], + [ + 52.5339446, + 13.5529951 + ], + [ + 52.5339418, + 13.5529242 + ], + [ + 52.5339106, + 13.5520361 + ], + [ + 52.5339016, + 13.551758 + ], + [ + 52.5338913, + 13.551597 + ], + [ + 52.5338764, + 13.5514636 + ], + [ + 52.5338561, + 13.5513334 + ], + [ + 52.5338223, + 13.5511753 + ], + [ + 52.5337826, + 13.5510206 + ], + [ + 52.533734, + 13.5508704 + ], + [ + 52.5336781, + 13.5507287 + ], + [ + 52.5336288, + 13.5506201 + ], + [ + 52.5335442, + 13.5504634 + ], + [ + 52.5335117, + 13.5504134 + ], + [ + 52.5334785, + 13.5503652 + ], + [ + 52.5334137, + 13.5502772 + ], + [ + 52.5333355, + 13.5501888 + ], + [ + 52.5332542, + 13.5501086 + ], + [ + 52.533161, + 13.5500363 + ], + [ + 52.5331141, + 13.550004 + ], + [ + 52.5330661, + 13.5499746 + ], + [ + 52.5330122, + 13.5499469 + ], + [ + 52.5329576, + 13.5499225 + ], + [ + 52.5328497, + 13.5498869 + ], + [ + 52.5323902, + 13.5497825 + ], + [ + 52.5323091, + 13.5497642 + ], + [ + 52.5322744, + 13.5497564 + ], + [ + 52.5307664, + 13.5494249 + ] + ] + }, + { + "osmId": "168518540", + "name": null, + "lengthMeters": 226.22022833005212, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5473244, + 13.5088558 + ], + [ + 52.5466016, + 13.5092915 + ], + [ + 52.5465347, + 13.509332 + ], + [ + 52.5464733, + 13.5093693 + ], + [ + 52.5464362, + 13.5093909 + ], + [ + 52.5463545, + 13.5094397 + ], + [ + 52.5463182, + 13.5094611 + ], + [ + 52.5462387, + 13.5095094 + ], + [ + 52.5457156, + 13.5098227 + ], + [ + 52.5456161, + 13.5098831 + ], + [ + 52.5454136, + 13.5100043 + ] + ] + }, + { + "osmId": "169008810", + "name": null, + "lengthMeters": 1709.7538389769918, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3864113, + 13.6337903 + ], + [ + 52.3863378, + 13.6337181 + ], + [ + 52.3863069, + 13.6336892 + ], + [ + 52.3862827, + 13.6336684 + ], + [ + 52.3862711, + 13.633659 + ], + [ + 52.3862567, + 13.6336499 + ], + [ + 52.3862416, + 13.6336419 + ], + [ + 52.3862297, + 13.6336364 + ], + [ + 52.3862167, + 13.6336316 + ], + [ + 52.3861965, + 13.633626 + ], + [ + 52.3861767, + 13.6336235 + ], + [ + 52.3861503, + 13.6336237 + ], + [ + 52.386127, + 13.6336276 + ], + [ + 52.3861012, + 13.633638 + ], + [ + 52.386087, + 13.6336444 + ], + [ + 52.3860792, + 13.6336484 + ], + [ + 52.3860464, + 13.6336729 + ], + [ + 52.3860301, + 13.6336894 + ], + [ + 52.3860128, + 13.6337098 + ], + [ + 52.3859831, + 13.6337464 + ], + [ + 52.3859403, + 13.6338105 + ], + [ + 52.3851533, + 13.6350419 + ], + [ + 52.3823007, + 13.6394771 + ], + [ + 52.3821324, + 13.6397383 + ], + [ + 52.3811511, + 13.6412724 + ], + [ + 52.380469, + 13.6423284 + ], + [ + 52.3799331, + 13.6431532 + ], + [ + 52.3798754, + 13.6432408 + ], + [ + 52.3796091, + 13.6436442 + ], + [ + 52.3795442, + 13.6437379 + ], + [ + 52.3794949, + 13.6438078 + ], + [ + 52.3794504, + 13.6438667 + ], + [ + 52.3794096, + 13.6439205 + ], + [ + 52.379345, + 13.6440031 + ], + [ + 52.3792769, + 13.6440875 + ], + [ + 52.3792186, + 13.6441648 + ], + [ + 52.379152, + 13.6442578 + ], + [ + 52.3790837, + 13.6443504 + ], + [ + 52.3789975, + 13.6444707 + ], + [ + 52.378908, + 13.6445958 + ], + [ + 52.3787531, + 13.6448081 + ], + [ + 52.3784643, + 13.6452068 + ], + [ + 52.3784256, + 13.6452597 + ], + [ + 52.3783548, + 13.6453531 + ], + [ + 52.3783045, + 13.6454158 + ], + [ + 52.3782661, + 13.6454653 + ], + [ + 52.3782498, + 13.6454863 + ], + [ + 52.3781134, + 13.6456619 + ], + [ + 52.3779979, + 13.6458147 + ], + [ + 52.3779115, + 13.645935 + ], + [ + 52.3777033, + 13.646221 + ], + [ + 52.3775523, + 13.6464285 + ], + [ + 52.3775448, + 13.6464387 + ], + [ + 52.3774776, + 13.6465315 + ], + [ + 52.3772612, + 13.6468287 + ], + [ + 52.3771574, + 13.6469707 + ], + [ + 52.3771137, + 13.6470269 + ], + [ + 52.3770703, + 13.6470912 + ], + [ + 52.3770055, + 13.6471783 + ], + [ + 52.3767097, + 13.6475845 + ], + [ + 52.3763455, + 13.6480816 + ], + [ + 52.3761861, + 13.6482988 + ], + [ + 52.375953, + 13.6486208 + ], + [ + 52.375917, + 13.648672 + ], + [ + 52.3757761, + 13.6488851 + ], + [ + 52.3757499, + 13.6489206 + ], + [ + 52.3756008, + 13.6491251 + ], + [ + 52.3755337, + 13.649209 + ], + [ + 52.3755026, + 13.6492458 + ], + [ + 52.3754706, + 13.6492753 + ], + [ + 52.3754544, + 13.6492892 + ], + [ + 52.3754369, + 13.6493015 + ], + [ + 52.3754144, + 13.649316 + ], + [ + 52.3753957, + 13.6493263 + ], + [ + 52.3753664, + 13.6493393 + ], + [ + 52.3753395, + 13.6493491 + ], + [ + 52.3753196, + 13.6493538 + ], + [ + 52.3752985, + 13.6493578 + ], + [ + 52.3752655, + 13.6493586 + ], + [ + 52.3752377, + 13.6493591 + ], + [ + 52.3752118, + 13.6493551 + ], + [ + 52.375182, + 13.6493477 + ], + [ + 52.3751385, + 13.6493325 + ], + [ + 52.3750032, + 13.6492755 + ], + [ + 52.3749538, + 13.6492546 + ], + [ + 52.374753, + 13.6491663 + ] + ] + }, + { + "osmId": "169265603", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 464.6313048406315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5367702, + 10.2078687 + ], + [ + 53.5373946, + 10.2103111 + ], + [ + 53.5380643, + 10.2128875 + ], + [ + 53.538297, + 10.2137359 + ], + [ + 53.5384611, + 10.2142975 + ] + ] + }, + { + "osmId": "169536710", + "name": null, + "lengthMeters": 167.81427797747006, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5364121, + 13.4732295 + ], + [ + 52.5366143, + 13.4730279 + ], + [ + 52.5376346, + 13.4720583 + ], + [ + 52.5377158, + 13.4719797 + ] + ] + }, + { + "osmId": "169537166", + "name": null, + "lengthMeters": 187.08436241401904, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5459934, + 13.5641756 + ], + [ + 52.5459265, + 13.5642027 + ], + [ + 52.54586, + 13.5642257 + ], + [ + 52.5457328, + 13.5642488 + ], + [ + 52.5456748, + 13.5642647 + ], + [ + 52.5448821, + 13.5644977 + ], + [ + 52.5448055, + 13.564522 + ], + [ + 52.5447414, + 13.5645423 + ], + [ + 52.5446373, + 13.5645675 + ], + [ + 52.5445384, + 13.5645835 + ], + [ + 52.5444789, + 13.5645882 + ], + [ + 52.5443804, + 13.5645924 + ], + [ + 52.5443329, + 13.5645976 + ] + ] + }, + { + "osmId": "169724406", + "name": "U6", + "lengthMeters": 692.9638127673784, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5124449, + 13.3896127 + ], + [ + 52.5127689, + 13.3895272 + ], + [ + 52.5138444, + 13.3893517 + ], + [ + 52.5142957, + 13.3893233 + ], + [ + 52.5150729, + 13.3891962 + ], + [ + 52.5154287, + 13.3891319 + ], + [ + 52.5156453, + 13.389063 + ], + [ + 52.51583, + 13.3890244 + ], + [ + 52.5169064, + 13.3888493 + ], + [ + 52.5171202, + 13.3888154 + ], + [ + 52.5173947, + 13.3887717 + ], + [ + 52.5176669, + 13.3887291 + ], + [ + 52.518642, + 13.3885693 + ] + ] + }, + { + "osmId": "169770122", + "name": "Isartalbahn", + "lengthMeters": 143.50251023137372, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0196119, + 11.4807943 + ], + [ + 48.0198427, + 11.4809623 + ], + [ + 48.0200527, + 11.4811285 + ], + [ + 48.0202825, + 11.4813199 + ], + [ + 48.0204344, + 11.4814541 + ], + [ + 48.0205612, + 11.4815833 + ], + [ + 48.0207211, + 11.481771 + ] + ] + }, + { + "osmId": "170782996", + "name": null, + "lengthMeters": 440.60763366632176, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5139399, + 13.4985102 + ], + [ + 52.5139305, + 13.4986057 + ], + [ + 52.5138833, + 13.4990815 + ], + [ + 52.5138373, + 13.4995368 + ], + [ + 52.5136918, + 13.5010295 + ], + [ + 52.5135943, + 13.5020314 + ], + [ + 52.513581, + 13.5021696 + ], + [ + 52.5135739, + 13.5022146 + ], + [ + 52.5135661, + 13.5022468 + ], + [ + 52.5135558, + 13.5022781 + ], + [ + 52.5135423, + 13.5023092 + ], + [ + 52.5135344, + 13.5023256 + ], + [ + 52.513528, + 13.5023388 + ], + [ + 52.513509, + 13.5023682 + ], + [ + 52.5134953, + 13.5023834 + ], + [ + 52.5134814, + 13.5023973 + ], + [ + 52.5134633, + 13.5024115 + ], + [ + 52.5134411, + 13.5024246 + ], + [ + 52.5134219, + 13.5024302 + ], + [ + 52.5133972, + 13.5024322 + ], + [ + 52.5133791, + 13.5024312 + ], + [ + 52.5133605, + 13.5024256 + ], + [ + 52.5133529, + 13.5024222 + ], + [ + 52.5133392, + 13.5024151 + ], + [ + 52.5133241, + 13.5024055 + ], + [ + 52.5133075, + 13.5023903 + ], + [ + 52.5132952, + 13.5023772 + ], + [ + 52.5132611, + 13.5023285 + ], + [ + 52.5132299, + 13.5022568 + ], + [ + 52.5132058, + 13.5021823 + ], + [ + 52.5130676, + 13.5017806 + ], + [ + 52.5128328, + 13.5011818 + ], + [ + 52.512716, + 13.5008893 + ], + [ + 52.5126637, + 13.5007583 + ], + [ + 52.5125804, + 13.5005323 + ] + ] + }, + { + "osmId": "170782997", + "name": null, + "lengthMeters": 680.4401329978913, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5267616, + 13.4812682 + ], + [ + 52.5267481, + 13.4819321 + ], + [ + 52.5267353, + 13.4825593 + ], + [ + 52.5267311, + 13.4826449 + ], + [ + 52.5267261, + 13.4828529 + ], + [ + 52.5267241, + 13.4829336 + ], + [ + 52.5266891, + 13.4843831 + ], + [ + 52.5266717, + 13.4851478 + ], + [ + 52.5266673, + 13.4853432 + ], + [ + 52.5266637, + 13.4854982 + ], + [ + 52.526662, + 13.4855725 + ], + [ + 52.5266382, + 13.4866212 + ], + [ + 52.5266223, + 13.4873202 + ], + [ + 52.5266015, + 13.4883591 + ], + [ + 52.5265903, + 13.488728 + ], + [ + 52.5265732, + 13.4894787 + ], + [ + 52.526562, + 13.4899552 + ], + [ + 52.5265467, + 13.4906081 + ], + [ + 52.5265396, + 13.4909515 + ], + [ + 52.526532, + 13.4913192 + ] + ] + }, + { + "osmId": "170788431", + "name": null, + "lengthMeters": 182.46031476135659, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5383237, + 13.5151123 + ], + [ + 52.5375992, + 13.5156484 + ], + [ + 52.5368347, + 13.5162456 + ] + ] + }, + { + "osmId": "170794474", + "name": null, + "lengthMeters": 96.36994994779694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4609995, + 13.5843986 + ], + [ + 52.4610253, + 13.5843915 + ], + [ + 52.4610335, + 13.5843888 + ], + [ + 52.461054, + 13.5843821 + ], + [ + 52.4610843, + 13.5843723 + ], + [ + 52.4611267, + 13.5843552 + ], + [ + 52.4611719, + 13.5843359 + ], + [ + 52.4612144, + 13.5843131 + ], + [ + 52.4613821, + 13.5842147 + ], + [ + 52.4615065, + 13.5841417 + ], + [ + 52.4615785, + 13.5840982 + ], + [ + 52.4617512, + 13.5839987 + ], + [ + 52.4617903, + 13.5839739 + ], + [ + 52.4618209, + 13.5839519 + ] + ] + }, + { + "osmId": "170799109", + "name": null, + "lengthMeters": 504.1012156233566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3950511, + 13.6313301 + ], + [ + 52.3948536, + 13.6314867 + ], + [ + 52.3946908, + 13.6316593 + ], + [ + 52.3943456, + 13.6320251 + ], + [ + 52.3943228, + 13.6320508 + ], + [ + 52.3940666, + 13.6323395 + ], + [ + 52.393719, + 13.6327313 + ], + [ + 52.3926069, + 13.6339565 + ], + [ + 52.3923172, + 13.634243 + ], + [ + 52.3920765, + 13.6344399 + ], + [ + 52.3918843, + 13.6345707 + ], + [ + 52.3916321, + 13.6347122 + ], + [ + 52.3911239, + 13.6349375 + ] + ] + }, + { + "osmId": "170869849", + "name": null, + "lengthMeters": 79.56473762285938, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102711, + 13.2858065 + ], + [ + 52.5102053, + 13.2846358 + ] + ] + }, + { + "osmId": "170869850", + "name": null, + "lengthMeters": 740.0634322716437, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112457, + 13.3227765 + ], + [ + 52.5094089, + 13.3253673 + ], + [ + 52.5093157, + 13.3255054 + ], + [ + 52.5092003, + 13.3256891 + ], + [ + 52.5090896, + 13.3258822 + ], + [ + 52.5089634, + 13.3261298 + ], + [ + 52.5087388, + 13.32659 + ], + [ + 52.5084641, + 13.3272081 + ], + [ + 52.5067973, + 13.3308342 + ] + ] + }, + { + "osmId": "170983745", + "name": null, + "lengthMeters": 75.06582140188242, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259734, + 13.5189114 + ], + [ + 52.5259531, + 13.5190513 + ], + [ + 52.5259467, + 13.5190946 + ], + [ + 52.5259161, + 13.5192009 + ], + [ + 52.52588, + 13.5192934 + ], + [ + 52.5258541, + 13.5193412 + ], + [ + 52.5258229, + 13.5193922 + ], + [ + 52.5257967, + 13.5194251 + ], + [ + 52.5257645, + 13.519464 + ], + [ + 52.5257292, + 13.5194994 + ], + [ + 52.5256916, + 13.5195219 + ], + [ + 52.5256705, + 13.5195354 + ], + [ + 52.5256371, + 13.5195518 + ], + [ + 52.5255958, + 13.5195603 + ], + [ + 52.5255108, + 13.5195782 + ] + ] + }, + { + "osmId": "170983754", + "name": null, + "lengthMeters": 88.33042762435598, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259734, + 13.5189114 + ], + [ + 52.5259689, + 13.5189831 + ], + [ + 52.5259646, + 13.5190525 + ], + [ + 52.525955, + 13.5192054 + ], + [ + 52.5259507, + 13.519274 + ], + [ + 52.5259442, + 13.5193767 + ], + [ + 52.5259341, + 13.5195387 + ], + [ + 52.5259308, + 13.519591 + ], + [ + 52.5259197, + 13.5197689 + ], + [ + 52.5259147, + 13.5198474 + ], + [ + 52.5259028, + 13.5200371 + ], + [ + 52.525892, + 13.5202102 + ] + ] + }, + { + "osmId": "170983755", + "name": null, + "lengthMeters": 89.52755473017253, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263148, + 13.5195119 + ], + [ + 52.5262764, + 13.5195176 + ], + [ + 52.5262249, + 13.5195179 + ], + [ + 52.5261693, + 13.5195207 + ], + [ + 52.5261093, + 13.5195235 + ], + [ + 52.5260456, + 13.5195288 + ], + [ + 52.5259641, + 13.5195362 + ], + [ + 52.5259341, + 13.5195387 + ], + [ + 52.52585, + 13.5195466 + ], + [ + 52.5257963, + 13.5195512 + ], + [ + 52.525726, + 13.5195582 + ], + [ + 52.5256925, + 13.5195603 + ], + [ + 52.5255108, + 13.5195782 + ] + ] + }, + { + "osmId": "170983756", + "name": null, + "lengthMeters": 149.97288060029894, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525892, + 13.5202102 + ], + [ + 52.5258484, + 13.5209374 + ], + [ + 52.5258353, + 13.5211177 + ], + [ + 52.5258125, + 13.5215295 + ], + [ + 52.5257962, + 13.5218236 + ], + [ + 52.5257846, + 13.5220119 + ], + [ + 52.5257616, + 13.5224166 + ] + ] + }, + { + "osmId": "171028931", + "name": null, + "lengthMeters": 499.46255318425904, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5818061, + 13.4286019 + ], + [ + 52.5817091, + 13.4286169 + ], + [ + 52.5815915, + 13.428635 + ], + [ + 52.5815005, + 13.4286429 + ], + [ + 52.5813196, + 13.4286507 + ], + [ + 52.5811079, + 13.4286404 + ], + [ + 52.5804792, + 13.4286219 + ], + [ + 52.5788878, + 13.4286375 + ], + [ + 52.5786981, + 13.4286392 + ], + [ + 52.5785996, + 13.4286352 + ], + [ + 52.5785055, + 13.4286212 + ], + [ + 52.5784397, + 13.4286106 + ], + [ + 52.5783895, + 13.428598 + ], + [ + 52.578259, + 13.4285526 + ], + [ + 52.5781527, + 13.4284931 + ], + [ + 52.578098, + 13.4284605 + ], + [ + 52.5780506, + 13.4284196 + ], + [ + 52.577983, + 13.4283632 + ], + [ + 52.5779167, + 13.4282989 + ], + [ + 52.57782, + 13.4281912 + ], + [ + 52.5775166, + 13.427839 + ], + [ + 52.5774544, + 13.427772 + ] + ] + }, + { + "osmId": "171028932", + "name": null, + "lengthMeters": 895.7119049688953, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5904683, + 13.4307326 + ], + [ + 52.5898783, + 13.4305316 + ], + [ + 52.589849, + 13.430521 + ], + [ + 52.5898176, + 13.4305095 + ], + [ + 52.5897871, + 13.4304984 + ], + [ + 52.5897014, + 13.4304672 + ], + [ + 52.589266, + 13.4303202 + ], + [ + 52.5891589, + 13.430282 + ], + [ + 52.589003, + 13.4302279 + ], + [ + 52.5888557, + 13.4301754 + ], + [ + 52.5886679, + 13.4301112 + ], + [ + 52.588613, + 13.4300924 + ], + [ + 52.588537, + 13.4300665 + ], + [ + 52.5884484, + 13.4300362 + ], + [ + 52.5874619, + 13.4296968 + ], + [ + 52.587115, + 13.4295721 + ], + [ + 52.5865169, + 13.4293683 + ], + [ + 52.5858161, + 13.4291259 + ], + [ + 52.5855355, + 13.4290356 + ], + [ + 52.5851776, + 13.4289064 + ], + [ + 52.585107, + 13.4288831 + ], + [ + 52.5850586, + 13.4288655 + ], + [ + 52.5849535, + 13.4288295 + ], + [ + 52.5847106, + 13.4287446 + ], + [ + 52.5842863, + 13.4285996 + ], + [ + 52.584195, + 13.4285711 + ], + [ + 52.5840659, + 13.4285328 + ], + [ + 52.5839691, + 13.4285084 + ], + [ + 52.5838796, + 13.428487 + ], + [ + 52.5836918, + 13.4284526 + ], + [ + 52.5835425, + 13.4284298 + ], + [ + 52.5833958, + 13.4284143 + ], + [ + 52.5832455, + 13.4284063 + ], + [ + 52.5830977, + 13.4284096 + ], + [ + 52.5829271, + 13.4284244 + ], + [ + 52.582557, + 13.4284768 + ] + ] + }, + { + "osmId": "171028935", + "name": null, + "lengthMeters": 286.4516928527488, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5760621, + 13.4244108 + ], + [ + 52.5760854, + 13.4245231 + ], + [ + 52.5761572, + 13.424869 + ], + [ + 52.576301, + 13.425579 + ], + [ + 52.5763449, + 13.4257954 + ], + [ + 52.576354, + 13.4258388 + ], + [ + 52.5763998, + 13.4260586 + ], + [ + 52.5764288, + 13.4261964 + ], + [ + 52.5765359, + 13.4265434 + ], + [ + 52.5766252, + 13.4267434 + ], + [ + 52.576721, + 13.4269169 + ], + [ + 52.5767637, + 13.4269924 + ], + [ + 52.576812, + 13.4270573 + ], + [ + 52.5771476, + 13.4274587 + ], + [ + 52.5772574, + 13.4275943 + ], + [ + 52.5774406, + 13.4278056 + ] + ] + }, + { + "osmId": "171063991", + "name": null, + "lengthMeters": 1279.9480491733589, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5802944, + 13.3995734 + ], + [ + 52.5803011, + 13.3996103 + ], + [ + 52.5803071, + 13.39965 + ], + [ + 52.5803146, + 13.3997073 + ], + [ + 52.5803208, + 13.3997645 + ], + [ + 52.5803381, + 13.3999524 + ], + [ + 52.5804106, + 13.4006773 + ], + [ + 52.5804393, + 13.4009603 + ], + [ + 52.5804472, + 13.4010488 + ], + [ + 52.5804716, + 13.4012665 + ], + [ + 52.580478, + 13.4013285 + ], + [ + 52.580498, + 13.4014401 + ], + [ + 52.5805411, + 13.4016846 + ], + [ + 52.5806125, + 13.4020889 + ], + [ + 52.5806731, + 13.4024289 + ], + [ + 52.5807451, + 13.4028327 + ], + [ + 52.580921, + 13.4038323 + ], + [ + 52.5809353, + 13.4039 + ], + [ + 52.5809617, + 13.4039763 + ], + [ + 52.5809925, + 13.4040489 + ], + [ + 52.5810261, + 13.4041028 + ], + [ + 52.5810662, + 13.4041487 + ], + [ + 52.5810782, + 13.4041579 + ], + [ + 52.5811109, + 13.4041832 + ], + [ + 52.5811574, + 13.4042029 + ], + [ + 52.5812592, + 13.4042142 + ], + [ + 52.5813653, + 13.4042299 + ], + [ + 52.5814643, + 13.4042445 + ], + [ + 52.5814853, + 13.4042438 + ], + [ + 52.5815601, + 13.4042415 + ], + [ + 52.581616, + 13.4042322 + ], + [ + 52.5817352, + 13.4041854 + ], + [ + 52.581796, + 13.4041596 + ], + [ + 52.5818522, + 13.4041232 + ], + [ + 52.5820389, + 13.4040129 + ], + [ + 52.582312, + 13.4038517 + ], + [ + 52.5826708, + 13.403647 + ], + [ + 52.5829284, + 13.4035 + ], + [ + 52.5829533, + 13.4034864 + ], + [ + 52.5832188, + 13.4033414 + ], + [ + 52.583346, + 13.4032846 + ], + [ + 52.5833547, + 13.4032807 + ], + [ + 52.5834865, + 13.4032192 + ], + [ + 52.5836046, + 13.403169 + ], + [ + 52.5842659, + 13.4029493 + ], + [ + 52.5845201, + 13.4028649 + ], + [ + 52.5852183, + 13.4027176 + ], + [ + 52.5854089, + 13.4026839 + ], + [ + 52.5854901, + 13.4026701 + ], + [ + 52.5855748, + 13.4026569 + ], + [ + 52.5856514, + 13.4026369 + ], + [ + 52.5856808, + 13.4026304 + ], + [ + 52.5859075, + 13.4025682 + ], + [ + 52.5860867, + 13.4025121 + ], + [ + 52.5862162, + 13.4024567 + ], + [ + 52.5862613, + 13.4024302 + ], + [ + 52.5863521, + 13.402365 + ], + [ + 52.5864371, + 13.4022903 + ], + [ + 52.5866469, + 13.4020702 + ], + [ + 52.586728, + 13.4019981 + ], + [ + 52.5867988, + 13.4019374 + ], + [ + 52.5868549, + 13.401896 + ], + [ + 52.5869253, + 13.4018514 + ], + [ + 52.5870048, + 13.4018223 + ], + [ + 52.5870963, + 13.4018039 + ], + [ + 52.5872257, + 13.4017936 + ], + [ + 52.5873364, + 13.4017905 + ], + [ + 52.5874544, + 13.4017863 + ], + [ + 52.5875526, + 13.4017828 + ], + [ + 52.5885534, + 13.4017412 + ], + [ + 52.5889103, + 13.4017312 + ], + [ + 52.589419, + 13.4017176 + ] + ] + }, + { + "osmId": "171091369", + "name": null, + "lengthMeters": 970.2937619166765, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4683577, + 13.6833157 + ], + [ + 52.4692123, + 13.6851024 + ], + [ + 52.4698331, + 13.6864027 + ], + [ + 52.4706765, + 13.688163 + ], + [ + 52.470862, + 13.6885591 + ], + [ + 52.4714834, + 13.6898554 + ], + [ + 52.4716201, + 13.6901233 + ], + [ + 52.4716709, + 13.690206 + ], + [ + 52.4717485, + 13.690284 + ], + [ + 52.4729429, + 13.6911097 + ], + [ + 52.4729887, + 13.6911413 + ], + [ + 52.4746195, + 13.692254 + ], + [ + 52.4746351, + 13.6922653 + ], + [ + 52.4747801, + 13.6923691 + ] + ] + }, + { + "osmId": "171096006", + "name": null, + "lengthMeters": 263.3461003337736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5694363, + 13.4035824 + ], + [ + 52.5694201, + 13.4034869 + ], + [ + 52.5694068, + 13.4034049 + ], + [ + 52.569403, + 13.403379 + ], + [ + 52.5693562, + 13.4030524 + ], + [ + 52.5693539, + 13.403037 + ], + [ + 52.5693055, + 13.4026733 + ], + [ + 52.5692678, + 13.4023901 + ], + [ + 52.5692382, + 13.4021604 + ], + [ + 52.5692256, + 13.4020052 + ], + [ + 52.5692184, + 13.4018658 + ], + [ + 52.5692186, + 13.4017002 + ], + [ + 52.5692249, + 13.4016381 + ], + [ + 52.5692312, + 13.40159 + ], + [ + 52.5692377, + 13.4015515 + ], + [ + 52.5692462, + 13.401508 + ], + [ + 52.5692566, + 13.4014645 + ], + [ + 52.5692612, + 13.4014495 + ], + [ + 52.5692697, + 13.4014211 + ], + [ + 52.5692845, + 13.4013803 + ], + [ + 52.5693023, + 13.4013371 + ], + [ + 52.5693245, + 13.4012881 + ], + [ + 52.5693828, + 13.4011719 + ], + [ + 52.5695192, + 13.4009147 + ], + [ + 52.5696544, + 13.4006605 + ], + [ + 52.5697894, + 13.4004066 + ], + [ + 52.5699282, + 13.4001356 + ] + ] + }, + { + "osmId": "171100960", + "name": null, + "lengthMeters": 1277.2496725858725, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5894183, + 13.4016724 + ], + [ + 52.5889114, + 13.4016869 + ], + [ + 52.5885531, + 13.4017001 + ], + [ + 52.5875177, + 13.4017289 + ], + [ + 52.5874536, + 13.4017299 + ], + [ + 52.587332, + 13.4017318 + ], + [ + 52.5870828, + 13.4017536 + ], + [ + 52.587039, + 13.401763 + ], + [ + 52.5869674, + 13.4017814 + ], + [ + 52.5869172, + 13.4018041 + ], + [ + 52.5868441, + 13.40185 + ], + [ + 52.5867888, + 13.4018935 + ], + [ + 52.5867213, + 13.4019506 + ], + [ + 52.5865285, + 13.4021498 + ], + [ + 52.5864304, + 13.4022474 + ], + [ + 52.586379, + 13.4022988 + ], + [ + 52.5863031, + 13.4023583 + ], + [ + 52.5862273, + 13.4024081 + ], + [ + 52.5861349, + 13.402453 + ], + [ + 52.5860124, + 13.4024998 + ], + [ + 52.5859219, + 13.4025281 + ], + [ + 52.5857598, + 13.402575 + ], + [ + 52.5856517, + 13.4025975 + ], + [ + 52.5856107, + 13.4026076 + ], + [ + 52.5854062, + 13.4026433 + ], + [ + 52.5853649, + 13.4026505 + ], + [ + 52.5853036, + 13.4026597 + ], + [ + 52.5851806, + 13.4026809 + ], + [ + 52.5850803, + 13.4027008 + ], + [ + 52.5848037, + 13.4027576 + ], + [ + 52.5846662, + 13.4027855 + ], + [ + 52.5845238, + 13.4028132 + ], + [ + 52.5845119, + 13.4028155 + ], + [ + 52.5843444, + 13.4028573 + ], + [ + 52.5841951, + 13.4029072 + ], + [ + 52.5840207, + 13.4029654 + ], + [ + 52.5838007, + 13.4030525 + ], + [ + 52.583446, + 13.4031876 + ], + [ + 52.5832015, + 13.403297 + ], + [ + 52.5829855, + 13.403422 + ], + [ + 52.5829609, + 13.4034363 + ], + [ + 52.5822993, + 13.4038021 + ], + [ + 52.5822046, + 13.40386 + ], + [ + 52.5819528, + 13.4040138 + ], + [ + 52.5818068, + 13.4041078 + ], + [ + 52.5817257, + 13.4041525 + ], + [ + 52.5816516, + 13.4041779 + ], + [ + 52.5816123, + 13.4041911 + ], + [ + 52.5815354, + 13.4042015 + ], + [ + 52.5814626, + 13.4042016 + ], + [ + 52.5813664, + 13.4041923 + ], + [ + 52.5813038, + 13.4041863 + ], + [ + 52.5812342, + 13.4041826 + ], + [ + 52.5811683, + 13.4041676 + ], + [ + 52.5811254, + 13.4041482 + ], + [ + 52.5810857, + 13.4041094 + ], + [ + 52.5810563, + 13.4040805 + ], + [ + 52.5810368, + 13.4040557 + ], + [ + 52.581013, + 13.4040191 + ], + [ + 52.5809864, + 13.4039638 + ], + [ + 52.5809698, + 13.4039177 + ], + [ + 52.580947, + 13.4038383 + ], + [ + 52.5809309, + 13.4037482 + ], + [ + 52.5808504, + 13.4032828 + ], + [ + 52.5807962, + 13.4029914 + ], + [ + 52.5807639, + 13.4028068 + ], + [ + 52.5807029, + 13.4024394 + ], + [ + 52.5806976, + 13.4024072 + ], + [ + 52.580669, + 13.4022349 + ], + [ + 52.5806543, + 13.4021535 + ], + [ + 52.580621, + 13.4019692 + ], + [ + 52.5805723, + 13.4016929 + ], + [ + 52.5805357, + 13.401477 + ], + [ + 52.5805216, + 13.4014002 + ], + [ + 52.5805068, + 13.4013183 + ], + [ + 52.580492, + 13.4012147 + ], + [ + 52.5804794, + 13.4010921 + ], + [ + 52.5804648, + 13.4009509 + ], + [ + 52.5804575, + 13.4008914 + ], + [ + 52.5804346, + 13.4006716 + ], + [ + 52.5804201, + 13.4005204 + ], + [ + 52.5803935, + 13.4002531 + ], + [ + 52.5803884, + 13.4001987 + ], + [ + 52.5803741, + 13.4000584 + ], + [ + 52.5803591, + 13.3998915 + ], + [ + 52.5803452, + 13.3997537 + ], + [ + 52.5803365, + 13.399669 + ], + [ + 52.5803283, + 13.3996047 + ], + [ + 52.5803193, + 13.3995531 + ] + ] + }, + { + "osmId": "171100966", + "name": null, + "lengthMeters": 155.34785057608485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5792889, + 13.3983404 + ], + [ + 52.5794184, + 13.3983375 + ], + [ + 52.5795112, + 13.3983356 + ], + [ + 52.5795438, + 13.3983348 + ], + [ + 52.5795784, + 13.3983326 + ], + [ + 52.5796103, + 13.3983325 + ], + [ + 52.5796547, + 13.3983356 + ], + [ + 52.5796952, + 13.3983418 + ], + [ + 52.5797278, + 13.3983539 + ], + [ + 52.5797594, + 13.3983718 + ], + [ + 52.5797825, + 13.3983865 + ], + [ + 52.5798022, + 13.3984012 + ], + [ + 52.5798256, + 13.398423 + ], + [ + 52.5798517, + 13.3984495 + ], + [ + 52.5798826, + 13.3984893 + ], + [ + 52.5799021, + 13.3985223 + ], + [ + 52.5799293, + 13.398571 + ], + [ + 52.5799561, + 13.3986276 + ], + [ + 52.5799804, + 13.3986875 + ], + [ + 52.5801774, + 13.3991998 + ], + [ + 52.5802348, + 13.3993448 + ], + [ + 52.5802588, + 13.399423 + ], + [ + 52.5802737, + 13.3994778 + ], + [ + 52.5802849, + 13.3995268 + ], + [ + 52.5802944, + 13.3995734 + ] + ] + }, + { + "osmId": "171173752", + "name": null, + "lengthMeters": 159.8446346433855, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5874946, + 13.3889313 + ], + [ + 52.5878256, + 13.3887424 + ], + [ + 52.5878756, + 13.3887154 + ], + [ + 52.5880694, + 13.3886039 + ], + [ + 52.5882836, + 13.3884889 + ], + [ + 52.5884257, + 13.3884071 + ], + [ + 52.5887072, + 13.3882501 + ], + [ + 52.5887901, + 13.3882061 + ], + [ + 52.5888117, + 13.3881946 + ], + [ + 52.5888553, + 13.3881685 + ] + ] + }, + { + "osmId": "171173754", + "name": null, + "lengthMeters": 527.0736977878739, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5888419, + 13.3881128 + ], + [ + 52.5887906, + 13.3881399 + ], + [ + 52.5887773, + 13.3881475 + ], + [ + 52.5885337, + 13.3882869 + ], + [ + 52.5884204, + 13.3883508 + ], + [ + 52.5883397, + 13.3883986 + ], + [ + 52.5882578, + 13.3884487 + ], + [ + 52.5881811, + 13.3884959 + ], + [ + 52.5880836, + 13.3885513 + ], + [ + 52.5875915, + 13.3888336 + ], + [ + 52.5874846, + 13.3888915 + ], + [ + 52.5870977, + 13.3891166 + ], + [ + 52.5866359, + 13.3893792 + ], + [ + 52.5862101, + 13.3896182 + ], + [ + 52.5861221, + 13.3896692 + ], + [ + 52.5860398, + 13.3897142 + ], + [ + 52.5856712, + 13.389927 + ], + [ + 52.5853198, + 13.3901125 + ], + [ + 52.5852617, + 13.3901431 + ], + [ + 52.5851797, + 13.3901847 + ], + [ + 52.584898, + 13.3903438 + ], + [ + 52.5844655, + 13.3905845 + ], + [ + 52.5843585, + 13.390644 + ] + ] + }, + { + "osmId": "171174709", + "name": null, + "lengthMeters": 121.88985113039928, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5940258, + 13.3815415 + ], + [ + 52.5941804, + 13.3813415 + ], + [ + 52.5945425, + 13.3808669 + ], + [ + 52.5946618, + 13.3807126 + ], + [ + 52.5946924, + 13.3806745 + ], + [ + 52.5948478, + 13.3804708 + ], + [ + 52.5948859, + 13.3804228 + ] + ] + }, + { + "osmId": "171174711", + "name": null, + "lengthMeters": 93.20175424158916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.580539, + 13.3961426 + ], + [ + 52.5805222, + 13.3961864 + ], + [ + 52.5805065, + 13.3962249 + ], + [ + 52.5804838, + 13.3962762 + ], + [ + 52.5804483, + 13.3963567 + ], + [ + 52.5800908, + 13.3971487 + ], + [ + 52.5800439, + 13.3972554 + ] + ] + }, + { + "osmId": "171174712", + "name": null, + "lengthMeters": 108.5362833880807, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.580539, + 13.3961426 + ], + [ + 52.5804979, + 13.3962709 + ], + [ + 52.5804746, + 13.3963463 + ], + [ + 52.5804632, + 13.3963808 + ], + [ + 52.5804511, + 13.3964149 + ], + [ + 52.5802279, + 13.3969139 + ], + [ + 52.5800524, + 13.3973046 + ], + [ + 52.5800331, + 13.397346 + ], + [ + 52.5800126, + 13.3973856 + ], + [ + 52.5799934, + 13.3974224 + ], + [ + 52.5799768, + 13.3974513 + ] + ] + }, + { + "osmId": "171174714", + "name": null, + "lengthMeters": 130.29998866405631, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5800439, + 13.3972554 + ], + [ + 52.5800123, + 13.3973211 + ], + [ + 52.5799912, + 13.3973624 + ], + [ + 52.5799734, + 13.3973945 + ], + [ + 52.5799548, + 13.3974285 + ], + [ + 52.5799088, + 13.3974964 + ], + [ + 52.5798555, + 13.3975789 + ], + [ + 52.5798099, + 13.3976426 + ], + [ + 52.5796684, + 13.3978373 + ], + [ + 52.5795065, + 13.3980614 + ], + [ + 52.5794528, + 13.3981257 + ], + [ + 52.5794126, + 13.3981671 + ], + [ + 52.5793659, + 13.3982065 + ], + [ + 52.5793329, + 13.3982268 + ], + [ + 52.5793113, + 13.3982389 + ], + [ + 52.5792865, + 13.3982517 + ], + [ + 52.579258, + 13.3982643 + ], + [ + 52.5792356, + 13.3982723 + ], + [ + 52.5792086, + 13.3982789 + ], + [ + 52.5791692, + 13.3982865 + ], + [ + 52.5791466, + 13.3982902 + ], + [ + 52.5791239, + 13.3982932 + ], + [ + 52.5790961, + 13.398297 + ] + ] + }, + { + "osmId": "171206016", + "name": null, + "lengthMeters": 429.41667612611127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5030481, + 13.4737372 + ], + [ + 52.5030752, + 13.4736024 + ], + [ + 52.5030845, + 13.473555 + ], + [ + 52.5031186, + 13.4733817 + ], + [ + 52.5031324, + 13.473314 + ], + [ + 52.5031414, + 13.473273 + ], + [ + 52.5031505, + 13.4732365 + ], + [ + 52.5031619, + 13.4731962 + ], + [ + 52.5031764, + 13.4731531 + ], + [ + 52.5031911, + 13.4731148 + ], + [ + 52.5032115, + 13.4730737 + ], + [ + 52.5032359, + 13.4730306 + ], + [ + 52.5032578, + 13.4729987 + ], + [ + 52.503283, + 13.4729657 + ], + [ + 52.5033075, + 13.4729369 + ], + [ + 52.5033511, + 13.4728928 + ], + [ + 52.503381, + 13.4728665 + ], + [ + 52.5034198, + 13.4728354 + ], + [ + 52.5034492, + 13.4728108 + ], + [ + 52.504131, + 13.4722823 + ], + [ + 52.5042803, + 13.4721482 + ], + [ + 52.5051373, + 13.4713956 + ], + [ + 52.5052466, + 13.4712921 + ], + [ + 52.5056321, + 13.4708959 + ], + [ + 52.5061243, + 13.4704187 + ], + [ + 52.506156, + 13.4703781 + ], + [ + 52.5061883, + 13.4703237 + ] + ] + }, + { + "osmId": "171257542", + "name": null, + "lengthMeters": 1521.3308350265888, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4437704, + 13.6843796 + ], + [ + 52.4443649, + 13.6823121 + ], + [ + 52.4449101, + 13.6804474 + ], + [ + 52.4454227, + 13.6787019 + ], + [ + 52.4456708, + 13.677876 + ], + [ + 52.4458052, + 13.6774213 + ], + [ + 52.4469552, + 13.6735815 + ], + [ + 52.4469919, + 13.6734582 + ], + [ + 52.4475935, + 13.6714431 + ], + [ + 52.4477546, + 13.6708951 + ], + [ + 52.4477724, + 13.6708433 + ], + [ + 52.4482825, + 13.6691409 + ], + [ + 52.4485271, + 13.6683241 + ], + [ + 52.4491853, + 13.6659952 + ], + [ + 52.4495004, + 13.6648002 + ], + [ + 52.4496204, + 13.6641013 + ] + ] + }, + { + "osmId": "171257556", + "name": null, + "lengthMeters": 1886.550093814978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4499951, + 13.6611152 + ], + [ + 52.4501734, + 13.6604688 + ], + [ + 52.4509478, + 13.6576989 + ], + [ + 52.452347, + 13.6526988 + ], + [ + 52.4523986, + 13.6525109 + ], + [ + 52.4531421, + 13.6498559 + ], + [ + 52.4532045, + 13.6496349 + ], + [ + 52.4532715, + 13.6494189 + ], + [ + 52.4533427, + 13.6492072 + ], + [ + 52.4534185, + 13.6490019 + ], + [ + 52.4534949, + 13.6488129 + ], + [ + 52.4535962, + 13.6485897 + ], + [ + 52.4537036, + 13.6483739 + ], + [ + 52.4537804, + 13.648233 + ], + [ + 52.4538603, + 13.6480947 + ], + [ + 52.4540224, + 13.6478305 + ], + [ + 52.4545264, + 13.6470489 + ], + [ + 52.4547493, + 13.6466988 + ], + [ + 52.4548584, + 13.6465224 + ], + [ + 52.4549614, + 13.6463404 + ], + [ + 52.4550576, + 13.6461589 + ], + [ + 52.45515, + 13.6459667 + ], + [ + 52.4553217, + 13.6455747 + ], + [ + 52.4554275, + 13.645311 + ], + [ + 52.4555233, + 13.6450372 + ], + [ + 52.4556135, + 13.6447486 + ], + [ + 52.4556567, + 13.6446021 + ], + [ + 52.4556991, + 13.6444531 + ], + [ + 52.4557794, + 13.6441236 + ], + [ + 52.4558161, + 13.643955 + ], + [ + 52.455852, + 13.6437865 + ], + [ + 52.4559268, + 13.6433872 + ], + [ + 52.45598, + 13.6430292 + ], + [ + 52.4560051, + 13.6428282 + ], + [ + 52.4560274, + 13.6426129 + ], + [ + 52.4561223, + 13.6415532 + ], + [ + 52.4561394, + 13.6413651 + ], + [ + 52.4562118, + 13.6405045 + ], + [ + 52.4562797, + 13.6396404 + ], + [ + 52.4563428, + 13.6387822 + ], + [ + 52.4563965, + 13.6379204 + ], + [ + 52.4564883, + 13.6364681 + ], + [ + 52.4565129, + 13.6360317 + ] + ] + }, + { + "osmId": "171257586", + "name": null, + "lengthMeters": 190.2417951683722, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.447647, + 13.6386024 + ], + [ + 52.4476456, + 13.6386634 + ], + [ + 52.4476418, + 13.6388371 + ], + [ + 52.4476405, + 13.6388936 + ], + [ + 52.447639, + 13.638961 + ], + [ + 52.4476374, + 13.639032 + ], + [ + 52.4476358, + 13.6391065 + ], + [ + 52.4476315, + 13.6392984 + ], + [ + 52.4476304, + 13.6393465 + ], + [ + 52.4476287, + 13.6394204 + ], + [ + 52.4476236, + 13.6396077 + ], + [ + 52.4476213, + 13.6400245 + ], + [ + 52.4476212, + 13.640065 + ], + [ + 52.4476215, + 13.6401683 + ], + [ + 52.4476237, + 13.6402551 + ], + [ + 52.4476408, + 13.6402943 + ], + [ + 52.4476447, + 13.6403031 + ], + [ + 52.4476657, + 13.6403572 + ], + [ + 52.4476755, + 13.6403702 + ], + [ + 52.4476836, + 13.640381 + ], + [ + 52.4477057, + 13.6404104 + ], + [ + 52.4477286, + 13.6404292 + ], + [ + 52.4477773, + 13.6404511 + ], + [ + 52.4478515, + 13.6404525 + ], + [ + 52.4480436, + 13.6404457 + ], + [ + 52.4482775, + 13.6404328 + ] + ] + }, + { + "osmId": "171257621", + "name": null, + "lengthMeters": 208.8167530924387, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4496204, + 13.6641013 + ], + [ + 52.4496376, + 13.663847 + ], + [ + 52.4496666, + 13.6629783 + ], + [ + 52.4496676, + 13.6629318 + ], + [ + 52.4496759, + 13.6627734 + ], + [ + 52.4496879, + 13.6625931 + ], + [ + 52.4497045, + 13.6624403 + ], + [ + 52.449711, + 13.6623801 + ], + [ + 52.4497177, + 13.6623297 + ], + [ + 52.449735, + 13.6622052 + ], + [ + 52.449756, + 13.662076 + ], + [ + 52.4497786, + 13.6619494 + ], + [ + 52.4497995, + 13.661847 + ], + [ + 52.4498227, + 13.6617449 + ], + [ + 52.4498486, + 13.6616438 + ], + [ + 52.4498763, + 13.6615435 + ], + [ + 52.4499951, + 13.6611152 + ] + ] + }, + { + "osmId": "171257624", + "name": null, + "lengthMeters": 445.71437404685275, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4567187, + 13.6316516 + ], + [ + 52.4567302, + 13.6313564 + ], + [ + 52.4567437, + 13.6311046 + ], + [ + 52.4567585, + 13.6306381 + ], + [ + 52.4567774, + 13.6300417 + ], + [ + 52.4567981, + 13.6293907 + ], + [ + 52.4568084, + 13.629065 + ], + [ + 52.4568605, + 13.6273566 + ], + [ + 52.4568662, + 13.6271709 + ], + [ + 52.4568776, + 13.6267982 + ], + [ + 52.4568844, + 13.6265734 + ], + [ + 52.4568972, + 13.6261659 + ], + [ + 52.4569013, + 13.6260349 + ], + [ + 52.4569012, + 13.6259272 + ], + [ + 52.4568995, + 13.625868 + ], + [ + 52.4568944, + 13.6258082 + ], + [ + 52.4568877, + 13.6257517 + ], + [ + 52.4568787, + 13.6257132 + ], + [ + 52.4568646, + 13.6256615 + ], + [ + 52.4568457, + 13.6256126 + ], + [ + 52.4568103, + 13.6255386 + ], + [ + 52.4567672, + 13.6254813 + ], + [ + 52.4567423, + 13.6254582 + ], + [ + 52.4567129, + 13.6254441 + ], + [ + 52.4566869, + 13.6254282 + ], + [ + 52.4566538, + 13.6254122 + ], + [ + 52.456613, + 13.6254013 + ], + [ + 52.4565768, + 13.6253916 + ] + ] + }, + { + "osmId": "171419641", + "name": null, + "lengthMeters": 260.2207812026385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4166375, + 13.5883166 + ], + [ + 52.4165105, + 13.5883623 + ], + [ + 52.4163218, + 13.5884253 + ], + [ + 52.4163017, + 13.5884537 + ], + [ + 52.4162616, + 13.5885103 + ], + [ + 52.4162296, + 13.5886243 + ], + [ + 52.4162172, + 13.5887158 + ], + [ + 52.4162134, + 13.5887897 + ], + [ + 52.4162516, + 13.589093 + ], + [ + 52.4162878, + 13.5893973 + ], + [ + 52.4163054, + 13.589451 + ], + [ + 52.4163386, + 13.5895261 + ], + [ + 52.4163991, + 13.5895862 + ], + [ + 52.4164744, + 13.5896289 + ], + [ + 52.4165124, + 13.5896327 + ], + [ + 52.4175928, + 13.5893025 + ] + ] + }, + { + "osmId": "171512138", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 4911.175685150555, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0356484, + 11.5759832 + ], + [ + 48.0390896, + 11.5743593 + ], + [ + 48.0404616, + 11.5737118 + ], + [ + 48.041711, + 11.5731221 + ], + [ + 48.0425195, + 11.5727405 + ], + [ + 48.0438866, + 11.5720954 + ], + [ + 48.0456105, + 11.5712817 + ], + [ + 48.045945, + 11.5711231 + ], + [ + 48.0473143, + 11.5704737 + ], + [ + 48.0481479, + 11.5700784 + ], + [ + 48.0493748, + 11.5694966 + ], + [ + 48.0503197, + 11.5690486 + ], + [ + 48.0507402, + 11.5688492 + ], + [ + 48.0513425, + 11.5685636 + ], + [ + 48.0523951, + 11.568074 + ], + [ + 48.0528041, + 11.5678806 + ], + [ + 48.0541705, + 11.5672344 + ], + [ + 48.0562302, + 11.5662604 + ], + [ + 48.057601, + 11.5656121 + ], + [ + 48.0595702, + 11.5646808 + ], + [ + 48.0609038, + 11.56405 + ], + [ + 48.0629609, + 11.5630771 + ], + [ + 48.0637759, + 11.5626916 + ], + [ + 48.0643294, + 11.5624319 + ], + [ + 48.0643662, + 11.5624146 + ], + [ + 48.0656264, + 11.5617978 + ], + [ + 48.0663675, + 11.5613807 + ], + [ + 48.0668968, + 11.561045 + ], + [ + 48.0673675, + 11.560737 + ], + [ + 48.0676819, + 11.5605066 + ], + [ + 48.0678439, + 11.5603879 + ], + [ + 48.0682564, + 11.5600718 + ], + [ + 48.0688576, + 11.5595671 + ], + [ + 48.0694146, + 11.5590461 + ], + [ + 48.0695536, + 11.5589117 + ], + [ + 48.0700379, + 11.5584304 + ], + [ + 48.0705544, + 11.5578515 + ], + [ + 48.0707236, + 11.5576573 + ], + [ + 48.0708571, + 11.557504 + ], + [ + 48.0713233, + 11.5569158 + ], + [ + 48.0717491, + 11.5563278 + ], + [ + 48.0721116, + 11.555752 + ], + [ + 48.0724069, + 11.5552638 + ], + [ + 48.0726602, + 11.5548063 + ], + [ + 48.0728421, + 11.5544498 + ], + [ + 48.0731998, + 11.5536557 + ], + [ + 48.0732553, + 11.5535229 + ], + [ + 48.0733677, + 11.5532539 + ], + [ + 48.0735258, + 11.5528533 + ], + [ + 48.0736207, + 11.5525968 + ], + [ + 48.0737133, + 11.5523392 + ], + [ + 48.0738009, + 11.5520751 + ], + [ + 48.0738862, + 11.5518142 + ], + [ + 48.0739972, + 11.5514421 + ], + [ + 48.0741166, + 11.5510192 + ], + [ + 48.0741833, + 11.5507652 + ], + [ + 48.0742478, + 11.5505129 + ], + [ + 48.0743267, + 11.5501719 + ], + [ + 48.0743765, + 11.5499297 + ], + [ + 48.0744318, + 11.5496611 + ], + [ + 48.0745094, + 11.5492483 + ] + ] + }, + { + "osmId": "171582412", + "name": null, + "lengthMeters": 122.19108058506973, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5948859, + 13.3804228 + ], + [ + 52.5948441, + 13.380468 + ], + [ + 52.594816, + 13.3804979 + ], + [ + 52.5947911, + 13.3805221 + ], + [ + 52.5947598, + 13.3805511 + ], + [ + 52.5947123, + 13.3806011 + ], + [ + 52.594676, + 13.3806438 + ], + [ + 52.5945274, + 13.3808365 + ], + [ + 52.5943801, + 13.3810259 + ], + [ + 52.5942445, + 13.3812017 + ], + [ + 52.594206, + 13.3812542 + ], + [ + 52.5941675, + 13.3813139 + ], + [ + 52.5941423, + 13.3813568 + ], + [ + 52.5940958, + 13.3814346 + ], + [ + 52.5940258, + 13.3815415 + ] + ] + }, + { + "osmId": "171582413", + "name": null, + "lengthMeters": 192.62900967569445, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5898598, + 13.3870047 + ], + [ + 52.590116, + 13.3865436 + ], + [ + 52.5902939, + 13.3862501 + ], + [ + 52.5904667, + 13.3859643 + ], + [ + 52.5906343, + 13.3856942 + ], + [ + 52.5909924, + 13.385143 + ], + [ + 52.5910393, + 13.3850647 + ], + [ + 52.5910839, + 13.3849885 + ] + ] + }, + { + "osmId": "171582415", + "name": null, + "lengthMeters": 82.70602182478687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5843585, + 13.390644 + ], + [ + 52.584303, + 13.3906777 + ], + [ + 52.5839704, + 13.3908794 + ], + [ + 52.5839152, + 13.390916 + ], + [ + 52.5838868, + 13.3909352 + ], + [ + 52.5838477, + 13.390964 + ], + [ + 52.5838239, + 13.3909837 + ], + [ + 52.5837904, + 13.39101 + ], + [ + 52.5837883, + 13.3910117 + ], + [ + 52.5837553, + 13.3910363 + ], + [ + 52.5836698, + 13.3911037 + ] + ] + }, + { + "osmId": "171582540", + "name": null, + "lengthMeters": 428.82534529322476, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5948859, + 13.3804228 + ], + [ + 52.594934, + 13.3803602 + ], + [ + 52.595301, + 13.3798703 + ], + [ + 52.595515, + 13.3795483 + ], + [ + 52.5956544, + 13.379327 + ], + [ + 52.5957602, + 13.3791549 + ], + [ + 52.5958875, + 13.3789267 + ], + [ + 52.5959771, + 13.3787638 + ], + [ + 52.5960648, + 13.3786012 + ], + [ + 52.5961273, + 13.3784781 + ], + [ + 52.596192, + 13.3783488 + ], + [ + 52.5962791, + 13.3781654 + ], + [ + 52.5963529, + 13.3780072 + ], + [ + 52.5964238, + 13.3778518 + ], + [ + 52.5964672, + 13.377752 + ], + [ + 52.5965545, + 13.3775491 + ], + [ + 52.5967042, + 13.3771838 + ], + [ + 52.5968269, + 13.3768674 + ], + [ + 52.5968467, + 13.3768132 + ], + [ + 52.5970074, + 13.3763918 + ], + [ + 52.5971028, + 13.3761448 + ], + [ + 52.5971099, + 13.3761232 + ], + [ + 52.5971249, + 13.3760759 + ], + [ + 52.5971359, + 13.3760332 + ], + [ + 52.5971455, + 13.3759915 + ], + [ + 52.5971548, + 13.3759443 + ], + [ + 52.5971626, + 13.375895 + ], + [ + 52.5971658, + 13.3758634 + ], + [ + 52.5971693, + 13.3758242 + ], + [ + 52.5971722, + 13.3757384 + ], + [ + 52.597174, + 13.3756414 + ], + [ + 52.5971744, + 13.3756209 + ], + [ + 52.5971762, + 13.375548 + ], + [ + 52.597178, + 13.375479 + ] + ] + }, + { + "osmId": "171603012", + "name": null, + "lengthMeters": 865.0655032185856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4539541, + 13.7403705 + ], + [ + 52.4539082, + 13.7405722 + ], + [ + 52.4538153, + 13.7410114 + ], + [ + 52.4538008, + 13.7410746 + ], + [ + 52.4535092, + 13.7423107 + ], + [ + 52.4534004, + 13.7427789 + ], + [ + 52.4532233, + 13.7435584 + ], + [ + 52.4530562, + 13.7442783 + ], + [ + 52.4529807, + 13.7446004 + ], + [ + 52.452546, + 13.7464609 + ], + [ + 52.4523276, + 13.7473583 + ], + [ + 52.4522983, + 13.7474701 + ], + [ + 52.4522678, + 13.7475821 + ], + [ + 52.4522395, + 13.7476807 + ], + [ + 52.4522092, + 13.7477834 + ], + [ + 52.4521355, + 13.7480222 + ], + [ + 52.4520694, + 13.7482276 + ], + [ + 52.4520197, + 13.7483719 + ], + [ + 52.4515149, + 13.7498386 + ], + [ + 52.4509643, + 13.75147 + ], + [ + 52.4507841, + 13.7519953 + ] + ] + }, + { + "osmId": "171603014", + "name": null, + "lengthMeters": 737.8011234516736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4501323, + 13.7541546 + ], + [ + 52.4501084, + 13.7542716 + ], + [ + 52.4500935, + 13.7543445 + ], + [ + 52.4499974, + 13.7548145 + ], + [ + 52.449969, + 13.7549533 + ], + [ + 52.4499532, + 13.7550358 + ], + [ + 52.4499405, + 13.7551036 + ], + [ + 52.4499333, + 13.7551519 + ], + [ + 52.4499265, + 13.7552015 + ], + [ + 52.4499217, + 13.755254 + ], + [ + 52.4499178, + 13.7553044 + ], + [ + 52.4499151, + 13.755351 + ], + [ + 52.4499137, + 13.755401 + ], + [ + 52.4499136, + 13.7554519 + ], + [ + 52.4499147, + 13.7554977 + ], + [ + 52.4499169, + 13.75555 + ], + [ + 52.4499202, + 13.7555964 + ], + [ + 52.4499257, + 13.7556463 + ], + [ + 52.449932, + 13.755695 + ], + [ + 52.4499435, + 13.7557703 + ], + [ + 52.4499562, + 13.7558497 + ], + [ + 52.4499839, + 13.7560203 + ], + [ + 52.4500619, + 13.7564823 + ], + [ + 52.4500858, + 13.7566232 + ], + [ + 52.4500916, + 13.7566577 + ], + [ + 52.4501171, + 13.7568028 + ], + [ + 52.4501353, + 13.7569232 + ], + [ + 52.450143, + 13.7569697 + ], + [ + 52.4502017, + 13.7573202 + ], + [ + 52.4502542, + 13.757633 + ], + [ + 52.4502677, + 13.7577203 + ], + [ + 52.4502737, + 13.757766 + ], + [ + 52.4502767, + 13.757804 + ], + [ + 52.4502786, + 13.7578564 + ], + [ + 52.4502782, + 13.7579096 + ], + [ + 52.4502751, + 13.7579518 + ], + [ + 52.4502711, + 13.7579916 + ], + [ + 52.4502649, + 13.7580313 + ], + [ + 52.4502584, + 13.7580644 + ], + [ + 52.4502465, + 13.7581069 + ], + [ + 52.4502352, + 13.7581399 + ], + [ + 52.4502219, + 13.7581739 + ], + [ + 52.4502087, + 13.7582025 + ], + [ + 52.4501987, + 13.7582209 + ], + [ + 52.4501878, + 13.7582392 + ], + [ + 52.4501692, + 13.758268 + ], + [ + 52.4501509, + 13.7582929 + ], + [ + 52.4501278, + 13.7583184 + ], + [ + 52.4500717, + 13.7583756 + ], + [ + 52.4500249, + 13.7584204 + ], + [ + 52.4500056, + 13.7584396 + ], + [ + 52.4499871, + 13.7584605 + ], + [ + 52.4499633, + 13.7584899 + ], + [ + 52.4499522, + 13.7585053 + ], + [ + 52.4499456, + 13.7585145 + ], + [ + 52.449931, + 13.758536 + ], + [ + 52.4499049, + 13.7585773 + ], + [ + 52.4498814, + 13.7586205 + ], + [ + 52.4498548, + 13.7586719 + ], + [ + 52.4498285, + 13.7587268 + ], + [ + 52.449529, + 13.759312 + ], + [ + 52.4494518, + 13.759453 + ], + [ + 52.4492743, + 13.7597793 + ], + [ + 52.4492188, + 13.759882 + ], + [ + 52.4489724, + 13.760312 + ], + [ + 52.4488683, + 13.7605191 + ], + [ + 52.4488458, + 13.7605588 + ], + [ + 52.4488271, + 13.760589 + ], + [ + 52.4488093, + 13.7606134 + ], + [ + 52.4487836, + 13.7606436 + ], + [ + 52.4487549, + 13.7606742 + ], + [ + 52.4487254, + 13.7607014 + ], + [ + 52.4486967, + 13.7607238 + ], + [ + 52.4486904, + 13.760728 + ], + [ + 52.4486725, + 13.7607398 + ], + [ + 52.4474284, + 13.7614182 + ], + [ + 52.4472929, + 13.7614934 + ], + [ + 52.4472031, + 13.7615417 + ], + [ + 52.4471729, + 13.7615572 + ], + [ + 52.4471595, + 13.7615638 + ], + [ + 52.4468851, + 13.7616669 + ] + ] + }, + { + "osmId": "171603017", + "name": null, + "lengthMeters": 99.26168634060858, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4515718, + 13.6924158 + ], + [ + 52.4515475, + 13.6926373 + ], + [ + 52.4515377, + 13.6927276 + ], + [ + 52.4515271, + 13.692946 + ], + [ + 52.4515038, + 13.6934942 + ], + [ + 52.4515036, + 13.6935505 + ], + [ + 52.45151, + 13.6938734 + ] + ] + }, + { + "osmId": "171603018", + "name": null, + "lengthMeters": 105.85852870483751, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4539541, + 13.7403705 + ], + [ + 52.4539665, + 13.7403225 + ], + [ + 52.45398, + 13.7402763 + ], + [ + 52.4539979, + 13.7402176 + ], + [ + 52.454026, + 13.7401296 + ], + [ + 52.4540478, + 13.740053 + ], + [ + 52.4540612, + 13.7399951 + ], + [ + 52.454073, + 13.7399377 + ], + [ + 52.4541282, + 13.7396344 + ], + [ + 52.4541689, + 13.7394082 + ], + [ + 52.4541773, + 13.7393561 + ], + [ + 52.454185, + 13.739292 + ], + [ + 52.4541904, + 13.7392409 + ], + [ + 52.4542022, + 13.7391169 + ], + [ + 52.454213, + 13.7390096 + ], + [ + 52.4542201, + 13.7389499 + ], + [ + 52.4542266, + 13.7388825 + ] + ] + }, + { + "osmId": "171603760", + "name": null, + "lengthMeters": 565.6590103157318, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5790961, + 13.398297 + ], + [ + 52.578924, + 13.3982985 + ], + [ + 52.578668, + 13.3983016 + ], + [ + 52.578567, + 13.3983028 + ], + [ + 52.5782751, + 13.398308 + ], + [ + 52.5770636, + 13.3983287 + ], + [ + 52.5769429, + 13.3983349 + ], + [ + 52.576863, + 13.398339 + ], + [ + 52.5768418, + 13.3983429 + ], + [ + 52.5767587, + 13.3983571 + ], + [ + 52.5767475, + 13.3983603 + ], + [ + 52.576666, + 13.3983836 + ], + [ + 52.57659, + 13.3984091 + ], + [ + 52.5763518, + 13.3984917 + ], + [ + 52.5763201, + 13.3985051 + ], + [ + 52.5758472, + 13.3986962 + ], + [ + 52.5744726, + 13.3992405 + ], + [ + 52.574337, + 13.3992842 + ], + [ + 52.5742602, + 13.3992895 + ], + [ + 52.5742217, + 13.3992886 + ], + [ + 52.5741803, + 13.3992876 + ], + [ + 52.5740758, + 13.3992654 + ] + ] + }, + { + "osmId": "171851824", + "name": null, + "lengthMeters": 294.8896568767719, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5195935, + 13.458119 + ], + [ + 52.5195768, + 13.4580916 + ], + [ + 52.519562, + 13.4580619 + ], + [ + 52.5195523, + 13.458039 + ], + [ + 52.5195437, + 13.4580145 + ], + [ + 52.5195325, + 13.4579708 + ], + [ + 52.5195242, + 13.4579279 + ], + [ + 52.5195157, + 13.4578641 + ], + [ + 52.5195096, + 13.4577996 + ], + [ + 52.5195007, + 13.4576881 + ], + [ + 52.5193934, + 13.4562938 + ], + [ + 52.5193697, + 13.4559792 + ], + [ + 52.5193385, + 13.4555823 + ], + [ + 52.519331, + 13.4555096 + ], + [ + 52.5193214, + 13.4554393 + ], + [ + 52.5193049, + 13.4553582 + ], + [ + 52.5192751, + 13.4552499 + ], + [ + 52.5189734, + 13.4542505 + ], + [ + 52.5189005, + 13.454017 + ], + [ + 52.5188904, + 13.4539821 + ] + ] + }, + { + "osmId": "171851825", + "name": null, + "lengthMeters": 349.61534317370143, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199273, + 13.4622026 + ], + [ + 52.5200046, + 13.4617754 + ], + [ + 52.5201126, + 13.4611658 + ], + [ + 52.5201307, + 13.4610676 + ], + [ + 52.5202191, + 13.4605875 + ], + [ + 52.5202326, + 13.4605142 + ], + [ + 52.520332, + 13.4599746 + ], + [ + 52.5203674, + 13.4597822 + ], + [ + 52.5204015, + 13.4595973 + ], + [ + 52.5204601, + 13.4592788 + ], + [ + 52.5204876, + 13.4591222 + ], + [ + 52.5204939, + 13.459079 + ], + [ + 52.5204967, + 13.4590436 + ], + [ + 52.5204994, + 13.4590087 + ], + [ + 52.520501, + 13.4589716 + ], + [ + 52.5204986, + 13.4589436 + ], + [ + 52.5204946, + 13.4589042 + ], + [ + 52.5204896, + 13.4588716 + ], + [ + 52.5204805, + 13.4588308 + ], + [ + 52.5204673, + 13.4587875 + ], + [ + 52.5204512, + 13.4587447 + ], + [ + 52.5204359, + 13.4587125 + ], + [ + 52.5204223, + 13.4586879 + ], + [ + 52.5203992, + 13.4586602 + ], + [ + 52.5203782, + 13.4586375 + ], + [ + 52.5203551, + 13.4586183 + ], + [ + 52.5202278, + 13.4585396 + ], + [ + 52.5196906, + 13.4582123 + ], + [ + 52.5196593, + 13.4581892 + ], + [ + 52.5196308, + 13.4581626 + ], + [ + 52.5196114, + 13.4581419 + ], + [ + 52.5195935, + 13.458119 + ] + ] + }, + { + "osmId": "171851826", + "name": null, + "lengthMeters": 246.824098066609, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520104, + 13.4658198 + ], + [ + 52.5200805, + 13.4655296 + ], + [ + 52.5199481, + 13.4638359 + ], + [ + 52.5198863, + 13.4630477 + ], + [ + 52.5198812, + 13.4629794 + ], + [ + 52.5198783, + 13.4629134 + ], + [ + 52.5198762, + 13.4628445 + ], + [ + 52.5198769, + 13.462779 + ], + [ + 52.5198772, + 13.4627276 + ], + [ + 52.5198791, + 13.4626716 + ], + [ + 52.5198846, + 13.4625899 + ], + [ + 52.51989, + 13.4625275 + ], + [ + 52.519898, + 13.4624436 + ], + [ + 52.5199081, + 13.4623569 + ], + [ + 52.5199273, + 13.4622026 + ] + ] + }, + { + "osmId": "171867099", + "name": null, + "lengthMeters": 99.82086882792771, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5294364, + 13.4613217 + ], + [ + 52.5294346, + 13.4613326 + ], + [ + 52.5294173, + 13.4614304 + ], + [ + 52.5292811, + 13.4621773 + ], + [ + 52.5291972, + 13.4626653 + ], + [ + 52.5291847, + 13.4627381 + ] + ] + }, + { + "osmId": "171871257", + "name": null, + "lengthMeters": 651.2079797707798, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5358874, + 13.5208913 + ], + [ + 52.5359004, + 13.5210742 + ], + [ + 52.5359459, + 13.5215008 + ], + [ + 52.5359899, + 13.5218431 + ], + [ + 52.5360001, + 13.5219223 + ], + [ + 52.5360893, + 13.5224471 + ], + [ + 52.5361379, + 13.5227045 + ], + [ + 52.5361926, + 13.5229607 + ], + [ + 52.5362764, + 13.5233111 + ], + [ + 52.5363669, + 13.5236578 + ], + [ + 52.5364637, + 13.5239851 + ], + [ + 52.5365634, + 13.5243087 + ], + [ + 52.5368454, + 13.5251461 + ], + [ + 52.5368895, + 13.5252773 + ], + [ + 52.5372317, + 13.5262927 + ], + [ + 52.5373928, + 13.5267948 + ], + [ + 52.5375398, + 13.527299 + ], + [ + 52.5376945, + 13.5279349 + ], + [ + 52.5378977, + 13.5288133 + ], + [ + 52.5381158, + 13.5297409 + ] + ] + }, + { + "osmId": "171871259", + "name": null, + "lengthMeters": 650.8687171260698, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381454, + 13.5297274 + ], + [ + 52.5377248, + 13.527919 + ], + [ + 52.5375699, + 13.5272825 + ], + [ + 52.5374209, + 13.5267699 + ], + [ + 52.5372606, + 13.5262665 + ], + [ + 52.5369179, + 13.5252507 + ], + [ + 52.5367628, + 13.5247885 + ], + [ + 52.5366428, + 13.5244371 + ], + [ + 52.5365932, + 13.5242853 + ], + [ + 52.5364896, + 13.5239557 + ], + [ + 52.5363928, + 13.5236237 + ], + [ + 52.5363009, + 13.523283 + ], + [ + 52.5362202, + 13.5229399 + ], + [ + 52.5361682, + 13.5226855 + ], + [ + 52.5361191, + 13.522431 + ], + [ + 52.5360315, + 13.5219065 + ], + [ + 52.5360204, + 13.5218276 + ], + [ + 52.5359764, + 13.5214898 + ], + [ + 52.5359303, + 13.5210655 + ], + [ + 52.535917, + 13.5208827 + ] + ] + }, + { + "osmId": "171871260", + "name": null, + "lengthMeters": 1085.4308404958397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5346357, + 13.5009117 + ], + [ + 52.534573, + 13.4998616 + ], + [ + 52.5345684, + 13.4997761 + ], + [ + 52.5345625, + 13.499676 + ], + [ + 52.5345543, + 13.4995413 + ], + [ + 52.534551, + 13.4994785 + ], + [ + 52.5345201, + 13.4989531 + ], + [ + 52.534494, + 13.4984202 + ], + [ + 52.5344616, + 13.4974453 + ], + [ + 52.5344503, + 13.4970362 + ], + [ + 52.5344348, + 13.4964713 + ], + [ + 52.5344169, + 13.4958548 + ], + [ + 52.53439, + 13.4948771 + ], + [ + 52.5343752, + 13.4944302 + ], + [ + 52.5343628, + 13.4941087 + ], + [ + 52.5343186, + 13.493351 + ], + [ + 52.5342357, + 13.4919159 + ], + [ + 52.534225, + 13.4917316 + ], + [ + 52.5342158, + 13.4915688 + ], + [ + 52.5340833, + 13.4892807 + ], + [ + 52.5339761, + 13.4874733 + ], + [ + 52.5339619, + 13.487232 + ], + [ + 52.5339563, + 13.4871363 + ], + [ + 52.5339498, + 13.4870267 + ], + [ + 52.5339095, + 13.4864145 + ], + [ + 52.5338877, + 13.4859713 + ], + [ + 52.5338491, + 13.4852392 + ], + [ + 52.5338392, + 13.4849212 + ] + ] + }, + { + "osmId": "171877513", + "name": null, + "lengthMeters": 297.5444705669985, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5277256, + 13.4525473 + ], + [ + 52.5276664, + 13.4523135 + ], + [ + 52.5275938, + 13.4520389 + ], + [ + 52.5275541, + 13.4518836 + ], + [ + 52.5272991, + 13.4509478 + ], + [ + 52.5272541, + 13.450791 + ], + [ + 52.5272076, + 13.4506131 + ], + [ + 52.5271826, + 13.4505185 + ], + [ + 52.5269997, + 13.4498581 + ], + [ + 52.5266388, + 13.4485283 + ] + ] + }, + { + "osmId": "171931190", + "name": null, + "lengthMeters": 1097.2643026983578, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5375402, + 13.4780562 + ], + [ + 52.537585, + 13.4781829 + ], + [ + 52.5376079, + 13.4782477 + ], + [ + 52.5376824, + 13.4784562 + ], + [ + 52.5377215, + 13.4785665 + ], + [ + 52.5379687, + 13.4792644 + ], + [ + 52.5380296, + 13.4794354 + ], + [ + 52.5381069, + 13.4796525 + ], + [ + 52.5382178, + 13.4799639 + ], + [ + 52.5382351, + 13.4800125 + ], + [ + 52.5383332, + 13.4802879 + ], + [ + 52.5383829, + 13.4804272 + ], + [ + 52.5384782, + 13.4806949 + ], + [ + 52.5385734, + 13.4809621 + ], + [ + 52.5386675, + 13.4812264 + ], + [ + 52.538717, + 13.4813648 + ], + [ + 52.538865, + 13.4817786 + ], + [ + 52.5390754, + 13.4823685 + ], + [ + 52.5391668, + 13.4826249 + ], + [ + 52.5392167, + 13.4827654 + ], + [ + 52.5393773, + 13.4832175 + ], + [ + 52.5394304, + 13.4833697 + ], + [ + 52.5394437, + 13.4834078 + ], + [ + 52.5395163, + 13.4836156 + ], + [ + 52.5395881, + 13.4838101 + ], + [ + 52.5396247, + 13.4839027 + ], + [ + 52.539633, + 13.4839226 + ], + [ + 52.539664, + 13.4839973 + ], + [ + 52.5396928, + 13.4840639 + ], + [ + 52.5396962, + 13.4840705 + ], + [ + 52.5397119, + 13.4841049 + ], + [ + 52.5397252, + 13.484134 + ], + [ + 52.5397901, + 13.484265 + ], + [ + 52.5399347, + 13.4845411 + ], + [ + 52.5400539, + 13.4847687 + ], + [ + 52.5401418, + 13.4849365 + ], + [ + 52.540233, + 13.4851107 + ], + [ + 52.5403126, + 13.4852626 + ], + [ + 52.5403605, + 13.4853551 + ], + [ + 52.540644, + 13.4859022 + ], + [ + 52.5406979, + 13.4860063 + ], + [ + 52.5409098, + 13.4864153 + ], + [ + 52.5409895, + 13.4865691 + ], + [ + 52.5412982, + 13.4871558 + ], + [ + 52.5413242, + 13.4872052 + ], + [ + 52.5416643, + 13.4878515 + ], + [ + 52.5417377, + 13.487991 + ], + [ + 52.5417976, + 13.4881074 + ], + [ + 52.5420895, + 13.4886746 + ], + [ + 52.542186, + 13.4888589 + ], + [ + 52.5422889, + 13.4890554 + ], + [ + 52.5423808, + 13.4892354 + ], + [ + 52.5424627, + 13.4893956 + ], + [ + 52.5425148, + 13.4894894 + ], + [ + 52.54255, + 13.4895566 + ], + [ + 52.5431012, + 13.4906099 + ], + [ + 52.5432024, + 13.4908032 + ], + [ + 52.5433536, + 13.4910888 + ] + ] + }, + { + "osmId": "171931191", + "name": null, + "lengthMeters": 214.81129555388065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368043, + 13.4761836 + ], + [ + 52.536783, + 13.4763325 + ], + [ + 52.5367628, + 13.4764211 + ], + [ + 52.536739, + 13.4764906 + ], + [ + 52.5367139, + 13.4765438 + ], + [ + 52.5366705, + 13.4766255 + ], + [ + 52.5366309, + 13.4766827 + ], + [ + 52.5365722, + 13.4767451 + ], + [ + 52.5361407, + 13.4771969 + ], + [ + 52.5361046, + 13.4772388 + ], + [ + 52.536042, + 13.4773161 + ], + [ + 52.5359876, + 13.4773895 + ], + [ + 52.5359329, + 13.477469 + ], + [ + 52.5358867, + 13.477539 + ], + [ + 52.5358475, + 13.4776055 + ], + [ + 52.5358001, + 13.4776852 + ], + [ + 52.5357574, + 13.4777672 + ], + [ + 52.5357022, + 13.4778815 + ], + [ + 52.5356811, + 13.4779328 + ], + [ + 52.5356137, + 13.4780976 + ], + [ + 52.5355522, + 13.4782707 + ], + [ + 52.5355016, + 13.47842 + ] + ] + }, + { + "osmId": "171964361", + "name": null, + "lengthMeters": 423.1626990426115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5662725, + 13.5018511 + ], + [ + 52.5668254, + 13.5012197 + ], + [ + 52.5675408, + 13.5004078 + ], + [ + 52.5686867, + 13.4990943 + ], + [ + 52.5689597, + 13.4987632 + ], + [ + 52.5693925, + 13.4982665 + ] + ] + }, + { + "osmId": "171964362", + "name": null, + "lengthMeters": 339.6745081471438, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5693925, + 13.4982665 + ], + [ + 52.569676, + 13.4979554 + ], + [ + 52.5701623, + 13.4973963 + ], + [ + 52.5702146, + 13.4973392 + ], + [ + 52.5702491, + 13.4973015 + ], + [ + 52.5702833, + 13.4972619 + ], + [ + 52.5708206, + 13.4966399 + ], + [ + 52.5708531, + 13.4966027 + ], + [ + 52.5719009, + 13.4953983 + ] + ] + }, + { + "osmId": "171993615", + "name": null, + "lengthMeters": 1056.111153750653, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.138237, + 11.5610505 + ], + [ + 48.1384528, + 11.5610416 + ], + [ + 48.1388152, + 11.5610771 + ], + [ + 48.1393517, + 11.5611686 + ], + [ + 48.1400084, + 11.5612674 + ], + [ + 48.1410173, + 11.5614273 + ], + [ + 48.1413642, + 11.5614473 + ], + [ + 48.1414605, + 11.5614636 + ], + [ + 48.1415335, + 11.5614778 + ], + [ + 48.1416915, + 11.5615319 + ], + [ + 48.1426023, + 11.5619378 + ], + [ + 48.1429725, + 11.5620968 + ], + [ + 48.1431836, + 11.5621763 + ], + [ + 48.143428, + 11.5622503 + ], + [ + 48.143749, + 11.5623184 + ], + [ + 48.1440503, + 11.5623421 + ], + [ + 48.1443697, + 11.5623252 + ], + [ + 48.1446239, + 11.5622877 + ], + [ + 48.1449276, + 11.5621994 + ], + [ + 48.1452147, + 11.5620926 + ], + [ + 48.1455186, + 11.5619511 + ], + [ + 48.1457578, + 11.5618082 + ], + [ + 48.1459543, + 11.5616604 + ], + [ + 48.1461505, + 11.5614792 + ], + [ + 48.146382, + 11.5612105 + ], + [ + 48.146629, + 11.5608898 + ], + [ + 48.1468176, + 11.5605999 + ], + [ + 48.1469767, + 11.560309 + ], + [ + 48.1471212, + 11.5600045 + ] + ] + }, + { + "osmId": "172041581", + "name": null, + "lengthMeters": 1063.674848503101, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4873696, + 10.1858522 + ], + [ + 53.4870565, + 10.1886248 + ], + [ + 53.4869608, + 10.1894846 + ], + [ + 53.4868747, + 10.1903401 + ], + [ + 53.4868275, + 10.1909152 + ], + [ + 53.4868144, + 10.1910982 + ], + [ + 53.486787, + 10.1914792 + ], + [ + 53.4867499, + 10.1922296 + ], + [ + 53.4867356, + 10.1929863 + ], + [ + 53.486742, + 10.1936017 + ], + [ + 53.4867558, + 10.194106 + ], + [ + 53.4868049, + 10.1950552 + ], + [ + 53.4868825, + 10.1960371 + ], + [ + 53.4869463, + 10.1966318 + ], + [ + 53.4870138, + 10.1971897 + ], + [ + 53.4871679, + 10.1982088 + ], + [ + 53.4872594, + 10.1987233 + ], + [ + 53.4873575, + 10.1992413 + ], + [ + 53.4874223, + 10.1995423 + ], + [ + 53.4875333, + 10.2000406 + ], + [ + 53.4876601, + 10.2005571 + ], + [ + 53.4878012, + 10.2010874 + ], + [ + 53.4879287, + 10.201531 + ] + ] + }, + { + "osmId": "172088161", + "name": null, + "lengthMeters": 862.1710834944183, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5238644, + 13.519657 + ], + [ + 52.5225587, + 13.5195591 + ], + [ + 52.5222843, + 13.5195419 + ], + [ + 52.5210418, + 13.5194515 + ], + [ + 52.5194605, + 13.5193365 + ], + [ + 52.5193746, + 13.51933 + ], + [ + 52.5188045, + 13.5192897 + ], + [ + 52.518767, + 13.5192869 + ], + [ + 52.5187039, + 13.5192816 + ], + [ + 52.5165211, + 13.5191243 + ], + [ + 52.5164277, + 13.5191186 + ], + [ + 52.5161185, + 13.5190878 + ] + ] + }, + { + "osmId": "172088162", + "name": null, + "lengthMeters": 132.86251180348793, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5250584, + 13.5196173 + ], + [ + 52.5249862, + 13.5196246 + ], + [ + 52.524875, + 13.5196356 + ], + [ + 52.5245472, + 13.5196623 + ], + [ + 52.5243215, + 13.5196692 + ], + [ + 52.5242559, + 13.5196687 + ], + [ + 52.5241253, + 13.5196676 + ], + [ + 52.5239683, + 13.519661 + ], + [ + 52.5238644, + 13.519657 + ] + ] + }, + { + "osmId": "172088164", + "name": null, + "lengthMeters": 186.75118796885144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5161185, + 13.5190878 + ], + [ + 52.5158845, + 13.5190509 + ], + [ + 52.5158256, + 13.5190428 + ], + [ + 52.5157575, + 13.5190373 + ], + [ + 52.5156713, + 13.519031 + ], + [ + 52.5152629, + 13.5190167 + ], + [ + 52.5150748, + 13.519012 + ], + [ + 52.5149177, + 13.5190154 + ], + [ + 52.5147093, + 13.5190268 + ], + [ + 52.514595, + 13.5190279 + ], + [ + 52.5144407, + 13.5190277 + ] + ] + }, + { + "osmId": "172093540", + "name": null, + "lengthMeters": 1979.6858760939217, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5107604, + 13.5000112 + ], + [ + 52.5106641, + 13.5003317 + ], + [ + 52.5075269, + 13.5103624 + ], + [ + 52.5074825, + 13.510522 + ], + [ + 52.5074335, + 13.5107127 + ], + [ + 52.5073951, + 13.5108462 + ], + [ + 52.507353, + 13.5109783 + ], + [ + 52.5072894, + 13.5111572 + ], + [ + 52.5072321, + 13.5113068 + ], + [ + 52.5071807, + 13.5114299 + ], + [ + 52.5071378, + 13.5115243 + ], + [ + 52.5070781, + 13.5116375 + ], + [ + 52.5070158, + 13.5117439 + ], + [ + 52.5069505, + 13.5118468 + ], + [ + 52.5069093, + 13.5119051 + ], + [ + 52.5067206, + 13.5121162 + ], + [ + 52.5057713, + 13.5131493 + ], + [ + 52.5056604, + 13.5132701 + ], + [ + 52.5054447, + 13.5135003 + ], + [ + 52.5051858, + 13.5137596 + ], + [ + 52.5044699, + 13.5145125 + ], + [ + 52.5034696, + 13.5157039 + ], + [ + 52.5033571, + 13.5158468 + ], + [ + 52.5031256, + 13.516174 + ], + [ + 52.5028265, + 13.5166406 + ], + [ + 52.5027265, + 13.516807 + ], + [ + 52.5024323, + 13.5173241 + ], + [ + 52.5021875, + 13.5177687 + ], + [ + 52.50204, + 13.5180632 + ], + [ + 52.501218, + 13.5198262 + ], + [ + 52.5011031, + 13.5200544 + ], + [ + 52.5009711, + 13.520297 + ], + [ + 52.5008831, + 13.520446 + ], + [ + 52.5008175, + 13.5205489 + ], + [ + 52.5006962, + 13.5207262 + ], + [ + 52.5005839, + 13.5208733 + ], + [ + 52.5004831, + 13.5209982 + ], + [ + 52.5003643, + 13.5211329 + ], + [ + 52.5002572, + 13.5212421 + ], + [ + 52.5001304, + 13.5213577 + ], + [ + 52.5000622, + 13.5214127 + ], + [ + 52.4998985, + 13.5215368 + ], + [ + 52.4997663, + 13.5216298 + ], + [ + 52.4995661, + 13.52176 + ] + ] + }, + { + "osmId": "172133837", + "name": null, + "lengthMeters": 402.01317436664146, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140304, + 13.5190208 + ], + [ + 52.513975, + 13.5190194 + ], + [ + 52.5136205, + 13.5190044 + ], + [ + 52.5134611, + 13.5189909 + ], + [ + 52.5133353, + 13.5189788 + ], + [ + 52.5131809, + 13.5189723 + ], + [ + 52.5110808, + 13.5189517 + ], + [ + 52.5104157, + 13.518938 + ] + ] + }, + { + "osmId": "172190980", + "name": "Stettiner Bahn", + "lengthMeters": 210.7047652234694, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5564075, + 13.3979517 + ], + [ + 52.5561997, + 13.3979967 + ], + [ + 52.5551994, + 13.3982496 + ], + [ + 52.5551679, + 13.3982576 + ], + [ + 52.5546134, + 13.398394 + ], + [ + 52.5545331, + 13.3984077 + ] + ] + }, + { + "osmId": "172256661", + "name": "Stettiner Bahn", + "lengthMeters": 426.0771008338044, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5670824, + 13.4120116 + ], + [ + 52.5669486, + 13.4117825 + ], + [ + 52.5662354, + 13.4105608 + ], + [ + 52.5659709, + 13.4100926 + ], + [ + 52.5649606, + 13.4083638 + ], + [ + 52.5644358, + 13.4074531 + ] + ] + }, + { + "osmId": "172256663", + "name": "Stettiner Bahn", + "lengthMeters": 189.7110426426918, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5922011, + 13.4445032 + ], + [ + 52.5911684, + 13.4433878 + ], + [ + 52.5907754, + 13.4429606 + ] + ] + }, + { + "osmId": "172509654", + "name": null, + "lengthMeters": 76.71277376287888, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1878016, + 11.6131637 + ], + [ + 48.187814, + 11.6130775 + ], + [ + 48.1878858, + 11.6125798 + ], + [ + 48.1879475, + 11.6121523 + ] + ] + }, + { + "osmId": "172509657", + "name": null, + "lengthMeters": 457.88625562297307, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1869329, + 11.6192012 + ], + [ + 48.1872904, + 11.6166914 + ], + [ + 48.1874908, + 11.615301 + ], + [ + 48.1875934, + 11.6145799 + ], + [ + 48.1876837, + 11.6139645 + ], + [ + 48.1878016, + 11.6131637 + ] + ] + }, + { + "osmId": "172510154", + "name": null, + "lengthMeters": 428.6944854361943, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5437756, + 13.5522633 + ], + [ + 52.5441463, + 13.5535205 + ], + [ + 52.5445086, + 13.5547254 + ], + [ + 52.5446753, + 13.5552752 + ], + [ + 52.5447371, + 13.5554535 + ], + [ + 52.5448078, + 13.5556331 + ], + [ + 52.5448736, + 13.5557815 + ], + [ + 52.5449435, + 13.5559178 + ], + [ + 52.5450158, + 13.5560472 + ], + [ + 52.5451241, + 13.5562159 + ], + [ + 52.5452284, + 13.5563555 + ], + [ + 52.5452804, + 13.5564192 + ], + [ + 52.5453336, + 13.55648 + ], + [ + 52.5454074, + 13.5565571 + ], + [ + 52.5454819, + 13.5566278 + ], + [ + 52.5455556, + 13.5566906 + ], + [ + 52.54563, + 13.5567489 + ], + [ + 52.545732, + 13.5568225 + ], + [ + 52.5460716, + 13.5570605 + ] + ] + }, + { + "osmId": "172510158", + "name": null, + "lengthMeters": 186.70096256883238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5419828, + 13.5436036 + ], + [ + 52.5419077, + 13.5437772 + ], + [ + 52.5418718, + 13.5438442 + ], + [ + 52.5418384, + 13.5438949 + ], + [ + 52.5418076, + 13.543924 + ], + [ + 52.5417744, + 13.5439439 + ], + [ + 52.5417412, + 13.543952 + ], + [ + 52.5417104, + 13.5439564 + ], + [ + 52.5416716, + 13.5439507 + ], + [ + 52.5416351, + 13.5439322 + ], + [ + 52.5415977, + 13.5439155 + ], + [ + 52.5415654, + 13.5438798 + ], + [ + 52.5415318, + 13.5438189 + ], + [ + 52.5415023, + 13.5437329 + ], + [ + 52.5414878, + 13.5436121 + ], + [ + 52.5414943, + 13.543506 + ], + [ + 52.5415222, + 13.5433979 + ], + [ + 52.5415574, + 13.5433135 + ], + [ + 52.5415965, + 13.5432434 + ], + [ + 52.5416378, + 13.5431788 + ], + [ + 52.5416744, + 13.5431421 + ], + [ + 52.5418565, + 13.5430899 + ], + [ + 52.5420326, + 13.5430461 + ], + [ + 52.5421235, + 13.5429909 + ], + [ + 52.542168, + 13.542951 + ], + [ + 52.5422015, + 13.5429128 + ], + [ + 52.5422392, + 13.5428216 + ] + ] + }, + { + "osmId": "172510164", + "name": null, + "lengthMeters": 158.57626542777425, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5383551, + 13.53079 + ], + [ + 52.5388351, + 13.5329979 + ] + ] + }, + { + "osmId": "172510166", + "name": null, + "lengthMeters": 1186.8880011309793, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.539956, + 13.5382747 + ], + [ + 52.5399917, + 13.5384865 + ], + [ + 52.5400119, + 13.5385782 + ], + [ + 52.5400423, + 13.5386731 + ], + [ + 52.540092, + 13.5388081 + ], + [ + 52.540169, + 13.538963 + ], + [ + 52.5402088, + 13.5390169 + ], + [ + 52.5403372, + 13.5391912 + ], + [ + 52.5404314, + 13.5392812 + ], + [ + 52.5405145, + 13.5393442 + ], + [ + 52.5413514, + 13.5399242 + ], + [ + 52.5422317, + 13.5405294 + ], + [ + 52.5423215, + 13.5406045 + ], + [ + 52.5423701, + 13.5406511 + ], + [ + 52.5424071, + 13.5406936 + ], + [ + 52.5424699, + 13.5407852 + ], + [ + 52.5425079, + 13.5408561 + ], + [ + 52.5425435, + 13.5409542 + ], + [ + 52.5425734, + 13.5410617 + ], + [ + 52.5425844, + 13.5411377 + ], + [ + 52.5425885, + 13.5411677 + ], + [ + 52.5425902, + 13.5412076 + ], + [ + 52.5425935, + 13.5412796 + ], + [ + 52.5425935, + 13.5413433 + ], + [ + 52.5425935, + 13.5413668 + ], + [ + 52.542582, + 13.5414539 + ], + [ + 52.5425691, + 13.5415281 + ], + [ + 52.5425585, + 13.5415665 + ], + [ + 52.5425461, + 13.5416111 + ], + [ + 52.5425251, + 13.5416857 + ], + [ + 52.5425207, + 13.5417016 + ], + [ + 52.5425109, + 13.5417362 + ], + [ + 52.5422857, + 13.5425363 + ], + [ + 52.5422297, + 13.542734 + ], + [ + 52.542168, + 13.542951 + ], + [ + 52.5419828, + 13.5436036 + ], + [ + 52.5419475, + 13.5437332 + ], + [ + 52.5418982, + 13.5439142 + ], + [ + 52.541858, + 13.5440825 + ], + [ + 52.5418262, + 13.5442724 + ], + [ + 52.5418009, + 13.544469 + ], + [ + 52.5417847, + 13.5446356 + ], + [ + 52.5417763, + 13.5447948 + ], + [ + 52.5417752, + 13.5449423 + ], + [ + 52.5417778, + 13.5450764 + ], + [ + 52.5417861, + 13.5452486 + ], + [ + 52.5417902, + 13.5453101 + ], + [ + 52.5418193, + 13.5455503 + ], + [ + 52.541836, + 13.5456551 + ], + [ + 52.5418558, + 13.5457562 + ], + [ + 52.5418631, + 13.5457963 + ], + [ + 52.5418915, + 13.545924 + ], + [ + 52.5419223, + 13.5460568 + ], + [ + 52.5424201, + 13.547716 + ], + [ + 52.5425398, + 13.5481095 + ], + [ + 52.5429307, + 13.5494306 + ], + [ + 52.5429984, + 13.5496562 + ], + [ + 52.5430733, + 13.5499091 + ], + [ + 52.5431127, + 13.5500407 + ], + [ + 52.5431894, + 13.5502942 + ], + [ + 52.5434152, + 13.5510541 + ], + [ + 52.5437756, + 13.5522633 + ] + ] + }, + { + "osmId": "172510168", + "name": null, + "lengthMeters": 327.3862795550829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388351, + 13.5329979 + ], + [ + 52.5389551, + 13.5335835 + ], + [ + 52.539043, + 13.5340135 + ], + [ + 52.5391299, + 13.534432 + ], + [ + 52.5391856, + 13.5346902 + ], + [ + 52.5392525, + 13.5349468 + ], + [ + 52.5393039, + 13.5351385 + ], + [ + 52.5393911, + 13.5354467 + ], + [ + 52.5394734, + 13.5357595 + ], + [ + 52.5396279, + 13.5363938 + ], + [ + 52.5396764, + 13.5366244 + ], + [ + 52.5397415, + 13.5369555 + ], + [ + 52.5397926, + 13.5372377 + ], + [ + 52.5398437, + 13.5375402 + ] + ] + }, + { + "osmId": "172520119", + "name": null, + "lengthMeters": 3605.050752417804, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5336463, + 13.5345398 + ], + [ + 52.5337678, + 13.5345689 + ], + [ + 52.5339087, + 13.5346041 + ], + [ + 52.5342339, + 13.5347041 + ], + [ + 52.534529, + 13.5348172 + ], + [ + 52.534939, + 13.534991 + ], + [ + 52.5365868, + 13.5356789 + ], + [ + 52.5371878, + 13.5359455 + ], + [ + 52.5374345, + 13.5360702 + ], + [ + 52.5377119, + 13.5362238 + ], + [ + 52.5379502, + 13.5363737 + ], + [ + 52.5382224, + 13.5365606 + ], + [ + 52.5384593, + 13.536734 + ], + [ + 52.5386458, + 13.53688 + ], + [ + 52.5388448, + 13.5370425 + ], + [ + 52.5391758, + 13.5373269 + ], + [ + 52.5408956, + 13.5388086 + ], + [ + 52.5419375, + 13.5397056 + ], + [ + 52.5431804, + 13.5407434 + ], + [ + 52.5437754, + 13.5412683 + ], + [ + 52.5445306, + 13.5419659 + ], + [ + 52.5451343, + 13.5425365 + ], + [ + 52.5458075, + 13.5431421 + ], + [ + 52.5464406, + 13.5436895 + ], + [ + 52.5501093, + 13.5468461 + ], + [ + 52.5524598, + 13.5488741 + ], + [ + 52.5627164, + 13.5577392 + ] + ] + }, + { + "osmId": "172551618", + "name": null, + "lengthMeters": 681.7488091611813, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5256015, + 13.5257679 + ], + [ + 52.5255425, + 13.5270283 + ], + [ + 52.525533, + 13.5272794 + ], + [ + 52.5255256, + 13.5275506 + ], + [ + 52.5255108, + 13.5283127 + ], + [ + 52.5254963, + 13.5286303 + ], + [ + 52.5254818, + 13.5289258 + ], + [ + 52.5254751, + 13.5290605 + ], + [ + 52.5254728, + 13.5291719 + ], + [ + 52.5254717, + 13.5292626 + ], + [ + 52.5254703, + 13.5293932 + ], + [ + 52.5254686, + 13.5296368 + ], + [ + 52.5254798, + 13.5302267 + ], + [ + 52.5254891, + 13.5309838 + ], + [ + 52.5255151, + 13.5317158 + ], + [ + 52.5255645, + 13.5327988 + ], + [ + 52.5255863, + 13.533442 + ], + [ + 52.5255902, + 13.5335741 + ], + [ + 52.5255928, + 13.5336611 + ], + [ + 52.5255959, + 13.5338124 + ], + [ + 52.5255981, + 13.5339226 + ], + [ + 52.5256028, + 13.5343821 + ], + [ + 52.5256331, + 13.5353376 + ], + [ + 52.52564, + 13.5355025 + ], + [ + 52.5256474, + 13.5356917 + ], + [ + 52.5256567, + 13.5358288 + ] + ] + }, + { + "osmId": "172551619", + "name": null, + "lengthMeters": 615.0449183660012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263553, + 13.5480973 + ], + [ + 52.5263242, + 13.5480451 + ], + [ + 52.5262785, + 13.5479652 + ], + [ + 52.5262333, + 13.5478704 + ], + [ + 52.526207, + 13.5478124 + ], + [ + 52.5261695, + 13.5477209 + ], + [ + 52.5261232, + 13.5475834 + ], + [ + 52.5260822, + 13.5474387 + ], + [ + 52.5260511, + 13.5472924 + ], + [ + 52.5260269, + 13.5471434 + ], + [ + 52.5260089, + 13.5469614 + ], + [ + 52.5259992, + 13.5467794 + ], + [ + 52.5259498, + 13.5442656 + ], + [ + 52.5259479, + 13.5441566 + ], + [ + 52.5259347, + 13.5434041 + ], + [ + 52.5259096, + 13.54218 + ], + [ + 52.5259062, + 13.5420317 + ], + [ + 52.5258551, + 13.5404429 + ], + [ + 52.5258515, + 13.5403283 + ], + [ + 52.5258479, + 13.5402164 + ], + [ + 52.5258441, + 13.5400974 + ], + [ + 52.5258396, + 13.5399557 + ], + [ + 52.5258104, + 13.5391737 + ] + ] + }, + { + "osmId": "172551622", + "name": null, + "lengthMeters": 99.49385539163055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5151223, + 13.5190548 + ], + [ + 52.5155358, + 13.5190688 + ], + [ + 52.5155874, + 13.5190719 + ], + [ + 52.5156474, + 13.5190797 + ], + [ + 52.5157086, + 13.5190929 + ], + [ + 52.5158077, + 13.5191226 + ], + [ + 52.5158646, + 13.5191348 + ], + [ + 52.5159241, + 13.5191424 + ], + [ + 52.5160138, + 13.5191506 + ] + ] + }, + { + "osmId": "172551623", + "name": null, + "lengthMeters": 133.0905827330736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5238633, + 13.5197055 + ], + [ + 52.5239698, + 13.5197093 + ], + [ + 52.5241375, + 13.5197173 + ], + [ + 52.524257, + 13.5197202 + ], + [ + 52.524463, + 13.5197172 + ], + [ + 52.5246064, + 13.5197103 + ], + [ + 52.5248767, + 13.5196872 + ], + [ + 52.5250594, + 13.5196709 + ] + ] + }, + { + "osmId": "172551625", + "name": null, + "lengthMeters": 653.2179338133645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388489, + 13.5610676 + ], + [ + 52.5376742, + 13.5600838 + ], + [ + 52.537491, + 13.5599317 + ], + [ + 52.537369, + 13.5598282 + ], + [ + 52.5372477, + 13.5597253 + ], + [ + 52.536338, + 13.5589649 + ], + [ + 52.5351704, + 13.5579915 + ], + [ + 52.5350961, + 13.5579295 + ], + [ + 52.5348129, + 13.5576967 + ], + [ + 52.5347414, + 13.5576329 + ], + [ + 52.5346622, + 13.5575563 + ], + [ + 52.5346235, + 13.5575152 + ], + [ + 52.5345853, + 13.5574721 + ], + [ + 52.5345487, + 13.5574273 + ], + [ + 52.5345127, + 13.5573796 + ], + [ + 52.5344773, + 13.5573291 + ], + [ + 52.534443, + 13.5572766 + ], + [ + 52.5344158, + 13.5572301 + ], + [ + 52.5343771, + 13.5571628 + ], + [ + 52.5343397, + 13.557093 + ], + [ + 52.5343014, + 13.5570116 + ], + [ + 52.5342654, + 13.5569291 + ], + [ + 52.5342281, + 13.5568304 + ], + [ + 52.5341994, + 13.5567463 + ], + [ + 52.5341731, + 13.5566625 + ], + [ + 52.5341364, + 13.5565243 + ], + [ + 52.5340945, + 13.5563357 + ], + [ + 52.5340694, + 13.5561574 + ], + [ + 52.5340536, + 13.5559819 + ] + ] + }, + { + "osmId": "172551626", + "name": null, + "lengthMeters": 83.05063417454465, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260169, + 13.5176867 + ], + [ + 52.5260162, + 13.5178459 + ], + [ + 52.5260161, + 13.5180115 + ], + [ + 52.5260112, + 13.518163 + ], + [ + 52.5259894, + 13.5186756 + ], + [ + 52.5259734, + 13.5189114 + ] + ] + }, + { + "osmId": "172551627", + "name": null, + "lengthMeters": 378.758822821579, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4841618, + 13.5260983 + ], + [ + 52.4837302, + 13.5259799 + ], + [ + 52.4834613, + 13.5259103 + ], + [ + 52.4833707, + 13.5258877 + ], + [ + 52.4832307, + 13.5258499 + ], + [ + 52.4830838, + 13.5258038 + ], + [ + 52.4827621, + 13.5257035 + ], + [ + 52.4826151, + 13.5256579 + ], + [ + 52.4824665, + 13.5256036 + ], + [ + 52.4823774, + 13.5255622 + ], + [ + 52.4821967, + 13.5254659 + ], + [ + 52.4820904, + 13.5254144 + ], + [ + 52.482047, + 13.5253932 + ], + [ + 52.4819749, + 13.5253609 + ], + [ + 52.481749, + 13.5252789 + ], + [ + 52.4817053, + 13.5252664 + ], + [ + 52.4816267, + 13.5252434 + ], + [ + 52.481264, + 13.5251316 + ], + [ + 52.4811581, + 13.5251031 + ], + [ + 52.4810026, + 13.525056 + ], + [ + 52.480927, + 13.5250389 + ], + [ + 52.4808592, + 13.5250269 + ], + [ + 52.4808233, + 13.52502 + ] + ] + }, + { + "osmId": "172551632", + "name": null, + "lengthMeters": 117.28564107171454, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443329, + 13.5645976 + ], + [ + 52.5440895, + 13.5646026 + ], + [ + 52.5440078, + 13.5646005 + ], + [ + 52.5438333, + 13.5645854 + ], + [ + 52.5436623, + 13.5645607 + ], + [ + 52.5434709, + 13.564516 + ], + [ + 52.5432839, + 13.5644614 + ] + ] + }, + { + "osmId": "172551633", + "name": null, + "lengthMeters": 401.9374183835525, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104157, + 13.5189913 + ], + [ + 52.5105776, + 13.5189935 + ], + [ + 52.5110805, + 13.5190065 + ], + [ + 52.5131796, + 13.5190204 + ], + [ + 52.5133353, + 13.519023 + ], + [ + 52.5134602, + 13.5190338 + ], + [ + 52.5136206, + 13.5190452 + ], + [ + 52.5139731, + 13.519058 + ], + [ + 52.5140299, + 13.5190596 + ] + ] + }, + { + "osmId": "172551634", + "name": null, + "lengthMeters": 861.907291309562, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5161193, + 13.5191561 + ], + [ + 52.5164261, + 13.5191685 + ], + [ + 52.5165201, + 13.5191749 + ], + [ + 52.5187024, + 13.5193327 + ], + [ + 52.5187668, + 13.5193378 + ], + [ + 52.5192733, + 13.5193753 + ], + [ + 52.5193734, + 13.5193777 + ], + [ + 52.5194594, + 13.5193854 + ], + [ + 52.5210424, + 13.5195035 + ], + [ + 52.5222839, + 13.5195924 + ], + [ + 52.5225363, + 13.5196099 + ], + [ + 52.5238633, + 13.5197055 + ] + ] + }, + { + "osmId": "172551635", + "name": null, + "lengthMeters": 545.4394322112179, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5432839, + 13.5644614 + ], + [ + 52.5431068, + 13.5643959 + ], + [ + 52.5429305, + 13.5643249 + ], + [ + 52.5427661, + 13.5642471 + ], + [ + 52.5426847, + 13.5642047 + ], + [ + 52.5426042, + 13.5641583 + ], + [ + 52.5425177, + 13.5641036 + ], + [ + 52.542432, + 13.5640448 + ], + [ + 52.5423475, + 13.563986 + ], + [ + 52.5422639, + 13.563919 + ], + [ + 52.5422329, + 13.563893 + ], + [ + 52.5417781, + 13.5635092 + ], + [ + 52.5416359, + 13.5633961 + ], + [ + 52.5415302, + 13.5633065 + ], + [ + 52.5413974, + 13.5631986 + ], + [ + 52.5403575, + 13.5623286 + ], + [ + 52.5393154, + 13.5614544 + ], + [ + 52.5392693, + 13.561416 + ], + [ + 52.5388489, + 13.5610676 + ] + ] + }, + { + "osmId": "172551636", + "name": null, + "lengthMeters": 1535.5899493476918, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893152, + 13.5277938 + ], + [ + 52.489513, + 13.5278553 + ], + [ + 52.4895731, + 13.5278726 + ], + [ + 52.4897962, + 13.5279366 + ], + [ + 52.4899092, + 13.5279696 + ], + [ + 52.4899947, + 13.5279848 + ], + [ + 52.4900424, + 13.5279916 + ], + [ + 52.4900915, + 13.5279935 + ], + [ + 52.4901524, + 13.5279934 + ], + [ + 52.4902425, + 13.5279872 + ], + [ + 52.4902793, + 13.5279842 + ], + [ + 52.4903847, + 13.5279679 + ], + [ + 52.4904652, + 13.5279521 + ], + [ + 52.4905407, + 13.5279308 + ], + [ + 52.4906343, + 13.5278998 + ], + [ + 52.4907272, + 13.5278632 + ], + [ + 52.4908587, + 13.5278022 + ], + [ + 52.4909751, + 13.5277297 + ], + [ + 52.4916076, + 13.5273281 + ], + [ + 52.4920599, + 13.5270369 + ], + [ + 52.492104, + 13.5270085 + ], + [ + 52.4921484, + 13.5269794 + ], + [ + 52.4922013, + 13.5269446 + ], + [ + 52.4924417, + 13.5267908 + ], + [ + 52.4926136, + 13.5266809 + ], + [ + 52.4927665, + 13.5266007 + ], + [ + 52.4928417, + 13.5265605 + ], + [ + 52.4930289, + 13.5264544 + ], + [ + 52.4931292, + 13.5263939 + ], + [ + 52.493474, + 13.5261726 + ], + [ + 52.4935318, + 13.5261345 + ], + [ + 52.4935654, + 13.5261125 + ], + [ + 52.4935895, + 13.5260971 + ], + [ + 52.4936348, + 13.5260682 + ], + [ + 52.4941667, + 13.5257287 + ], + [ + 52.4942957, + 13.5256438 + ], + [ + 52.4944347, + 13.5255491 + ], + [ + 52.4945061, + 13.5254934 + ], + [ + 52.4946903, + 13.5253464 + ], + [ + 52.4947831, + 13.5252736 + ], + [ + 52.4948768, + 13.5252068 + ], + [ + 52.4949571, + 13.5251513 + ], + [ + 52.4952188, + 13.5249867 + ], + [ + 52.4958731, + 13.5245774 + ], + [ + 52.4960275, + 13.524479 + ], + [ + 52.4967571, + 13.5240205 + ], + [ + 52.4968547, + 13.5239569 + ], + [ + 52.4970984, + 13.5238032 + ], + [ + 52.4972814, + 13.5236908 + ], + [ + 52.4974517, + 13.5235986 + ], + [ + 52.4975388, + 13.523556 + ], + [ + 52.4976138, + 13.5235205 + ], + [ + 52.4976956, + 13.5234767 + ], + [ + 52.497847, + 13.523386 + ], + [ + 52.4981882, + 13.5231718 + ], + [ + 52.4987785, + 13.5227993 + ], + [ + 52.4993549, + 13.5224364 + ], + [ + 52.4996419, + 13.5222561 + ], + [ + 52.5000166, + 13.5220235 + ], + [ + 52.5001381, + 13.5219541 + ], + [ + 52.5002634, + 13.521895 + ], + [ + 52.5005411, + 13.5217926 + ], + [ + 52.500955, + 13.5216542 + ], + [ + 52.5010442, + 13.5216242 + ], + [ + 52.5011339, + 13.521594 + ], + [ + 52.5013606, + 13.5215203 + ], + [ + 52.5018093, + 13.5213693 + ], + [ + 52.5020226, + 13.5212885 + ], + [ + 52.5020778, + 13.5212652 + ], + [ + 52.5021533, + 13.5212284 + ], + [ + 52.5023814, + 13.5211147 + ] + ] + }, + { + "osmId": "172551637", + "name": null, + "lengthMeters": 909.4797111932181, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104157, + 13.518938 + ], + [ + 52.5100917, + 13.5189315 + ], + [ + 52.509993, + 13.518928 + ], + [ + 52.5097886, + 13.518924 + ], + [ + 52.509688, + 13.5189219 + ], + [ + 52.5096165, + 13.5189177 + ], + [ + 52.5095225, + 13.5189217 + ], + [ + 52.5093534, + 13.518929 + ], + [ + 52.509289, + 13.5189318 + ], + [ + 52.509088, + 13.5189515 + ], + [ + 52.5088853, + 13.5189817 + ], + [ + 52.5087844, + 13.5190059 + ], + [ + 52.508692, + 13.5190324 + ], + [ + 52.5086138, + 13.5190583 + ], + [ + 52.5085381, + 13.5190845 + ], + [ + 52.5084067, + 13.5191371 + ], + [ + 52.5082821, + 13.5191918 + ], + [ + 52.5081642, + 13.5192352 + ], + [ + 52.5080446, + 13.5192743 + ], + [ + 52.5079094, + 13.5193115 + ], + [ + 52.5074963, + 13.5193877 + ], + [ + 52.5069655, + 13.5194995 + ], + [ + 52.5063993, + 13.5196145 + ], + [ + 52.5059689, + 13.5197008 + ], + [ + 52.505807, + 13.5197397 + ], + [ + 52.5057989, + 13.5197421 + ], + [ + 52.5056877, + 13.519775 + ], + [ + 52.5055114, + 13.5198306 + ], + [ + 52.5053975, + 13.5198722 + ], + [ + 52.5050394, + 13.5200376 + ], + [ + 52.5047159, + 13.5202011 + ], + [ + 52.5043986, + 13.5203686 + ], + [ + 52.5043442, + 13.520394 + ], + [ + 52.5042344, + 13.5204438 + ], + [ + 52.5041117, + 13.5204962 + ], + [ + 52.5039042, + 13.5205654 + ], + [ + 52.5038007, + 13.5205982 + ], + [ + 52.5034976, + 13.5206959 + ], + [ + 52.5027135, + 13.5209419 + ], + [ + 52.5024898, + 13.5210194 + ], + [ + 52.5024405, + 13.5210406 + ], + [ + 52.5023736, + 13.5210718 + ] + ] + }, + { + "osmId": "172959781", + "name": null, + "lengthMeters": 670.8911966660692, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5382359, + 13.3960295 + ], + [ + 52.5382581, + 13.3961054 + ], + [ + 52.5382626, + 13.3961209 + ], + [ + 52.5382926, + 13.3962233 + ], + [ + 52.5385932, + 13.3972979 + ], + [ + 52.5387622, + 13.3979023 + ], + [ + 52.5387798, + 13.3979654 + ], + [ + 52.5388213, + 13.3981139 + ], + [ + 52.5389324, + 13.398515 + ], + [ + 52.5390789, + 13.3990269 + ], + [ + 52.5390868, + 13.3990546 + ], + [ + 52.5391302, + 13.3992112 + ], + [ + 52.5392035, + 13.399476 + ], + [ + 52.5393599, + 13.4000334 + ], + [ + 52.5393981, + 13.4001671 + ], + [ + 52.5394348, + 13.4002957 + ], + [ + 52.5395051, + 13.4005444 + ], + [ + 52.5396442, + 13.4010448 + ], + [ + 52.5396783, + 13.4011664 + ], + [ + 52.5396897, + 13.4012039 + ], + [ + 52.5397535, + 13.4014316 + ], + [ + 52.5397948, + 13.4015785 + ], + [ + 52.5398382, + 13.4017332 + ], + [ + 52.5400384, + 13.4024469 + ], + [ + 52.5400503, + 13.4024912 + ], + [ + 52.5400645, + 13.4025438 + ], + [ + 52.5401749, + 13.402919 + ], + [ + 52.5402752, + 13.4032767 + ], + [ + 52.5403559, + 13.403552 + ], + [ + 52.5404502, + 13.4038965 + ], + [ + 52.5405442, + 13.4042518 + ], + [ + 52.5405548, + 13.4043006 + ], + [ + 52.5405763, + 13.4043997 + ], + [ + 52.5405974, + 13.4045031 + ], + [ + 52.5406163, + 13.4045972 + ], + [ + 52.5406389, + 13.4047023 + ], + [ + 52.5406558, + 13.4047866 + ], + [ + 52.5407124, + 13.40507 + ] + ] + }, + { + "osmId": "172962275", + "name": null, + "lengthMeters": 172.92415819498004, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.540992, + 13.4123238 + ], + [ + 52.5409846, + 13.4124161 + ], + [ + 52.5409697, + 13.4125494 + ], + [ + 52.5409438, + 13.4127617 + ], + [ + 52.5409168, + 13.4129384 + ], + [ + 52.5407513, + 13.4140276 + ], + [ + 52.5407216, + 13.4142321 + ], + [ + 52.5406969, + 13.4144172 + ], + [ + 52.5406864, + 13.4144878 + ], + [ + 52.5406782, + 13.4145416 + ], + [ + 52.5406657, + 13.414627 + ], + [ + 52.5406395, + 13.4148133 + ] + ] + }, + { + "osmId": "173005519", + "name": null, + "lengthMeters": 391.6641811506286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5347289, + 13.5177971 + ], + [ + 52.5340312, + 13.518311 + ], + [ + 52.5338759, + 13.5184285 + ], + [ + 52.5337685, + 13.5185086 + ], + [ + 52.5336402, + 13.5185904 + ], + [ + 52.5335391, + 13.518652 + ], + [ + 52.533406, + 13.5187209 + ], + [ + 52.5331416, + 13.5188281 + ], + [ + 52.5329881, + 13.5188771 + ], + [ + 52.5329124, + 13.5188902 + ], + [ + 52.5328616, + 13.5188994 + ], + [ + 52.5328101, + 13.5189072 + ], + [ + 52.5327621, + 13.518915 + ], + [ + 52.5326864, + 13.5189273 + ], + [ + 52.5326574, + 13.5189301 + ], + [ + 52.5322947, + 13.5189596 + ], + [ + 52.531562, + 13.5190254 + ], + [ + 52.5313363, + 13.5190446 + ] + ] + }, + { + "osmId": "173005520", + "name": null, + "lengthMeters": 182.99049664315896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536844, + 13.5162938 + ], + [ + 52.5376099, + 13.5156933 + ], + [ + 52.5383362, + 13.5151532 + ] + ] + }, + { + "osmId": "173005521", + "name": null, + "lengthMeters": 154.79265846338785, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5355842, + 13.5172653 + ], + [ + 52.5356242, + 13.5172413 + ], + [ + 52.5356541, + 13.5172236 + ], + [ + 52.5356976, + 13.5171903 + ], + [ + 52.5362433, + 13.5167808 + ], + [ + 52.5362833, + 13.5167451 + ], + [ + 52.5363268, + 13.5167138 + ], + [ + 52.5364477, + 13.5166201 + ], + [ + 52.536844, + 13.5162938 + ] + ] + }, + { + "osmId": "173005522", + "name": null, + "lengthMeters": 524.9389218295885, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5383362, + 13.5151532 + ], + [ + 52.5394284, + 13.5143251 + ], + [ + 52.5395223, + 13.5142543 + ], + [ + 52.5396393, + 13.5141663 + ], + [ + 52.5397144, + 13.5141098 + ], + [ + 52.540168, + 13.513773 + ], + [ + 52.5402038, + 13.5137449 + ], + [ + 52.5403413, + 13.5136369 + ], + [ + 52.5417154, + 13.5126367 + ], + [ + 52.5426399, + 13.5119635 + ] + ] + }, + { + "osmId": "173043380", + "name": null, + "lengthMeters": 254.05001409784154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5727427, + 13.5748224 + ], + [ + 52.5730798, + 13.5748857 + ], + [ + 52.5731619, + 13.5749 + ], + [ + 52.5732059, + 13.5749033 + ], + [ + 52.5732509, + 13.5749042 + ], + [ + 52.5732847, + 13.5749012 + ], + [ + 52.5733013, + 13.5748979 + ], + [ + 52.5733178, + 13.5748931 + ], + [ + 52.5733355, + 13.5748844 + ], + [ + 52.5733532, + 13.5748742 + ], + [ + 52.5733869, + 13.5748502 + ], + [ + 52.573413, + 13.5748266 + ], + [ + 52.573439, + 13.5747983 + ], + [ + 52.5734606, + 13.5747676 + ], + [ + 52.5734802, + 13.5747334 + ], + [ + 52.573501, + 13.574684 + ], + [ + 52.5735206, + 13.5746323 + ], + [ + 52.5735355, + 13.5745863 + ], + [ + 52.5735482, + 13.5745403 + ], + [ + 52.57356, + 13.5744928 + ], + [ + 52.5735651, + 13.5744682 + ], + [ + 52.5735695, + 13.5744436 + ], + [ + 52.5735732, + 13.5744147 + ], + [ + 52.5735761, + 13.5743857 + ], + [ + 52.5735783, + 13.5743558 + ], + [ + 52.573579, + 13.5743262 + ], + [ + 52.5735784, + 13.5743015 + ], + [ + 52.5735766, + 13.5742763 + ], + [ + 52.5735748, + 13.5742514 + ], + [ + 52.5735723, + 13.574226 + ], + [ + 52.573566, + 13.5741807 + ], + [ + 52.5735573, + 13.5741354 + ], + [ + 52.5735426, + 13.5740766 + ], + [ + 52.5735207, + 13.5740073 + ], + [ + 52.5735012, + 13.5739602 + ], + [ + 52.5734792, + 13.5739158 + ], + [ + 52.5734448, + 13.5738628 + ], + [ + 52.5734092, + 13.5738218 + ], + [ + 52.573378, + 13.5737914 + ], + [ + 52.5733444, + 13.5737678 + ], + [ + 52.5733133, + 13.5737548 + ], + [ + 52.5732819, + 13.5737439 + ], + [ + 52.5732488, + 13.5737366 + ], + [ + 52.573216, + 13.5737321 + ], + [ + 52.5731837, + 13.5737335 + ], + [ + 52.5731504, + 13.5737397 + ], + [ + 52.5731239, + 13.5737512 + ], + [ + 52.5730984, + 13.5737659 + ], + [ + 52.5730475, + 13.5737994 + ], + [ + 52.5729985, + 13.5738377 + ], + [ + 52.5728643, + 13.5739532 + ], + [ + 52.5728147, + 13.5739959 + ], + [ + 52.5726002, + 13.5741703 + ] + ] + }, + { + "osmId": "173060449", + "name": null, + "lengthMeters": 408.95266661166033, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5575869, + 13.5681914 + ], + [ + 52.5577949, + 13.5682656 + ], + [ + 52.5579012, + 13.5683061 + ], + [ + 52.5582263, + 13.568426 + ], + [ + 52.5586308, + 13.5685806 + ], + [ + 52.5598835, + 13.5690419 + ], + [ + 52.5607133, + 13.5693401 + ], + [ + 52.5608176, + 13.5693824 + ], + [ + 52.5611761, + 13.5695108 + ] + ] + }, + { + "osmId": "173060452", + "name": null, + "lengthMeters": 391.5202284034952, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5588219, + 13.5684171 + ], + [ + 52.5588728, + 13.5683708 + ], + [ + 52.5596918, + 13.5675439 + ], + [ + 52.5598143, + 13.5674254 + ], + [ + 52.5599418, + 13.5673235 + ], + [ + 52.5600239, + 13.5672678 + ], + [ + 52.5600863, + 13.5672337 + ], + [ + 52.5601585, + 13.567216 + ], + [ + 52.560199, + 13.5672106 + ], + [ + 52.5602447, + 13.5672132 + ], + [ + 52.560292, + 13.5672228 + ], + [ + 52.5603324, + 13.5672369 + ], + [ + 52.560376, + 13.567256 + ], + [ + 52.5604201, + 13.5672892 + ], + [ + 52.56046, + 13.5673233 + ], + [ + 52.5604973, + 13.5673677 + ], + [ + 52.5605312, + 13.5674116 + ], + [ + 52.560562, + 13.5674684 + ], + [ + 52.5605907, + 13.5675235 + ], + [ + 52.5606155, + 13.5675789 + ], + [ + 52.5606359, + 13.5676433 + ], + [ + 52.5606545, + 13.5677149 + ], + [ + 52.5606672, + 13.5678024 + ], + [ + 52.5606729, + 13.5678841 + ], + [ + 52.5606764, + 13.5679631 + ], + [ + 52.5606764, + 13.5680487 + ], + [ + 52.5606643, + 13.5681928 + ], + [ + 52.5606488, + 13.5683084 + ], + [ + 52.5606249, + 13.5684159 + ], + [ + 52.5605821, + 13.5685582 + ], + [ + 52.560542, + 13.5686545 + ], + [ + 52.5604984, + 13.5687367 + ], + [ + 52.5604532, + 13.5688145 + ], + [ + 52.5603985, + 13.5688836 + ], + [ + 52.5603754, + 13.5689088 + ], + [ + 52.5603203, + 13.5689631 + ], + [ + 52.5602651, + 13.5689998 + ], + [ + 52.5602066, + 13.5690191 + ], + [ + 52.56017, + 13.5690278 + ], + [ + 52.5601394, + 13.5690301 + ], + [ + 52.5600598, + 13.569028 + ], + [ + 52.5598602, + 13.5689741 + ] + ] + }, + { + "osmId": "173060453", + "name": null, + "lengthMeters": 408.6937348852342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5611831, + 13.5694541 + ], + [ + 52.5608202, + 13.5693217 + ], + [ + 52.5607153, + 13.5692829 + ], + [ + 52.5598602, + 13.5689741 + ], + [ + 52.5584652, + 13.5684544 + ], + [ + 52.5579289, + 13.568258 + ], + [ + 52.5575964, + 13.5681335 + ] + ] + }, + { + "osmId": "173065718", + "name": null, + "lengthMeters": 217.6082781755635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5557151, + 13.5672792 + ], + [ + 52.5558275, + 13.5673646 + ], + [ + 52.5558643, + 13.5673883 + ], + [ + 52.5559186, + 13.5674238 + ], + [ + 52.5560172, + 13.5674876 + ], + [ + 52.5560679, + 13.5675182 + ], + [ + 52.5560926, + 13.5675337 + ], + [ + 52.5562104, + 13.567606 + ], + [ + 52.5567154, + 13.5678713 + ], + [ + 52.5572614, + 13.5680734 + ], + [ + 52.5575869, + 13.5681914 + ] + ] + }, + { + "osmId": "173118224", + "name": null, + "lengthMeters": 141.59391233593078, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5458452, + 13.5706434 + ], + [ + 52.5459762, + 13.5711516 + ], + [ + 52.5460116, + 13.5712872 + ], + [ + 52.5460342, + 13.5713706 + ], + [ + 52.5461016, + 13.5716312 + ], + [ + 52.5461404, + 13.5717791 + ], + [ + 52.5461684, + 13.5718863 + ], + [ + 52.546201, + 13.5720024 + ], + [ + 52.5463547, + 13.5725623 + ] + ] + }, + { + "osmId": "173118225", + "name": null, + "lengthMeters": 174.35017165618376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5456949, + 13.5699463 + ], + [ + 52.5455851, + 13.5695494 + ], + [ + 52.5454788, + 13.5691496 + ], + [ + 52.5452713, + 13.5683514 + ], + [ + 52.5452258, + 13.5681816 + ], + [ + 52.5451324, + 13.5678255 + ], + [ + 52.5450719, + 13.5675804 + ] + ] + }, + { + "osmId": "173123192", + "name": null, + "lengthMeters": 349.87851687533725, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5457373, + 13.5862305 + ], + [ + 52.545795, + 13.5861554 + ], + [ + 52.5458193, + 13.5861294 + ], + [ + 52.545852, + 13.5861018 + ], + [ + 52.5458737, + 13.5860867 + ], + [ + 52.5459143, + 13.5860632 + ], + [ + 52.5459846, + 13.5860405 + ], + [ + 52.5460438, + 13.5860361 + ], + [ + 52.5460928, + 13.5860436 + ], + [ + 52.5461551, + 13.5860543 + ], + [ + 52.5464273, + 13.5861585 + ], + [ + 52.5478156, + 13.5866693 + ], + [ + 52.5485023, + 13.5869194 + ], + [ + 52.5487876, + 13.5870247 + ] + ] + }, + { + "osmId": "173131936", + "name": null, + "lengthMeters": 400.29807522917827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5364352, + 13.6050603 + ], + [ + 52.5364636, + 13.6050402 + ], + [ + 52.5365654, + 13.6049691 + ], + [ + 52.5366128, + 13.6049416 + ], + [ + 52.5366617, + 13.6049132 + ], + [ + 52.536751, + 13.6048718 + ], + [ + 52.5367989, + 13.6048547 + ], + [ + 52.5368529, + 13.6048345 + ], + [ + 52.536967, + 13.604804 + ], + [ + 52.5378003, + 13.6046285 + ], + [ + 52.5382862, + 13.6045276 + ], + [ + 52.5385231, + 13.6044776 + ], + [ + 52.5386005, + 13.6044611 + ], + [ + 52.5386711, + 13.6044461 + ], + [ + 52.5387396, + 13.6044316 + ], + [ + 52.5387979, + 13.6044191 + ], + [ + 52.5389699, + 13.604389 + ], + [ + 52.5394032, + 13.6042999 + ], + [ + 52.539491, + 13.6042824 + ], + [ + 52.5399864, + 13.6041756 + ] + ] + }, + { + "osmId": "173133253", + "name": null, + "lengthMeters": 186.26343599602782, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5323965, + 13.6132945 + ], + [ + 52.5327928, + 13.61139 + ], + [ + 52.532939, + 13.6106892 + ] + ] + }, + { + "osmId": "173133254", + "name": null, + "lengthMeters": 110.06321537909719, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320753, + 13.6148336 + ], + [ + 52.5321781, + 13.6143398 + ], + [ + 52.5322068, + 13.6142022 + ], + [ + 52.5322271, + 13.6141046 + ], + [ + 52.5323965, + 13.6132945 + ] + ] + }, + { + "osmId": "173136231", + "name": null, + "lengthMeters": 267.93962433374196, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306495, + 13.6214512 + ], + [ + 52.5305657, + 13.6218539 + ], + [ + 52.5305332, + 13.6220101 + ], + [ + 52.5303862, + 13.6227052 + ], + [ + 52.5303553, + 13.622839 + ], + [ + 52.5303228, + 13.6229728 + ], + [ + 52.5302875, + 13.6231034 + ], + [ + 52.5302519, + 13.623232 + ], + [ + 52.5302139, + 13.6233611 + ], + [ + 52.530175, + 13.6234889 + ], + [ + 52.53014, + 13.6235967 + ], + [ + 52.5301209, + 13.6236473 + ], + [ + 52.5301001, + 13.6236972 + ], + [ + 52.5300707, + 13.6237624 + ], + [ + 52.5300384, + 13.6238219 + ], + [ + 52.530012, + 13.6238646 + ], + [ + 52.5299933, + 13.6238898 + ], + [ + 52.5299613, + 13.6239259 + ], + [ + 52.5299418, + 13.6239465 + ], + [ + 52.5299195, + 13.623967 + ], + [ + 52.5298899, + 13.6239893 + ], + [ + 52.5298509, + 13.6240089 + ], + [ + 52.5298308, + 13.6240167 + ], + [ + 52.5298038, + 13.6240219 + ], + [ + 52.5297773, + 13.6240226 + ], + [ + 52.5297307, + 13.6240145 + ], + [ + 52.5296921, + 13.6239958 + ], + [ + 52.5296396, + 13.6239525 + ], + [ + 52.5295969, + 13.6238956 + ], + [ + 52.5295402, + 13.6237947 + ], + [ + 52.529484, + 13.62369 + ], + [ + 52.5293723, + 13.6234797 + ] + ] + }, + { + "osmId": "173149680", + "name": null, + "lengthMeters": 649.8692271080049, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5477601, + 13.4195529 + ], + [ + 52.5476596, + 13.4194442 + ], + [ + 52.5476007, + 13.4193805 + ], + [ + 52.5472432, + 13.4189937 + ], + [ + 52.5469759, + 13.4187045 + ], + [ + 52.5469433, + 13.4186693 + ], + [ + 52.5466165, + 13.4183158 + ], + [ + 52.5465307, + 13.4182231 + ], + [ + 52.5464298, + 13.4181151 + ], + [ + 52.5461634, + 13.4178271 + ], + [ + 52.5458101, + 13.4174454 + ], + [ + 52.5456751, + 13.4172995 + ], + [ + 52.5455572, + 13.4171721 + ], + [ + 52.5455086, + 13.4171193 + ], + [ + 52.5453265, + 13.4169215 + ], + [ + 52.5451431, + 13.4167222 + ], + [ + 52.5450947, + 13.4166698 + ], + [ + 52.544994, + 13.416561 + ], + [ + 52.5449252, + 13.4164875 + ], + [ + 52.5443197, + 13.4158316 + ], + [ + 52.5442946, + 13.4158046 + ], + [ + 52.5441094, + 13.4156055 + ], + [ + 52.5440353, + 13.415526 + ], + [ + 52.5439685, + 13.415454 + ], + [ + 52.5437861, + 13.4152581 + ], + [ + 52.5436067, + 13.4150654 + ], + [ + 52.5433455, + 13.4147855 + ], + [ + 52.5429674, + 13.4143803 + ], + [ + 52.5428745, + 13.4142786 + ] + ] + }, + { + "osmId": "173149682", + "name": null, + "lengthMeters": 702.3528008652311, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5380998, + 13.4235552 + ], + [ + 52.537065, + 13.4229448 + ], + [ + 52.5368297, + 13.4228061 + ], + [ + 52.5367172, + 13.4227424 + ], + [ + 52.5363471, + 13.4225242 + ], + [ + 52.5356868, + 13.4221346 + ], + [ + 52.5355844, + 13.4220728 + ], + [ + 52.5354663, + 13.4220017 + ], + [ + 52.5349179, + 13.4216755 + ], + [ + 52.5348289, + 13.4216225 + ], + [ + 52.5336199, + 13.4209104 + ], + [ + 52.5335716, + 13.4208822 + ], + [ + 52.5335298, + 13.4208577 + ], + [ + 52.5329765, + 13.4205284 + ], + [ + 52.5328825, + 13.4204724 + ], + [ + 52.5323729, + 13.4201746 + ], + [ + 52.532156, + 13.4200416 + ] + ] + }, + { + "osmId": "173190323", + "name": null, + "lengthMeters": 547.4271540065062, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334572, + 13.4208602 + ], + [ + 52.5335206, + 13.4208979 + ], + [ + 52.5335606, + 13.420921 + ], + [ + 52.533606, + 13.4209472 + ], + [ + 52.5348058, + 13.4216563 + ], + [ + 52.5352404, + 13.4219184 + ], + [ + 52.5354568, + 13.4220436 + ], + [ + 52.5355738, + 13.4221127 + ], + [ + 52.5356782, + 13.4221745 + ], + [ + 52.5362333, + 13.4225029 + ], + [ + 52.5363226, + 13.422555 + ], + [ + 52.5368201, + 13.422847 + ], + [ + 52.5370368, + 13.4229751 + ], + [ + 52.5380901, + 13.423598 + ] + ] + }, + { + "osmId": "173224276", + "name": null, + "lengthMeters": 118.02897598948947, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5790955, + 13.398345 + ], + [ + 52.5791396, + 13.398338 + ], + [ + 52.5791697, + 13.3983318 + ], + [ + 52.5791992, + 13.3983248 + ], + [ + 52.5792654, + 13.3983056 + ], + [ + 52.5792877, + 13.3982957 + ], + [ + 52.5793019, + 13.3982899 + ], + [ + 52.5793467, + 13.3982646 + ], + [ + 52.5794, + 13.3982274 + ], + [ + 52.5794349, + 13.3981946 + ], + [ + 52.5794838, + 13.3981476 + ], + [ + 52.5795174, + 13.3981048 + ], + [ + 52.5796747, + 13.3978825 + ], + [ + 52.5797925, + 13.3977164 + ], + [ + 52.5798874, + 13.3975908 + ], + [ + 52.5799229, + 13.3975359 + ], + [ + 52.5799569, + 13.3974855 + ], + [ + 52.5799768, + 13.3974513 + ] + ] + }, + { + "osmId": "173300987", + "name": null, + "lengthMeters": 805.1170046521988, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4843599, + 13.5061809 + ], + [ + 52.4843571, + 13.5060986 + ], + [ + 52.4843534, + 13.5060329 + ], + [ + 52.4843479, + 13.5059655 + ], + [ + 52.4843371, + 13.5058725 + ], + [ + 52.484329, + 13.5058228 + ], + [ + 52.4843204, + 13.50578 + ], + [ + 52.4843125, + 13.5057415 + ], + [ + 52.484287, + 13.5056291 + ], + [ + 52.4842723, + 13.5055739 + ], + [ + 52.4842239, + 13.5053769 + ], + [ + 52.4838574, + 13.503925 + ], + [ + 52.4834596, + 13.5023445 + ], + [ + 52.483424, + 13.5022037 + ], + [ + 52.4832902, + 13.5016748 + ], + [ + 52.4832493, + 13.501516 + ], + [ + 52.4832441, + 13.5014882 + ], + [ + 52.4832364, + 13.5014432 + ], + [ + 52.4832331, + 13.501402 + ], + [ + 52.4832319, + 13.5013563 + ], + [ + 52.4832334, + 13.5013111 + ], + [ + 52.483238, + 13.5012639 + ], + [ + 52.483245, + 13.5012233 + ], + [ + 52.4832498, + 13.5011993 + ], + [ + 52.4832659, + 13.5011569 + ], + [ + 52.4832745, + 13.5011304 + ], + [ + 52.483291, + 13.5010942 + ], + [ + 52.4833066, + 13.5010637 + ], + [ + 52.4833273, + 13.5010299 + ], + [ + 52.4833496, + 13.5009986 + ], + [ + 52.4836118, + 13.5007075 + ], + [ + 52.4840749, + 13.5001774 + ], + [ + 52.4845444, + 13.4996642 + ], + [ + 52.4857838, + 13.4983781 + ], + [ + 52.4858829, + 13.4982752 + ], + [ + 52.4859484, + 13.4982072 + ], + [ + 52.4865563, + 13.4975697 + ] + ] + }, + { + "osmId": "173300993", + "name": null, + "lengthMeters": 221.71481809713111, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4808233, + 13.52502 + ], + [ + 52.4807981, + 13.5250168 + ], + [ + 52.4805551, + 13.5249991 + ], + [ + 52.4804014, + 13.5249849 + ], + [ + 52.4803252, + 13.5249797 + ], + [ + 52.4802819, + 13.5249778 + ], + [ + 52.4802399, + 13.5249739 + ], + [ + 52.4801672, + 13.5249671 + ], + [ + 52.4801216, + 13.5249629 + ], + [ + 52.4800568, + 13.5249585 + ], + [ + 52.4799537, + 13.5249531 + ], + [ + 52.4798999, + 13.5249504 + ], + [ + 52.4798279, + 13.5249447 + ], + [ + 52.4797223, + 13.5249305 + ], + [ + 52.4796637, + 13.5249218 + ], + [ + 52.4796061, + 13.5249104 + ], + [ + 52.4795185, + 13.5248879 + ], + [ + 52.4794443, + 13.5248677 + ], + [ + 52.4788441, + 13.5246823 + ] + ] + }, + { + "osmId": "173318266", + "name": null, + "lengthMeters": 652.5883329491443, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4891844, + 13.4948394 + ], + [ + 52.4899324, + 13.4940631 + ], + [ + 52.4905779, + 13.4933963 + ], + [ + 52.4918237, + 13.4920892 + ], + [ + 52.4919448, + 13.4919626 + ], + [ + 52.4925561, + 13.4913237 + ], + [ + 52.492858, + 13.4909687 + ], + [ + 52.4930537, + 13.4907544 + ], + [ + 52.4932974, + 13.4904967 + ], + [ + 52.4934372, + 13.4903525 + ], + [ + 52.4935153, + 13.4902699 + ], + [ + 52.4936339, + 13.4901437 + ], + [ + 52.4941203, + 13.4896267 + ] + ] + }, + { + "osmId": "173318507", + "name": null, + "lengthMeters": 102.11927298565924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5030293, + 13.4738291 + ], + [ + 52.5030066, + 13.473944 + ], + [ + 52.5029507, + 13.4742272 + ], + [ + 52.5028805, + 13.4745827 + ], + [ + 52.5028628, + 13.4746712 + ], + [ + 52.5027831, + 13.4750679 + ], + [ + 52.5027668, + 13.4751538 + ], + [ + 52.5027443, + 13.4752633 + ] + ] + }, + { + "osmId": "173319466", + "name": null, + "lengthMeters": 129.81203117607123, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.478678, + 13.5241212 + ], + [ + 52.4790485, + 13.5232834 + ], + [ + 52.4793627, + 13.5225687 + ] + ] + }, + { + "osmId": "173319467", + "name": null, + "lengthMeters": 657.0348421764938, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.470202, + 13.5161993 + ], + [ + 52.4692713, + 13.5152018 + ], + [ + 52.4691611, + 13.5150864 + ], + [ + 52.4690565, + 13.5149631 + ], + [ + 52.4690054, + 13.5149015 + ], + [ + 52.4689563, + 13.5148299 + ], + [ + 52.4688847, + 13.5147275 + ], + [ + 52.4688569, + 13.5146813 + ], + [ + 52.4688233, + 13.5146254 + ], + [ + 52.4687141, + 13.5144177 + ], + [ + 52.4686709, + 13.5143335 + ], + [ + 52.4686409, + 13.514275 + ], + [ + 52.4685528, + 13.5141303 + ], + [ + 52.4685044, + 13.5140598 + ], + [ + 52.4684419, + 13.5139804 + ], + [ + 52.4679531, + 13.5135217 + ], + [ + 52.4678553, + 13.5134316 + ], + [ + 52.4677596, + 13.5133529 + ], + [ + 52.4677284, + 13.5133327 + ], + [ + 52.4676924, + 13.5133106 + ], + [ + 52.467612, + 13.5132646 + ], + [ + 52.4675123, + 13.5132199 + ], + [ + 52.4674104, + 13.5131793 + ], + [ + 52.467315, + 13.5131414 + ], + [ + 52.4672253, + 13.5131167 + ], + [ + 52.4671286, + 13.5131033 + ], + [ + 52.4670413, + 13.5131011 + ], + [ + 52.4669264, + 13.5131166 + ], + [ + 52.4649033, + 13.5135589 + ] + ] + }, + { + "osmId": "173319468", + "name": null, + "lengthMeters": 294.5623540796315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4782222, + 13.5244859 + ], + [ + 52.4784238, + 13.5245643 + ], + [ + 52.4784647, + 13.5245794 + ], + [ + 52.4785206, + 13.5246001 + ], + [ + 52.4785658, + 13.524618 + ], + [ + 52.4786175, + 13.524642 + ], + [ + 52.478683, + 13.5246733 + ], + [ + 52.4787345, + 13.5246946 + ], + [ + 52.4787999, + 13.5247151 + ], + [ + 52.47882, + 13.5247214 + ], + [ + 52.4788383, + 13.5247284 + ], + [ + 52.4790243, + 13.5247862 + ], + [ + 52.479429, + 13.524913 + ], + [ + 52.4800456, + 13.5251048 + ], + [ + 52.4801463, + 13.5251336 + ], + [ + 52.4802437, + 13.5251647 + ], + [ + 52.4803128, + 13.525186 + ], + [ + 52.4803516, + 13.5251971 + ], + [ + 52.4803854, + 13.5252043 + ], + [ + 52.4804348, + 13.5252132 + ], + [ + 52.4805069, + 13.525221 + ], + [ + 52.4807177, + 13.5252382 + ], + [ + 52.4808257, + 13.5252483 + ] + ] + }, + { + "osmId": "173640262", + "name": null, + "lengthMeters": 473.34440631172464, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.455181, + 13.6171717 + ], + [ + 52.4552, + 13.6172525 + ], + [ + 52.4552138, + 13.617315 + ], + [ + 52.4553874, + 13.6180997 + ], + [ + 52.4554955, + 13.6185958 + ], + [ + 52.4555119, + 13.618671 + ], + [ + 52.4556504, + 13.6192978 + ], + [ + 52.4556717, + 13.619391 + ], + [ + 52.455766, + 13.6198034 + ], + [ + 52.4558716, + 13.6202656 + ], + [ + 52.4558825, + 13.6203141 + ], + [ + 52.4559795, + 13.6207462 + ], + [ + 52.4559927, + 13.6208051 + ], + [ + 52.456072, + 13.6211582 + ], + [ + 52.4560864, + 13.6212228 + ], + [ + 52.4561447, + 13.621485 + ], + [ + 52.4561628, + 13.6215666 + ], + [ + 52.4562016, + 13.6217411 + ], + [ + 52.4562731, + 13.6220623 + ], + [ + 52.456316, + 13.6222551 + ], + [ + 52.4563564, + 13.6224369 + ], + [ + 52.4563998, + 13.6226319 + ], + [ + 52.4564526, + 13.6228714 + ], + [ + 52.4565151, + 13.623155 + ], + [ + 52.4565502, + 13.6233142 + ], + [ + 52.456584, + 13.6234671 + ], + [ + 52.4566373, + 13.6237091 + ], + [ + 52.4566425, + 13.6237327 + ] + ] + }, + { + "osmId": "173640266", + "name": null, + "lengthMeters": 81.04220621503578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4518328, + 13.600901 + ], + [ + 52.4518365, + 13.600877 + ], + [ + 52.4519348, + 13.6003357 + ], + [ + 52.4519532, + 13.6002344 + ], + [ + 52.4519791, + 13.6000918 + ], + [ + 52.4520052, + 13.5999556 + ], + [ + 52.4520502, + 13.59976 + ] + ] + }, + { + "osmId": "173640267", + "name": null, + "lengthMeters": 143.47085024445528, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.451807, + 13.6008874 + ], + [ + 52.4517904, + 13.6009851 + ], + [ + 52.4517729, + 13.6010877 + ], + [ + 52.4517701, + 13.6011159 + ], + [ + 52.4517637, + 13.6011812 + ], + [ + 52.4517575, + 13.6012439 + ], + [ + 52.4517404, + 13.601529 + ], + [ + 52.4517376, + 13.6017468 + ], + [ + 52.4517399, + 13.6018493 + ], + [ + 52.4517444, + 13.601953 + ], + [ + 52.4517613, + 13.6021763 + ], + [ + 52.4517732, + 13.6022602 + ], + [ + 52.4517894, + 13.6023741 + ], + [ + 52.451838, + 13.6026185 + ], + [ + 52.4518796, + 13.6028341 + ], + [ + 52.4519047, + 13.6029561 + ] + ] + }, + { + "osmId": "173640268", + "name": null, + "lengthMeters": 141.52075842747414, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4519309, + 13.6029423 + ], + [ + 52.4519098, + 13.6028509 + ], + [ + 52.4518629, + 13.6026204 + ], + [ + 52.4518144, + 13.6023531 + ], + [ + 52.4517899, + 13.6021622 + ], + [ + 52.4517715, + 13.6019542 + ], + [ + 52.4517668, + 13.601848 + ], + [ + 52.451765, + 13.6017431 + ], + [ + 52.4517678, + 13.6015392 + ], + [ + 52.4517764, + 13.6013679 + ], + [ + 52.451792, + 13.6012011 + ], + [ + 52.4517948, + 13.6011802 + ], + [ + 52.4518068, + 13.6010892 + ], + [ + 52.4518206, + 13.6009893 + ], + [ + 52.4518328, + 13.600901 + ] + ] + }, + { + "osmId": "173640269", + "name": null, + "lengthMeters": 304.17196343936587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4520502, + 13.59976 + ], + [ + 52.4521638, + 13.5993707 + ], + [ + 52.4526672, + 13.597751 + ], + [ + 52.4528234, + 13.5972517 + ], + [ + 52.4528429, + 13.5971868 + ], + [ + 52.4528622, + 13.5971228 + ], + [ + 52.4528778, + 13.5970604 + ], + [ + 52.4528987, + 13.5969764 + ], + [ + 52.4529448, + 13.5967582 + ], + [ + 52.452975, + 13.596575 + ], + [ + 52.4530142, + 13.5962774 + ], + [ + 52.4530718, + 13.5956338 + ] + ] + }, + { + "osmId": "173640270", + "name": null, + "lengthMeters": 178.14261898690594, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530589, + 13.594761 + ], + [ + 52.4530514, + 13.5946604 + ], + [ + 52.453044, + 13.5944865 + ], + [ + 52.4530499, + 13.5937857 + ], + [ + 52.4530529, + 13.5936702 + ], + [ + 52.4530607, + 13.5935714 + ], + [ + 52.453072, + 13.59353 + ], + [ + 52.4530773, + 13.5935067 + ], + [ + 52.453097, + 13.593446 + ], + [ + 52.4531207, + 13.5933789 + ], + [ + 52.4531531, + 13.5933136 + ], + [ + 52.4531958, + 13.5932659 + ], + [ + 52.4534681, + 13.5931456 + ], + [ + 52.4538143, + 13.5929906 + ] + ] + }, + { + "osmId": "173640272", + "name": null, + "lengthMeters": 432.975627462312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4552031, + 13.6171397 + ], + [ + 52.4551817, + 13.6170626 + ], + [ + 52.4551571, + 13.6169881 + ], + [ + 52.4551053, + 13.6168313 + ], + [ + 52.4550188, + 13.6166007 + ], + [ + 52.4549932, + 13.6165184 + ], + [ + 52.4549403, + 13.6162955 + ], + [ + 52.454846, + 13.6158816 + ], + [ + 52.4547034, + 13.6152354 + ], + [ + 52.454663, + 13.6150517 + ], + [ + 52.4546597, + 13.6150362 + ], + [ + 52.4542886, + 13.6133946 + ], + [ + 52.4541676, + 13.6128612 + ], + [ + 52.4541305, + 13.6126976 + ], + [ + 52.4541112, + 13.6126126 + ], + [ + 52.454085, + 13.6125056 + ], + [ + 52.4540303, + 13.6122524 + ], + [ + 52.4537925, + 13.6111926 + ] + ] + }, + { + "osmId": "173971214", + "name": null, + "lengthMeters": 318.4340875203214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627951, + 13.5124746 + ], + [ + 52.4628495, + 13.5122319 + ], + [ + 52.4628802, + 13.5120971 + ], + [ + 52.4630056, + 13.5115393 + ], + [ + 52.4632319, + 13.5105328 + ], + [ + 52.4633813, + 13.509868 + ], + [ + 52.4634812, + 13.5094284 + ], + [ + 52.4636106, + 13.5088511 + ], + [ + 52.4636328, + 13.5087512 + ], + [ + 52.4636435, + 13.5087168 + ], + [ + 52.4636523, + 13.5086887 + ], + [ + 52.4636678, + 13.5086448 + ], + [ + 52.4636758, + 13.5086265 + ], + [ + 52.4636894, + 13.5085958 + ], + [ + 52.4637218, + 13.5085348 + ], + [ + 52.4637488, + 13.5085033 + ], + [ + 52.463784, + 13.5084572 + ], + [ + 52.4638246, + 13.5084115 + ], + [ + 52.4638453, + 13.5083882 + ], + [ + 52.463889, + 13.5083403 + ], + [ + 52.4639591, + 13.5082751 + ] + ] + }, + { + "osmId": "174512809", + "name": null, + "lengthMeters": 176.6905905476262, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.479546, + 13.5290764 + ], + [ + 52.4797375, + 13.5286413 + ], + [ + 52.4804767, + 13.5269617 + ] + ] + }, + { + "osmId": "174512810", + "name": null, + "lengthMeters": 693.9947689241451, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4798456, + 13.5283173 + ], + [ + 52.4788678, + 13.5305333 + ], + [ + 52.4768542, + 13.5350967 + ], + [ + 52.4761871, + 13.5366194 + ] + ] + }, + { + "osmId": "174512811", + "name": null, + "lengthMeters": 117.20224724013188, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4799319, + 13.5283557 + ], + [ + 52.4799139, + 13.528398 + ], + [ + 52.4798518, + 13.5285485 + ], + [ + 52.479615, + 13.5291685 + ], + [ + 52.4795209, + 13.5294083 + ], + [ + 52.4793529, + 13.5298013 + ] + ] + }, + { + "osmId": "174512812", + "name": null, + "lengthMeters": 115.4662311055229, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4804541, + 13.5269357 + ], + [ + 52.4798456, + 13.5283173 + ] + ] + }, + { + "osmId": "174512813", + "name": null, + "lengthMeters": 203.3628565419015, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4800278, + 13.5284769 + ], + [ + 52.480198, + 13.5281047 + ], + [ + 52.4802894, + 13.5278965 + ], + [ + 52.4803622, + 13.5277306 + ], + [ + 52.4804488, + 13.5275331 + ], + [ + 52.4805492, + 13.5273043 + ], + [ + 52.4806112, + 13.5271631 + ], + [ + 52.4806855, + 13.5269939 + ], + [ + 52.4808666, + 13.526581 + ], + [ + 52.4810711, + 13.5261151 + ], + [ + 52.4810928, + 13.5260656 + ], + [ + 52.4811014, + 13.5260459 + ] + ] + }, + { + "osmId": "174512814", + "name": null, + "lengthMeters": 160.70170582720954, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4787018, + 13.5310024 + ], + [ + 52.479546, + 13.5290764 + ] + ] + }, + { + "osmId": "174513546", + "name": null, + "lengthMeters": 1310.949541761147, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4681059, + 13.5551962 + ], + [ + 52.4678153, + 13.5558627 + ], + [ + 52.4675518, + 13.5564556 + ], + [ + 52.4671165, + 13.5574334 + ], + [ + 52.4666562, + 13.5584786 + ], + [ + 52.4654884, + 13.5611283 + ], + [ + 52.4648408, + 13.5625959 + ], + [ + 52.4628552, + 13.5670954 + ], + [ + 52.4622637, + 13.5684405 + ], + [ + 52.4620373, + 13.5689392 + ], + [ + 52.4620092, + 13.5690013 + ], + [ + 52.4617957, + 13.5694716 + ], + [ + 52.4616469, + 13.5697843 + ], + [ + 52.4616323, + 13.569815 + ], + [ + 52.4611529, + 13.5708224 + ] + ] + }, + { + "osmId": "174513547", + "name": null, + "lengthMeters": 654.1526715654202, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4690704, + 13.5533452 + ], + [ + 52.4691577, + 13.5531032 + ], + [ + 52.469255, + 13.5528162 + ], + [ + 52.469372, + 13.5524732 + ], + [ + 52.4694749, + 13.5522057 + ], + [ + 52.4695948, + 13.551917 + ], + [ + 52.4699388, + 13.5511252 + ], + [ + 52.4704033, + 13.5500672 + ], + [ + 52.4724385, + 13.5454341 + ] + ] + }, + { + "osmId": "174513548", + "name": null, + "lengthMeters": 166.23529973509883, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4681932, + 13.5553318 + ], + [ + 52.468311, + 13.5550859 + ], + [ + 52.468446, + 13.5547785 + ], + [ + 52.4686092, + 13.5544128 + ], + [ + 52.4687422, + 13.5541103 + ], + [ + 52.4690134, + 13.5534889 + ], + [ + 52.4690704, + 13.5533452 + ] + ] + }, + { + "osmId": "174513549", + "name": null, + "lengthMeters": 184.81050675443694, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469081, + 13.5529871 + ], + [ + 52.4686333, + 13.5539783 + ], + [ + 52.4684155, + 13.5544738 + ], + [ + 52.4682032, + 13.5549774 + ], + [ + 52.4681059, + 13.5551962 + ] + ] + }, + { + "osmId": "174528741", + "name": null, + "lengthMeters": 194.84527810761585, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4514978, + 13.6914852 + ], + [ + 52.4515359, + 13.6912524 + ], + [ + 52.4515541, + 13.6911322 + ], + [ + 52.4515773, + 13.6909542 + ], + [ + 52.4517062, + 13.6899492 + ], + [ + 52.4517157, + 13.6898751 + ], + [ + 52.451763, + 13.6894998 + ], + [ + 52.4517643, + 13.6894896 + ], + [ + 52.4517712, + 13.6894265 + ], + [ + 52.4517904, + 13.6892571 + ], + [ + 52.4518069, + 13.6890906 + ], + [ + 52.4518208, + 13.6889072 + ], + [ + 52.4518285, + 13.6888151 + ], + [ + 52.4518365, + 13.6886879 + ], + [ + 52.4518378, + 13.6886668 + ] + ] + }, + { + "osmId": "174528746", + "name": null, + "lengthMeters": 1005.8059804347271, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4580074, + 13.6020317 + ], + [ + 52.4580078, + 13.6020252 + ], + [ + 52.4580109, + 13.601882 + ], + [ + 52.4580289, + 13.6013595 + ], + [ + 52.4580403, + 13.6010044 + ], + [ + 52.4580501, + 13.6007649 + ], + [ + 52.4580643, + 13.6004444 + ], + [ + 52.4580724, + 13.6002905 + ], + [ + 52.4581001, + 13.5999087 + ], + [ + 52.458136, + 13.5995122 + ], + [ + 52.4581665, + 13.5992244 + ], + [ + 52.4582091, + 13.5988413 + ], + [ + 52.4583348, + 13.5978359 + ], + [ + 52.4584034, + 13.5972869 + ], + [ + 52.4584548, + 13.596841 + ], + [ + 52.4584942, + 13.5963926 + ], + [ + 52.4585277, + 13.5959121 + ], + [ + 52.4585497, + 13.5954832 + ], + [ + 52.4585707, + 13.5948769 + ], + [ + 52.4586051, + 13.5937453 + ], + [ + 52.4586608, + 13.5917867 + ], + [ + 52.4586714, + 13.5913847 + ], + [ + 52.4586773, + 13.5909696 + ], + [ + 52.4586778, + 13.5906396 + ], + [ + 52.4586698, + 13.590165 + ], + [ + 52.4586592, + 13.5898072 + ], + [ + 52.4586211, + 13.5887962 + ], + [ + 52.4586035, + 13.5883731 + ], + [ + 52.4585618, + 13.5872683 + ] + ] + }, + { + "osmId": "174528747", + "name": null, + "lengthMeters": 130.96773783025822, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4579183, + 13.604517 + ], + [ + 52.4579294, + 13.6043262 + ], + [ + 52.4579365, + 13.6042093 + ], + [ + 52.4579443, + 13.6040393 + ], + [ + 52.4579524, + 13.6037751 + ], + [ + 52.4579606, + 13.6035678 + ], + [ + 52.4579662, + 13.6033867 + ], + [ + 52.4579695, + 13.603281 + ], + [ + 52.4579737, + 13.6031455 + ], + [ + 52.4579906, + 13.602588 + ] + ] + }, + { + "osmId": "174528748", + "name": null, + "lengthMeters": 167.63937257892098, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4378219, + 13.723177 + ], + [ + 52.4379182, + 13.7230692 + ], + [ + 52.4379219, + 13.7230651 + ], + [ + 52.4380981, + 13.7228679 + ], + [ + 52.4382113, + 13.7227499 + ], + [ + 52.4384902, + 13.7224592 + ], + [ + 52.4385198, + 13.7224284 + ], + [ + 52.4390294, + 13.7218932 + ], + [ + 52.4390886, + 13.7218365 + ] + ] + }, + { + "osmId": "174528749", + "name": null, + "lengthMeters": 165.30236051008185, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5000429, + 13.4821657 + ], + [ + 52.5006402, + 13.4805038 + ], + [ + 52.5007052, + 13.4803246 + ], + [ + 52.5007969, + 13.480073 + ], + [ + 52.5007985, + 13.4800689 + ], + [ + 52.5008001, + 13.4800642 + ] + ] + }, + { + "osmId": "174528750", + "name": null, + "lengthMeters": 79.15955223670652, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5015025, + 13.4776519 + ], + [ + 52.5015652, + 13.4771606 + ], + [ + 52.5015939, + 13.4769326 + ], + [ + 52.5016296, + 13.4767039 + ], + [ + 52.5016641, + 13.4765136 + ] + ] + }, + { + "osmId": "174528751", + "name": null, + "lengthMeters": 192.35779119634088, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4578871, + 13.6016885 + ], + [ + 52.457876, + 13.6020236 + ], + [ + 52.4578711, + 13.6021959 + ], + [ + 52.4578403, + 13.6032689 + ], + [ + 52.4578369, + 13.6033857 + ], + [ + 52.4578263, + 13.6037558 + ], + [ + 52.4578073, + 13.6043191 + ], + [ + 52.457806, + 13.6043672 + ], + [ + 52.4578018, + 13.604524 + ] + ] + }, + { + "osmId": "174528752", + "name": null, + "lengthMeters": 167.7597309880134, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008001, + 13.4800642 + ], + [ + 52.5008722, + 13.4798626 + ], + [ + 52.5010161, + 13.4794596 + ], + [ + 52.5010671, + 13.4793163 + ], + [ + 52.5011492, + 13.4790806 + ], + [ + 52.5011867, + 13.4789719 + ], + [ + 52.5012607, + 13.4787373 + ], + [ + 52.5013288, + 13.4784919 + ], + [ + 52.5013892, + 13.4782427 + ], + [ + 52.5014488, + 13.4779573 + ], + [ + 52.5014609, + 13.4778948 + ], + [ + 52.5014688, + 13.4778513 + ] + ] + }, + { + "osmId": "174656960", + "name": null, + "lengthMeters": 339.44578855161717, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0348353, + 11.7112779 + ], + [ + 48.0345971, + 11.7115293 + ], + [ + 48.034504, + 11.7116276 + ], + [ + 48.0338231, + 11.7123464 + ], + [ + 48.0329282, + 11.7133002 + ], + [ + 48.0328358, + 11.7133986 + ], + [ + 48.0327489, + 11.7134912 + ], + [ + 48.0324722, + 11.7137861 + ], + [ + 48.0323853, + 11.7138769 + ], + [ + 48.0323646, + 11.7138985 + ], + [ + 48.0323452, + 11.7139187 + ] + ] + }, + { + "osmId": "174931174", + "name": null, + "lengthMeters": 222.64768420871223, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.514027, + 13.5213569 + ], + [ + 52.5140006, + 13.5225901 + ], + [ + 52.5139599, + 13.524417 + ], + [ + 52.5139562, + 13.5245759 + ], + [ + 52.5139538, + 13.5246449 + ] + ] + }, + { + "osmId": "175180966", + "name": null, + "lengthMeters": 151.34849579219073, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467762, + 13.5575544 + ], + [ + 52.5469014, + 13.557667 + ], + [ + 52.547035, + 13.5577904 + ], + [ + 52.5473681, + 13.5580377 + ], + [ + 52.5475567, + 13.5581971 + ], + [ + 52.5475908, + 13.558226 + ], + [ + 52.5476246, + 13.5582607 + ], + [ + 52.5476319, + 13.5582719 + ], + [ + 52.5476556, + 13.558307 + ], + [ + 52.5476727, + 13.5583423 + ], + [ + 52.547695, + 13.5583968 + ], + [ + 52.547713, + 13.5584541 + ], + [ + 52.5477249, + 13.558517 + ], + [ + 52.5477306, + 13.5585869 + ], + [ + 52.5477308, + 13.5586634 + ], + [ + 52.5477283, + 13.5587195 + ], + [ + 52.547707, + 13.5588756 + ] + ] + }, + { + "osmId": "175440860", + "name": null, + "lengthMeters": 203.00914372170962, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4809955, + 13.5259193 + ], + [ + 52.4809849, + 13.5259433 + ], + [ + 52.4809592, + 13.5260015 + ], + [ + 52.4807177, + 13.5265486 + ], + [ + 52.480574, + 13.5268781 + ], + [ + 52.4804432, + 13.5271781 + ], + [ + 52.4803399, + 13.5274119 + ], + [ + 52.480177, + 13.5277807 + ], + [ + 52.480171, + 13.5277942 + ], + [ + 52.4799319, + 13.5283557 + ] + ] + }, + { + "osmId": "175479658", + "name": null, + "lengthMeters": 142.9019344951476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5258233, + 13.4424284 + ], + [ + 52.5258413, + 13.442625 + ], + [ + 52.5258575, + 13.4427308 + ], + [ + 52.5260975, + 13.4437525 + ], + [ + 52.5261072, + 13.4438308 + ], + [ + 52.5261088, + 13.44389 + ], + [ + 52.5261046, + 13.4439886 + ], + [ + 52.5260945, + 13.4440698 + ], + [ + 52.5260809, + 13.444139 + ], + [ + 52.5260608, + 13.4442116 + ], + [ + 52.5260206, + 13.4443131 + ], + [ + 52.5259767, + 13.4444023 + ] + ] + }, + { + "osmId": "175479659", + "name": null, + "lengthMeters": 356.63456133834825, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.523262, + 13.4331835 + ], + [ + 52.5232674, + 13.4326467 + ], + [ + 52.5232675, + 13.4326208 + ], + [ + 52.5232665, + 13.4325203 + ], + [ + 52.5232611, + 13.4321802 + ], + [ + 52.5232347, + 13.4312322 + ], + [ + 52.5232103, + 13.4301635 + ], + [ + 52.5232095, + 13.4300831 + ], + [ + 52.5232069, + 13.4299901 + ], + [ + 52.5232045, + 13.4299074 + ], + [ + 52.5231995, + 13.4296659 + ], + [ + 52.5231965, + 13.4295384 + ], + [ + 52.5231948, + 13.4294652 + ], + [ + 52.5231593, + 13.4279157 + ] + ] + }, + { + "osmId": "175479660", + "name": null, + "lengthMeters": 158.5538432996599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5295218, + 13.4604277 + ], + [ + 52.5294193, + 13.4599623 + ], + [ + 52.5291892, + 13.4589111 + ], + [ + 52.5290361, + 13.458224 + ] + ] + }, + { + "osmId": "175608067", + "name": null, + "lengthMeters": 625.0446316169878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6358266, + 9.9523275 + ], + [ + 53.637602, + 9.9516495 + ], + [ + 53.6395553, + 9.9507578 + ], + [ + 53.6401082, + 9.9505019 + ], + [ + 53.6402359, + 9.9504428 + ], + [ + 53.6406719, + 9.9502826 + ], + [ + 53.6412678, + 9.9499632 + ] + ] + }, + { + "osmId": "175616031", + "name": null, + "lengthMeters": 79.82393439973266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5521431, + 13.4243608 + ], + [ + 52.5524063, + 13.4246257 + ], + [ + 52.5524266, + 13.4246473 + ], + [ + 52.5524603, + 13.4246834 + ], + [ + 52.5524882, + 13.4247236 + ], + [ + 52.5525036, + 13.4247516 + ], + [ + 52.5525166, + 13.4247797 + ], + [ + 52.5525294, + 13.4248074 + ], + [ + 52.5525472, + 13.4248562 + ], + [ + 52.5525598, + 13.4249085 + ], + [ + 52.552569, + 13.4249691 + ], + [ + 52.5525718, + 13.4250176 + ], + [ + 52.5525721, + 13.4250662 + ], + [ + 52.5525644, + 13.425191 + ] + ] + }, + { + "osmId": "175760032", + "name": null, + "lengthMeters": 263.76268158513363, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4535758, + 13.5686314 + ], + [ + 52.4533264, + 13.5689103 + ], + [ + 52.4528886, + 13.5693963 + ], + [ + 52.4527981, + 13.569492 + ], + [ + 52.4527148, + 13.5695906 + ], + [ + 52.4526743, + 13.5696369 + ], + [ + 52.4522252, + 13.5701559 + ], + [ + 52.4521136, + 13.5702918 + ], + [ + 52.4520146, + 13.5704155 + ], + [ + 52.4518719, + 13.5706144 + ], + [ + 52.4517231, + 13.570824 + ], + [ + 52.4516579, + 13.5709158 + ] + ] + }, + { + "osmId": "175760034", + "name": null, + "lengthMeters": 94.88948319806171, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4627662, + 13.512472 + ], + [ + 52.4627572, + 13.5125127 + ], + [ + 52.4626821, + 13.5128483 + ], + [ + 52.4625784, + 13.5133044 + ], + [ + 52.4625068, + 13.513617 + ], + [ + 52.4625041, + 13.5136306 + ], + [ + 52.4624705, + 13.5137858 + ] + ] + }, + { + "osmId": "175777883", + "name": null, + "lengthMeters": 294.4252019027156, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.526688, + 13.4856123 + ], + [ + 52.5267537, + 13.4829353 + ], + [ + 52.5267607, + 13.4826513 + ], + [ + 52.5267637, + 13.4821953 + ], + [ + 52.5267714, + 13.4819329 + ], + [ + 52.526782, + 13.4815691 + ], + [ + 52.5267873, + 13.4812634 + ] + ] + }, + { + "osmId": "175803768", + "name": "Wendeanlage Westendstra\u00dfe", + "lengthMeters": 162.00945244890477, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340274, + 11.5222186 + ], + [ + 48.134137, + 11.522378 + ], + [ + 48.1342325, + 11.5225181 + ], + [ + 48.1342831, + 11.5225924 + ], + [ + 48.134324, + 11.5226545 + ], + [ + 48.1344129, + 11.5227759 + ], + [ + 48.1344176, + 11.5227815 + ], + [ + 48.1344596, + 11.5228431 + ], + [ + 48.1345103, + 11.5229202 + ], + [ + 48.1345281, + 11.5229466 + ], + [ + 48.1347651, + 11.5232984 + ], + [ + 48.1350663, + 11.5237489 + ] + ] + }, + { + "osmId": "175857460", + "name": null, + "lengthMeters": 537.9533028107014, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263923, + 13.4992603 + ], + [ + 52.526401, + 13.4989675 + ], + [ + 52.5264353, + 13.4976022 + ], + [ + 52.5265324, + 13.4929926 + ], + [ + 52.5265616, + 13.4913133 + ] + ] + }, + { + "osmId": "175857462", + "name": null, + "lengthMeters": 563.1954975623783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199423, + 13.499405 + ], + [ + 52.5199921, + 13.4994077 + ], + [ + 52.5202273, + 13.4994214 + ], + [ + 52.5204439, + 13.4994339 + ], + [ + 52.5206411, + 13.4994454 + ], + [ + 52.5208927, + 13.4994543 + ], + [ + 52.5210418, + 13.4994686 + ], + [ + 52.521133, + 13.4994756 + ], + [ + 52.5211735, + 13.4994774 + ], + [ + 52.5213208, + 13.4994856 + ], + [ + 52.5214086, + 13.4994899 + ], + [ + 52.5216022, + 13.4994997 + ], + [ + 52.5216401, + 13.4995023 + ], + [ + 52.5216908, + 13.4995057 + ], + [ + 52.5220347, + 13.499529 + ], + [ + 52.5221874, + 13.4995393 + ], + [ + 52.5226916, + 13.4995733 + ], + [ + 52.5227918, + 13.4995801 + ], + [ + 52.5229659, + 13.4995919 + ], + [ + 52.5230345, + 13.4995963 + ], + [ + 52.5231037, + 13.4996008 + ], + [ + 52.5234914, + 13.4996257 + ], + [ + 52.5236139, + 13.4996336 + ], + [ + 52.5236942, + 13.4996388 + ], + [ + 52.5240962, + 13.4996568 + ], + [ + 52.524419, + 13.4996786 + ], + [ + 52.5248287, + 13.4997062 + ], + [ + 52.5250035, + 13.4997195 + ] + ] + }, + { + "osmId": "175857481", + "name": null, + "lengthMeters": 301.5589951949882, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262546, + 13.5045772 + ], + [ + 52.5262479, + 13.5047417 + ], + [ + 52.5262409, + 13.5048307 + ], + [ + 52.5262303, + 13.5049192 + ], + [ + 52.5262029, + 13.5050591 + ], + [ + 52.5261661, + 13.5052096 + ], + [ + 52.5261177, + 13.5053559 + ], + [ + 52.5260341, + 13.5055382 + ], + [ + 52.5259957, + 13.5056035 + ], + [ + 52.5259568, + 13.5056614 + ], + [ + 52.525856, + 13.5058056 + ], + [ + 52.5258036, + 13.5058793 + ], + [ + 52.5257539, + 13.50596 + ], + [ + 52.5256976, + 13.5060554 + ], + [ + 52.52565, + 13.5061556 + ], + [ + 52.5256174, + 13.5062361 + ], + [ + 52.5255882, + 13.5063177 + ], + [ + 52.5255613, + 13.5064047 + ], + [ + 52.5255383, + 13.5064955 + ], + [ + 52.5255122, + 13.5066245 + ], + [ + 52.5254953, + 13.5067326 + ], + [ + 52.5254859, + 13.5068364 + ], + [ + 52.5254797, + 13.5069501 + ], + [ + 52.525478, + 13.5070705 + ], + [ + 52.5254631, + 13.5082886 + ], + [ + 52.5254615, + 13.5084195 + ], + [ + 52.5254597, + 13.5086196 + ] + ] + }, + { + "osmId": "175859608", + "name": null, + "lengthMeters": 227.70954724594876, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5263422, + 13.5003621 + ], + [ + 52.5263393, + 13.5005029 + ], + [ + 52.5263343, + 13.5007442 + ], + [ + 52.52632, + 13.5014324 + ], + [ + 52.5263062, + 13.5020951 + ], + [ + 52.5262905, + 13.5028499 + ], + [ + 52.5262723, + 13.5037261 + ] + ] + }, + { + "osmId": "175859960", + "name": null, + "lengthMeters": 563.0225904518985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5250043, + 13.4996692 + ], + [ + 52.5249062, + 13.4996642 + ], + [ + 52.5245457, + 13.4996434 + ], + [ + 52.524135, + 13.4996196 + ], + [ + 52.5240974, + 13.4996178 + ], + [ + 52.5240524, + 13.4996149 + ], + [ + 52.5239635, + 13.4996097 + ], + [ + 52.5231484, + 13.4995626 + ], + [ + 52.5231047, + 13.4995599 + ], + [ + 52.5228802, + 13.4995462 + ], + [ + 52.5226924, + 13.4995347 + ], + [ + 52.5223866, + 13.499516 + ], + [ + 52.5221902, + 13.499504 + ], + [ + 52.5220341, + 13.4994945 + ], + [ + 52.5215274, + 13.4994636 + ], + [ + 52.5215077, + 13.4994624 + ], + [ + 52.5214754, + 13.4994604 + ], + [ + 52.521323, + 13.4994453 + ], + [ + 52.5211669, + 13.4994323 + ], + [ + 52.5210936, + 13.4994263 + ], + [ + 52.521051, + 13.4994246 + ], + [ + 52.5209808, + 13.4994198 + ], + [ + 52.5207795, + 13.4994073 + ], + [ + 52.5207566, + 13.4994048 + ], + [ + 52.5204448, + 13.4993858 + ], + [ + 52.5203468, + 13.4993798 + ], + [ + 52.5203418, + 13.4993795 + ], + [ + 52.5203373, + 13.4993792 + ], + [ + 52.5202284, + 13.4993726 + ], + [ + 52.5199446, + 13.4993553 + ] + ] + }, + { + "osmId": "175867521", + "name": null, + "lengthMeters": 136.0621733053677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.462641, + 13.5140478 + ], + [ + 52.4628705, + 13.5139799 + ], + [ + 52.4629875, + 13.5139535 + ], + [ + 52.4633219, + 13.5138845 + ], + [ + 52.4638531, + 13.5137759 + ] + ] + }, + { + "osmId": "175867524", + "name": null, + "lengthMeters": 95.24036036375054, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4843043, + 13.50889 + ], + [ + 52.4842947, + 13.5094927 + ], + [ + 52.4842928, + 13.5095784 + ], + [ + 52.4842911, + 13.5096509 + ], + [ + 52.4842779, + 13.5102958 + ] + ] + }, + { + "osmId": "175925594", + "name": null, + "lengthMeters": 338.42199782159105, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4511772, + 13.5716959 + ], + [ + 52.4511995, + 13.5716627 + ], + [ + 52.4516146, + 13.5710431 + ], + [ + 52.4517423, + 13.5708562 + ], + [ + 52.4519057, + 13.5706236 + ], + [ + 52.4520024, + 13.5704864 + ], + [ + 52.4521257, + 13.5703307 + ], + [ + 52.4523578, + 13.5700511 + ], + [ + 52.4527264, + 13.5696181 + ], + [ + 52.4528116, + 13.5695265 + ], + [ + 52.4528785, + 13.5694531 + ], + [ + 52.4529015, + 13.5694275 + ], + [ + 52.4533375, + 13.5689413 + ], + [ + 52.453588, + 13.568662 + ] + ] + }, + { + "osmId": "175925595", + "name": null, + "lengthMeters": 207.41637422087518, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4477598, + 13.5750786 + ], + [ + 52.4475913, + 13.5752411 + ], + [ + 52.4474898, + 13.575336 + ], + [ + 52.4474629, + 13.5753596 + ], + [ + 52.4474484, + 13.5753698 + ], + [ + 52.4474358, + 13.5753787 + ], + [ + 52.4474066, + 13.5753977 + ], + [ + 52.4473692, + 13.575417 + ], + [ + 52.4473427, + 13.5754281 + ], + [ + 52.4473104, + 13.5754367 + ], + [ + 52.4472839, + 13.575441 + ], + [ + 52.4472638, + 13.575442 + ], + [ + 52.4472565, + 13.5754424 + ], + [ + 52.4472302, + 13.5754425 + ], + [ + 52.447189, + 13.5754378 + ], + [ + 52.4471503, + 13.5754258 + ], + [ + 52.4471375, + 13.5754217 + ], + [ + 52.4471316, + 13.5754198 + ], + [ + 52.4471247, + 13.5754176 + ], + [ + 52.4470904, + 13.5754029 + ], + [ + 52.4470478, + 13.5753795 + ], + [ + 52.4469964, + 13.5753583 + ], + [ + 52.4469919, + 13.5753561 + ], + [ + 52.4468852, + 13.5753038 + ], + [ + 52.446815, + 13.575267 + ], + [ + 52.4467577, + 13.5752365 + ], + [ + 52.4467017, + 13.5752061 + ], + [ + 52.4465989, + 13.5751458 + ], + [ + 52.446541, + 13.5751093 + ], + [ + 52.4464627, + 13.5750615 + ], + [ + 52.4463096, + 13.5749587 + ], + [ + 52.4462714, + 13.5749339 + ], + [ + 52.4462412, + 13.5749134 + ], + [ + 52.4460203, + 13.5747638 + ] + ] + }, + { + "osmId": "175925596", + "name": null, + "lengthMeters": 158.83376057918207, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4500115, + 13.5733871 + ], + [ + 52.449897, + 13.5735491 + ], + [ + 52.4497315, + 13.5737346 + ], + [ + 52.4496061, + 13.5738699 + ], + [ + 52.4495193, + 13.5739539 + ], + [ + 52.4494216, + 13.5740284 + ], + [ + 52.449279, + 13.5741227 + ], + [ + 52.448778, + 13.5744064 + ], + [ + 52.4487454, + 13.5744248 + ] + ] + }, + { + "osmId": "175925602", + "name": "Bahnhofstra\u00dfe", + "lengthMeters": 115.91787628115489, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4511958, + 13.5723987 + ], + [ + 52.4515723, + 13.5728968 + ], + [ + 52.4516708, + 13.5730217 + ], + [ + 52.4520145, + 13.5734575 + ] + ] + }, + { + "osmId": "175929306", + "name": null, + "lengthMeters": 83.91531529874746, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120788, + 13.4992726 + ], + [ + 52.5120506, + 13.4992007 + ], + [ + 52.5119514, + 13.4989486 + ], + [ + 52.5119438, + 13.498924 + ], + [ + 52.5119353, + 13.4988935 + ], + [ + 52.511926, + 13.4988512 + ], + [ + 52.511922, + 13.4988157 + ], + [ + 52.5119204, + 13.4987812 + ], + [ + 52.5119211, + 13.498471 + ], + [ + 52.5119211, + 13.4984461 + ], + [ + 52.511927, + 13.4981961 + ], + [ + 52.5119292, + 13.498104 + ] + ] + }, + { + "osmId": "176006611", + "name": null, + "lengthMeters": 147.5189399072423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4417003, + 13.5847345 + ], + [ + 52.4421483, + 13.5835369 + ], + [ + 52.4424012, + 13.5828867 + ] + ] + }, + { + "osmId": "176023646", + "name": null, + "lengthMeters": 292.87574266333763, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4377218, + 13.5822799 + ], + [ + 52.438125, + 13.5822116 + ], + [ + 52.4382587, + 13.5821803 + ], + [ + 52.4383255, + 13.582162 + ], + [ + 52.4386465, + 13.5820621 + ], + [ + 52.4387147, + 13.5820447 + ], + [ + 52.4388331, + 13.5820171 + ], + [ + 52.4390352, + 13.5819803 + ], + [ + 52.4393333, + 13.5819262 + ], + [ + 52.4396615, + 13.5818717 + ], + [ + 52.4399453, + 13.5818245 + ], + [ + 52.440087, + 13.5817997 + ], + [ + 52.4402953, + 13.5817629 + ], + [ + 52.4403351, + 13.5817558 + ] + ] + }, + { + "osmId": "176063659", + "name": null, + "lengthMeters": 324.0594753690019, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4442109, + 13.5771937 + ], + [ + 52.4441882, + 13.5773972 + ], + [ + 52.4441716, + 13.5775119 + ], + [ + 52.4441489, + 13.5776959 + ], + [ + 52.4441376, + 13.5777721 + ], + [ + 52.4441115, + 13.5779342 + ], + [ + 52.4440885, + 13.5780526 + ], + [ + 52.4440629, + 13.5781655 + ], + [ + 52.4440354, + 13.5782724 + ], + [ + 52.4439616, + 13.5785554 + ], + [ + 52.4438978, + 13.5787699 + ], + [ + 52.4438541, + 13.5789182 + ], + [ + 52.4438056, + 13.5790651 + ], + [ + 52.4437355, + 13.5792645 + ], + [ + 52.4432622, + 13.5805178 + ], + [ + 52.4431959, + 13.5806943 + ], + [ + 52.4429173, + 13.5814366 + ] + ] + }, + { + "osmId": "176072021", + "name": null, + "lengthMeters": 207.55883616817476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4583513, + 13.5117654 + ], + [ + 52.457952, + 13.5113855 + ], + [ + 52.4577152, + 13.5111619 + ], + [ + 52.4575996, + 13.5110528 + ], + [ + 52.4574923, + 13.5109519 + ], + [ + 52.4567332, + 13.5102382 + ] + ] + }, + { + "osmId": "176072022", + "name": null, + "lengthMeters": 158.64730823225676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.460716, + 13.5132456 + ], + [ + 52.4593452, + 13.5125963 + ] + ] + }, + { + "osmId": "176072023", + "name": null, + "lengthMeters": 158.5481231200735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.459329, + 13.5126356 + ], + [ + 52.460257, + 13.5130748 + ], + [ + 52.4606991, + 13.5132836 + ] + ] + }, + { + "osmId": "176156043", + "name": null, + "lengthMeters": 121.69740205593857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4386058, + 13.5926794 + ], + [ + 52.4382954, + 13.5934925 + ], + [ + 52.4382872, + 13.5935191 + ], + [ + 52.4382796, + 13.5935461 + ], + [ + 52.4382661, + 13.5936017 + ], + [ + 52.4382608, + 13.5936316 + ], + [ + 52.4382556, + 13.5936613 + ], + [ + 52.4382533, + 13.5936916 + ], + [ + 52.4382525, + 13.593722 + ], + [ + 52.4382537, + 13.5937497 + ], + [ + 52.438256, + 13.5937774 + ], + [ + 52.4382598, + 13.5938058 + ], + [ + 52.4382648, + 13.5938336 + ], + [ + 52.4382718, + 13.5938576 + ], + [ + 52.4382799, + 13.5938804 + ], + [ + 52.4382878, + 13.5939016 + ], + [ + 52.4382972, + 13.5939228 + ], + [ + 52.4383129, + 13.5939525 + ], + [ + 52.438325, + 13.5939696 + ], + [ + 52.4383375, + 13.5939816 + ], + [ + 52.4383627, + 13.5939985 + ], + [ + 52.4383819, + 13.5940069 + ], + [ + 52.4384015, + 13.5940138 + ], + [ + 52.4384215, + 13.5940184 + ], + [ + 52.4384406, + 13.5940207 + ], + [ + 52.4384562, + 13.5940203 + ], + [ + 52.4384719, + 13.5940184 + ], + [ + 52.4384897, + 13.59401 + ], + [ + 52.4385071, + 13.5940009 + ] + ] + }, + { + "osmId": "176156044", + "name": null, + "lengthMeters": 178.64470716499542, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4385071, + 13.5940009 + ], + [ + 52.4385203, + 13.5939905 + ], + [ + 52.438533, + 13.5939794 + ], + [ + 52.4385494, + 13.5939607 + ], + [ + 52.4385652, + 13.5939402 + ], + [ + 52.4385809, + 13.593908 + ], + [ + 52.4385944, + 13.5938731 + ], + [ + 52.4386055, + 13.5938321 + ], + [ + 52.4386143, + 13.5937919 + ], + [ + 52.4386209, + 13.5937478 + ], + [ + 52.4386238, + 13.5937036 + ], + [ + 52.438622, + 13.593672 + ], + [ + 52.4386007, + 13.5934028 + ], + [ + 52.4385944, + 13.5933068 + ], + [ + 52.4385892, + 13.5932108 + ], + [ + 52.4385881, + 13.5931459 + ], + [ + 52.4385891, + 13.5930811 + ], + [ + 52.4385939, + 13.5929929 + ], + [ + 52.4386065, + 13.5929002 + ], + [ + 52.4386173, + 13.5928402 + ], + [ + 52.438631, + 13.5927802 + ], + [ + 52.4386489, + 13.5927214 + ], + [ + 52.4386615, + 13.5926814 + ], + [ + 52.4386782, + 13.5926239 + ], + [ + 52.4386988, + 13.5925464 + ], + [ + 52.438734, + 13.5924547 + ], + [ + 52.4387866, + 13.5923187 + ], + [ + 52.4388111, + 13.592254 + ], + [ + 52.4388764, + 13.5920728 + ], + [ + 52.4390415, + 13.5916396 + ] + ] + }, + { + "osmId": "176156333", + "name": null, + "lengthMeters": 145.13495731230574, + "maxSpeedKph": 20.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4445296, + 13.5776928 + ], + [ + 52.4445374, + 13.5776868 + ], + [ + 52.4445704, + 13.5776617 + ], + [ + 52.4446068, + 13.5776334 + ], + [ + 52.4446321, + 13.5776147 + ], + [ + 52.4446668, + 13.5775905 + ], + [ + 52.4447093, + 13.5775608 + ], + [ + 52.4447377, + 13.5775428 + ], + [ + 52.4447941, + 13.577504 + ], + [ + 52.4448539, + 13.577459 + ], + [ + 52.4448905, + 13.5774295 + ], + [ + 52.4450484, + 13.5773083 + ], + [ + 52.4452263, + 13.5771693 + ], + [ + 52.4453455, + 13.5770784 + ], + [ + 52.4455339, + 13.5769302 + ], + [ + 52.4456247, + 13.5768588 + ], + [ + 52.4456433, + 13.576844 + ], + [ + 52.4456559, + 13.5768335 + ], + [ + 52.4456756, + 13.5768136 + ], + [ + 52.445708, + 13.5767758 + ] + ] + }, + { + "osmId": "176211355", + "name": null, + "lengthMeters": 332.7570204490058, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4431047, + 13.5026424 + ], + [ + 52.4430729, + 13.502642 + ], + [ + 52.4430624, + 13.5026419 + ], + [ + 52.4430289, + 13.5026497 + ], + [ + 52.4429803, + 13.502661 + ], + [ + 52.4429218, + 13.5026908 + ], + [ + 52.4421823, + 13.5031095 + ], + [ + 52.4421057, + 13.5031528 + ], + [ + 52.4416656, + 13.503402 + ], + [ + 52.4416014, + 13.5034382 + ], + [ + 52.4404925, + 13.5040403 + ], + [ + 52.4402635, + 13.5041647 + ] + ] + }, + { + "osmId": "176244741", + "name": null, + "lengthMeters": 76.80049231006238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4621228, + 13.5139296 + ], + [ + 52.4619422, + 13.5138427 + ], + [ + 52.461541, + 13.513643 + ], + [ + 52.4614616, + 13.513602 + ] + ] + }, + { + "osmId": "176339603", + "name": "U6", + "lengthMeters": 1553.0712168206599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.546066, + 13.3596934 + ], + [ + 52.5449771, + 13.3616182 + ], + [ + 52.5445446, + 13.3623756 + ], + [ + 52.5434702, + 13.3642414 + ], + [ + 52.5433427, + 13.3644377 + ], + [ + 52.5428467, + 13.3653021 + ], + [ + 52.5426648, + 13.3656232 + ], + [ + 52.5421926, + 13.3665127 + ], + [ + 52.5418616, + 13.3670475 + ], + [ + 52.5413125, + 13.3680076 + ], + [ + 52.540636, + 13.3691948 + ], + [ + 52.5404627, + 13.3694716 + ], + [ + 52.5401117, + 13.3700088 + ], + [ + 52.5398595, + 13.3704046 + ], + [ + 52.5397069, + 13.370643 + ], + [ + 52.5396048, + 13.3708026 + ], + [ + 52.5392812, + 13.3713695 + ], + [ + 52.5390761, + 13.3717025 + ], + [ + 52.5380608, + 13.3732435 + ], + [ + 52.5369832, + 13.3748834 + ], + [ + 52.5367407, + 13.3752544 + ], + [ + 52.5363802, + 13.3757877 + ], + [ + 52.5362296, + 13.3759723 + ] + ] + }, + { + "osmId": "176684200", + "name": null, + "lengthMeters": 111.70591382408449, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5713283, + 13.381423 + ], + [ + 52.5716532, + 13.3808397 + ], + [ + 52.5717045, + 13.3807484 + ], + [ + 52.5718592, + 13.380471 + ], + [ + 52.5720075, + 13.3802051 + ] + ] + }, + { + "osmId": "176684203", + "name": null, + "lengthMeters": 96.50149019433388, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5712418, + 13.38128 + ], + [ + 52.5708537, + 13.3819786 + ], + [ + 52.5706559, + 13.3823334 + ] + ] + }, + { + "osmId": "176706538", + "name": null, + "lengthMeters": 454.3708467825859, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.667646, + 13.2868471 + ], + [ + 52.6669743, + 13.2867775 + ], + [ + 52.6668393, + 13.2867632 + ], + [ + 52.6667044, + 13.2867538 + ], + [ + 52.6665692, + 13.2867446 + ], + [ + 52.6662381, + 13.286732 + ], + [ + 52.6661628, + 13.2867291 + ], + [ + 52.6656275, + 13.2867119 + ], + [ + 52.6655049, + 13.2867072 + ], + [ + 52.6652729, + 13.2866984 + ], + [ + 52.6651373, + 13.2866917 + ], + [ + 52.665002, + 13.2866825 + ], + [ + 52.6648674, + 13.2866726 + ], + [ + 52.6647323, + 13.2866593 + ], + [ + 52.6645977, + 13.2866452 + ], + [ + 52.6636501, + 13.2865458 + ], + [ + 52.6635648, + 13.2865368 + ] + ] + }, + { + "osmId": "177195505", + "name": null, + "lengthMeters": 809.2400938566631, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5148619, + 13.4121936 + ], + [ + 52.5157509, + 13.412303 + ], + [ + 52.5161046, + 13.4123509 + ], + [ + 52.516242, + 13.4123892 + ], + [ + 52.5166369, + 13.4124993 + ], + [ + 52.5170118, + 13.4125376 + ], + [ + 52.5172066, + 13.4125273 + ], + [ + 52.5173842, + 13.4124884 + ], + [ + 52.5176115, + 13.4123946 + ], + [ + 52.5177056, + 13.4123373 + ], + [ + 52.5177663, + 13.4123003 + ], + [ + 52.517781, + 13.4122869 + ], + [ + 52.5180065, + 13.4120809 + ], + [ + 52.5182277, + 13.4118533 + ], + [ + 52.5184563, + 13.411604 + ], + [ + 52.5185378, + 13.4115222 + ], + [ + 52.5186336, + 13.4114619 + ], + [ + 52.5186903, + 13.4114379 + ], + [ + 52.5187953, + 13.4114216 + ], + [ + 52.518881, + 13.4114294 + ], + [ + 52.5189772, + 13.411454 + ], + [ + 52.5190797, + 13.4115013 + ], + [ + 52.5191547, + 13.4115539 + ], + [ + 52.5192542, + 13.4116563 + ], + [ + 52.5193856, + 13.4118646 + ], + [ + 52.5195069, + 13.4121131 + ], + [ + 52.519891, + 13.413046 + ], + [ + 52.5200505, + 13.413444 + ], + [ + 52.5201682, + 13.4137798 + ], + [ + 52.5202952, + 13.4141644 + ], + [ + 52.5203519, + 13.4143017 + ], + [ + 52.5204183, + 13.4144438 + ], + [ + 52.5204573, + 13.4145043 + ], + [ + 52.5204999, + 13.4145615 + ], + [ + 52.520585, + 13.4146459 + ], + [ + 52.5206896, + 13.4147236 + ], + [ + 52.5207723, + 13.4147713 + ], + [ + 52.5208943, + 13.4147987 + ], + [ + 52.5209782, + 13.4147951 + ] + ] + }, + { + "osmId": "177887683", + "name": null, + "lengthMeters": 490.27536169178063, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5774406, + 13.4278056 + ], + [ + 52.5777355, + 13.4281593 + ], + [ + 52.5778022, + 13.4282311 + ], + [ + 52.5779014, + 13.4283465 + ], + [ + 52.5779843, + 13.4284318 + ], + [ + 52.5780751, + 13.428506 + ], + [ + 52.5781695, + 13.4285732 + ], + [ + 52.5782687, + 13.4286227 + ], + [ + 52.5783303, + 13.4286462 + ], + [ + 52.5783973, + 13.4286647 + ], + [ + 52.5785202, + 13.4286839 + ], + [ + 52.5785979, + 13.4286905 + ], + [ + 52.5786821, + 13.4286913 + ], + [ + 52.5788882, + 13.42869 + ], + [ + 52.5790816, + 13.4286877 + ], + [ + 52.58048, + 13.4286772 + ], + [ + 52.5807597, + 13.4286817 + ], + [ + 52.5811078, + 13.4286924 + ], + [ + 52.5812179, + 13.4286965 + ], + [ + 52.5813462, + 13.4287023 + ], + [ + 52.5814774, + 13.4286974 + ], + [ + 52.5815937, + 13.4286831 + ], + [ + 52.5817019, + 13.4286673 + ] + ] + }, + { + "osmId": "177887686", + "name": null, + "lengthMeters": 1066.4565479402545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5774544, + 13.427772 + ], + [ + 52.5773178, + 13.4276065 + ], + [ + 52.5772745, + 13.427555 + ], + [ + 52.5768971, + 13.427106 + ], + [ + 52.5768087, + 13.4269938 + ], + [ + 52.5767259, + 13.4268632 + ], + [ + 52.5766534, + 13.4267328 + ], + [ + 52.5765919, + 13.4265969 + ], + [ + 52.5765061, + 13.4263699 + ], + [ + 52.5764392, + 13.4261246 + ], + [ + 52.5763773, + 13.4258201 + ], + [ + 52.5763258, + 13.4255664 + ], + [ + 52.576211, + 13.425001 + ], + [ + 52.5761655, + 13.4247771 + ], + [ + 52.5761123, + 13.4245182 + ], + [ + 52.5760936, + 13.4244231 + ], + [ + 52.576056, + 13.4242378 + ], + [ + 52.5760379, + 13.4241487 + ], + [ + 52.5760241, + 13.4240809 + ], + [ + 52.5758249, + 13.4231001 + ], + [ + 52.5755053, + 13.4215288 + ], + [ + 52.575484, + 13.4214243 + ], + [ + 52.5754661, + 13.4213357 + ], + [ + 52.5753421, + 13.4207233 + ], + [ + 52.5750424, + 13.4192595 + ], + [ + 52.5749902, + 13.4189934 + ], + [ + 52.5749732, + 13.4189178 + ], + [ + 52.574951, + 13.4188228 + ], + [ + 52.5749284, + 13.418745 + ], + [ + 52.5748913, + 13.4186477 + ], + [ + 52.5748387, + 13.4185437 + ], + [ + 52.5747623, + 13.4184332 + ], + [ + 52.5746723, + 13.418313 + ], + [ + 52.5741637, + 13.4175916 + ], + [ + 52.5739813, + 13.4173335 + ], + [ + 52.573654, + 13.4168703 + ], + [ + 52.5734758, + 13.4166194 + ], + [ + 52.5728325, + 13.4157138 + ], + [ + 52.5724332, + 13.4151516 + ], + [ + 52.5723721, + 13.4150505 + ] + ] + }, + { + "osmId": "177887689", + "name": null, + "lengthMeters": 87.41877995474698, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5817019, + 13.4286673 + ], + [ + 52.5817115, + 13.4286658 + ], + [ + 52.5821303, + 13.4285911 + ], + [ + 52.5821982, + 13.4285802 + ], + [ + 52.5824839, + 13.4285343 + ] + ] + }, + { + "osmId": "177960921", + "name": null, + "lengthMeters": 87.10428610143711, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4422817, + 13.5819959 + ], + [ + 52.4415684, + 13.5818185 + ], + [ + 52.4415072, + 13.5818033 + ] + ] + }, + { + "osmId": "178299677", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 594.4991468984049, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.527438, + 10.2986315 + ], + [ + 53.5275337, + 10.2990341 + ], + [ + 53.5276643, + 10.2995838 + ], + [ + 53.5278852, + 10.3005136 + ], + [ + 53.5280575, + 10.3012972 + ], + [ + 53.5283564, + 10.3026755 + ], + [ + 53.5285194, + 10.3035043 + ], + [ + 53.5286612, + 10.3043232 + ], + [ + 53.5288314, + 10.3053704 + ], + [ + 53.529107, + 10.3071647 + ] + ] + }, + { + "osmId": "178299678", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 720.9346142994112, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5248231, + 10.288019 + ], + [ + 53.5259573, + 10.2926039 + ], + [ + 53.52634, + 10.2941864 + ], + [ + 53.5268663, + 10.2963122 + ], + [ + 53.5273059, + 10.2980942 + ] + ] + }, + { + "osmId": "178427187", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1598.1135091814824, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5137311, + 10.270455 + ], + [ + 53.5140578, + 10.270946 + ], + [ + 53.5146222, + 10.2717041 + ], + [ + 53.515353, + 10.2726314 + ], + [ + 53.5156865, + 10.2730009 + ], + [ + 53.5159625, + 10.2732894 + ], + [ + 53.5163106, + 10.2736127 + ], + [ + 53.516754, + 10.2740695 + ], + [ + 53.5169464, + 10.2742537 + ], + [ + 53.5180358, + 10.2752973 + ], + [ + 53.5184294, + 10.2757049 + ], + [ + 53.5187843, + 10.2760893 + ], + [ + 53.5198385, + 10.2772759 + ], + [ + 53.5204894, + 10.2781161 + ], + [ + 53.5209568, + 10.2788186 + ], + [ + 53.5215347, + 10.2797423 + ], + [ + 53.5218638, + 10.2803077 + ], + [ + 53.5221698, + 10.280864 + ], + [ + 53.522436, + 10.2813813 + ], + [ + 53.5226855, + 10.2818949 + ], + [ + 53.5228492, + 10.2822796 + ], + [ + 53.523057, + 10.2827733 + ], + [ + 53.5234857, + 10.2837889 + ], + [ + 53.523816, + 10.2846424 + ], + [ + 53.5238484, + 10.2847261 + ], + [ + 53.5241407, + 10.2856157 + ], + [ + 53.52434, + 10.2862171 + ] + ] + }, + { + "osmId": "178427188", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 81.56720590185964, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.529107, + 10.3071647 + ], + [ + 53.5291764, + 10.3077506 + ], + [ + 53.5292503, + 10.308375 + ] + ] + }, + { + "osmId": "178427190", + "name": null, + "lengthMeters": 724.8619198754112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5249211, + 10.2878967 + ], + [ + 53.5250882, + 10.2886017 + ], + [ + 53.525567, + 10.2905347 + ], + [ + 53.5260597, + 10.2925238 + ], + [ + 53.5262989, + 10.2934966 + ], + [ + 53.5263377, + 10.2936545 + ], + [ + 53.5264428, + 10.2940819 + ], + [ + 53.5270449, + 10.2965684 + ], + [ + 53.5273849, + 10.2979783 + ], + [ + 53.5273996, + 10.2980391 + ] + ] + }, + { + "osmId": "178452273", + "name": null, + "lengthMeters": 130.829638104098, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4403351, + 13.5817558 + ], + [ + 52.440558, + 13.581705 + ], + [ + 52.4406857, + 13.5816968 + ], + [ + 52.4407754, + 13.5816938 + ], + [ + 52.4408768, + 13.5816976 + ], + [ + 52.4409572, + 13.5817081 + ], + [ + 52.4410357, + 13.581727 + ], + [ + 52.4415027, + 13.581846 + ] + ] + }, + { + "osmId": "178452277", + "name": null, + "lengthMeters": 325.51785195235794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4429414, + 13.5814563 + ], + [ + 52.443069, + 13.5811288 + ], + [ + 52.4432242, + 13.5807163 + ], + [ + 52.4432757, + 13.5805796 + ], + [ + 52.4437612, + 13.5792897 + ], + [ + 52.4438317, + 13.5790883 + ], + [ + 52.4438792, + 13.5789406 + ], + [ + 52.4439252, + 13.5787926 + ], + [ + 52.4439801, + 13.5786007 + ], + [ + 52.4440218, + 13.5784521 + ], + [ + 52.4440484, + 13.5783615 + ], + [ + 52.4440566, + 13.5783339 + ], + [ + 52.4440944, + 13.5781872 + ], + [ + 52.4441228, + 13.5780709 + ], + [ + 52.4441441, + 13.5779683 + ], + [ + 52.4441625, + 13.5778617 + ], + [ + 52.4441873, + 13.5777159 + ], + [ + 52.4441964, + 13.5776284 + ], + [ + 52.4442001, + 13.5775687 + ], + [ + 52.4441972, + 13.5774594 + ], + [ + 52.444198, + 13.5774169 + ], + [ + 52.4442, + 13.5773159 + ], + [ + 52.4442109, + 13.5771937 + ] + ] + }, + { + "osmId": "178494429", + "name": null, + "lengthMeters": 533.7831356886578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5507537, + 13.4438349 + ], + [ + 52.5509252, + 13.4432848 + ], + [ + 52.5510723, + 13.4428189 + ], + [ + 52.5511146, + 13.4426848 + ], + [ + 52.5511539, + 13.4425612 + ], + [ + 52.5513184, + 13.442039 + ], + [ + 52.5514705, + 13.4415572 + ], + [ + 52.5514969, + 13.4414734 + ], + [ + 52.5515197, + 13.4414007 + ], + [ + 52.5515968, + 13.4411566 + ], + [ + 52.5517376, + 13.4407109 + ], + [ + 52.5517635, + 13.4406289 + ], + [ + 52.551787, + 13.4405544 + ], + [ + 52.5518541, + 13.4403417 + ], + [ + 52.5519315, + 13.4400961 + ], + [ + 52.5521062, + 13.4395419 + ], + [ + 52.5521365, + 13.4394459 + ], + [ + 52.5521676, + 13.4393473 + ], + [ + 52.5523703, + 13.4387043 + ], + [ + 52.5524056, + 13.4385924 + ], + [ + 52.5527844, + 13.4373922 + ], + [ + 52.5528123, + 13.4373026 + ], + [ + 52.5528387, + 13.4372175 + ], + [ + 52.5529626, + 13.4368255 + ] + ] + }, + { + "osmId": "178831300", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1430.6390815816428, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5076403, + 10.2512355 + ], + [ + 53.5078117, + 10.251794 + ], + [ + 53.5083433, + 10.2537542 + ], + [ + 53.5086479, + 10.2550363 + ], + [ + 53.5088991, + 10.2560686 + ], + [ + 53.5090606, + 10.2568714 + ], + [ + 53.5095117, + 10.2591864 + ], + [ + 53.509765, + 10.2604367 + ], + [ + 53.5100129, + 10.2614661 + ], + [ + 53.5100313, + 10.2615194 + ], + [ + 53.5101866, + 10.2621363 + ], + [ + 53.5105771, + 10.2634567 + ], + [ + 53.5109363, + 10.264588 + ], + [ + 53.5111542, + 10.2652152 + ], + [ + 53.5113831, + 10.2658249 + ], + [ + 53.5116316, + 10.2664473 + ], + [ + 53.5118924, + 10.2670126 + ], + [ + 53.5122406, + 10.2677629 + ], + [ + 53.5125439, + 10.2683533 + ], + [ + 53.5128578, + 10.2689645 + ], + [ + 53.513173, + 10.269535 + ], + [ + 53.5135606, + 10.2701868 + ] + ] + }, + { + "osmId": "178851193", + "name": null, + "lengthMeters": 76.3302598599418, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4451127, + 13.5741717 + ], + [ + 52.4450608, + 13.5741435 + ], + [ + 52.44504, + 13.5741334 + ], + [ + 52.4450223, + 13.5741275 + ], + [ + 52.4450159, + 13.5741253 + ], + [ + 52.445006, + 13.5741224 + ], + [ + 52.4449994, + 13.5741209 + ], + [ + 52.4449895, + 13.5741194 + ], + [ + 52.4449767, + 13.574118 + ], + [ + 52.4449507, + 13.5741193 + ], + [ + 52.444937, + 13.5741217 + ], + [ + 52.4449265, + 13.5741251 + ], + [ + 52.4448871, + 13.5741381 + ], + [ + 52.4448551, + 13.5741501 + ], + [ + 52.4448212, + 13.5741583 + ], + [ + 52.4447937, + 13.5741611 + ], + [ + 52.4447646, + 13.5741589 + ], + [ + 52.4447474, + 13.5741559 + ], + [ + 52.4447291, + 13.5741495 + ], + [ + 52.444704, + 13.574137 + ], + [ + 52.4446738, + 13.5741194 + ], + [ + 52.4446527, + 13.5741054 + ], + [ + 52.4446349, + 13.574091 + ], + [ + 52.4446189, + 13.574077 + ], + [ + 52.4446073, + 13.5740657 + ], + [ + 52.4445882, + 13.5740458 + ], + [ + 52.4445622, + 13.5740141 + ], + [ + 52.4445476, + 13.5739929 + ], + [ + 52.4445314, + 13.5739662 + ], + [ + 52.4445202, + 13.5739464 + ], + [ + 52.4445048, + 13.573912 + ], + [ + 52.4444923, + 13.5738802 + ] + ] + }, + { + "osmId": "178925635", + "name": null, + "lengthMeters": 1478.514767022904, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4311569, + 13.2593435 + ], + [ + 52.4315133, + 13.2605389 + ], + [ + 52.4320415, + 13.262036 + ], + [ + 52.4324483, + 13.2631883 + ], + [ + 52.4337089, + 13.266771 + ], + [ + 52.4342716, + 13.2683856 + ], + [ + 52.4350842, + 13.2706821 + ], + [ + 52.4353989, + 13.2715727 + ], + [ + 52.4355891, + 13.2721064 + ], + [ + 52.4360469, + 13.2734145 + ], + [ + 52.4363986, + 13.2744118 + ], + [ + 52.4369058, + 13.2758485 + ], + [ + 52.4372092, + 13.2767057 + ], + [ + 52.4374939, + 13.2775149 + ], + [ + 52.4377613, + 13.278269 + ] + ] + }, + { + "osmId": "178932616", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 130.685284925485, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.52434, + 10.2862171 + ], + [ + 53.5244499, + 10.2866141 + ], + [ + 53.52459, + 10.2871069 + ], + [ + 53.5248004, + 10.2879301 + ], + [ + 53.5248231, + 10.288019 + ] + ] + }, + { + "osmId": "178932618", + "name": null, + "lengthMeters": 1165.0375154678595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5137926, + 10.2703362 + ], + [ + 53.5141197, + 10.2708304 + ], + [ + 53.5143127, + 10.271122 + ], + [ + 53.5145956, + 10.2714851 + ], + [ + 53.5154044, + 10.2725233 + ], + [ + 53.51573, + 10.2728826 + ], + [ + 53.5159552, + 10.2731156 + ], + [ + 53.5184809, + 10.2755428 + ], + [ + 53.5190642, + 10.2761878 + ], + [ + 53.5194859, + 10.2766541 + ], + [ + 53.5198586, + 10.2771616 + ], + [ + 53.5200983, + 10.2774345 + ], + [ + 53.5201416, + 10.2774838 + ], + [ + 53.5203989, + 10.2778251 + ], + [ + 53.5206387, + 10.2781682 + ], + [ + 53.5206728, + 10.2782151 + ], + [ + 53.5209298, + 10.2785867 + ], + [ + 53.5212641, + 10.2790874 + ], + [ + 53.5213076, + 10.2791525 + ], + [ + 53.5217024, + 10.279801 + ], + [ + 53.521988, + 10.2803013 + ], + [ + 53.5222115, + 10.2806927 + ] + ] + }, + { + "osmId": "178932619", + "name": null, + "lengthMeters": 131.8825861038827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5244248, + 10.286085 + ], + [ + 53.5246802, + 10.2869752 + ], + [ + 53.5248298, + 10.2875487 + ], + [ + 53.5248678, + 10.2876942 + ], + [ + 53.5249211, + 10.2878967 + ] + ] + }, + { + "osmId": "178935801", + "name": null, + "lengthMeters": 82.19400370973742, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.52921, + 10.3071381 + ], + [ + 53.5292194, + 10.3072166 + ], + [ + 53.5293556, + 10.3083573 + ] + ] + }, + { + "osmId": "179081032", + "name": null, + "lengthMeters": 620.6317125829898, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530067, + 13.6249726 + ], + [ + 52.4525677, + 13.6249193 + ], + [ + 52.4524173, + 13.6249011 + ], + [ + 52.4519963, + 13.62485 + ], + [ + 52.4519153, + 13.6248403 + ], + [ + 52.4515668, + 13.6247954 + ], + [ + 52.4513858, + 13.624772 + ], + [ + 52.4512296, + 13.6247519 + ], + [ + 52.4511859, + 13.6247471 + ], + [ + 52.4508404, + 13.624709 + ], + [ + 52.4505584, + 13.624669 + ], + [ + 52.4505022, + 13.6246627 + ], + [ + 52.4504607, + 13.6246582 + ], + [ + 52.4504381, + 13.6246555 + ], + [ + 52.4493066, + 13.6245225 + ], + [ + 52.4486905, + 13.6244501 + ], + [ + 52.4481242, + 13.6243828 + ], + [ + 52.4480984, + 13.6243793 + ], + [ + 52.4478659, + 13.624354 + ], + [ + 52.4477175, + 13.6243336 + ], + [ + 52.4476607, + 13.624327 + ], + [ + 52.4474404, + 13.6242991 + ] + ] + }, + { + "osmId": "179233237", + "name": "U3", + "lengthMeters": 707.5469062130762, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4492917, + 13.2513284 + ], + [ + 52.4490945, + 13.2508572 + ], + [ + 52.4488163, + 13.2502368 + ], + [ + 52.4484291, + 13.2494434 + ], + [ + 52.448071, + 13.2487484 + ], + [ + 52.4476103, + 13.2479477 + ], + [ + 52.4467838, + 13.2466404 + ], + [ + 52.445856, + 13.2452892 + ], + [ + 52.4457867, + 13.2451853 + ], + [ + 52.4456735, + 13.2450082 + ], + [ + 52.444927, + 13.2437709 + ] + ] + }, + { + "osmId": "179233238", + "name": "U3", + "lengthMeters": 1606.8022787974628, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4503984, + 13.255216 + ], + [ + 52.4505365, + 13.2559535 + ], + [ + 52.4506555, + 13.2567917 + ], + [ + 52.4507692, + 13.2578869 + ], + [ + 52.4508269, + 13.2587049 + ], + [ + 52.4508577, + 13.2594411 + ], + [ + 52.450867, + 13.260121 + ], + [ + 52.4508657, + 13.2605346 + ], + [ + 52.4508584, + 13.2609205 + ], + [ + 52.4508286, + 13.2615698 + ], + [ + 52.4507455, + 13.2628066 + ], + [ + 52.4504904, + 13.2667298 + ], + [ + 52.4504511, + 13.2673345 + ], + [ + 52.4503873, + 13.2679668 + ], + [ + 52.4503538, + 13.268333 + ], + [ + 52.4503297, + 13.2686995 + ], + [ + 52.4503065, + 13.2690559 + ], + [ + 52.4502712, + 13.2695814 + ], + [ + 52.4502421, + 13.2702842 + ], + [ + 52.4502111, + 13.2710344 + ], + [ + 52.4498922, + 13.2758764 + ], + [ + 52.4498443, + 13.2767077 + ], + [ + 52.4498421, + 13.2771983 + ], + [ + 52.4498589, + 13.2775865 + ], + [ + 52.4498634, + 13.2776896 + ], + [ + 52.4499164, + 13.2782323 + ], + [ + 52.4499902, + 13.2787338 + ] + ] + }, + { + "osmId": "179233239", + "name": "U-Onkel-Toms-H\u00fctte - U3", + "lengthMeters": 116.7175065306511, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.450146, + 13.2538095 + ], + [ + 52.4499955, + 13.2532468 + ], + [ + 52.4498256, + 13.2526899 + ], + [ + 52.4496801, + 13.2522677 + ] + ] + }, + { + "osmId": "179233240", + "name": "U3", + "lengthMeters": 77.70697096763472, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4492478, + 13.2513544 + ], + [ + 52.4495827, + 13.2523608 + ] + ] + }, + { + "osmId": "179233241", + "name": "U3", + "lengthMeters": 76.92345099154437, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4496801, + 13.2522677 + ], + [ + 52.4492917, + 13.2513284 + ] + ] + }, + { + "osmId": "179233242", + "name": "U3", + "lengthMeters": 98.53012752065669, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4500504, + 13.2538798 + ], + [ + 52.4502318, + 13.2545133 + ], + [ + 52.4503984, + 13.255216 + ] + ] + }, + { + "osmId": "179233243", + "name": "U3", + "lengthMeters": 99.72710628397351, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4504423, + 13.2551981 + ], + [ + 52.4502957, + 13.2544624 + ], + [ + 52.450146, + 13.2538095 + ] + ] + }, + { + "osmId": "179233244", + "name": "U3", + "lengthMeters": 115.33127293750228, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4495827, + 13.2523608 + ], + [ + 52.4499475, + 13.2535459 + ], + [ + 52.4500504, + 13.2538798 + ] + ] + }, + { + "osmId": "179699938", + "name": null, + "lengthMeters": 172.35347920707952, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4356984, + 13.54196 + ], + [ + 52.4355592, + 13.5415786 + ], + [ + 52.435533, + 13.5415084 + ], + [ + 52.4354724, + 13.5413549 + ], + [ + 52.4354644, + 13.5413325 + ], + [ + 52.4354131, + 13.541187 + ], + [ + 52.4353526, + 13.5410257 + ], + [ + 52.4351347, + 13.5404481 + ], + [ + 52.4351174, + 13.5404014 + ], + [ + 52.4351039, + 13.5403658 + ], + [ + 52.4349723, + 13.5400181 + ], + [ + 52.4348827, + 13.5397985 + ] + ] + }, + { + "osmId": "179699939", + "name": null, + "lengthMeters": 456.72518340388126, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.438042, + 13.5485134 + ], + [ + 52.4379168, + 13.5481315 + ], + [ + 52.4378699, + 13.5479983 + ], + [ + 52.4377285, + 13.5476096 + ], + [ + 52.4377081, + 13.5475547 + ], + [ + 52.4376849, + 13.5474925 + ], + [ + 52.4376044, + 13.5472768 + ], + [ + 52.4375791, + 13.5472025 + ], + [ + 52.4372432, + 13.546264 + ], + [ + 52.4372349, + 13.5462409 + ], + [ + 52.437126, + 13.5459354 + ], + [ + 52.436863, + 13.5452084 + ], + [ + 52.4368119, + 13.5450558 + ], + [ + 52.436769, + 13.5449324 + ], + [ + 52.43672, + 13.5448029 + ], + [ + 52.4366977, + 13.5447423 + ], + [ + 52.4363756, + 13.5438847 + ], + [ + 52.4363608, + 13.543846 + ], + [ + 52.4362402, + 13.5435377 + ], + [ + 52.4360309, + 13.5429515 + ], + [ + 52.4360015, + 13.5428691 + ], + [ + 52.4359682, + 13.5427847 + ], + [ + 52.4359437, + 13.5427227 + ] + ] + }, + { + "osmId": "179699940", + "name": null, + "lengthMeters": 609.3339875807796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.438042, + 13.5485134 + ], + [ + 52.4380741, + 13.5486254 + ], + [ + 52.4381117, + 13.5487411 + ], + [ + 52.4383676, + 13.5494392 + ], + [ + 52.438878, + 13.5508317 + ], + [ + 52.4392704, + 13.5519025 + ], + [ + 52.4393919, + 13.5522354 + ], + [ + 52.4396214, + 13.5529017 + ], + [ + 52.4401092, + 13.5542798 + ], + [ + 52.4403292, + 13.5549032 + ], + [ + 52.4403675, + 13.5550174 + ], + [ + 52.44041, + 13.555168 + ], + [ + 52.4405323, + 13.5556199 + ], + [ + 52.4407674, + 13.5563067 + ] + ] + }, + { + "osmId": "179747076", + "name": null, + "lengthMeters": 292.94935936643765, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338329, + 11.6415919 + ], + [ + 48.1336758, + 11.6431957 + ], + [ + 48.1335505, + 11.6443544 + ], + [ + 48.1335178, + 11.6447031 + ], + [ + 48.1335196, + 11.6449364 + ], + [ + 48.1335644, + 11.6454997 + ] + ] + }, + { + "osmId": "179747077", + "name": null, + "lengthMeters": 127.24163548066315, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336467, + 11.6430026 + ], + [ + 48.1335702, + 11.6437348 + ], + [ + 48.133529, + 11.6441398 + ], + [ + 48.1335178, + 11.6444241 + ], + [ + 48.1335178, + 11.6447031 + ] + ] + }, + { + "osmId": "179747078", + "name": null, + "lengthMeters": 477.5212022459683, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1341067, + 11.6397546 + ], + [ + 48.1339958, + 11.640865 + ], + [ + 48.1338405, + 11.6423964 + ], + [ + 48.1336346, + 11.6444134 + ], + [ + 48.1335661, + 11.6449928 + ], + [ + 48.1335648, + 11.6452127 + ], + [ + 48.1335644, + 11.6454997 + ], + [ + 48.1335858, + 11.6458511 + ], + [ + 48.1335986, + 11.6461247 + ] + ] + }, + { + "osmId": "179747080", + "name": null, + "lengthMeters": 319.5585915583171, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339689, + 11.6407336 + ], + [ + 48.1335805, + 11.6444402 + ], + [ + 48.1335702, + 11.6446977 + ], + [ + 48.1335608, + 11.6449418 + ], + [ + 48.1335661, + 11.6449928 + ] + ] + }, + { + "osmId": "179747236", + "name": null, + "lengthMeters": 240.1757253283837, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337015, + 11.6462694 + ], + [ + 48.1338387, + 11.6449257 + ], + [ + 48.1339528, + 11.6437455 + ], + [ + 48.1339993, + 11.6432949 + ], + [ + 48.1340255, + 11.6430697 + ] + ] + }, + { + "osmId": "179747237", + "name": null, + "lengthMeters": 522.8603031742833, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343341, + 11.6391216 + ], + [ + 48.1341537, + 11.6410285 + ], + [ + 48.1339439, + 11.6430509 + ], + [ + 48.1338669, + 11.6437268 + ], + [ + 48.1337237, + 11.6450679 + ], + [ + 48.1336643, + 11.6458253 + ], + [ + 48.1336423, + 11.6460898 + ] + ] + }, + { + "osmId": "179747238", + "name": null, + "lengthMeters": 488.5851861745194, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342571, + 11.6390947 + ], + [ + 48.1339515, + 11.6421309 + ], + [ + 48.1337111, + 11.6444054 + ], + [ + 48.13364, + 11.6451188 + ], + [ + 48.1336006, + 11.6456043 + ] + ] + }, + { + "osmId": "179747239", + "name": null, + "lengthMeters": 522.4791804147438, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343001, + 11.6391242 + ], + [ + 48.1340589, + 11.6415381 + ], + [ + 48.1337599, + 11.6443169 + ], + [ + 48.1336973, + 11.6449981 + ], + [ + 48.133665, + 11.64532 + ], + [ + 48.1336467, + 11.6455758 + ], + [ + 48.1336364, + 11.6458484 + ], + [ + 48.1336423, + 11.6460898 + ] + ] + }, + { + "osmId": "179747240", + "name": null, + "lengthMeters": 535.6057826159885, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343788, + 11.6391269 + ], + [ + 48.1341877, + 11.6410526 + ], + [ + 48.1339761, + 11.6431662 + ], + [ + 48.1338937, + 11.6439709 + ], + [ + 48.1337434, + 11.6454219 + ], + [ + 48.1337058, + 11.6459125 + ], + [ + 48.1337015, + 11.6462694 + ] + ] + }, + { + "osmId": "179747241", + "name": null, + "lengthMeters": 526.5865767852333, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342195, + 11.639084 + ], + [ + 48.1339564, + 11.6416267 + ], + [ + 48.1337487, + 11.643716 + ], + [ + 48.1336306, + 11.6447299 + ], + [ + 48.1336091, + 11.6449525 + ], + [ + 48.1336024, + 11.645202 + ], + [ + 48.1336006, + 11.6456043 + ], + [ + 48.1336024, + 11.6457465 + ], + [ + 48.1336087, + 11.6461084 + ] + ] + }, + { + "osmId": "179944764", + "name": null, + "lengthMeters": 125.71996662909011, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4328624, + 13.1932947 + ], + [ + 52.4326778, + 13.1932317 + ], + [ + 52.4325231, + 13.1931837 + ], + [ + 52.4323704, + 13.1931425 + ], + [ + 52.4321954, + 13.1930948 + ], + [ + 52.4320176, + 13.1930501 + ], + [ + 52.4319936, + 13.1930449 + ], + [ + 52.4318763, + 13.193018 + ], + [ + 52.4317475, + 13.1929897 + ] + ] + }, + { + "osmId": "179944765", + "name": null, + "lengthMeters": 118.95956561854405, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4324395, + 13.1950432 + ], + [ + 52.4325113, + 13.1951296 + ], + [ + 52.4325812, + 13.1952104 + ], + [ + 52.4326431, + 13.1952856 + ], + [ + 52.4327427, + 13.195408 + ], + [ + 52.4328781, + 13.1955848 + ], + [ + 52.4330128, + 13.1957701 + ], + [ + 52.4331196, + 13.1959272 + ], + [ + 52.4332658, + 13.1961545 + ] + ] + }, + { + "osmId": "179944766", + "name": null, + "lengthMeters": 107.86895174783061, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4328643, + 13.1934994 + ], + [ + 52.4329247, + 13.1935173 + ], + [ + 52.4329943, + 13.1935397 + ], + [ + 52.4331675, + 13.1935994 + ], + [ + 52.4333316, + 13.1936611 + ], + [ + 52.4334971, + 13.1937329 + ], + [ + 52.4336525, + 13.1938049 + ], + [ + 52.4338052, + 13.193882 + ] + ] + }, + { + "osmId": "179944767", + "name": null, + "lengthMeters": 103.8553644500403, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4311868, + 13.1933992 + ], + [ + 52.4310276, + 13.1932453 + ], + [ + 52.4308859, + 13.1931002 + ], + [ + 52.430744, + 13.1929386 + ], + [ + 52.4305233, + 13.1926803 + ], + [ + 52.4304104, + 13.1925494 + ] + ] + }, + { + "osmId": "179944769", + "name": null, + "lengthMeters": 163.8602470107433, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4325141, + 13.1948867 + ], + [ + 52.4324011, + 13.194736 + ], + [ + 52.4322509, + 13.1945535 + ], + [ + 52.4321523, + 13.1944352 + ], + [ + 52.4320706, + 13.1943413 + ], + [ + 52.4320011, + 13.1942628 + ], + [ + 52.4318965, + 13.1941445 + ], + [ + 52.4318073, + 13.1940394 + ], + [ + 52.4317036, + 13.1939202 + ], + [ + 52.4315691, + 13.1937761 + ], + [ + 52.431418, + 13.193622 + ], + [ + 52.4313136, + 13.1935213 + ], + [ + 52.4313037, + 13.1935116 + ] + ] + }, + { + "osmId": "179944770", + "name": null, + "lengthMeters": 104.15657984693698, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4319394, + 13.1932565 + ], + [ + 52.4320532, + 13.1932889 + ], + [ + 52.4321789, + 13.1933198 + ], + [ + 52.4324148, + 13.1933817 + ], + [ + 52.4325515, + 13.1934159 + ], + [ + 52.4326513, + 13.1934425 + ], + [ + 52.4328643, + 13.1934994 + ] + ] + }, + { + "osmId": "179944773", + "name": null, + "lengthMeters": 188.95753108059628, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4310582, + 13.1934203 + ], + [ + 52.4310636, + 13.193427 + ], + [ + 52.4311748, + 13.1935672 + ], + [ + 52.4312541, + 13.1936655 + ], + [ + 52.4313455, + 13.1937751 + ], + [ + 52.4314822, + 13.1939357 + ], + [ + 52.4317286, + 13.1942188 + ], + [ + 52.4319252, + 13.1944436 + ], + [ + 52.4319824, + 13.1945129 + ], + [ + 52.4319958, + 13.1945288 + ], + [ + 52.4321115, + 13.1946634 + ], + [ + 52.4321773, + 13.1947396 + ], + [ + 52.432266, + 13.1948452 + ], + [ + 52.4323545, + 13.1949475 + ], + [ + 52.4324395, + 13.1950432 + ] + ] + }, + { + "osmId": "180202673", + "name": null, + "lengthMeters": 134.81961719500066, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.447201, + 13.6242734 + ], + [ + 52.4471421, + 13.6242722 + ], + [ + 52.4471182, + 13.6242725 + ], + [ + 52.4471064, + 13.6242727 + ], + [ + 52.447077, + 13.6242745 + ], + [ + 52.4470511, + 13.6242785 + ], + [ + 52.4470335, + 13.6242837 + ], + [ + 52.4470191, + 13.6242884 + ], + [ + 52.4470022, + 13.6242948 + ], + [ + 52.446973, + 13.6243102 + ], + [ + 52.4469513, + 13.6243239 + ], + [ + 52.4469304, + 13.624342 + ], + [ + 52.4469166, + 13.6243574 + ], + [ + 52.4469063, + 13.624371 + ], + [ + 52.4468959, + 13.6243877 + ], + [ + 52.446889, + 13.6244009 + ], + [ + 52.4468737, + 13.6244336 + ], + [ + 52.4468637, + 13.6244645 + ], + [ + 52.4468556, + 13.624494 + ], + [ + 52.4468495, + 13.6245216 + ], + [ + 52.4468444, + 13.6245455 + ], + [ + 52.4468416, + 13.6245606 + ], + [ + 52.4468398, + 13.6245751 + ], + [ + 52.4468384, + 13.6245883 + ], + [ + 52.4468367, + 13.6246091 + ], + [ + 52.446836, + 13.6246186 + ], + [ + 52.4468344, + 13.6246528 + ], + [ + 52.446831, + 13.6247346 + ], + [ + 52.4468279, + 13.6248305 + ], + [ + 52.4468179, + 13.6251885 + ], + [ + 52.4468108, + 13.6254108 + ], + [ + 52.4468035, + 13.6256436 + ], + [ + 52.4467978, + 13.6258228 + ] + ] + }, + { + "osmId": "180203313", + "name": null, + "lengthMeters": 474.16838031765417, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4566718, + 13.6237093 + ], + [ + 52.4566677, + 13.6236909 + ], + [ + 52.4566199, + 13.6234778 + ], + [ + 52.456538, + 13.6231124 + ], + [ + 52.4565264, + 13.6230608 + ], + [ + 52.4564803, + 13.6228551 + ], + [ + 52.4564266, + 13.6226157 + ], + [ + 52.4563938, + 13.6224692 + ], + [ + 52.4563422, + 13.6222393 + ], + [ + 52.4562623, + 13.6218831 + ], + [ + 52.4562393, + 13.6217805 + ], + [ + 52.456148, + 13.6213732 + ], + [ + 52.4560959, + 13.6211409 + ], + [ + 52.4560765, + 13.6210532 + ], + [ + 52.455953, + 13.6204932 + ], + [ + 52.4559001, + 13.6202521 + ], + [ + 52.4558889, + 13.6201995 + ], + [ + 52.4558274, + 13.619918 + ], + [ + 52.4557214, + 13.6194509 + ], + [ + 52.4557097, + 13.6193979 + ], + [ + 52.4556007, + 13.6189045 + ], + [ + 52.4555565, + 13.6187068 + ], + [ + 52.455487, + 13.6184034 + ], + [ + 52.4552415, + 13.6172989 + ], + [ + 52.4552258, + 13.6172343 + ], + [ + 52.455215, + 13.6171894 + ], + [ + 52.4552031, + 13.6171397 + ] + ] + }, + { + "osmId": "180354189", + "name": null, + "lengthMeters": 434.5057116327168, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5228526, + 10.0096832 + ], + [ + 53.522784, + 10.0099373 + ], + [ + 53.5227483, + 10.0100637 + ], + [ + 53.5227236, + 10.0101542 + ], + [ + 53.5226984, + 10.0102517 + ], + [ + 53.5226542, + 10.0104198 + ], + [ + 53.5226247, + 10.0105539 + ], + [ + 53.5225959, + 10.0107025 + ], + [ + 53.5225688, + 10.0108904 + ], + [ + 53.5225589, + 10.0109802 + ], + [ + 53.5225468, + 10.0110908 + ], + [ + 53.5225339, + 10.0113032 + ], + [ + 53.522532, + 10.0114197 + ], + [ + 53.5225339, + 10.0116645 + ], + [ + 53.522539, + 10.0117622 + ], + [ + 53.5225442, + 10.0118427 + ], + [ + 53.522555, + 10.01196 + ], + [ + 53.5225714, + 10.0121048 + ], + [ + 53.5225898, + 10.0122354 + ], + [ + 53.5226084, + 10.0123416 + ], + [ + 53.5226417, + 10.0125038 + ], + [ + 53.5226722, + 10.0126313 + ], + [ + 53.5227145, + 10.0127777 + ], + [ + 53.5227511, + 10.0128928 + ], + [ + 53.5227882, + 10.0129973 + ], + [ + 53.522826, + 10.0130966 + ], + [ + 53.5228782, + 10.0132155 + ], + [ + 53.5229249, + 10.0133159 + ], + [ + 53.5229777, + 10.0134177 + ], + [ + 53.5230607, + 10.0135576 + ], + [ + 53.5231501, + 10.0136908 + ], + [ + 53.5232154, + 10.013776 + ], + [ + 53.5232841, + 10.013859 + ], + [ + 53.5234251, + 10.0140068 + ], + [ + 53.5237137, + 10.0142459 + ], + [ + 53.5242839, + 10.0146733 + ] + ] + }, + { + "osmId": "180354256", + "name": null, + "lengthMeters": 116.03279134599902, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5242648, + 10.0147471 + ], + [ + 53.5238157, + 10.0144143 + ], + [ + 53.5238103, + 10.0144109 + ], + [ + 53.5236954, + 10.0143343 + ], + [ + 53.5233106, + 10.0140372 + ] + ] + }, + { + "osmId": "180354257", + "name": null, + "lengthMeters": 172.33785378773229, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5222183, + 10.0135447 + ], + [ + 53.5227028, + 10.0139152 + ], + [ + 53.5235625, + 10.0144912 + ], + [ + 53.5236469, + 10.0145539 + ] + ] + }, + { + "osmId": "180354258", + "name": null, + "lengthMeters": 246.75674206012172, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.524227, + 10.014893 + ], + [ + 53.5236619, + 10.0144727 + ], + [ + 53.5235804, + 10.0144042 + ], + [ + 53.5227379, + 10.013713 + ], + [ + 53.5222126, + 10.0133289 + ] + ] + }, + { + "osmId": "180354259", + "name": null, + "lengthMeters": 236.78703441814875, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5241937, + 10.0150216 + ], + [ + 53.5236305, + 10.0146101 + ], + [ + 53.5232348, + 10.0143479 + ], + [ + 53.5230355, + 10.0142186 + ], + [ + 53.5228343, + 10.0140881 + ], + [ + 53.5225888, + 10.0139348 + ], + [ + 53.5223999, + 10.0138088 + ], + [ + 53.5222195, + 10.0136807 + ] + ] + }, + { + "osmId": "180354260", + "name": null, + "lengthMeters": 535.8739984629912, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5244176, + 10.015268 + ], + [ + 53.5247813, + 10.0155294 + ], + [ + 53.5250963, + 10.0157641 + ], + [ + 53.5254032, + 10.0160008 + ], + [ + 53.525563, + 10.0161315 + ], + [ + 53.5257116, + 10.0162554 + ], + [ + 53.5259979, + 10.0165057 + ], + [ + 53.5262678, + 10.0167592 + ], + [ + 53.526542, + 10.0170194 + ], + [ + 53.5268079, + 10.0172805 + ], + [ + 53.5269606, + 10.0174304 + ], + [ + 53.5271276, + 10.0175907 + ], + [ + 53.5274174, + 10.0178777 + ], + [ + 53.5280298, + 10.0184691 + ], + [ + 53.5283883, + 10.018815 + ], + [ + 53.5285046, + 10.0189222 + ], + [ + 53.5286692, + 10.0190686 + ] + ] + }, + { + "osmId": "180354261", + "name": null, + "lengthMeters": 93.77763684011714, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5223243, + 10.0107714 + ], + [ + 53.5224299, + 10.0106248 + ], + [ + 53.5225151, + 10.0104908 + ], + [ + 53.5225849, + 10.0103655 + ], + [ + 53.5226417, + 10.0102507 + ], + [ + 53.5226973, + 10.0101288 + ], + [ + 53.5227427, + 10.0100161 + ], + [ + 53.522771, + 10.0099417 + ], + [ + 53.5228025, + 10.0098538 + ], + [ + 53.5228526, + 10.0096832 + ] + ] + }, + { + "osmId": "180354264", + "name": null, + "lengthMeters": 368.28167650675766, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5244916, + 10.0149824 + ], + [ + 53.5251648, + 10.0154825 + ], + [ + 53.5254821, + 10.0157339 + ], + [ + 53.5257913, + 10.0159968 + ], + [ + 53.525931, + 10.0161207 + ], + [ + 53.5263061, + 10.0164677 + ], + [ + 53.5265434, + 10.0167139 + ], + [ + 53.5267662, + 10.0169111 + ], + [ + 53.5274252, + 10.0175559 + ] + ] + }, + { + "osmId": "180360086", + "name": null, + "lengthMeters": 203.9560844012529, + "maxSpeedKph": 30.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5662573, + 13.3068238 + ], + [ + 52.5662882, + 13.3066599 + ], + [ + 52.5663079, + 13.306509 + ], + [ + 52.5663223, + 13.3063635 + ], + [ + 52.5663314, + 13.3062407 + ], + [ + 52.5663351, + 13.3060829 + ], + [ + 52.5663335, + 13.3059399 + ], + [ + 52.5663266, + 13.3058058 + ], + [ + 52.5663143, + 13.30564 + ], + [ + 52.5662999, + 13.3055015 + ], + [ + 52.5662386, + 13.3048491 + ], + [ + 52.5661393, + 13.3038885 + ], + [ + 52.5661349, + 13.3038462 + ] + ] + }, + { + "osmId": "180390329", + "name": null, + "lengthMeters": 5640.84219017425, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4180369, + 13.5799674 + ], + [ + 52.4178208, + 13.5801657 + ], + [ + 52.4177873, + 13.5801964 + ], + [ + 52.4176143, + 13.5803448 + ], + [ + 52.4174479, + 13.5804865 + ], + [ + 52.4173756, + 13.5805532 + ], + [ + 52.4173065, + 13.5806168 + ], + [ + 52.4172466, + 13.5806786 + ], + [ + 52.417115, + 13.5808146 + ], + [ + 52.4170102, + 13.5809228 + ], + [ + 52.4169779, + 13.5809468 + ], + [ + 52.4169397, + 13.5809648 + ], + [ + 52.4169072, + 13.5809693 + ], + [ + 52.4168513, + 13.5809614 + ], + [ + 52.4168184, + 13.5809311 + ], + [ + 52.4167675, + 13.5808707 + ], + [ + 52.4167362, + 13.5807998 + ], + [ + 52.4166067, + 13.5805096 + ], + [ + 52.4165935, + 13.5804801 + ], + [ + 52.4164298, + 13.5801125 + ], + [ + 52.4163318, + 13.5798925 + ], + [ + 52.416257, + 13.5797214 + ], + [ + 52.4159861, + 13.5791018 + ], + [ + 52.4159111, + 13.5789303 + ], + [ + 52.4157783, + 13.5786268 + ], + [ + 52.4157447, + 13.5785497 + ], + [ + 52.4156295, + 13.5782862 + ], + [ + 52.4155487, + 13.5781016 + ], + [ + 52.4152444, + 13.5774199 + ], + [ + 52.4151694, + 13.5772518 + ], + [ + 52.4149747, + 13.5768123 + ], + [ + 52.4147903, + 13.576405 + ], + [ + 52.4146914, + 13.5761843 + ], + [ + 52.4145278, + 13.5758164 + ], + [ + 52.4144301, + 13.5755969 + ], + [ + 52.4142983, + 13.5752987 + ], + [ + 52.4140808, + 13.5748067 + ], + [ + 52.4139887, + 13.5745969 + ], + [ + 52.4139694, + 13.5745548 + ], + [ + 52.4139496, + 13.5745164 + ], + [ + 52.4139274, + 13.5744816 + ], + [ + 52.4139058, + 13.574454 + ], + [ + 52.4138853, + 13.5744333 + ], + [ + 52.4138651, + 13.574417 + ], + [ + 52.4138427, + 13.5744022 + ], + [ + 52.4138186, + 13.5743903 + ], + [ + 52.4137954, + 13.574385 + ], + [ + 52.4137687, + 13.5743835 + ], + [ + 52.4137416, + 13.5743855 + ], + [ + 52.4137156, + 13.5743902 + ], + [ + 52.4136941, + 13.5743985 + ], + [ + 52.4136715, + 13.57441 + ], + [ + 52.4136527, + 13.5744236 + ], + [ + 52.413632, + 13.5744418 + ], + [ + 52.4136118, + 13.5744641 + ], + [ + 52.4135916, + 13.5744892 + ], + [ + 52.4135451, + 13.5745531 + ], + [ + 52.4132784, + 13.5749203 + ], + [ + 52.4131566, + 13.5750865 + ], + [ + 52.4128638, + 13.5754885 + ], + [ + 52.4122652, + 13.5763152 + ], + [ + 52.4120232, + 13.5766474 + ], + [ + 52.4118693, + 13.5769123 + ], + [ + 52.4117352, + 13.5771499 + ], + [ + 52.4109075, + 13.5787864 + ], + [ + 52.4108471, + 13.57894 + ], + [ + 52.4108352, + 13.5789798 + ], + [ + 52.4107773, + 13.5791633 + ], + [ + 52.4107442, + 13.5793884 + ], + [ + 52.4107232, + 13.579581 + ], + [ + 52.410718, + 13.5810145 + ], + [ + 52.4107156, + 13.5817668 + ], + [ + 52.4107158, + 13.5821428 + ], + [ + 52.4107217, + 13.5823478 + ], + [ + 52.4107289, + 13.5825183 + ], + [ + 52.4107312, + 13.5825544 + ], + [ + 52.4108593, + 13.5839941 + ], + [ + 52.4108928, + 13.5843661 + ], + [ + 52.4109103, + 13.5845126 + ], + [ + 52.4109319, + 13.5846333 + ], + [ + 52.4109621, + 13.5847746 + ], + [ + 52.4110394, + 13.5850412 + ], + [ + 52.4111289, + 13.5852864 + ], + [ + 52.4115118, + 13.5863615 + ], + [ + 52.4115425, + 13.5864483 + ], + [ + 52.4115712, + 13.5865396 + ], + [ + 52.4115984, + 13.5866465 + ], + [ + 52.4116148, + 13.5867367 + ], + [ + 52.4116305, + 13.5868514 + ], + [ + 52.4116388, + 13.5869671 + ], + [ + 52.4116405, + 13.5871428 + ], + [ + 52.4116379, + 13.5872074 + ], + [ + 52.4116322, + 13.587286 + ], + [ + 52.4116205, + 13.587385 + ], + [ + 52.4115882, + 13.5875619 + ], + [ + 52.4115532, + 13.5876856 + ], + [ + 52.4115092, + 13.5878016 + ], + [ + 52.4114428, + 13.5879611 + ], + [ + 52.4113668, + 13.5881344 + ], + [ + 52.411217, + 13.5884715 + ], + [ + 52.4111756, + 13.5885691 + ], + [ + 52.4110022, + 13.5889654 + ], + [ + 52.4109161, + 13.5891743 + ], + [ + 52.4108809, + 13.5892802 + ], + [ + 52.4108493, + 13.58939 + ], + [ + 52.4108252, + 13.5894952 + ], + [ + 52.4108059, + 13.5896039 + ], + [ + 52.4107947, + 13.589717 + ], + [ + 52.4107862, + 13.5898298 + ], + [ + 52.4107813, + 13.5899485 + ], + [ + 52.4107798, + 13.5900667 + ], + [ + 52.410801, + 13.5917812 + ], + [ + 52.4108119, + 13.5925726 + ], + [ + 52.4108201, + 13.5933941 + ], + [ + 52.4108391, + 13.5947021 + ], + [ + 52.4108385, + 13.5951466 + ], + [ + 52.4108323, + 13.59539 + ], + [ + 52.410814, + 13.5956214 + ], + [ + 52.4107867, + 13.5959195 + ], + [ + 52.4105296, + 13.5976177 + ], + [ + 52.4104296, + 13.5983058 + ], + [ + 52.4104208, + 13.5983641 + ], + [ + 52.4101694, + 13.599918 + ], + [ + 52.4101058, + 13.6002147 + ], + [ + 52.4100637, + 13.6003863 + ], + [ + 52.4100102, + 13.6005449 + ], + [ + 52.4099096, + 13.6008546 + ], + [ + 52.4096933, + 13.6013529 + ], + [ + 52.4094616, + 13.6018503 + ], + [ + 52.4088613, + 13.603118 + ], + [ + 52.4088018, + 13.6032649 + ], + [ + 52.408753, + 13.6034292 + ], + [ + 52.4086934, + 13.6038846 + ], + [ + 52.4086224, + 13.604455 + ], + [ + 52.4086099, + 13.6045539 + ], + [ + 52.4084054, + 13.6061703 + ], + [ + 52.4081304, + 13.6084457 + ], + [ + 52.4080824, + 13.6086389 + ], + [ + 52.4080355, + 13.608862 + ], + [ + 52.4079018, + 13.6092019 + ], + [ + 52.4077522, + 13.6095195 + ], + [ + 52.4073161, + 13.6103152 + ], + [ + 52.4070957, + 13.6107181 + ], + [ + 52.4069019, + 13.6111473 + ], + [ + 52.406815, + 13.611415 + ], + [ + 52.4067141, + 13.6117922 + ], + [ + 52.4066421, + 13.6121509 + ], + [ + 52.406597, + 13.6125428 + ], + [ + 52.4065815, + 13.6127313 + ], + [ + 52.4065736, + 13.6129692 + ], + [ + 52.4065383, + 13.6169738 + ], + [ + 52.4065294, + 13.6172261 + ], + [ + 52.4064977, + 13.6176661 + ], + [ + 52.4064521, + 13.6180152 + ], + [ + 52.4059355, + 13.6206513 + ], + [ + 52.4059303, + 13.6206767 + ], + [ + 52.4056963, + 13.621813 + ], + [ + 52.405607, + 13.6221122 + ], + [ + 52.4054889, + 13.6223709 + ], + [ + 52.4053198, + 13.622631 + ], + [ + 52.4052312, + 13.6227403 + ], + [ + 52.4051277, + 13.6228531 + ], + [ + 52.4049156, + 13.623013 + ], + [ + 52.4046968, + 13.623115 + ], + [ + 52.4031827, + 13.6234573 + ], + [ + 52.4029179, + 13.6235887 + ], + [ + 52.4019217, + 13.6242486 + ], + [ + 52.4015736, + 13.6245033 + ], + [ + 52.4014263, + 13.6246001 + ], + [ + 52.40105, + 13.6248473 + ], + [ + 52.4010228, + 13.6248659 + ], + [ + 52.3998405, + 13.6256717 + ], + [ + 52.3996551, + 13.6258111 + ], + [ + 52.3994872, + 13.6259447 + ], + [ + 52.3991052, + 13.6263373 + ], + [ + 52.3979196, + 13.627608 + ], + [ + 52.397626, + 13.627906 + ], + [ + 52.3968209, + 13.6287703 + ], + [ + 52.396711, + 13.6289128 + ], + [ + 52.3966062, + 13.6290919 + ], + [ + 52.3965229, + 13.6292657 + ], + [ + 52.3963181, + 13.6297138 + ], + [ + 52.3961097, + 13.6301253 + ], + [ + 52.3960016, + 13.6302917 + ], + [ + 52.395893, + 13.6304287 + ], + [ + 52.3956582, + 13.6306838 + ], + [ + 52.3953443, + 13.6310064 + ], + [ + 52.3950511, + 13.6313301 + ] + ] + }, + { + "osmId": "180406884", + "name": null, + "lengthMeters": 128.84840585326342, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191536, + 13.2840236 + ], + [ + 52.5191099, + 13.2840337 + ], + [ + 52.518982, + 13.2840634 + ], + [ + 52.5187489, + 13.2841186 + ], + [ + 52.5182566, + 13.2842349 + ], + [ + 52.5180713, + 13.2842849 + ], + [ + 52.5180074, + 13.2843027 + ] + ] + }, + { + "osmId": "180406887", + "name": null, + "lengthMeters": 1134.1059231830377, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191588, + 13.2841924 + ], + [ + 52.5199158, + 13.2839669 + ], + [ + 52.519922, + 13.283965 + ], + [ + 52.5203424, + 13.2838395 + ], + [ + 52.5204967, + 13.2837937 + ], + [ + 52.5206927, + 13.2837356 + ], + [ + 52.5207765, + 13.283713 + ], + [ + 52.5211172, + 13.2836205 + ], + [ + 52.5212163, + 13.283595 + ], + [ + 52.5216526, + 13.2834924 + ], + [ + 52.5220469, + 13.2833961 + ], + [ + 52.5227377, + 13.2832324 + ], + [ + 52.5235577, + 13.283039 + ], + [ + 52.5244021, + 13.2828418 + ], + [ + 52.5246215, + 13.2827902 + ], + [ + 52.5248494, + 13.2827403 + ], + [ + 52.5250395, + 13.2827036 + ], + [ + 52.5251624, + 13.2826861 + ], + [ + 52.5253055, + 13.2826686 + ], + [ + 52.5254337, + 13.2826576 + ], + [ + 52.5255576, + 13.2826528 + ], + [ + 52.5256745, + 13.2826553 + ], + [ + 52.5257892, + 13.2826604 + ], + [ + 52.5258852, + 13.2826723 + ], + [ + 52.5260153, + 13.2826946 + ], + [ + 52.5261351, + 13.2827219 + ], + [ + 52.5262809, + 13.2827594 + ], + [ + 52.5264043, + 13.282803 + ], + [ + 52.5265092, + 13.2828454 + ], + [ + 52.5266433, + 13.2829085 + ], + [ + 52.52678, + 13.2829825 + ], + [ + 52.5268814, + 13.2830522 + ], + [ + 52.5269797, + 13.2831179 + ], + [ + 52.527081, + 13.2831932 + ], + [ + 52.5271845, + 13.2832752 + ], + [ + 52.5272788, + 13.2833577 + ], + [ + 52.5274003, + 13.2834705 + ], + [ + 52.5274735, + 13.2835413 + ], + [ + 52.5275557, + 13.2836318 + ], + [ + 52.5276332, + 13.2837189 + ], + [ + 52.5277239, + 13.2838283 + ], + [ + 52.5277994, + 13.2839243 + ], + [ + 52.527869, + 13.2840198 + ], + [ + 52.5279499, + 13.284135 + ], + [ + 52.528024, + 13.2842453 + ], + [ + 52.5280789, + 13.2843343 + ], + [ + 52.5281384, + 13.2844354 + ], + [ + 52.5282124, + 13.2845652 + ], + [ + 52.5282764, + 13.2846865 + ], + [ + 52.5283443, + 13.2848236 + ], + [ + 52.5284049, + 13.2849509 + ], + [ + 52.5284601, + 13.2850702 + ], + [ + 52.5285261, + 13.2852269 + ], + [ + 52.5285682, + 13.2853347 + ], + [ + 52.5285875, + 13.2853835 + ], + [ + 52.5286183, + 13.2854649 + ], + [ + 52.5286481, + 13.2855488 + ] + ] + }, + { + "osmId": "180566559", + "name": null, + "lengthMeters": 1014.7041727658545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406458, + 13.404452 + ], + [ + 52.5406269, + 13.404363 + ], + [ + 52.5406054, + 13.4042717 + ], + [ + 52.5405935, + 13.404221 + ], + [ + 52.5403984, + 13.4034995 + ], + [ + 52.5403093, + 13.4031886 + ], + [ + 52.5401267, + 13.4025355 + ], + [ + 52.5399966, + 13.4020576 + ], + [ + 52.5398894, + 13.4016949 + ], + [ + 52.539844, + 13.4015409 + ], + [ + 52.5398015, + 13.4013941 + ], + [ + 52.5395557, + 13.4005316 + ], + [ + 52.5394791, + 13.4002625 + ], + [ + 52.5394422, + 13.400133 + ], + [ + 52.5394143, + 13.4000352 + ], + [ + 52.5393178, + 13.3996807 + ], + [ + 52.5392413, + 13.3993959 + ], + [ + 52.5391804, + 13.399174 + ], + [ + 52.5391264, + 13.3989781 + ], + [ + 52.5389891, + 13.3984756 + ], + [ + 52.5388732, + 13.3980719 + ], + [ + 52.538859, + 13.3980227 + ], + [ + 52.5388322, + 13.3979266 + ], + [ + 52.5386465, + 13.397259 + ], + [ + 52.5386227, + 13.3971736 + ], + [ + 52.5384311, + 13.3964824 + ], + [ + 52.5383437, + 13.3961814 + ], + [ + 52.5383092, + 13.3960642 + ], + [ + 52.538268, + 13.395924 + ], + [ + 52.5382306, + 13.3957961 + ], + [ + 52.5380699, + 13.3952333 + ], + [ + 52.5379399, + 13.3947775 + ], + [ + 52.5378898, + 13.3945991 + ], + [ + 52.5376979, + 13.3939163 + ], + [ + 52.5376316, + 13.3936776 + ], + [ + 52.5375906, + 13.3935527 + ], + [ + 52.5375394, + 13.3934168 + ], + [ + 52.5375165, + 13.3933602 + ], + [ + 52.537464, + 13.3932481 + ], + [ + 52.5374053, + 13.3931427 + ], + [ + 52.5371022, + 13.3926638 + ], + [ + 52.5366803, + 13.3919974 + ], + [ + 52.5365637, + 13.3918132 + ], + [ + 52.5363115, + 13.3914226 + ] + ] + }, + { + "osmId": "180566560", + "name": null, + "lengthMeters": 594.5223612523116, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5319419, + 13.3879084 + ], + [ + 52.5319693, + 13.3878941 + ], + [ + 52.5319986, + 13.3878769 + ], + [ + 52.5325525, + 13.3875222 + ], + [ + 52.5326094, + 13.3874874 + ], + [ + 52.5326381, + 13.3874696 + ], + [ + 52.5326848, + 13.3874395 + ], + [ + 52.5328904, + 13.3873103 + ], + [ + 52.5329263, + 13.3872918 + ], + [ + 52.53296, + 13.3872762 + ], + [ + 52.53299, + 13.3872664 + ], + [ + 52.5330166, + 13.3872599 + ], + [ + 52.5330448, + 13.3872571 + ], + [ + 52.5330725, + 13.3872581 + ], + [ + 52.5331266, + 13.3872594 + ], + [ + 52.533171, + 13.3872798 + ], + [ + 52.5332178, + 13.3873051 + ], + [ + 52.5332281, + 13.3873134 + ], + [ + 52.5332497, + 13.3873312 + ], + [ + 52.5332864, + 13.3873738 + ], + [ + 52.5333006, + 13.3873926 + ], + [ + 52.5333167, + 13.3874167 + ], + [ + 52.5333355, + 13.3874496 + ], + [ + 52.5333589, + 13.3874936 + ], + [ + 52.5333709, + 13.3875218 + ], + [ + 52.5333903, + 13.3875674 + ], + [ + 52.5334177, + 13.3876318 + ], + [ + 52.5334505, + 13.3877056 + ], + [ + 52.5334793, + 13.3877699 + ], + [ + 52.5335498, + 13.3878986 + ], + [ + 52.5336057, + 13.3879873 + ], + [ + 52.5336675, + 13.3880684 + ], + [ + 52.5338182, + 13.3882419 + ], + [ + 52.534792, + 13.3893482 + ], + [ + 52.5350242, + 13.389612 + ], + [ + 52.5352604, + 13.3898862 + ], + [ + 52.5354517, + 13.3901439 + ], + [ + 52.5355216, + 13.3902509 + ], + [ + 52.5355885, + 13.3903584 + ], + [ + 52.5359069, + 13.3908576 + ], + [ + 52.5361668, + 13.3912639 + ], + [ + 52.5362209, + 13.3913458 + ], + [ + 52.5362909, + 13.3914516 + ] + ] + }, + { + "osmId": "180630764", + "name": null, + "lengthMeters": 2237.9512269107086, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6636367, + 13.3452053 + ], + [ + 52.663571, + 13.3455079 + ], + [ + 52.663175, + 13.3473329 + ], + [ + 52.662598, + 13.3499993 + ], + [ + 52.6624545, + 13.3506656 + ], + [ + 52.6623124, + 13.351334 + ], + [ + 52.6621754, + 13.3520049 + ], + [ + 52.6620411, + 13.352678 + ], + [ + 52.6618026, + 13.3539297 + ], + [ + 52.6616247, + 13.3548368 + ], + [ + 52.6615556, + 13.3551745 + ], + [ + 52.6614481, + 13.3556994 + ], + [ + 52.6613359, + 13.3562237 + ], + [ + 52.6606588, + 13.3593534 + ], + [ + 52.6606237, + 13.3595177 + ], + [ + 52.660367, + 13.3606896 + ], + [ + 52.6601062, + 13.3618606 + ], + [ + 52.6595937, + 13.3642061 + ], + [ + 52.6592621, + 13.3657487 + ], + [ + 52.658938, + 13.3672968 + ], + [ + 52.658272, + 13.3703856 + ], + [ + 52.6569499, + 13.3765008 + ] + ] + }, + { + "osmId": "180631243", + "name": null, + "lengthMeters": 150.24552104793975, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.667646, + 13.2868471 + ], + [ + 52.6675138, + 13.2868352 + ], + [ + 52.6673785, + 13.2868257 + ], + [ + 52.6672437, + 13.2868194 + ], + [ + 52.6671083, + 13.2868149 + ], + [ + 52.666973, + 13.2868132 + ], + [ + 52.6668375, + 13.2868107 + ], + [ + 52.6667023, + 13.2868113 + ], + [ + 52.6665667, + 13.2868131 + ], + [ + 52.6664295, + 13.2868172 + ], + [ + 52.666338, + 13.2868211 + ], + [ + 52.6662953, + 13.2868232 + ] + ] + }, + { + "osmId": "180803350", + "name": null, + "lengthMeters": 142.1502094776458, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4489034, + 13.5743904 + ], + [ + 52.449296, + 13.5741651 + ], + [ + 52.4495239, + 13.5740012 + ], + [ + 52.4496029, + 13.5739247 + ], + [ + 52.4497461, + 13.5737791 + ], + [ + 52.4499122, + 13.573587 + ], + [ + 52.4500294, + 13.5734328 + ] + ] + }, + { + "osmId": "180893147", + "name": null, + "lengthMeters": 176.54227184021545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5092644, + 9.9156561 + ], + [ + 53.5095124, + 9.9157697 + ], + [ + 53.5095873, + 9.9158259 + ], + [ + 53.5097161, + 9.9159226 + ], + [ + 53.5100528, + 9.9161888 + ], + [ + 53.5103646, + 9.9166021 + ], + [ + 53.5105895, + 9.9170275 + ] + ] + }, + { + "osmId": "181446638", + "name": null, + "lengthMeters": 188.13738712868474, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530417, + 9.9961896 + ], + [ + 53.553128, + 9.9955649 + ], + [ + 53.5531963, + 9.9951441 + ], + [ + 53.5532012, + 9.9951142 + ], + [ + 53.5532031, + 9.9951023 + ], + [ + 53.5532052, + 9.995089 + ], + [ + 53.553264, + 9.9947271 + ], + [ + 53.553465, + 9.9935111 + ], + [ + 53.5534685, + 9.9934896 + ], + [ + 53.5534771, + 9.9934379 + ] + ] + }, + { + "osmId": "181602335", + "name": null, + "lengthMeters": 408.8545890573396, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.537133, + 13.3546002 + ], + [ + 52.5371202, + 13.3542246 + ], + [ + 52.5370933, + 13.3537857 + ], + [ + 52.5368744, + 13.3512248 + ], + [ + 52.536833, + 13.3506497 + ], + [ + 52.5368098, + 13.3500272 + ], + [ + 52.5367938, + 13.3489466 + ], + [ + 52.5367812, + 13.3485892 + ] + ] + }, + { + "osmId": "181602336", + "name": null, + "lengthMeters": 523.3932099916456, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5347922, + 13.3609036 + ], + [ + 52.5349856, + 13.360696 + ], + [ + 52.5351803, + 13.3604807 + ], + [ + 52.5353478, + 13.3602573 + ], + [ + 52.5355035, + 13.3600404 + ], + [ + 52.5356504, + 13.3598179 + ], + [ + 52.5358158, + 13.3595403 + ], + [ + 52.5360181, + 13.3592038 + ], + [ + 52.5361936, + 13.3589033 + ], + [ + 52.5363366, + 13.3586295 + ], + [ + 52.5364933, + 13.3582821 + ], + [ + 52.5366523, + 13.3578509 + ], + [ + 52.5367023, + 13.3576849 + ], + [ + 52.5367537, + 13.3574974 + ], + [ + 52.5368009, + 13.3573284 + ], + [ + 52.5368482, + 13.3571229 + ], + [ + 52.5369031, + 13.3568846 + ], + [ + 52.5369818, + 13.3564704 + ], + [ + 52.5370308, + 13.3561481 + ], + [ + 52.5370771, + 13.3557834 + ], + [ + 52.5370923, + 13.3556237 + ], + [ + 52.5371057, + 13.3554659 + ], + [ + 52.5371255, + 13.3551232 + ], + [ + 52.5371324, + 13.3548494 + ], + [ + 52.537133, + 13.3546002 + ] + ] + }, + { + "osmId": "181603775", + "name": null, + "lengthMeters": 117.096797383816, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5395473, + 13.3602802 + ], + [ + 52.5393769, + 13.3601198 + ], + [ + 52.5391977, + 13.3599727 + ], + [ + 52.5390392, + 13.3598554 + ], + [ + 52.5388068, + 13.359712 + ], + [ + 52.5385824, + 13.3596007 + ] + ] + }, + { + "osmId": "181603776", + "name": null, + "lengthMeters": 169.14662190930423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5395228, + 13.3603319 + ], + [ + 52.539831, + 13.3607566 + ], + [ + 52.5401999, + 13.3613472 + ], + [ + 52.5403948, + 13.3617219 + ], + [ + 52.5405794, + 13.3621196 + ] + ] + }, + { + "osmId": "181618670", + "name": null, + "lengthMeters": 327.85129194437144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.530987, + 13.3647183 + ], + [ + 52.5314762, + 13.3641815 + ], + [ + 52.5315877, + 13.3640639 + ], + [ + 52.5321322, + 13.3634895 + ], + [ + 52.5334676, + 13.3620988 + ] + ] + }, + { + "osmId": "181675018", + "name": null, + "lengthMeters": 105.96161799436713, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6358849, + 13.2073338 + ], + [ + 52.63625, + 13.2069144 + ], + [ + 52.6363981, + 13.206752 + ], + [ + 52.6365263, + 13.2066183 + ], + [ + 52.6366816, + 13.2064741 + ] + ] + }, + { + "osmId": "181676059", + "name": null, + "lengthMeters": 667.5217008504118, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.447201, + 13.6242734 + ], + [ + 52.4471349, + 13.6242665 + ], + [ + 52.4471186, + 13.624264 + ], + [ + 52.4470812, + 13.6242583 + ], + [ + 52.4470515, + 13.6242512 + ], + [ + 52.4470295, + 13.6242426 + ], + [ + 52.4470081, + 13.6242314 + ], + [ + 52.4469929, + 13.6242206 + ], + [ + 52.4469772, + 13.6242073 + ], + [ + 52.4469629, + 13.6241933 + ], + [ + 52.4469506, + 13.6241787 + ], + [ + 52.4469377, + 13.6241601 + ], + [ + 52.4469302, + 13.6241466 + ], + [ + 52.4469173, + 13.6241214 + ], + [ + 52.4469078, + 13.6240995 + ], + [ + 52.4469008, + 13.624079 + ], + [ + 52.4468925, + 13.6240491 + ], + [ + 52.446889, + 13.6240335 + ], + [ + 52.4468818, + 13.6240005 + ], + [ + 52.446876, + 13.6239593 + ], + [ + 52.4468703, + 13.6239161 + ], + [ + 52.4468659, + 13.6238749 + ], + [ + 52.446862, + 13.6238255 + ], + [ + 52.4468572, + 13.6237534 + ], + [ + 52.4468448, + 13.6235754 + ], + [ + 52.4468438, + 13.6235657 + ], + [ + 52.4468401, + 13.6235136 + ], + [ + 52.4468313, + 13.6233897 + ], + [ + 52.4468236, + 13.6232883 + ], + [ + 52.4468173, + 13.6232081 + ], + [ + 52.4468118, + 13.6231377 + ], + [ + 52.446804, + 13.6230559 + ], + [ + 52.4467954, + 13.6229893 + ], + [ + 52.4467838, + 13.622906 + ], + [ + 52.4467695, + 13.6228193 + ], + [ + 52.4467671, + 13.622806 + ], + [ + 52.4467567, + 13.6227527 + ], + [ + 52.4467462, + 13.6227045 + ], + [ + 52.4467361, + 13.6226651 + ], + [ + 52.4467104, + 13.6225812 + ], + [ + 52.4466898, + 13.622516 + ], + [ + 52.4466204, + 13.6223132 + ], + [ + 52.4465569, + 13.6221172 + ], + [ + 52.446539, + 13.6220569 + ], + [ + 52.446532, + 13.6220311 + ], + [ + 52.4465221, + 13.6219961 + ], + [ + 52.4464973, + 13.6218998 + ], + [ + 52.4464726, + 13.6218004 + ], + [ + 52.4464499, + 13.6216991 + ], + [ + 52.4464411, + 13.621657 + ], + [ + 52.4463655, + 13.6212723 + ], + [ + 52.4462775, + 13.6208135 + ], + [ + 52.4462688, + 13.6207716 + ], + [ + 52.4462002, + 13.6204277 + ], + [ + 52.4461827, + 13.6203316 + ], + [ + 52.4461741, + 13.6202824 + ], + [ + 52.446158, + 13.6201591 + ], + [ + 52.4461559, + 13.6201379 + ], + [ + 52.4461517, + 13.6200821 + ], + [ + 52.4461489, + 13.6200066 + ], + [ + 52.4461481, + 13.6199504 + ], + [ + 52.446149, + 13.6198899 + ], + [ + 52.446151, + 13.6198453 + ], + [ + 52.4461535, + 13.619803 + ], + [ + 52.4461594, + 13.6197397 + ], + [ + 52.4461669, + 13.6196786 + ], + [ + 52.44622, + 13.6193239 + ], + [ + 52.4462458, + 13.619178 + ], + [ + 52.4462587, + 13.6191047 + ], + [ + 52.4462659, + 13.6190648 + ], + [ + 52.446303, + 13.6188777 + ], + [ + 52.4463312, + 13.6187209 + ], + [ + 52.446392, + 13.6183922 + ], + [ + 52.4464061, + 13.618314 + ], + [ + 52.4464503, + 13.6180823 + ], + [ + 52.4464896, + 13.6178638 + ], + [ + 52.4465044, + 13.6177938 + ], + [ + 52.4465456, + 13.6175969 + ], + [ + 52.4465758, + 13.6174643 + ], + [ + 52.4466063, + 13.6173312 + ], + [ + 52.4466832, + 13.6170047 + ], + [ + 52.4467095, + 13.6168904 + ], + [ + 52.4467403, + 13.6167498 + ], + [ + 52.4467632, + 13.6166609 + ], + [ + 52.4468118, + 13.616465 + ], + [ + 52.4468244, + 13.6164245 + ], + [ + 52.4468464, + 13.6163522 + ], + [ + 52.4468694, + 13.6162863 + ], + [ + 52.4469207, + 13.6161521 + ], + [ + 52.4469626, + 13.6160421 + ], + [ + 52.4469966, + 13.6159403 + ], + [ + 52.4470178, + 13.6158659 + ], + [ + 52.4470306, + 13.6158166 + ], + [ + 52.4470759, + 13.6156283 + ], + [ + 52.4471582, + 13.6153144 + ] + ] + }, + { + "osmId": "181676060", + "name": null, + "lengthMeters": 81.97977989448137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568885, + 13.6248594 + ], + [ + 52.4569152, + 13.6249762 + ], + [ + 52.4569301, + 13.625056 + ], + [ + 52.4569339, + 13.625099 + ], + [ + 52.456936, + 13.6251181 + ], + [ + 52.4569431, + 13.6252054 + ], + [ + 52.4569429, + 13.6253087 + ], + [ + 52.4569356, + 13.6253907 + ], + [ + 52.4569253, + 13.6254638 + ], + [ + 52.4569056, + 13.6256052 + ], + [ + 52.4568877, + 13.6257517 + ], + [ + 52.4568831, + 13.625801 + ], + [ + 52.45688, + 13.6258692 + ], + [ + 52.4568777, + 13.6259248 + ], + [ + 52.4568747, + 13.6260458 + ] + ] + }, + { + "osmId": "181676538", + "name": null, + "lengthMeters": 83.40280999683912, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569186, + 13.6248285 + ], + [ + 52.4569602, + 13.6250279 + ], + [ + 52.4569694, + 13.6251042 + ], + [ + 52.4569738, + 13.6251593 + ], + [ + 52.4569754, + 13.6252056 + ], + [ + 52.4569745, + 13.6252666 + ], + [ + 52.4569695, + 13.6253379 + ], + [ + 52.4569611, + 13.625408 + ], + [ + 52.4569531, + 13.6254682 + ], + [ + 52.4569475, + 13.625506 + ], + [ + 52.4569328, + 13.6256063 + ], + [ + 52.4569242, + 13.6256724 + ], + [ + 52.4569104, + 13.6258054 + ], + [ + 52.4569047, + 13.6259273 + ], + [ + 52.4569013, + 13.6260349 + ] + ] + }, + { + "osmId": "182051949", + "name": null, + "lengthMeters": 138.82137476143674, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318672, + 13.3878289 + ], + [ + 52.5325077, + 13.3871306 + ], + [ + 52.5329076, + 13.3866945 + ] + ] + }, + { + "osmId": "182051962", + "name": null, + "lengthMeters": 88.49127514327154, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328077, + 13.3873864 + ], + [ + 52.5327587, + 13.3874401 + ], + [ + 52.5321453, + 13.3881115 + ] + ] + }, + { + "osmId": "182918406", + "name": null, + "lengthMeters": 125.96315133557768, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3644324, + 13.135748 + ], + [ + 52.3640026, + 13.1364771 + ], + [ + 52.3638039, + 13.1368139 + ], + [ + 52.3637583, + 13.1368801 + ], + [ + 52.3637076, + 13.1369358 + ], + [ + 52.363653, + 13.13698 + ], + [ + 52.3636105, + 13.1370048 + ] + ] + }, + { + "osmId": "182918407", + "name": null, + "lengthMeters": 444.0313411005313, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3622494, + 13.1370812 + ], + [ + 52.3619684, + 13.1370913 + ], + [ + 52.3616514, + 13.1371025 + ], + [ + 52.3616019, + 13.1371042 + ], + [ + 52.3606151, + 13.1371397 + ], + [ + 52.3597409, + 13.1371707 + ], + [ + 52.3597095, + 13.1371699 + ], + [ + 52.3587928, + 13.1372046 + ], + [ + 52.3582571, + 13.1372236 + ] + ] + }, + { + "osmId": "182942740", + "name": null, + "lengthMeters": 668.2601597792348, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5127761, + 9.9101504 + ], + [ + 53.5129177, + 9.9101632 + ], + [ + 53.5131155, + 9.9101785 + ], + [ + 53.5131208, + 9.9101802 + ], + [ + 53.5134151, + 9.9102474 + ], + [ + 53.5137468, + 9.9104118 + ], + [ + 53.5138358, + 9.9104692 + ], + [ + 53.514041, + 9.9106017 + ], + [ + 53.5141966, + 9.9107318 + ], + [ + 53.5142965, + 9.9108154 + ], + [ + 53.5143396, + 9.9108605 + ], + [ + 53.5145731, + 9.9111104 + ], + [ + 53.5147925, + 9.9114276 + ], + [ + 53.51497, + 9.9117638 + ], + [ + 53.5151234, + 9.9120812 + ], + [ + 53.5151385, + 9.9121215 + ], + [ + 53.5152014, + 9.9122889 + ], + [ + 53.5152107, + 9.9123183 + ], + [ + 53.5152764, + 9.9125244 + ], + [ + 53.5153404, + 9.9127546 + ], + [ + 53.5153961, + 9.9129899 + ], + [ + 53.5157252, + 9.9142946 + ], + [ + 53.5161868, + 9.9161622 + ], + [ + 53.5163431, + 9.9167975 + ], + [ + 53.5164064, + 9.9170609 + ], + [ + 53.5164326, + 9.9171596 + ] + ] + }, + { + "osmId": "182942746", + "name": null, + "lengthMeters": 588.890571158965, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5137433, + 9.9160029 + ], + [ + 53.513655, + 9.9162622 + ], + [ + 53.513552, + 9.9165413 + ], + [ + 53.5134776, + 9.9167034 + ], + [ + 53.5133886, + 9.9168636 + ], + [ + 53.5131931, + 9.9171938 + ], + [ + 53.5129034, + 9.9176079 + ], + [ + 53.5126666, + 9.9178274 + ], + [ + 53.5124545, + 9.9179463 + ], + [ + 53.5124267, + 9.9179619 + ], + [ + 53.5122457, + 9.9180291 + ], + [ + 53.5120572, + 9.9180563 + ], + [ + 53.5119163, + 9.9180592 + ], + [ + 53.5116196, + 9.9179884 + ], + [ + 53.5114007, + 9.9178663 + ], + [ + 53.5111331, + 9.917636 + ], + [ + 53.5110759, + 9.9175832 + ], + [ + 53.5109439, + 9.9174569 + ], + [ + 53.5106882, + 9.9170977 + ], + [ + 53.5104375, + 9.9166243 + ], + [ + 53.5102993, + 9.9164157 + ], + [ + 53.5100471, + 9.9160348 + ], + [ + 53.5098209, + 9.9157358 + ], + [ + 53.5098077, + 9.9157225 + ], + [ + 53.5096307, + 9.9155443 + ], + [ + 53.5094627, + 9.9154241 + ] + ] + }, + { + "osmId": "183206488", + "name": null, + "lengthMeters": 217.25021791741165, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6677645, + 13.2870607 + ], + [ + 52.6678697, + 13.2870714 + ], + [ + 52.6680188, + 13.2870865 + ], + [ + 52.6682611, + 13.287111 + ], + [ + 52.6685332, + 13.2871386 + ], + [ + 52.6685885, + 13.2871442 + ], + [ + 52.6686491, + 13.2871503 + ], + [ + 52.668815, + 13.2871671 + ], + [ + 52.6697146, + 13.2872583 + ] + ] + }, + { + "osmId": "184017876", + "name": null, + "lengthMeters": 202.13268924150395, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6419964, + 9.9494511 + ], + [ + 53.6420017, + 9.9494468 + ], + [ + 53.6420905, + 9.9493741 + ], + [ + 53.6436319, + 9.9481126 + ] + ] + }, + { + "osmId": "184021030", + "name": null, + "lengthMeters": 1895.9179149284528, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6195057, + 9.9514941 + ], + [ + 53.6198424, + 9.9516705 + ], + [ + 53.6204651, + 9.9519294 + ], + [ + 53.6208849, + 9.952104 + ], + [ + 53.621034, + 9.9521546 + ], + [ + 53.6210735, + 9.9521666 + ], + [ + 53.621104, + 9.9521748 + ], + [ + 53.6217162, + 9.9523393 + ], + [ + 53.6217708, + 9.9523488 + ], + [ + 53.6218342, + 9.9523574 + ], + [ + 53.6219001, + 9.9523602 + ], + [ + 53.6219729, + 9.9523582 + ], + [ + 53.6220654, + 9.9523505 + ], + [ + 53.6221901, + 9.9523204 + ], + [ + 53.6222997, + 9.9522802 + ], + [ + 53.622573, + 9.9521248 + ], + [ + 53.6228456, + 9.9519627 + ], + [ + 53.6234308, + 9.9515654 + ], + [ + 53.6235195, + 9.9515084 + ], + [ + 53.6235903, + 9.9514722 + ], + [ + 53.6236881, + 9.9514306 + ], + [ + 53.6238091, + 9.9513894 + ], + [ + 53.6249719, + 9.9511413 + ], + [ + 53.6256946, + 9.9510109 + ], + [ + 53.6260028, + 9.9509582 + ], + [ + 53.6262846, + 9.9509167 + ], + [ + 53.6269077, + 9.9509137 + ], + [ + 53.6271351, + 9.9508794 + ], + [ + 53.6273933, + 9.9507958 + ], + [ + 53.6275559, + 9.950738 + ], + [ + 53.6277098, + 9.9506692 + ], + [ + 53.6282053, + 9.950354 + ], + [ + 53.6287547, + 9.9500028 + ], + [ + 53.6289601, + 9.9498987 + ], + [ + 53.6291538, + 9.9498337 + ], + [ + 53.6293671, + 9.9497832 + ], + [ + 53.6296638, + 9.9497793 + ], + [ + 53.629832, + 9.949802 + ], + [ + 53.6300256, + 9.9498555 + ], + [ + 53.6301899, + 9.9499204 + ], + [ + 53.6302819, + 9.9499759 + ], + [ + 53.630355, + 9.9500238 + ], + [ + 53.6304149, + 9.9500627 + ], + [ + 53.6304908, + 9.9501167 + ], + [ + 53.6305605, + 9.9501714 + ], + [ + 53.6306263, + 9.950233 + ], + [ + 53.6310025, + 9.9506181 + ], + [ + 53.6315308, + 9.9511741 + ], + [ + 53.6322023, + 9.9517934 + ], + [ + 53.6326321, + 9.9521482 + ], + [ + 53.6328404, + 9.9523039 + ], + [ + 53.632989, + 9.9524133 + ], + [ + 53.6330887, + 9.9524837 + ], + [ + 53.6331454, + 9.9525186 + ], + [ + 53.6332137, + 9.9525577 + ], + [ + 53.6333086, + 9.9526071 + ], + [ + 53.6333864, + 9.9526463 + ], + [ + 53.6334554, + 9.9526762 + ], + [ + 53.6338114, + 9.9528113 + ], + [ + 53.6339685, + 9.952866 + ], + [ + 53.6340337, + 9.9528798 + ], + [ + 53.6341321, + 9.9528893 + ], + [ + 53.6342702, + 9.9528904 + ], + [ + 53.6343564, + 9.9528835 + ], + [ + 53.6343941, + 9.9528772 + ], + [ + 53.6344536, + 9.9528667 + ], + [ + 53.6345251, + 9.9528441 + ], + [ + 53.6346728, + 9.9527827 + ], + [ + 53.6353219, + 9.9525267 + ], + [ + 53.6358266, + 9.9523275 + ] + ] + }, + { + "osmId": "184026563", + "name": null, + "lengthMeters": 131.921048565209, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6210868, + 9.9520269 + ], + [ + 53.6212182, + 9.95214 + ], + [ + 53.6217595, + 9.9522777 + ], + [ + 53.6218348, + 9.9522856 + ], + [ + 53.6219638, + 9.9522837 + ], + [ + 53.6220524, + 9.9522767 + ], + [ + 53.6221616, + 9.952253 + ], + [ + 53.6222485, + 9.9522277 + ] + ] + }, + { + "osmId": "184424731", + "name": null, + "lengthMeters": 1126.7356622739385, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.471315, + 13.3830088 + ], + [ + 52.4713326, + 13.3829008 + ], + [ + 52.4713536, + 13.3827725 + ], + [ + 52.4713687, + 13.3826792 + ], + [ + 52.4714346, + 13.3822728 + ], + [ + 52.4714869, + 13.3819571 + ], + [ + 52.4715943, + 13.381297 + ], + [ + 52.4716793, + 13.3807703 + ], + [ + 52.471714, + 13.3805606 + ], + [ + 52.471757, + 13.3802583 + ], + [ + 52.4717874, + 13.3800339 + ], + [ + 52.4718188, + 13.379758 + ], + [ + 52.471841, + 13.3795217 + ], + [ + 52.4718577, + 13.3792967 + ], + [ + 52.4718717, + 13.3790619 + ], + [ + 52.471887, + 13.3787075 + ], + [ + 52.4718945, + 13.3782332 + ], + [ + 52.471899, + 13.3775893 + ], + [ + 52.4719071, + 13.3763499 + ], + [ + 52.47193, + 13.372701 + ], + [ + 52.4719309, + 13.372543 + ], + [ + 52.4719325, + 13.3722557 + ], + [ + 52.4719366, + 13.3718681 + ], + [ + 52.4719452, + 13.3714592 + ], + [ + 52.4719636, + 13.3710864 + ], + [ + 52.4719803, + 13.3708708 + ], + [ + 52.4720005, + 13.3706632 + ], + [ + 52.4720433, + 13.3703464 + ], + [ + 52.4720911, + 13.3700797 + ], + [ + 52.4721454, + 13.3698298 + ], + [ + 52.4722064, + 13.3695937 + ], + [ + 52.4722862, + 13.3693295 + ], + [ + 52.4723597, + 13.3691151 + ], + [ + 52.4724395, + 13.3689021 + ], + [ + 52.4725099, + 13.3687326 + ], + [ + 52.4725852, + 13.3685606 + ], + [ + 52.4726612, + 13.3683969 + ], + [ + 52.4727456, + 13.3682289 + ], + [ + 52.4728595, + 13.3680197 + ], + [ + 52.4729525, + 13.3678622 + ], + [ + 52.4730498, + 13.3677107 + ], + [ + 52.4732019, + 13.3674924 + ], + [ + 52.4733307, + 13.3673303 + ], + [ + 52.4733788, + 13.3672728 + ] + ] + }, + { + "osmId": "184454516", + "name": null, + "lengthMeters": 473.34859780035316, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0513164, + 11.6938505 + ], + [ + 48.0506302, + 11.6945768 + ], + [ + 48.0498738, + 11.695382 + ], + [ + 48.0495681, + 11.6957074 + ], + [ + 48.0494839, + 11.695797 + ], + [ + 48.0488328, + 11.6964805 + ], + [ + 48.0485136, + 11.6968208 + ], + [ + 48.0484589, + 11.6968788 + ], + [ + 48.0478458, + 11.6975379 + ] + ] + }, + { + "osmId": "184474297", + "name": null, + "lengthMeters": 1639.634635023588, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2044656, + 11.4260194 + ], + [ + 48.2057226, + 11.4039749 + ] + ] + }, + { + "osmId": "184474300", + "name": null, + "lengthMeters": 1113.8651828549753, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2044214, + 11.4261672 + ], + [ + 48.2038467, + 11.4361899 + ], + [ + 48.2037981, + 11.4371109 + ], + [ + 48.2037547, + 11.4380614 + ], + [ + 48.2037266, + 11.4388007 + ], + [ + 48.2037051, + 11.4395587 + ], + [ + 48.2036872, + 11.4403477 + ], + [ + 48.2036763, + 11.4411526 + ] + ] + }, + { + "osmId": "184539934", + "name": null, + "lengthMeters": 1637.3679638331957, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2056882, + 11.4039804 + ], + [ + 48.2044313, + 11.4259942 + ] + ] + }, + { + "osmId": "184539937", + "name": null, + "lengthMeters": 265.1400143849317, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2057528, + 11.4034488 + ], + [ + 48.2059261, + 11.4004337 + ], + [ + 48.2059576, + 11.3998842 + ] + ] + }, + { + "osmId": "184540195", + "name": null, + "lengthMeters": 272.0500148139077, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2059259, + 11.3997879 + ], + [ + 48.2057189, + 11.4034458 + ] + ] + }, + { + "osmId": "184540196", + "name": null, + "lengthMeters": 340.4173878933079, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2059792, + 11.3995003 + ], + [ + 48.2062419, + 11.3949236 + ] + ] + }, + { + "osmId": "185352458", + "name": null, + "lengthMeters": 5156.872373490631, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6139974, + 13.4499589 + ], + [ + 52.6146332, + 13.4490996 + ], + [ + 52.6147538, + 13.4489366 + ], + [ + 52.6164151, + 13.4466831 + ], + [ + 52.6165882, + 13.4464538 + ], + [ + 52.6170688, + 13.4458481 + ], + [ + 52.6190825, + 13.4431324 + ], + [ + 52.6197694, + 13.4421369 + ], + [ + 52.6234709, + 13.4371135 + ], + [ + 52.629567, + 13.428851 + ], + [ + 52.6317338, + 13.4258809 + ], + [ + 52.6330444, + 13.4241062 + ], + [ + 52.633416, + 13.4236388 + ], + [ + 52.6339168, + 13.4229592 + ], + [ + 52.6346205, + 13.4219625 + ], + [ + 52.6353147, + 13.420952 + ], + [ + 52.6367034, + 13.4188697 + ], + [ + 52.6385193, + 13.4160154 + ], + [ + 52.6395954, + 13.4142514 + ], + [ + 52.6415291, + 13.4110173 + ], + [ + 52.6419668, + 13.4102946 + ], + [ + 52.6430815, + 13.4084543 + ], + [ + 52.6432168, + 13.408228 + ], + [ + 52.6443269, + 13.4063701 + ], + [ + 52.6459105, + 13.4037197 + ], + [ + 52.6462835, + 13.4030954 + ], + [ + 52.6479849, + 13.4002389 + ], + [ + 52.6485772, + 13.3991749 + ] + ] + }, + { + "osmId": "185352459", + "name": null, + "lengthMeters": 262.35967347821844, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6139974, + 13.4499589 + ], + [ + 52.613466, + 13.4506844 + ], + [ + 52.6132851, + 13.4509186 + ], + [ + 52.6128633, + 13.4514647 + ], + [ + 52.6124922, + 13.4518844 + ], + [ + 52.6121137, + 13.4522925 + ] + ] + }, + { + "osmId": "185779375", + "name": "Berliner Ringbahn", + "lengthMeters": 253.76376296582467, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5486483, + 13.3923078 + ], + [ + 52.5486721, + 13.3926539 + ], + [ + 52.5487003, + 13.3929494 + ], + [ + 52.5487343, + 13.3932321 + ], + [ + 52.5487578, + 13.3934285 + ], + [ + 52.5487713, + 13.3935703 + ], + [ + 52.5487846, + 13.3937267 + ], + [ + 52.5487981, + 13.3939316 + ], + [ + 52.5488167, + 13.3942845 + ], + [ + 52.5488378, + 13.3945973 + ], + [ + 52.5488735, + 13.3949489 + ], + [ + 52.5489275, + 13.3953568 + ], + [ + 52.5489644, + 13.3955678 + ], + [ + 52.548997, + 13.3957861 + ], + [ + 52.5490357, + 13.3959993 + ] + ] + }, + { + "osmId": "186228102", + "name": null, + "lengthMeters": 713.682039463204, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5912614, + 13.3449553 + ], + [ + 52.592479, + 13.3427403 + ], + [ + 52.5934271, + 13.3410146 + ], + [ + 52.5943372, + 13.3393548 + ], + [ + 52.5952277, + 13.3377349 + ], + [ + 52.5955643, + 13.3371157 + ] + ] + }, + { + "osmId": "188099451", + "name": null, + "lengthMeters": 389.185319258432, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5657093, + 13.5116376 + ], + [ + 52.5656128, + 13.511388 + ], + [ + 52.5652608, + 13.5104265 + ], + [ + 52.5648499, + 13.5093105 + ], + [ + 52.5647111, + 13.5089376 + ], + [ + 52.5646502, + 13.508774 + ], + [ + 52.5645572, + 13.5085382 + ], + [ + 52.5641972, + 13.5076178 + ], + [ + 52.5641524, + 13.5075018 + ], + [ + 52.5640719, + 13.5072936 + ], + [ + 52.5638604, + 13.5067492 + ] + ] + }, + { + "osmId": "188099453", + "name": null, + "lengthMeters": 567.0233930525172, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5667026, + 13.5143131 + ], + [ + 52.5669788, + 13.5150074 + ], + [ + 52.5670305, + 13.5151396 + ], + [ + 52.5670753, + 13.5152555 + ], + [ + 52.5671168, + 13.5153654 + ], + [ + 52.5671698, + 13.5154998 + ], + [ + 52.5675466, + 13.5164783 + ], + [ + 52.5677226, + 13.5169337 + ], + [ + 52.5678113, + 13.5171672 + ], + [ + 52.5679011, + 13.5174024 + ], + [ + 52.5679972, + 13.5176796 + ], + [ + 52.568088, + 13.5179567 + ], + [ + 52.5681142, + 13.5180368 + ], + [ + 52.5682939, + 13.5186477 + ], + [ + 52.5683716, + 13.518963 + ], + [ + 52.568429, + 13.5192713 + ], + [ + 52.5684489, + 13.5194105 + ], + [ + 52.5685744, + 13.5203133 + ], + [ + 52.568593, + 13.520452 + ], + [ + 52.5686054, + 13.520545 + ], + [ + 52.5686198, + 13.5206525 + ], + [ + 52.5686317, + 13.5207518 + ], + [ + 52.5686418, + 13.5208364 + ], + [ + 52.5686701, + 13.5210718 + ], + [ + 52.5687725, + 13.5218687 + ] + ] + }, + { + "osmId": "188099488", + "name": null, + "lengthMeters": 84.13459645304481, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.566187, + 13.5128716 + ], + [ + 52.5657831, + 13.511819 + ] + ] + }, + { + "osmId": "188099527", + "name": null, + "lengthMeters": 92.17430036037491, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5666353, + 13.5140187 + ], + [ + 52.5665036, + 13.5136804 + ], + [ + 52.5663633, + 13.5133221 + ], + [ + 52.5663088, + 13.5131802 + ], + [ + 52.5662126, + 13.5129366 + ], + [ + 52.566187, + 13.5128716 + ] + ] + }, + { + "osmId": "188115836", + "name": null, + "lengthMeters": 2569.8068545518595, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6677, + 9.9102574 + ], + [ + 53.668141, + 9.9103548 + ], + [ + 53.6690538, + 9.9106462 + ], + [ + 53.6694529, + 9.9108122 + ], + [ + 53.6695456, + 9.9108508 + ], + [ + 53.6698472, + 9.910989 + ], + [ + 53.6703027, + 9.9112174 + ], + [ + 53.6707431, + 9.9114517 + ], + [ + 53.6711816, + 9.9116848 + ], + [ + 53.6726833, + 9.9124833 + ], + [ + 53.6727156, + 9.912501 + ], + [ + 53.6728017, + 9.912548 + ], + [ + 53.6728943, + 9.9125976 + ], + [ + 53.6730571, + 9.9126847 + ], + [ + 53.6734622, + 9.9128952 + ], + [ + 53.6738888, + 9.9131108 + ], + [ + 53.6743178, + 9.9133277 + ], + [ + 53.6747236, + 9.9135271 + ], + [ + 53.6750626, + 9.9136954 + ], + [ + 53.6751204, + 9.9137241 + ], + [ + 53.6751771, + 9.9137537 + ], + [ + 53.6754376, + 9.9138896 + ], + [ + 53.6762413, + 9.9143103 + ], + [ + 53.676552, + 9.9144745 + ], + [ + 53.6770632, + 9.9147448 + ], + [ + 53.6773281, + 9.9148935 + ], + [ + 53.6778445, + 9.9151671 + ], + [ + 53.6784851, + 9.915508 + ], + [ + 53.6787425, + 9.9156437 + ], + [ + 53.6791507, + 9.9158577 + ], + [ + 53.679533, + 9.9160626 + ], + [ + 53.6799321, + 9.9162762 + ], + [ + 53.6803406, + 9.9164956 + ], + [ + 53.6806081, + 9.9166396 + ], + [ + 53.6807657, + 9.9167245 + ], + [ + 53.6808271, + 9.9167588 + ], + [ + 53.6811496, + 9.9169387 + ], + [ + 53.6814785, + 9.9171222 + ], + [ + 53.6818442, + 9.9173276 + ], + [ + 53.6823128, + 9.9175924 + ], + [ + 53.6834422, + 9.9182123 + ], + [ + 53.6834921, + 9.9182381 + ], + [ + 53.6838656, + 9.9184377 + ], + [ + 53.6841961, + 9.9186144 + ], + [ + 53.6846707, + 9.9188627 + ], + [ + 53.684984, + 9.9190258 + ], + [ + 53.6852544, + 9.9191694 + ], + [ + 53.685542, + 9.9193239 + ], + [ + 53.6863247, + 9.9197426 + ], + [ + 53.6867375, + 9.9199603 + ], + [ + 53.6869536, + 9.9200767 + ], + [ + 53.6873767, + 9.9202935 + ], + [ + 53.6875212, + 9.9203629 + ], + [ + 53.6878586, + 9.9205051 + ], + [ + 53.6881163, + 9.9206106 + ], + [ + 53.688517, + 9.9207393 + ], + [ + 53.6888791, + 9.9208375 + ], + [ + 53.6892261, + 9.9209144 + ], + [ + 53.6893088, + 9.9209327 + ], + [ + 53.6896228, + 9.9209743 + ], + [ + 53.689878, + 9.9210041 + ] + ] + }, + { + "osmId": "188115840", + "name": null, + "lengthMeters": 498.6609267441452, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6550069, + 9.9111044 + ], + [ + 53.6550723, + 9.9110963 + ], + [ + 53.6557852, + 9.9110009 + ], + [ + 53.6561858, + 9.9109484 + ], + [ + 53.6565909, + 9.9108954 + ], + [ + 53.6574416, + 9.9107918 + ], + [ + 53.6577325, + 9.910751 + ], + [ + 53.6579671, + 9.9107181 + ], + [ + 53.6585681, + 9.9106338 + ], + [ + 53.659236, + 9.910559 + ], + [ + 53.6592972, + 9.9105515 + ], + [ + 53.6593168, + 9.9105478 + ], + [ + 53.6594777, + 9.9105163 + ] + ] + }, + { + "osmId": "188264833", + "name": null, + "lengthMeters": 2569.6462058136744, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6677038, + 9.9101823 + ], + [ + 53.6681748, + 9.9103002 + ], + [ + 53.6690637, + 9.9105862 + ], + [ + 53.6694624, + 9.9107528 + ], + [ + 53.6695591, + 9.9107932 + ], + [ + 53.669866, + 9.9109328 + ], + [ + 53.6703129, + 9.9111592 + ], + [ + 53.6707858, + 9.9114119 + ], + [ + 53.6711926, + 9.9116282 + ], + [ + 53.6726954, + 9.9124272 + ], + [ + 53.6727254, + 9.9124433 + ], + [ + 53.6728108, + 9.9124893 + ], + [ + 53.6729075, + 9.9125403 + ], + [ + 53.6730559, + 9.9126186 + ], + [ + 53.673445, + 9.9128232 + ], + [ + 53.6739037, + 9.9130574 + ], + [ + 53.674334, + 9.9132724 + ], + [ + 53.6747365, + 9.9134664 + ], + [ + 53.6750728, + 9.9136373 + ], + [ + 53.6751295, + 9.9136661 + ], + [ + 53.6751899, + 9.9136965 + ], + [ + 53.6754072, + 9.9138061 + ], + [ + 53.6762735, + 9.9142628 + ], + [ + 53.6765667, + 9.9144188 + ], + [ + 53.6771065, + 9.9147061 + ], + [ + 53.6773313, + 9.914825 + ], + [ + 53.67785, + 9.9151047 + ], + [ + 53.6785113, + 9.9154555 + ], + [ + 53.6787549, + 9.9155836 + ], + [ + 53.6791623, + 9.9158026 + ], + [ + 53.679538, + 9.9160023 + ], + [ + 53.6799689, + 9.916231 + ], + [ + 53.6803754, + 9.9164495 + ], + [ + 53.6806215, + 9.9165814 + ], + [ + 53.6807834, + 9.9166681 + ], + [ + 53.6808418, + 9.9167007 + ], + [ + 53.681161, + 9.9168791 + ], + [ + 53.6815016, + 9.9170694 + ], + [ + 53.6818663, + 9.9172775 + ], + [ + 53.6823467, + 9.9175525 + ], + [ + 53.682463, + 9.9176127 + ], + [ + 53.6834763, + 9.9181619 + ], + [ + 53.6838772, + 9.9183759 + ], + [ + 53.6841036, + 9.9184967 + ], + [ + 53.6846617, + 9.9187912 + ], + [ + 53.6849633, + 9.9189492 + ], + [ + 53.6852431, + 9.9190994 + ], + [ + 53.6855365, + 9.9192572 + ], + [ + 53.6863296, + 9.9196772 + ], + [ + 53.6867789, + 9.9199161 + ], + [ + 53.6869656, + 9.9200158 + ], + [ + 53.6873913, + 9.9202365 + ], + [ + 53.6875321, + 9.920302 + ], + [ + 53.6876616, + 9.9203622 + ], + [ + 53.6879031, + 9.9204603 + ], + [ + 53.6881232, + 9.9205481 + ], + [ + 53.6885305, + 9.9206857 + ], + [ + 53.6888952, + 9.9207791 + ], + [ + 53.6892325, + 9.9208529 + ], + [ + 53.6893188, + 9.9208718 + ], + [ + 53.6896504, + 9.9209183 + ], + [ + 53.6898791, + 9.9209415 + ] + ] + }, + { + "osmId": "191591509", + "name": null, + "lengthMeters": 259.346435161527, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291547, + 13.3661679 + ], + [ + 52.5288818, + 13.3664399 + ], + [ + 52.5286016, + 13.3667085 + ], + [ + 52.528372, + 13.3669211 + ], + [ + 52.5280778, + 13.3671836 + ], + [ + 52.5277811, + 13.3674296 + ], + [ + 52.5273707, + 13.3677475 + ], + [ + 52.5271539, + 13.3679028 + ], + [ + 52.5270912, + 13.3679464 + ] + ] + }, + { + "osmId": "191591510", + "name": null, + "lengthMeters": 133.77515186509157, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5224739, + 13.3715289 + ], + [ + 52.5226815, + 13.3714249 + ], + [ + 52.5232082, + 13.3711669 + ], + [ + 52.5236258, + 13.3709584 + ] + ] + }, + { + "osmId": "191593801", + "name": null, + "lengthMeters": 249.18545911076959, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259914, + 13.3699138 + ], + [ + 52.5244388, + 13.371032 + ], + [ + 52.5242095, + 13.3712323 + ], + [ + 52.5239809, + 13.3715153 + ] + ] + }, + { + "osmId": "191593802", + "name": null, + "lengthMeters": 420.97179990012376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260472, + 13.3701217 + ], + [ + 52.5268252, + 13.3695318 + ], + [ + 52.5277489, + 13.3686968 + ], + [ + 52.5284232, + 13.3680022 + ], + [ + 52.528816, + 13.3675978 + ], + [ + 52.5292674, + 13.3669096 + ] + ] + }, + { + "osmId": "191738812", + "name": null, + "lengthMeters": 209.0225112088492, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5385824, + 13.3596007 + ], + [ + 52.538296, + 13.359489 + ], + [ + 52.5380995, + 13.3594375 + ], + [ + 52.5379515, + 13.3594198 + ], + [ + 52.5377782, + 13.35941 + ], + [ + 52.5375131, + 13.3594226 + ], + [ + 52.5372937, + 13.3594526 + ], + [ + 52.5370682, + 13.3594907 + ], + [ + 52.5367384, + 13.3595824 + ], + [ + 52.5367206, + 13.359588 + ] + ] + }, + { + "osmId": "191738814", + "name": null, + "lengthMeters": 352.39181614376685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334513, + 13.3620546 + ], + [ + 52.5321199, + 13.3634372 + ], + [ + 52.5315651, + 13.3640091 + ], + [ + 52.531446, + 13.3641319 + ], + [ + 52.5310104, + 13.3645959 + ], + [ + 52.5307798, + 13.3648565 + ] + ] + }, + { + "osmId": "191738816", + "name": null, + "lengthMeters": 207.32212245543815, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367274, + 13.3596434 + ], + [ + 52.5367441, + 13.3596378 + ], + [ + 52.5370783, + 13.3595508 + ], + [ + 52.5372981, + 13.3595081 + ], + [ + 52.5375132, + 13.3594813 + ], + [ + 52.5377781, + 13.3594745 + ], + [ + 52.5379517, + 13.359482 + ], + [ + 52.5380975, + 13.3595055 + ], + [ + 52.5382919, + 13.359548 + ], + [ + 52.5384933, + 13.3596183 + ], + [ + 52.5385756, + 13.3596529 + ] + ] + }, + { + "osmId": "192505630", + "name": null, + "lengthMeters": 454.5727154723385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312728, + 13.5190509 + ], + [ + 52.5308816, + 13.519088 + ], + [ + 52.530568, + 13.5191155 + ], + [ + 52.5298119, + 13.5191864 + ], + [ + 52.5295878, + 13.5192041 + ], + [ + 52.5290091, + 13.5192567 + ], + [ + 52.5289046, + 13.5192676 + ], + [ + 52.5287753, + 13.5192798 + ], + [ + 52.5286207, + 13.5192945 + ], + [ + 52.5283648, + 13.5193183 + ], + [ + 52.5281283, + 13.5193444 + ], + [ + 52.5275696, + 13.5193902 + ], + [ + 52.5271911, + 13.5194248 + ] + ] + }, + { + "osmId": "192505631", + "name": null, + "lengthMeters": 391.51462052445174, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5313509, + 13.5190989 + ], + [ + 52.5315638, + 13.5190758 + ], + [ + 52.531808, + 13.519058 + ], + [ + 52.5321109, + 13.5190426 + ], + [ + 52.5326556, + 13.5189973 + ], + [ + 52.5327581, + 13.5189821 + ], + [ + 52.5328162, + 13.5189737 + ], + [ + 52.5328462, + 13.518968 + ], + [ + 52.5329103, + 13.5189523 + ], + [ + 52.5329863, + 13.5189344 + ], + [ + 52.5330826, + 13.5189007 + ], + [ + 52.5332124, + 13.5188542 + ], + [ + 52.5334131, + 13.5187669 + ], + [ + 52.5334619, + 13.5187413 + ], + [ + 52.5335657, + 13.5186898 + ], + [ + 52.5337265, + 13.5185877 + ], + [ + 52.5338921, + 13.5184702 + ], + [ + 52.5345202, + 13.5179971 + ], + [ + 52.5347394, + 13.5178384 + ] + ] + }, + { + "osmId": "192543460", + "name": null, + "lengthMeters": 895.5306985223851, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3922253, + 13.0909391 + ], + [ + 52.3921557, + 13.0912489 + ], + [ + 52.3921355, + 13.0913241 + ], + [ + 52.3920805, + 13.0915047 + ], + [ + 52.392033, + 13.0916584 + ], + [ + 52.3920027, + 13.0917965 + ], + [ + 52.3917298, + 13.0929552 + ], + [ + 52.3916316, + 13.0933569 + ], + [ + 52.3916115, + 13.0934541 + ], + [ + 52.3915883, + 13.0936681 + ], + [ + 52.3916342, + 13.094651 + ], + [ + 52.3917197, + 13.0954835 + ], + [ + 52.3918042, + 13.0964536 + ], + [ + 52.3920755, + 13.0995665 + ], + [ + 52.3921315, + 13.1001672 + ], + [ + 52.3923981, + 13.103264 + ], + [ + 52.3924469, + 13.1038383 + ] + ] + }, + { + "osmId": "192543467", + "name": null, + "lengthMeters": 338.73046315021185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3931434, + 13.1086908 + ], + [ + 52.3928749, + 13.1071257 + ], + [ + 52.392557, + 13.105095 + ], + [ + 52.3924498, + 13.1038914 + ], + [ + 52.3924469, + 13.1038383 + ] + ] + }, + { + "osmId": "193809803", + "name": null, + "lengthMeters": 3568.1960190948826, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5265242, + 10.0751592 + ], + [ + 53.5237618, + 10.0805854 + ], + [ + 53.5231014, + 10.0818934 + ], + [ + 53.5194348, + 10.0891552 + ], + [ + 53.5194246, + 10.0891753 + ], + [ + 53.5193744, + 10.0892749 + ], + [ + 53.5193664, + 10.0892908 + ], + [ + 53.5190701, + 10.0898775 + ], + [ + 53.5189243, + 10.0901708 + ], + [ + 53.5174195, + 10.0931984 + ], + [ + 53.5165894, + 10.0948982 + ], + [ + 53.5162115, + 10.0956525 + ], + [ + 53.5161542, + 10.0957668 + ], + [ + 53.5159451, + 10.0961841 + ], + [ + 53.5156772, + 10.0967153 + ], + [ + 53.5148997, + 10.0982573 + ], + [ + 53.5129151, + 10.1021769 + ], + [ + 53.5120521, + 10.1038463 + ], + [ + 53.5108991, + 10.1060766 + ], + [ + 53.5073648, + 10.1130007 + ], + [ + 53.5072143, + 10.1133054 + ], + [ + 53.5063232, + 10.1150777 + ], + [ + 53.5057218, + 10.1162506 + ] + ] + }, + { + "osmId": "193809804", + "name": null, + "lengthMeters": 1136.743451111975, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5057218, + 10.1162506 + ], + [ + 53.5040407, + 10.1195552 + ], + [ + 53.5032541, + 10.1211114 + ], + [ + 53.5028178, + 10.1219745 + ], + [ + 53.5016602, + 10.1242424 + ], + [ + 53.4992326, + 10.1287754 + ], + [ + 53.4990066, + 10.1292083 + ] + ] + }, + { + "osmId": "194068791", + "name": null, + "lengthMeters": 76.40664275189445, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5127026, + 9.9178716 + ], + [ + 53.5128077, + 9.9177679 + ], + [ + 53.5128676, + 9.9176967 + ], + [ + 53.5130181, + 9.9175179 + ], + [ + 53.5132513, + 9.9171804 + ] + ] + }, + { + "osmId": "194830512", + "name": null, + "lengthMeters": 821.8149825646007, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1903132, + 11.5727274 + ], + [ + 48.1903134, + 11.5727418 + ], + [ + 48.190379, + 11.5786981 + ], + [ + 48.190442, + 11.583812 + ] + ] + }, + { + "osmId": "194833362", + "name": null, + "lengthMeters": 305.9895266554074, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2046541, + 11.4667167 + ], + [ + 48.2047445, + 11.4664449 + ], + [ + 48.2048434, + 11.4661518 + ], + [ + 48.2049283, + 11.4658887 + ], + [ + 48.2050163, + 11.4655874 + ], + [ + 48.2050901, + 11.4652649 + ], + [ + 48.2051345, + 11.4649916 + ], + [ + 48.2051621, + 11.4647337 + ], + [ + 48.2051767, + 11.4644753 + ], + [ + 48.2051812, + 11.4642043 + ], + [ + 48.2051687, + 11.4639505 + ], + [ + 48.2051441, + 11.4636797 + ], + [ + 48.2051281, + 11.4635674 + ], + [ + 48.2051101, + 11.4634404 + ], + [ + 48.2050638, + 11.4631968 + ], + [ + 48.2049931, + 11.4629238 + ], + [ + 48.2049518, + 11.4627951 + ] + ] + }, + { + "osmId": "194840847", + "name": null, + "lengthMeters": 310.6502842563617, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434545, + 11.5150115 + ], + [ + 48.1428453, + 11.5168728 + ], + [ + 48.1427752, + 11.5170798 + ], + [ + 48.1426764, + 11.5173574 + ], + [ + 48.1425676, + 11.5176306 + ], + [ + 48.1424699, + 11.5178523 + ], + [ + 48.1424009, + 11.5179989 + ], + [ + 48.1422699, + 11.518254 + ], + [ + 48.1420908, + 11.5185683 + ], + [ + 48.1420599, + 11.5186187 + ] + ] + }, + { + "osmId": "194840848", + "name": null, + "lengthMeters": 291.6726653107499, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434661, + 11.5153083 + ], + [ + 48.1429397, + 11.5169257 + ], + [ + 48.1428695, + 11.5171373 + ], + [ + 48.1427615, + 11.5174266 + ], + [ + 48.1426498, + 11.5176896 + ], + [ + 48.1425092, + 11.5179942 + ], + [ + 48.1423992, + 11.5182117 + ], + [ + 48.1423047, + 11.518394 + ], + [ + 48.1422061, + 11.5185641 + ], + [ + 48.1421367, + 11.5186756 + ] + ] + }, + { + "osmId": "194848468", + "name": null, + "lengthMeters": 326.1405021284296, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418601, + 11.5479041 + ], + [ + 48.1418203, + 11.5484208 + ], + [ + 48.1418098, + 11.548555 + ], + [ + 48.1417798, + 11.5489411 + ], + [ + 48.1417386, + 11.5495052 + ], + [ + 48.1416951, + 11.5501009 + ], + [ + 48.1416898, + 11.550463 + ], + [ + 48.1416959, + 11.5506278 + ], + [ + 48.1416963, + 11.5506361 + ], + [ + 48.1417041, + 11.550793 + ], + [ + 48.1417072, + 11.5508207 + ], + [ + 48.1417206, + 11.551001 + ], + [ + 48.1417681, + 11.5516659 + ], + [ + 48.1418147, + 11.5522756 + ] + ] + }, + { + "osmId": "195126068", + "name": null, + "lengthMeters": 3015.946784069209, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451373, + 11.6870732 + ], + [ + 48.1453207, + 11.6885002 + ], + [ + 48.145492, + 11.6898346 + ], + [ + 48.1456061, + 11.6907238 + ], + [ + 48.1456566, + 11.6911169 + ], + [ + 48.145709, + 11.691531 + ], + [ + 48.1458464, + 11.6926169 + ], + [ + 48.1461128, + 11.6946966 + ], + [ + 48.1463838, + 11.6968115 + ], + [ + 48.1467899, + 11.6999818 + ], + [ + 48.1471959, + 11.7031509 + ], + [ + 48.1472966, + 11.7039371 + ], + [ + 48.1474587, + 11.7052021 + ], + [ + 48.1474744, + 11.7053244 + ], + [ + 48.1476569, + 11.7067494 + ], + [ + 48.148582, + 11.7139877 + ], + [ + 48.149045, + 11.7176086 + ], + [ + 48.1491582, + 11.7184983 + ], + [ + 48.1492748, + 11.7194149 + ], + [ + 48.1493924, + 11.7203341 + ], + [ + 48.1495062, + 11.7212208 + ], + [ + 48.1496784, + 11.72256 + ], + [ + 48.1497665, + 11.7232417 + ], + [ + 48.1498242, + 11.7236552 + ], + [ + 48.1498592, + 11.7238698 + ], + [ + 48.1499244, + 11.7242692 + ], + [ + 48.1499917, + 11.724642 + ], + [ + 48.150036, + 11.7248722 + ], + [ + 48.1500741, + 11.7250693 + ], + [ + 48.1501453, + 11.725416 + ], + [ + 48.1502391, + 11.7258355 + ], + [ + 48.150283, + 11.7260234 + ], + [ + 48.1503383, + 11.7262468 + ], + [ + 48.1504528, + 11.7267153 + ], + [ + 48.1504988, + 11.7268991 + ] + ] + }, + { + "osmId": "195126071", + "name": null, + "lengthMeters": 722.6008182052229, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.13626, + 11.6570772 + ], + [ + 48.1358879, + 11.6563321 + ], + [ + 48.1354177, + 11.6554187 + ], + [ + 48.1352137, + 11.6550215 + ], + [ + 48.1349904, + 11.6545856 + ], + [ + 48.1345793, + 11.6537665 + ], + [ + 48.1340528, + 11.6527031 + ], + [ + 48.1339636, + 11.6525152 + ], + [ + 48.1338818, + 11.652343 + ], + [ + 48.1337807, + 11.6521169 + ], + [ + 48.1335967, + 11.6516773 + ], + [ + 48.1334929, + 11.6514044 + ], + [ + 48.1334103, + 11.6511699 + ], + [ + 48.1333325, + 11.6509273 + ], + [ + 48.1332684, + 11.6507169 + ], + [ + 48.1332332, + 11.6506011 + ], + [ + 48.133121, + 11.6501865 + ], + [ + 48.1330727, + 11.6499767 + ], + [ + 48.1330064, + 11.6496763 + ], + [ + 48.1329361, + 11.6493099 + ], + [ + 48.1328873, + 11.6489886 + ], + [ + 48.1328707, + 11.6488743 + ] + ] + }, + { + "osmId": "195137967", + "name": null, + "lengthMeters": 2537.504338642148, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2188044, + 11.6206916 + ], + [ + 48.219072, + 11.6208174 + ], + [ + 48.2193449, + 11.6209184 + ], + [ + 48.2196056, + 11.6210017 + ], + [ + 48.2200071, + 11.6211044 + ], + [ + 48.2206251, + 11.621186 + ], + [ + 48.2209031, + 11.6211927 + ], + [ + 48.2209993, + 11.6211906 + ], + [ + 48.2222719, + 11.6210697 + ], + [ + 48.2225593, + 11.6210512 + ], + [ + 48.2228414, + 11.6210668 + ], + [ + 48.2233065, + 11.6211296 + ], + [ + 48.2240633, + 11.6212897 + ], + [ + 48.2248213, + 11.6214922 + ], + [ + 48.2253176, + 11.621625 + ], + [ + 48.2256568, + 11.6217273 + ], + [ + 48.227807, + 11.6224739 + ], + [ + 48.2311538, + 11.6236654 + ], + [ + 48.2322441, + 11.6240886 + ], + [ + 48.2326888, + 11.6242867 + ], + [ + 48.2332712, + 11.6245869 + ], + [ + 48.2338754, + 11.6249149 + ], + [ + 48.2346489, + 11.6253875 + ], + [ + 48.2377105, + 11.627358 + ], + [ + 48.2385114, + 11.6278075 + ], + [ + 48.2388709, + 11.6279869 + ], + [ + 48.2393415, + 11.6281929 + ], + [ + 48.2398784, + 11.6283958 + ], + [ + 48.2408133, + 11.6286902 + ] + ] + }, + { + "osmId": "195137969", + "name": null, + "lengthMeters": 717.1959819920373, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2127415, + 11.6173893 + ], + [ + 48.2128465, + 11.6174503 + ], + [ + 48.2151436, + 11.6187058 + ], + [ + 48.2163115, + 11.619348 + ], + [ + 48.2188044, + 11.6206916 + ] + ] + }, + { + "osmId": "195137971", + "name": null, + "lengthMeters": 641.4037260534891, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2412303, + 11.6288193 + ], + [ + 48.2448186, + 11.6299374 + ], + [ + 48.245171, + 11.6300513 + ], + [ + 48.2458551, + 11.6302723 + ], + [ + 48.2460987, + 11.6303541 + ], + [ + 48.246331, + 11.6304519 + ], + [ + 48.2466238, + 11.630621 + ], + [ + 48.2468416, + 11.6307678 + ] + ] + }, + { + "osmId": "195398847", + "name": null, + "lengthMeters": 130.57550973708592, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4040903, + 13.3056284 + ], + [ + 52.4038903, + 13.3054621 + ], + [ + 52.4037122, + 13.3053037 + ], + [ + 52.4035381, + 13.3051372 + ], + [ + 52.403397, + 13.3049898 + ], + [ + 52.4032589, + 13.3048376 + ], + [ + 52.4030885, + 13.3046306 + ] + ] + }, + { + "osmId": "195399528", + "name": null, + "lengthMeters": 265.1765987448003, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5985188, + 13.3728938 + ], + [ + 52.598605, + 13.3727913 + ], + [ + 52.5986398, + 13.3727504 + ], + [ + 52.5986624, + 13.372726 + ], + [ + 52.5986788, + 13.37271 + ], + [ + 52.5986994, + 13.3726935 + ], + [ + 52.5987193, + 13.3726782 + ], + [ + 52.5987404, + 13.3726668 + ], + [ + 52.5987612, + 13.3726594 + ], + [ + 52.5987804, + 13.3726562 + ], + [ + 52.5988018, + 13.3726531 + ], + [ + 52.5988289, + 13.3726543 + ], + [ + 52.598842, + 13.3726568 + ], + [ + 52.5988619, + 13.3726635 + ], + [ + 52.5988935, + 13.3726764 + ], + [ + 52.5989209, + 13.372693 + ], + [ + 52.5989453, + 13.372712 + ], + [ + 52.5989669, + 13.3727344 + ], + [ + 52.598986, + 13.3727573 + ], + [ + 52.5990011, + 13.3727758 + ], + [ + 52.5990431, + 13.3728341 + ], + [ + 52.5990665, + 13.3728665 + ], + [ + 52.5990923, + 13.3728988 + ], + [ + 52.5991205, + 13.3729334 + ], + [ + 52.5991445, + 13.3729532 + ], + [ + 52.5991613, + 13.3729661 + ], + [ + 52.5991811, + 13.3729777 + ], + [ + 52.599206, + 13.3729888 + ], + [ + 52.5992329, + 13.3729968 + ], + [ + 52.5992588, + 13.3729997 + ], + [ + 52.5992887, + 13.3729982 + ], + [ + 52.5993118, + 13.3729936 + ], + [ + 52.5993391, + 13.372984 + ], + [ + 52.5993585, + 13.3729741 + ], + [ + 52.5993809, + 13.3729576 + ], + [ + 52.5993983, + 13.372942 + ], + [ + 52.5994205, + 13.3729178 + ], + [ + 52.5994428, + 13.3728894 + ], + [ + 52.5994627, + 13.3728573 + ], + [ + 52.5994801, + 13.3728205 + ], + [ + 52.5994909, + 13.3727923 + ], + [ + 52.5995041, + 13.3727556 + ], + [ + 52.5995162, + 13.37271 + ], + [ + 52.5995243, + 13.3726662 + ], + [ + 52.5995303, + 13.37262 + ], + [ + 52.5995327, + 13.3725727 + ], + [ + 52.599532, + 13.3725184 + ], + [ + 52.599528, + 13.3724688 + ], + [ + 52.5995213, + 13.3724285 + ], + [ + 52.5995123, + 13.3723855 + ], + [ + 52.5994982, + 13.3723387 + ], + [ + 52.5994806, + 13.3722919 + ], + [ + 52.599467, + 13.3722646 + ], + [ + 52.5994518, + 13.3722393 + ], + [ + 52.5994334, + 13.3722125 + ], + [ + 52.5994152, + 13.3721904 + ], + [ + 52.5993953, + 13.3721714 + ], + [ + 52.5993779, + 13.3721583 + ], + [ + 52.5993575, + 13.3721433 + ], + [ + 52.5993411, + 13.3721351 + ], + [ + 52.5993197, + 13.3721272 + ], + [ + 52.5993024, + 13.3721218 + ], + [ + 52.5992923, + 13.3721195 + ], + [ + 52.5992752, + 13.3721182 + ], + [ + 52.599259, + 13.372118 + ], + [ + 52.5992332, + 13.3721206 + ], + [ + 52.5992091, + 13.3721265 + ], + [ + 52.5991919, + 13.3721319 + ], + [ + 52.5991591, + 13.3721474 + ], + [ + 52.5991329, + 13.3721637 + ], + [ + 52.5991026, + 13.3721854 + ], + [ + 52.5990736, + 13.372209 + ], + [ + 52.5990434, + 13.3722359 + ], + [ + 52.5990193, + 13.3722607 + ], + [ + 52.598666, + 13.3726689 + ] + ] + }, + { + "osmId": "195411594", + "name": null, + "lengthMeters": 141.3125468203183, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5187607, + 13.3888666 + ], + [ + 52.5187626, + 13.3888353 + ], + [ + 52.5187697, + 13.388773 + ], + [ + 52.5187788, + 13.3887365 + ], + [ + 52.5187882, + 13.3887044 + ], + [ + 52.5187976, + 13.3886799 + ], + [ + 52.5188093, + 13.3886527 + ], + [ + 52.5188209, + 13.3886276 + ], + [ + 52.5188315, + 13.388608 + ], + [ + 52.5188488, + 13.388585 + ], + [ + 52.5188662, + 13.3885658 + ], + [ + 52.5188873, + 13.3885466 + ], + [ + 52.5189001, + 13.3885371 + ], + [ + 52.5189231, + 13.3885222 + ], + [ + 52.5189408, + 13.3885145 + ], + [ + 52.518959, + 13.3885081 + ], + [ + 52.5189861, + 13.3885005 + ], + [ + 52.5190644, + 13.3884827 + ], + [ + 52.5195641, + 13.388415 + ], + [ + 52.5197281, + 13.3883941 + ], + [ + 52.51982, + 13.3883768 + ], + [ + 52.5199057, + 13.3883576 + ] + ] + }, + { + "osmId": "195411601", + "name": null, + "lengthMeters": 152.61833716376051, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5216581, + 13.3880093 + ], + [ + 52.5216115, + 13.3880162 + ], + [ + 52.5215454, + 13.388028 + ], + [ + 52.5209642, + 13.3881323 + ], + [ + 52.5203937, + 13.3882343 + ], + [ + 52.5203691, + 13.3882399 + ], + [ + 52.520333, + 13.3882455 + ], + [ + 52.5202936, + 13.3882526 + ] + ] + }, + { + "osmId": "196013325", + "name": null, + "lengthMeters": 111.55369926380243, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.154454, + 11.5536328 + ], + [ + 48.1545034, + 11.5535774 + ], + [ + 48.1545281, + 11.5535579 + ], + [ + 48.1545528, + 11.553541 + ], + [ + 48.1545816, + 11.5535301 + ], + [ + 48.1546104, + 11.5535232 + ], + [ + 48.1546423, + 11.5535252 + ], + [ + 48.1546734, + 11.5535312 + ], + [ + 48.1546958, + 11.5535392 + ], + [ + 48.1547189, + 11.5535507 + ], + [ + 48.1547947, + 11.5536013 + ], + [ + 48.1548856, + 11.5536629 + ], + [ + 48.1549097, + 11.553671 + ], + [ + 48.1549338, + 11.5536756 + ], + [ + 48.1549527, + 11.5536777 + ], + [ + 48.1549715, + 11.5536775 + ], + [ + 48.154989, + 11.5536755 + ], + [ + 48.1550059, + 11.5536699 + ], + [ + 48.1550271, + 11.5536623 + ], + [ + 48.1550487, + 11.5536487 + ], + [ + 48.155067, + 11.5536347 + ], + [ + 48.1550873, + 11.5536181 + ], + [ + 48.155105, + 11.5536001 + ], + [ + 48.1553377, + 11.5533108 + ] + ] + }, + { + "osmId": "196201772", + "name": null, + "lengthMeters": 86.49256094933735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1551117, + 11.5526997 + ], + [ + 48.1547957, + 11.5531233 + ], + [ + 48.1545336, + 11.5534798 + ] + ] + }, + { + "osmId": "196201773", + "name": null, + "lengthMeters": 696.2077034955954, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.154454, + 11.5536328 + ], + [ + 48.1548114, + 11.5531523 + ], + [ + 48.1552256, + 11.5526064 + ], + [ + 48.155259, + 11.5525645 + ], + [ + 48.1553713, + 11.5524236 + ], + [ + 48.1581568, + 11.5489996 + ], + [ + 48.1586229, + 11.5484299 + ], + [ + 48.1592742, + 11.5476445 + ] + ] + }, + { + "osmId": "197203316", + "name": null, + "lengthMeters": 137.555354682827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6211458, + 9.8569123 + ], + [ + 53.6208228, + 9.8574953 + ], + [ + 53.6203879, + 9.8583788 + ], + [ + 53.6203336, + 9.8584844 + ] + ] + }, + { + "osmId": "197206149", + "name": null, + "lengthMeters": 670.6066260610456, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6203441, + 9.8589743 + ], + [ + 53.618415, + 9.8626637 + ], + [ + 53.6169315, + 9.8655618 + ], + [ + 53.6164054, + 9.8666722 + ] + ] + }, + { + "osmId": "197206150", + "name": null, + "lengthMeters": 1824.8898664373835, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6311737, + 9.8377526 + ], + [ + 53.6310285, + 9.838032 + ], + [ + 53.6304517, + 9.8391544 + ], + [ + 53.629599, + 9.8408211 + ], + [ + 53.628992, + 9.8419923 + ], + [ + 53.6285294, + 9.8428609 + ], + [ + 53.6279544, + 9.8440009 + ], + [ + 53.6277844, + 9.8443304 + ], + [ + 53.627583, + 9.8447397 + ], + [ + 53.626684, + 9.8465668 + ], + [ + 53.6264617, + 9.8470185 + ], + [ + 53.6258762, + 9.8481761 + ], + [ + 53.6251739, + 9.8495647 + ], + [ + 53.6243892, + 9.8511103 + ], + [ + 53.6239235, + 9.8520274 + ], + [ + 53.6230822, + 9.8536723 + ], + [ + 53.6230251, + 9.8537867 + ], + [ + 53.6224664, + 9.8548705 + ], + [ + 53.6211886, + 9.8573462 + ], + [ + 53.620473, + 9.8587329 + ] + ] + }, + { + "osmId": "198739513", + "name": null, + "lengthMeters": 393.87532220351846, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014914, + 13.3444479 + ], + [ + 52.5003424, + 13.3499521 + ] + ] + }, + { + "osmId": "198739514", + "name": null, + "lengthMeters": 685.2872822043724, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020415, + 13.3421601 + ], + [ + 52.5021025, + 13.3419777 + ], + [ + 52.5021848, + 13.3417372 + ], + [ + 52.5022202, + 13.3416344 + ], + [ + 52.5027901, + 13.3401976 + ], + [ + 52.5030772, + 13.3394874 + ], + [ + 52.5041238, + 13.3369749 + ], + [ + 52.5041927, + 13.3367978 + ], + [ + 52.5042437, + 13.3366919 + ], + [ + 52.5043225, + 13.3366226 + ], + [ + 52.5047741, + 13.3362891 + ], + [ + 52.5048678, + 13.336204 + ], + [ + 52.5049077, + 13.3361537 + ], + [ + 52.5049739, + 13.3360534 + ], + [ + 52.5050087, + 13.3359907 + ], + [ + 52.5050534, + 13.3358989 + ], + [ + 52.5050886, + 13.3358016 + ], + [ + 52.5051119, + 13.3357235 + ], + [ + 52.5051319, + 13.3356419 + ], + [ + 52.5051577, + 13.3355027 + ], + [ + 52.505168, + 13.3354184 + ], + [ + 52.5052194, + 13.3348054 + ], + [ + 52.5052338, + 13.3346875 + ], + [ + 52.5052492, + 13.3346032 + ], + [ + 52.5052694, + 13.3345172 + ], + [ + 52.5053017, + 13.3344095 + ], + [ + 52.5053399, + 13.3343066 + ], + [ + 52.5054559, + 13.3340536 + ] + ] + }, + { + "osmId": "198739515", + "name": "U1", + "lengthMeters": 117.28871933651352, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018556, + 13.3420074 + ], + [ + 52.501687, + 13.3424786 + ], + [ + 52.5016205, + 13.3427448 + ], + [ + 52.5015947, + 13.342867 + ], + [ + 52.5015681, + 13.3429917 + ], + [ + 52.5015166, + 13.343304 + ], + [ + 52.50148, + 13.3436116 + ] + ] + }, + { + "osmId": "198739516", + "name": null, + "lengthMeters": 122.88232430306205, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5019293, + 13.3420532 + ], + [ + 52.5017886, + 13.3425417 + ], + [ + 52.50173, + 13.3427971 + ], + [ + 52.5017005, + 13.3429313 + ], + [ + 52.5016744, + 13.3430518 + ], + [ + 52.5015992, + 13.3434222 + ], + [ + 52.5015446, + 13.3437512 + ] + ] + }, + { + "osmId": "198739518", + "name": null, + "lengthMeters": 165.78227872610776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020051, + 13.3421508 + ], + [ + 52.5018778, + 13.3426063 + ], + [ + 52.5017642, + 13.3431289 + ], + [ + 52.501694, + 13.3434721 + ], + [ + 52.5016287, + 13.343793 + ], + [ + 52.5014914, + 13.3444479 + ] + ] + }, + { + "osmId": "198741530", + "name": "U3", + "lengthMeters": 1745.2885833583105, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4908344, + 13.3158584 + ], + [ + 52.4908908, + 13.3159878 + ], + [ + 52.4909493, + 13.3161331 + ], + [ + 52.4909997, + 13.3162651 + ], + [ + 52.4914365, + 13.3175058 + ], + [ + 52.491556, + 13.3178653 + ], + [ + 52.4916579, + 13.3181081 + ], + [ + 52.491768, + 13.318379 + ], + [ + 52.4918424, + 13.3185816 + ], + [ + 52.4925173, + 13.3205947 + ], + [ + 52.4928521, + 13.3215714 + ], + [ + 52.4935823, + 13.3234261 + ], + [ + 52.4936605, + 13.3236589 + ], + [ + 52.4938073, + 13.3241785 + ], + [ + 52.4942333, + 13.3253289 + ], + [ + 52.4944124, + 13.3258201 + ], + [ + 52.4944654, + 13.3259569 + ], + [ + 52.4944941, + 13.3260254 + ], + [ + 52.4945449, + 13.3261095 + ], + [ + 52.4946043, + 13.3262231 + ], + [ + 52.4946488, + 13.3263176 + ], + [ + 52.4948693, + 13.326892 + ], + [ + 52.494917, + 13.3270142 + ], + [ + 52.4949704, + 13.3271707 + ], + [ + 52.4950168, + 13.3273318 + ], + [ + 52.4950499, + 13.3274704 + ], + [ + 52.4950832, + 13.3276394 + ], + [ + 52.495102, + 13.3277565 + ], + [ + 52.4953051, + 13.3298819 + ], + [ + 52.4953204, + 13.3300233 + ], + [ + 52.4953467, + 13.3301629 + ], + [ + 52.4953743, + 13.3302662 + ], + [ + 52.4954192, + 13.3303926 + ], + [ + 52.4954516, + 13.3304674 + ], + [ + 52.4954932, + 13.3305474 + ], + [ + 52.4955424, + 13.3306299 + ], + [ + 52.4955959, + 13.3307044 + ], + [ + 52.4956544, + 13.330771 + ], + [ + 52.4957215, + 13.3308583 + ], + [ + 52.4959389, + 13.330976 + ], + [ + 52.4960991, + 13.331054 + ], + [ + 52.4961978, + 13.3311093 + ], + [ + 52.496274, + 13.3311769 + ], + [ + 52.4963126, + 13.3312162 + ], + [ + 52.4963972, + 13.3313123 + ], + [ + 52.4970209, + 13.3323548 + ], + [ + 52.4975302, + 13.3332178 + ], + [ + 52.4976162, + 13.3333692 + ], + [ + 52.497704, + 13.3335163 + ], + [ + 52.4978079, + 13.3336783 + ], + [ + 52.4978869, + 13.3337959 + ], + [ + 52.4979703, + 13.3339072 + ], + [ + 52.4981393, + 13.3341251 + ], + [ + 52.4982395, + 13.3342503 + ], + [ + 52.4983271, + 13.3343518 + ], + [ + 52.4984031, + 13.3344295 + ], + [ + 52.4984806, + 13.3345013 + ], + [ + 52.4985598, + 13.3345692 + ], + [ + 52.4986736, + 13.3346562 + ], + [ + 52.4987543, + 13.3347258 + ], + [ + 52.4988769, + 13.3348495 + ], + [ + 52.4990122, + 13.3349989 + ], + [ + 52.4998525, + 13.3359045 + ] + ] + }, + { + "osmId": "198741537", + "name": "U1", + "lengthMeters": 590.8320882589389, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5031569, + 13.3286227 + ], + [ + 52.5033032, + 13.329268 + ], + [ + 52.5038844, + 13.3318181 + ], + [ + 52.5042492, + 13.333902 + ], + [ + 52.5043499, + 13.3343762 + ], + [ + 52.5043911, + 13.3346467 + ], + [ + 52.5044036, + 13.3348006 + ], + [ + 52.5044086, + 13.3349642 + ], + [ + 52.5044066, + 13.3352201 + ], + [ + 52.5043908, + 13.3354071 + ], + [ + 52.5043748, + 13.3355595 + ], + [ + 52.5043627, + 13.3356485 + ], + [ + 52.504335, + 13.3358135 + ], + [ + 52.5042797, + 13.3361001 + ], + [ + 52.5042278, + 13.336288 + ], + [ + 52.5041665, + 13.3364675 + ], + [ + 52.5040118, + 13.3368682 + ] + ] + }, + { + "osmId": "198741541", + "name": "U1", + "lengthMeters": 603.4891857613349, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5003669, + 13.3607559 + ], + [ + 52.5009058, + 13.3588917 + ], + [ + 52.5009503, + 13.3587302 + ], + [ + 52.5009658, + 13.3586513 + ], + [ + 52.5009771, + 13.3585667 + ], + [ + 52.5010043, + 13.3582189 + ], + [ + 52.5010054, + 13.3581292 + ], + [ + 52.5010019, + 13.3580347 + ], + [ + 52.5009946, + 13.3579599 + ], + [ + 52.5009832, + 13.3578837 + ], + [ + 52.5009498, + 13.3576764 + ], + [ + 52.5008871, + 13.3574526 + ], + [ + 52.5008312, + 13.3572107 + ], + [ + 52.5005085, + 13.3562506 + ], + [ + 52.5001131, + 13.3550595 + ], + [ + 52.4999619, + 13.3546072 + ], + [ + 52.4999228, + 13.3544699 + ], + [ + 52.4999007, + 13.3543765 + ], + [ + 52.4998746, + 13.3542544 + ], + [ + 52.4998277, + 13.3540031 + ], + [ + 52.4998117, + 13.3538935 + ], + [ + 52.4997955, + 13.3537315 + ], + [ + 52.4997895, + 13.3535463 + ], + [ + 52.4997983, + 13.3533337 + ], + [ + 52.4998111, + 13.3531521 + ], + [ + 52.4998318, + 13.3529284 + ], + [ + 52.4998831, + 13.3525393 + ] + ] + }, + { + "osmId": "199325265", + "name": "Anhalter Vorortbahn", + "lengthMeters": 482.16889832995344, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001305, + 13.3789595 + ], + [ + 52.500012, + 13.3788493 + ], + [ + 52.4997142, + 13.378524 + ], + [ + 52.49947, + 13.3781729 + ], + [ + 52.499303, + 13.3778507 + ], + [ + 52.4988581, + 13.3767642 + ], + [ + 52.4984065, + 13.375675 + ], + [ + 52.4982335, + 13.375316 + ], + [ + 52.4980483, + 13.3749694 + ], + [ + 52.4976652, + 13.3743942 + ], + [ + 52.497448, + 13.3740918 + ], + [ + 52.497206, + 13.3738071 + ] + ] + }, + { + "osmId": "199340313", + "name": null, + "lengthMeters": 705.4542893691466, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001097, + 13.3790222 + ], + [ + 52.4999795, + 13.3789131 + ], + [ + 52.4996855, + 13.3785748 + ], + [ + 52.4994441, + 13.3782065 + ], + [ + 52.4992771, + 13.3778836 + ], + [ + 52.4988269, + 13.3768 + ], + [ + 52.4983827, + 13.3757074 + ], + [ + 52.4982131, + 13.3753476 + ], + [ + 52.4980271, + 13.3750071 + ], + [ + 52.497648, + 13.374423 + ], + [ + 52.4974312, + 13.3741213 + ], + [ + 52.4971947, + 13.3738425 + ], + [ + 52.4956061, + 13.3718393 + ] + ] + }, + { + "osmId": "199425795", + "name": null, + "lengthMeters": 352.25930455447093, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191629, + 13.4087232 + ], + [ + 52.5195109, + 13.4095012 + ], + [ + 52.5198251, + 13.4101918 + ], + [ + 52.5199356, + 13.4104365 + ], + [ + 52.5202931, + 13.4111624 + ], + [ + 52.5204605, + 13.4115121 + ], + [ + 52.5205875, + 13.4117596 + ], + [ + 52.520984, + 13.4125656 + ], + [ + 52.5211119, + 13.412826 + ] + ] + }, + { + "osmId": "199425798", + "name": "U8", + "lengthMeters": 488.28182644081704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.522183, + 13.4109274 + ], + [ + 52.5223866, + 13.410329 + ], + [ + 52.5224429, + 13.4101443 + ], + [ + 52.5224823, + 13.4100442 + ], + [ + 52.5225357, + 13.4099316 + ], + [ + 52.5226012, + 13.4098294 + ], + [ + 52.5226675, + 13.4097461 + ], + [ + 52.5227677, + 13.4096418 + ], + [ + 52.5228638, + 13.4095687 + ], + [ + 52.5229722, + 13.4095015 + ], + [ + 52.5231337, + 13.4094415 + ], + [ + 52.5236365, + 13.4092963 + ], + [ + 52.5237607, + 13.4092524 + ], + [ + 52.5238902, + 13.4091722 + ], + [ + 52.5239972, + 13.4090842 + ], + [ + 52.5240799, + 13.409002 + ], + [ + 52.5241501, + 13.4089064 + ], + [ + 52.5242138, + 13.4087842 + ], + [ + 52.5243201, + 13.4085225 + ], + [ + 52.5247389, + 13.4073676 + ], + [ + 52.5247945, + 13.4071819 + ], + [ + 52.5248548, + 13.4069389 + ], + [ + 52.5249082, + 13.4066711 + ], + [ + 52.524969, + 13.4063795 + ], + [ + 52.525047, + 13.406124 + ] + ] + }, + { + "osmId": "199425808", + "name": null, + "lengthMeters": 114.81409368825393, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5218396, + 13.4143709 + ], + [ + 52.5212081, + 13.4130283 + ] + ] + }, + { + "osmId": "199425810", + "name": null, + "lengthMeters": 783.7131721017324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5667564, + 13.4116062 + ], + [ + 52.5667325, + 13.4116184 + ], + [ + 52.5665199, + 13.4117647 + ], + [ + 52.5662383, + 13.4119884 + ], + [ + 52.5660926, + 13.4121138 + ], + [ + 52.5659907, + 13.4121789 + ], + [ + 52.5658724, + 13.4122285 + ], + [ + 52.5657123, + 13.412282 + ], + [ + 52.565514, + 13.4123275 + ], + [ + 52.5626431, + 13.4127937 + ], + [ + 52.561156, + 13.4130053 + ], + [ + 52.5598155, + 13.4131399 + ] + ] + }, + { + "osmId": "199544339", + "name": "U3", + "lengthMeters": 77.32585521476065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5025276, + 13.3406311 + ], + [ + 52.5021469, + 13.3415871 + ] + ] + }, + { + "osmId": "199544340", + "name": "U3", + "lengthMeters": 119.81938820924492, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026184, + 13.3389506 + ], + [ + 52.502655, + 13.3390715 + ], + [ + 52.5026812, + 13.3391815 + ], + [ + 52.5027025, + 13.3392981 + ], + [ + 52.5027158, + 13.3394146 + ], + [ + 52.5027248, + 13.3395659 + ], + [ + 52.5027248, + 13.3397125 + ], + [ + 52.5027126, + 13.3398607 + ], + [ + 52.5026548, + 13.3401215 + ], + [ + 52.5026439, + 13.3401669 + ], + [ + 52.5025964, + 13.3403699 + ], + [ + 52.5025667, + 13.3404952 + ], + [ + 52.5025276, + 13.3406311 + ] + ] + }, + { + "osmId": "199544357", + "name": "U3", + "lengthMeters": 248.9499661449504, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.502717, + 13.3389411 + ], + [ + 52.5026554, + 13.3388016 + ], + [ + 52.5025955, + 13.3386919 + ], + [ + 52.5025181, + 13.3385787 + ], + [ + 52.5024298, + 13.3384763 + ], + [ + 52.50232, + 13.3383792 + ], + [ + 52.5021326, + 13.3382065 + ], + [ + 52.5019619, + 13.3380404 + ], + [ + 52.501733, + 13.3378043 + ], + [ + 52.5008779, + 13.336878 + ] + ] + }, + { + "osmId": "199544360", + "name": "U1", + "lengthMeters": 371.7639596231186, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023049, + 13.3415694 + ], + [ + 52.5024073, + 13.3413705 + ], + [ + 52.5024578, + 13.341263 + ], + [ + 52.5027846, + 13.340416 + ], + [ + 52.5031073, + 13.3395198 + ], + [ + 52.5041686, + 13.3370147 + ] + ] + }, + { + "osmId": "199544366", + "name": "U3", + "lengthMeters": 84.54599642235469, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023049, + 13.3415694 + ], + [ + 52.5023582, + 13.3414299 + ], + [ + 52.5024245, + 13.341237 + ], + [ + 52.5024514, + 13.3411614 + ], + [ + 52.5027073, + 13.34051 + ] + ] + }, + { + "osmId": "199544367", + "name": "U1", + "lengthMeters": 601.1738091698137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044163, + 13.3360113 + ], + [ + 52.5044323, + 13.3358067 + ], + [ + 52.5044535, + 13.3354222 + ], + [ + 52.5044595, + 13.3352271 + ], + [ + 52.5044616, + 13.334999 + ], + [ + 52.5044575, + 13.3348301 + ], + [ + 52.5044454, + 13.3346533 + ], + [ + 52.5044248, + 13.3344908 + ], + [ + 52.5043941, + 13.3343451 + ], + [ + 52.5042914, + 13.3338745 + ], + [ + 52.5038495, + 13.3314691 + ], + [ + 52.5033832, + 13.3292292 + ], + [ + 52.5030185, + 13.3275115 + ] + ] + }, + { + "osmId": "199544368", + "name": "U3", + "lengthMeters": 112.49533968961029, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027073, + 13.34051 + ], + [ + 52.5027731, + 13.3402825 + ], + [ + 52.5027901, + 13.3401976 + ], + [ + 52.5027921, + 13.3401877 + ], + [ + 52.5028079, + 13.3400907 + ], + [ + 52.5028448, + 13.3398435 + ], + [ + 52.5028586, + 13.339721 + ], + [ + 52.5028647, + 13.3396323 + ], + [ + 52.5028577, + 13.3395213 + ], + [ + 52.5028255, + 13.3392903 + ], + [ + 52.5027816, + 13.3391198 + ], + [ + 52.502717, + 13.3389411 + ] + ] + }, + { + "osmId": "199545399", + "name": "U1", + "lengthMeters": 183.3234017544788, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5004705, + 13.3562801 + ], + [ + 52.5007945, + 13.3572478 + ], + [ + 52.5008454, + 13.3574644 + ], + [ + 52.5009036, + 13.3576923 + ], + [ + 52.5009322, + 13.3578988 + ], + [ + 52.5009443, + 13.3580553 + ], + [ + 52.5009469, + 13.3581511 + ], + [ + 52.5009469, + 13.358298 + ], + [ + 52.5009437, + 13.3583899 + ], + [ + 52.5009371, + 13.3584793 + ], + [ + 52.5009263, + 13.3585661 + ], + [ + 52.5009111, + 13.3586523 + ], + [ + 52.5008915, + 13.3587391 + ], + [ + 52.5008762, + 13.3587927 + ] + ] + }, + { + "osmId": "199548096", + "name": null, + "lengthMeters": 82.04386379261015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5067973, + 13.3308342 + ], + [ + 52.506762, + 13.3309004 + ], + [ + 52.5067421, + 13.3309467 + ], + [ + 52.5067252, + 13.3309943 + ], + [ + 52.5066733, + 13.3311693 + ], + [ + 52.5066522, + 13.331255 + ], + [ + 52.5064022, + 13.3318528 + ] + ] + }, + { + "osmId": "199579022", + "name": null, + "lengthMeters": 142.80814604933977, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5178658, + 13.4121001 + ], + [ + 52.5180825, + 13.4119232 + ], + [ + 52.5181984, + 13.4117835 + ], + [ + 52.5189152, + 13.4108929 + ] + ] + }, + { + "osmId": "199742061", + "name": "U4", + "lengthMeters": 848.5488996417685, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887279, + 13.3403421 + ], + [ + 52.4894319, + 13.3404274 + ], + [ + 52.4894858, + 13.3404358 + ], + [ + 52.4895393, + 13.3404481 + ], + [ + 52.4896176, + 13.340473 + ], + [ + 52.4897106, + 13.3405167 + ], + [ + 52.4898282, + 13.3405894 + ], + [ + 52.4898953, + 13.3406418 + ], + [ + 52.4899575, + 13.3406999 + ], + [ + 52.4900179, + 13.3407677 + ], + [ + 52.4900744, + 13.340842 + ], + [ + 52.4904691, + 13.3414477 + ], + [ + 52.4905239, + 13.3415205 + ], + [ + 52.4905808, + 13.3415898 + ], + [ + 52.4906407, + 13.3416547 + ], + [ + 52.4907016, + 13.3417134 + ], + [ + 52.4907813, + 13.3417807 + ], + [ + 52.4908465, + 13.3418282 + ], + [ + 52.4909293, + 13.3418788 + ], + [ + 52.4909806, + 13.3419055 + ], + [ + 52.4910663, + 13.3419432 + ], + [ + 52.4911539, + 13.3419704 + ], + [ + 52.4912429, + 13.34199 + ], + [ + 52.4913481, + 13.3419996 + ], + [ + 52.4914201, + 13.3419988 + ], + [ + 52.4923971, + 13.3419148 + ], + [ + 52.4942044, + 13.3418292 + ], + [ + 52.4944211, + 13.3418297 + ], + [ + 52.4950855, + 13.3418608 + ], + [ + 52.4952212, + 13.3418854 + ], + [ + 52.4953717, + 13.3419465 + ], + [ + 52.4954052, + 13.3419698 + ], + [ + 52.4954732, + 13.3420162 + ], + [ + 52.4955388, + 13.3420686 + ], + [ + 52.4956019, + 13.342128 + ], + [ + 52.4956468, + 13.3421774 + ], + [ + 52.4957052, + 13.342249 + ], + [ + 52.4957471, + 13.3423069 + ], + [ + 52.4957991, + 13.3423877 + ], + [ + 52.4958653, + 13.3425111 + ], + [ + 52.4959158, + 13.3426196 + ] + ] + }, + { + "osmId": "199742067", + "name": "U1", + "lengthMeters": 587.4021639190144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998831, + 13.3525393 + ], + [ + 52.501429, + 13.3451403 + ], + [ + 52.5016105, + 13.3443388 + ] + ] + }, + { + "osmId": "199742068", + "name": null, + "lengthMeters": 108.64950225847453, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997447, + 13.3541023 + ], + [ + 52.4997211, + 13.3538413 + ], + [ + 52.4997131, + 13.3536523 + ], + [ + 52.4997189, + 13.3534722 + ], + [ + 52.4997499, + 13.3532607 + ], + [ + 52.4998831, + 13.3525393 + ] + ] + }, + { + "osmId": "199742070", + "name": "U1", + "lengthMeters": 133.3279170219612, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.500279, + 13.3606888 + ], + [ + 52.4999215, + 13.3619354 + ], + [ + 52.4998606, + 13.3621482 + ], + [ + 52.4998009, + 13.3623357 + ], + [ + 52.4997645, + 13.3624677 + ] + ] + }, + { + "osmId": "199786531", + "name": "U3", + "lengthMeters": 221.25329981789508, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5009998, + 13.3370889 + ], + [ + 52.5017138, + 13.3378528 + ], + [ + 52.5018952, + 13.338047 + ], + [ + 52.5023438, + 13.3384798 + ], + [ + 52.5024027, + 13.3385468 + ], + [ + 52.5024605, + 13.3386235 + ], + [ + 52.5025112, + 13.3387094 + ], + [ + 52.5025579, + 13.3387988 + ], + [ + 52.5026184, + 13.3389506 + ] + ] + }, + { + "osmId": "199847315", + "name": "U2", + "lengthMeters": 557.3760283920706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115389, + 13.3836704 + ], + [ + 52.5113669, + 13.3829292 + ], + [ + 52.5112581, + 13.3823838 + ], + [ + 52.5111699, + 13.3818144 + ], + [ + 52.5110949, + 13.3811505 + ], + [ + 52.511075, + 13.3809455 + ], + [ + 52.5110371, + 13.3807449 + ], + [ + 52.5110085, + 13.3806312 + ], + [ + 52.5109666, + 13.3804911 + ], + [ + 52.5108891, + 13.3803125 + ], + [ + 52.5107945, + 13.3801391 + ], + [ + 52.5106733, + 13.3799746 + ], + [ + 52.5105126, + 13.3798178 + ], + [ + 52.5101669, + 13.3794936 + ], + [ + 52.5099425, + 13.3792706 + ], + [ + 52.5097955, + 13.379113 + ], + [ + 52.5096535, + 13.3789424 + ], + [ + 52.5095617, + 13.3788159 + ], + [ + 52.5093885, + 13.3785121 + ], + [ + 52.5093196, + 13.3783774 + ], + [ + 52.5092628, + 13.3782636 + ], + [ + 52.5092057, + 13.3781506 + ], + [ + 52.5091515, + 13.3780441 + ], + [ + 52.5091378, + 13.3780164 + ], + [ + 52.5090769, + 13.3779084 + ], + [ + 52.5090255, + 13.3778247 + ], + [ + 52.5089594, + 13.3777277 + ], + [ + 52.5088763, + 13.3776161 + ], + [ + 52.5087742, + 13.3774965 + ], + [ + 52.5086813, + 13.3774057 + ] + ] + }, + { + "osmId": "199847319", + "name": null, + "lengthMeters": 176.12352866590732, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512316, + 13.3923566 + ], + [ + 52.5122978, + 13.3922027 + ], + [ + 52.5122731, + 13.3917767 + ], + [ + 52.5121797, + 13.3901679 + ], + [ + 52.5121567, + 13.3897679 + ] + ] + }, + { + "osmId": "199847339", + "name": null, + "lengthMeters": 161.35755902773332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122333, + 13.3923822 + ], + [ + 52.5122653, + 13.3925208 + ], + [ + 52.5122911, + 13.3926111 + ], + [ + 52.512319, + 13.3926876 + ], + [ + 52.5123461, + 13.3927568 + ], + [ + 52.5123859, + 13.3928397 + ], + [ + 52.5124387, + 13.392928 + ], + [ + 52.5125032, + 13.3930089 + ], + [ + 52.5125551, + 13.3930625 + ], + [ + 52.5126216, + 13.3931252 + ], + [ + 52.5129456, + 13.3934175 + ], + [ + 52.5130046, + 13.3934784 + ], + [ + 52.5130638, + 13.3935584 + ], + [ + 52.5131212, + 13.3936555 + ], + [ + 52.5131631, + 13.3937431 + ], + [ + 52.5132014, + 13.3938333 + ], + [ + 52.5132487, + 13.3939856 + ] + ] + }, + { + "osmId": "199847347", + "name": null, + "lengthMeters": 248.1067203658423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512024, + 13.3887341 + ], + [ + 52.5120402, + 13.3892815 + ], + [ + 52.5120644, + 13.3897281 + ], + [ + 52.5120671, + 13.3897779 + ], + [ + 52.5121513, + 13.3912194 + ], + [ + 52.5121645, + 13.3914678 + ], + [ + 52.5122095, + 13.3922072 + ], + [ + 52.5122333, + 13.3923822 + ] + ] + }, + { + "osmId": "199882645", + "name": "U1", + "lengthMeters": 119.24456331552196, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5028079, + 13.3269569 + ], + [ + 52.5030137, + 13.327949 + ], + [ + 52.5031569, + 13.3286227 + ] + ] + }, + { + "osmId": "199882646", + "name": "U1", + "lengthMeters": 75.63213346494868, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5030185, + 13.3275115 + ], + [ + 52.5028059, + 13.3264501 + ] + ] + }, + { + "osmId": "199887592", + "name": "U1", + "lengthMeters": 91.54918494049525, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.504075, + 13.448256 + ], + [ + 52.5042252, + 13.4484033 + ], + [ + 52.5043666, + 13.4485434 + ], + [ + 52.5044697, + 13.4486444 + ], + [ + 52.5045737, + 13.4487391 + ], + [ + 52.5047896, + 13.448927 + ] + ] + }, + { + "osmId": "200143176", + "name": null, + "lengthMeters": 392.56911910869053, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001832, + 13.4683359 + ], + [ + 52.5001542, + 13.4683242 + ], + [ + 52.4997172, + 13.468148 + ], + [ + 52.4994194, + 13.4680348 + ], + [ + 52.4992644, + 13.4679689 + ], + [ + 52.4991053, + 13.467906 + ], + [ + 52.4989404, + 13.4678335 + ], + [ + 52.4987459, + 13.4677356 + ], + [ + 52.4986044, + 13.467657 + ], + [ + 52.4984685, + 13.4675733 + ], + [ + 52.4983206, + 13.4674728 + ], + [ + 52.4981852, + 13.4673658 + ], + [ + 52.4980511, + 13.4672509 + ], + [ + 52.497882, + 13.4670977 + ], + [ + 52.4975902, + 13.4667925 + ], + [ + 52.4973803, + 13.4665372 + ], + [ + 52.4972008, + 13.4662988 + ], + [ + 52.4970053, + 13.4660174 + ] + ] + }, + { + "osmId": "200143182", + "name": null, + "lengthMeters": 171.20196427488025, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4968752, + 13.4658298 + ], + [ + 52.4967328, + 13.4656265 + ], + [ + 52.4966591, + 13.4655266 + ], + [ + 52.4965847, + 13.4654267 + ], + [ + 52.4964733, + 13.4652876 + ], + [ + 52.4963606, + 13.4651509 + ], + [ + 52.4961294, + 13.4648794 + ], + [ + 52.4959771, + 13.4646948 + ], + [ + 52.4958274, + 13.4645062 + ], + [ + 52.4956572, + 13.4642847 + ] + ] + }, + { + "osmId": "200143857", + "name": null, + "lengthMeters": 169.9637498988438, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969642, + 13.4656619 + ], + [ + 52.4968766, + 13.4655246 + ], + [ + 52.4958255, + 13.4639872 + ] + ] + }, + { + "osmId": "200143858", + "name": null, + "lengthMeters": 334.99224792054395, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4926158, + 13.4610492 + ], + [ + 52.492719, + 13.4611199 + ], + [ + 52.4928398, + 13.4612211 + ], + [ + 52.4929482, + 13.4613211 + ], + [ + 52.4930614, + 13.4614324 + ], + [ + 52.49323, + 13.4616113 + ], + [ + 52.4934146, + 13.4618044 + ], + [ + 52.4935749, + 13.4619659 + ], + [ + 52.4939079, + 13.4622856 + ], + [ + 52.4942351, + 13.4626172 + ], + [ + 52.4944452, + 13.4628441 + ], + [ + 52.4945385, + 13.4629501 + ], + [ + 52.4946416, + 13.4630696 + ], + [ + 52.4947442, + 13.4631891 + ], + [ + 52.4949342, + 13.4634222 + ], + [ + 52.4950436, + 13.4635614 + ], + [ + 52.4951525, + 13.4637026 + ] + ] + }, + { + "osmId": "200143860", + "name": null, + "lengthMeters": 129.9468445217376, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4957871, + 13.4640612 + ], + [ + 52.4960234, + 13.4644002 + ], + [ + 52.4963657, + 13.4648869 + ], + [ + 52.4964287, + 13.4649764 + ], + [ + 52.4966676, + 13.4653233 + ] + ] + }, + { + "osmId": "200143862", + "name": null, + "lengthMeters": 169.94449371990663, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4957653, + 13.4641009 + ], + [ + 52.4959997, + 13.4644339 + ], + [ + 52.4966468, + 13.4653796 + ], + [ + 52.49691, + 13.4657642 + ] + ] + }, + { + "osmId": "200158732", + "name": null, + "lengthMeters": 377.4012844867908, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046435, + 13.4603475 + ], + [ + 52.504525, + 13.4610108 + ], + [ + 52.5044876, + 13.4612229 + ], + [ + 52.5044249, + 13.461577 + ], + [ + 52.5044001, + 13.4617196 + ], + [ + 52.5043366, + 13.4620717 + ], + [ + 52.5041466, + 13.463133 + ], + [ + 52.5041169, + 13.4633076 + ], + [ + 52.5039551, + 13.4644399 + ], + [ + 52.5039398, + 13.4645469 + ], + [ + 52.5039112, + 13.4647467 + ], + [ + 52.5038194, + 13.4652775 + ], + [ + 52.5037857, + 13.4654384 + ], + [ + 52.5037417, + 13.4656477 + ], + [ + 52.503725, + 13.4657124 + ] + ] + }, + { + "osmId": "200192175", + "name": "Anhalter Vorortbahn", + "lengthMeters": 187.6334640172103, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042768, + 13.3815346 + ], + [ + 52.5042003, + 13.3814885 + ], + [ + 52.5040632, + 13.3814221 + ], + [ + 52.5039934, + 13.3813879 + ], + [ + 52.503584, + 13.3811828 + ], + [ + 52.5028472, + 13.3807238 + ], + [ + 52.5026857, + 13.3806167 + ] + ] + }, + { + "osmId": "200229910", + "name": null, + "lengthMeters": 117.95023268762148, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5231721, + 13.3702411 + ], + [ + 52.5222378, + 13.3710666 + ] + ] + }, + { + "osmId": "200247643", + "name": null, + "lengthMeters": 299.2955741419455, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4994666, + 13.4678015 + ], + [ + 52.4992304, + 13.4677166 + ], + [ + 52.4990452, + 13.4676398 + ], + [ + 52.4988649, + 13.4675581 + ], + [ + 52.4987621, + 13.4675084 + ], + [ + 52.4985733, + 13.4674036 + ], + [ + 52.4983739, + 13.4672715 + ], + [ + 52.498255, + 13.4671788 + ], + [ + 52.4981354, + 13.4670732 + ], + [ + 52.4980432, + 13.4669842 + ], + [ + 52.4979308, + 13.4668726 + ], + [ + 52.4977744, + 13.4667052 + ], + [ + 52.4976247, + 13.46654 + ], + [ + 52.4974663, + 13.4663542 + ], + [ + 52.497274, + 13.4661289 + ], + [ + 52.497092, + 13.4658551 + ] + ] + }, + { + "osmId": "200247646", + "name": null, + "lengthMeters": 160.6221435509746, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5010118, + 13.4681863 + ], + [ + 52.5011709, + 13.4682134 + ], + [ + 52.5012988, + 13.4682282 + ], + [ + 52.5013769, + 13.4682319 + ], + [ + 52.5015234, + 13.4682313 + ], + [ + 52.501659, + 13.4682237 + ], + [ + 52.5017141, + 13.4682158 + ], + [ + 52.5018362, + 13.4681948 + ], + [ + 52.5019304, + 13.4681712 + ], + [ + 52.5020144, + 13.4681459 + ], + [ + 52.5021086, + 13.4681134 + ], + [ + 52.5022059, + 13.4680778 + ], + [ + 52.5022994, + 13.468031 + ], + [ + 52.5023546, + 13.4679998 + ], + [ + 52.5024353, + 13.4679549 + ] + ] + }, + { + "osmId": "200422083", + "name": null, + "lengthMeters": 270.2789754791678, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5673002, + 13.4115492 + ], + [ + 52.5674821, + 13.4114396 + ], + [ + 52.5678297, + 13.4112428 + ], + [ + 52.5687145, + 13.4107756 + ], + [ + 52.5689871, + 13.4106136 + ], + [ + 52.5696055, + 13.4102828 + ] + ] + }, + { + "osmId": "200422085", + "name": null, + "lengthMeters": 97.49512889965493, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.565273, + 13.4125794 + ], + [ + 52.565395, + 13.4125496 + ], + [ + 52.5658597, + 13.412382 + ], + [ + 52.5661263, + 13.412254 + ] + ] + }, + { + "osmId": "200422334", + "name": null, + "lengthMeters": 648.7018096115462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5558812, + 13.4144501 + ], + [ + 52.5552882, + 13.4145456 + ], + [ + 52.5547233, + 13.4146249 + ], + [ + 52.5546358, + 13.4146294 + ], + [ + 52.5545333, + 13.4146309 + ], + [ + 52.5544125, + 13.4146223 + ], + [ + 52.5540185, + 13.4145543 + ], + [ + 52.55215, + 13.4141675 + ], + [ + 52.5505961, + 13.4138903 + ], + [ + 52.5500833, + 13.4137729 + ] + ] + }, + { + "osmId": "200422335", + "name": null, + "lengthMeters": 1267.8565238119556, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317721, + 13.4124311 + ], + [ + 52.5315598, + 13.4123292 + ], + [ + 52.5313943, + 13.4122061 + ], + [ + 52.5312552, + 13.4120633 + ], + [ + 52.5309927, + 13.4116958 + ], + [ + 52.5304189, + 13.410852 + ], + [ + 52.5303163, + 13.4107203 + ], + [ + 52.5301808, + 13.4105552 + ], + [ + 52.5300273, + 13.4103813 + ], + [ + 52.5297756, + 13.4101295 + ], + [ + 52.5294753, + 13.4098718 + ], + [ + 52.5292993, + 13.4097721 + ], + [ + 52.5291966, + 13.4097477 + ], + [ + 52.5291121, + 13.4097375 + ], + [ + 52.5289963, + 13.4097531 + ], + [ + 52.5288641, + 13.4098128 + ], + [ + 52.528381, + 13.4100573 + ], + [ + 52.5273084, + 13.4105643 + ], + [ + 52.5270668, + 13.410683 + ], + [ + 52.5267991, + 13.4108724 + ], + [ + 52.5264952, + 13.4110492 + ], + [ + 52.526388, + 13.411092 + ], + [ + 52.5262916, + 13.4111114 + ], + [ + 52.52618, + 13.4111088 + ], + [ + 52.5260786, + 13.411085 + ], + [ + 52.5259807, + 13.4110468 + ], + [ + 52.5258732, + 13.4109892 + ], + [ + 52.5245241, + 13.4099649 + ], + [ + 52.5244274, + 13.4099212 + ], + [ + 52.5243447, + 13.409899 + ], + [ + 52.5242666, + 13.4098949 + ], + [ + 52.5241486, + 13.4099196 + ], + [ + 52.5240644, + 13.4099556 + ], + [ + 52.5239892, + 13.410008 + ], + [ + 52.5238965, + 13.4100928 + ], + [ + 52.5238103, + 13.4101917 + ], + [ + 52.5234565, + 13.4108389 + ], + [ + 52.5231005, + 13.4113022 + ], + [ + 52.5228759, + 13.411635 + ], + [ + 52.522693, + 13.4119695 + ], + [ + 52.5224842, + 13.4124579 + ], + [ + 52.5221892, + 13.413097 + ], + [ + 52.5221139, + 13.4132528 + ], + [ + 52.522069, + 13.4133459 + ] + ] + }, + { + "osmId": "200424973", + "name": null, + "lengthMeters": 180.46329864688363, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5218412, + 13.3893791 + ], + [ + 52.5218242, + 13.3893895 + ], + [ + 52.5218035, + 13.3894008 + ], + [ + 52.5217857, + 13.3894078 + ], + [ + 52.5217621, + 13.3894135 + ], + [ + 52.5217351, + 13.3894193 + ], + [ + 52.5216119, + 13.389437 + ], + [ + 52.5214953, + 13.3894547 + ], + [ + 52.5214643, + 13.3894585 + ], + [ + 52.5214297, + 13.3894659 + ], + [ + 52.5213854, + 13.3894771 + ], + [ + 52.5213349, + 13.3894904 + ], + [ + 52.5212692, + 13.3895164 + ], + [ + 52.5211384, + 13.3895843 + ], + [ + 52.5210252, + 13.3896488 + ], + [ + 52.5206596, + 13.3898772 + ], + [ + 52.5205899, + 13.3899255 + ], + [ + 52.520445, + 13.3900193 + ], + [ + 52.5204102, + 13.390043 + ], + [ + 52.5202922, + 13.3901164 + ] + ] + }, + { + "osmId": "201195204", + "name": null, + "lengthMeters": 340.3573771384823, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310925, + 13.1968091 + ], + [ + 52.5320227, + 13.1975912 + ], + [ + 52.5327474, + 13.1982646 + ], + [ + 52.5333923, + 13.1986829 + ], + [ + 52.533539, + 13.1987886 + ], + [ + 52.5338647, + 13.1988777 + ] + ] + }, + { + "osmId": "201195207", + "name": null, + "lengthMeters": 349.08531663576036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531062, + 13.1968953 + ], + [ + 52.5319918, + 13.1976914 + ], + [ + 52.5321256, + 13.1978416 + ], + [ + 52.5326882, + 13.1984526 + ], + [ + 52.5333357, + 13.1988675 + ], + [ + 52.5335098, + 13.1989584 + ], + [ + 52.5338821, + 13.1990571 + ] + ] + }, + { + "osmId": "201304833", + "name": null, + "lengthMeters": 128.16017117209472, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5712774, + 13.3983373 + ], + [ + 52.5714873, + 13.3984217 + ], + [ + 52.5716651, + 13.3985007 + ], + [ + 52.5717772, + 13.3985501 + ], + [ + 52.5721046, + 13.3986673 + ], + [ + 52.5722232, + 13.3987089 + ], + [ + 52.5724003, + 13.3987614 + ] + ] + }, + { + "osmId": "201309395", + "name": null, + "lengthMeters": 100.41953497294482, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4313845, + 10.2311386 + ], + [ + 53.4312, + 10.2318223 + ], + [ + 53.4311733, + 10.2319219 + ], + [ + 53.4310173, + 10.2325234 + ] + ] + }, + { + "osmId": "201320979", + "name": null, + "lengthMeters": 82.56927239436638, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4312735, + 10.231879 + ], + [ + 53.4312975, + 10.2319227 + ], + [ + 53.4319438, + 10.2324044 + ] + ] + }, + { + "osmId": "201320980", + "name": null, + "lengthMeters": 82.3806919621842, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4312505, + 10.231979 + ], + [ + 53.4312838, + 10.231975 + ], + [ + 53.4319332, + 10.2324462 + ] + ] + }, + { + "osmId": "201320981", + "name": null, + "lengthMeters": 100.33636715216548, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4314089, + 10.231155 + ], + [ + 53.4312238, + 10.2318407 + ], + [ + 53.4311973, + 10.2319397 + ], + [ + 53.4310403, + 10.2325374 + ] + ] + }, + { + "osmId": "201320982", + "name": null, + "lengthMeters": 91.35261662641479, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4311733, + 10.2319219 + ], + [ + 53.4311973, + 10.2319397 + ], + [ + 53.4312505, + 10.231979 + ], + [ + 53.4319287, + 10.232464 + ] + ] + }, + { + "osmId": "201320983", + "name": null, + "lengthMeters": 91.21932445301212, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4319492, + 10.2323832 + ], + [ + 53.4312735, + 10.231879 + ], + [ + 53.4312238, + 10.2318407 + ], + [ + 53.4312, + 10.2318223 + ] + ] + }, + { + "osmId": "201326493", + "name": null, + "lengthMeters": 166.52763335460338, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4251013, + 10.2275395 + ], + [ + 53.4253056, + 10.2261464 + ], + [ + 53.4254579, + 10.2257082 + ], + [ + 53.4254955, + 10.2256467 + ], + [ + 53.425702, + 10.2253099 + ] + ] + }, + { + "osmId": "202500598", + "name": null, + "lengthMeters": 93.45187831383613, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1398437, + 11.5586642 + ], + [ + 48.1399336, + 11.557412 + ] + ] + }, + { + "osmId": "202500704", + "name": null, + "lengthMeters": 310.96665714314696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1408237, + 11.5575451 + ], + [ + 48.1409876, + 11.555322 + ], + [ + 48.1411348, + 11.5534522 + ], + [ + 48.1411399, + 11.5533811 + ] + ] + }, + { + "osmId": "202500706", + "name": null, + "lengthMeters": 229.22962235799775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409725, + 11.5575674 + ], + [ + 48.141135, + 11.5553469 + ], + [ + 48.1411875, + 11.554495 + ] + ] + }, + { + "osmId": "202500711", + "name": null, + "lengthMeters": 94.57195158390911, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1407033, + 11.5575271 + ], + [ + 48.1406134, + 11.5587945 + ] + ] + }, + { + "osmId": "202500783", + "name": null, + "lengthMeters": 239.25501084870575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416257, + 11.5571955 + ], + [ + 48.1416375, + 11.557038 + ], + [ + 48.1417296, + 11.5558548 + ], + [ + 48.1418467, + 11.554277 + ], + [ + 48.1418583, + 11.5541217 + ], + [ + 48.1418629, + 11.5539909 + ] + ] + }, + { + "osmId": "203301592", + "name": null, + "lengthMeters": 434.1786136897078, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5222115, + 10.2806927 + ], + [ + 53.5226422, + 10.2815325 + ], + [ + 53.5232712, + 10.2829455 + ], + [ + 53.5235736, + 10.2836663 + ], + [ + 53.52381, + 10.2843312 + ], + [ + 53.5240172, + 10.2848986 + ], + [ + 53.5242497, + 10.2855352 + ], + [ + 53.5244248, + 10.286085 + ] + ] + }, + { + "osmId": "203611909", + "name": null, + "lengthMeters": 154.5023239013841, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694838, + 13.4441459 + ], + [ + 52.4696458, + 13.4452143 + ], + [ + 52.4696895, + 13.4455164 + ], + [ + 52.4697018, + 13.4456282 + ], + [ + 52.4697167, + 13.4458011 + ], + [ + 52.4697377, + 13.4460596 + ], + [ + 52.4697776, + 13.4463732 + ] + ] + }, + { + "osmId": "205333626", + "name": "U1", + "lengthMeters": 76.17794224838728, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001454, + 13.3552895 + ], + [ + 52.5004705, + 13.3562801 + ] + ] + }, + { + "osmId": "205348043", + "name": null, + "lengthMeters": 210.54525217677042, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1360074, + 11.6093009 + ], + [ + 48.135808, + 11.6094278 + ], + [ + 48.1352404, + 11.6097921 + ], + [ + 48.1351787, + 11.6098317 + ], + [ + 48.1351676, + 11.6098391 + ], + [ + 48.1350863, + 11.6098896 + ], + [ + 48.1349343, + 11.6099826 + ], + [ + 48.1348547, + 11.6100309 + ], + [ + 48.1347866, + 11.610063 + ], + [ + 48.1346533, + 11.6101221 + ], + [ + 48.1345163, + 11.610169 + ], + [ + 48.134391, + 11.6102092 + ], + [ + 48.1342836, + 11.6102421 + ], + [ + 48.1342309, + 11.6102543 + ] + ] + }, + { + "osmId": "205399268", + "name": null, + "lengthMeters": 1981.0202851507572, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.360269, + 13.097445 + ], + [ + 52.360304, + 13.0974168 + ], + [ + 52.3604183, + 13.0973248 + ], + [ + 52.361665, + 13.0963219 + ], + [ + 52.3617142, + 13.0962823 + ], + [ + 52.3624495, + 13.0956892 + ], + [ + 52.3632245, + 13.0951794 + ], + [ + 52.3635709, + 13.0949834 + ], + [ + 52.3636397, + 13.0949446 + ], + [ + 52.3636877, + 13.0949176 + ], + [ + 52.3637579, + 13.0948777 + ], + [ + 52.363942, + 13.0947733 + ], + [ + 52.3650234, + 13.0941404 + ], + [ + 52.365504, + 13.093831 + ], + [ + 52.3656098, + 13.0937474 + ], + [ + 52.3658321, + 13.0935775 + ], + [ + 52.3660666, + 13.0933982 + ], + [ + 52.3661243, + 13.0933541 + ], + [ + 52.3661823, + 13.0933107 + ], + [ + 52.3679396, + 13.0919952 + ], + [ + 52.368211, + 13.0917917 + ], + [ + 52.3684716, + 13.0915895 + ], + [ + 52.3685515, + 13.0915275 + ], + [ + 52.368619, + 13.0914762 + ], + [ + 52.3691478, + 13.0910736 + ], + [ + 52.3696957, + 13.0906122 + ], + [ + 52.3708693, + 13.0896842 + ], + [ + 52.3713513, + 13.0893105 + ], + [ + 52.3717006, + 13.0890536 + ], + [ + 52.3719917, + 13.0888434 + ], + [ + 52.3727469, + 13.0883687 + ], + [ + 52.372758, + 13.088362 + ], + [ + 52.3730978, + 13.088157 + ], + [ + 52.3733441, + 13.0879983 + ], + [ + 52.3734141, + 13.0879523 + ], + [ + 52.3734661, + 13.0879233 + ], + [ + 52.3735552, + 13.0878669 + ], + [ + 52.3737857, + 13.0877266 + ], + [ + 52.3741113, + 13.0875229 + ], + [ + 52.3743664, + 13.0873629 + ], + [ + 52.374538, + 13.0872063 + ], + [ + 52.3746854, + 13.0870534 + ], + [ + 52.3750576, + 13.0865185 + ], + [ + 52.375699, + 13.0855762 + ], + [ + 52.3758194, + 13.0853993 + ], + [ + 52.3762133, + 13.0848215 + ] + ] + }, + { + "osmId": "205427778", + "name": null, + "lengthMeters": 633.4520072875209, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1286503, + 11.6044524 + ], + [ + 48.128641, + 11.6044246 + ], + [ + 48.1286326, + 11.6043943 + ], + [ + 48.1286288, + 11.604362 + ], + [ + 48.1286268, + 11.6043284 + ], + [ + 48.1286244, + 11.6042724 + ], + [ + 48.1286267, + 11.6042237 + ], + [ + 48.128631, + 11.6041912 + ], + [ + 48.1286376, + 11.6041571 + ], + [ + 48.1286433, + 11.6041365 + ], + [ + 48.1286542, + 11.6040968 + ], + [ + 48.1287114, + 11.6039213 + ], + [ + 48.1287305, + 11.6038446 + ], + [ + 48.1287447, + 11.6037675 + ], + [ + 48.1287501, + 11.6036767 + ], + [ + 48.1287507, + 11.6035931 + ], + [ + 48.1287504, + 11.603554 + ], + [ + 48.1287422, + 11.6034541 + ], + [ + 48.1287163, + 11.6033184 + ], + [ + 48.128697, + 11.6032349 + ], + [ + 48.1286802, + 11.6031456 + ], + [ + 48.1286768, + 11.6031017 + ], + [ + 48.1286782, + 11.6030537 + ], + [ + 48.128683, + 11.603016 + ], + [ + 48.1286877, + 11.6029902 + ], + [ + 48.1287, + 11.6029459 + ], + [ + 48.1287104, + 11.6029209 + ], + [ + 48.1291386, + 11.6022748 + ], + [ + 48.1293141, + 11.6020101 + ], + [ + 48.1293526, + 11.6019554 + ], + [ + 48.1294175, + 11.6018807 + ], + [ + 48.1294549, + 11.6018464 + ], + [ + 48.1294965, + 11.6018097 + ], + [ + 48.1295202, + 11.6017933 + ], + [ + 48.1296231, + 11.6017176 + ], + [ + 48.1296652, + 11.6016867 + ], + [ + 48.1297316, + 11.6016285 + ], + [ + 48.1297874, + 11.6015686 + ], + [ + 48.1298203, + 11.6015297 + ], + [ + 48.1298544, + 11.6014838 + ], + [ + 48.1303622, + 11.600735 + ], + [ + 48.1307155, + 11.6002141 + ], + [ + 48.1308027, + 11.6000587 + ], + [ + 48.1308432, + 11.5999714 + ], + [ + 48.1308801, + 11.5998822 + ], + [ + 48.1308987, + 11.5998323 + ], + [ + 48.130927, + 11.5997422 + ], + [ + 48.1309419, + 11.5996963 + ], + [ + 48.1309685, + 11.599612 + ], + [ + 48.1309915, + 11.5995614 + ], + [ + 48.1310374, + 11.5994604 + ], + [ + 48.1310906, + 11.599364 + ], + [ + 48.1315628, + 11.598687 + ], + [ + 48.1319764, + 11.5980939 + ], + [ + 48.1319817, + 11.5980851 + ] + ] + }, + { + "osmId": "205681252", + "name": null, + "lengthMeters": 694.7721517295835, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4139523, + 13.5745903 + ], + [ + 52.413978, + 13.5746442 + ], + [ + 52.4141848, + 13.5751108 + ], + [ + 52.4145235, + 13.5758801 + ], + [ + 52.4145981, + 13.5760455 + ], + [ + 52.415014, + 13.5769903 + ], + [ + 52.4154764, + 13.5780287 + ], + [ + 52.4155079, + 13.5780976 + ], + [ + 52.4155179, + 13.5781194 + ], + [ + 52.4156044, + 13.5783171 + ], + [ + 52.4157735, + 13.5787036 + ], + [ + 52.4160876, + 13.5794213 + ], + [ + 52.4162304, + 13.5797477 + ], + [ + 52.4163494, + 13.5800196 + ], + [ + 52.4164217, + 13.5801819 + ], + [ + 52.4164437, + 13.5802312 + ], + [ + 52.4165804, + 13.5805379 + ], + [ + 52.4167105, + 13.5808288 + ], + [ + 52.416743, + 13.5809026 + ], + [ + 52.4167978, + 13.5809755 + ], + [ + 52.4168567, + 13.5810149 + ], + [ + 52.416867, + 13.5810218 + ], + [ + 52.416948, + 13.5810181 + ], + [ + 52.4169886, + 13.5809937 + ], + [ + 52.4170487, + 13.5809331 + ], + [ + 52.4172396, + 13.5807243 + ], + [ + 52.4173108, + 13.5806536 + ], + [ + 52.4173172, + 13.5806473 + ], + [ + 52.417342, + 13.5806252 + ], + [ + 52.4174627, + 13.5805181 + ], + [ + 52.4175556, + 13.580436 + ], + [ + 52.4180501, + 13.5799991 + ] + ] + }, + { + "osmId": "206513855", + "name": "Altonaer Hafenbahn", + "lengthMeters": 443.2585235414194, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5570307, + 9.9358046 + ], + [ + 53.5566642, + 9.9357872 + ], + [ + 53.5564448, + 9.9357847 + ], + [ + 53.5563423, + 9.9357929 + ], + [ + 53.5561425, + 9.9358273 + ], + [ + 53.5559795, + 9.9358378 + ], + [ + 53.5556866, + 9.9358198 + ], + [ + 53.5555228, + 9.9358006 + ], + [ + 53.5553023, + 9.9358007 + ], + [ + 53.5551714, + 9.9358076 + ], + [ + 53.5550425, + 9.9358261 + ], + [ + 53.5547745, + 9.9358569 + ], + [ + 53.5542936, + 9.9358496 + ], + [ + 53.5540781, + 9.9358359 + ], + [ + 53.5540181, + 9.9358287 + ], + [ + 53.5538888, + 9.9358026 + ], + [ + 53.5536963, + 9.9357759 + ], + [ + 53.5535679, + 9.9357619 + ], + [ + 53.5533362, + 9.9357531 + ], + [ + 53.5530501, + 9.9357756 + ] + ] + }, + { + "osmId": "206889079", + "name": null, + "lengthMeters": 846.9691212267184, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4348233, + 13.5396435 + ], + [ + 52.4345234, + 13.5388818 + ], + [ + 52.434465, + 13.5387382 + ], + [ + 52.4344396, + 13.5386779 + ], + [ + 52.4343615, + 13.5385163 + ], + [ + 52.4343379, + 13.5384701 + ], + [ + 52.4342726, + 13.5383409 + ], + [ + 52.4341655, + 13.5381592 + ], + [ + 52.4330441, + 13.5363997 + ], + [ + 52.4329764, + 13.5362947 + ], + [ + 52.4329024, + 13.5361799 + ], + [ + 52.4323616, + 13.5353143 + ], + [ + 52.4322943, + 13.5352082 + ], + [ + 52.4322168, + 13.5350863 + ], + [ + 52.4319162, + 13.5346118 + ], + [ + 52.4318665, + 13.5345332 + ], + [ + 52.4314823, + 13.5339301 + ], + [ + 52.4313421, + 13.5337113 + ], + [ + 52.4311934, + 13.5334741 + ], + [ + 52.4310682, + 13.5332576 + ], + [ + 52.4309876, + 13.5330998 + ], + [ + 52.4309094, + 13.5329355 + ], + [ + 52.4308636, + 13.5328233 + ], + [ + 52.4308092, + 13.5326787 + ], + [ + 52.4307471, + 13.5325074 + ], + [ + 52.4305391, + 13.5319587 + ], + [ + 52.4303708, + 13.5315127 + ], + [ + 52.4302013, + 13.5311152 + ], + [ + 52.4300281, + 13.5307427 + ], + [ + 52.429823, + 13.5303062 + ] + ] + }, + { + "osmId": "206889081", + "name": null, + "lengthMeters": 412.8791718901323, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.434338, + 13.5417042 + ], + [ + 52.4339996, + 13.542047 + ], + [ + 52.4337273, + 13.5423366 + ], + [ + 52.4334278, + 13.5426851 + ], + [ + 52.4327257, + 13.5435938 + ], + [ + 52.4320502, + 13.5444704 + ], + [ + 52.4319107, + 13.5446597 + ], + [ + 52.4318087, + 13.5448484 + ], + [ + 52.4317021, + 13.5450647 + ], + [ + 52.4315882, + 13.5453391 + ], + [ + 52.4315079, + 13.5455682 + ] + ] + }, + { + "osmId": "207993052", + "name": null, + "lengthMeters": 331.01577592070845, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5048741, + 13.3225103 + ], + [ + 52.5048748, + 13.322498 + ], + [ + 52.5048752, + 13.3224908 + ], + [ + 52.5049045, + 13.3219616 + ], + [ + 52.5049594, + 13.3209979 + ], + [ + 52.5050073, + 13.3201205 + ], + [ + 52.5050254, + 13.3197901 + ], + [ + 52.5051235, + 13.3180445 + ], + [ + 52.5051245, + 13.3180278 + ], + [ + 52.5051453, + 13.31764 + ] + ] + }, + { + "osmId": "208051227", + "name": null, + "lengthMeters": 193.48401277583326, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5123151, + 13.2549208 + ], + [ + 52.5130742, + 13.2546598 + ], + [ + 52.5133276, + 13.2545701 + ], + [ + 52.5140187, + 13.2543388 + ] + ] + }, + { + "osmId": "208051233", + "name": null, + "lengthMeters": 1413.2611209909899, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5123086, + 13.2548641 + ], + [ + 52.512291, + 13.2548699 + ], + [ + 52.5119793, + 13.254974 + ], + [ + 52.5115345, + 13.2551604 + ], + [ + 52.5110383, + 13.2554287 + ], + [ + 52.5106318, + 13.255717 + ], + [ + 52.5103959, + 13.2559155 + ], + [ + 52.5101804, + 13.256114 + ], + [ + 52.5098107, + 13.2565163 + ], + [ + 52.5095386, + 13.2568478 + ], + [ + 52.5092662, + 13.2572432 + ], + [ + 52.5090094, + 13.2576692 + ], + [ + 52.508875, + 13.2579151 + ], + [ + 52.5088251, + 13.2580107 + ], + [ + 52.5082908, + 13.2591606 + ], + [ + 52.5081681, + 13.2594513 + ], + [ + 52.5078469, + 13.2602736 + ], + [ + 52.5075339, + 13.2610549 + ], + [ + 52.507435, + 13.2612846 + ], + [ + 52.5072248, + 13.2617319 + ], + [ + 52.507064, + 13.2620442 + ], + [ + 52.507055, + 13.2620618 + ], + [ + 52.5068419, + 13.2624158 + ], + [ + 52.506575, + 13.2628115 + ], + [ + 52.5064118, + 13.2630274 + ], + [ + 52.5063283, + 13.2631278 + ], + [ + 52.5062428, + 13.2632272 + ], + [ + 52.5060426, + 13.2634481 + ], + [ + 52.5058333, + 13.2636496 + ], + [ + 52.5056203, + 13.2638343 + ], + [ + 52.5053914, + 13.2640033 + ], + [ + 52.5050445, + 13.2642221 + ], + [ + 52.5046532, + 13.2644237 + ], + [ + 52.5043273, + 13.2645634 + ], + [ + 52.5033871, + 13.2649459 + ], + [ + 52.5031434, + 13.2650368 + ], + [ + 52.5023301, + 13.2653404 + ], + [ + 52.5019568, + 13.2654898 + ] + ] + }, + { + "osmId": "208051244", + "name": null, + "lengthMeters": 96.02315787493957, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5094268, + 13.256721 + ], + [ + 52.5097108, + 13.256333 + ], + [ + 52.5097978, + 13.2562261 + ], + [ + 52.5098896, + 13.2561217 + ], + [ + 52.5099707, + 13.2560298 + ], + [ + 52.5101198, + 13.255878 + ] + ] + }, + { + "osmId": "208051248", + "name": null, + "lengthMeters": 1070.3207159126835, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073286, + 13.2610567 + ], + [ + 52.5072468, + 13.2612317 + ], + [ + 52.5071713, + 13.2614037 + ], + [ + 52.5070996, + 13.2615654 + ], + [ + 52.5070131, + 13.2617409 + ], + [ + 52.5069378, + 13.2618887 + ], + [ + 52.5068462, + 13.2620575 + ], + [ + 52.5067728, + 13.2621902 + ], + [ + 52.5066985, + 13.2623049 + ], + [ + 52.5066033, + 13.2624499 + ], + [ + 52.5065068, + 13.2625995 + ], + [ + 52.5064098, + 13.2627323 + ], + [ + 52.5063034, + 13.2628869 + ], + [ + 52.5062074, + 13.263009 + ], + [ + 52.5060824, + 13.2631548 + ], + [ + 52.5059597, + 13.2632831 + ], + [ + 52.5058019, + 13.2634314 + ], + [ + 52.5056882, + 13.2635339 + ], + [ + 52.5055614, + 13.2636384 + ], + [ + 52.50545, + 13.263726 + ], + [ + 52.5053351, + 13.2638091 + ], + [ + 52.5051767, + 13.2639119 + ], + [ + 52.5050443, + 13.2639938 + ], + [ + 52.5049623, + 13.2640448 + ], + [ + 52.5047518, + 13.2641466 + ], + [ + 52.5045918, + 13.2642154 + ], + [ + 52.504443, + 13.2642727 + ], + [ + 52.504267, + 13.2643384 + ], + [ + 52.5040316, + 13.2644192 + ], + [ + 52.5038328, + 13.2644894 + ], + [ + 52.5036451, + 13.2645578 + ], + [ + 52.5034348, + 13.2646342 + ], + [ + 52.5026819, + 13.2648935 + ], + [ + 52.5026352, + 13.264912 + ], + [ + 52.5022825, + 13.2650519 + ], + [ + 52.5022053, + 13.2650885 + ], + [ + 52.5020084, + 13.2651688 + ], + [ + 52.50192, + 13.2652174 + ], + [ + 52.5018045, + 13.2652908 + ], + [ + 52.5016898, + 13.2653655 + ], + [ + 52.5015737, + 13.2654659 + ], + [ + 52.5014765, + 13.2655503 + ], + [ + 52.5013905, + 13.2656338 + ], + [ + 52.5012995, + 13.2657308 + ], + [ + 52.5011965, + 13.2658545 + ], + [ + 52.5011008, + 13.2659715 + ], + [ + 52.5009571, + 13.2661475 + ], + [ + 52.5008889, + 13.2662302 + ], + [ + 52.5007801, + 13.266358 + ], + [ + 52.500677, + 13.2664861 + ], + [ + 52.5005725, + 13.2666154 + ], + [ + 52.5004209, + 13.2667988 + ], + [ + 52.5002633, + 13.2669897 + ], + [ + 52.5001195, + 13.2671663 + ], + [ + 52.5000069, + 13.2673072 + ], + [ + 52.4998903, + 13.2674487 + ], + [ + 52.499779, + 13.2675875 + ], + [ + 52.4996482, + 13.2677628 + ], + [ + 52.4995464, + 13.2679061 + ], + [ + 52.4994544, + 13.2680433 + ], + [ + 52.4993308, + 13.2682407 + ], + [ + 52.4992562, + 13.2683726 + ], + [ + 52.4991969, + 13.268483 + ], + [ + 52.4991546, + 13.2685701 + ] + ] + }, + { + "osmId": "210666318", + "name": null, + "lengthMeters": 461.81975727710994, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451335, + 11.4936011 + ], + [ + 48.145254, + 11.4927116 + ], + [ + 48.1453662, + 11.4921163 + ], + [ + 48.1454459, + 11.4917862 + ], + [ + 48.1455324, + 11.4914668 + ], + [ + 48.1456018, + 11.4912199 + ], + [ + 48.1457215, + 11.4908542 + ], + [ + 48.1457987, + 11.4906448 + ], + [ + 48.1459688, + 11.4902387 + ], + [ + 48.1461433, + 11.4898667 + ], + [ + 48.14646, + 11.489289 + ], + [ + 48.1466121, + 11.489052 + ], + [ + 48.1468614, + 11.4886903 + ], + [ + 48.1471355, + 11.4883137 + ] + ] + }, + { + "osmId": "211080236", + "name": null, + "lengthMeters": 244.71312669175128, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240721, + 13.3716937 + ], + [ + 52.5242942, + 13.3714187 + ], + [ + 52.5245088, + 13.3712409 + ], + [ + 52.5260472, + 13.3701217 + ] + ] + }, + { + "osmId": "211456793", + "name": null, + "lengthMeters": 76.2882225144383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1373972, + 11.5888647 + ], + [ + 48.1373911, + 11.5888943 + ], + [ + 48.1373586, + 11.5890553 + ], + [ + 48.1373428, + 11.5891395 + ], + [ + 48.1372316, + 11.589706 + ], + [ + 48.1372061, + 11.589852 + ] + ] + }, + { + "osmId": "211458860", + "name": null, + "lengthMeters": 79.31939553454907, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1323473, + 11.6099952 + ], + [ + 48.132436, + 11.6100577 + ], + [ + 48.1324693, + 11.6100758 + ], + [ + 48.1325074, + 11.6100913 + ], + [ + 48.1325781, + 11.6101248 + ], + [ + 48.1326344, + 11.6101517 + ], + [ + 48.1326356, + 11.6101523 + ], + [ + 48.1327263, + 11.6101959 + ], + [ + 48.1328117, + 11.6102293 + ], + [ + 48.1328723, + 11.6102464 + ], + [ + 48.1328892, + 11.6102512 + ], + [ + 48.1329538, + 11.6102628 + ], + [ + 48.133032, + 11.6102724 + ] + ] + }, + { + "osmId": "212276818", + "name": null, + "lengthMeters": 4005.876948361415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1389505, + 11.5137909 + ], + [ + 48.1389004, + 11.5137626 + ], + [ + 48.1388467, + 11.5137446 + ], + [ + 48.1387804, + 11.5137419 + ], + [ + 48.1387368, + 11.5137379 + ], + [ + 48.1376669, + 11.5136836 + ], + [ + 48.1376275, + 11.5136814 + ], + [ + 48.1374894, + 11.5136747 + ], + [ + 48.137034, + 11.5136491 + ], + [ + 48.1359215, + 11.5135938 + ], + [ + 48.1351873, + 11.5135633 + ], + [ + 48.1351238, + 11.5135607 + ], + [ + 48.1351096, + 11.5135625 + ], + [ + 48.1350892, + 11.513565 + ], + [ + 48.135058, + 11.5135827 + ], + [ + 48.1350299, + 11.5136104 + ], + [ + 48.1350107, + 11.5136334 + ], + [ + 48.135002, + 11.5136439 + ], + [ + 48.1349836, + 11.5136702 + ], + [ + 48.134963, + 11.5137087 + ], + [ + 48.1349428, + 11.5137871 + ], + [ + 48.1349307, + 11.5138779 + ], + [ + 48.1349302, + 11.5138939 + ], + [ + 48.1349241, + 11.514102 + ], + [ + 48.1349209, + 11.5142035 + ], + [ + 48.1348859, + 11.5151147 + ], + [ + 48.1348759, + 11.5154459 + ], + [ + 48.1348263, + 11.5170635 + ], + [ + 48.1348199, + 11.5172131 + ], + [ + 48.1348176, + 11.517379 + ], + [ + 48.1348146, + 11.5177574 + ], + [ + 48.1347893, + 11.518751 + ], + [ + 48.1347191, + 11.5211841 + ], + [ + 48.1347083, + 11.5214927 + ], + [ + 48.1346985, + 11.5216014 + ], + [ + 48.134688, + 11.5216644 + ], + [ + 48.1346718, + 11.5217206 + ], + [ + 48.1346537, + 11.5217773 + ], + [ + 48.1346292, + 11.5218302 + ], + [ + 48.1344472, + 11.5221309 + ], + [ + 48.1344144, + 11.522182 + ], + [ + 48.1343725, + 11.5222415 + ], + [ + 48.1343478, + 11.5222736 + ], + [ + 48.1343308, + 11.5222927 + ], + [ + 48.1343199, + 11.5223014 + ], + [ + 48.1343024, + 11.5223135 + ], + [ + 48.1342848, + 11.5223239 + ], + [ + 48.1342678, + 11.5223317 + ], + [ + 48.1342485, + 11.5223369 + ], + [ + 48.134226, + 11.5223407 + ], + [ + 48.1342079, + 11.522342 + ], + [ + 48.1341887, + 11.5223407 + ], + [ + 48.1341648, + 11.5223354 + ], + [ + 48.1341412, + 11.5223262 + ], + [ + 48.1341163, + 11.5223125 + ], + [ + 48.1340896, + 11.5222898 + ], + [ + 48.134065, + 11.5222639 + ], + [ + 48.1340274, + 11.5222186 + ], + [ + 48.1339487, + 11.5221034 + ], + [ + 48.1338747, + 11.5219947 + ], + [ + 48.1336174, + 11.5216084 + ], + [ + 48.1328069, + 11.5204289 + ], + [ + 48.1323524, + 11.5198662 + ], + [ + 48.1314747, + 11.5188567 + ], + [ + 48.1304532, + 11.5177095 + ], + [ + 48.1302308, + 11.5174526 + ], + [ + 48.1299796, + 11.5171411 + ], + [ + 48.1298168, + 11.5169116 + ], + [ + 48.1297174, + 11.5167584 + ], + [ + 48.1296482, + 11.5166486 + ], + [ + 48.1293774, + 11.5162222 + ], + [ + 48.1291658, + 11.5158643 + ], + [ + 48.1291037, + 11.5157516 + ], + [ + 48.1289708, + 11.5155135 + ], + [ + 48.1288442, + 11.5152609 + ], + [ + 48.128721, + 11.51501 + ], + [ + 48.1285953, + 11.5147276 + ], + [ + 48.1285224, + 11.5145733 + ], + [ + 48.1283321, + 11.5141704 + ], + [ + 48.128201, + 11.5138739 + ], + [ + 48.1280694, + 11.5135726 + ], + [ + 48.1279432, + 11.513272 + ], + [ + 48.127818, + 11.5129667 + ], + [ + 48.127695, + 11.5126598 + ], + [ + 48.1275734, + 11.5123517 + ], + [ + 48.1274782, + 11.5121044 + ], + [ + 48.1274142, + 11.5119463 + ], + [ + 48.1273772, + 11.5118518 + ], + [ + 48.1272627, + 11.5115612 + ], + [ + 48.1271945, + 11.5113893 + ], + [ + 48.127118, + 11.5112017 + ], + [ + 48.1270786, + 11.511103 + ], + [ + 48.126931, + 11.5107228 + ], + [ + 48.1267996, + 11.5103892 + ], + [ + 48.1267287, + 11.5102181 + ], + [ + 48.1266632, + 11.5100498 + ], + [ + 48.1266391, + 11.5099892 + ], + [ + 48.1266128, + 11.509927 + ], + [ + 48.1265795, + 11.5098538 + ], + [ + 48.1265557, + 11.5097998 + ], + [ + 48.1265018, + 11.5096938 + ], + [ + 48.1264613, + 11.5096204 + ], + [ + 48.1264072, + 11.5095274 + ], + [ + 48.1263545, + 11.509446 + ], + [ + 48.1263047, + 11.509375 + ], + [ + 48.1262578, + 11.5093148 + ], + [ + 48.1262088, + 11.509253 + ], + [ + 48.1261664, + 11.509205 + ], + [ + 48.1261224, + 11.5091565 + ], + [ + 48.1260567, + 11.5090903 + ], + [ + 48.1259414, + 11.5089796 + ], + [ + 48.1259017, + 11.5089281 + ], + [ + 48.1258842, + 11.5088961 + ], + [ + 48.125867, + 11.5088584 + ], + [ + 48.1258513, + 11.50881 + ], + [ + 48.125839, + 11.5087568 + ], + [ + 48.1258344, + 11.5087163 + ], + [ + 48.1258329, + 11.5086818 + ], + [ + 48.1258335, + 11.5086318 + ], + [ + 48.125835, + 11.5086045 + ], + [ + 48.1258794, + 11.5082645 + ], + [ + 48.1259125, + 11.5080214 + ], + [ + 48.1260576, + 11.5070063 + ], + [ + 48.1261143, + 11.5065637 + ], + [ + 48.1262215, + 11.5056052 + ], + [ + 48.1262512, + 11.5051916 + ], + [ + 48.1262702, + 11.5047536 + ], + [ + 48.1262627, + 11.5044491 + ], + [ + 48.1262243, + 11.50388 + ], + [ + 48.1261961, + 11.5035085 + ], + [ + 48.1261753, + 11.5031742 + ], + [ + 48.1261731, + 11.503139 + ], + [ + 48.1261693, + 11.5030778 + ], + [ + 48.1261643, + 11.5029973 + ], + [ + 48.1261535, + 11.5028621 + ], + [ + 48.1261373, + 11.50264 + ], + [ + 48.1261351, + 11.5025171 + ], + [ + 48.1261341, + 11.5024627 + ], + [ + 48.1261326, + 11.5023762 + ], + [ + 48.1261279, + 11.5021099 + ], + [ + 48.1261171, + 11.5014397 + ], + [ + 48.1260772, + 11.5007184 + ], + [ + 48.1260411, + 11.5002077 + ], + [ + 48.1259842, + 11.4996494 + ], + [ + 48.1258381, + 11.498625 + ], + [ + 48.1257875, + 11.4983346 + ], + [ + 48.1257377, + 11.4980537 + ], + [ + 48.1257125, + 11.4979137 + ], + [ + 48.125668, + 11.4976897 + ], + [ + 48.1256486, + 11.4975988 + ], + [ + 48.1255993, + 11.4973681 + ], + [ + 48.1255127, + 11.4970159 + ], + [ + 48.1253598, + 11.4964503 + ], + [ + 48.1251041, + 11.4954254 + ], + [ + 48.1248058, + 11.4941944 + ], + [ + 48.1246158, + 11.4933474 + ], + [ + 48.1244951, + 11.4927168 + ], + [ + 48.1244444, + 11.4923881 + ], + [ + 48.1243109, + 11.491383 + ], + [ + 48.1243095, + 11.4913468 + ], + [ + 48.1243092, + 11.4913106 + ], + [ + 48.1243105, + 11.4912823 + ], + [ + 48.1243125, + 11.491254 + ], + [ + 48.1243176, + 11.491218 + ], + [ + 48.1243236, + 11.4911819 + ], + [ + 48.1243307, + 11.4911555 + ], + [ + 48.1243385, + 11.4911292 + ], + [ + 48.1243476, + 11.4911049 + ], + [ + 48.1243575, + 11.4910809 + ], + [ + 48.1243685, + 11.491062 + ], + [ + 48.1243798, + 11.4910447 + ], + [ + 48.1243925, + 11.4910314 + ], + [ + 48.1244051, + 11.4910191 + ], + [ + 48.1244259, + 11.491004 + ], + [ + 48.1244476, + 11.4909902 + ], + [ + 48.1244685, + 11.4909812 + ], + [ + 48.1244866, + 11.4909741 + ], + [ + 48.1245039, + 11.4909692 + ], + [ + 48.124753, + 11.4909201 + ], + [ + 48.124766, + 11.4909162 + ], + [ + 48.1247788, + 11.4909112 + ], + [ + 48.1247964, + 11.4909011 + ], + [ + 48.1248109, + 11.4908889 + ], + [ + 48.1248249, + 11.4908754 + ], + [ + 48.1248474, + 11.4908466 + ], + [ + 48.1248574, + 11.4908308 + ], + [ + 48.1248664, + 11.4908154 + ], + [ + 48.1248745, + 11.4907996 + ], + [ + 48.124882, + 11.4907823 + ], + [ + 48.1248889, + 11.4907653 + ], + [ + 48.124895, + 11.4907478 + ], + [ + 48.1249001, + 11.4907264 + ], + [ + 48.124904, + 11.490705 + ], + [ + 48.1249079, + 11.4906676 + ], + [ + 48.1249097, + 11.4906358 + ], + [ + 48.1249089, + 11.490604 + ], + [ + 48.1249019, + 11.490497 + ], + [ + 48.1249007, + 11.4904788 + ], + [ + 48.1248941, + 11.4903779 + ], + [ + 48.1248911, + 11.4903504 + ], + [ + 48.1248868, + 11.4903239 + ], + [ + 48.1248808, + 11.4903023 + ], + [ + 48.1248737, + 11.4902813 + ], + [ + 48.124862, + 11.4902544 + ], + [ + 48.1248468, + 11.4902316 + ], + [ + 48.1248347, + 11.490218 + ], + [ + 48.1248218, + 11.4902055 + ], + [ + 48.124809, + 11.4901939 + ], + [ + 48.1247951, + 11.4901834 + ], + [ + 48.1247798, + 11.490174 + ], + [ + 48.1247638, + 11.4901668 + ], + [ + 48.1247418, + 11.4901582 + ], + [ + 48.1247174, + 11.4901523 + ], + [ + 48.1246985, + 11.4901498 + ], + [ + 48.1246796, + 11.4901499 + ], + [ + 48.1244666, + 11.4901708 + ] + ] + }, + { + "osmId": "212298518", + "name": null, + "lengthMeters": 1837.3736209835006, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1407217, + 11.4896257 + ], + [ + 48.1405856, + 11.4903679 + ], + [ + 48.1404418, + 11.4911551 + ], + [ + 48.1403854, + 11.491473 + ], + [ + 48.14033, + 11.4918236 + ], + [ + 48.1402802, + 11.4921925 + ], + [ + 48.1402374, + 11.4925603 + ], + [ + 48.1402222, + 11.4926925 + ], + [ + 48.1400911, + 11.4938312 + ], + [ + 48.140007, + 11.4945814 + ], + [ + 48.1399411, + 11.4951329 + ], + [ + 48.1398547, + 11.4958869 + ], + [ + 48.1398413, + 11.4960246 + ], + [ + 48.1398242, + 11.4961853 + ], + [ + 48.1397754, + 11.4966634 + ], + [ + 48.1397609, + 11.4968154 + ], + [ + 48.139673, + 11.4976954 + ], + [ + 48.1396717, + 11.4977115 + ], + [ + 48.1396431, + 11.4980745 + ], + [ + 48.1396419, + 11.4980893 + ], + [ + 48.1396303, + 11.4983789 + ], + [ + 48.1396254, + 11.49867 + ], + [ + 48.1396254, + 11.4989627 + ], + [ + 48.1396347, + 11.4992556 + ], + [ + 48.139658, + 11.5002269 + ], + [ + 48.1396615, + 11.5003786 + ], + [ + 48.1396822, + 11.5009463 + ], + [ + 48.1397019, + 11.5016778 + ], + [ + 48.1396924, + 11.5022773 + ], + [ + 48.139687, + 11.5026018 + ], + [ + 48.1396854, + 11.5027071 + ], + [ + 48.1396821, + 11.502928 + ], + [ + 48.1396821, + 11.503023 + ], + [ + 48.1396824, + 11.5030906 + ], + [ + 48.1396829, + 11.5031285 + ], + [ + 48.1396836, + 11.5031854 + ], + [ + 48.1396842, + 11.5032943 + ], + [ + 48.1396854, + 11.5034789 + ], + [ + 48.1396858, + 11.5035464 + ], + [ + 48.1396868, + 11.5037984 + ], + [ + 48.1396886, + 11.5039761 + ], + [ + 48.1396939, + 11.5043989 + ], + [ + 48.139697, + 11.5049819 + ], + [ + 48.1396954, + 11.5060513 + ], + [ + 48.1396857, + 11.5064822 + ], + [ + 48.1396688, + 11.5068734 + ], + [ + 48.1396628, + 11.506996 + ], + [ + 48.1396, + 11.5082695 + ], + [ + 48.139564, + 11.5089073 + ], + [ + 48.1395437, + 11.5092652 + ], + [ + 48.1395194, + 11.5096286 + ], + [ + 48.1395045, + 11.5097954 + ], + [ + 48.1394865, + 11.5099624 + ], + [ + 48.1394681, + 11.5101334 + ], + [ + 48.1394454, + 11.5103073 + ], + [ + 48.1393904, + 11.5107023 + ], + [ + 48.1393628, + 11.5108984 + ], + [ + 48.1393316, + 11.5111028 + ], + [ + 48.139303, + 11.5113026 + ], + [ + 48.1392159, + 11.5118885 + ], + [ + 48.1391742, + 11.5121808 + ], + [ + 48.1391514, + 11.5123321 + ], + [ + 48.1391303, + 11.5124867 + ], + [ + 48.1391053, + 11.5126993 + ], + [ + 48.1390831, + 11.5129234 + ], + [ + 48.1390751, + 11.5130273 + ], + [ + 48.1390671, + 11.5131336 + ], + [ + 48.1390549, + 11.5133701 + ], + [ + 48.1390542, + 11.5133854 + ], + [ + 48.1390453, + 11.5135945 + ], + [ + 48.1390431, + 11.5136693 + ], + [ + 48.1390423, + 11.5137098 + ], + [ + 48.1390408, + 11.5138278 + ], + [ + 48.1390414, + 11.5139311 + ], + [ + 48.1390432, + 11.5140581 + ], + [ + 48.139043, + 11.5141429 + ] + ] + }, + { + "osmId": "213740064", + "name": null, + "lengthMeters": 198.90394823670334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5731288, + 9.9316609 + ], + [ + 53.5735951, + 9.9311983 + ], + [ + 53.5739774, + 9.930819 + ], + [ + 53.5746728, + 9.9301398 + ] + ] + }, + { + "osmId": "213832078", + "name": null, + "lengthMeters": 160.69268946299474, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5672791, + 9.9333757 + ], + [ + 53.5675013, + 9.9333473 + ], + [ + 53.5685525, + 9.9332314 + ], + [ + 53.568721, + 9.933213 + ] + ] + }, + { + "osmId": "213868196", + "name": "Verbindungsbahn", + "lengthMeters": 311.98771256568267, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5630086, + 9.9413147 + ], + [ + 53.5630124, + 9.9412634 + ], + [ + 53.5630222, + 9.9410902 + ], + [ + 53.5630376, + 9.9407902 + ], + [ + 53.5630458, + 9.9404809 + ], + [ + 53.5630585, + 9.9399531 + ], + [ + 53.5630481, + 9.9394465 + ], + [ + 53.5630318, + 9.9390337 + ], + [ + 53.5630048, + 9.9385625 + ], + [ + 53.5629609, + 9.9379149 + ], + [ + 53.5629524, + 9.9377889 + ], + [ + 53.5628754, + 9.9367588 + ], + [ + 53.5628743, + 9.9367474 + ], + [ + 53.5628616, + 9.9366121 + ] + ] + }, + { + "osmId": "214149297", + "name": null, + "lengthMeters": 439.12048419027434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5872446, + 9.9201945 + ], + [ + 53.5877033, + 9.919806 + ], + [ + 53.5881477, + 9.9194138 + ], + [ + 53.5882373, + 9.9193238 + ], + [ + 53.5885903, + 9.9189693 + ], + [ + 53.5890596, + 9.9184703 + ], + [ + 53.5899101, + 9.9175526 + ], + [ + 53.5902049, + 9.9172011 + ], + [ + 53.5905901, + 9.9166837 + ] + ] + }, + { + "osmId": "214149299", + "name": null, + "lengthMeters": 120.85154836412198, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5738092, + 9.9308856 + ], + [ + 53.5745206, + 9.9301971 + ], + [ + 53.5747519, + 9.9299747 + ] + ] + }, + { + "osmId": "214180774", + "name": null, + "lengthMeters": 416.13517048533737, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5960066, + 10.0918014 + ], + [ + 53.5947465, + 10.0858638 + ] + ] + }, + { + "osmId": "214250400", + "name": null, + "lengthMeters": 372.49427038129494, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5564372, + 9.9348756 + ], + [ + 53.5563285, + 9.9348708 + ], + [ + 53.5562261, + 9.9348658 + ], + [ + 53.556022, + 9.9348566 + ], + [ + 53.5559601, + 9.9348516 + ], + [ + 53.5558228, + 9.934846 + ], + [ + 53.555425, + 9.9348265 + ], + [ + 53.5550274, + 9.934808 + ], + [ + 53.5537687, + 9.9347426 + ], + [ + 53.5535075, + 9.9347263 + ], + [ + 53.5531792, + 9.9347112 + ], + [ + 53.5530888, + 9.934707 + ] + ] + }, + { + "osmId": "214840540", + "name": null, + "lengthMeters": 478.8414291420911, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5477486, + 9.9985889 + ], + [ + 53.5477614, + 9.9984545 + ], + [ + 53.5477736, + 9.9983617 + ], + [ + 53.5477933, + 9.998248 + ], + [ + 53.5478168, + 9.9981387 + ], + [ + 53.5478462, + 9.9980281 + ], + [ + 53.5478718, + 9.9979314 + ], + [ + 53.5479388, + 9.9977237 + ], + [ + 53.5480127, + 9.9975428 + ], + [ + 53.5480971, + 9.9973832 + ], + [ + 53.5481811, + 9.9972451 + ], + [ + 53.5482757, + 9.9971216 + ], + [ + 53.5483611, + 9.9970152 + ], + [ + 53.5484629, + 9.9969263 + ], + [ + 53.5485941, + 9.9968281 + ], + [ + 53.5487253, + 9.9967567 + ], + [ + 53.5489708, + 9.9966555 + ], + [ + 53.5494619, + 9.9965183 + ], + [ + 53.5496266, + 9.9964734 + ], + [ + 53.5497653, + 9.9964217 + ], + [ + 53.5499506, + 9.9963356 + ], + [ + 53.5501298, + 9.9962365 + ], + [ + 53.5502214, + 9.9961817 + ], + [ + 53.5502971, + 9.9961311 + ], + [ + 53.5503809, + 9.9960709 + ], + [ + 53.5504702, + 9.9960049 + ], + [ + 53.5505488, + 9.9959386 + ], + [ + 53.550603, + 9.9958852 + ], + [ + 53.5507146, + 9.995758 + ], + [ + 53.5512496, + 9.9950956 + ] + ] + }, + { + "osmId": "214840543", + "name": null, + "lengthMeters": 569.9405231519627, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5831336, + 9.9853672 + ], + [ + 53.5830967, + 9.9853911 + ], + [ + 53.5830597, + 9.9854187 + ], + [ + 53.5830239, + 9.9854498 + ], + [ + 53.5829871, + 9.9854857 + ], + [ + 53.5829471, + 9.9855308 + ], + [ + 53.582914, + 9.9855701 + ], + [ + 53.5828885, + 9.9856051 + ], + [ + 53.5828557, + 9.9856572 + ], + [ + 53.5828255, + 9.9857102 + ], + [ + 53.5827877, + 9.9857882 + ], + [ + 53.582733, + 9.985914 + ], + [ + 53.5825256, + 9.9864449 + ], + [ + 53.5822987, + 9.9869962 + ], + [ + 53.5821772, + 9.987293 + ], + [ + 53.5821241, + 9.9874169 + ], + [ + 53.5821102, + 9.9874454 + ], + [ + 53.582045, + 9.9875582 + ], + [ + 53.5819486, + 9.9877249 + ], + [ + 53.5817723, + 9.9879789 + ], + [ + 53.5816716, + 9.9881026 + ], + [ + 53.5815646, + 9.9882129 + ], + [ + 53.5813578, + 9.9883793 + ], + [ + 53.5812482, + 9.9884649 + ], + [ + 53.5811766, + 9.9885151 + ], + [ + 53.5811241, + 9.9885461 + ], + [ + 53.5810575, + 9.9885747 + ], + [ + 53.5809142, + 9.9886233 + ], + [ + 53.5808304, + 9.988641 + ], + [ + 53.5806967, + 9.988664 + ], + [ + 53.5788325, + 9.9888483 + ] + ] + }, + { + "osmId": "214840546", + "name": null, + "lengthMeters": 167.35677774551255, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5862868, + 9.9880014 + ], + [ + 53.58642, + 9.988137 + ], + [ + 53.5866679, + 9.9883682 + ], + [ + 53.5868218, + 9.9885188 + ], + [ + 53.5869687, + 9.9886731 + ], + [ + 53.5872246, + 9.9889483 + ], + [ + 53.5873835, + 9.9891137 + ], + [ + 53.5875423, + 9.9892647 + ], + [ + 53.5875775, + 9.9893041 + ] + ] + }, + { + "osmId": "214840548", + "name": null, + "lengthMeters": 523.0097891894089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5788325, + 9.9888483 + ], + [ + 53.5782239, + 9.9889019 + ], + [ + 53.5779287, + 9.9889078 + ], + [ + 53.5771811, + 9.9888647 + ], + [ + 53.5764494, + 9.988829 + ], + [ + 53.5748629, + 9.9887347 + ], + [ + 53.5747578, + 9.9887341 + ], + [ + 53.5746582, + 9.988748 + ], + [ + 53.574557, + 9.988765 + ], + [ + 53.5744057, + 9.9888017 + ], + [ + 53.5741386, + 9.988886 + ] + ] + }, + { + "osmId": "215092048", + "name": null, + "lengthMeters": 214.590459986658, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5412549, + 13.7117111 + ], + [ + 52.5410674, + 13.7115076 + ], + [ + 52.5396442, + 13.7099633 + ] + ] + }, + { + "osmId": "215648493", + "name": null, + "lengthMeters": 942.8568791426989, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.53746, + 10.0235763 + ], + [ + 53.537575, + 10.0234543 + ], + [ + 53.53768, + 10.0233489 + ], + [ + 53.5377266, + 10.0232816 + ], + [ + 53.5377969, + 10.0231893 + ], + [ + 53.5378762, + 10.0230766 + ], + [ + 53.5380125, + 10.022876 + ], + [ + 53.5381594, + 10.0226422 + ], + [ + 53.5382585, + 10.0224534 + ], + [ + 53.5383455, + 10.0222597 + ], + [ + 53.5384679, + 10.021976 + ], + [ + 53.5385959, + 10.021629 + ], + [ + 53.5386949, + 10.0213313 + ], + [ + 53.5387501, + 10.0211459 + ], + [ + 53.5388116, + 10.0208929 + ], + [ + 53.5388604, + 10.0206396 + ], + [ + 53.5391641, + 10.0187203 + ], + [ + 53.5396787, + 10.0154687 + ], + [ + 53.5398314, + 10.0144918 + ], + [ + 53.5402242, + 10.0115826 + ], + [ + 53.5403461, + 10.0105278 + ] + ] + }, + { + "osmId": "216612309", + "name": null, + "lengthMeters": 224.65081315429626, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.393268, + 13.0861312 + ], + [ + 52.3932369, + 13.0862751 + ], + [ + 52.3929828, + 13.0873651 + ], + [ + 52.3928625, + 13.0878835 + ], + [ + 52.3928103, + 13.0881551 + ], + [ + 52.3927156, + 13.0886547 + ], + [ + 52.392646, + 13.0889982 + ], + [ + 52.3925907, + 13.0892491 + ] + ] + }, + { + "osmId": "216615444", + "name": null, + "lengthMeters": 118.07864566293044, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3930787, + 13.5166685 + ], + [ + 52.3932235, + 13.5169614 + ], + [ + 52.3937489, + 13.5180183 + ] + ] + }, + { + "osmId": "216615446", + "name": null, + "lengthMeters": 96.87021209402266, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3927181, + 13.5164382 + ], + [ + 52.392842, + 13.5165898 + ], + [ + 52.393036, + 13.51685 + ], + [ + 52.3933524, + 13.5174103 + ] + ] + }, + { + "osmId": "216615447", + "name": null, + "lengthMeters": 118.94107196504115, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3972241, + 13.5255037 + ], + [ + 52.3975065, + 13.5261816 + ], + [ + 52.3976288, + 13.5264604 + ], + [ + 52.3978518, + 13.5269221 + ] + ] + }, + { + "osmId": "216615455", + "name": null, + "lengthMeters": 1009.978317828892, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3892844, + 13.508141 + ], + [ + 52.3898417, + 13.5093337 + ], + [ + 52.3902565, + 13.5102231 + ], + [ + 52.3908676, + 13.5115282 + ], + [ + 52.3926158, + 13.5152661 + ], + [ + 52.3929115, + 13.5159041 + ], + [ + 52.3929922, + 13.5160757 + ], + [ + 52.3930709, + 13.5162431 + ], + [ + 52.3934931, + 13.5171414 + ], + [ + 52.3944235, + 13.51913 + ], + [ + 52.3947461, + 13.5198117 + ], + [ + 52.3948121, + 13.5199512 + ] + ] + }, + { + "osmId": "216615456", + "name": null, + "lengthMeters": 1007.440284060709, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3944857, + 13.5191521 + ], + [ + 52.394272, + 13.5186968 + ], + [ + 52.3939624, + 13.5180279 + ], + [ + 52.3933781, + 13.5167745 + ], + [ + 52.3930321, + 13.516039 + ], + [ + 52.3927983, + 13.5155419 + ], + [ + 52.3914695, + 13.5127026 + ], + [ + 52.3909097, + 13.5115065 + ], + [ + 52.3902904, + 13.5101821 + ], + [ + 52.3898732, + 13.5092795 + ], + [ + 52.3894852, + 13.5084725 + ], + [ + 52.3889759, + 13.5073668 + ] + ] + }, + { + "osmId": "216615461", + "name": null, + "lengthMeters": 420.4533942724678, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3902082, + 13.5106158 + ], + [ + 52.3902326, + 13.510673 + ], + [ + 52.3904753, + 13.5111896 + ], + [ + 52.3907161, + 13.5117105 + ], + [ + 52.3908968, + 13.5120914 + ], + [ + 52.3910784, + 13.5124732 + ], + [ + 52.3914537, + 13.5132856 + ], + [ + 52.3916471, + 13.5136938 + ], + [ + 52.3919073, + 13.5142482 + ], + [ + 52.3921602, + 13.5147923 + ], + [ + 52.3925079, + 13.515534 + ] + ] + }, + { + "osmId": "216615462", + "name": null, + "lengthMeters": 419.79254205703216, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3901727, + 13.5106711 + ], + [ + 52.3901971, + 13.5107197 + ], + [ + 52.3904165, + 13.5111851 + ], + [ + 52.3906326, + 13.5116545 + ], + [ + 52.391612, + 13.5137495 + ], + [ + 52.3918575, + 13.514274 + ], + [ + 52.3924713, + 13.5155785 + ] + ] + }, + { + "osmId": "216617672", + "name": null, + "lengthMeters": 1231.293967587132, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3647102, + 13.4592854 + ], + [ + 52.3646666, + 13.4596091 + ], + [ + 52.3645613, + 13.4602451 + ], + [ + 52.3645008, + 13.4605635 + ], + [ + 52.3644356, + 13.4608761 + ], + [ + 52.3642969, + 13.4614843 + ], + [ + 52.3639963, + 13.4627317 + ], + [ + 52.3636276, + 13.4642509 + ], + [ + 52.3634574, + 13.4650628 + ], + [ + 52.3633613, + 13.4656061 + ], + [ + 52.3632853, + 13.4660489 + ], + [ + 52.3631794, + 13.466788 + ], + [ + 52.3630935, + 13.4675429 + ], + [ + 52.3630254, + 13.4682869 + ], + [ + 52.3629422, + 13.4693079 + ], + [ + 52.3628561, + 13.4703867 + ], + [ + 52.3628015, + 13.4709489 + ], + [ + 52.362742, + 13.4714589 + ], + [ + 52.362602, + 13.4725182 + ], + [ + 52.3625206, + 13.4730659 + ], + [ + 52.3624315, + 13.4736085 + ], + [ + 52.362388, + 13.4738464 + ], + [ + 52.3622884, + 13.4743812 + ], + [ + 52.3620456, + 13.4755343 + ], + [ + 52.3620101, + 13.4756853 + ], + [ + 52.3617716, + 13.4766986 + ] + ] + }, + { + "osmId": "216617673", + "name": null, + "lengthMeters": 119.87844026734277, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3644424, + 13.4526641 + ], + [ + 52.3642208, + 13.4518509 + ], + [ + 52.3639855, + 13.4510653 + ] + ] + }, + { + "osmId": "216617676", + "name": null, + "lengthMeters": 119.16727832310855, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3639508, + 13.4510982 + ], + [ + 52.3641856, + 13.451871 + ], + [ + 52.3644054, + 13.452687 + ] + ] + }, + { + "osmId": "216617677", + "name": null, + "lengthMeters": 334.5094773744544, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3644054, + 13.452687 + ], + [ + 52.3645084, + 13.4531625 + ], + [ + 52.3646007, + 13.4536428 + ], + [ + 52.3646548, + 13.4539683 + ], + [ + 52.3647062, + 13.4543441 + ], + [ + 52.3647446, + 13.4546512 + ], + [ + 52.3648031, + 13.4552227 + ], + [ + 52.3648437, + 13.4557959 + ], + [ + 52.3648618, + 13.4562013 + ], + [ + 52.3648721, + 13.4566226 + ], + [ + 52.3648706, + 13.4571326 + ], + [ + 52.3648582, + 13.45752 + ] + ] + }, + { + "osmId": "216617678", + "name": null, + "lengthMeters": 369.4222607192434, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3639855, + 13.4510653 + ], + [ + 52.3637472, + 13.4504245 + ], + [ + 52.3636072, + 13.4500793 + ], + [ + 52.3634653, + 13.4497358 + ], + [ + 52.3631515, + 13.4490306 + ], + [ + 52.3628254, + 13.4483142 + ], + [ + 52.3623884, + 13.4473612 + ], + [ + 52.362058, + 13.4466379 + ] + ] + }, + { + "osmId": "216617679", + "name": null, + "lengthMeters": 385.85675816060115, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3648578, + 13.4582512 + ], + [ + 52.364892, + 13.4576462 + ], + [ + 52.3649061, + 13.4571329 + ], + [ + 52.3649082, + 13.4566178 + ], + [ + 52.3648988, + 13.4561981 + ], + [ + 52.3648797, + 13.4557753 + ], + [ + 52.3648415, + 13.4552184 + ], + [ + 52.3647822, + 13.4546341 + ], + [ + 52.364713, + 13.4541025 + ], + [ + 52.3646387, + 13.4536273 + ], + [ + 52.3645551, + 13.4531934 + ], + [ + 52.3644424, + 13.4526641 + ] + ] + }, + { + "osmId": "216978734", + "name": "Nordring", + "lengthMeters": 976.467170672168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1393151, + 11.6511112 + ], + [ + 48.1394235, + 11.6510668 + ], + [ + 48.1406942, + 11.6505589 + ], + [ + 48.1409864, + 11.650456 + ], + [ + 48.141059, + 11.6504304 + ], + [ + 48.1413256, + 11.6503559 + ], + [ + 48.1415774, + 11.6503034 + ], + [ + 48.1417421, + 11.650276 + ], + [ + 48.1419144, + 11.6502473 + ], + [ + 48.1421967, + 11.6502131 + ], + [ + 48.1427536, + 11.6501545 + ], + [ + 48.143697, + 11.6500546 + ], + [ + 48.1453588, + 11.6498884 + ], + [ + 48.1470205, + 11.6497001 + ], + [ + 48.1480138, + 11.6495974 + ] + ] + }, + { + "osmId": "217171643", + "name": null, + "lengthMeters": 149.15323166554026, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3936884, + 13.5180991 + ], + [ + 52.3939941, + 13.5186492 + ], + [ + 52.3942015, + 13.5190356 + ], + [ + 52.3944636, + 13.5195178 + ], + [ + 52.3945817, + 13.5197388 + ] + ] + }, + { + "osmId": "217297580", + "name": null, + "lengthMeters": 407.50481294284447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4590048, + 13.5804574 + ], + [ + 52.4590087, + 13.5805735 + ], + [ + 52.4590566, + 13.582335 + ], + [ + 52.4590574, + 13.5823969 + ], + [ + 52.4590577, + 13.5824497 + ], + [ + 52.4590561, + 13.5825002 + ], + [ + 52.4590541, + 13.5825422 + ], + [ + 52.4590514, + 13.5825811 + ], + [ + 52.4590234, + 13.5830357 + ], + [ + 52.4590213, + 13.5830884 + ], + [ + 52.4590198, + 13.5831259 + ], + [ + 52.4590182, + 13.583197 + ], + [ + 52.4590189, + 13.5832401 + ], + [ + 52.4590199, + 13.583287 + ], + [ + 52.4590446, + 13.5838302 + ], + [ + 52.4590571, + 13.5840449 + ], + [ + 52.4590617, + 13.5840971 + ], + [ + 52.4590663, + 13.5841382 + ], + [ + 52.4590738, + 13.5841781 + ], + [ + 52.4590813, + 13.5842099 + ], + [ + 52.45909, + 13.5842353 + ], + [ + 52.4590952, + 13.5842479 + ], + [ + 52.4590991, + 13.5842574 + ], + [ + 52.4591084, + 13.5842777 + ], + [ + 52.4591199, + 13.5842997 + ], + [ + 52.4591335, + 13.5843226 + ], + [ + 52.4591457, + 13.584337 + ], + [ + 52.4591774, + 13.584369 + ], + [ + 52.4591908, + 13.5843792 + ], + [ + 52.4592067, + 13.584389 + ], + [ + 52.4592278, + 13.5843975 + ], + [ + 52.4592427, + 13.5844022 + ], + [ + 52.4592594, + 13.5844059 + ], + [ + 52.4592793, + 13.5844077 + ], + [ + 52.4593767, + 13.5844094 + ], + [ + 52.4598132, + 13.5844134 + ], + [ + 52.4604054, + 13.5844189 + ] + ] + }, + { + "osmId": "217297583", + "name": null, + "lengthMeters": 244.56746817893577, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4602425, + 13.5811391 + ], + [ + 52.4604897, + 13.581395 + ], + [ + 52.4606997, + 13.5816127 + ], + [ + 52.460754, + 13.5816653 + ], + [ + 52.4608999, + 13.5817942 + ], + [ + 52.4612901, + 13.5821329 + ], + [ + 52.4616517, + 13.5824412 + ], + [ + 52.4620985, + 13.5828047 + ], + [ + 52.4621724, + 13.5828648 + ] + ] + }, + { + "osmId": "217297585", + "name": null, + "lengthMeters": 108.1934706940369, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4618209, + 13.5839519 + ], + [ + 52.4618488, + 13.5839303 + ], + [ + 52.461874, + 13.5839087 + ], + [ + 52.4619138, + 13.5838684 + ], + [ + 52.4619697, + 13.5838043 + ], + [ + 52.462012, + 13.5837482 + ], + [ + 52.4620492, + 13.5836895 + ], + [ + 52.4620753, + 13.5836416 + ], + [ + 52.4620958, + 13.5835995 + ], + [ + 52.4621193, + 13.5835472 + ], + [ + 52.4621432, + 13.5834836 + ], + [ + 52.4621618, + 13.5834295 + ], + [ + 52.4621899, + 13.5833443 + ], + [ + 52.4622037, + 13.5832947 + ], + [ + 52.462213, + 13.583254 + ], + [ + 52.4622204, + 13.5832059 + ], + [ + 52.4622232, + 13.5831775 + ], + [ + 52.4622257, + 13.5831424 + ], + [ + 52.4622255, + 13.5831283 + ], + [ + 52.4622252, + 13.5830977 + ], + [ + 52.4622208, + 13.583038 + ], + [ + 52.4622151, + 13.5830026 + ], + [ + 52.4622018, + 13.5829493 + ], + [ + 52.4621854, + 13.5828971 + ], + [ + 52.4621724, + 13.5828648 + ], + [ + 52.4621549, + 13.5828329 + ], + [ + 52.4621421, + 13.5828133 + ], + [ + 52.4621224, + 13.58279 + ], + [ + 52.4621078, + 13.582774 + ], + [ + 52.4620715, + 13.5827342 + ] + ] + }, + { + "osmId": "217562763", + "name": null, + "lengthMeters": 609.2514361255105, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257836, + 13.7558637 + ], + [ + 52.5259261, + 13.7576552 + ], + [ + 52.5260976, + 13.7594596 + ], + [ + 52.5261914, + 13.7604296 + ], + [ + 52.5262219, + 13.7607723 + ], + [ + 52.5263688, + 13.7623468 + ], + [ + 52.5264947, + 13.7636817 + ], + [ + 52.5265277, + 13.7639622 + ], + [ + 52.5266308, + 13.7647592 + ] + ] + }, + { + "osmId": "217562764", + "name": null, + "lengthMeters": 609.5210199922749, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266308, + 13.7647592 + ], + [ + 52.5264737, + 13.7630362 + ], + [ + 52.5264117, + 13.7619196 + ], + [ + 52.526354, + 13.7610246 + ], + [ + 52.5262949, + 13.7604323 + ], + [ + 52.5261457, + 13.7589143 + ], + [ + 52.5260454, + 13.75805 + ], + [ + 52.5258896, + 13.7568435 + ], + [ + 52.5257836, + 13.7558637 + ] + ] + }, + { + "osmId": "217608413", + "name": null, + "lengthMeters": 107.23829770932922, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4932859, + 13.6092588 + ], + [ + 52.4934342, + 13.6093767 + ], + [ + 52.4937616, + 13.6096147 + ], + [ + 52.4939679, + 13.6097634 + ], + [ + 52.4940214, + 13.6098012 + ], + [ + 52.494062, + 13.6098299 + ], + [ + 52.4941666, + 13.6099039 + ] + ] + }, + { + "osmId": "217608414", + "name": null, + "lengthMeters": 459.52224211256254, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941666, + 13.6099039 + ], + [ + 52.4943126, + 13.6100106 + ], + [ + 52.4946316, + 13.6102437 + ], + [ + 52.4946987, + 13.6102927 + ], + [ + 52.494776, + 13.6103496 + ], + [ + 52.495168, + 13.6106386 + ], + [ + 52.4952795, + 13.6107151 + ], + [ + 52.4960009, + 13.611246 + ], + [ + 52.4967125, + 13.6117681 + ], + [ + 52.4969649, + 13.6119553 + ], + [ + 52.4971042, + 13.6120609 + ], + [ + 52.4972454, + 13.6121649 + ], + [ + 52.4973884, + 13.6122702 + ], + [ + 52.4976388, + 13.6124551 + ], + [ + 52.4977717, + 13.6125561 + ], + [ + 52.4979392, + 13.6126744 + ] + ] + }, + { + "osmId": "217620795", + "name": null, + "lengthMeters": 418.43093949408797, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5535073, + 9.9955155 + ], + [ + 53.5533487, + 9.9953507 + ], + [ + 53.5531846, + 9.9951575 + ], + [ + 53.5530671, + 9.9950064 + ], + [ + 53.5529412, + 9.9948308 + ], + [ + 53.5527422, + 9.9945351 + ], + [ + 53.5526191, + 9.9943397 + ], + [ + 53.5525176, + 9.99417 + ], + [ + 53.5524756, + 9.9940926 + ], + [ + 53.5524525, + 9.9940493 + ], + [ + 53.5524243, + 9.9939925 + ], + [ + 53.5523145, + 9.9937521 + ], + [ + 53.5519515, + 9.9928702 + ], + [ + 53.5516193, + 9.9920387 + ], + [ + 53.5516119, + 9.9920202 + ], + [ + 53.5515947, + 9.9919771 + ], + [ + 53.551099, + 9.9907338 + ] + ] + }, + { + "osmId": "217673556", + "name": null, + "lengthMeters": 87.84754639226303, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112196, + 13.6112084 + ], + [ + 52.5111677, + 13.6106554 + ], + [ + 52.5111652, + 13.6106218 + ], + [ + 52.5111643, + 13.6105873 + ], + [ + 52.5111648, + 13.610551 + ], + [ + 52.5111663, + 13.6105125 + ], + [ + 52.5111707, + 13.6104705 + ], + [ + 52.5111778, + 13.6104238 + ], + [ + 52.5111851, + 13.6103901 + ], + [ + 52.511195, + 13.6103582 + ], + [ + 52.5112077, + 13.6103237 + ], + [ + 52.5112231, + 13.6102874 + ], + [ + 52.511244, + 13.6102465 + ], + [ + 52.5112627, + 13.6102173 + ], + [ + 52.5112863, + 13.6101855 + ], + [ + 52.5113224, + 13.6101387 + ], + [ + 52.5113546, + 13.6100981 + ], + [ + 52.5113836, + 13.6100613 + ] + ] + }, + { + "osmId": "217673557", + "name": null, + "lengthMeters": 240.18228157498805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113836, + 13.6100613 + ], + [ + 52.5114578, + 13.6099688 + ], + [ + 52.5114957, + 13.6099236 + ], + [ + 52.5115251, + 13.6098839 + ], + [ + 52.5115463, + 13.6098537 + ], + [ + 52.5115618, + 13.6098278 + ], + [ + 52.511579, + 13.6097942 + ], + [ + 52.5115924, + 13.6097624 + ], + [ + 52.511604, + 13.6097302 + ], + [ + 52.5116161, + 13.6096906 + ], + [ + 52.5116236, + 13.6096536 + ], + [ + 52.5116292, + 13.6096166 + ], + [ + 52.5116323, + 13.6095759 + ], + [ + 52.5116332, + 13.6095416 + ], + [ + 52.5116323, + 13.6095014 + ], + [ + 52.5116303, + 13.6094664 + ], + [ + 52.5116246, + 13.6094279 + ], + [ + 52.5116164, + 13.6093889 + ], + [ + 52.5116086, + 13.6093576 + ], + [ + 52.5115986, + 13.6093286 + ], + [ + 52.5115842, + 13.6092917 + ], + [ + 52.5115698, + 13.609262 + ], + [ + 52.511552, + 13.6092332 + ], + [ + 52.5115344, + 13.6092057 + ], + [ + 52.5115179, + 13.6091822 + ], + [ + 52.5114991, + 13.6091621 + ], + [ + 52.5114802, + 13.6091465 + ], + [ + 52.5114575, + 13.6091325 + ], + [ + 52.511435, + 13.6091215 + ], + [ + 52.5114114, + 13.6091127 + ], + [ + 52.5113901, + 13.6091098 + ], + [ + 52.5113644, + 13.6091092 + ], + [ + 52.5113381, + 13.6091113 + ], + [ + 52.511306, + 13.6091174 + ], + [ + 52.5112778, + 13.6091273 + ], + [ + 52.5112561, + 13.6091379 + ], + [ + 52.5112342, + 13.6091541 + ], + [ + 52.5112083, + 13.6091756 + ], + [ + 52.5111859, + 13.6091988 + ], + [ + 52.5111678, + 13.6092221 + ], + [ + 52.5111465, + 13.6092539 + ], + [ + 52.5111275, + 13.6092884 + ], + [ + 52.5111083, + 13.6093282 + ], + [ + 52.5110975, + 13.6093564 + ], + [ + 52.5110892, + 13.6093792 + ], + [ + 52.5110786, + 13.6094179 + ], + [ + 52.5110707, + 13.6094528 + ], + [ + 52.5110637, + 13.6094909 + ], + [ + 52.5110581, + 13.6095288 + ], + [ + 52.5110534, + 13.6095769 + ], + [ + 52.5110509, + 13.6096196 + ], + [ + 52.5110505, + 13.6096646 + ], + [ + 52.5110513, + 13.6097012 + ], + [ + 52.5110547, + 13.6097596 + ], + [ + 52.5110615, + 13.6098343 + ], + [ + 52.5110978, + 13.6102177 + ], + [ + 52.5111286, + 13.610584 + ], + [ + 52.5111685, + 13.6109691 + ] + ] + }, + { + "osmId": "217985907", + "name": null, + "lengthMeters": 536.1661299935349, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6326087, + 10.0546979 + ], + [ + 53.6324871, + 10.0540795 + ], + [ + 53.6323854, + 10.0536188 + ], + [ + 53.6322374, + 10.0529873 + ], + [ + 53.6321216, + 10.0524929 + ], + [ + 53.6319668, + 10.0518212 + ], + [ + 53.6311365, + 10.0478696 + ], + [ + 53.6309652, + 10.0470543 + ] + ] + }, + { + "osmId": "218255172", + "name": null, + "lengthMeters": 1584.0388096047566, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4823658, + 13.5227342 + ], + [ + 52.482715, + 13.5219667 + ], + [ + 52.4828836, + 13.5215891 + ], + [ + 52.4830302, + 13.5212566 + ], + [ + 52.4837461, + 13.5196332 + ], + [ + 52.4840173, + 13.5190224 + ], + [ + 52.4843255, + 13.5183449 + ], + [ + 52.4845824, + 13.5177893 + ], + [ + 52.4847681, + 13.5173903 + ], + [ + 52.4849668, + 13.5169771 + ], + [ + 52.4850672, + 13.5167684 + ], + [ + 52.485402, + 13.5161427 + ], + [ + 52.4855587, + 13.5158693 + ], + [ + 52.4857906, + 13.5154884 + ], + [ + 52.4862466, + 13.5148007 + ], + [ + 52.486735, + 13.5140878 + ], + [ + 52.4873445, + 13.5131981 + ], + [ + 52.4878496, + 13.5124684 + ], + [ + 52.4881478, + 13.5120214 + ], + [ + 52.4883512, + 13.5117008 + ], + [ + 52.4885348, + 13.5113903 + ], + [ + 52.488666, + 13.5111502 + ], + [ + 52.4888201, + 13.510856 + ], + [ + 52.4889656, + 13.5105632 + ], + [ + 52.4891061, + 13.5102583 + ], + [ + 52.4900862, + 13.5080471 + ], + [ + 52.4906437, + 13.5067723 + ], + [ + 52.4908419, + 13.5062912 + ], + [ + 52.49105, + 13.505749 + ], + [ + 52.4911864, + 13.5053246 + ], + [ + 52.4913604, + 13.5047493 + ] + ] + }, + { + "osmId": "218255173", + "name": null, + "lengthMeters": 300.19619028845386, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4956393, + 13.4924468 + ], + [ + 52.4955202, + 13.4927175 + ], + [ + 52.4954687, + 13.4928345 + ], + [ + 52.4954613, + 13.4928513 + ], + [ + 52.4940579, + 13.4960407 + ] + ] + }, + { + "osmId": "218255175", + "name": null, + "lengthMeters": 341.9361177624298, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050778, + 13.4569022 + ], + [ + 52.5049195, + 13.4577943 + ], + [ + 52.5048145, + 13.458407 + ], + [ + 52.5046795, + 13.4592297 + ], + [ + 52.5045415, + 13.4600326 + ], + [ + 52.5044861, + 13.4603454 + ], + [ + 52.5044197, + 13.4607236 + ], + [ + 52.5042353, + 13.4617607 + ] + ] + }, + { + "osmId": "218255176", + "name": null, + "lengthMeters": 176.6423437249676, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4822664, + 13.5227601 + ], + [ + 52.4818797, + 13.523663 + ], + [ + 52.4818711, + 13.5236831 + ], + [ + 52.4818072, + 13.5238322 + ], + [ + 52.4813455, + 13.5248855 + ] + ] + }, + { + "osmId": "218267362", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 191.6038927291326, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3948121, + 13.5199512 + ], + [ + 52.3953856, + 13.521181 + ], + [ + 52.3954407, + 13.5212988 + ], + [ + 52.3958157, + 13.5221001 + ], + [ + 52.3958586, + 13.5221946 + ] + ] + }, + { + "osmId": "218267364", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 132.75906530198662, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3889759, + 13.5073668 + ], + [ + 52.3888795, + 13.5071658 + ], + [ + 52.3885833, + 13.5065356 + ], + [ + 52.3882455, + 13.5058193 + ] + ] + }, + { + "osmId": "218267367", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 195.55966589854393, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3559715, + 13.4326238 + ], + [ + 52.3556175, + 13.4315161 + ], + [ + 52.3554321, + 13.4309057 + ], + [ + 52.3552533, + 13.4302923 + ], + [ + 52.3551859, + 13.4300481 + ] + ] + }, + { + "osmId": "218267373", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1777.0260903884312, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3623312, + 13.4476807 + ], + [ + 52.3632398, + 13.4497927 + ], + [ + 52.3634721, + 13.4503321 + ], + [ + 52.3638431, + 13.4511618 + ], + [ + 52.3645803, + 13.4527396 + ], + [ + 52.3650563, + 13.4537438 + ], + [ + 52.3657137, + 13.4551567 + ], + [ + 52.3658352, + 13.45543 + ], + [ + 52.3660742, + 13.4559734 + ], + [ + 52.3664773, + 13.4568988 + ], + [ + 52.3675247, + 13.4592657 + ], + [ + 52.3686685, + 13.4618527 + ], + [ + 52.3689272, + 13.4624328 + ], + [ + 52.3698162, + 13.4644444 + ], + [ + 52.3700218, + 13.46491 + ], + [ + 52.370592, + 13.4662014 + ], + [ + 52.3708702, + 13.4668149 + ], + [ + 52.3709432, + 13.4669841 + ], + [ + 52.3716974, + 13.4687009 + ], + [ + 52.3717514, + 13.4688205 + ] + ] + }, + { + "osmId": "219274075", + "name": null, + "lengthMeters": 221.25698474976176, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5127248, + 9.9106967 + ], + [ + 53.5129612, + 9.9109345 + ], + [ + 53.5130602, + 9.9110451 + ], + [ + 53.5131276, + 9.9111312 + ], + [ + 53.513153, + 9.9111636 + ], + [ + 53.5133142, + 9.9114184 + ], + [ + 53.513456, + 9.911687 + ], + [ + 53.5136018, + 9.9120279 + ], + [ + 53.5137115, + 9.9123361 + ], + [ + 53.5137774, + 9.9125706 + ], + [ + 53.5137837, + 9.912593 + ], + [ + 53.5139073, + 9.9132538 + ] + ] + }, + { + "osmId": "219274079", + "name": null, + "lengthMeters": 331.94248858935634, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.513886, + 9.9157452 + ], + [ + 53.5139114, + 9.9155071 + ], + [ + 53.513957, + 9.9151219 + ], + [ + 53.5139767, + 9.914956 + ], + [ + 53.5140294, + 9.9143045 + ], + [ + 53.5140183, + 9.9137231 + ], + [ + 53.51396, + 9.9131744 + ], + [ + 53.5139401, + 9.9130461 + ], + [ + 53.5138934, + 9.9127447 + ], + [ + 53.513781, + 9.9123623 + ], + [ + 53.5137712, + 9.9123291 + ], + [ + 53.5136851, + 9.9120629 + ], + [ + 53.513574, + 9.9117944 + ], + [ + 53.5134144, + 9.9115212 + ], + [ + 53.5132723, + 9.9112637 + ], + [ + 53.5132086, + 9.9111619 + ] + ] + }, + { + "osmId": "219825829", + "name": null, + "lengthMeters": 776.8008324132385, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4928288, + 13.4988343 + ], + [ + 52.4924677, + 13.4996582 + ], + [ + 52.490853, + 13.5033422 + ], + [ + 52.4904954, + 13.504158 + ], + [ + 52.4892819, + 13.5069166 + ], + [ + 52.489204, + 13.5070921 + ], + [ + 52.4887402, + 13.5081373 + ] + ] + }, + { + "osmId": "219826696", + "name": null, + "lengthMeters": 446.1000332087822, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5364158, + 13.3479465 + ], + [ + 52.5362486, + 13.3463286 + ], + [ + 52.5362342, + 13.3461886 + ], + [ + 52.5360071, + 13.3439912 + ], + [ + 52.5357429, + 13.3414443 + ] + ] + }, + { + "osmId": "219826697", + "name": null, + "lengthMeters": 213.85968211013477, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4660545, + 13.361776 + ], + [ + 52.4668349, + 13.3620753 + ], + [ + 52.4673673, + 13.3623018 + ], + [ + 52.4679245, + 13.3625131 + ] + ] + }, + { + "osmId": "219922205", + "name": "Berliner Stadtbahn", + "lengthMeters": 585.8233910896881, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196659, + 13.3562702 + ], + [ + 52.519713, + 13.3565079 + ], + [ + 52.5197857, + 13.3568248 + ], + [ + 52.5198081, + 13.3569162 + ], + [ + 52.5199185, + 13.3573104 + ], + [ + 52.5200467, + 13.3577005 + ], + [ + 52.5201605, + 13.3579954 + ], + [ + 52.5202816, + 13.3582758 + ], + [ + 52.5206735, + 13.3590659 + ], + [ + 52.5207239, + 13.3591661 + ], + [ + 52.5208644, + 13.3594405 + ], + [ + 52.5208989, + 13.3595085 + ], + [ + 52.5210195, + 13.3597409 + ], + [ + 52.5210603, + 13.3598222 + ], + [ + 52.5219844, + 13.3616244 + ], + [ + 52.5227794, + 13.3631869 + ] + ] + }, + { + "osmId": "219922206", + "name": "Berliner Stadtbahn", + "lengthMeters": 594.9879986387857, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5195981, + 13.3563033 + ], + [ + 52.5196618, + 13.3566202 + ], + [ + 52.5197187, + 13.3568702 + ], + [ + 52.5197432, + 13.35696 + ], + [ + 52.519854, + 13.3573633 + ], + [ + 52.5199852, + 13.3577548 + ], + [ + 52.520226, + 13.3583603 + ], + [ + 52.520621, + 13.3591465 + ], + [ + 52.5206701, + 13.359242 + ], + [ + 52.5208079, + 13.3595147 + ], + [ + 52.5208456, + 13.3595845 + ], + [ + 52.5209639, + 13.3598193 + ], + [ + 52.5210049, + 13.3598993 + ], + [ + 52.5211266, + 13.3601341 + ], + [ + 52.5214925, + 13.36086 + ], + [ + 52.5219026, + 13.3616498 + ], + [ + 52.5221369, + 13.3621146 + ], + [ + 52.5227601, + 13.3633272 + ] + ] + }, + { + "osmId": "219942024", + "name": null, + "lengthMeters": 6089.8095230414, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2873561, + 11.7099026 + ], + [ + 48.2873072, + 11.7098998 + ], + [ + 48.286926, + 11.7098909 + ], + [ + 48.2864956, + 11.7098865 + ], + [ + 48.2856669, + 11.7099116 + ], + [ + 48.2847089, + 11.709974 + ], + [ + 48.2835645, + 11.7100497 + ], + [ + 48.282842, + 11.7100984 + ], + [ + 48.2818102, + 11.7101615 + ], + [ + 48.281578, + 11.7101761 + ], + [ + 48.2800406, + 11.7102727 + ], + [ + 48.2788309, + 11.7103518 + ], + [ + 48.2779272, + 11.7103904 + ], + [ + 48.2770245, + 11.7104064 + ], + [ + 48.2755897, + 11.7103623 + ], + [ + 48.2746192, + 11.7102952 + ], + [ + 48.2717828, + 11.7100765 + ], + [ + 48.2701678, + 11.7099529 + ], + [ + 48.2685497, + 11.7098252 + ], + [ + 48.2679609, + 11.7097609 + ], + [ + 48.2673052, + 11.7096796 + ], + [ + 48.2664324, + 11.7095409 + ], + [ + 48.265623, + 11.7093891 + ], + [ + 48.2650313, + 11.7092572 + ], + [ + 48.2644279, + 11.7091037 + ], + [ + 48.2636009, + 11.7088852 + ], + [ + 48.2626579, + 11.708594 + ], + [ + 48.2621375, + 11.708421 + ], + [ + 48.2616175, + 11.7082265 + ], + [ + 48.2607431, + 11.7078821 + ], + [ + 48.2596361, + 11.7074052 + ], + [ + 48.2590253, + 11.7071114 + ], + [ + 48.2584071, + 11.7068044 + ], + [ + 48.2575584, + 11.7063467 + ], + [ + 48.2572899, + 11.7061943 + ], + [ + 48.2568646, + 11.705953 + ], + [ + 48.2562018, + 11.7055578 + ], + [ + 48.2555516, + 11.7051472 + ], + [ + 48.2544455, + 11.7043971 + ], + [ + 48.2536198, + 11.7037945 + ], + [ + 48.2530774, + 11.7033805 + ], + [ + 48.2520911, + 11.7025866 + ], + [ + 48.2511931, + 11.7018107 + ], + [ + 48.2506083, + 11.7012797 + ], + [ + 48.2494884, + 11.7002026 + ], + [ + 48.2485064, + 11.6991741 + ], + [ + 48.2478331, + 11.6984532 + ], + [ + 48.2464956, + 11.6970247 + ], + [ + 48.2457862, + 11.6962712 + ], + [ + 48.244091, + 11.6944561 + ], + [ + 48.2428779, + 11.6931572 + ], + [ + 48.241573, + 11.6917605 + ], + [ + 48.2409139, + 11.6910551 + ], + [ + 48.2405844, + 11.6907103 + ], + [ + 48.2402474, + 11.690352 + ], + [ + 48.2392073, + 11.6892379 + ], + [ + 48.2382932, + 11.6882615 + ], + [ + 48.2377138, + 11.6876434 + ], + [ + 48.2367683, + 11.6866348 + ] + ] + }, + { + "osmId": "219961404", + "name": null, + "lengthMeters": 464.8388222630484, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4202236, + 10.2500404 + ], + [ + 53.4204985, + 10.2502443 + ], + [ + 53.4211698, + 10.2507271 + ], + [ + 53.421643, + 10.2510597 + ], + [ + 53.4218284, + 10.2510918 + ], + [ + 53.4222503, + 10.2514137 + ], + [ + 53.4227938, + 10.2517892 + ], + [ + 53.4231377, + 10.2520458 + ], + [ + 53.4233626, + 10.2522099 + ], + [ + 53.4235338, + 10.2523302 + ], + [ + 53.4236337, + 10.2524248 + ], + [ + 53.4240733, + 10.2527352 + ] + ] + }, + { + "osmId": "220075343", + "name": null, + "lengthMeters": 123.24574393325977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4797394, + 13.6008899 + ], + [ + 52.4799084, + 13.6009079 + ], + [ + 52.4799787, + 13.6009154 + ], + [ + 52.4800096, + 13.6009185 + ], + [ + 52.480299, + 13.6009475 + ], + [ + 52.4805933, + 13.6009767 + ], + [ + 52.4806166, + 13.6009792 + ], + [ + 52.4808456, + 13.6010038 + ] + ] + }, + { + "osmId": "220075345", + "name": null, + "lengthMeters": 1393.0118434510375, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995457, + 13.6132696 + ], + [ + 52.4998183, + 13.6132081 + ], + [ + 52.4999569, + 13.6131768 + ], + [ + 52.5002568, + 13.6131092 + ], + [ + 52.5003787, + 13.6130817 + ], + [ + 52.5005825, + 13.6131486 + ], + [ + 52.5007478, + 13.6132207 + ], + [ + 52.5008458, + 13.6132748 + ], + [ + 52.5011875, + 13.6136095 + ], + [ + 52.5012493, + 13.61367 + ], + [ + 52.5015726, + 13.6139844 + ], + [ + 52.5020925, + 13.61449 + ], + [ + 52.5021403, + 13.6145354 + ], + [ + 52.502243, + 13.6146329 + ], + [ + 52.5023363, + 13.6146702 + ], + [ + 52.502441, + 13.6146493 + ], + [ + 52.5029688, + 13.6144048 + ], + [ + 52.5033788, + 13.6142127 + ], + [ + 52.5035495, + 13.6141327 + ], + [ + 52.5036282, + 13.6140958 + ], + [ + 52.5036998, + 13.6140625 + ], + [ + 52.5043722, + 13.61375 + ], + [ + 52.5046574, + 13.6136107 + ], + [ + 52.5047125, + 13.6135841 + ], + [ + 52.5047272, + 13.613577 + ], + [ + 52.5047831, + 13.6135509 + ], + [ + 52.5048934, + 13.6134914 + ], + [ + 52.5050274, + 13.6134232 + ], + [ + 52.5051994, + 13.6133356 + ], + [ + 52.5053424, + 13.6132612 + ], + [ + 52.5055811, + 13.6131387 + ], + [ + 52.5057202, + 13.6130799 + ], + [ + 52.5061242, + 13.612909 + ], + [ + 52.5061681, + 13.6128904 + ], + [ + 52.5065474, + 13.6127854 + ], + [ + 52.5067506, + 13.6127291 + ], + [ + 52.5070657, + 13.612646 + ], + [ + 52.5072691, + 13.6126131 + ], + [ + 52.5073825, + 13.6126208 + ], + [ + 52.5074103, + 13.6126221 + ], + [ + 52.5076023, + 13.612662 + ], + [ + 52.5077159, + 13.6127001 + ], + [ + 52.5079972, + 13.6128288 + ], + [ + 52.5080864, + 13.6128904 + ], + [ + 52.5081863, + 13.6129594 + ], + [ + 52.5082644, + 13.6130109 + ], + [ + 52.5085065, + 13.6131596 + ], + [ + 52.5086219, + 13.6132399 + ], + [ + 52.5087243, + 13.6133124 + ], + [ + 52.5088537, + 13.6134126 + ], + [ + 52.5090382, + 13.6135559 + ], + [ + 52.5091321, + 13.6136173 + ], + [ + 52.5091868, + 13.6136455 + ], + [ + 52.5092531, + 13.6136704 + ], + [ + 52.5093176, + 13.6136853 + ], + [ + 52.5094104, + 13.6136946 + ], + [ + 52.5094716, + 13.6136871 + ], + [ + 52.5095329, + 13.6136732 + ], + [ + 52.5096119, + 13.6136295 + ], + [ + 52.5096205, + 13.6136225 + ], + [ + 52.5096476, + 13.6136006 + ], + [ + 52.5096798, + 13.6135699 + ], + [ + 52.5097077, + 13.6135374 + ], + [ + 52.5097341, + 13.6135014 + ], + [ + 52.5098197, + 13.6133851 + ], + [ + 52.5099073, + 13.6132792 + ], + [ + 52.5099948, + 13.6131864 + ], + [ + 52.5103255, + 13.6128875 + ], + [ + 52.5103789, + 13.6128463 + ], + [ + 52.5104332, + 13.6128061 + ], + [ + 52.5105593, + 13.6127267 + ], + [ + 52.5106566, + 13.6126634 + ], + [ + 52.510774, + 13.6125928 + ], + [ + 52.5108183, + 13.6125703 + ], + [ + 52.5108597, + 13.6125531 + ], + [ + 52.5109304, + 13.6125272 + ], + [ + 52.5111184, + 13.6124627 + ], + [ + 52.5111389, + 13.6124525 + ], + [ + 52.5111615, + 13.6124376 + ], + [ + 52.5111795, + 13.6124234 + ], + [ + 52.5112012, + 13.612405 + ], + [ + 52.5112138, + 13.6123914 + ], + [ + 52.5112318, + 13.6123636 + ], + [ + 52.5112435, + 13.6123422 + ], + [ + 52.5112562, + 13.6123164 + ], + [ + 52.5112684, + 13.6122842 + ], + [ + 52.5112788, + 13.6122522 + ], + [ + 52.5112837, + 13.6122337 + ], + [ + 52.5112882, + 13.6122144 + ] + ] + }, + { + "osmId": "220075346", + "name": null, + "lengthMeters": 136.0016833260364, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4868772, + 13.6045901 + ], + [ + 52.4866837, + 13.6044093 + ], + [ + 52.486619, + 13.6043552 + ], + [ + 52.4865859, + 13.6043275 + ], + [ + 52.486104, + 13.603978 + ], + [ + 52.4860239, + 13.6039185 + ], + [ + 52.48599, + 13.6038957 + ], + [ + 52.4859203, + 13.6038529 + ], + [ + 52.485827, + 13.6038046 + ], + [ + 52.485763, + 13.6037714 + ] + ] + }, + { + "osmId": "220075347", + "name": null, + "lengthMeters": 779.5921293840476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4868772, + 13.6045901 + ], + [ + 52.4872011, + 13.6048272 + ], + [ + 52.4878299, + 13.6052833 + ], + [ + 52.4878979, + 13.6053327 + ], + [ + 52.4879685, + 13.6053828 + ], + [ + 52.4882145, + 13.6055571 + ], + [ + 52.488493, + 13.6057601 + ], + [ + 52.4886331, + 13.605862 + ], + [ + 52.4887925, + 13.6059782 + ], + [ + 52.4889553, + 13.6060968 + ], + [ + 52.4890334, + 13.6061566 + ], + [ + 52.4891841, + 13.6062719 + ], + [ + 52.4892283, + 13.6063042 + ], + [ + 52.4893741, + 13.6064139 + ], + [ + 52.489587, + 13.606568 + ], + [ + 52.4896903, + 13.6066415 + ], + [ + 52.4902085, + 13.6070179 + ], + [ + 52.4904524, + 13.6071917 + ], + [ + 52.4906347, + 13.6073215 + ], + [ + 52.4907493, + 13.6074051 + ], + [ + 52.4909078, + 13.6075206 + ], + [ + 52.4910007, + 13.6075883 + ], + [ + 52.491182, + 13.6077217 + ], + [ + 52.4912283, + 13.6077557 + ], + [ + 52.4913087, + 13.6078163 + ], + [ + 52.4914085, + 13.6078903 + ], + [ + 52.4914745, + 13.6079392 + ], + [ + 52.4916503, + 13.6080694 + ], + [ + 52.4920727, + 13.6083727 + ], + [ + 52.492257, + 13.6085101 + ], + [ + 52.4925363, + 13.6087099 + ], + [ + 52.4927242, + 13.6088471 + ], + [ + 52.4928621, + 13.6089476 + ], + [ + 52.4930231, + 13.6090649 + ], + [ + 52.4931511, + 13.6091583 + ], + [ + 52.4932859, + 13.6092588 + ] + ] + }, + { + "osmId": "220075349", + "name": null, + "lengthMeters": 123.52456016666878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4808456, + 13.6010038 + ], + [ + 52.4806185, + 13.6009418 + ], + [ + 52.4805832, + 13.6009321 + ], + [ + 52.4802773, + 13.6009017 + ], + [ + 52.4800446, + 13.6008785 + ], + [ + 52.4800118, + 13.600879 + ], + [ + 52.4799841, + 13.6008794 + ], + [ + 52.4799095, + 13.6008826 + ], + [ + 52.4797394, + 13.6008899 + ] + ] + }, + { + "osmId": "220075351", + "name": "Bahnhofstra\u00dfe", + "lengthMeters": 116.29397316305536, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.452031, + 13.5734124 + ], + [ + 52.451211, + 13.5723472 + ] + ] + }, + { + "osmId": "220075354", + "name": null, + "lengthMeters": 135.74085001752334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.485763, + 13.6037714 + ], + [ + 52.4858233, + 13.6038184 + ], + [ + 52.485911, + 13.6038868 + ], + [ + 52.4859783, + 13.60394 + ], + [ + 52.4865735, + 13.6043674 + ], + [ + 52.4866085, + 13.6043931 + ], + [ + 52.4866745, + 13.6044417 + ], + [ + 52.4868772, + 13.6045901 + ] + ] + }, + { + "osmId": "220075356", + "name": "Bahnhofstra\u00dfe", + "lengthMeters": 90.8880748542251, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4520145, + 13.5734575 + ], + [ + 52.4523466, + 13.5738309 + ], + [ + 52.4526938, + 13.5742033 + ] + ] + }, + { + "osmId": "220075358", + "name": null, + "lengthMeters": 550.8764813769203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4808456, + 13.6010038 + ], + [ + 52.4809639, + 13.6010172 + ], + [ + 52.4810508, + 13.601025 + ], + [ + 52.4811112, + 13.6010337 + ], + [ + 52.4819385, + 13.6011253 + ], + [ + 52.4820371, + 13.601141 + ], + [ + 52.482131, + 13.6011574 + ], + [ + 52.482222, + 13.6011917 + ], + [ + 52.4823291, + 13.6012601 + ], + [ + 52.4824564, + 13.6013499 + ], + [ + 52.4824837, + 13.6013684 + ], + [ + 52.482557, + 13.601418 + ], + [ + 52.4826231, + 13.6014663 + ], + [ + 52.482992, + 13.6017355 + ], + [ + 52.4831601, + 13.6018631 + ], + [ + 52.4833679, + 13.6020199 + ], + [ + 52.4834714, + 13.602098 + ], + [ + 52.4837602, + 13.6023149 + ], + [ + 52.4838336, + 13.6023683 + ], + [ + 52.4839641, + 13.602463 + ], + [ + 52.4840997, + 13.6025605 + ], + [ + 52.4843473, + 13.6027386 + ], + [ + 52.4846762, + 13.602981 + ], + [ + 52.4849023, + 13.6031415 + ], + [ + 52.4849405, + 13.6031686 + ], + [ + 52.4849815, + 13.6031984 + ], + [ + 52.4850876, + 13.6032772 + ], + [ + 52.4854289, + 13.6035337 + ], + [ + 52.4854851, + 13.603576 + ] + ] + }, + { + "osmId": "220100575", + "name": null, + "lengthMeters": 1285.167115524806, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1705821, + 11.5942981 + ], + [ + 48.1686699, + 11.5923724 + ], + [ + 48.1677994, + 11.5914466 + ], + [ + 48.167172, + 11.590775 + ], + [ + 48.1666869, + 11.590271 + ], + [ + 48.1662607, + 11.5897482 + ], + [ + 48.1660989, + 11.5895528 + ], + [ + 48.1643449, + 11.5876406 + ], + [ + 48.1639953, + 11.5873914 + ], + [ + 48.1637556, + 11.5872245 + ], + [ + 48.1634484, + 11.5870607 + ], + [ + 48.1632601, + 11.5869829 + ], + [ + 48.1629386, + 11.5868358 + ], + [ + 48.1625263, + 11.5866929 + ], + [ + 48.1621965, + 11.5865131 + ], + [ + 48.1614689, + 11.5862477 + ], + [ + 48.1610685, + 11.5861029 + ], + [ + 48.1608706, + 11.5859571 + ], + [ + 48.16066, + 11.5858019 + ] + ] + }, + { + "osmId": "220198808", + "name": null, + "lengthMeters": 785.6808750096911, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4298023, + 13.5303325 + ], + [ + 52.4299521, + 13.5306579 + ], + [ + 52.4300071, + 13.5307698 + ], + [ + 52.4301794, + 13.5311397 + ], + [ + 52.4303504, + 13.531537 + ], + [ + 52.4305185, + 13.5319793 + ], + [ + 52.4307232, + 13.5325317 + ], + [ + 52.43079, + 13.5327081 + ], + [ + 52.4308467, + 13.5328493 + ], + [ + 52.4308885, + 13.5329509 + ], + [ + 52.4309501, + 13.5330892 + ], + [ + 52.4310432, + 13.5332744 + ], + [ + 52.4311762, + 13.5335043 + ], + [ + 52.4313284, + 13.5337479 + ], + [ + 52.4314519, + 13.5339418 + ], + [ + 52.4318495, + 13.5345628 + ], + [ + 52.4321529, + 13.5350435 + ], + [ + 52.4321989, + 13.5351161 + ], + [ + 52.4322764, + 13.5352383 + ], + [ + 52.4323436, + 13.5353444 + ], + [ + 52.432887, + 13.5362058 + ], + [ + 52.4329606, + 13.536322 + ], + [ + 52.4330276, + 13.5364277 + ], + [ + 52.4341453, + 13.5381888 + ], + [ + 52.4342451, + 13.5383577 + ], + [ + 52.4343181, + 13.5384949 + ], + [ + 52.4343444, + 13.5385473 + ], + [ + 52.4344192, + 13.53871 + ], + [ + 52.4344385, + 13.5387542 + ], + [ + 52.4345006, + 13.5389146 + ] + ] + }, + { + "osmId": "220198810", + "name": null, + "lengthMeters": 489.7970620221991, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.429823, + 13.5303062 + ], + [ + 52.429759, + 13.5301687 + ], + [ + 52.4296807, + 13.5300043 + ], + [ + 52.4296251, + 13.5298798 + ], + [ + 52.4296126, + 13.5298506 + ], + [ + 52.4295983, + 13.5298137 + ], + [ + 52.4295878, + 13.5297812 + ], + [ + 52.4295773, + 13.5297424 + ], + [ + 52.4295695, + 13.5297053 + ], + [ + 52.4295642, + 13.5296712 + ], + [ + 52.4295615, + 13.5296378 + ], + [ + 52.4295593, + 13.5295971 + ], + [ + 52.4295595, + 13.5295634 + ], + [ + 52.429562, + 13.5295247 + ], + [ + 52.4295654, + 13.5294908 + ], + [ + 52.4295686, + 13.5294653 + ], + [ + 52.4295749, + 13.5294339 + ], + [ + 52.4295834, + 13.5294002 + ], + [ + 52.4295905, + 13.5293777 + ], + [ + 52.4295994, + 13.5293506 + ], + [ + 52.4296081, + 13.5293294 + ], + [ + 52.4296232, + 13.5292968 + ], + [ + 52.429639, + 13.5292695 + ], + [ + 52.4296532, + 13.5292471 + ], + [ + 52.4296677, + 13.5292285 + ], + [ + 52.4296827, + 13.529211 + ], + [ + 52.4296962, + 13.5291963 + ], + [ + 52.4297116, + 13.5291813 + ], + [ + 52.43041, + 13.5285857 + ], + [ + 52.4309678, + 13.5281092 + ], + [ + 52.4319754, + 13.5272452 + ], + [ + 52.4319958, + 13.5272262 + ], + [ + 52.4320139, + 13.5272076 + ], + [ + 52.4320776, + 13.5271387 + ], + [ + 52.4321153, + 13.5270926 + ], + [ + 52.4321539, + 13.5270443 + ], + [ + 52.4321948, + 13.5269896 + ], + [ + 52.4322345, + 13.5269331 + ], + [ + 52.4322683, + 13.5268819 + ], + [ + 52.4324479, + 13.5266034 + ], + [ + 52.4327476, + 13.5261436 + ] + ] + }, + { + "osmId": "220939823", + "name": null, + "lengthMeters": 531.7872437026342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.474996, + 13.599964 + ], + [ + 52.4750147, + 13.599974 + ], + [ + 52.4751171, + 13.6000205 + ], + [ + 52.475222, + 13.6000671 + ], + [ + 52.4754994, + 13.60017 + ], + [ + 52.475559, + 13.6001872 + ], + [ + 52.4763182, + 13.6003321 + ], + [ + 52.4763957, + 13.6003468 + ], + [ + 52.4765344, + 13.6003758 + ], + [ + 52.4766078, + 13.6003908 + ], + [ + 52.4768942, + 13.6004398 + ], + [ + 52.4770388, + 13.6004682 + ], + [ + 52.4775496, + 13.6005686 + ], + [ + 52.4776438, + 13.6005871 + ], + [ + 52.4777448, + 13.6006048 + ], + [ + 52.4782445, + 13.600692 + ], + [ + 52.4790733, + 13.600818 + ], + [ + 52.4791671, + 13.6008281 + ], + [ + 52.4797394, + 13.6008899 + ] + ] + }, + { + "osmId": "221009437", + "name": null, + "lengthMeters": 203.82915883850814, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5111068, + 13.5690298 + ], + [ + 52.5112372, + 13.5692355 + ], + [ + 52.5115335, + 13.5697345 + ], + [ + 52.5117695, + 13.5701359 + ], + [ + 52.5119052, + 13.5703839 + ], + [ + 52.5120253, + 13.5706238 + ], + [ + 52.5121652, + 13.5709411 + ], + [ + 52.5122942, + 13.571308 + ] + ] + }, + { + "osmId": "222133151", + "name": null, + "lengthMeters": 752.4063076935822, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4773648, + 13.7087655 + ], + [ + 52.4773892, + 13.7087309 + ], + [ + 52.4774658, + 13.7086234 + ], + [ + 52.4775344, + 13.7084947 + ], + [ + 52.4775705, + 13.7084118 + ], + [ + 52.4776137, + 13.7082868 + ], + [ + 52.4776465, + 13.7081613 + ], + [ + 52.477668, + 13.7080736 + ], + [ + 52.4776815, + 13.7079824 + ], + [ + 52.4777088, + 13.7078225 + ], + [ + 52.4780768, + 13.7052915 + ], + [ + 52.4786822, + 13.7008832 + ], + [ + 52.4787124, + 13.7007437 + ], + [ + 52.4787702, + 13.7004022 + ], + [ + 52.478803, + 13.700191 + ], + [ + 52.4788389, + 13.6999602 + ], + [ + 52.4788707, + 13.6996989 + ], + [ + 52.4789022, + 13.6994544 + ], + [ + 52.4789781, + 13.6987835 + ], + [ + 52.4789921, + 13.6985212 + ], + [ + 52.4789882, + 13.6982369 + ], + [ + 52.4789743, + 13.698081 + ] + ] + }, + { + "osmId": "222133152", + "name": null, + "lengthMeters": 605.6582139752251, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4789234, + 13.6972668 + ], + [ + 52.4790402, + 13.6967718 + ], + [ + 52.4790574, + 13.6967232 + ], + [ + 52.4791202, + 13.696546 + ], + [ + 52.4791689, + 13.6964083 + ], + [ + 52.4792295, + 13.6962371 + ], + [ + 52.4792471, + 13.696182 + ], + [ + 52.4793071, + 13.6959939 + ], + [ + 52.4793247, + 13.6958942 + ], + [ + 52.4793217, + 13.6958047 + ], + [ + 52.4793155, + 13.695729 + ], + [ + 52.4792974, + 13.6956463 + ], + [ + 52.47926, + 13.6955658 + ], + [ + 52.4792217, + 13.6955073 + ], + [ + 52.4790587, + 13.6953856 + ], + [ + 52.478741, + 13.6951843 + ], + [ + 52.4785253, + 13.6950292 + ], + [ + 52.4783435, + 13.6949016 + ], + [ + 52.4781492, + 13.6947653 + ], + [ + 52.4776767, + 13.6944336 + ], + [ + 52.4770341, + 13.6939826 + ], + [ + 52.4766823, + 13.6937346 + ], + [ + 52.4765921, + 13.693671 + ], + [ + 52.4765623, + 13.6936484 + ], + [ + 52.4765456, + 13.6936357 + ], + [ + 52.4764964, + 13.6936004 + ], + [ + 52.4764157, + 13.6935438 + ], + [ + 52.4763559, + 13.6935018 + ], + [ + 52.4759173, + 13.6931925 + ], + [ + 52.4757607, + 13.6930833 + ], + [ + 52.4756963, + 13.6930333 + ], + [ + 52.4756532, + 13.6930029 + ], + [ + 52.4756375, + 13.6929911 + ], + [ + 52.475602, + 13.692963 + ], + [ + 52.4755481, + 13.6929184 + ], + [ + 52.4755343, + 13.6929063 + ], + [ + 52.4754856, + 13.6928659 + ], + [ + 52.4753857, + 13.692783 + ], + [ + 52.4753494, + 13.6927513 + ], + [ + 52.4753258, + 13.6927323 + ] + ] + }, + { + "osmId": "222663270", + "name": "Ostbahn", + "lengthMeters": 240.9005415026454, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038173, + 13.4680128 + ], + [ + 52.5038987, + 13.4676633 + ], + [ + 52.5039843, + 13.4673242 + ], + [ + 52.5040541, + 13.4670646 + ], + [ + 52.5041661, + 13.4666476 + ], + [ + 52.504236, + 13.4663649 + ], + [ + 52.5043051, + 13.4660747 + ], + [ + 52.5043583, + 13.4658205 + ], + [ + 52.5044042, + 13.4655659 + ], + [ + 52.5044684, + 13.4651491 + ], + [ + 52.5045277, + 13.4646615 + ] + ] + }, + { + "osmId": "222917861", + "name": null, + "lengthMeters": 796.4191936831061, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5065998, + 13.4498985 + ], + [ + 52.5066154, + 13.4498227 + ], + [ + 52.5066468, + 13.4496704 + ], + [ + 52.5066852, + 13.4494842 + ], + [ + 52.5067953, + 13.4489501 + ], + [ + 52.5068684, + 13.4485989 + ], + [ + 52.506921, + 13.4483351 + ], + [ + 52.5071163, + 13.4473285 + ], + [ + 52.5072847, + 13.4464227 + ], + [ + 52.5074303, + 13.4456244 + ], + [ + 52.5074734, + 13.4453882 + ], + [ + 52.5076481, + 13.4444146 + ], + [ + 52.5077586, + 13.4438123 + ], + [ + 52.5077636, + 13.4437863 + ], + [ + 52.5078044, + 13.4435782 + ], + [ + 52.5078396, + 13.443415 + ], + [ + 52.5078497, + 13.4433736 + ], + [ + 52.5078968, + 13.4431812 + ], + [ + 52.5079435, + 13.4430032 + ], + [ + 52.5080019, + 13.4428085 + ], + [ + 52.5080578, + 13.4426331 + ], + [ + 52.5081294, + 13.4424185 + ], + [ + 52.5083543, + 13.4417438 + ], + [ + 52.50858, + 13.4410627 + ], + [ + 52.5085825, + 13.4410555 + ], + [ + 52.5085857, + 13.4410459 + ], + [ + 52.5088704, + 13.4401861 + ], + [ + 52.5091033, + 13.4394831 + ], + [ + 52.5092589, + 13.439028 + ] + ] + }, + { + "osmId": "222917863", + "name": null, + "lengthMeters": 117.5265018907414, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5058939, + 13.4535571 + ], + [ + 52.5060019, + 13.452995 + ], + [ + 52.5061856, + 13.4520396 + ], + [ + 52.5062115, + 13.4519009 + ] + ] + }, + { + "osmId": "223176614", + "name": null, + "lengthMeters": 857.0520740876461, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6001838, + 13.4686298 + ], + [ + 52.6004673, + 13.4682539 + ], + [ + 52.6005568, + 13.4681286 + ], + [ + 52.600744, + 13.4678577 + ], + [ + 52.6008357, + 13.4677208 + ], + [ + 52.6009841, + 13.4675021 + ], + [ + 52.6011226, + 13.4673021 + ], + [ + 52.6012004, + 13.4671884 + ], + [ + 52.6018468, + 13.4663259 + ], + [ + 52.6021179, + 13.4659622 + ], + [ + 52.6022664, + 13.4657527 + ], + [ + 52.6024098, + 13.4655248 + ], + [ + 52.6025511, + 13.465287 + ], + [ + 52.6026633, + 13.465078 + ], + [ + 52.6027302, + 13.4649456 + ], + [ + 52.6028276, + 13.4647402 + ], + [ + 52.6029265, + 13.4645172 + ], + [ + 52.6030198, + 13.4642859 + ], + [ + 52.6031062, + 13.4640576 + ], + [ + 52.6032098, + 13.4637552 + ], + [ + 52.6032951, + 13.4634782 + ], + [ + 52.6034169, + 13.4630138 + ], + [ + 52.6034999, + 13.4626415 + ], + [ + 52.6035607, + 13.4623289 + ], + [ + 52.6036045, + 13.4620506 + ], + [ + 52.6036494, + 13.4617308 + ], + [ + 52.603689, + 13.4613378 + ], + [ + 52.6037138, + 13.461016 + ], + [ + 52.6037292, + 13.4606128 + ], + [ + 52.603735, + 13.4602408 + ], + [ + 52.6037277, + 13.4598904 + ], + [ + 52.6037089, + 13.4595059 + ], + [ + 52.603679, + 13.4591307 + ], + [ + 52.6036361, + 13.4587646 + ], + [ + 52.6036008, + 13.4585175 + ], + [ + 52.6035581, + 13.4582528 + ] + ] + }, + { + "osmId": "223181786", + "name": null, + "lengthMeters": 1070.200033312526, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483434, + 13.3857944 + ], + [ + 52.5483083, + 13.3852354 + ], + [ + 52.5482747, + 13.3849433 + ], + [ + 52.5482387, + 13.3847595 + ], + [ + 52.5481769, + 13.384543 + ], + [ + 52.5480862, + 13.3842416 + ], + [ + 52.5477693, + 13.3833881 + ], + [ + 52.5474119, + 13.3826436 + ], + [ + 52.5470949, + 13.3821507 + ], + [ + 52.5464235, + 13.3812225 + ], + [ + 52.546121, + 13.3808314 + ], + [ + 52.5455885, + 13.3802257 + ], + [ + 52.5450596, + 13.3797296 + ], + [ + 52.5444988, + 13.3793425 + ], + [ + 52.5440538, + 13.3791629 + ], + [ + 52.5437351, + 13.3790725 + ], + [ + 52.5434116, + 13.3790329 + ], + [ + 52.5431055, + 13.3790537 + ], + [ + 52.5427963, + 13.3791146 + ], + [ + 52.5413339, + 13.379427 + ], + [ + 52.5406548, + 13.3796134 + ] + ] + }, + { + "osmId": "223181787", + "name": "ehem. Stettiner Bahn", + "lengthMeters": 1076.4138957154614, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482992, + 13.386053 + ], + [ + 52.5482675, + 13.3855198 + ], + [ + 52.5482372, + 13.3851949 + ], + [ + 52.5482093, + 13.3850292 + ], + [ + 52.548096, + 13.3846109 + ], + [ + 52.5480046, + 13.3843128 + ], + [ + 52.5476936, + 13.3834274 + ], + [ + 52.5473715, + 13.382697 + ], + [ + 52.547064, + 13.382189 + ], + [ + 52.5464006, + 13.3812698 + ], + [ + 52.5460848, + 13.3808877 + ], + [ + 52.5455535, + 13.3802863 + ], + [ + 52.5450303, + 13.3798074 + ], + [ + 52.5444709, + 13.3794204 + ], + [ + 52.5440416, + 13.3792464 + ], + [ + 52.5437302, + 13.3791637 + ], + [ + 52.543415, + 13.3791303 + ], + [ + 52.543112, + 13.3791288 + ], + [ + 52.5428075, + 13.3791772 + ], + [ + 52.5414814, + 13.3794416 + ], + [ + 52.541337, + 13.3794971 + ], + [ + 52.5407636, + 13.3796898 + ], + [ + 52.5406652, + 13.3797229 + ] + ] + }, + { + "osmId": "223236895", + "name": null, + "lengthMeters": 171.04410958981504, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4956337, + 13.4643329 + ], + [ + 52.4958044, + 13.4645541 + ], + [ + 52.4959549, + 13.4647422 + ], + [ + 52.4961072, + 13.4649262 + ], + [ + 52.4963393, + 13.4651987 + ], + [ + 52.4964513, + 13.4653344 + ], + [ + 52.4965619, + 13.4654736 + ], + [ + 52.4966356, + 13.4655714 + ], + [ + 52.4967086, + 13.4656703 + ], + [ + 52.4968514, + 13.4658748 + ] + ] + }, + { + "osmId": "223333173", + "name": null, + "lengthMeters": 917.5368851168444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1267344, + 11.6603881 + ], + [ + 48.1268483, + 11.6599744 + ], + [ + 48.1269618, + 11.6596137 + ], + [ + 48.1270441, + 11.6593714 + ], + [ + 48.1272093, + 11.6589361 + ], + [ + 48.1273382, + 11.6586222 + ], + [ + 48.1276334, + 11.6579827 + ], + [ + 48.1278931, + 11.6574406 + ], + [ + 48.1281894, + 11.6568219 + ], + [ + 48.1282544, + 11.656688 + ], + [ + 48.128384, + 11.6564208 + ], + [ + 48.1288028, + 11.6555521 + ], + [ + 48.1296898, + 11.6537024 + ], + [ + 48.1306159, + 11.6517869 + ], + [ + 48.1308589, + 11.6512759 + ], + [ + 48.1309884, + 11.6509975 + ], + [ + 48.1311174, + 11.6507254 + ], + [ + 48.1312256, + 11.6504813 + ], + [ + 48.1313558, + 11.6501898 + ], + [ + 48.1313607, + 11.6501774 + ] + ] + }, + { + "osmId": "223333182", + "name": "Grafing - Berg am Laim", + "lengthMeters": 7130.791729293362, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1262919, + 11.6619268 + ], + [ + 48.1259895, + 11.6633374 + ], + [ + 48.1257125, + 11.6646146 + ], + [ + 48.125662, + 11.6648475 + ], + [ + 48.1252148, + 11.6669151 + ], + [ + 48.1246493, + 11.6695298 + ], + [ + 48.1241313, + 11.6719158 + ], + [ + 48.1241126, + 11.6720011 + ], + [ + 48.12402, + 11.6724236 + ], + [ + 48.1238257, + 11.6733347 + ], + [ + 48.1234677, + 11.6750127 + ], + [ + 48.1232611, + 11.6759811 + ], + [ + 48.1232492, + 11.6760358 + ], + [ + 48.1232491, + 11.6760366 + ], + [ + 48.1224265, + 11.679831 + ], + [ + 48.1217513, + 11.6829532 + ], + [ + 48.1211538, + 11.6857136 + ], + [ + 48.1206361, + 11.6880964 + ], + [ + 48.1205715, + 11.6883935 + ], + [ + 48.1201358, + 11.690399 + ], + [ + 48.1200508, + 11.6907913 + ], + [ + 48.1194762, + 11.6934427 + ], + [ + 48.119406, + 11.6937667 + ], + [ + 48.1190688, + 11.6953526 + ], + [ + 48.1188816, + 11.6961801 + ], + [ + 48.1186084, + 11.6974516 + ], + [ + 48.1184452, + 11.6982106 + ], + [ + 48.1183158, + 11.6988082 + ], + [ + 48.118025, + 11.7001667 + ], + [ + 48.1179935, + 11.7003087 + ], + [ + 48.1178302, + 11.7010456 + ], + [ + 48.1175102, + 11.7024898 + ], + [ + 48.1172416, + 11.703731 + ], + [ + 48.1169424, + 11.7051132 + ], + [ + 48.1168533, + 11.7055229 + ], + [ + 48.1164731, + 11.7072708 + ], + [ + 48.1164145, + 11.7075402 + ], + [ + 48.1145129, + 11.7163632 + ], + [ + 48.1140191, + 11.7186541 + ], + [ + 48.1137097, + 11.7200897 + ], + [ + 48.1135336, + 11.7209064 + ], + [ + 48.1130134, + 11.72332 + ], + [ + 48.1128917, + 11.7239182 + ], + [ + 48.1126821, + 11.7249903 + ], + [ + 48.1126606, + 11.7250986 + ], + [ + 48.1126366, + 11.7252194 + ], + [ + 48.1123621, + 11.7266027 + ], + [ + 48.1122139, + 11.7273085 + ], + [ + 48.1120677, + 11.7279822 + ], + [ + 48.1119137, + 11.7286836 + ], + [ + 48.1118009, + 11.7291969 + ], + [ + 48.1117403, + 11.7294731 + ], + [ + 48.111378, + 11.7311375 + ], + [ + 48.1113169, + 11.7314214 + ], + [ + 48.1111408, + 11.7322414 + ], + [ + 48.1110987, + 11.7324377 + ], + [ + 48.1108868, + 11.7334105 + ], + [ + 48.1108487, + 11.7335731 + ], + [ + 48.1106307, + 11.7345049 + ], + [ + 48.1105858, + 11.7346904 + ], + [ + 48.1105537, + 11.7348234 + ], + [ + 48.110384, + 11.7355269 + ], + [ + 48.1102338, + 11.7361491 + ], + [ + 48.1095479, + 11.7392558 + ], + [ + 48.109401, + 11.739921 + ], + [ + 48.1088269, + 11.7425719 + ], + [ + 48.1087676, + 11.7428455 + ], + [ + 48.1084633, + 11.7442455 + ], + [ + 48.1083773, + 11.744641 + ], + [ + 48.1079889, + 11.7464231 + ], + [ + 48.1078607, + 11.7470135 + ], + [ + 48.1072544, + 11.7498068 + ], + [ + 48.1068183, + 11.7518157 + ], + [ + 48.1066804, + 11.7524511 + ], + [ + 48.1064991, + 11.7532902 + ] + ] + }, + { + "osmId": "223333213", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 446.9300460312618, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347894, + 11.6230359 + ], + [ + 48.1345844, + 11.6257358 + ], + [ + 48.134519, + 11.6265969 + ], + [ + 48.1343011, + 11.6290135 + ] + ] + }, + { + "osmId": "223333214", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 437.8864068397115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1348154, + 11.6231644 + ], + [ + 48.1345477, + 11.6266031 + ], + [ + 48.1343333, + 11.6290205 + ] + ] + }, + { + "osmId": "223435855", + "name": null, + "lengthMeters": 91.01347435415403, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1408255, + 11.55117 + ], + [ + 48.1408319, + 11.5511079 + ], + [ + 48.1408489, + 11.5509419 + ], + [ + 48.1408892, + 11.5504725 + ], + [ + 48.1409255, + 11.5499528 + ] + ] + }, + { + "osmId": "223457524", + "name": null, + "lengthMeters": 123.65109916445729, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1405353, + 11.5527769 + ], + [ + 48.1406387, + 11.5522958 + ], + [ + 48.1407052, + 11.5519684 + ], + [ + 48.1407437, + 11.5517491 + ], + [ + 48.140778, + 11.5515286 + ], + [ + 48.1408255, + 11.55117 + ] + ] + }, + { + "osmId": "224069948", + "name": "Ostbahn", + "lengthMeters": 137.1006534080965, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5032272, + 13.4711179 + ], + [ + 52.5033622, + 13.4703971 + ], + [ + 52.5034255, + 13.4700469 + ], + [ + 52.5035893, + 13.4691817 + ] + ] + }, + { + "osmId": "224320989", + "name": null, + "lengthMeters": 602.4511518448671, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4972281, + 13.4662231 + ], + [ + 52.4974198, + 13.4664777 + ], + [ + 52.4974334, + 13.4664941 + ], + [ + 52.4976163, + 13.4667276 + ], + [ + 52.4979069, + 13.4670283 + ], + [ + 52.498074, + 13.4671864 + ], + [ + 52.4982081, + 13.4673012 + ], + [ + 52.4983322, + 13.4674023 + ], + [ + 52.4984031, + 13.4674433 + ], + [ + 52.4985719, + 13.4675411 + ], + [ + 52.4986915, + 13.4676095 + ], + [ + 52.4987624, + 13.467647 + ], + [ + 52.4991136, + 13.4678184 + ], + [ + 52.4995017, + 13.4679784 + ], + [ + 52.4996702, + 13.4680493 + ], + [ + 52.4998358, + 13.4681164 + ], + [ + 52.499917, + 13.4681493 + ], + [ + 52.5004099, + 13.4683391 + ], + [ + 52.5006642, + 13.468437 + ], + [ + 52.5014945, + 13.4687709 + ], + [ + 52.5018347, + 13.4689091 + ], + [ + 52.5022951, + 13.469096 + ] + ] + }, + { + "osmId": "224320990", + "name": null, + "lengthMeters": 273.013827779036, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4972127, + 13.4661226 + ], + [ + 52.4973028, + 13.4662512 + ], + [ + 52.497442, + 13.4664328 + ], + [ + 52.4976363, + 13.4666803 + ], + [ + 52.4977975, + 13.46685 + ], + [ + 52.4979269, + 13.4669782 + ], + [ + 52.4980933, + 13.4671421 + ], + [ + 52.4982263, + 13.4672452 + ], + [ + 52.4983473, + 13.4673407 + ], + [ + 52.4985435, + 13.4674508 + ], + [ + 52.4986404, + 13.4675063 + ], + [ + 52.4987959, + 13.4675873 + ], + [ + 52.4990367, + 13.4676936 + ], + [ + 52.4992236, + 13.4677719 + ], + [ + 52.4993985, + 13.4678348 + ] + ] + }, + { + "osmId": "224705867", + "name": null, + "lengthMeters": 82.32298809150018, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4977078, + 13.4665397 + ], + [ + 52.4975362, + 13.4663488 + ], + [ + 52.4973687, + 13.4661432 + ], + [ + 52.4971197, + 13.4658027 + ] + ] + }, + { + "osmId": "225580303", + "name": null, + "lengthMeters": 122.20968760912454, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356165, + 11.5998565 + ], + [ + 48.1356197, + 11.6001027 + ], + [ + 48.13563, + 11.6004495 + ], + [ + 48.1356572, + 11.6009765 + ], + [ + 48.1357177, + 11.6014935 + ] + ] + }, + { + "osmId": "225580306", + "name": null, + "lengthMeters": 366.93894039274676, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.139889, + 11.5661482 + ], + [ + 48.1403063, + 11.567195 + ], + [ + 48.1403649, + 11.5673365 + ], + [ + 48.1404172, + 11.5674627 + ], + [ + 48.1408227, + 11.5683315 + ], + [ + 48.1413481, + 11.5693913 + ], + [ + 48.141525, + 11.5697445 + ], + [ + 48.1417608, + 11.5702153 + ] + ] + }, + { + "osmId": "225580309", + "name": null, + "lengthMeters": 2676.9571043422175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1204311, + 11.6207226 + ], + [ + 48.1205129, + 11.6195841 + ], + [ + 48.120572, + 11.6187081 + ], + [ + 48.1206314, + 11.6178264 + ], + [ + 48.1207294, + 11.6161117 + ], + [ + 48.1208135, + 11.6141852 + ], + [ + 48.1208583, + 11.6134059 + ], + [ + 48.1209015, + 11.6129555 + ], + [ + 48.1211236, + 11.6113779 + ], + [ + 48.1211748, + 11.611095 + ], + [ + 48.1212391, + 11.6107956 + ], + [ + 48.1214108, + 11.6101275 + ], + [ + 48.1215621, + 11.609615 + ], + [ + 48.1217777, + 11.608974 + ], + [ + 48.121994, + 11.6084361 + ], + [ + 48.1222395, + 11.6079405 + ], + [ + 48.1225884, + 11.6073502 + ], + [ + 48.1230051, + 11.6067447 + ], + [ + 48.123398, + 11.606239 + ], + [ + 48.1241139, + 11.6054857 + ], + [ + 48.1245372, + 11.6050195 + ], + [ + 48.1249007, + 11.6046744 + ], + [ + 48.1252282, + 11.6043835 + ], + [ + 48.1254856, + 11.6041839 + ], + [ + 48.1257001, + 11.6040638 + ], + [ + 48.1259586, + 11.6039623 + ], + [ + 48.1262036, + 11.6039065 + ], + [ + 48.1264672, + 11.6038744 + ], + [ + 48.1280409, + 11.6037297 + ], + [ + 48.1285717, + 11.6036799 + ], + [ + 48.1292061, + 11.6035716 + ], + [ + 48.1297811, + 11.6035207 + ], + [ + 48.1305637, + 11.6034515 + ], + [ + 48.1308876, + 11.6034837 + ], + [ + 48.1312116, + 11.6035648 + ], + [ + 48.1324929, + 11.6040909 + ], + [ + 48.132686, + 11.6041551 + ], + [ + 48.1328982, + 11.6042042 + ], + [ + 48.1330641, + 11.6042076 + ], + [ + 48.1333091, + 11.6041788 + ], + [ + 48.1335428, + 11.6041129 + ], + [ + 48.1337516, + 11.6040368 + ], + [ + 48.1339943, + 11.6039319 + ], + [ + 48.1342099, + 11.603805 + ], + [ + 48.1343561, + 11.6036985 + ], + [ + 48.1344316, + 11.6036234 + ], + [ + 48.1345113, + 11.6035547 + ], + [ + 48.1346626, + 11.6033771 + ], + [ + 48.1348206, + 11.6031538 + ], + [ + 48.1349673, + 11.6029204 + ], + [ + 48.1351942, + 11.6025043 + ], + [ + 48.135381, + 11.6021221 + ], + [ + 48.1354832, + 11.601887 + ], + [ + 48.1355735, + 11.6016316 + ], + [ + 48.1356536, + 11.6013322 + ] + ] + }, + { + "osmId": "225580310", + "name": null, + "lengthMeters": 2662.2781087783815, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1354601, + 11.6010631 + ], + [ + 48.1353679, + 11.6012966 + ], + [ + 48.1352311, + 11.6015475 + ], + [ + 48.1350912, + 11.601827 + ], + [ + 48.1349414, + 11.6021239 + ], + [ + 48.1347393, + 11.6024957 + ], + [ + 48.1345691, + 11.6027712 + ], + [ + 48.1343738, + 11.60303 + ], + [ + 48.1341639, + 11.603238 + ], + [ + 48.1339686, + 11.6033902 + ], + [ + 48.1337349, + 11.6035357 + ], + [ + 48.1334869, + 11.6036431 + ], + [ + 48.1331965, + 11.6037725 + ], + [ + 48.1329492, + 11.6038368 + ], + [ + 48.1327351, + 11.6038491 + ], + [ + 48.1324706, + 11.6038435 + ], + [ + 48.1322358, + 11.6038131 + ], + [ + 48.131221, + 11.6034976 + ], + [ + 48.1308981, + 11.6034139 + ], + [ + 48.1305673, + 11.6033885 + ], + [ + 48.1295923, + 11.6034701 + ], + [ + 48.1294533, + 11.603473 + ], + [ + 48.1292086, + 11.6034862 + ], + [ + 48.1286061, + 11.6034862 + ], + [ + 48.1280399, + 11.6035262 + ], + [ + 48.1264603, + 11.603677 + ], + [ + 48.1261835, + 11.6037066 + ], + [ + 48.1259316, + 11.6037642 + ], + [ + 48.1256755, + 11.6038419 + ], + [ + 48.125454, + 11.6039486 + ], + [ + 48.1251533, + 11.6041522 + ], + [ + 48.124815, + 11.6044272 + ], + [ + 48.1244478, + 11.604784 + ], + [ + 48.1241022, + 11.605127 + ], + [ + 48.123288, + 11.6060188 + ], + [ + 48.1228826, + 11.6065297 + ], + [ + 48.1224626, + 11.6071589 + ], + [ + 48.122106, + 11.6078014 + ], + [ + 48.1218687, + 11.6083192 + ], + [ + 48.1216541, + 11.6088872 + ], + [ + 48.1214465, + 11.609537 + ], + [ + 48.1213156, + 11.6100616 + ], + [ + 48.1211969, + 11.6106161 + ], + [ + 48.1211044, + 11.611175 + ], + [ + 48.1210121, + 11.6118253 + ], + [ + 48.1209313, + 11.6123948 + ], + [ + 48.1208186, + 11.6131893 + ], + [ + 48.1206754, + 11.6141282 + ], + [ + 48.120599, + 11.6148446 + ], + [ + 48.1205003, + 11.6160875 + ], + [ + 48.1203616, + 11.6177798 + ], + [ + 48.120302, + 11.6186653 + ], + [ + 48.1202391, + 11.6195437 + ], + [ + 48.1201728, + 11.6206583 + ] + ] + }, + { + "osmId": "226161425", + "name": null, + "lengthMeters": 839.6118433638757, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4527479, + 13.5088026 + ], + [ + 52.4526548, + 13.5087065 + ], + [ + 52.452619, + 13.5086763 + ], + [ + 52.4525657, + 13.50864 + ], + [ + 52.4525392, + 13.5086258 + ], + [ + 52.4525186, + 13.5086189 + ], + [ + 52.4523786, + 13.508561 + ], + [ + 52.4515286, + 13.508287 + ], + [ + 52.4505494, + 13.5079617 + ], + [ + 52.4504773, + 13.5079371 + ], + [ + 52.4504124, + 13.5079138 + ], + [ + 52.4503487, + 13.5078951 + ], + [ + 52.4489994, + 13.5074449 + ], + [ + 52.4482034, + 13.5071849 + ], + [ + 52.4476319, + 13.5069957 + ], + [ + 52.447237, + 13.5068264 + ], + [ + 52.4472079, + 13.5068156 + ], + [ + 52.4467798, + 13.5066717 + ], + [ + 52.4467038, + 13.5066462 + ], + [ + 52.4466457, + 13.5066268 + ], + [ + 52.4465948, + 13.5065984 + ], + [ + 52.4465444, + 13.5065568 + ], + [ + 52.4464647, + 13.5064679 + ], + [ + 52.4463554, + 13.5063461 + ], + [ + 52.4462687, + 13.5062502 + ], + [ + 52.4457775, + 13.5056747 + ], + [ + 52.4456996, + 13.505583 + ], + [ + 52.445575, + 13.5054363 + ] + ] + }, + { + "osmId": "226176335", + "name": null, + "lengthMeters": 508.3363280717772, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5101195, + 13.3857618 + ], + [ + 52.5100839, + 13.3851919 + ], + [ + 52.5100765, + 13.3850486 + ], + [ + 52.5100325, + 13.3843902 + ], + [ + 52.5100186, + 13.3841752 + ], + [ + 52.5100045, + 13.3839578 + ], + [ + 52.5099096, + 13.3823534 + ], + [ + 52.5098576, + 13.3815173 + ], + [ + 52.5098097, + 13.3807461 + ], + [ + 52.5097641, + 13.3799696 + ], + [ + 52.5097456, + 13.3797074 + ], + [ + 52.509737, + 13.379593 + ], + [ + 52.5097264, + 13.3794755 + ], + [ + 52.509725, + 13.3794656 + ], + [ + 52.5096982, + 13.3791924 + ], + [ + 52.5096922, + 13.3791145 + ], + [ + 52.5096411, + 13.3782925 + ] + ] + }, + { + "osmId": "226176336", + "name": null, + "lengthMeters": 508.08170127123174, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096144, + 13.3782977 + ], + [ + 52.5096399, + 13.3787191 + ], + [ + 52.5096673, + 13.3791314 + ], + [ + 52.5096724, + 13.3792088 + ], + [ + 52.5096761, + 13.3792558 + ], + [ + 52.5096865, + 13.3793487 + ], + [ + 52.5097016, + 13.379479 + ], + [ + 52.5097092, + 13.3795789 + ], + [ + 52.5097107, + 13.3795981 + ], + [ + 52.5097232, + 13.3797846 + ], + [ + 52.50977, + 13.3805946 + ], + [ + 52.5097912, + 13.3808924 + ], + [ + 52.5098053, + 13.3811114 + ], + [ + 52.5098283, + 13.3815236 + ], + [ + 52.5099789, + 13.3839733 + ], + [ + 52.5099919, + 13.3841893 + ], + [ + 52.5100046, + 13.3844031 + ], + [ + 52.5100932, + 13.385763 + ] + ] + }, + { + "osmId": "226310003", + "name": null, + "lengthMeters": 291.20115502741635, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0886577, + 11.6335488 + ], + [ + 48.0886282, + 11.6335403 + ], + [ + 48.0885183, + 11.6335063 + ], + [ + 48.0883862, + 11.6334654 + ], + [ + 48.0870025, + 11.6330464 + ], + [ + 48.0868267, + 11.6330142 + ], + [ + 48.0867169, + 11.6330012 + ], + [ + 48.0865617, + 11.63299 + ], + [ + 48.0863265, + 11.6329916 + ], + [ + 48.0860744, + 11.6329874 + ] + ] + }, + { + "osmId": "228371956", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 339.96779634866533, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2505864, + 11.553584 + ], + [ + 48.250321, + 11.5534582 + ], + [ + 48.2498351, + 11.5532288 + ], + [ + 48.2489591, + 11.5528237 + ], + [ + 48.2489279, + 11.5528093 + ], + [ + 48.2484823, + 11.5525984 + ], + [ + 48.2482991, + 11.5525117 + ], + [ + 48.2476669, + 11.5522207 + ] + ] + }, + { + "osmId": "228966785", + "name": "U8", + "lengthMeters": 822.9511818797916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5430658, + 13.3923395 + ], + [ + 52.544107, + 13.3914971 + ], + [ + 52.544341, + 13.391263 + ], + [ + 52.544529, + 13.3910301 + ], + [ + 52.5449382, + 13.3904373 + ], + [ + 52.5451206, + 13.3901919 + ], + [ + 52.5453258, + 13.3899645 + ], + [ + 52.5455833, + 13.3897547 + ], + [ + 52.5457504, + 13.3896459 + ], + [ + 52.5459432, + 13.3895528 + ], + [ + 52.5461, + 13.3895032 + ], + [ + 52.5462446, + 13.3894672 + ], + [ + 52.5463383, + 13.3894553 + ], + [ + 52.5464662, + 13.3894511 + ], + [ + 52.5470635, + 13.3894762 + ], + [ + 52.5472723, + 13.3894573 + ], + [ + 52.5475766, + 13.3893864 + ], + [ + 52.5477316, + 13.3893494 + ], + [ + 52.5479262, + 13.3892791 + ], + [ + 52.5480989, + 13.3891787 + ], + [ + 52.548205, + 13.3890968 + ], + [ + 52.548313, + 13.3890006 + ], + [ + 52.5484002, + 13.3889192 + ], + [ + 52.5485121, + 13.3888031 + ], + [ + 52.5486111, + 13.3886886 + ], + [ + 52.5488187, + 13.3884238 + ], + [ + 52.5489813, + 13.3881971 + ], + [ + 52.5491305, + 13.3879739 + ], + [ + 52.5492347, + 13.3877877 + ], + [ + 52.5493635, + 13.3874789 + ], + [ + 52.5494667, + 13.387195 + ] + ] + }, + { + "osmId": "228992090", + "name": "U8", + "lengthMeters": 225.188440076722, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493657, + 13.3871421 + ], + [ + 52.5492667, + 13.3873672 + ], + [ + 52.5491276, + 13.3876258 + ], + [ + 52.5489833, + 13.3878534 + ], + [ + 52.5489026, + 13.3879667 + ], + [ + 52.5486797, + 13.3882635 + ], + [ + 52.5484726, + 13.3885369 + ], + [ + 52.5483861, + 13.388643 + ], + [ + 52.5482421, + 13.3888105 + ], + [ + 52.5481453, + 13.3889104 + ], + [ + 52.5480483, + 13.3890015 + ], + [ + 52.5478887, + 13.3891278 + ], + [ + 52.5477959, + 13.3891911 + ] + ] + }, + { + "osmId": "229155496", + "name": "U9", + "lengthMeters": 922.1185141667116, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4567758, + 13.3210222 + ], + [ + 52.4571094, + 13.3212297 + ], + [ + 52.4574448, + 13.3214552 + ], + [ + 52.4580281, + 13.321976 + ], + [ + 52.4593037, + 13.323266 + ], + [ + 52.4605798, + 13.3244747 + ], + [ + 52.4607909, + 13.3246755 + ], + [ + 52.4613634, + 13.3252199 + ], + [ + 52.4625564, + 13.3263866 + ], + [ + 52.4637071, + 13.3273843 + ], + [ + 52.4640169, + 13.3276224 + ] + ] + }, + { + "osmId": "229589517", + "name": null, + "lengthMeters": 980.6904766709863, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4555426, + 13.5798306 + ], + [ + 52.4554968, + 13.580415 + ], + [ + 52.4554462, + 13.5810598 + ], + [ + 52.455357, + 13.5821687 + ], + [ + 52.4553373, + 13.5826771 + ], + [ + 52.4553477, + 13.5830842 + ], + [ + 52.4553906, + 13.5847652 + ], + [ + 52.4554223, + 13.5858986 + ], + [ + 52.4554253, + 13.585994 + ], + [ + 52.4554288, + 13.5861039 + ], + [ + 52.4554437, + 13.5866622 + ], + [ + 52.4554528, + 13.5870168 + ], + [ + 52.4555072, + 13.5887485 + ], + [ + 52.4555075, + 13.5889231 + ], + [ + 52.4555039, + 13.5890962 + ], + [ + 52.4554957, + 13.589218 + ], + [ + 52.4554676, + 13.5894606 + ], + [ + 52.4553497, + 13.5904165 + ], + [ + 52.4553358, + 13.5905123 + ], + [ + 52.4552894, + 13.5908907 + ], + [ + 52.4552222, + 13.5914194 + ], + [ + 52.4551692, + 13.5918011 + ], + [ + 52.4551368, + 13.5920166 + ], + [ + 52.4550931, + 13.592155 + ], + [ + 52.4550539, + 13.5922479 + ], + [ + 52.4550017, + 13.5923328 + ], + [ + 52.4549452, + 13.5923931 + ], + [ + 52.4548631, + 13.5924475 + ], + [ + 52.454721, + 13.5925281 + ], + [ + 52.4544234, + 13.5926688 + ], + [ + 52.4539553, + 13.5928813 + ] + ] + }, + { + "osmId": "229589519", + "name": null, + "lengthMeters": 200.69938206376722, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4555654, + 13.5798362 + ], + [ + 52.4555973, + 13.5794469 + ], + [ + 52.4556086, + 13.579302 + ], + [ + 52.4556274, + 13.5790618 + ], + [ + 52.4556633, + 13.5786031 + ], + [ + 52.4556914, + 13.5782447 + ], + [ + 52.4557131, + 13.5779664 + ], + [ + 52.4557497, + 13.5774989 + ], + [ + 52.4557579, + 13.5773786 + ], + [ + 52.4557592, + 13.577345 + ], + [ + 52.4557593, + 13.5773211 + ], + [ + 52.4557575, + 13.5772907 + ], + [ + 52.4557556, + 13.5772619 + ], + [ + 52.455752, + 13.5772347 + ], + [ + 52.4557472, + 13.5772078 + ], + [ + 52.4557393, + 13.5771735 + ], + [ + 52.4557268, + 13.5771328 + ], + [ + 52.4557174, + 13.5771075 + ], + [ + 52.4557046, + 13.5770819 + ], + [ + 52.4556915, + 13.5770605 + ], + [ + 52.4556747, + 13.5770363 + ], + [ + 52.4556569, + 13.5770157 + ], + [ + 52.4556233, + 13.5769844 + ] + ] + }, + { + "osmId": "230957292", + "name": null, + "lengthMeters": 184.2058650263974, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533139, + 13.3862351 + ], + [ + 52.5330338, + 13.3863797 + ], + [ + 52.5330286, + 13.3863869 + ], + [ + 52.5328427, + 13.3866437 + ], + [ + 52.5326616, + 13.3869051 + ], + [ + 52.5322689, + 13.3875173 + ], + [ + 52.5321326, + 13.3877461 + ], + [ + 52.5320011, + 13.3879789 + ], + [ + 52.5319772, + 13.3880226 + ], + [ + 52.5319333, + 13.3880988 + ] + ] + }, + { + "osmId": "230957293", + "name": null, + "lengthMeters": 165.66194789909554, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320861, + 13.3883608 + ], + [ + 52.532133, + 13.3882906 + ], + [ + 52.5321558, + 13.3882542 + ], + [ + 52.532639, + 13.3875306 + ], + [ + 52.5327738, + 13.3873223 + ], + [ + 52.5329043, + 13.3871064 + ], + [ + 52.5330336, + 13.3868844 + ], + [ + 52.5331574, + 13.3866609 + ] + ] + }, + { + "osmId": "230957295", + "name": null, + "lengthMeters": 308.0579713153872, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5331574, + 13.3866609 + ], + [ + 52.5331621, + 13.3866524 + ], + [ + 52.5332361, + 13.386518 + ], + [ + 52.5334328, + 13.3861545 + ], + [ + 52.5338788, + 13.3854152 + ], + [ + 52.5350035, + 13.3836527 + ], + [ + 52.5351248, + 13.3834568 + ] + ] + }, + { + "osmId": "230957297", + "name": null, + "lengthMeters": 293.241641443211, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5319333, + 13.3880988 + ], + [ + 52.5317654, + 13.3884102 + ], + [ + 52.531592, + 13.3887141 + ], + [ + 52.531445, + 13.3889477 + ], + [ + 52.5312901, + 13.3891711 + ], + [ + 52.5310965, + 13.3894308 + ], + [ + 52.5309735, + 13.3895911 + ], + [ + 52.5307214, + 13.3899059 + ], + [ + 52.5304668, + 13.3902063 + ], + [ + 52.5302077, + 13.3904942 + ], + [ + 52.5300695, + 13.3906443 + ], + [ + 52.5298995, + 13.3908322 + ] + ] + }, + { + "osmId": "230976793", + "name": null, + "lengthMeters": 117.61281647078624, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5258842, + 13.3933012 + ], + [ + 52.5257439, + 13.3932257 + ], + [ + 52.5255115, + 13.3930856 + ], + [ + 52.5251817, + 13.3928834 + ], + [ + 52.5251408, + 13.3928587 + ], + [ + 52.5250152, + 13.3927873 + ], + [ + 52.5248865, + 13.3927255 + ] + ] + }, + { + "osmId": "230976794", + "name": null, + "lengthMeters": 532.0748039887621, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5258944, + 13.3934402 + ], + [ + 52.5259575, + 13.3934639 + ], + [ + 52.5260233, + 13.3934837 + ], + [ + 52.5260927, + 13.3935011 + ], + [ + 52.5261655, + 13.3935155 + ], + [ + 52.5262581, + 13.3935212 + ], + [ + 52.526351, + 13.3935211 + ], + [ + 52.5264245, + 13.3935128 + ], + [ + 52.5264978, + 13.3935013 + ], + [ + 52.5266392, + 13.3934618 + ], + [ + 52.5267283, + 13.3934258 + ], + [ + 52.5268173, + 13.3933811 + ], + [ + 52.5273496, + 13.3930439 + ], + [ + 52.5275232, + 13.3929373 + ], + [ + 52.5279458, + 13.3926816 + ], + [ + 52.5280692, + 13.3926053 + ], + [ + 52.5284872, + 13.3923493 + ], + [ + 52.5286062, + 13.3922664 + ], + [ + 52.528706, + 13.392197 + ], + [ + 52.5287978, + 13.3921214 + ], + [ + 52.5288894, + 13.3920376 + ], + [ + 52.5290864, + 13.3918479 + ], + [ + 52.5292617, + 13.3916717 + ], + [ + 52.5295782, + 13.3913651 + ], + [ + 52.5297585, + 13.3911815 + ], + [ + 52.5299614, + 13.3909671 + ], + [ + 52.5301172, + 13.3907979 + ], + [ + 52.5302633, + 13.3906294 + ] + ] + }, + { + "osmId": "230976795", + "name": null, + "lengthMeters": 122.24215875426972, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5248467, + 13.3928929 + ], + [ + 52.5256324, + 13.3933046 + ], + [ + 52.5257194, + 13.3933512 + ], + [ + 52.5258944, + 13.3934402 + ] + ] + }, + { + "osmId": "230976796", + "name": null, + "lengthMeters": 657.2861259451769, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.516378, + 13.3800025 + ], + [ + 52.51636, + 13.3797564 + ], + [ + 52.516339, + 13.3795118 + ], + [ + 52.5163274, + 13.3793943 + ], + [ + 52.5163121, + 13.379274 + ], + [ + 52.5162809, + 13.3790407 + ], + [ + 52.5162621, + 13.3789129 + ], + [ + 52.5162383, + 13.3787898 + ], + [ + 52.516207, + 13.3786601 + ], + [ + 52.5161708, + 13.3785341 + ], + [ + 52.5161187, + 13.3783767 + ], + [ + 52.5160592, + 13.3782234 + ], + [ + 52.5160018, + 13.378101 + ], + [ + 52.5159414, + 13.3779806 + ], + [ + 52.5158846, + 13.3778843 + ], + [ + 52.5158224, + 13.3777885 + ], + [ + 52.515752, + 13.3776925 + ], + [ + 52.5156777, + 13.3775971 + ], + [ + 52.5155953, + 13.3775067 + ], + [ + 52.5155091, + 13.3774323 + ], + [ + 52.5154582, + 13.3773948 + ], + [ + 52.5154027, + 13.3773639 + ], + [ + 52.5152947, + 13.3773309 + ], + [ + 52.5150446, + 13.3772718 + ], + [ + 52.5147374, + 13.3772185 + ], + [ + 52.514548, + 13.3771887 + ], + [ + 52.5126004, + 13.376954 + ], + [ + 52.5115022, + 13.3767961 + ] + ] + }, + { + "osmId": "230977079", + "name": null, + "lengthMeters": 234.923818996503, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5456553, + 13.3800232 + ], + [ + 52.5455909, + 13.3799549 + ], + [ + 52.545533, + 13.3798982 + ], + [ + 52.5454092, + 13.3797819 + ], + [ + 52.545286, + 13.3796648 + ], + [ + 52.54517, + 13.379562 + ], + [ + 52.5451207, + 13.3795206 + ], + [ + 52.545068, + 13.3794792 + ], + [ + 52.5449614, + 13.3793948 + ], + [ + 52.5448623, + 13.3793239 + ], + [ + 52.5447617, + 13.3792576 + ], + [ + 52.5446748, + 13.3792046 + ], + [ + 52.5445825, + 13.3791521 + ], + [ + 52.5442777, + 13.3790012 + ], + [ + 52.5442233, + 13.3789776 + ], + [ + 52.5441292, + 13.3789412 + ], + [ + 52.544061, + 13.3789205 + ], + [ + 52.5440056, + 13.3789048 + ], + [ + 52.5439259, + 13.3788898 + ], + [ + 52.5438723, + 13.378882 + ], + [ + 52.5436905, + 13.3788593 + ] + ] + }, + { + "osmId": "230977080", + "name": null, + "lengthMeters": 332.43304065703677, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5461062, + 13.3806691 + ], + [ + 52.5461103, + 13.3806743 + ], + [ + 52.5463014, + 13.3809176 + ], + [ + 52.5465836, + 13.3812768 + ], + [ + 52.546892, + 13.3816797 + ], + [ + 52.5469793, + 13.3817969 + ], + [ + 52.5470719, + 13.3819262 + ], + [ + 52.5472024, + 13.3821169 + ], + [ + 52.547361, + 13.3823656 + ], + [ + 52.5474885, + 13.3825841 + ], + [ + 52.5475765, + 13.3827465 + ], + [ + 52.5476672, + 13.3829216 + ], + [ + 52.547771, + 13.3831359 + ], + [ + 52.5479711, + 13.3836121 + ], + [ + 52.5481688, + 13.3841635 + ] + ] + }, + { + "osmId": "230977081", + "name": null, + "lengthMeters": 229.10161685327046, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5436921, + 13.3789994 + ], + [ + 52.543837, + 13.3790296 + ], + [ + 52.5439612, + 13.3790637 + ], + [ + 52.5440869, + 13.3791078 + ], + [ + 52.5441521, + 13.3791335 + ], + [ + 52.5442676, + 13.3791798 + ], + [ + 52.5443932, + 13.3792381 + ], + [ + 52.5445176, + 13.3793069 + ], + [ + 52.5447391, + 13.3794354 + ], + [ + 52.5448361, + 13.3795012 + ], + [ + 52.5449519, + 13.3795808 + ], + [ + 52.5450662, + 13.3796623 + ], + [ + 52.5452521, + 13.3798066 + ], + [ + 52.5452892, + 13.3798353 + ], + [ + 52.5453998, + 13.3799274 + ], + [ + 52.5454643, + 13.3799874 + ], + [ + 52.5455456, + 13.3800511 + ], + [ + 52.5456211, + 13.380124 + ] + ] + }, + { + "osmId": "230982678", + "name": null, + "lengthMeters": 183.16243143955006, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5657139, + 13.3912617 + ], + [ + 52.5655415, + 13.3915516 + ], + [ + 52.5653242, + 13.391917 + ], + [ + 52.5650318, + 13.3924087 + ], + [ + 52.5649322, + 13.3925891 + ], + [ + 52.5648549, + 13.3927317 + ], + [ + 52.5648374, + 13.3927639 + ], + [ + 52.5648009, + 13.3928321 + ], + [ + 52.5647816, + 13.3928681 + ], + [ + 52.5645739, + 13.3932171 + ] + ] + }, + { + "osmId": "230982679", + "name": null, + "lengthMeters": 174.5706272770215, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5646967, + 13.3932235 + ], + [ + 52.5647474, + 13.3931436 + ], + [ + 52.5648754, + 13.3929416 + ], + [ + 52.5649364, + 13.3928454 + ], + [ + 52.5651922, + 13.3924418 + ], + [ + 52.5654095, + 13.3920668 + ], + [ + 52.5654332, + 13.3920259 + ], + [ + 52.5656233, + 13.3916828 + ], + [ + 52.5656684, + 13.3916014 + ], + [ + 52.565792, + 13.3913749 + ] + ] + }, + { + "osmId": "231202514", + "name": null, + "lengthMeters": 96.04674153736408, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5707458, + 13.3824724 + ], + [ + 52.570947, + 13.38211 + ], + [ + 52.5713283, + 13.381423 + ] + ] + }, + { + "osmId": "231202515", + "name": null, + "lengthMeters": 525.031273134171, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5706559, + 13.3823334 + ], + [ + 52.5706313, + 13.3823777 + ], + [ + 52.5705353, + 13.3825503 + ], + [ + 52.5694267, + 13.3845454 + ], + [ + 52.5691988, + 13.3849519 + ], + [ + 52.5687316, + 13.3858097 + ], + [ + 52.5679759, + 13.3873517 + ], + [ + 52.5679563, + 13.3873917 + ], + [ + 52.5677089, + 13.3878454 + ], + [ + 52.5675365, + 13.3881616 + ] + ] + }, + { + "osmId": "231204357", + "name": "Kremmener Bahn", + "lengthMeters": 691.2903437602233, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5780197, + 13.3283039 + ], + [ + 52.5779777, + 13.3267437 + ], + [ + 52.5778872, + 13.3237003 + ], + [ + 52.5778021, + 13.3209478 + ], + [ + 52.5777931, + 13.3206583 + ], + [ + 52.5777243, + 13.3184343 + ], + [ + 52.5777135, + 13.3180858 + ] + ] + }, + { + "osmId": "231207713", + "name": null, + "lengthMeters": 86.98531359376096, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6129562, + 13.2460901 + ], + [ + 52.6128855, + 13.246193 + ], + [ + 52.612513, + 13.2467465 + ], + [ + 52.6123751, + 13.2469526 + ] + ] + }, + { + "osmId": "231208911", + "name": null, + "lengthMeters": 118.02423511478285, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6239095, + 13.2303932 + ], + [ + 52.6239445, + 13.2303439 + ], + [ + 52.6241507, + 13.2300573 + ], + [ + 52.6244406, + 13.2296543 + ], + [ + 52.6245336, + 13.2295195 + ], + [ + 52.6247157, + 13.229256 + ] + ] + }, + { + "osmId": "231208912", + "name": null, + "lengthMeters": 162.68098406393307, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6249762, + 13.2289016 + ], + [ + 52.625008, + 13.2288574 + ], + [ + 52.6260943, + 13.2273472 + ] + ] + }, + { + "osmId": "231597552", + "name": null, + "lengthMeters": 845.6783778723925, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6904031, + 9.9855366 + ], + [ + 53.6901513, + 9.9855283 + ], + [ + 53.6896913, + 9.9855478 + ], + [ + 53.6892417, + 9.9855925 + ], + [ + 53.6888913, + 9.9856171 + ], + [ + 53.6867533, + 9.9858172 + ], + [ + 53.685597, + 9.9858506 + ], + [ + 53.6844772, + 9.9859462 + ], + [ + 53.6837846, + 9.9860053 + ], + [ + 53.6834015, + 9.9860805 + ], + [ + 53.6828375, + 9.9861684 + ], + [ + 53.6828099, + 9.9861733 + ] + ] + }, + { + "osmId": "231597559", + "name": null, + "lengthMeters": 384.5011143687656, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6936415, + 9.9873997 + ], + [ + 53.6934051, + 9.987153 + ], + [ + 53.6931527, + 9.9869058 + ], + [ + 53.6929305, + 9.986711 + ], + [ + 53.6928212, + 9.9866251 + ], + [ + 53.6926928, + 9.9865221 + ], + [ + 53.6924943, + 9.9863767 + ], + [ + 53.6922811, + 9.9862358 + ], + [ + 53.6920898, + 9.986121 + ], + [ + 53.6918953, + 9.9860133 + ], + [ + 53.6915768, + 9.9858625 + ], + [ + 53.6914009, + 9.9857914 + ], + [ + 53.6912025, + 9.9857148 + ], + [ + 53.6908352, + 9.9856065 + ], + [ + 53.6905915, + 9.9855605 + ], + [ + 53.6904031, + 9.9855366 + ] + ] + }, + { + "osmId": "231860727", + "name": "Anhalter Bahn", + "lengthMeters": 3874.1908634034735, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3852776, + 13.2984672 + ], + [ + 52.3849873, + 13.2983479 + ], + [ + 52.3837318, + 13.2978279 + ], + [ + 52.3835559, + 13.2977528 + ], + [ + 52.3833573, + 13.2976715 + ], + [ + 52.3828085, + 13.2974452 + ], + [ + 52.382231, + 13.2972101 + ], + [ + 52.3817265, + 13.2970102 + ], + [ + 52.3814465, + 13.2969051 + ], + [ + 52.3811665, + 13.2968029 + ], + [ + 52.3808382, + 13.2966876 + ], + [ + 52.3806719, + 13.2966308 + ], + [ + 52.3799352, + 13.2963846 + ], + [ + 52.3792758, + 13.2961697 + ], + [ + 52.3782293, + 13.2958278 + ], + [ + 52.3781016, + 13.2957839 + ], + [ + 52.3775138, + 13.2955829 + ], + [ + 52.3769433, + 13.2953752 + ], + [ + 52.376315, + 13.2951321 + ], + [ + 52.375687, + 13.2948768 + ], + [ + 52.3744151, + 13.29435 + ], + [ + 52.3725939, + 13.2935962 + ], + [ + 52.3714024, + 13.2931033 + ], + [ + 52.3709032, + 13.292897 + ], + [ + 52.3692644, + 13.2922193 + ], + [ + 52.3690555, + 13.2921334 + ], + [ + 52.3678201, + 13.2916213 + ], + [ + 52.3659809, + 13.2908608 + ], + [ + 52.364186, + 13.2901181 + ], + [ + 52.3624981, + 13.2894199 + ], + [ + 52.3619952, + 13.289212 + ], + [ + 52.3616272, + 13.2890587 + ], + [ + 52.3606517, + 13.2886561 + ], + [ + 52.3588574, + 13.2879149 + ], + [ + 52.357019, + 13.2871583 + ], + [ + 52.3553265, + 13.2864681 + ], + [ + 52.3537047, + 13.28581 + ], + [ + 52.3532248, + 13.2856159 + ], + [ + 52.3519841, + 13.2851106 + ], + [ + 52.3514407, + 13.2848896 + ] + ] + }, + { + "osmId": "231860728", + "name": "Anhalter Bahn", + "lengthMeters": 3873.952173335174, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.351431, + 13.2849557 + ], + [ + 52.3519741, + 13.2851752 + ], + [ + 52.3532151, + 13.2856822 + ], + [ + 52.353694, + 13.2858755 + ], + [ + 52.3551247, + 13.2864566 + ], + [ + 52.3553165, + 13.2865346 + ], + [ + 52.3570089, + 13.2872239 + ], + [ + 52.3588472, + 13.2879804 + ], + [ + 52.360641, + 13.2887211 + ], + [ + 52.3616169, + 13.2891233 + ], + [ + 52.3619875, + 13.2892778 + ], + [ + 52.3624885, + 13.289486 + ], + [ + 52.3640904, + 13.2901483 + ], + [ + 52.3641759, + 13.2901836 + ], + [ + 52.3659709, + 13.2909261 + ], + [ + 52.3664559, + 13.2911217 + ], + [ + 52.3678099, + 13.2916873 + ], + [ + 52.3690459, + 13.2921983 + ], + [ + 52.3708935, + 13.2929636 + ], + [ + 52.3713917, + 13.2931688 + ], + [ + 52.3725835, + 13.2936638 + ], + [ + 52.3744049, + 13.2944173 + ], + [ + 52.3756771, + 13.2949436 + ], + [ + 52.3763044, + 13.2952028 + ], + [ + 52.3769317, + 13.2954553 + ], + [ + 52.3775018, + 13.2956705 + ], + [ + 52.3780898, + 13.2958799 + ], + [ + 52.3792636, + 13.2962737 + ], + [ + 52.3799211, + 13.2964911 + ], + [ + 52.3806558, + 13.2967396 + ], + [ + 52.3811513, + 13.2969153 + ], + [ + 52.3814307, + 13.297019 + ], + [ + 52.3817102, + 13.2971241 + ], + [ + 52.3822317, + 13.2973322 + ], + [ + 52.3827905, + 13.2975624 + ], + [ + 52.3833405, + 13.2977876 + ], + [ + 52.3849687, + 13.2984633 + ], + [ + 52.3850694, + 13.2985047 + ], + [ + 52.3852589, + 13.2985832 + ] + ] + }, + { + "osmId": "231860730", + "name": "Anhalter Bahn", + "lengthMeters": 157.25818054077115, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3903985, + 13.3005902 + ], + [ + 52.3901769, + 13.3004982 + ], + [ + 52.3894054, + 13.3001784 + ], + [ + 52.3890276, + 13.3000208 + ] + ] + }, + { + "osmId": "231860735", + "name": "Anhalter Bahn", + "lengthMeters": 139.909412363188, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3514407, + 13.2848896 + ], + [ + 52.3509862, + 13.2847049 + ], + [ + 52.3503642, + 13.2844523 + ], + [ + 52.3502195, + 13.2843935 + ] + ] + }, + { + "osmId": "231860736", + "name": "Anhalter Bahn", + "lengthMeters": 139.8953510462043, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3502099, + 13.2844598 + ], + [ + 52.3503543, + 13.2845185 + ], + [ + 52.3509765, + 13.2847711 + ], + [ + 52.351431, + 13.2849557 + ] + ] + }, + { + "osmId": "231860737", + "name": "Anhalter Bahn", + "lengthMeters": 987.1138005848943, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.390379, + 13.300705 + ], + [ + 52.3905857, + 13.3007894 + ], + [ + 52.392309, + 13.3015037 + ], + [ + 52.3939278, + 13.3021718 + ], + [ + 52.3946007, + 13.3024533 + ], + [ + 52.3950795, + 13.3026515 + ], + [ + 52.3952022, + 13.3027027 + ], + [ + 52.3956741, + 13.3028994 + ], + [ + 52.3973594, + 13.3036164 + ], + [ + 52.3979516, + 13.3038624 + ], + [ + 52.3989822, + 13.3042921 + ] + ] + }, + { + "osmId": "233855827", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 287.0942603288084, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253278, + 13.5369277 + ], + [ + 52.5257164, + 13.5367864 + ], + [ + 52.5259503, + 13.536702 + ], + [ + 52.5265503, + 13.5364802 + ], + [ + 52.527848, + 13.5360055 + ] + ] + }, + { + "osmId": "233855828", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 150.5567879711918, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5270286, + 13.5362396 + ], + [ + 52.5265685, + 13.5364048 + ], + [ + 52.5265411, + 13.5364148 + ], + [ + 52.5264587, + 13.5364447 + ], + [ + 52.5259421, + 13.536634 + ], + [ + 52.5257064, + 13.536719 + ] + ] + }, + { + "osmId": "233855829", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 4357.635160659324, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443402, + 13.5299542 + ], + [ + 52.5445481, + 13.5298786 + ], + [ + 52.549311, + 13.5281461 + ], + [ + 52.5496836, + 13.5280099 + ], + [ + 52.5511012, + 13.5274916 + ], + [ + 52.5518396, + 13.5272117 + ], + [ + 52.5522252, + 13.5270582 + ], + [ + 52.5526053, + 13.5268886 + ], + [ + 52.552954, + 13.5267215 + ], + [ + 52.5532897, + 13.526549 + ], + [ + 52.553355, + 13.5265112 + ], + [ + 52.5539435, + 13.5261702 + ], + [ + 52.554261, + 13.5259719 + ], + [ + 52.5545731, + 13.5257683 + ], + [ + 52.5548639, + 13.5255651 + ], + [ + 52.5551465, + 13.5253593 + ], + [ + 52.5553676, + 13.5251927 + ], + [ + 52.5556464, + 13.524971 + ], + [ + 52.5558943, + 13.5247658 + ], + [ + 52.5560595, + 13.5246253 + ], + [ + 52.5561357, + 13.5245605 + ], + [ + 52.5564549, + 13.5242744 + ], + [ + 52.5567655, + 13.5239883 + ], + [ + 52.557071, + 13.5236871 + ], + [ + 52.5573743, + 13.5233751 + ], + [ + 52.5577681, + 13.5229465 + ], + [ + 52.5581539, + 13.5225065 + ], + [ + 52.5586009, + 13.5219698 + ], + [ + 52.5590429, + 13.5214073 + ], + [ + 52.5595265, + 13.5207879 + ], + [ + 52.5600084, + 13.5201739 + ], + [ + 52.5604926, + 13.5195545 + ], + [ + 52.56097, + 13.5189432 + ], + [ + 52.5617152, + 13.5179898 + ], + [ + 52.5617792, + 13.5179079 + ], + [ + 52.5633641, + 13.5158804 + ], + [ + 52.5634106, + 13.5158211 + ], + [ + 52.5644455, + 13.5144996 + ], + [ + 52.5651858, + 13.5135515 + ], + [ + 52.5651902, + 13.5135458 + ], + [ + 52.565792, + 13.512761 + ], + [ + 52.566199, + 13.5122482 + ], + [ + 52.5664999, + 13.5118646 + ], + [ + 52.5679815, + 13.5099647 + ], + [ + 52.5679874, + 13.5099572 + ], + [ + 52.5696392, + 13.507839 + ], + [ + 52.5714781, + 13.5054862 + ], + [ + 52.5716963, + 13.5052071 + ], + [ + 52.5727788, + 13.503822 + ], + [ + 52.5731849, + 13.503303 + ], + [ + 52.5745522, + 13.5015554 + ], + [ + 52.5754359, + 13.5004226 + ], + [ + 52.5763185, + 13.4992831 + ], + [ + 52.5764773, + 13.4990836 + ], + [ + 52.576928, + 13.4985172 + ], + [ + 52.5775227, + 13.4977426 + ] + ] + }, + { + "osmId": "233855830", + "name": null, + "lengthMeters": 358.06657298208495, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243986, + 13.537103 + ], + [ + 52.5240733, + 13.5372015 + ], + [ + 52.5238447, + 13.5372803 + ], + [ + 52.5233596, + 13.5374677 + ], + [ + 52.5232874, + 13.5374929 + ], + [ + 52.5230935, + 13.5375604 + ], + [ + 52.5228249, + 13.5376477 + ], + [ + 52.5224813, + 13.5377452 + ], + [ + 52.5221542, + 13.5378288 + ], + [ + 52.5217031, + 13.5379399 + ], + [ + 52.5212309, + 13.5380364 + ] + ] + }, + { + "osmId": "233855842", + "name": null, + "lengthMeters": 323.05047841799063, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289063, + 13.5357028 + ], + [ + 52.5306705, + 13.5350536 + ], + [ + 52.5307692, + 13.5350173 + ], + [ + 52.5311994, + 13.5348613 + ], + [ + 52.5314095, + 13.5347851 + ], + [ + 52.5317429, + 13.5346709 + ] + ] + }, + { + "osmId": "233865121", + "name": null, + "lengthMeters": 609.662502177583, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144439, + 13.5102841 + ], + [ + 52.5144068, + 13.5098423 + ], + [ + 52.5143677, + 13.5094119 + ], + [ + 52.5143021, + 13.5088034 + ], + [ + 52.5142059, + 13.5080296 + ], + [ + 52.5142027, + 13.5080045 + ], + [ + 52.514046, + 13.5067943 + ], + [ + 52.5139904, + 13.506426 + ], + [ + 52.513927, + 13.5060616 + ], + [ + 52.5138472, + 13.5056517 + ], + [ + 52.5137295, + 13.5051576 + ], + [ + 52.5136337, + 13.5047548 + ], + [ + 52.5135641, + 13.5044873 + ], + [ + 52.5135209, + 13.5043257 + ], + [ + 52.513453, + 13.5040802 + ], + [ + 52.5133881, + 13.5038562 + ], + [ + 52.5132398, + 13.5033428 + ], + [ + 52.5130511, + 13.5027537 + ], + [ + 52.5128888, + 13.5022663 + ], + [ + 52.5127208, + 13.5018129 + ] + ] + }, + { + "osmId": "233865125", + "name": null, + "lengthMeters": 92.75161995594836, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5139086, + 13.5298919 + ], + [ + 52.5140347, + 13.5312468 + ] + ] + }, + { + "osmId": "233865126", + "name": null, + "lengthMeters": 79.68254375754874, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140677, + 13.5306358 + ], + [ + 52.5139159, + 13.529485 + ] + ] + }, + { + "osmId": "233865128", + "name": null, + "lengthMeters": 1080.391460609926, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5130785, + 13.5030005 + ], + [ + 52.5131127, + 13.5031078 + ], + [ + 52.5132959, + 13.5037035 + ], + [ + 52.5133907, + 13.5040334 + ], + [ + 52.5134158, + 13.5041324 + ], + [ + 52.513499, + 13.5044275 + ], + [ + 52.5136487, + 13.5050354 + ], + [ + 52.5138063, + 13.5056934 + ], + [ + 52.5139008, + 13.5061766 + ], + [ + 52.5139804, + 13.5066669 + ], + [ + 52.5140574, + 13.5072198 + ], + [ + 52.5140812, + 13.5073978 + ], + [ + 52.5141733, + 13.5081127 + ], + [ + 52.5142961, + 13.5091429 + ], + [ + 52.5143765, + 13.5100081 + ], + [ + 52.5144423, + 13.5109123 + ], + [ + 52.5144609, + 13.5113128 + ], + [ + 52.5144785, + 13.5118539 + ], + [ + 52.5144823, + 13.5124255 + ], + [ + 52.5144785, + 13.5129791 + ], + [ + 52.5144655, + 13.51359 + ], + [ + 52.5144462, + 13.5144564 + ], + [ + 52.5144163, + 13.5157015 + ], + [ + 52.5143886, + 13.517111 + ], + [ + 52.5143874, + 13.5171619 + ], + [ + 52.514386, + 13.5172239 + ], + [ + 52.5143575, + 13.5185929 + ] + ] + }, + { + "osmId": "233865129", + "name": null, + "lengthMeters": 1105.6450621400556, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140707, + 13.525056 + ], + [ + 52.5140438, + 13.5263258 + ], + [ + 52.5140371, + 13.5265773 + ], + [ + 52.514011, + 13.5279045 + ], + [ + 52.5139876, + 13.5290572 + ], + [ + 52.5139504, + 13.530882 + ], + [ + 52.5139346, + 13.5313432 + ], + [ + 52.513913, + 13.5317563 + ], + [ + 52.5138801, + 13.5322463 + ], + [ + 52.5138368, + 13.5326991 + ], + [ + 52.5137692, + 13.5333296 + ], + [ + 52.5137204, + 13.5337702 + ], + [ + 52.513671, + 13.5341672 + ], + [ + 52.5136216, + 13.5344876 + ], + [ + 52.5135772, + 13.5347107 + ], + [ + 52.5135254, + 13.5349358 + ], + [ + 52.513459, + 13.5351824 + ], + [ + 52.5133664, + 13.5354787 + ], + [ + 52.5132889, + 13.5356903 + ], + [ + 52.5131881, + 13.5359351 + ], + [ + 52.5130857, + 13.5361546 + ], + [ + 52.5129648, + 13.5363821 + ], + [ + 52.5129034, + 13.5364891 + ], + [ + 52.5127802, + 13.5366845 + ], + [ + 52.5126446, + 13.536871 + ], + [ + 52.5124941, + 13.5370574 + ], + [ + 52.5123637, + 13.5371992 + ], + [ + 52.5122105, + 13.5373448 + ], + [ + 52.5120518, + 13.5374751 + ], + [ + 52.5119614, + 13.5375416 + ], + [ + 52.5118375, + 13.5376222 + ], + [ + 52.5117102, + 13.5376943 + ], + [ + 52.5115857, + 13.5377547 + ], + [ + 52.5114212, + 13.5378206 + ], + [ + 52.5112359, + 13.5378749 + ], + [ + 52.5110915, + 13.5379067 + ], + [ + 52.5109627, + 13.5379311 + ], + [ + 52.5106849, + 13.5379518 + ], + [ + 52.5103944, + 13.5379501 + ] + ] + }, + { + "osmId": "233865134", + "name": null, + "lengthMeters": 83.64805655247079, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142815, + 13.5178557 + ], + [ + 52.5142803, + 13.5180425 + ], + [ + 52.5142807, + 13.5182128 + ], + [ + 52.5142831, + 13.5183778 + ], + [ + 52.514293, + 13.51869 + ], + [ + 52.514295, + 13.51882 + ], + [ + 52.5142952, + 13.5189534 + ], + [ + 52.5142943, + 13.5190913 + ] + ] + }, + { + "osmId": "233865143", + "name": null, + "lengthMeters": 1836.221397751871, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142121, + 13.5252034 + ], + [ + 52.5141894, + 13.5263275 + ], + [ + 52.514182, + 13.5270939 + ], + [ + 52.5141869, + 13.527636 + ], + [ + 52.5141941, + 13.5281074 + ], + [ + 52.5142086, + 13.5286181 + ], + [ + 52.5142224, + 13.5290171 + ], + [ + 52.5142296, + 13.5291878 + ], + [ + 52.5142522, + 13.5296952 + ], + [ + 52.5142898, + 13.5303107 + ], + [ + 52.5143202, + 13.5307322 + ], + [ + 52.514373, + 13.5311797 + ], + [ + 52.5144397, + 13.5315877 + ], + [ + 52.5145017, + 13.5319425 + ], + [ + 52.5145909, + 13.5323839 + ], + [ + 52.5147652, + 13.5331395 + ], + [ + 52.5149912, + 13.5340579 + ], + [ + 52.5152165, + 13.53496 + ], + [ + 52.5153884, + 13.5355912 + ], + [ + 52.5155472, + 13.5360945 + ], + [ + 52.5157019, + 13.5364884 + ], + [ + 52.5158142, + 13.5367542 + ], + [ + 52.5159134, + 13.5369715 + ], + [ + 52.5160102, + 13.5371656 + ], + [ + 52.5162353, + 13.5375884 + ], + [ + 52.5165288, + 13.5380294 + ], + [ + 52.5168339, + 13.5384231 + ], + [ + 52.5170606, + 13.5386632 + ], + [ + 52.5172585, + 13.5388593 + ], + [ + 52.5175381, + 13.5390959 + ], + [ + 52.517727, + 13.539236 + ], + [ + 52.5179831, + 13.5394026 + ], + [ + 52.5182374, + 13.5395281 + ], + [ + 52.5184347, + 13.539613 + ], + [ + 52.5186621, + 13.5396899 + ], + [ + 52.5188722, + 13.5397398 + ], + [ + 52.5189957, + 13.5397623 + ], + [ + 52.5191372, + 13.539782 + ], + [ + 52.5191759, + 13.5397859 + ], + [ + 52.5192659, + 13.5397956 + ], + [ + 52.5194042, + 13.5398028 + ], + [ + 52.5195844, + 13.5397998 + ], + [ + 52.5198587, + 13.5397721 + ], + [ + 52.5200495, + 13.5397336 + ], + [ + 52.5202341, + 13.5396894 + ], + [ + 52.5204324, + 13.5396176 + ], + [ + 52.5205451, + 13.5395768 + ], + [ + 52.520778, + 13.539474 + ], + [ + 52.521119, + 13.5392836 + ], + [ + 52.5211916, + 13.5392383 + ], + [ + 52.5213664, + 13.5391181 + ], + [ + 52.5216357, + 13.5389334 + ], + [ + 52.5216554, + 13.5389191 + ], + [ + 52.5222969, + 13.5384518 + ], + [ + 52.5226513, + 13.5382155 + ], + [ + 52.5230018, + 13.538003 + ], + [ + 52.523176, + 13.5379121 + ], + [ + 52.5233948, + 13.5377979 + ], + [ + 52.5234796, + 13.5377573 + ], + [ + 52.5236895, + 13.5376551 + ], + [ + 52.524028, + 13.5375004 + ], + [ + 52.5241048, + 13.5374654 + ], + [ + 52.5241242, + 13.5374566 + ], + [ + 52.5241349, + 13.5374517 + ] + ] + }, + { + "osmId": "233865147", + "name": null, + "lengthMeters": 306.23501294249644, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5139159, + 13.529485 + ], + [ + 52.5138802, + 13.5290756 + ], + [ + 52.5138603, + 13.5286636 + ], + [ + 52.5138482, + 13.528309 + ], + [ + 52.5138482, + 13.5279407 + ], + [ + 52.5138589, + 13.5273319 + ], + [ + 52.5138802, + 13.5268482 + ], + [ + 52.5139355, + 13.525906 + ], + [ + 52.5139655, + 13.5254118 + ], + [ + 52.5139802, + 13.5251804 + ], + [ + 52.5139925, + 13.5249762 + ] + ] + }, + { + "osmId": "233949494", + "name": null, + "lengthMeters": 105.50728318961843, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5668684, + 13.5118751 + ], + [ + 52.566925, + 13.5117996 + ], + [ + 52.5670741, + 13.5116016 + ], + [ + 52.5672604, + 13.5113456 + ], + [ + 52.5674419, + 13.5110894 + ], + [ + 52.5675411, + 13.5109509 + ], + [ + 52.567596, + 13.5108733 + ] + ] + }, + { + "osmId": "234743353", + "name": "City-S-Bahn", + "lengthMeters": 458.5967212304973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5468384, + 9.9409072 + ], + [ + 53.5468693, + 9.9411172 + ], + [ + 53.5469143, + 9.941395 + ], + [ + 53.5469681, + 9.9417049 + ], + [ + 53.5469877, + 9.941799 + ], + [ + 53.5470211, + 9.9419449 + ], + [ + 53.5470552, + 9.9420872 + ], + [ + 53.5470859, + 9.9422302 + ], + [ + 53.5471242, + 9.94238 + ], + [ + 53.5471679, + 9.942547 + ], + [ + 53.5472004, + 9.9426543 + ], + [ + 53.5472369, + 9.9427722 + ], + [ + 53.5477884, + 9.944222 + ], + [ + 53.5479816, + 9.9447488 + ], + [ + 53.5480836, + 9.9450282 + ], + [ + 53.5481659, + 9.9452906 + ], + [ + 53.548301, + 9.9457197 + ], + [ + 53.5484212, + 9.9461394 + ], + [ + 53.5484937, + 9.9464217 + ], + [ + 53.5485757, + 9.9467688 + ], + [ + 53.5486402, + 9.9471078 + ] + ] + }, + { + "osmId": "234743809", + "name": null, + "lengthMeters": 1538.6538227356282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5486402, + 9.9471078 + ], + [ + 53.5487652, + 9.9478324 + ], + [ + 53.5488398, + 9.9483148 + ], + [ + 53.548912, + 9.9487634 + ], + [ + 53.5490721, + 9.949759 + ], + [ + 53.5492456, + 9.9508122 + ], + [ + 53.5493194, + 9.9512603 + ], + [ + 53.5494336, + 9.9519269 + ], + [ + 53.5494648, + 9.9521694 + ], + [ + 53.5494825, + 9.9523382 + ], + [ + 53.5495172, + 9.952668 + ], + [ + 53.5495674, + 9.9532661 + ], + [ + 53.5496244, + 9.9541333 + ], + [ + 53.5496439, + 9.9546391 + ], + [ + 53.549651, + 9.9552268 + ], + [ + 53.5496501, + 9.9554611 + ], + [ + 53.5496488, + 9.9558255 + ], + [ + 53.5496429, + 9.9562101 + ], + [ + 53.5496368, + 9.9563834 + ], + [ + 53.5495442, + 9.9579299 + ], + [ + 53.5494698, + 9.9590284 + ], + [ + 53.5494338, + 9.9594223 + ], + [ + 53.5494072, + 9.9596659 + ], + [ + 53.5493878, + 9.9598765 + ], + [ + 53.5493404, + 9.9603216 + ], + [ + 53.5492919, + 9.9606892 + ], + [ + 53.5492283, + 9.9610841 + ], + [ + 53.5491008, + 9.9617496 + ], + [ + 53.5489585, + 9.9623443 + ], + [ + 53.5488102, + 9.9629088 + ], + [ + 53.54872, + 9.9632224 + ], + [ + 53.5486448, + 9.963445 + ], + [ + 53.5485316, + 9.9637987 + ], + [ + 53.5484132, + 9.964104 + ], + [ + 53.5482863, + 9.964416 + ], + [ + 53.5480824, + 9.9648807 + ], + [ + 53.5477508, + 9.9656058 + ], + [ + 53.547683, + 9.9657536 + ], + [ + 53.5475319, + 9.9660833 + ], + [ + 53.5473108, + 9.9665578 + ], + [ + 53.5472145, + 9.966783 + ], + [ + 53.547134, + 9.9669885 + ], + [ + 53.546915, + 9.9675822 + ], + [ + 53.5468297, + 9.9678651 + ], + [ + 53.5466631, + 9.9684173 + ], + [ + 53.5465605, + 9.9688704 + ] + ] + }, + { + "osmId": "235969675", + "name": null, + "lengthMeters": 75.06430505739829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5109221, + 13.4988052 + ], + [ + 52.5110989, + 13.499094 + ], + [ + 52.5112639, + 13.499338 + ], + [ + 52.5114048, + 13.4995799 + ] + ] + }, + { + "osmId": "236051009", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 374.19016792013747, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2152658, + 11.5412501 + ], + [ + 48.2145292, + 11.5412003 + ], + [ + 48.2135945, + 11.5411352 + ], + [ + 48.2131533, + 11.5411052 + ], + [ + 48.2130711, + 11.5410998 + ], + [ + 48.2126535, + 11.5410717 + ], + [ + 48.2125804, + 11.5410683 + ], + [ + 48.2119037, + 11.5410364 + ] + ] + }, + { + "osmId": "236051011", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 236.47373621329263, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2123978, + 11.5412644 + ], + [ + 48.2125746, + 11.5412755 + ], + [ + 48.2126361, + 11.5412784 + ], + [ + 48.2135805, + 11.5413387 + ], + [ + 48.2145224, + 11.5414045 + ] + ] + }, + { + "osmId": "236051012", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 2944.081861877331, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2145224, + 11.5414045 + ], + [ + 48.2152652, + 11.5414453 + ], + [ + 48.2167526, + 11.5415088 + ], + [ + 48.2171201, + 11.5415235 + ], + [ + 48.2189614, + 11.5416074 + ], + [ + 48.2194758, + 11.5416275 + ], + [ + 48.2202693, + 11.5416584 + ], + [ + 48.2203981, + 11.5416651 + ], + [ + 48.2210514, + 11.5416989 + ], + [ + 48.2214373, + 11.5417169 + ], + [ + 48.221602, + 11.5417284 + ], + [ + 48.2216871, + 11.5417346 + ], + [ + 48.2225175, + 11.5417954 + ], + [ + 48.2230724, + 11.5418529 + ], + [ + 48.2238153, + 11.5419538 + ], + [ + 48.2242335, + 11.5420282 + ], + [ + 48.2245233, + 11.5420797 + ], + [ + 48.2250896, + 11.5422045 + ], + [ + 48.2256129, + 11.5423337 + ], + [ + 48.226516, + 11.5426001 + ], + [ + 48.2268563, + 11.5427195 + ], + [ + 48.2273051, + 11.5428769 + ], + [ + 48.2273843, + 11.5429075 + ], + [ + 48.2280867, + 11.5431791 + ], + [ + 48.2285568, + 11.543392 + ], + [ + 48.2292795, + 11.5437207 + ], + [ + 48.2304769, + 11.5442766 + ], + [ + 48.2317876, + 11.5448852 + ], + [ + 48.2331633, + 11.5455239 + ], + [ + 48.2333524, + 11.545612 + ], + [ + 48.2337719, + 11.5458075 + ], + [ + 48.2350594, + 11.5464076 + ], + [ + 48.2370422, + 11.5473318 + ], + [ + 48.2376927, + 11.5476341 + ], + [ + 48.2390276, + 11.5482544 + ], + [ + 48.2403138, + 11.5488521 + ], + [ + 48.2403366, + 11.5488627 + ] + ] + }, + { + "osmId": "236051013", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1533.7919880529237, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2119037, + 11.5410364 + ], + [ + 48.2115968, + 11.5410251 + ], + [ + 48.2112131, + 11.5410085 + ], + [ + 48.2105071, + 11.540978 + ], + [ + 48.2103278, + 11.5409608 + ], + [ + 48.2101031, + 11.5409341 + ], + [ + 48.209868, + 11.5408969 + ], + [ + 48.2097869, + 11.5408841 + ], + [ + 48.209546, + 11.5408296 + ], + [ + 48.2093008, + 11.5407636 + ], + [ + 48.2091351, + 11.5407114 + ], + [ + 48.2089706, + 11.5406517 + ], + [ + 48.2088245, + 11.540594 + ], + [ + 48.20868, + 11.5405343 + ], + [ + 48.2086544, + 11.540523 + ], + [ + 48.2083074, + 11.5403546 + ], + [ + 48.2080239, + 11.5401955 + ], + [ + 48.2077552, + 11.5400254 + ], + [ + 48.2075955, + 11.5399145 + ], + [ + 48.2074712, + 11.5398244 + ], + [ + 48.2072887, + 11.5396813 + ], + [ + 48.2071241, + 11.539546 + ], + [ + 48.2069387, + 11.5393831 + ], + [ + 48.2065215, + 11.5389699 + ], + [ + 48.2063372, + 11.5387708 + ], + [ + 48.2060983, + 11.5384926 + ], + [ + 48.2058207, + 11.5381392 + ], + [ + 48.2057056, + 11.5379802 + ], + [ + 48.2055502, + 11.5377569 + ], + [ + 48.2053969, + 11.5375256 + ], + [ + 48.2052639, + 11.537325 + ], + [ + 48.2050909, + 11.5370643 + ], + [ + 48.2050656, + 11.5370253 + ], + [ + 48.2050259, + 11.5369636 + ], + [ + 48.2048333, + 11.5366649 + ], + [ + 48.2048217, + 11.5366469 + ], + [ + 48.2042416, + 11.5357555 + ], + [ + 48.2033223, + 11.5343427 + ], + [ + 48.2032004, + 11.5341555 + ], + [ + 48.2031262, + 11.5340414 + ], + [ + 48.2019102, + 11.532174 + ], + [ + 48.2007512, + 11.5303851 + ] + ] + }, + { + "osmId": "236523982", + "name": null, + "lengthMeters": 77.94443452359872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232559, + 13.4007814 + ], + [ + 52.5230588, + 13.4003364 + ], + [ + 52.5230345, + 13.4002912 + ], + [ + 52.5230077, + 13.4002522 + ], + [ + 52.5229808, + 13.4002207 + ], + [ + 52.5229579, + 13.4001994 + ], + [ + 52.5229378, + 13.4001849 + ], + [ + 52.5229172, + 13.4001746 + ], + [ + 52.522897, + 13.4001694 + ], + [ + 52.5228803, + 13.4001663 + ], + [ + 52.5228487, + 13.400165 + ], + [ + 52.5228186, + 13.4001653 + ], + [ + 52.522801, + 13.4001657 + ], + [ + 52.5227666, + 13.4001678 + ], + [ + 52.5227269, + 13.4001715 + ] + ] + }, + { + "osmId": "237149162", + "name": null, + "lengthMeters": 318.7066473717096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6743641, + 13.5887509 + ], + [ + 52.6746398, + 13.5895746 + ], + [ + 52.6749335, + 13.5904509 + ], + [ + 52.6749932, + 13.5906199 + ], + [ + 52.6750027, + 13.5906469 + ], + [ + 52.6750794, + 13.5908507 + ], + [ + 52.6752322, + 13.5912365 + ], + [ + 52.6753838, + 13.5915834 + ], + [ + 52.67559, + 13.5920149 + ], + [ + 52.6758223, + 13.5924516 + ], + [ + 52.6758263, + 13.592459 + ], + [ + 52.6759421, + 13.5926767 + ] + ] + }, + { + "osmId": "237149164", + "name": "Stettiner Bahn", + "lengthMeters": 288.4378476860084, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6760367, + 13.5930104 + ], + [ + 52.6759548, + 13.5928564 + ], + [ + 52.6759284, + 13.5928068 + ], + [ + 52.6758612, + 13.5926804 + ], + [ + 52.6756777, + 13.5923171 + ], + [ + 52.6755601, + 13.5920757 + ], + [ + 52.6754959, + 13.5919441 + ], + [ + 52.6754345, + 13.5918129 + ], + [ + 52.6753261, + 13.5915743 + ], + [ + 52.6750609, + 13.5909571 + ], + [ + 52.6749935, + 13.5907921 + ], + [ + 52.6749012, + 13.5905594 + ], + [ + 52.6748673, + 13.5904711 + ], + [ + 52.6748097, + 13.5903211 + ], + [ + 52.6746666, + 13.5899443 + ], + [ + 52.6746285, + 13.5898365 + ], + [ + 52.6746251, + 13.5898267 + ], + [ + 52.6745948, + 13.5897412 + ], + [ + 52.674572, + 13.5896735 + ], + [ + 52.6745275, + 13.5895413 + ] + ] + }, + { + "osmId": "237149165", + "name": "Stettiner Bahn", + "lengthMeters": 201.15628879830092, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6745881, + 13.5900787 + ], + [ + 52.6745902, + 13.5900853 + ], + [ + 52.6746985, + 13.5904216 + ], + [ + 52.6748399, + 13.5908331 + ], + [ + 52.6749332, + 13.591109 + ], + [ + 52.6749971, + 13.5912782 + ], + [ + 52.675069, + 13.5914606 + ], + [ + 52.6751179, + 13.5915777 + ], + [ + 52.6752015, + 13.5917751 + ], + [ + 52.6752342, + 13.5918452 + ], + [ + 52.6753208, + 13.5920308 + ], + [ + 52.6753869, + 13.592164 + ], + [ + 52.6754282, + 13.5922423 + ], + [ + 52.6754322, + 13.5922499 + ], + [ + 52.675457, + 13.5922969 + ], + [ + 52.6755952, + 13.5925433 + ] + ] + }, + { + "osmId": "237729330", + "name": null, + "lengthMeters": 1094.4322872767843, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4982749, + 13.3727333 + ], + [ + 52.4984426, + 13.3727095 + ], + [ + 52.4991718, + 13.3726058 + ], + [ + 52.4997541, + 13.3725872 + ], + [ + 52.5000336, + 13.3726029 + ], + [ + 52.5003142, + 13.372636 + ], + [ + 52.5006499, + 13.3726983 + ], + [ + 52.500994, + 13.3727875 + ], + [ + 52.5019003, + 13.373124 + ], + [ + 52.5028015, + 13.3735108 + ], + [ + 52.5033903, + 13.3737576 + ], + [ + 52.5039785, + 13.374017 + ], + [ + 52.5052253, + 13.3746937 + ], + [ + 52.5058407, + 13.3750434 + ], + [ + 52.506463, + 13.3753735 + ], + [ + 52.5070997, + 13.3756313 + ], + [ + 52.5074183, + 13.3757236 + ], + [ + 52.5077342, + 13.3757974 + ], + [ + 52.5078523, + 13.3758185 + ] + ] + }, + { + "osmId": "237729331", + "name": null, + "lengthMeters": 1094.6818216507663, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078585, + 13.3756447 + ], + [ + 52.5077513, + 13.3756132 + ], + [ + 52.5074384, + 13.3755138 + ], + [ + 52.5071251, + 13.3753953 + ], + [ + 52.5065098, + 13.3751095 + ], + [ + 52.5058911, + 13.3747565 + ], + [ + 52.5052697, + 13.3744036 + ], + [ + 52.5040292, + 13.373756 + ], + [ + 52.5034355, + 13.3735122 + ], + [ + 52.5028359, + 13.3732962 + ], + [ + 52.5026095, + 13.3732142 + ], + [ + 52.5015887, + 13.3728491 + ], + [ + 52.5010032, + 13.3726617 + ], + [ + 52.5006586, + 13.3725789 + ], + [ + 52.5003178, + 13.3725169 + ], + [ + 52.4999867, + 13.3724847 + ], + [ + 52.4996548, + 13.3724704 + ], + [ + 52.499169, + 13.3724909 + ], + [ + 52.4985556, + 13.3725782 + ], + [ + 52.4982699, + 13.3726189 + ] + ] + }, + { + "osmId": "237729332", + "name": null, + "lengthMeters": 1099.4926974671157, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5079111, + 13.375421 + ], + [ + 52.5077768, + 13.3753808 + ], + [ + 52.5074656, + 13.3752778 + ], + [ + 52.5071541, + 13.3751584 + ], + [ + 52.50654, + 13.3748626 + ], + [ + 52.5059458, + 13.3745049 + ], + [ + 52.505314, + 13.3741134 + ], + [ + 52.5040654, + 13.3734668 + ], + [ + 52.5034702, + 13.3732515 + ], + [ + 52.5028717, + 13.3730788 + ], + [ + 52.5019095, + 13.3728203 + ], + [ + 52.5016072, + 13.3727368 + ], + [ + 52.5013228, + 13.3726624 + ], + [ + 52.5010148, + 13.3725856 + ], + [ + 52.5006644, + 13.3725142 + ], + [ + 52.500317, + 13.372456 + ], + [ + 52.5000291, + 13.3724165 + ], + [ + 52.4997397, + 13.372386 + ], + [ + 52.4991657, + 13.3723799 + ], + [ + 52.4982648, + 13.3724946 + ] + ] + }, + { + "osmId": "237729333", + "name": null, + "lengthMeters": 832.7585644337464, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100485, + 13.3761903 + ], + [ + 52.510091, + 13.3761931 + ], + [ + 52.5101542, + 13.3761963 + ], + [ + 52.5104967, + 13.3762131 + ], + [ + 52.5109582, + 13.3762387 + ], + [ + 52.5113787, + 13.3762553 + ], + [ + 52.5117961, + 13.376253 + ], + [ + 52.5122159, + 13.3762235 + ], + [ + 52.5126137, + 13.3761637 + ], + [ + 52.5130068, + 13.376078 + ], + [ + 52.5134071, + 13.3759984 + ], + [ + 52.5137119, + 13.3759288 + ], + [ + 52.5140303, + 13.3758135 + ], + [ + 52.5144063, + 13.3756697 + ], + [ + 52.5148775, + 13.375423 + ], + [ + 52.5154525, + 13.375121 + ], + [ + 52.5159517, + 13.3748563 + ], + [ + 52.5173536, + 13.3740818 + ] + ] + }, + { + "osmId": "237729334", + "name": null, + "lengthMeters": 245.33710264047627, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078439, + 13.376054 + ], + [ + 52.5083526, + 13.3761064 + ], + [ + 52.5093147, + 13.3761562 + ], + [ + 52.5100485, + 13.3761903 + ] + ] + }, + { + "osmId": "237729335", + "name": null, + "lengthMeters": 238.26368839069278, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100467, + 13.3756495 + ], + [ + 52.5097965, + 13.3756475 + ], + [ + 52.5093176, + 13.3756363 + ], + [ + 52.5086781, + 13.3755768 + ], + [ + 52.5083731, + 13.3755272 + ], + [ + 52.5082247, + 13.3755002 + ], + [ + 52.5079111, + 13.375421 + ] + ] + }, + { + "osmId": "237729336", + "name": null, + "lengthMeters": 244.24496968462984, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078523, + 13.3758185 + ], + [ + 52.5083558, + 13.3758829 + ], + [ + 52.5093119, + 13.3759409 + ], + [ + 52.5100464, + 13.3759738 + ] + ] + }, + { + "osmId": "237729337", + "name": null, + "lengthMeters": 244.0559041071768, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100469, + 13.3758708 + ], + [ + 52.5093095, + 13.3758485 + ], + [ + 52.5090878, + 13.3758367 + ], + [ + 52.5086692, + 13.3757969 + ], + [ + 52.508364, + 13.3757537 + ], + [ + 52.5081139, + 13.3757051 + ], + [ + 52.5078585, + 13.3756447 + ] + ] + }, + { + "osmId": "237751546", + "name": null, + "lengthMeters": 655.1455100917188, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5090365, + 13.3764323 + ], + [ + 52.5089425, + 13.3764693 + ], + [ + 52.5088511, + 13.3765134 + ], + [ + 52.5088017, + 13.3765428 + ], + [ + 52.5087423, + 13.3765809 + ], + [ + 52.5086991, + 13.376613 + ], + [ + 52.508644, + 13.3766619 + ], + [ + 52.5085652, + 13.3767378 + ], + [ + 52.5084914, + 13.376818 + ], + [ + 52.5083994, + 13.3769379 + ], + [ + 52.5082825, + 13.3771353 + ], + [ + 52.5081811, + 13.3773445 + ], + [ + 52.5079779, + 13.377771 + ], + [ + 52.5078606, + 13.3779565 + ], + [ + 52.5073979, + 13.3785222 + ], + [ + 52.5069363, + 13.3790836 + ], + [ + 52.5054493, + 13.3811208 + ], + [ + 52.505219, + 13.3814059 + ], + [ + 52.5051779, + 13.3814476 + ], + [ + 52.505135, + 13.3814793 + ], + [ + 52.5049848, + 13.3815602 + ], + [ + 52.504886, + 13.3816071 + ], + [ + 52.5047904, + 13.3816514 + ], + [ + 52.5046795, + 13.381684 + ], + [ + 52.5045954, + 13.3816998 + ], + [ + 52.5044895, + 13.3817089 + ], + [ + 52.504386, + 13.3817063 + ], + [ + 52.504271, + 13.3816901 + ] + ] + }, + { + "osmId": "237751547", + "name": null, + "lengthMeters": 177.61859350498594, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.510623, + 13.3765749 + ], + [ + 52.510468, + 13.3765287 + ], + [ + 52.5103903, + 13.3764967 + ], + [ + 52.5100479, + 13.3764208 + ], + [ + 52.5099262, + 13.3763978 + ], + [ + 52.5097998, + 13.3763836 + ], + [ + 52.5097067, + 13.3763761 + ], + [ + 52.5094881, + 13.3763785 + ], + [ + 52.5094264, + 13.3763783 + ], + [ + 52.5093737, + 13.3763829 + ], + [ + 52.5092642, + 13.3763912 + ], + [ + 52.5090911, + 13.376419 + ], + [ + 52.5090365, + 13.3764323 + ] + ] + }, + { + "osmId": "237751548", + "name": null, + "lengthMeters": 129.07585297468452, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.509234, + 13.3769169 + ], + [ + 52.5094897, + 13.3769055 + ], + [ + 52.5098435, + 13.3769097 + ], + [ + 52.5100161, + 13.3769082 + ], + [ + 52.5103942, + 13.3769402 + ] + ] + }, + { + "osmId": "237751551", + "name": null, + "lengthMeters": 426.066580143035, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165203, + 13.3834653 + ], + [ + 52.516562, + 13.383704 + ], + [ + 52.5165997, + 13.3839306 + ], + [ + 52.5166299, + 13.384099 + ], + [ + 52.5166996, + 13.384394 + ], + [ + 52.5167773, + 13.3846163 + ], + [ + 52.5168522, + 13.384784 + ], + [ + 52.5169414, + 13.3849458 + ], + [ + 52.5170746, + 13.385124 + ], + [ + 52.5172144, + 13.3852809 + ], + [ + 52.517338, + 13.3853965 + ], + [ + 52.5174662, + 13.3854966 + ], + [ + 52.5175507, + 13.3855446 + ], + [ + 52.517638, + 13.3855813 + ], + [ + 52.5177176, + 13.3856016 + ], + [ + 52.517799, + 13.3856162 + ], + [ + 52.517916, + 13.3856234 + ], + [ + 52.518025, + 13.3856183 + ], + [ + 52.5181767, + 13.3855981 + ], + [ + 52.5185781, + 13.3855285 + ], + [ + 52.5187764, + 13.385487 + ], + [ + 52.518876, + 13.3854602 + ], + [ + 52.5189738, + 13.3854388 + ], + [ + 52.5190821, + 13.3854296 + ], + [ + 52.5191367, + 13.385429 + ], + [ + 52.5191904, + 13.3854334 + ], + [ + 52.5192825, + 13.3854476 + ], + [ + 52.5193862, + 13.3854747 + ], + [ + 52.5194487, + 13.3855012 + ], + [ + 52.5195418, + 13.3855473 + ], + [ + 52.5196337, + 13.3856036 + ] + ] + }, + { + "osmId": "237805587", + "name": null, + "lengthMeters": 870.5617863056133, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.176595, + 11.4080177 + ], + [ + 48.1769498, + 11.407361 + ], + [ + 48.1778183, + 11.4057791 + ], + [ + 48.1779429, + 11.4055487 + ], + [ + 48.1791308, + 11.4033384 + ], + [ + 48.1792328, + 11.4031513 + ], + [ + 48.1800383, + 11.4016774 + ], + [ + 48.1813828, + 11.3992006 + ], + [ + 48.1815392, + 11.398914 + ] + ] + }, + { + "osmId": "237805588", + "name": null, + "lengthMeters": 1388.5759894890182, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1712286, + 11.4177108 + ], + [ + 48.1708571, + 11.418394 + ], + [ + 48.1705357, + 11.4189827 + ], + [ + 48.1696209, + 11.4206574 + ], + [ + 48.1687812, + 11.4222086 + ], + [ + 48.1675095, + 11.4245391 + ], + [ + 48.166282, + 11.4267815 + ], + [ + 48.1654758, + 11.4282565 + ], + [ + 48.1652871, + 11.4286036 + ], + [ + 48.1652725, + 11.4286303 + ], + [ + 48.1641939, + 11.4306005 + ], + [ + 48.1633159, + 11.4321958 + ] + ] + }, + { + "osmId": "237920556", + "name": null, + "lengthMeters": 77.59403425757984, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4224378, + 13.1816451 + ], + [ + 52.4222386, + 13.1812724 + ], + [ + 52.4219707, + 13.1807951 + ] + ] + }, + { + "osmId": "237947334", + "name": null, + "lengthMeters": 83.3139654640638, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5490244, + 13.3882627 + ], + [ + 52.5490662, + 13.3886215 + ], + [ + 52.5490971, + 13.388957 + ], + [ + 52.5491222, + 13.3892067 + ], + [ + 52.5491296, + 13.38928 + ], + [ + 52.5491413, + 13.3894792 + ] + ] + }, + { + "osmId": "237947343", + "name": null, + "lengthMeters": 76.97748553088473, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489225, + 13.3882928 + ], + [ + 52.5489663, + 13.3890511 + ], + [ + 52.548987, + 13.3894263 + ] + ] + }, + { + "osmId": "237983549", + "name": null, + "lengthMeters": 218.09563085918936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.607593, + 13.4261187 + ], + [ + 52.6076699, + 13.4265202 + ], + [ + 52.6076972, + 13.4266625 + ], + [ + 52.6078585, + 13.427515 + ], + [ + 52.6080072, + 13.4282553 + ], + [ + 52.6080292, + 13.4283552 + ], + [ + 52.6082144, + 13.4291814 + ] + ] + }, + { + "osmId": "238192690", + "name": "Anhalter Vorortbahn", + "lengthMeters": 89.96177467576757, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5040448, + 13.3818978 + ], + [ + 52.5041427, + 13.3819217 + ], + [ + 52.5041605, + 13.381926 + ], + [ + 52.5043018, + 13.3819362 + ], + [ + 52.5044911, + 13.381909 + ], + [ + 52.5046468, + 13.3818502 + ], + [ + 52.504838, + 13.3817491 + ] + ] + }, + { + "osmId": "238192691", + "name": "Anhalter Vorortbahn", + "lengthMeters": 139.29447830843134, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026857, + 13.3806167 + ], + [ + 52.5020999, + 13.3802272 + ], + [ + 52.5015071, + 13.3799247 + ] + ] + }, + { + "osmId": "238192692", + "name": "Anhalter Vorortbahn", + "lengthMeters": 154.6311663028777, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027475, + 13.381104 + ], + [ + 52.5030954, + 13.3813929 + ], + [ + 52.5033776, + 13.3815853 + ], + [ + 52.5037016, + 13.3817681 + ], + [ + 52.5038554, + 13.3818425 + ], + [ + 52.5040448, + 13.3818978 + ] + ] + }, + { + "osmId": "238192693", + "name": null, + "lengthMeters": 238.98115405691777, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5028394, + 13.3809146 + ], + [ + 52.5024998, + 13.3805891 + ], + [ + 52.5015071, + 13.3799247 + ], + [ + 52.5008701, + 13.3795149 + ] + ] + }, + { + "osmId": "238192694", + "name": null, + "lengthMeters": 171.0117203981347, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5028202, + 13.3809689 + ], + [ + 52.5028484, + 13.3809857 + ], + [ + 52.5034217, + 13.3813987 + ], + [ + 52.5037627, + 13.3815899 + ], + [ + 52.5038834, + 13.3816476 + ], + [ + 52.5041783, + 13.3817326 + ], + [ + 52.5042729, + 13.3817641 + ] + ] + }, + { + "osmId": "238192696", + "name": null, + "lengthMeters": 168.58386588797973, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.504271, + 13.3816901 + ], + [ + 52.5041841, + 13.3816684 + ], + [ + 52.5038865, + 13.3815895 + ], + [ + 52.5037696, + 13.3815356 + ], + [ + 52.5034307, + 13.3813522 + ], + [ + 52.5028609, + 13.380931 + ], + [ + 52.5028394, + 13.3809146 + ] + ] + }, + { + "osmId": "238452718", + "name": null, + "lengthMeters": 557.3723120511676, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4903958, + 13.3719534 + ], + [ + 52.4902672, + 13.3719507 + ], + [ + 52.4899645, + 13.3719488 + ], + [ + 52.4895774, + 13.3719529 + ], + [ + 52.4891128, + 13.3719252 + ], + [ + 52.4888246, + 13.3719008 + ], + [ + 52.4885865, + 13.3718671 + ], + [ + 52.4884163, + 13.3718225 + ], + [ + 52.4882281, + 13.3717621 + ], + [ + 52.4878588, + 13.3716399 + ], + [ + 52.4873186, + 13.3714584 + ], + [ + 52.4872764, + 13.3714438 + ], + [ + 52.486935, + 13.3713308 + ], + [ + 52.4866401, + 13.3712204 + ], + [ + 52.4863905, + 13.3710892 + ], + [ + 52.4861364, + 13.3709519 + ], + [ + 52.4857691, + 13.3707478 + ], + [ + 52.4854914, + 13.3705934 + ], + [ + 52.4854866, + 13.3705907 + ] + ] + }, + { + "osmId": "238452719", + "name": null, + "lengthMeters": 208.5585557940411, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4903908, + 13.3720817 + ], + [ + 52.4905601, + 13.3720914 + ], + [ + 52.4907247, + 13.3721034 + ], + [ + 52.4909079, + 13.3721163 + ], + [ + 52.491033, + 13.3721268 + ], + [ + 52.491351, + 13.3721534 + ], + [ + 52.4920179, + 13.3722093 + ], + [ + 52.4920449, + 13.3722112 + ], + [ + 52.4920642, + 13.3722124 + ], + [ + 52.4922642, + 13.3722303 + ] + ] + }, + { + "osmId": "238563876", + "name": null, + "lengthMeters": 192.89646696568542, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4630197, + 13.3319838 + ], + [ + 52.4639038, + 13.333098 + ], + [ + 52.4641525, + 13.3334022 + ], + [ + 52.4644006, + 13.3337071 + ] + ] + }, + { + "osmId": "238563877", + "name": "Wannseebahn", + "lengthMeters": 692.9119719667902, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4630676, + 13.3318785 + ], + [ + 52.4626823, + 13.331448 + ], + [ + 52.462309, + 13.3310084 + ], + [ + 52.4620982, + 13.3307528 + ], + [ + 52.4604079, + 13.3286535 + ], + [ + 52.4599087, + 13.3280341 + ], + [ + 52.458892, + 13.326779 + ], + [ + 52.4580706, + 13.3257697 + ] + ] + }, + { + "osmId": "238563878", + "name": null, + "lengthMeters": 125.06078886370678, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4644908, + 13.3336142 + ], + [ + 52.464223, + 13.3332483 + ], + [ + 52.4637508, + 13.33267 + ], + [ + 52.463599, + 13.3324905 + ] + ] + }, + { + "osmId": "238563879", + "name": null, + "lengthMeters": 713.94831411396, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4644006, + 13.3337071 + ], + [ + 52.4656024, + 13.3351976 + ], + [ + 52.4670929, + 13.3370509 + ], + [ + 52.4681238, + 13.3383359 + ], + [ + 52.4692205, + 13.3397219 + ], + [ + 52.46951, + 13.3400895 + ] + ] + }, + { + "osmId": "238568512", + "name": null, + "lengthMeters": 366.24264163238786, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4475641, + 13.3058541 + ], + [ + 52.4469259, + 13.3042536 + ], + [ + 52.4467871, + 13.3038874 + ], + [ + 52.4458528, + 13.3012389 + ] + ] + }, + { + "osmId": "238568513", + "name": null, + "lengthMeters": 196.04746447966616, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4474766, + 13.3059716 + ], + [ + 52.4480928, + 13.3077239 + ], + [ + 52.4483588, + 13.3084762 + ] + ] + }, + { + "osmId": "238568514", + "name": null, + "lengthMeters": 199.9461702399663, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4484697, + 13.3084027 + ], + [ + 52.4482903, + 13.3078804 + ], + [ + 52.447952, + 13.3069148 + ], + [ + 52.447771, + 13.3064125 + ], + [ + 52.4475641, + 13.3058541 + ] + ] + }, + { + "osmId": "238568515", + "name": "Wannseebahn", + "lengthMeters": 534.0589467308946, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4483588, + 13.3084762 + ], + [ + 52.4489221, + 13.3100959 + ], + [ + 52.4492633, + 13.3110445 + ], + [ + 52.4495395, + 13.3118374 + ], + [ + 52.4499155, + 13.3128836 + ], + [ + 52.4499498, + 13.3129789 + ], + [ + 52.4501781, + 13.3135949 + ], + [ + 52.4503302, + 13.3139848 + ], + [ + 52.4505436, + 13.3145236 + ], + [ + 52.4506929, + 13.3148747 + ], + [ + 52.4508422, + 13.3152173 + ] + ] + }, + { + "osmId": "238749568", + "name": null, + "lengthMeters": 627.4581403954396, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4300933, + 13.2544346 + ], + [ + 52.4300576, + 13.2542294 + ], + [ + 52.4299789, + 13.2536967 + ], + [ + 52.4299038, + 13.2529677 + ], + [ + 52.4298696, + 13.252289 + ], + [ + 52.429862, + 13.2516489 + ], + [ + 52.4298788, + 13.2510938 + ], + [ + 52.4299302, + 13.2504184 + ], + [ + 52.4300108, + 13.2497864 + ], + [ + 52.4301052, + 13.2492766 + ], + [ + 52.430213, + 13.2487901 + ], + [ + 52.4302878, + 13.248528 + ], + [ + 52.4304486, + 13.2479652 + ], + [ + 52.4307423, + 13.2471842 + ], + [ + 52.4313316, + 13.2458203 + ] + ] + }, + { + "osmId": "238749571", + "name": null, + "lengthMeters": 185.9467050279502, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.430452, + 13.2565259 + ], + [ + 52.4305969, + 13.2570686 + ], + [ + 52.4308007, + 13.2578545 + ], + [ + 52.4309873, + 13.2585668 + ], + [ + 52.4310765, + 13.2588956 + ], + [ + 52.4311155, + 13.2590434 + ] + ] + }, + { + "osmId": "239064526", + "name": null, + "lengthMeters": 520.8858261972948, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4362578, + 13.2342232 + ], + [ + 52.4360878, + 13.2346202 + ], + [ + 52.4348511, + 13.2375347 + ], + [ + 52.4335773, + 13.2405246 + ] + ] + }, + { + "osmId": "239064527", + "name": null, + "lengthMeters": 166.89310181137904, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4363387, + 13.2343379 + ], + [ + 52.436378, + 13.2342528 + ], + [ + 52.4365682, + 13.233823 + ], + [ + 52.4367152, + 13.233481 + ], + [ + 52.4368079, + 13.2332646 + ], + [ + 52.4370166, + 13.2327749 + ], + [ + 52.4371566, + 13.232436 + ], + [ + 52.4372051, + 13.2323278 + ] + ] + }, + { + "osmId": "239800002", + "name": null, + "lengthMeters": 1311.575225000318, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4377612, + 13.7230708 + ], + [ + 52.4376253, + 13.7232437 + ], + [ + 52.4371648, + 13.7238976 + ], + [ + 52.4367085, + 13.7246155 + ], + [ + 52.4364293, + 13.7251014 + ], + [ + 52.436152, + 13.7256159 + ], + [ + 52.4356573, + 13.7266416 + ], + [ + 52.4353548, + 13.7273419 + ], + [ + 52.4350736, + 13.7280692 + ], + [ + 52.4347939, + 13.7288587 + ], + [ + 52.4347663, + 13.7289474 + ], + [ + 52.4345349, + 13.7296898 + ], + [ + 52.4343197, + 13.7304559 + ], + [ + 52.4341223, + 13.7312671 + ], + [ + 52.4340005, + 13.7318316 + ], + [ + 52.433847, + 13.7326035 + ], + [ + 52.4337294, + 13.7333111 + ], + [ + 52.4336231, + 13.7340597 + ], + [ + 52.4335249, + 13.7348346 + ], + [ + 52.4334298, + 13.7356372 + ], + [ + 52.4333749, + 13.7361665 + ], + [ + 52.4331772, + 13.7380713 + ], + [ + 52.4329462, + 13.7401293 + ] + ] + }, + { + "osmId": "239800008", + "name": null, + "lengthMeters": 2465.3990211848295, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4390886, + 13.7218365 + ], + [ + 52.4390977, + 13.7218263 + ], + [ + 52.4391395, + 13.7217796 + ], + [ + 52.4393124, + 13.7215864 + ], + [ + 52.4395517, + 13.7213446 + ], + [ + 52.4400743, + 13.7208122 + ], + [ + 52.4406276, + 13.7203496 + ], + [ + 52.4411513, + 13.7199765 + ], + [ + 52.4416837, + 13.7196337 + ], + [ + 52.4421997, + 13.7193037 + ], + [ + 52.4426937, + 13.7189179 + ], + [ + 52.4429489, + 13.7187226 + ], + [ + 52.4431984, + 13.7185092 + ], + [ + 52.4432711, + 13.7184449 + ], + [ + 52.4436832, + 13.7180805 + ], + [ + 52.4440108, + 13.7177624 + ], + [ + 52.4443313, + 13.7174258 + ], + [ + 52.4446468, + 13.7170784 + ], + [ + 52.4449512, + 13.7167148 + ], + [ + 52.4453572, + 13.7162147 + ], + [ + 52.4457565, + 13.7156731 + ], + [ + 52.4461206, + 13.7151419 + ], + [ + 52.4464671, + 13.7145933 + ], + [ + 52.4466985, + 13.7142152 + ], + [ + 52.4469256, + 13.7138129 + ], + [ + 52.4472298, + 13.7132455 + ], + [ + 52.447523, + 13.7126646 + ], + [ + 52.4478086, + 13.7120654 + ], + [ + 52.4480784, + 13.7114533 + ], + [ + 52.4483595, + 13.7107511 + ], + [ + 52.4485524, + 13.7102415 + ], + [ + 52.4487401, + 13.7097224 + ], + [ + 52.4489519, + 13.7090786 + ], + [ + 52.4490322, + 13.7088346 + ], + [ + 52.4492906, + 13.7079355 + ], + [ + 52.4494588, + 13.7073044 + ], + [ + 52.4496182, + 13.7066446 + ], + [ + 52.4497836, + 13.7058987 + ], + [ + 52.4499797, + 13.7048547 + ], + [ + 52.4501496, + 13.703779 + ], + [ + 52.4502353, + 13.7031403 + ], + [ + 52.4503092, + 13.7025041 + ], + [ + 52.4504423, + 13.7012045 + ], + [ + 52.4506477, + 13.6991755 + ], + [ + 52.450649, + 13.6991622 + ], + [ + 52.4509175, + 13.6965096 + ], + [ + 52.4511235, + 13.6944991 + ], + [ + 52.4511435, + 13.6942981 + ] + ] + }, + { + "osmId": "239800012", + "name": null, + "lengthMeters": 170.08554487227624, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4390186, + 13.7216445 + ], + [ + 52.4384265, + 13.7222691 + ], + [ + 52.4383995, + 13.7222976 + ], + [ + 52.4381462, + 13.7225979 + ], + [ + 52.4379951, + 13.722777 + ], + [ + 52.4378699, + 13.7229342 + ], + [ + 52.4377676, + 13.7230627 + ], + [ + 52.4377612, + 13.7230708 + ] + ] + }, + { + "osmId": "240326443", + "name": null, + "lengthMeters": 104.87502972785742, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0181238, + 11.5842807 + ], + [ + 48.0178413, + 11.5843985 + ], + [ + 48.017571, + 11.5844989 + ], + [ + 48.0172128, + 11.5846454 + ] + ] + }, + { + "osmId": "240326444", + "name": null, + "lengthMeters": 420.6569721234361, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0171942, + 11.5847664 + ], + [ + 48.0177172, + 11.5845699 + ], + [ + 48.0179543, + 11.5844775 + ], + [ + 48.0180317, + 11.5844474 + ], + [ + 48.01949, + 11.58376 + ], + [ + 48.0199974, + 11.5835234 + ], + [ + 48.02038, + 11.5833352 + ], + [ + 48.0205827, + 11.583235 + ], + [ + 48.020615, + 11.5832168 + ], + [ + 48.0206848, + 11.5831774 + ], + [ + 48.0208091, + 11.5831074 + ] + ] + }, + { + "osmId": "240326445", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 261.6112896025244, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0172128, + 11.5846454 + ], + [ + 48.0179227, + 11.5843131 + ], + [ + 48.0179728, + 11.5842896 + ], + [ + 48.0194561, + 11.5835852 + ] + ] + }, + { + "osmId": "240326447", + "name": null, + "lengthMeters": 425.486978943671, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0217723, + 11.5825562 + ], + [ + 48.0207556, + 11.5830364 + ], + [ + 48.0206638, + 11.5830797 + ], + [ + 48.0205903, + 11.5831143 + ], + [ + 48.0199725, + 11.5834056 + ], + [ + 48.0194705, + 11.5836458 + ], + [ + 48.0181637, + 11.5842619 + ], + [ + 48.0181238, + 11.5842807 + ] + ] + }, + { + "osmId": "240444744", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 404.5680703147452, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0194337, + 11.5834681 + ], + [ + 48.0179152, + 11.5841966 + ], + [ + 48.0175282, + 11.5843909 + ], + [ + 48.0174028, + 11.5844538 + ], + [ + 48.0166935, + 11.5848055 + ], + [ + 48.0164695, + 11.5849202 + ], + [ + 48.0160246, + 11.5851472 + ], + [ + 48.0159783, + 11.5851708 + ] + ] + }, + { + "osmId": "240444801", + "name": null, + "lengthMeters": 130.4362870922617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0160589, + 11.5852065 + ], + [ + 48.0163904, + 11.5850631 + ], + [ + 48.0169111, + 11.5848692 + ], + [ + 48.0171942, + 11.5847664 + ] + ] + }, + { + "osmId": "240444802", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 637.6513516054366, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0159783, + 11.5851708 + ], + [ + 48.0158719, + 11.5852217 + ], + [ + 48.0157742, + 11.5852711 + ], + [ + 48.0153177, + 11.5855102 + ], + [ + 48.0149193, + 11.5857081 + ], + [ + 48.0147366, + 11.5858069 + ], + [ + 48.0141547, + 11.5861216 + ], + [ + 48.0139928, + 11.5862136 + ], + [ + 48.013699, + 11.5863863 + ], + [ + 48.013469, + 11.5865372 + ], + [ + 48.0132743, + 11.5866724 + ], + [ + 48.0129169, + 11.5869207 + ], + [ + 48.0123076, + 11.587407 + ], + [ + 48.0119666, + 11.5877068 + ], + [ + 48.0118963, + 11.5877686 + ], + [ + 48.0117347, + 11.5879238 + ], + [ + 48.011567, + 11.588085 + ], + [ + 48.0111921, + 11.5884834 + ], + [ + 48.0108374, + 11.5888595 + ] + ] + }, + { + "osmId": "240526029", + "name": null, + "lengthMeters": 431.86945353630307, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5270912, + 13.3679464 + ], + [ + 52.5262901, + 13.3685079 + ], + [ + 52.5259949, + 13.3687146 + ], + [ + 52.5248295, + 13.3695311 + ], + [ + 52.5235181, + 13.3704486 + ] + ] + }, + { + "osmId": "240526030", + "name": null, + "lengthMeters": 435.1579249781203, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5236258, + 13.3709584 + ], + [ + 52.523828, + 13.3708505 + ], + [ + 52.5239798, + 13.3707613 + ], + [ + 52.5242835, + 13.3705712 + ], + [ + 52.5244861, + 13.3704317 + ], + [ + 52.5249157, + 13.3701329 + ], + [ + 52.5255303, + 13.3697039 + ], + [ + 52.5261436, + 13.3692707 + ], + [ + 52.5266897, + 13.3688878 + ], + [ + 52.5269604, + 13.3686823 + ], + [ + 52.5272306, + 13.3684628 + ] + ] + }, + { + "osmId": "240526031", + "name": null, + "lengthMeters": 296.1668792173125, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5235181, + 13.3704486 + ], + [ + 52.5226008, + 13.371071 + ], + [ + 52.5222597, + 13.3713256 + ], + [ + 52.5218974, + 13.3715522 + ], + [ + 52.5210357, + 13.3720269 + ] + ] + }, + { + "osmId": "240526032", + "name": null, + "lengthMeters": 264.1025683256612, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5272306, + 13.3684628 + ], + [ + 52.527381, + 13.3683304 + ], + [ + 52.5276076, + 13.3681227 + ], + [ + 52.5278889, + 13.3678447 + ], + [ + 52.5281671, + 13.3675537 + ], + [ + 52.5283099, + 13.3673915 + ], + [ + 52.5284482, + 13.3672262 + ], + [ + 52.5287798, + 13.3668087 + ], + [ + 52.5289524, + 13.3665922 + ], + [ + 52.5291065, + 13.3664069 + ], + [ + 52.5292027, + 13.3662981 + ] + ] + }, + { + "osmId": "240526035", + "name": null, + "lengthMeters": 233.59790661567848, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5271134, + 13.3680262 + ], + [ + 52.5273934, + 13.3678274 + ], + [ + 52.5278535, + 13.3674843 + ], + [ + 52.5281279, + 13.367258 + ], + [ + 52.5283979, + 13.3670163 + ], + [ + 52.5286881, + 13.366739 + ], + [ + 52.5289756, + 13.3664393 + ] + ] + }, + { + "osmId": "240636455", + "name": null, + "lengthMeters": 1449.9634345569498, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347787, + 11.5214823 + ], + [ + 48.134803, + 11.520552 + ], + [ + 48.1348294, + 11.5200625 + ], + [ + 48.1348661, + 11.5193823 + ], + [ + 48.1349783, + 11.517304 + ], + [ + 48.1350435, + 11.5157825 + ], + [ + 48.1350648, + 11.5151911 + ], + [ + 48.1350758, + 11.5135102 + ], + [ + 48.1351413, + 11.511777 + ], + [ + 48.1351801, + 11.5108602 + ], + [ + 48.1352187, + 11.5099329 + ], + [ + 48.1352616, + 11.5086236 + ], + [ + 48.135376, + 11.5062392 + ], + [ + 48.1353918, + 11.5055416 + ], + [ + 48.1354095, + 11.5036982 + ], + [ + 48.1354185, + 11.5034784 + ], + [ + 48.1354911, + 11.5029105 + ], + [ + 48.1354946, + 11.5028309 + ], + [ + 48.1354995, + 11.5027214 + ], + [ + 48.1355221, + 11.5019854 + ] + ] + }, + { + "osmId": "240639380", + "name": null, + "lengthMeters": 955.4729497429576, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1084675, + 11.4557808 + ], + [ + 48.1084027, + 11.456696 + ], + [ + 48.1082721, + 11.4582028 + ], + [ + 48.1082361, + 11.4586588 + ], + [ + 48.1082113, + 11.4591659 + ], + [ + 48.1081941, + 11.4597372 + ], + [ + 48.1081536, + 11.4612335 + ], + [ + 48.1081441, + 11.4615462 + ], + [ + 48.1081379, + 11.4618684 + ], + [ + 48.1081377, + 11.4621161 + ], + [ + 48.1081403, + 11.4626053 + ], + [ + 48.1081503, + 11.4631378 + ], + [ + 48.1081527, + 11.4639895 + ], + [ + 48.1081537, + 11.4646755 + ], + [ + 48.1081465, + 11.4662205 + ], + [ + 48.1081653, + 11.4668199 + ], + [ + 48.1081913, + 11.4674677 + ], + [ + 48.1082393, + 11.4683185 + ], + [ + 48.1082573, + 11.4686186 + ] + ] + }, + { + "osmId": "241155301", + "name": "Stettiner Bahn", + "lengthMeters": 288.03727549462525, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5536773, + 13.398624 + ], + [ + 52.5523806, + 13.3989564 + ], + [ + 52.5520929, + 13.399009 + ], + [ + 52.5518021, + 13.3990265 + ], + [ + 52.5515908, + 13.3990127 + ], + [ + 52.5513834, + 13.3989744 + ], + [ + 52.5512385, + 13.3989263 + ], + [ + 52.5511115, + 13.3988841 + ] + ] + }, + { + "osmId": "241166776", + "name": "Stettiner Bahn", + "lengthMeters": 491.4629349994291, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.561954, + 13.4031789 + ], + [ + 52.5612698, + 13.401988 + ], + [ + 52.5612026, + 13.4018705 + ], + [ + 52.5609041, + 13.4013488 + ], + [ + 52.5603019, + 13.400306 + ], + [ + 52.5601487, + 13.4000438 + ], + [ + 52.5599724, + 13.399782 + ], + [ + 52.5598132, + 13.3995565 + ], + [ + 52.5596387, + 13.3993346 + ], + [ + 52.5594118, + 13.3990775 + ], + [ + 52.5592096, + 13.3988702 + ], + [ + 52.5591959, + 13.3988576 + ], + [ + 52.5590562, + 13.3987403 + ], + [ + 52.5589596, + 13.3986593 + ], + [ + 52.5587506, + 13.3985 + ], + [ + 52.5586565, + 13.3984379 + ] + ] + }, + { + "osmId": "241166779", + "name": "Stettiner Bahn", + "lengthMeters": 351.5920651610526, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5643213, + 13.4072556 + ], + [ + 52.5640348, + 13.4067706 + ], + [ + 52.563676, + 13.4061516 + ], + [ + 52.5625654, + 13.4042396 + ], + [ + 52.5621411, + 13.4034993 + ], + [ + 52.5621378, + 13.4034935 + ] + ] + }, + { + "osmId": "241452814", + "name": "Berliner Ringbahn", + "lengthMeters": 174.58131376129882, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485016, + 13.3894409 + ], + [ + 52.5485066, + 13.3896134 + ], + [ + 52.548558, + 13.3905834 + ], + [ + 52.5485718, + 13.3908432 + ], + [ + 52.5485826, + 13.3910473 + ], + [ + 52.5485898, + 13.3911873 + ], + [ + 52.5486327, + 13.3920137 + ] + ] + }, + { + "osmId": "241452816", + "name": "Stettiner Bahn", + "lengthMeters": 147.8401334087667, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5484634, + 13.3924127 + ], + [ + 52.548477, + 13.3926354 + ], + [ + 52.548484, + 13.3928007 + ], + [ + 52.5484893, + 13.3929232 + ], + [ + 52.5485083, + 13.3933663 + ], + [ + 52.5485585, + 13.3941686 + ], + [ + 52.5485933, + 13.3945881 + ] + ] + }, + { + "osmId": "241452818", + "name": null, + "lengthMeters": 188.3348362428341, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485992, + 13.3923956 + ], + [ + 52.5486218, + 13.3927964 + ], + [ + 52.5486287, + 13.3929014 + ], + [ + 52.5486751, + 13.3935781 + ], + [ + 52.5487376, + 13.3943125 + ], + [ + 52.5487764, + 13.3947166 + ], + [ + 52.5488258, + 13.3951547 + ] + ] + }, + { + "osmId": "241574702", + "name": null, + "lengthMeters": 419.76517633376216, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5088389, + 13.3716012 + ], + [ + 52.5089779, + 13.372053 + ], + [ + 52.5089893, + 13.3721055 + ], + [ + 52.5090996, + 13.3726118 + ], + [ + 52.5091569, + 13.3731168 + ], + [ + 52.5091659, + 13.3734489 + ], + [ + 52.5091625, + 13.3741164 + ], + [ + 52.509183, + 13.374846 + ], + [ + 52.5092102, + 13.3752642 + ], + [ + 52.5093214, + 13.3769771 + ], + [ + 52.509368, + 13.3776885 + ] + ] + }, + { + "osmId": "241574703", + "name": null, + "lengthMeters": 420.0776767707881, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5094037, + 13.3776822 + ], + [ + 52.509246, + 13.3752579 + ], + [ + 52.5092191, + 13.3748453 + ], + [ + 52.5091975, + 13.3740976 + ], + [ + 52.5091998, + 13.3734491 + ], + [ + 52.5091926, + 13.3731104 + ], + [ + 52.5091291, + 13.3726067 + ], + [ + 52.5090089, + 13.3720409 + ], + [ + 52.5088791, + 13.3715838 + ] + ] + }, + { + "osmId": "241807057", + "name": null, + "lengthMeters": 1111.0426556851462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1487927, + 11.4611871 + ], + [ + 48.1488493, + 11.4609898 + ], + [ + 48.1488554, + 11.460965 + ], + [ + 48.1488598, + 11.4609463 + ], + [ + 48.1488633, + 11.4609293 + ], + [ + 48.1488655, + 11.460913 + ], + [ + 48.1488671, + 11.4608985 + ], + [ + 48.1488677, + 11.4608816 + ], + [ + 48.1488675, + 11.4608633 + ], + [ + 48.1488666, + 11.4608462 + ], + [ + 48.1488649, + 11.4608273 + ], + [ + 48.1488631, + 11.4608114 + ], + [ + 48.1488606, + 11.4607969 + ], + [ + 48.1488577, + 11.4607826 + ], + [ + 48.1488532, + 11.4607672 + ], + [ + 48.1488486, + 11.4607532 + ], + [ + 48.148843, + 11.4607381 + ], + [ + 48.1488291, + 11.4607087 + ], + [ + 48.1488179, + 11.4606926 + ], + [ + 48.1488034, + 11.4606747 + ], + [ + 48.1487913, + 11.4606632 + ], + [ + 48.1487828, + 11.4606569 + ], + [ + 48.1487769, + 11.4606529 + ], + [ + 48.1487581, + 11.4606376 + ], + [ + 48.1487324, + 11.4606226 + ], + [ + 48.1486981, + 11.4606032 + ], + [ + 48.1486821, + 11.4605941 + ], + [ + 48.148408, + 11.4604505 + ], + [ + 48.1482829, + 11.4603841 + ], + [ + 48.1480795, + 11.4602799 + ], + [ + 48.148013, + 11.4602458 + ], + [ + 48.1479528, + 11.4602185 + ], + [ + 48.147784, + 11.460142 + ], + [ + 48.1474528, + 11.4599878 + ], + [ + 48.1472135, + 11.4598787 + ], + [ + 48.1469736, + 11.4597714 + ], + [ + 48.1469466, + 11.45976 + ], + [ + 48.1469038, + 11.4597427 + ], + [ + 48.146871, + 11.4597342 + ], + [ + 48.1468484, + 11.4597327 + ], + [ + 48.1468254, + 11.4597353 + ], + [ + 48.1468161, + 11.4597387 + ], + [ + 48.1468012, + 11.4597443 + ], + [ + 48.1467834, + 11.4597535 + ], + [ + 48.1467688, + 11.459764 + ], + [ + 48.1467651, + 11.4597667 + ], + [ + 48.1467583, + 11.4597737 + ], + [ + 48.1467471, + 11.4597853 + ], + [ + 48.1467301, + 11.4598066 + ], + [ + 48.1467168, + 11.4598273 + ], + [ + 48.1467059, + 11.4598502 + ], + [ + 48.1466993, + 11.459864 + ], + [ + 48.1466901, + 11.4598908 + ], + [ + 48.1466774, + 11.4599391 + ], + [ + 48.1466704, + 11.4599788 + ], + [ + 48.1466644, + 11.4600166 + ], + [ + 48.1466604, + 11.4600461 + ], + [ + 48.1466525, + 11.4601122 + ], + [ + 48.146645, + 11.4601783 + ], + [ + 48.1466351, + 11.4602838 + ], + [ + 48.1466257, + 11.4604131 + ], + [ + 48.1466248, + 11.4604362 + ], + [ + 48.1466173, + 11.4605804 + ], + [ + 48.1466129, + 11.4606971 + ], + [ + 48.1466124, + 11.4607677 + ], + [ + 48.1466117, + 11.4608337 + ], + [ + 48.1466124, + 11.460895 + ], + [ + 48.1466144, + 11.4610098 + ], + [ + 48.146616, + 11.4611871 + ], + [ + 48.1466165, + 11.4612468 + ], + [ + 48.1466189, + 11.4613447 + ], + [ + 48.1466215, + 11.4615646 + ], + [ + 48.1466168, + 11.4617294 + ], + [ + 48.1466116, + 11.4618691 + ], + [ + 48.1466029, + 11.4620082 + ], + [ + 48.1465914, + 11.4621495 + ], + [ + 48.1465797, + 11.4622916 + ], + [ + 48.1465681, + 11.4624299 + ], + [ + 48.1465497, + 11.4626491 + ], + [ + 48.1465449, + 11.4627303 + ], + [ + 48.1465405, + 11.462843 + ], + [ + 48.1465354, + 11.4629478 + ], + [ + 48.1465292, + 11.4630412 + ], + [ + 48.1465247, + 11.4631103 + ], + [ + 48.1465065, + 11.4632862 + ], + [ + 48.1464907, + 11.4634281 + ], + [ + 48.1464724, + 11.4635513 + ], + [ + 48.1462195, + 11.4650591 + ], + [ + 48.1462157, + 11.4650843 + ], + [ + 48.1462076, + 11.4651382 + ], + [ + 48.1461899, + 11.4652545 + ], + [ + 48.1461591, + 11.4654786 + ], + [ + 48.1460856, + 11.4659512 + ], + [ + 48.1460245, + 11.4663253 + ], + [ + 48.1455368, + 11.4693523 + ], + [ + 48.1455099, + 11.4696089 + ], + [ + 48.1454863, + 11.4699131 + ], + [ + 48.1454649, + 11.4705033 + ], + [ + 48.1454577, + 11.4707194 + ] + ] + }, + { + "osmId": "241927826", + "name": null, + "lengthMeters": 1742.6761824649686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4974371, + 10.1323194 + ], + [ + 53.4965707, + 10.1340967 + ], + [ + 53.4959132, + 10.1355075 + ], + [ + 53.495415, + 10.1366332 + ], + [ + 53.4946829, + 10.1383394 + ], + [ + 53.4941746, + 10.1396249 + ], + [ + 53.4940283, + 10.1400383 + ], + [ + 53.4937069, + 10.1409466 + ], + [ + 53.4934118, + 10.1418579 + ], + [ + 53.4928854, + 10.1437155 + ], + [ + 53.492412, + 10.1456089 + ], + [ + 53.4919813, + 10.1474663 + ], + [ + 53.4916927, + 10.1488097 + ], + [ + 53.4914613, + 10.1500041 + ], + [ + 53.4914382, + 10.1501231 + ], + [ + 53.4912021, + 10.1515515 + ], + [ + 53.4908577, + 10.1540574 + ], + [ + 53.490662, + 10.1556835 + ] + ] + }, + { + "osmId": "242364960", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 2551.9786310805885, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0347592, + 11.3566884 + ], + [ + 48.0355643, + 11.3569914 + ], + [ + 48.0368536, + 11.3573957 + ], + [ + 48.0381298, + 11.3577852 + ], + [ + 48.0421089, + 11.3589782 + ], + [ + 48.0429116, + 11.3592237 + ], + [ + 48.0437156, + 11.3594668 + ], + [ + 48.0444761, + 11.3596957 + ], + [ + 48.0448527, + 11.3598124 + ], + [ + 48.045243, + 11.3599302 + ], + [ + 48.0455821, + 11.3600337 + ], + [ + 48.0459208, + 11.3601451 + ], + [ + 48.0478331, + 11.3608433 + ], + [ + 48.0506348, + 11.3618759 + ], + [ + 48.0545004, + 11.3633066 + ], + [ + 48.0564574, + 11.3640325 + ], + [ + 48.0568325, + 11.3641616 + ], + [ + 48.0571361, + 11.3642816 + ] + ] + }, + { + "osmId": "242451430", + "name": null, + "lengthMeters": 1086.3506327817017, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.376168, + 13.0856721 + ], + [ + 52.3761646, + 13.0858841 + ], + [ + 52.3761465, + 13.0868333 + ], + [ + 52.3761203, + 13.0872892 + ], + [ + 52.3760854, + 13.0875886 + ], + [ + 52.3760393, + 13.087886 + ], + [ + 52.3759687, + 13.0882045 + ], + [ + 52.3757751, + 13.0889303 + ], + [ + 52.3755387, + 13.0897839 + ], + [ + 52.3752058, + 13.090978 + ], + [ + 52.3751859, + 13.0910572 + ], + [ + 52.3751486, + 13.0911988 + ], + [ + 52.3749267, + 13.0919953 + ], + [ + 52.3749203, + 13.0920185 + ], + [ + 52.3743772, + 13.0939808 + ], + [ + 52.3742099, + 13.094603 + ], + [ + 52.374108, + 13.0950127 + ], + [ + 52.3740142, + 13.0954328 + ], + [ + 52.3739247, + 13.0958675 + ], + [ + 52.3738254, + 13.0964212 + ], + [ + 52.373782, + 13.0966894 + ], + [ + 52.3737329, + 13.0970151 + ], + [ + 52.3736792, + 13.0974326 + ], + [ + 52.3736488, + 13.0976952 + ], + [ + 52.3736323, + 13.0978477 + ], + [ + 52.3735472, + 13.0987164 + ], + [ + 52.3734641, + 13.0996125 + ], + [ + 52.3734568, + 13.0996934 + ], + [ + 52.37335, + 13.1008404 + ] + ] + }, + { + "osmId": "242488296", + "name": null, + "lengthMeters": 844.7047454866715, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1277873, + 11.4306966 + ], + [ + 48.1276097, + 11.4305883 + ], + [ + 48.1273824, + 11.4304497 + ], + [ + 48.1267664, + 11.4300723 + ], + [ + 48.1215679, + 11.4268954 + ], + [ + 48.1207541, + 11.4263956 + ] + ] + }, + { + "osmId": "242488297", + "name": null, + "lengthMeters": 844.3118163984304, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1277961, + 11.4306465 + ], + [ + 48.1273953, + 11.4304035 + ], + [ + 48.1267809, + 11.4300266 + ], + [ + 48.1215835, + 11.4268421 + ], + [ + 48.1207674, + 11.426343 + ] + ] + }, + { + "osmId": "242488306", + "name": null, + "lengthMeters": 239.54672457184168, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1273286, + 11.4302897 + ], + [ + 48.1282564, + 11.4308549 + ], + [ + 48.1292177, + 11.4314449 + ], + [ + 48.1293232, + 11.4315092 + ] + ] + }, + { + "osmId": "242488308", + "name": null, + "lengthMeters": 756.8191881756246, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1271033, + 11.4300479 + ], + [ + 48.1270688, + 11.4300295 + ], + [ + 48.1268263, + 11.429899 + ], + [ + 48.1262295, + 11.4295554 + ], + [ + 48.1256423, + 11.4291959 + ], + [ + 48.1244668, + 11.4284781 + ], + [ + 48.1230429, + 11.4276082 + ], + [ + 48.1216174, + 11.4267364 + ], + [ + 48.1212867, + 11.4265288 + ], + [ + 48.1210363, + 11.4263635 + ], + [ + 48.1208014, + 11.4261994 + ] + ] + }, + { + "osmId": "242584317", + "name": null, + "lengthMeters": 103.30041659932358, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3595282, + 13.0979707 + ], + [ + 52.3597358, + 13.0978019 + ], + [ + 52.3602912, + 13.0973738 + ], + [ + 52.3603647, + 13.0973094 + ] + ] + }, + { + "osmId": "242584318", + "name": null, + "lengthMeters": 489.62552315497425, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3754657, + 13.1295908 + ], + [ + 52.3754751, + 13.1306735 + ], + [ + 52.3754796, + 13.1311805 + ], + [ + 52.3754834, + 13.1314371 + ], + [ + 52.3754852, + 13.1317814 + ], + [ + 52.3755109, + 13.1345185 + ], + [ + 52.3755342, + 13.1367233 + ], + [ + 52.375535, + 13.1368027 + ] + ] + }, + { + "osmId": "242584320", + "name": null, + "lengthMeters": 221.94528580660563, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3634788, + 13.1370808 + ], + [ + 52.3635145, + 13.1370793 + ], + [ + 52.3635379, + 13.1370759 + ], + [ + 52.3635741, + 13.1370663 + ], + [ + 52.3635962, + 13.1370588 + ], + [ + 52.3636089, + 13.1370523 + ], + [ + 52.3636305, + 13.1370422 + ], + [ + 52.3636527, + 13.1370297 + ], + [ + 52.3636996, + 13.1369951 + ], + [ + 52.363744, + 13.1369523 + ], + [ + 52.3637695, + 13.1369209 + ], + [ + 52.3637852, + 13.1369018 + ], + [ + 52.3638227, + 13.1368441 + ], + [ + 52.3640206, + 13.1365084 + ], + [ + 52.3643766, + 13.1359042 + ], + [ + 52.3643969, + 13.1358697 + ], + [ + 52.3644513, + 13.1357772 + ], + [ + 52.3647505, + 13.135269 + ], + [ + 52.3648071, + 13.1351771 + ], + [ + 52.3648298, + 13.135141 + ], + [ + 52.3648551, + 13.1351015 + ], + [ + 52.3649017, + 13.1350379 + ], + [ + 52.3649225, + 13.1350109 + ], + [ + 52.3649565, + 13.134969 + ] + ] + }, + { + "osmId": "242584321", + "name": null, + "lengthMeters": 802.533601821884, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3667976, + 13.1360975 + ], + [ + 52.3668689, + 13.1362088 + ], + [ + 52.3672437, + 13.1368006 + ], + [ + 52.3673187, + 13.1369191 + ], + [ + 52.3676023, + 13.137367 + ], + [ + 52.3679699, + 13.137947 + ], + [ + 52.3685663, + 13.1388879 + ], + [ + 52.3685872, + 13.1389207 + ], + [ + 52.3689663, + 13.1395199 + ], + [ + 52.3689938, + 13.1395629 + ], + [ + 52.3692386, + 13.1399499 + ], + [ + 52.369403, + 13.1402087 + ], + [ + 52.3694135, + 13.140225 + ], + [ + 52.3694858, + 13.1403368 + ], + [ + 52.3695699, + 13.1404603 + ], + [ + 52.3695847, + 13.1404809 + ], + [ + 52.3696201, + 13.14053 + ], + [ + 52.36965, + 13.1405698 + ], + [ + 52.3696773, + 13.1406064 + ], + [ + 52.3697217, + 13.1406638 + ], + [ + 52.3698237, + 13.1407885 + ], + [ + 52.3699324, + 13.1409119 + ], + [ + 52.3699945, + 13.1409787 + ], + [ + 52.370058, + 13.1410432 + ], + [ + 52.3701743, + 13.1411549 + ], + [ + 52.3702421, + 13.1412146 + ], + [ + 52.3702802, + 13.1412474 + ], + [ + 52.3703728, + 13.1413225 + ], + [ + 52.3704852, + 13.1414028 + ], + [ + 52.3705669, + 13.1414565 + ], + [ + 52.3707993, + 13.1415942 + ], + [ + 52.3708261, + 13.1416101 + ], + [ + 52.3708744, + 13.1416364 + ], + [ + 52.3709287, + 13.1416662 + ], + [ + 52.3710884, + 13.1417485 + ], + [ + 52.3711592, + 13.1417833 + ], + [ + 52.3712351, + 13.1418177 + ], + [ + 52.3713196, + 13.1418536 + ], + [ + 52.3713967, + 13.1418822 + ], + [ + 52.371476, + 13.1419085 + ], + [ + 52.3716103, + 13.1419433 + ], + [ + 52.3716763, + 13.1419569 + ], + [ + 52.3717603, + 13.14197 + ], + [ + 52.3718178, + 13.1419775 + ], + [ + 52.3718686, + 13.1419816 + ], + [ + 52.3719112, + 13.1419849 + ], + [ + 52.3719504, + 13.1419867 + ], + [ + 52.371982, + 13.1419878 + ], + [ + 52.3721024, + 13.141987 + ], + [ + 52.3722246, + 13.1419842 + ], + [ + 52.3726153, + 13.1419754 + ], + [ + 52.3726579, + 13.1419749 + ], + [ + 52.3727209, + 13.1419742 + ] + ] + }, + { + "osmId": "242584322", + "name": null, + "lengthMeters": 123.70436163676983, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3636105, + 13.1370048 + ], + [ + 52.3635621, + 13.1370241 + ], + [ + 52.3635409, + 13.1370298 + ], + [ + 52.3634828, + 13.1370369 + ], + [ + 52.3625001, + 13.1370725 + ] + ] + }, + { + "osmId": "242584323", + "name": null, + "lengthMeters": 242.98817975935322, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3649565, + 13.134969 + ], + [ + 52.3649949, + 13.1349295 + ], + [ + 52.3650361, + 13.1348893 + ], + [ + 52.3650682, + 13.1348591 + ], + [ + 52.3651253, + 13.1348145 + ], + [ + 52.3651795, + 13.1347798 + ], + [ + 52.365245, + 13.1347456 + ], + [ + 52.3652949, + 13.1347234 + ], + [ + 52.365334, + 13.1347107 + ], + [ + 52.3653869, + 13.1346971 + ], + [ + 52.3654421, + 13.1346871 + ], + [ + 52.3654829, + 13.1346843 + ], + [ + 52.3655417, + 13.1346858 + ], + [ + 52.365578, + 13.1346876 + ], + [ + 52.3656115, + 13.1346926 + ], + [ + 52.3656599, + 13.1347037 + ], + [ + 52.3656884, + 13.1347108 + ], + [ + 52.3657422, + 13.1347303 + ], + [ + 52.3657858, + 13.1347495 + ], + [ + 52.365813, + 13.1347643 + ], + [ + 52.3658654, + 13.1347938 + ], + [ + 52.3659159, + 13.1348312 + ], + [ + 52.3659481, + 13.1348586 + ], + [ + 52.3659997, + 13.1349048 + ], + [ + 52.3660474, + 13.1349544 + ], + [ + 52.3661019, + 13.1350198 + ], + [ + 52.3661479, + 13.1350808 + ], + [ + 52.3662539, + 13.135239 + ], + [ + 52.3667173, + 13.1359705 + ], + [ + 52.3667184, + 13.1359723 + ], + [ + 52.3667976, + 13.1360975 + ] + ] + }, + { + "osmId": "243054847", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 831.8339302448259, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.404812, + 9.9756932 + ], + [ + 53.4052907, + 9.9761985 + ], + [ + 53.4054611, + 9.9763783 + ], + [ + 53.4060387, + 9.9769855 + ], + [ + 53.4061328, + 9.977108 + ], + [ + 53.4063687, + 9.9773946 + ], + [ + 53.4066698, + 9.9778143 + ], + [ + 53.4069945, + 9.978336 + ], + [ + 53.4073611, + 9.9790254 + ], + [ + 53.4078096, + 9.979944 + ], + [ + 53.4080575, + 9.9805832 + ], + [ + 53.4082044, + 9.9809914 + ], + [ + 53.408365, + 9.9815189 + ], + [ + 53.408528, + 9.9821272 + ], + [ + 53.4086749, + 9.9827703 + ], + [ + 53.4087864, + 9.9833279 + ], + [ + 53.4087965, + 9.9833786 + ], + [ + 53.4088391, + 9.983671 + ], + [ + 53.4089388, + 9.9844028 + ], + [ + 53.4090307, + 9.9854194 + ] + ] + }, + { + "osmId": "243054850", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 373.10442672932845, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.403626, + 9.9743437 + ], + [ + 53.4031178, + 9.9738446 + ], + [ + 53.4029602, + 9.9736985 + ], + [ + 53.402479, + 9.9732416 + ], + [ + 53.4012927, + 9.9721526 + ], + [ + 53.4006987, + 9.9715935 + ] + ] + }, + { + "osmId": "243206511", + "name": null, + "lengthMeters": 3003.781193393625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0970313, + 11.5792754 + ], + [ + 48.0976371, + 11.5806768 + ], + [ + 48.0977703, + 11.5809457 + ], + [ + 48.0979093, + 11.5811588 + ], + [ + 48.0980256, + 11.5812975 + ], + [ + 48.0981629, + 11.5814244 + ], + [ + 48.098325, + 11.5815377 + ], + [ + 48.0984752, + 11.581624 + ], + [ + 48.0986413, + 11.5816866 + ], + [ + 48.0988124, + 11.5817187 + ], + [ + 48.1000627, + 11.5818608 + ], + [ + 48.1031279, + 11.5822092 + ], + [ + 48.1032849, + 11.5821974 + ], + [ + 48.1034182, + 11.5821686 + ], + [ + 48.1035571, + 11.5820959 + ], + [ + 48.1039722, + 11.581854 + ], + [ + 48.1041399, + 11.5817525 + ], + [ + 48.104289, + 11.5816392 + ], + [ + 48.1044572, + 11.5814736 + ], + [ + 48.1051327, + 11.5808087 + ], + [ + 48.105266, + 11.5806633 + ], + [ + 48.1053711, + 11.5805212 + ], + [ + 48.1055247, + 11.5802962 + ], + [ + 48.1056495, + 11.5801389 + ], + [ + 48.1066168, + 11.5790294 + ], + [ + 48.1067846, + 11.5788162 + ], + [ + 48.1069353, + 11.5785761 + ], + [ + 48.1070776, + 11.5783122 + ], + [ + 48.1072358, + 11.5779705 + ], + [ + 48.1074761, + 11.5774669 + ], + [ + 48.1079899, + 11.5763899 + ], + [ + 48.1082628, + 11.5757778 + ], + [ + 48.1086171, + 11.574983 + ], + [ + 48.1088058, + 11.5745144 + ], + [ + 48.1092801, + 11.5733727 + ], + [ + 48.1095047, + 11.5728726 + ], + [ + 48.1096144, + 11.572664 + ], + [ + 48.1097803, + 11.5724261 + ], + [ + 48.109935, + 11.5722434 + ], + [ + 48.110091, + 11.5720872 + ], + [ + 48.1102841, + 11.5719011 + ], + [ + 48.1105991, + 11.5716819 + ], + [ + 48.1108159, + 11.5715432 + ], + [ + 48.1110182, + 11.5714309 + ], + [ + 48.1112055, + 11.5713436 + ], + [ + 48.1114101, + 11.5713007 + ], + [ + 48.1116031, + 11.5712844 + ], + [ + 48.1119249, + 11.5712776 + ], + [ + 48.1120796, + 11.5712928 + ], + [ + 48.1122163, + 11.5713351 + ], + [ + 48.112431, + 11.5714275 + ], + [ + 48.1130278, + 11.5717201 + ], + [ + 48.1138595, + 11.5721278 + ], + [ + 48.1141068, + 11.5722733 + ], + [ + 48.1143022, + 11.5724322 + ], + [ + 48.1144535, + 11.5725811 + ], + [ + 48.1145969, + 11.5727536 + ], + [ + 48.1147245, + 11.5729126 + ], + [ + 48.1148996, + 11.5731596 + ], + [ + 48.1150961, + 11.5734657 + ], + [ + 48.1152079, + 11.5736704 + ], + [ + 48.1153309, + 11.5739393 + ], + [ + 48.1157442, + 11.5749947 + ], + [ + 48.1159159, + 11.5753652 + ], + [ + 48.1160954, + 11.5756645 + ], + [ + 48.1162897, + 11.5759318 + ], + [ + 48.1164963, + 11.5761686 + ], + [ + 48.1166375, + 11.5763022 + ], + [ + 48.1167989, + 11.5764426 + ], + [ + 48.1169954, + 11.5765931 + ], + [ + 48.1172427, + 11.5767487 + ], + [ + 48.1174211, + 11.5768367 + ], + [ + 48.1177079, + 11.5769534 + ], + [ + 48.1179722, + 11.5770329 + ], + [ + 48.1181822, + 11.5770718 + ], + [ + 48.1183979, + 11.5770684 + ], + [ + 48.1185424, + 11.5770397 + ], + [ + 48.1187311, + 11.5769603 + ] + ] + }, + { + "osmId": "243316460", + "name": null, + "lengthMeters": 1414.5434045960246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1346845, + 11.5214769 + ], + [ + 48.1346598, + 11.5224082 + ], + [ + 48.1346468, + 11.5227966 + ], + [ + 48.1346413, + 11.5230539 + ], + [ + 48.1346407, + 11.5233318 + ], + [ + 48.1346401, + 11.5236131 + ], + [ + 48.134638, + 11.5238846 + ], + [ + 48.1346316, + 11.5241436 + ], + [ + 48.1346202, + 11.5243076 + ], + [ + 48.1345927, + 11.5245508 + ], + [ + 48.1344006, + 11.5259482 + ], + [ + 48.134336, + 11.5263181 + ], + [ + 48.1342498, + 11.5266784 + ], + [ + 48.1338881, + 11.5279654 + ], + [ + 48.1337984, + 11.5283142 + ], + [ + 48.1337359, + 11.528618 + ], + [ + 48.1336903, + 11.5288938 + ], + [ + 48.1336476, + 11.5292098 + ], + [ + 48.1336108, + 11.5295664 + ], + [ + 48.1335799, + 11.5299761 + ], + [ + 48.1335043, + 11.5307558 + ], + [ + 48.1334948, + 11.5309647 + ], + [ + 48.1334905, + 11.5313961 + ], + [ + 48.1334938, + 11.5323102 + ], + [ + 48.1335034, + 11.5335852 + ], + [ + 48.1335103, + 11.5339979 + ], + [ + 48.1335144, + 11.5341157 + ], + [ + 48.1335381, + 11.5343209 + ], + [ + 48.1335928, + 11.5346333 + ], + [ + 48.1336739, + 11.5350012 + ], + [ + 48.1337206, + 11.5352587 + ], + [ + 48.1337693, + 11.5355748 + ], + [ + 48.1338086, + 11.5358711 + ], + [ + 48.1338316, + 11.5361216 + ], + [ + 48.1338447, + 11.5363803 + ], + [ + 48.1338687, + 11.5380619 + ], + [ + 48.1338673, + 11.5383823 + ], + [ + 48.1338469, + 11.5390296 + ], + [ + 48.1338261, + 11.5394586 + ], + [ + 48.1337704, + 11.5402222 + ] + ] + }, + { + "osmId": "243420217", + "name": null, + "lengthMeters": 4431.500027629551, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1203193, + 11.6207129 + ], + [ + 48.1204085, + 11.6195674 + ], + [ + 48.120469, + 11.6186887 + ], + [ + 48.1205276, + 11.6178097 + ], + [ + 48.1205475, + 11.6175005 + ], + [ + 48.1205677, + 11.6171882 + ], + [ + 48.1206333, + 11.6161717 + ], + [ + 48.1206638, + 11.6153801 + ], + [ + 48.1206717, + 11.6148338 + ], + [ + 48.1206412, + 11.6142469 + ], + [ + 48.1205515, + 11.6135872 + ], + [ + 48.1204561, + 11.6132083 + ], + [ + 48.1203759, + 11.6129817 + ], + [ + 48.120272, + 11.6127483 + ], + [ + 48.1201557, + 11.6125656 + ], + [ + 48.1198508, + 11.6121749 + ], + [ + 48.1196024, + 11.6117825 + ], + [ + 48.1192142, + 11.6110597 + ], + [ + 48.1185591, + 11.6096428 + ], + [ + 48.1179197, + 11.6082934 + ], + [ + 48.1173819, + 11.6071649 + ], + [ + 48.1172722, + 11.6069414 + ], + [ + 48.1170995, + 11.6065997 + ], + [ + 48.1169933, + 11.6063376 + ], + [ + 48.116903, + 11.6060467 + ], + [ + 48.1161001, + 11.6030698 + ], + [ + 48.1159962, + 11.6027366 + ], + [ + 48.1158573, + 11.6023831 + ], + [ + 48.1156812, + 11.6020025 + ], + [ + 48.1155016, + 11.6016625 + ], + [ + 48.1153379, + 11.601397 + ], + [ + 48.1151527, + 11.6011331 + ], + [ + 48.1148658, + 11.6008083 + ], + [ + 48.1145103, + 11.6005143 + ], + [ + 48.1142131, + 11.600328 + ], + [ + 48.1132013, + 11.5998087 + ], + [ + 48.1128896, + 11.599599 + ], + [ + 48.1126626, + 11.5993808 + ], + [ + 48.1124164, + 11.5991017 + ], + [ + 48.1121714, + 11.598782 + ], + [ + 48.1117818, + 11.5982019 + ], + [ + 48.1116169, + 11.597911 + ], + [ + 48.1115231, + 11.5977063 + ], + [ + 48.1114599, + 11.5975422 + ], + [ + 48.1113786, + 11.597253 + ], + [ + 48.1113074, + 11.5969181 + ], + [ + 48.1110652, + 11.5956564 + ], + [ + 48.1107891, + 11.5942186 + ], + [ + 48.1107315, + 11.5937907 + ], + [ + 48.1107032, + 11.5934592 + ], + [ + 48.1106886, + 11.5931868 + ], + [ + 48.1107043, + 11.5929196 + ], + [ + 48.1107416, + 11.5926118 + ], + [ + 48.1107981, + 11.5923005 + ], + [ + 48.1108681, + 11.5920147 + ], + [ + 48.1109675, + 11.5917085 + ], + [ + 48.111285, + 11.5909029 + ], + [ + 48.1116722, + 11.5899206 + ], + [ + 48.1118139, + 11.5895612 + ], + [ + 48.1121461, + 11.5888215 + ], + [ + 48.1126247, + 11.5876004 + ], + [ + 48.1129096, + 11.58687 + ], + [ + 48.1133067, + 11.5858018 + ], + [ + 48.1139761, + 11.5839633 + ], + [ + 48.1140682, + 11.5836063 + ], + [ + 48.1143515, + 11.5825962 + ], + [ + 48.1147953, + 11.5810235 + ], + [ + 48.1151329, + 11.5797969 + ], + [ + 48.1152142, + 11.5795516 + ], + [ + 48.1153339, + 11.5792624 + ], + [ + 48.1154672, + 11.5789816 + ], + [ + 48.1155927, + 11.578756 + ], + [ + 48.1157869, + 11.5784667 + ], + [ + 48.1159584, + 11.5782425 + ], + [ + 48.1161336, + 11.5780557 + ], + [ + 48.1163401, + 11.5778636 + ], + [ + 48.1165525, + 11.5776903 + ], + [ + 48.1167658, + 11.5775439 + ], + [ + 48.1169624, + 11.5774333 + ], + [ + 48.1172366, + 11.5773274 + ], + [ + 48.1175223, + 11.5772648 + ], + [ + 48.1179765, + 11.5772016 + ], + [ + 48.1189132, + 11.5770454 + ], + [ + 48.1199079, + 11.5767452 + ], + [ + 48.1207523, + 11.5764864 + ], + [ + 48.1210802, + 11.5763959 + ], + [ + 48.1219168, + 11.5761648 + ] + ] + }, + { + "osmId": "243420218", + "name": null, + "lengthMeters": 207.98443543779706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1201302, + 11.6213534 + ], + [ + 48.1200717, + 11.6224055 + ], + [ + 48.1199269, + 11.6241381 + ] + ] + }, + { + "osmId": "243427738", + "name": null, + "lengthMeters": 161.0043960012912, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1202391, + 11.6213475 + ], + [ + 48.1201958, + 11.6220553 + ], + [ + 48.1201733, + 11.6224224 + ], + [ + 48.1201065, + 11.6230962 + ], + [ + 48.1200841, + 11.6235032 + ] + ] + }, + { + "osmId": "243427739", + "name": null, + "lengthMeters": 161.05315145733405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1201168, + 11.6235117 + ], + [ + 48.1202071, + 11.6224241 + ], + [ + 48.12023, + 11.6220568 + ], + [ + 48.1202738, + 11.6213551 + ] + ] + }, + { + "osmId": "243427740", + "name": null, + "lengthMeters": 2135.3528935584695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1199269, + 11.6241381 + ], + [ + 48.1198027, + 11.6254501 + ], + [ + 48.1197209, + 11.6260521 + ], + [ + 48.1196531, + 11.6264394 + ], + [ + 48.1194685, + 11.6273342 + ], + [ + 48.119176, + 11.6286704 + ], + [ + 48.1190818, + 11.6290425 + ], + [ + 48.1183159, + 11.6317511 + ], + [ + 48.1178809, + 11.6332761 + ], + [ + 48.1170329, + 11.6366359 + ], + [ + 48.1168767, + 11.6371427 + ], + [ + 48.1167356, + 11.637512 + ], + [ + 48.1165872, + 11.637837 + ], + [ + 48.1164159, + 11.6381414 + ], + [ + 48.1115033, + 11.6455111 + ], + [ + 48.1112809, + 11.6457952 + ], + [ + 48.1110583, + 11.6460218 + ], + [ + 48.1107782, + 11.6462429 + ], + [ + 48.1104536, + 11.646451 + ], + [ + 48.1101148, + 11.6466055 + ], + [ + 48.1098625, + 11.6466636 + ], + [ + 48.1094983, + 11.6466594 + ] + ] + }, + { + "osmId": "243427741", + "name": null, + "lengthMeters": 210.24982176237523, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1201528, + 11.6241923 + ], + [ + 48.1202273, + 11.6235387 + ], + [ + 48.1203088, + 11.6224342 + ], + [ + 48.120384, + 11.6213821 + ] + ] + }, + { + "osmId": "243809535", + "name": null, + "lengthMeters": 665.2910810840496, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6292664, + 13.2241654 + ], + [ + 52.6298222, + 13.2237132 + ], + [ + 52.6300696, + 13.2234922 + ], + [ + 52.6302452, + 13.2233291 + ], + [ + 52.6304235, + 13.2231588 + ], + [ + 52.63047, + 13.2231144 + ], + [ + 52.6306984, + 13.2228773 + ], + [ + 52.6308967, + 13.2226277 + ], + [ + 52.6310714, + 13.2223921 + ], + [ + 52.6312463, + 13.2221339 + ], + [ + 52.6314898, + 13.2217508 + ], + [ + 52.6316644, + 13.2214361 + ], + [ + 52.6318635, + 13.2210423 + ], + [ + 52.6320042, + 13.2207294 + ], + [ + 52.6321122, + 13.2204705 + ], + [ + 52.6321914, + 13.2202609 + ], + [ + 52.6322805, + 13.2200181 + ], + [ + 52.6323673, + 13.2197613 + ], + [ + 52.6324332, + 13.2195479 + ], + [ + 52.6324864, + 13.219362 + ], + [ + 52.6325451, + 13.2191539 + ], + [ + 52.6325979, + 13.218947 + ], + [ + 52.6326438, + 13.2187491 + ], + [ + 52.6326914, + 13.2185403 + ], + [ + 52.6327398, + 13.2183096 + ], + [ + 52.6327896, + 13.2180717 + ], + [ + 52.6328467, + 13.2177594 + ], + [ + 52.632902, + 13.2174337 + ], + [ + 52.6329381, + 13.2172048 + ], + [ + 52.6329756, + 13.216967 + ] + ] + }, + { + "osmId": "243811012", + "name": null, + "lengthMeters": 2175.4557486863782, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1936833, + 11.3766712 + ], + [ + 48.1938664, + 11.3763256 + ], + [ + 48.1947418, + 11.3747241 + ], + [ + 48.1954406, + 11.3734417 + ], + [ + 48.1959508, + 11.3725008 + ], + [ + 48.1981199, + 11.3685206 + ], + [ + 48.1993567, + 11.3662001 + ], + [ + 48.2000892, + 11.3647572 + ], + [ + 48.2005657, + 11.3638003 + ], + [ + 48.2009203, + 11.3630772 + ], + [ + 48.2012471, + 11.3623925 + ], + [ + 48.2013015, + 11.3622731 + ], + [ + 48.2016536, + 11.3615176 + ], + [ + 48.2021932, + 11.3603329 + ], + [ + 48.2026748, + 11.3592336 + ], + [ + 48.2032967, + 11.3577768 + ], + [ + 48.2035033, + 11.3572634 + ], + [ + 48.203924, + 11.3562177 + ], + [ + 48.2044497, + 11.3548611 + ], + [ + 48.2047816, + 11.3539775 + ], + [ + 48.2051522, + 11.3529612 + ] + ] + }, + { + "osmId": "244557930", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 834.5832860270934, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2404866, + 11.5489351 + ], + [ + 48.2409281, + 11.5491397 + ], + [ + 48.2421203, + 11.5496923 + ], + [ + 48.2431185, + 11.5501587 + ], + [ + 48.2441675, + 11.5506538 + ], + [ + 48.2453859, + 11.551229 + ], + [ + 48.2455562, + 11.5513092 + ], + [ + 48.2457326, + 11.5513924 + ], + [ + 48.2465184, + 11.5517627 + ], + [ + 48.2475128, + 11.5522282 + ], + [ + 48.2476513, + 11.552293 + ] + ] + }, + { + "osmId": "244557932", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 2862.319255142648, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2403401, + 11.5488091 + ], + [ + 48.237703, + 11.5475795 + ], + [ + 48.2370569, + 11.5472783 + ], + [ + 48.2333586, + 11.5455574 + ], + [ + 48.2331758, + 11.5454723 + ], + [ + 48.2292954, + 11.5436639 + ], + [ + 48.2288455, + 11.5434546 + ], + [ + 48.228092, + 11.5431247 + ], + [ + 48.2273946, + 11.542847 + ], + [ + 48.2265299, + 11.5425447 + ], + [ + 48.2255572, + 11.5422604 + ], + [ + 48.225045, + 11.5421401 + ], + [ + 48.2245309, + 11.5420247 + ], + [ + 48.2242561, + 11.5419757 + ], + [ + 48.223818, + 11.5418977 + ], + [ + 48.2230958, + 11.5417952 + ], + [ + 48.2226017, + 11.541731 + ], + [ + 48.2225171, + 11.54172 + ], + [ + 48.2214167, + 11.5416146 + ], + [ + 48.2211746, + 11.5415914 + ], + [ + 48.2202722, + 11.5415373 + ], + [ + 48.2196623, + 11.5415217 + ], + [ + 48.2189683, + 11.5414858 + ], + [ + 48.2183032, + 11.5414468 + ], + [ + 48.217528, + 11.5414014 + ], + [ + 48.2152658, + 11.5412501 + ] + ] + }, + { + "osmId": "245170870", + "name": null, + "lengthMeters": 360.7548036642914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1187311, + 11.5769603 + ], + [ + 48.1188945, + 11.5768888 + ], + [ + 48.1198883, + 11.5765835 + ], + [ + 48.1203822, + 11.5764287 + ], + [ + 48.1207685, + 11.5763417 + ], + [ + 48.1211947, + 11.5762309 + ], + [ + 48.1214033, + 11.5761875 + ], + [ + 48.1215562, + 11.5761545 + ], + [ + 48.1217233, + 11.5761096 + ], + [ + 48.1219168, + 11.5761648 + ] + ] + }, + { + "osmId": "245170871", + "name": null, + "lengthMeters": 275.46568697707494, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1213171, + 11.576105 + ], + [ + 48.1209884, + 11.5761955 + ], + [ + 48.1207275, + 11.5762673 + ], + [ + 48.1198818, + 11.5765292 + ], + [ + 48.1188884, + 11.5768358 + ] + ] + }, + { + "osmId": "246172993", + "name": null, + "lengthMeters": 3325.4422124573643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334182, + 11.7017501 + ], + [ + 48.1334678, + 11.6960418 + ], + [ + 48.1334999, + 11.692384 + ], + [ + 48.1334937, + 11.6907541 + ], + [ + 48.1334772, + 11.6888702 + ], + [ + 48.1334117, + 11.6869572 + ], + [ + 48.1333792, + 11.6795675 + ], + [ + 48.133397, + 11.679131 + ], + [ + 48.133449, + 11.6787335 + ], + [ + 48.1335291, + 11.678287 + ], + [ + 48.1337966, + 11.6771301 + ], + [ + 48.1338666, + 11.67678 + ], + [ + 48.1339253, + 11.6763842 + ], + [ + 48.1339615, + 11.6759444 + ], + [ + 48.1339547, + 11.6754979 + ], + [ + 48.1339073, + 11.6750784 + ], + [ + 48.133822, + 11.6747198 + ], + [ + 48.1336759, + 11.6743629 + ], + [ + 48.1334992, + 11.67405 + ], + [ + 48.1333033, + 11.6737693 + ], + [ + 48.132932, + 11.6733143 + ], + [ + 48.1322614, + 11.6724804 + ], + [ + 48.1319239, + 11.6720829 + ], + [ + 48.1315163, + 11.6716195 + ], + [ + 48.1313244, + 11.6714199 + ], + [ + 48.1309621, + 11.6710681 + ], + [ + 48.1307811, + 11.6709014 + ], + [ + 48.1305873, + 11.6707366 + ], + [ + 48.1301989, + 11.6704084 + ], + [ + 48.1297982, + 11.6700718 + ], + [ + 48.129566, + 11.6699083 + ], + [ + 48.1293509, + 11.6697581 + ], + [ + 48.1289943, + 11.6694984 + ], + [ + 48.1281905, + 11.6688963 + ], + [ + 48.1276464, + 11.6685259 + ], + [ + 48.1271982, + 11.6682925 + ], + [ + 48.1268606, + 11.6681267 + ], + [ + 48.1267082, + 11.6680489 + ], + [ + 48.1265806, + 11.667944 + ], + [ + 48.1264316, + 11.6677681 + ], + [ + 48.1262726, + 11.6675155 + ], + [ + 48.1261188, + 11.6672081 + ], + [ + 48.1259136, + 11.6666345 + ], + [ + 48.1257164, + 11.6658487 + ], + [ + 48.1255735, + 11.6649655 + ], + [ + 48.125551, + 11.6641193 + ], + [ + 48.1255574, + 11.6637067 + ] + ] + }, + { + "osmId": "246172994", + "name": null, + "lengthMeters": 253.41854324654958, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.13332, + 11.7000417 + ], + [ + 48.1333091, + 11.7017558 + ], + [ + 48.1333168, + 11.7034564 + ] + ] + }, + { + "osmId": "246177455", + "name": null, + "lengthMeters": 2334.159530960613, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1533873, + 11.6207356 + ], + [ + 48.1533207, + 11.6204094 + ], + [ + 48.1532527, + 11.6202052 + ], + [ + 48.1531805, + 11.6200394 + ], + [ + 48.153072, + 11.619824 + ], + [ + 48.1529557, + 11.6196137 + ], + [ + 48.1525636, + 11.6189651 + ], + [ + 48.1520982, + 11.6182641 + ], + [ + 48.1516761, + 11.6177539 + ], + [ + 48.1513185, + 11.6173986 + ], + [ + 48.1508701, + 11.6170259 + ], + [ + 48.1506063, + 11.6168555 + ], + [ + 48.1503397, + 11.6167249 + ], + [ + 48.1501783, + 11.6166591 + ], + [ + 48.1500135, + 11.6166213 + ], + [ + 48.1483315, + 11.6165822 + ], + [ + 48.1474365, + 11.6165659 + ], + [ + 48.1453926, + 11.6162217 + ], + [ + 48.14441, + 11.6160469 + ], + [ + 48.1442429, + 11.6159882 + ], + [ + 48.1440593, + 11.6158918 + ], + [ + 48.1437489, + 11.6156801 + ], + [ + 48.1436385, + 11.6155946 + ], + [ + 48.143541, + 11.6155026 + ], + [ + 48.1433065, + 11.6152486 + ], + [ + 48.1431061, + 11.6150193 + ], + [ + 48.1428439, + 11.6147354 + ], + [ + 48.1426504, + 11.614444 + ], + [ + 48.1425184, + 11.6142063 + ], + [ + 48.1424134, + 11.6139839 + ], + [ + 48.1423178, + 11.6137348 + ], + [ + 48.1419365, + 11.6126119 + ], + [ + 48.1411458, + 11.6101954 + ], + [ + 48.140686, + 11.6090034 + ], + [ + 48.1403359, + 11.6082461 + ], + [ + 48.1401751, + 11.6079514 + ], + [ + 48.1400222, + 11.6077262 + ], + [ + 48.1398855, + 11.6075637 + ], + [ + 48.1392989, + 11.606967 + ], + [ + 48.1387429, + 11.6063917 + ], + [ + 48.1370773, + 11.6047305 + ] + ] + }, + { + "osmId": "247039319", + "name": null, + "lengthMeters": 1052.3276938451747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1219168, + 11.5761648 + ], + [ + 48.1227307, + 11.575999 + ], + [ + 48.1231502, + 11.5759226 + ], + [ + 48.1241301, + 11.5758092 + ], + [ + 48.1251282, + 11.5759224 + ], + [ + 48.1263069, + 11.5762793 + ], + [ + 48.1265823, + 11.5763148 + ], + [ + 48.1268431, + 11.5763267 + ], + [ + 48.1270881, + 11.5762912 + ], + [ + 48.1273489, + 11.5762083 + ], + [ + 48.1275916, + 11.5761017 + ], + [ + 48.1278807, + 11.575941 + ], + [ + 48.128129, + 11.5757719 + ], + [ + 48.1282973, + 11.5756298 + ], + [ + 48.1284131, + 11.5755132 + ], + [ + 48.1284273, + 11.5754989 + ], + [ + 48.1287161, + 11.5751562 + ], + [ + 48.1293693, + 11.5742878 + ], + [ + 48.1300629, + 11.5733667 + ], + [ + 48.1303147, + 11.5729845 + ], + [ + 48.1304964, + 11.57268 + ] + ] + }, + { + "osmId": "247044661", + "name": null, + "lengthMeters": 313.9711738780868, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1304964, + 11.57268 + ], + [ + 48.1320658, + 11.5697476 + ], + [ + 48.1322715, + 11.5693903 + ] + ] + }, + { + "osmId": "247044665", + "name": null, + "lengthMeters": 450.0737724048567, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1326977, + 11.5675694 + ], + [ + 48.1325584, + 11.5677854 + ], + [ + 48.1324156, + 11.5680437 + ], + [ + 48.1321764, + 11.5685227 + ], + [ + 48.1319416, + 11.5690081 + ], + [ + 48.1308568, + 11.5716112 + ], + [ + 48.1305572, + 11.5722518 + ], + [ + 48.1304056, + 11.5725564 + ] + ] + }, + { + "osmId": "247048912", + "name": null, + "lengthMeters": 732.4182853415062, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335785, + 11.567362 + ], + [ + 48.1339208, + 11.5668833 + ], + [ + 48.1341262, + 11.5666039 + ], + [ + 48.1342804, + 11.5663872 + ], + [ + 48.1343554, + 11.566263 + ], + [ + 48.1344646, + 11.5660453 + ], + [ + 48.1346031, + 11.5657355 + ], + [ + 48.1347547, + 11.5653282 + ], + [ + 48.1348191, + 11.5651421 + ], + [ + 48.1350369, + 11.5643962 + ], + [ + 48.1351148, + 11.5641577 + ], + [ + 48.1353586, + 11.5635217 + ], + [ + 48.1354783, + 11.5632477 + ], + [ + 48.135607, + 11.5629974 + ], + [ + 48.1357616, + 11.5627352 + ], + [ + 48.1359016, + 11.5625306 + ], + [ + 48.1361115, + 11.5622819 + ], + [ + 48.1363388, + 11.5620582 + ], + [ + 48.136542, + 11.5618908 + ], + [ + 48.1368163, + 11.5616827 + ], + [ + 48.1371368, + 11.5614713 + ], + [ + 48.1374326, + 11.5613089 + ], + [ + 48.1376922, + 11.561199 + ], + [ + 48.1379191, + 11.5611297 + ], + [ + 48.138237, + 11.5610505 + ] + ] + }, + { + "osmId": "247051199", + "name": null, + "lengthMeters": 721.8653580627582, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1382406, + 11.5608838 + ], + [ + 48.1378987, + 11.5609504 + ], + [ + 48.1376503, + 11.5610097 + ], + [ + 48.1373705, + 11.5610992 + ], + [ + 48.1370465, + 11.5612294 + ], + [ + 48.1368083, + 11.5613427 + ], + [ + 48.1366153, + 11.5614713 + ], + [ + 48.1364438, + 11.5615982 + ], + [ + 48.1362289, + 11.561775 + ], + [ + 48.1359817, + 11.562013 + ], + [ + 48.1357698, + 11.5622596 + ], + [ + 48.1356022, + 11.5624973 + ], + [ + 48.1354338, + 11.5627835 + ], + [ + 48.1352999, + 11.5630482 + ], + [ + 48.135166, + 11.5633512 + ], + [ + 48.1346617, + 11.5646586 + ], + [ + 48.1345328, + 11.5649472 + ], + [ + 48.1344057, + 11.5651883 + ], + [ + 48.1342794, + 11.5653925 + ], + [ + 48.1341094, + 11.5656284 + ], + [ + 48.133894, + 11.5659242 + ], + [ + 48.1333704, + 11.5666437 + ] + ] + }, + { + "osmId": "247212061", + "name": null, + "lengthMeters": 1321.1031910671031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1711977, + 11.5284452 + ], + [ + 48.171344, + 11.5284361 + ], + [ + 48.1714613, + 11.5284445 + ], + [ + 48.1718593, + 11.5285038 + ], + [ + 48.1725817, + 11.5286113 + ], + [ + 48.1728408, + 11.5286357 + ], + [ + 48.1739226, + 11.5285392 + ], + [ + 48.1741797, + 11.5285748 + ], + [ + 48.1756776, + 11.5290382 + ], + [ + 48.1758931, + 11.5290805 + ], + [ + 48.1761209, + 11.5291143 + ], + [ + 48.1766533, + 11.5291651 + ], + [ + 48.1772646, + 11.5291483 + ], + [ + 48.1783214, + 11.5291076 + ], + [ + 48.1792383, + 11.5290213 + ], + [ + 48.1802816, + 11.5289875 + ], + [ + 48.1809291, + 11.5290252 + ], + [ + 48.1811647, + 11.5290687 + ], + [ + 48.1813327, + 11.5291279 + ], + [ + 48.1815064, + 11.5292107 + ], + [ + 48.1816485, + 11.5293021 + ], + [ + 48.1818134, + 11.5294198 + ], + [ + 48.1819857, + 11.5295693 + ], + [ + 48.1828121, + 11.5303402 + ] + ] + }, + { + "osmId": "247212065", + "name": null, + "lengthMeters": 605.7260890477206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1701698, + 11.5284013 + ], + [ + 48.1695976, + 11.5284485 + ], + [ + 48.1691238, + 11.528502 + ], + [ + 48.1688578, + 11.5285302 + ], + [ + 48.1685817, + 11.5285368 + ], + [ + 48.1683358, + 11.5285098 + ], + [ + 48.1661191, + 11.5281174 + ], + [ + 48.1659104, + 11.5280988 + ], + [ + 48.1657231, + 11.5281106 + ], + [ + 48.1655629, + 11.5281309 + ], + [ + 48.1653576, + 11.528185 + ], + [ + 48.1650946, + 11.5283054 + ], + [ + 48.1647731, + 11.528457 + ] + ] + }, + { + "osmId": "247496650", + "name": null, + "lengthMeters": 76.18417724719515, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1700311, + 11.572764 + ], + [ + 48.1696125, + 11.5727345 + ], + [ + 48.1693472, + 11.572704 + ] + ] + }, + { + "osmId": "248099627", + "name": null, + "lengthMeters": 174.29324796622032, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5166311, + 13.3825012 + ], + [ + 52.5166811, + 13.3832828 + ], + [ + 52.5167048, + 13.3837818 + ], + [ + 52.5167228, + 13.384219 + ], + [ + 52.5167464, + 13.3850693 + ] + ] + }, + { + "osmId": "248099628", + "name": null, + "lengthMeters": 503.41678496551435, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5171403, + 13.4021298 + ], + [ + 52.5172026, + 13.4025545 + ], + [ + 52.5172789, + 13.4029582 + ], + [ + 52.5173993, + 13.4034678 + ], + [ + 52.5175322, + 13.4039632 + ], + [ + 52.5177731, + 13.4048291 + ], + [ + 52.5180243, + 13.4057617 + ], + [ + 52.5182303, + 13.4064923 + ], + [ + 52.5183851, + 13.4069744 + ], + [ + 52.5185332, + 13.4074136 + ], + [ + 52.5189128, + 13.4082907 + ], + [ + 52.5191234, + 13.4087705 + ] + ] + }, + { + "osmId": "248583487", + "name": null, + "lengthMeters": 291.66234874047103, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1218912, + 11.5484262 + ], + [ + 48.1216294, + 11.5484136 + ], + [ + 48.1207014, + 11.5483316 + ], + [ + 48.1201395, + 11.5483009 + ], + [ + 48.1195653, + 11.5482689 + ], + [ + 48.1192709, + 11.5482542 + ] + ] + }, + { + "osmId": "248740648", + "name": null, + "lengthMeters": 5523.323612639324, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3129202, + 13.6317551 + ], + [ + 52.3138647, + 13.6318453 + ], + [ + 52.3141411, + 13.6318789 + ], + [ + 52.3142291, + 13.6318896 + ], + [ + 52.3147855, + 13.6319865 + ], + [ + 52.3151079, + 13.6320427 + ], + [ + 52.3158835, + 13.6322536 + ], + [ + 52.3165266, + 13.6324659 + ], + [ + 52.3177532, + 13.6329527 + ], + [ + 52.3189954, + 13.6334423 + ], + [ + 52.3192003, + 13.6335161 + ], + [ + 52.3198237, + 13.633788 + ], + [ + 52.3221589, + 13.6347902 + ], + [ + 52.3238862, + 13.6355446 + ], + [ + 52.32538, + 13.6362104 + ], + [ + 52.3262434, + 13.6365783 + ], + [ + 52.3263291, + 13.6366148 + ], + [ + 52.326703, + 13.6367668 + ], + [ + 52.3268641, + 13.6368323 + ], + [ + 52.3269224, + 13.636856 + ], + [ + 52.3269826, + 13.6368796 + ], + [ + 52.3270728, + 13.6369199 + ], + [ + 52.3272471, + 13.6369977 + ], + [ + 52.3274644, + 13.6370813 + ], + [ + 52.3284532, + 13.6373948 + ], + [ + 52.3292982, + 13.6375428 + ], + [ + 52.3297309, + 13.6376045 + ], + [ + 52.330716, + 13.6376447 + ], + [ + 52.330741, + 13.6376426 + ], + [ + 52.3319044, + 13.6375455 + ], + [ + 52.3326203, + 13.6373897 + ], + [ + 52.3328809, + 13.6373173 + ], + [ + 52.3335955, + 13.6370706 + ], + [ + 52.3341179, + 13.6368626 + ], + [ + 52.3347871, + 13.6364966 + ], + [ + 52.3356229, + 13.6359843 + ], + [ + 52.3366227, + 13.6353218 + ], + [ + 52.3382091, + 13.6343052 + ], + [ + 52.3383147, + 13.6342366 + ], + [ + 52.3383263, + 13.634229 + ], + [ + 52.3386318, + 13.6340303 + ], + [ + 52.338747, + 13.6339554 + ], + [ + 52.3388157, + 13.6339107 + ], + [ + 52.3388765, + 13.6338724 + ], + [ + 52.3390072, + 13.6337901 + ], + [ + 52.3396497, + 13.6333855 + ], + [ + 52.3399448, + 13.6331992 + ], + [ + 52.3408896, + 13.6325918 + ], + [ + 52.3419997, + 13.6319023 + ], + [ + 52.3437661, + 13.6307623 + ], + [ + 52.3450471, + 13.6299243 + ], + [ + 52.3454333, + 13.6296716 + ], + [ + 52.346339, + 13.6290791 + ], + [ + 52.3470979, + 13.6285026 + ], + [ + 52.3472733, + 13.6283694 + ], + [ + 52.3473354, + 13.6283197 + ], + [ + 52.3475013, + 13.6282024 + ], + [ + 52.3477245, + 13.6280282 + ], + [ + 52.3477436, + 13.6280136 + ], + [ + 52.3486166, + 13.6272952 + ], + [ + 52.3488754, + 13.6270861 + ], + [ + 52.3494309, + 13.626637 + ], + [ + 52.3497516, + 13.6263743 + ], + [ + 52.3503123, + 13.6259253 + ], + [ + 52.3509015, + 13.625525 + ], + [ + 52.3514529, + 13.625152 + ], + [ + 52.35204, + 13.6248094 + ], + [ + 52.3525932, + 13.6245129 + ], + [ + 52.353143, + 13.6242504 + ], + [ + 52.3540735, + 13.6238134 + ], + [ + 52.3545289, + 13.6236084 + ], + [ + 52.3551244, + 13.6233404 + ], + [ + 52.3560088, + 13.6229309 + ], + [ + 52.3563247, + 13.6227877 + ], + [ + 52.3566784, + 13.6226308 + ], + [ + 52.3567425, + 13.6226023 + ], + [ + 52.3568126, + 13.6225678 + ], + [ + 52.356879, + 13.6225382 + ], + [ + 52.3569518, + 13.6225038 + ], + [ + 52.3572796, + 13.62235 + ], + [ + 52.3573067, + 13.6223373 + ], + [ + 52.3578476, + 13.6220797 + ], + [ + 52.358752, + 13.6216403 + ], + [ + 52.3590649, + 13.6214933 + ], + [ + 52.3599401, + 13.6210812 + ], + [ + 52.3603303, + 13.6208984 + ] + ] + }, + { + "osmId": "249431185", + "name": null, + "lengthMeters": 2521.8941826293994, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357592, + 11.5733123 + ], + [ + 48.1341374, + 11.5700149 + ], + [ + 48.1340586, + 11.5698254 + ], + [ + 48.1339916, + 11.5696516 + ], + [ + 48.133934, + 11.5694812 + ], + [ + 48.1338545, + 11.5691493 + ], + [ + 48.1338276, + 11.5689251 + ], + [ + 48.1338156, + 11.5687369 + ], + [ + 48.1338107, + 11.5683513 + ], + [ + 48.1337974, + 11.5681229 + ], + [ + 48.1337802, + 11.5679206 + ], + [ + 48.1337209, + 11.5676215 + ], + [ + 48.133467, + 11.5666721 + ], + [ + 48.1332821, + 11.5660328 + ], + [ + 48.1331844, + 11.5657754 + ], + [ + 48.1330639, + 11.565486 + ], + [ + 48.1329069, + 11.5651412 + ], + [ + 48.1326901, + 11.5646899 + ], + [ + 48.1325495, + 11.5644268 + ], + [ + 48.1322682, + 11.5639172 + ], + [ + 48.1319847, + 11.5634106 + ], + [ + 48.1316795, + 11.5628806 + ], + [ + 48.1302645, + 11.5598765 + ], + [ + 48.130096, + 11.5595197 + ], + [ + 48.1294575, + 11.5580877 + ], + [ + 48.1291802, + 11.5575015 + ], + [ + 48.1288067, + 11.5567134 + ], + [ + 48.1281135, + 11.5552473 + ], + [ + 48.1278686, + 11.5547677 + ], + [ + 48.1275103, + 11.5541278 + ], + [ + 48.1269574, + 11.5531731 + ], + [ + 48.1267606, + 11.5527837 + ], + [ + 48.1260574, + 11.5512237 + ], + [ + 48.1257895, + 11.5506472 + ], + [ + 48.1255517, + 11.5502057 + ], + [ + 48.1252956, + 11.5497852 + ], + [ + 48.1251504, + 11.5495807 + ], + [ + 48.1250762, + 11.5494915 + ], + [ + 48.1248204, + 11.5492133 + ], + [ + 48.1246821, + 11.5490781 + ], + [ + 48.1245203, + 11.5489387 + ], + [ + 48.124342, + 11.5488184 + ], + [ + 48.1241768, + 11.5487195 + ], + [ + 48.1239812, + 11.5486279 + ], + [ + 48.1238578, + 11.5485926 + ], + [ + 48.1237083, + 11.5485581 + ], + [ + 48.1218912, + 11.5484262 + ] + ] + }, + { + "osmId": "249983682", + "name": null, + "lengthMeters": 1382.7736992034643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1606341, + 11.586043 + ], + [ + 48.1610509, + 11.5862629 + ], + [ + 48.1614389, + 11.5864528 + ], + [ + 48.1621495, + 11.5868027 + ], + [ + 48.1624675, + 11.5869903 + ], + [ + 48.1627962, + 11.5871083 + ], + [ + 48.1630118, + 11.587162 + ], + [ + 48.1632676, + 11.5872239 + ], + [ + 48.1635522, + 11.5872115 + ], + [ + 48.1637364, + 11.5871324 + ], + [ + 48.1639827, + 11.586991 + ], + [ + 48.1642439, + 11.5868031 + ], + [ + 48.1645471, + 11.5865131 + ], + [ + 48.1647974, + 11.5862164 + ], + [ + 48.1649933, + 11.5859188 + ], + [ + 48.1652037, + 11.5855137 + ], + [ + 48.1653602, + 11.5851699 + ], + [ + 48.165533, + 11.5847092 + ], + [ + 48.1656259, + 11.5843816 + ], + [ + 48.1662905, + 11.5815241 + ], + [ + 48.1663611, + 11.5811115 + ], + [ + 48.166387, + 11.5809298 + ], + [ + 48.1666712, + 11.5789376 + ], + [ + 48.1667523, + 11.5782579 + ], + [ + 48.1668169, + 11.5777265 + ], + [ + 48.1668624, + 11.5773519 + ], + [ + 48.1670986, + 11.5754575 + ], + [ + 48.1671435, + 11.575216 + ], + [ + 48.167194, + 11.5749723 + ] + ] + }, + { + "osmId": "249983718", + "name": null, + "lengthMeters": 1277.177731271736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1606341, + 11.586043 + ], + [ + 48.1608512, + 11.5860594 + ], + [ + 48.1610647, + 11.5861225 + ], + [ + 48.1614617, + 11.5862668 + ], + [ + 48.1621905, + 11.586531 + ], + [ + 48.1625161, + 11.5867248 + ], + [ + 48.1626724, + 11.5868053 + ], + [ + 48.1628066, + 11.5868713 + ], + [ + 48.1629549, + 11.586963 + ], + [ + 48.163554, + 11.5873263 + ], + [ + 48.1639031, + 11.5875905 + ], + [ + 48.1643251, + 11.5879894 + ], + [ + 48.1653593, + 11.5891077 + ], + [ + 48.1659902, + 11.5897661 + ], + [ + 48.1661167, + 11.5898998 + ], + [ + 48.167102, + 11.590941 + ], + [ + 48.1677307, + 11.5915831 + ], + [ + 48.1686493, + 11.5924171 + ], + [ + 48.1705588, + 11.5943412 + ] + ] + }, + { + "osmId": "249997295", + "name": null, + "lengthMeters": 4158.23366725248, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1192709, + 11.5482542 + ], + [ + 48.116428, + 11.5483693 + ], + [ + 48.1164139, + 11.5483697 + ], + [ + 48.1159335, + 11.5483798 + ], + [ + 48.1136636, + 11.5486324 + ], + [ + 48.1132616, + 11.5486488 + ], + [ + 48.1131058, + 11.5486702 + ], + [ + 48.1128606, + 11.5486608 + ], + [ + 48.1127083, + 11.5486409 + ], + [ + 48.112559, + 11.5486245 + ], + [ + 48.1124294, + 11.5486039 + ], + [ + 48.1122977, + 11.5485771 + ], + [ + 48.1121751, + 11.5485395 + ], + [ + 48.1120703, + 11.5484979 + ], + [ + 48.1115864, + 11.5483254 + ], + [ + 48.1113416, + 11.5482129 + ], + [ + 48.1111124, + 11.5480736 + ], + [ + 48.1105849, + 11.5476684 + ], + [ + 48.1084201, + 11.5460468 + ], + [ + 48.1080655, + 11.5458106 + ], + [ + 48.1078232, + 11.5456491 + ], + [ + 48.1073022, + 11.5453623 + ], + [ + 48.1070378, + 11.545278 + ], + [ + 48.1065308, + 11.5452098 + ], + [ + 48.106189, + 11.5451987 + ], + [ + 48.1051761, + 11.5452728 + ], + [ + 48.1049735, + 11.5453256 + ], + [ + 48.1040649, + 11.5456818 + ], + [ + 48.1037339, + 11.5457613 + ], + [ + 48.1034548, + 11.545794 + ], + [ + 48.1028318, + 11.5458861 + ], + [ + 48.1018999, + 11.5460323 + ], + [ + 48.1015135, + 11.5460734 + ], + [ + 48.1012977, + 11.5460633 + ], + [ + 48.1010821, + 11.5460225 + ], + [ + 48.1008472, + 11.5459325 + ], + [ + 48.1005732, + 11.5457908 + ], + [ + 48.1002237, + 11.545554 + ], + [ + 48.0998346, + 11.5451965 + ], + [ + 48.0994561, + 11.5447677 + ], + [ + 48.0992746, + 11.5445062 + ], + [ + 48.0991039, + 11.544211 + ], + [ + 48.0988959, + 11.5437634 + ], + [ + 48.0987606, + 11.543433 + ], + [ + 48.0986579, + 11.5431237 + ], + [ + 48.0985768, + 11.5427905 + ], + [ + 48.0985152, + 11.542423 + ], + [ + 48.0984906, + 11.5421272 + ], + [ + 48.0984851, + 11.5418049 + ], + [ + 48.0985243, + 11.5403535 + ], + [ + 48.0985233, + 11.5381169 + ], + [ + 48.0985118, + 11.5378618 + ], + [ + 48.0984878, + 11.537591 + ], + [ + 48.0982919, + 11.5359239 + ], + [ + 48.0980975, + 11.5343824 + ], + [ + 48.0979073, + 11.5332176 + ], + [ + 48.097868, + 11.5329042 + ], + [ + 48.0976862, + 11.5304106 + ], + [ + 48.0975814, + 11.5289543 + ], + [ + 48.0975305, + 11.5282273 + ], + [ + 48.0975226, + 11.5279915 + ], + [ + 48.0975306, + 11.5276856 + ], + [ + 48.0975637, + 11.5273268 + ], + [ + 48.0976482, + 11.5267765 + ], + [ + 48.0977948, + 11.5260122 + ], + [ + 48.0979512, + 11.5252165 + ], + [ + 48.0981043, + 11.5244225 + ], + [ + 48.0983365, + 11.5232359 + ], + [ + 48.098422, + 11.5226732 + ], + [ + 48.0984791, + 11.5221127 + ], + [ + 48.0985019, + 11.5217419 + ], + [ + 48.0985019, + 11.5214513 + ], + [ + 48.0984848, + 11.5211608 + ], + [ + 48.0984323, + 11.5207182 + ], + [ + 48.0983716, + 11.5203362 + ] + ] + }, + { + "osmId": "250266572", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1212.9725967529066, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6697045, + 13.2576011 + ], + [ + 52.6692832, + 13.2552674 + ], + [ + 52.6692782, + 13.2552395 + ], + [ + 52.6691135, + 13.2543273 + ], + [ + 52.6688525, + 13.252829 + ], + [ + 52.6687961, + 13.2525056 + ], + [ + 52.6680981, + 13.248499 + ], + [ + 52.6666673, + 13.2403244 + ] + ] + }, + { + "osmId": "250266581", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 432.6571552448879, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6692908, + 13.2555588 + ], + [ + 52.669735, + 13.2579951 + ], + [ + 52.6699345, + 13.2590217 + ], + [ + 52.6700254, + 13.2594879 + ], + [ + 52.6704533, + 13.2616819 + ] + ] + }, + { + "osmId": "250527580", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 770.1091265230763, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6067225, + 13.4601107 + ], + [ + 52.6079211, + 13.4584835 + ], + [ + 52.6091548, + 13.4568116 + ], + [ + 52.6093147, + 13.4565963 + ], + [ + 52.6100482, + 13.4556087 + ], + [ + 52.6104838, + 13.4550087 + ], + [ + 52.6108419, + 13.4545241 + ], + [ + 52.610902, + 13.4544415 + ], + [ + 52.6113318, + 13.4538592 + ], + [ + 52.6120698, + 13.4528626 + ] + ] + }, + { + "osmId": "250527581", + "name": null, + "lengthMeters": 2203.6095327501466, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.66636, + 13.287069 + ], + [ + 52.6664284, + 13.2870727 + ], + [ + 52.6665569, + 13.2870831 + ], + [ + 52.666692, + 13.2870963 + ], + [ + 52.6668267, + 13.2871092 + ], + [ + 52.6676062, + 13.2871903 + ], + [ + 52.6676124, + 13.287191 + ], + [ + 52.6697496, + 13.2873942 + ], + [ + 52.6708307, + 13.2875139 + ], + [ + 52.6713257, + 13.2875661 + ], + [ + 52.6756229, + 13.2880193 + ], + [ + 52.6761662, + 13.2880764 + ], + [ + 52.6766811, + 13.2881259 + ], + [ + 52.6774246, + 13.2881935 + ], + [ + 52.6785052, + 13.2883046 + ], + [ + 52.6805647, + 13.2885195 + ], + [ + 52.6816016, + 13.2886383 + ], + [ + 52.682592, + 13.288747 + ], + [ + 52.6835187, + 13.2888436 + ], + [ + 52.6840195, + 13.2888964 + ], + [ + 52.6848193, + 13.2889793 + ], + [ + 52.6851753, + 13.2890166 + ], + [ + 52.6856569, + 13.2890653 + ], + [ + 52.6861387, + 13.2891102 + ] + ] + }, + { + "osmId": "250527583", + "name": null, + "lengthMeters": 1923.1539419047128, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6663603, + 13.2870007 + ], + [ + 52.6662964, + 13.2869974 + ], + [ + 52.6661674, + 13.2869955 + ], + [ + 52.6660386, + 13.2869992 + ], + [ + 52.6659059, + 13.2870088 + ], + [ + 52.6657732, + 13.2870229 + ], + [ + 52.6656412, + 13.287046 + ], + [ + 52.6655096, + 13.2870754 + ], + [ + 52.6653791, + 13.2871113 + ], + [ + 52.6652494, + 13.2871524 + ], + [ + 52.6651188, + 13.2872009 + ], + [ + 52.6649902, + 13.2872551 + ], + [ + 52.6648625, + 13.2873159 + ], + [ + 52.6647356, + 13.2873825 + ], + [ + 52.6646112, + 13.2874555 + ], + [ + 52.6644877, + 13.2875351 + ], + [ + 52.6643658, + 13.2876204 + ], + [ + 52.6642451, + 13.2877117 + ], + [ + 52.6641258, + 13.287809 + ], + [ + 52.6640092, + 13.2879127 + ], + [ + 52.663894, + 13.2880212 + ], + [ + 52.6637811, + 13.2881368 + ], + [ + 52.6636701, + 13.288256 + ], + [ + 52.6635621, + 13.2883843 + ], + [ + 52.6634563, + 13.2885133 + ], + [ + 52.6633518, + 13.2886485 + ], + [ + 52.663251, + 13.2887892 + ], + [ + 52.6631531, + 13.2889346 + ], + [ + 52.6630563, + 13.2890834 + ], + [ + 52.6629641, + 13.2892378 + ], + [ + 52.6628737, + 13.2893953 + ], + [ + 52.6627865, + 13.289559 + ], + [ + 52.6627015, + 13.2897257 + ], + [ + 52.6626205, + 13.2898982 + ], + [ + 52.662542, + 13.2900726 + ], + [ + 52.662467, + 13.2902514 + ], + [ + 52.6623945, + 13.2904349 + ], + [ + 52.6623268, + 13.2906219 + ], + [ + 52.6622622, + 13.2908124 + ], + [ + 52.6622, + 13.2910043 + ], + [ + 52.6621422, + 13.291199 + ], + [ + 52.6620885, + 13.2913974 + ], + [ + 52.6620373, + 13.2915988 + ], + [ + 52.6619902, + 13.2918022 + ], + [ + 52.6619465, + 13.2920078 + ], + [ + 52.661906, + 13.292215 + ], + [ + 52.6618705, + 13.2924247 + ], + [ + 52.6618384, + 13.2926358 + ], + [ + 52.6618094, + 13.2928482 + ], + [ + 52.661785, + 13.2930617 + ], + [ + 52.6617644, + 13.2932764 + ], + [ + 52.6617479, + 13.2934928 + ], + [ + 52.6617355, + 13.2937089 + ], + [ + 52.6617263, + 13.2939253 + ], + [ + 52.661721, + 13.2941426 + ], + [ + 52.6617188, + 13.2943602 + ], + [ + 52.6617195, + 13.2945785 + ], + [ + 52.6617237, + 13.2947967 + ], + [ + 52.6617321, + 13.2950139 + ], + [ + 52.6617427, + 13.2952296 + ], + [ + 52.6617565, + 13.2954446 + ], + [ + 52.6617736, + 13.2956598 + ], + [ + 52.6617936, + 13.295876 + ], + [ + 52.6618175, + 13.2960904 + ], + [ + 52.6618438, + 13.2963027 + ], + [ + 52.6618741, + 13.296514 + ], + [ + 52.6619074, + 13.2967253 + ], + [ + 52.6619433, + 13.2969341 + ], + [ + 52.6619825, + 13.2971422 + ], + [ + 52.6620253, + 13.2973484 + ], + [ + 52.6620703, + 13.2975537 + ], + [ + 52.6621184, + 13.2977561 + ], + [ + 52.6621703, + 13.2979566 + ], + [ + 52.6622246, + 13.298154 + ], + [ + 52.6622819, + 13.2983508 + ], + [ + 52.6623431, + 13.298544 + ], + [ + 52.6624059, + 13.2987351 + ], + [ + 52.6624718, + 13.2989235 + ], + [ + 52.6625405, + 13.2991092 + ], + [ + 52.6626114, + 13.2992912 + ], + [ + 52.6626853, + 13.2994705 + ], + [ + 52.6627617, + 13.2996453 + ], + [ + 52.6628408, + 13.2998186 + ], + [ + 52.6629214, + 13.2999882 + ], + [ + 52.6630055, + 13.3001541 + ], + [ + 52.6630916, + 13.3003172 + ], + [ + 52.6631804, + 13.3004762 + ], + [ + 52.6632715, + 13.3006313 + ], + [ + 52.6633647, + 13.3007829 + ], + [ + 52.6634598, + 13.3009308 + ], + [ + 52.663558, + 13.3010745 + ], + [ + 52.6636576, + 13.3012155 + ], + [ + 52.6637604, + 13.3013521 + ], + [ + 52.663864, + 13.3014845 + ], + [ + 52.6639686, + 13.3016103 + ], + [ + 52.6640757, + 13.301733 + ], + [ + 52.6641841, + 13.3018516 + ], + [ + 52.6642944, + 13.3019669 + ], + [ + 52.6644066, + 13.3020766 + ], + [ + 52.6645204, + 13.3021825 + ], + [ + 52.6645666, + 13.3022228 + ], + [ + 52.6646349, + 13.3022823 + ], + [ + 52.6647508, + 13.3023792 + ], + [ + 52.6648693, + 13.3024699 + ], + [ + 52.6649892, + 13.3025571 + ], + [ + 52.6651099, + 13.3026395 + ], + [ + 52.6652313, + 13.3027174 + ], + [ + 52.6653538, + 13.3027886 + ], + [ + 52.6654778, + 13.3028554 + ], + [ + 52.6656028, + 13.3029173 + ], + [ + 52.6657292, + 13.3029726 + ], + [ + 52.6658563, + 13.3030244 + ], + [ + 52.6659842, + 13.3030727 + ], + [ + 52.6661216, + 13.3031193 + ], + [ + 52.6662492, + 13.3031639 + ], + [ + 52.6681294, + 13.3037679 + ], + [ + 52.6683391, + 13.3038354 + ], + [ + 52.6685478, + 13.3039065 + ], + [ + 52.6686762, + 13.3039533 + ] + ] + }, + { + "osmId": "250527584", + "name": null, + "lengthMeters": 234.54082061615009, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6697487, + 13.2871138 + ], + [ + 52.6696549, + 13.2870947 + ], + [ + 52.6695525, + 13.2870761 + ], + [ + 52.6694617, + 13.2870596 + ], + [ + 52.6690592, + 13.2870015 + ], + [ + 52.6686566, + 13.286948 + ], + [ + 52.6685926, + 13.2869416 + ], + [ + 52.6682649, + 13.2869089 + ], + [ + 52.6681127, + 13.2868937 + ], + [ + 52.6680276, + 13.2868852 + ], + [ + 52.6678123, + 13.2868637 + ], + [ + 52.6677554, + 13.286858 + ], + [ + 52.667646, + 13.2868471 + ] + ] + }, + { + "osmId": "250527585", + "name": null, + "lengthMeters": 1039.8379934773518, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6697146, + 13.2872583 + ], + [ + 52.669816, + 13.287269 + ], + [ + 52.6698791, + 13.2872756 + ], + [ + 52.6708359, + 13.2873763 + ], + [ + 52.6719601, + 13.2874935 + ], + [ + 52.673093, + 13.2876121 + ], + [ + 52.6733391, + 13.2876378 + ], + [ + 52.6736106, + 13.2876663 + ], + [ + 52.6746916, + 13.2877834 + ], + [ + 52.6749245, + 13.2878086 + ], + [ + 52.6752954, + 13.2878488 + ], + [ + 52.675628, + 13.2878837 + ], + [ + 52.6761714, + 13.2879405 + ], + [ + 52.6764627, + 13.2879662 + ], + [ + 52.6766865, + 13.2879804 + ], + [ + 52.6769418, + 13.2879904 + ], + [ + 52.6772015, + 13.2879963 + ], + [ + 52.6774571, + 13.287995 + ], + [ + 52.6777163, + 13.2879871 + ], + [ + 52.6779718, + 13.2879727 + ], + [ + 52.6782299, + 13.2879527 + ], + [ + 52.6784862, + 13.2879272 + ], + [ + 52.6790496, + 13.2878566 + ] + ] + }, + { + "osmId": "250581896", + "name": null, + "lengthMeters": 90.79762624894404, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6085033, + 13.318548 + ], + [ + 52.6082927, + 13.3187779 + ], + [ + 52.6078057, + 13.319246 + ] + ] + }, + { + "osmId": "250818131", + "name": null, + "lengthMeters": 100.75458633190718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1484385, + 11.4615445 + ], + [ + 48.1484804, + 11.4615537 + ], + [ + 48.1485045, + 11.461555 + ], + [ + 48.1485205, + 11.4615545 + ], + [ + 48.1485384, + 11.4615523 + ], + [ + 48.1485543, + 11.4615466 + ], + [ + 48.1485714, + 11.4615374 + ], + [ + 48.1485891, + 11.4615241 + ], + [ + 48.1485987, + 11.4615145 + ], + [ + 48.1486044, + 11.4615089 + ], + [ + 48.1486174, + 11.4614944 + ], + [ + 48.1486294, + 11.4614793 + ], + [ + 48.1486395, + 11.4614652 + ], + [ + 48.1486508, + 11.4614441 + ], + [ + 48.1486669, + 11.4614033 + ], + [ + 48.1486788, + 11.4613668 + ], + [ + 48.1487195, + 11.4612282 + ], + [ + 48.148749, + 11.461129 + ], + [ + 48.1488054, + 11.4609451 + ], + [ + 48.1488133, + 11.4609135 + ], + [ + 48.1488171, + 11.4608892 + ], + [ + 48.1488193, + 11.4608634 + ], + [ + 48.1488196, + 11.4608425 + ], + [ + 48.1488184, + 11.4608153 + ], + [ + 48.1488171, + 11.4607968 + ], + [ + 48.1488163, + 11.4607915 + ], + [ + 48.1488138, + 11.4607746 + ], + [ + 48.1488086, + 11.4607507 + ], + [ + 48.1488047, + 11.4607376 + ], + [ + 48.1488, + 11.460723 + ], + [ + 48.148793, + 11.4607073 + ], + [ + 48.1487824, + 11.460688 + ], + [ + 48.148769, + 11.4606678 + ], + [ + 48.1487564, + 11.4606518 + ], + [ + 48.1487449, + 11.4606403 + ], + [ + 48.1487317, + 11.4606294 + ], + [ + 48.1487112, + 11.4606139 + ], + [ + 48.1486978, + 11.4606048 + ], + [ + 48.1486821, + 11.4605941 + ] + ] + }, + { + "osmId": "250869965", + "name": null, + "lengthMeters": 892.8119133271679, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5825789, + 13.4285212 + ], + [ + 52.5829278, + 13.4284777 + ], + [ + 52.5831008, + 13.4284607 + ], + [ + 52.5832408, + 13.4284611 + ], + [ + 52.5833935, + 13.4284691 + ], + [ + 52.5835473, + 13.4284843 + ], + [ + 52.5836884, + 13.4285054 + ], + [ + 52.5838809, + 13.4285418 + ], + [ + 52.5839646, + 13.4285611 + ], + [ + 52.5840591, + 13.4285819 + ], + [ + 52.5841918, + 13.4286199 + ], + [ + 52.5842805, + 13.4286443 + ], + [ + 52.5848789, + 13.4288486 + ], + [ + 52.5849479, + 13.428873 + ], + [ + 52.5850527, + 13.4289092 + ], + [ + 52.5851013, + 13.4289254 + ], + [ + 52.5858103, + 13.4291703 + ], + [ + 52.5865114, + 13.4294105 + ], + [ + 52.587108, + 13.4296199 + ], + [ + 52.5874567, + 13.4297382 + ], + [ + 52.5884425, + 13.4300807 + ], + [ + 52.5885312, + 13.4301111 + ], + [ + 52.5886073, + 13.4301371 + ], + [ + 52.588662, + 13.4301559 + ], + [ + 52.5888485, + 13.4302197 + ], + [ + 52.5891536, + 13.4303262 + ], + [ + 52.5896961, + 13.430514 + ], + [ + 52.5897811, + 13.4305431 + ], + [ + 52.5898117, + 13.4305535 + ], + [ + 52.5898436, + 13.4305645 + ], + [ + 52.5898735, + 13.4305747 + ], + [ + 52.5904653, + 13.4307784 + ] + ] + }, + { + "osmId": "251399164", + "name": null, + "lengthMeters": 907.5146246312204, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1452903, + 11.4716485 + ], + [ + 48.1452685, + 11.4716587 + ], + [ + 48.1452431, + 11.4716663 + ], + [ + 48.145218, + 11.4716713 + ], + [ + 48.1451852, + 11.4716742 + ], + [ + 48.1451358, + 11.4716726 + ], + [ + 48.1450482, + 11.4716755 + ], + [ + 48.1450155, + 11.471679 + ], + [ + 48.1449818, + 11.4716878 + ], + [ + 48.1449466, + 11.4717029 + ], + [ + 48.1449241, + 11.471715 + ], + [ + 48.1448987, + 11.4717323 + ], + [ + 48.1448693, + 11.4717534 + ], + [ + 48.1448408, + 11.4717772 + ], + [ + 48.1448032, + 11.471814 + ], + [ + 48.1443677, + 11.4723067 + ], + [ + 48.1426484, + 11.4742943 + ], + [ + 48.14253, + 11.4744469 + ], + [ + 48.1424935, + 11.4744989 + ], + [ + 48.1424341, + 11.4745951 + ], + [ + 48.1423964, + 11.4746755 + ], + [ + 48.1423768, + 11.4747265 + ], + [ + 48.1423556, + 11.4747911 + ], + [ + 48.1423437, + 11.4748311 + ], + [ + 48.1423339, + 11.4748706 + ], + [ + 48.1423209, + 11.4749365 + ], + [ + 48.142309, + 11.4750054 + ], + [ + 48.1422946, + 11.4751293 + ], + [ + 48.1422463, + 11.4755866 + ], + [ + 48.1421693, + 11.4762717 + ], + [ + 48.14199, + 11.4780193 + ], + [ + 48.1418183, + 11.4797391 + ], + [ + 48.1417047, + 11.4807845 + ], + [ + 48.1416711, + 11.4811309 + ], + [ + 48.1416584, + 11.4812793 + ], + [ + 48.1416452, + 11.4814286 + ] + ] + }, + { + "osmId": "251530327", + "name": null, + "lengthMeters": 133.35753280998668, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5526924, + 13.3985296 + ], + [ + 52.5529974, + 13.3984434 + ], + [ + 52.5533955, + 13.3982805 + ], + [ + 52.5538643, + 13.398114 + ] + ] + }, + { + "osmId": "251750391", + "name": null, + "lengthMeters": 511.4989071061687, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5103944, + 13.5379501 + ], + [ + 52.5107143, + 13.5379941 + ], + [ + 52.5109678, + 13.5380251 + ], + [ + 52.5111019, + 13.5380287 + ], + [ + 52.5112092, + 13.5380316 + ], + [ + 52.5114281, + 13.5380123 + ], + [ + 52.511646, + 13.5379774 + ], + [ + 52.5120207, + 13.5378788 + ], + [ + 52.5124668, + 13.5377665 + ], + [ + 52.5129035, + 13.5376825 + ], + [ + 52.5130934, + 13.5376709 + ], + [ + 52.5131544, + 13.5376672 + ], + [ + 52.5134483, + 13.5376808 + ], + [ + 52.5135629, + 13.5377005 + ], + [ + 52.5137416, + 13.5377312 + ], + [ + 52.5140335, + 13.5378066 + ], + [ + 52.514327, + 13.5379234 + ], + [ + 52.5149294, + 13.5382652 + ] + ] + }, + { + "osmId": "251750393", + "name": null, + "lengthMeters": 207.33283424364114, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5143505, + 13.5189111 + ], + [ + 52.5143259, + 13.5200376 + ], + [ + 52.5142845, + 13.5219731 + ] + ] + }, + { + "osmId": "251750395", + "name": null, + "lengthMeters": 189.95623069894447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121583, + 13.5006419 + ], + [ + 52.5123204, + 13.5009978 + ], + [ + 52.5125006, + 13.5014001 + ], + [ + 52.5126434, + 13.5017376 + ], + [ + 52.5128564, + 13.5023102 + ], + [ + 52.5130785, + 13.5030005 + ] + ] + }, + { + "osmId": "251750396", + "name": null, + "lengthMeters": 948.2937197678052, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4100584, + 13.5774288 + ], + [ + 52.4096713, + 13.5780368 + ], + [ + 52.4076297, + 13.5811745 + ], + [ + 52.4075172, + 13.5813474 + ], + [ + 52.4073983, + 13.5815171 + ], + [ + 52.4070684, + 13.5819878 + ], + [ + 52.4065604, + 13.5828048 + ], + [ + 52.4061119, + 13.5835543 + ], + [ + 52.4051987, + 13.584955 + ], + [ + 52.4045669, + 13.5859042 + ], + [ + 52.404372, + 13.586197 + ], + [ + 52.4038326, + 13.586979 + ] + ] + }, + { + "osmId": "251750397", + "name": "Ostbahn", + "lengthMeters": 1069.4138213452293, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5131524, + 13.5035943 + ], + [ + 52.5133045, + 13.5041216 + ], + [ + 52.5134097, + 13.5044999 + ], + [ + 52.5135073, + 13.5048754 + ], + [ + 52.5135859, + 13.5051779 + ], + [ + 52.5136659, + 13.5055299 + ], + [ + 52.5137214, + 13.5058004 + ], + [ + 52.5138124, + 13.5062544 + ], + [ + 52.5138912, + 13.5067443 + ], + [ + 52.5141055, + 13.5084149 + ], + [ + 52.5141629, + 13.5088778 + ], + [ + 52.5142564, + 13.509791 + ], + [ + 52.5143401, + 13.5109205 + ], + [ + 52.5143613, + 13.5113228 + ], + [ + 52.5143836, + 13.5118418 + ], + [ + 52.5143999, + 13.5125248 + ], + [ + 52.5144054, + 13.5130409 + ], + [ + 52.5144038, + 13.5136946 + ], + [ + 52.5143997, + 13.5141428 + ], + [ + 52.514394, + 13.5144563 + ], + [ + 52.5143376, + 13.5171021 + ], + [ + 52.5143363, + 13.5171596 + ], + [ + 52.5143156, + 13.5181754 + ], + [ + 52.5142943, + 13.5190913 + ] + ] + }, + { + "osmId": "251760396", + "name": "Isartalbahn", + "lengthMeters": 109.56534174767182, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0433173, + 11.5095626 + ], + [ + 48.0428529, + 11.5091997 + ], + [ + 48.0426482, + 11.5090395 + ], + [ + 48.0424421, + 11.5088856 + ] + ] + }, + { + "osmId": "251792235", + "name": null, + "lengthMeters": 5895.223601264144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1770846, + 11.5719149 + ], + [ + 48.1772667, + 11.5720676 + ], + [ + 48.1781322, + 11.5728924 + ], + [ + 48.1782579, + 11.5729825 + ], + [ + 48.1784058, + 11.5730757 + ], + [ + 48.1785705, + 11.5731416 + ], + [ + 48.1788118, + 11.5731992 + ], + [ + 48.17914, + 11.5732457 + ], + [ + 48.1798946, + 11.5732973 + ], + [ + 48.180079, + 11.5732967 + ], + [ + 48.180942, + 11.5732308 + ], + [ + 48.181719, + 11.5731726 + ], + [ + 48.1857792, + 11.5728792 + ], + [ + 48.1868148, + 11.5728044 + ], + [ + 48.1874922, + 11.5727554 + ], + [ + 48.1905444, + 11.5725453 + ], + [ + 48.1923982, + 11.5723219 + ], + [ + 48.1945936, + 11.5720573 + ], + [ + 48.1946706, + 11.5720622 + ], + [ + 48.1949271, + 11.5720322 + ], + [ + 48.1959306, + 11.5718957 + ], + [ + 48.1966189, + 11.5718045 + ], + [ + 48.1971334, + 11.5716747 + ], + [ + 48.1974581, + 11.5715726 + ], + [ + 48.197857, + 11.5714085 + ], + [ + 48.1982012, + 11.5711962 + ], + [ + 48.2000437, + 11.5698564 + ], + [ + 48.2002685, + 11.5697344 + ], + [ + 48.2005414, + 11.5696338 + ], + [ + 48.2007658, + 11.569578 + ], + [ + 48.2010929, + 11.5695471 + ], + [ + 48.2029976, + 11.569474 + ], + [ + 48.2032662, + 11.5694646 + ], + [ + 48.2042231, + 11.5694736 + ], + [ + 48.2065448, + 11.5694878 + ], + [ + 48.2080513, + 11.5694012 + ], + [ + 48.2086176, + 11.5693872 + ], + [ + 48.2089566, + 11.5693065 + ], + [ + 48.2092485, + 11.569177 + ], + [ + 48.2095764, + 11.5689651 + ], + [ + 48.2099515, + 11.5686315 + ], + [ + 48.2102376, + 11.5683167 + ], + [ + 48.2105247, + 11.5679586 + ], + [ + 48.2108065, + 11.5675552 + ], + [ + 48.2111391, + 11.5670001 + ], + [ + 48.2114541, + 11.5663988 + ], + [ + 48.2116011, + 11.5660491 + ], + [ + 48.2117376, + 11.5656649 + ], + [ + 48.2119213, + 11.5650569 + ], + [ + 48.21241, + 11.5634699 + ], + [ + 48.2129055, + 11.5618592 + ], + [ + 48.2129807, + 11.561555 + ], + [ + 48.2130438, + 11.561232 + ], + [ + 48.2130923, + 11.5609038 + ], + [ + 48.2131329, + 11.5605892 + ], + [ + 48.2131594, + 11.5602829 + ], + [ + 48.2131825, + 11.559845 + ], + [ + 48.2131912, + 11.5592288 + ], + [ + 48.2131656, + 11.5584953 + ], + [ + 48.2131633, + 11.5580707 + ], + [ + 48.2131952, + 11.5574558 + ], + [ + 48.2133098, + 11.556236 + ], + [ + 48.2134897, + 11.5549421 + ], + [ + 48.2137184, + 11.5532563 + ], + [ + 48.2137846, + 11.5527974 + ], + [ + 48.2138925, + 11.5520493 + ], + [ + 48.2139312, + 11.5516893 + ], + [ + 48.2139624, + 11.5513491 + ], + [ + 48.2139827, + 11.5510666 + ], + [ + 48.2139933, + 11.5507425 + ], + [ + 48.2139933, + 11.5505222 + ], + [ + 48.2139793, + 11.5501515 + ], + [ + 48.2137685, + 11.5473962 + ], + [ + 48.2137516, + 11.5470613 + ], + [ + 48.2137506, + 11.5468129 + ], + [ + 48.2138448, + 11.543567 + ], + [ + 48.2138711, + 11.541794 + ], + [ + 48.2138819, + 11.5410178 + ] + ] + }, + { + "osmId": "251840354", + "name": "Stettiner Bahn", + "lengthMeters": 1707.844192953375, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5783427, + 13.430003 + ], + [ + 52.5779126, + 13.4295844 + ], + [ + 52.5772951, + 13.4288919 + ], + [ + 52.5769799, + 13.4285061 + ], + [ + 52.5766782, + 13.4281158 + ], + [ + 52.5764284, + 13.4277665 + ], + [ + 52.5761489, + 13.4273559 + ], + [ + 52.5760247, + 13.4271716 + ], + [ + 52.5759083, + 13.4269873 + ], + [ + 52.575739, + 13.426714 + ], + [ + 52.5756765, + 13.4266132 + ], + [ + 52.5754481, + 13.4262246 + ], + [ + 52.575191, + 13.4257845 + ], + [ + 52.5741144, + 13.4239393 + ], + [ + 52.5733068, + 13.4225474 + ], + [ + 52.5727754, + 13.4216333 + ], + [ + 52.5722171, + 13.4206779 + ], + [ + 52.5713123, + 13.4191355 + ], + [ + 52.5703011, + 13.4175031 + ], + [ + 52.5702791, + 13.4174676 + ], + [ + 52.5702681, + 13.4174515 + ], + [ + 52.5697909, + 13.4166662 + ], + [ + 52.5693322, + 13.4158826 + ], + [ + 52.568837, + 13.4150311 + ], + [ + 52.5683468, + 13.4141881 + ], + [ + 52.5674208, + 13.4125967 + ], + [ + 52.5673411, + 13.4124581 + ] + ] + }, + { + "osmId": "251840355", + "name": null, + "lengthMeters": 1664.0071735361016, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5983622, + 13.4512494 + ], + [ + 52.5984465, + 13.4513465 + ], + [ + 52.5985953, + 13.4515183 + ], + [ + 52.5992602, + 13.4523341 + ], + [ + 52.5995015, + 13.4526233 + ], + [ + 52.5997443, + 13.4529242 + ], + [ + 52.599799, + 13.4529889 + ], + [ + 52.5998117, + 13.453004 + ], + [ + 52.5999979, + 13.4532242 + ], + [ + 52.600218, + 13.453476 + ], + [ + 52.6009509, + 13.4542952 + ], + [ + 52.6010971, + 13.4544596 + ], + [ + 52.6012862, + 13.4547001 + ], + [ + 52.6013794, + 13.4548197 + ], + [ + 52.6014501, + 13.4549191 + ], + [ + 52.6016136, + 13.4551567 + ], + [ + 52.6017728, + 13.455408 + ], + [ + 52.6019658, + 13.4557423 + ], + [ + 52.6024548, + 13.4566216 + ], + [ + 52.6026169, + 13.4568974 + ], + [ + 52.6027694, + 13.4571318 + ], + [ + 52.6029063, + 13.457328 + ], + [ + 52.6030734, + 13.4575455 + ], + [ + 52.603239, + 13.4577433 + ], + [ + 52.603435, + 13.4579508 + ], + [ + 52.6037037, + 13.4582002 + ], + [ + 52.6038299, + 13.4583043 + ], + [ + 52.6039768, + 13.4584118 + ], + [ + 52.6040589, + 13.4584724 + ], + [ + 52.6043389, + 13.4586402 + ], + [ + 52.6045639, + 13.4587555 + ], + [ + 52.6048019, + 13.4588505 + ], + [ + 52.6049691, + 13.4589057 + ], + [ + 52.6051492, + 13.4589529 + ], + [ + 52.6052871, + 13.4589812 + ], + [ + 52.6055095, + 13.4590124 + ], + [ + 52.6057532, + 13.4590217 + ], + [ + 52.6059986, + 13.459014 + ], + [ + 52.6062027, + 13.4589871 + ], + [ + 52.6064431, + 13.458943 + ], + [ + 52.6068925, + 13.4587935 + ], + [ + 52.6073171, + 13.4585721 + ], + [ + 52.6074751, + 13.4584713 + ], + [ + 52.6075899, + 13.4583896 + ], + [ + 52.6077991, + 13.4582278 + ], + [ + 52.6080243, + 13.4580268 + ], + [ + 52.6082384, + 13.4578114 + ], + [ + 52.6083951, + 13.4576319 + ], + [ + 52.6084469, + 13.4575727 + ], + [ + 52.6086786, + 13.4572837 + ], + [ + 52.6090176, + 13.4568244 + ], + [ + 52.6090987, + 13.4567146 + ], + [ + 52.6097218, + 13.4558715 + ], + [ + 52.6100151, + 13.4554777 + ], + [ + 52.6101877, + 13.4552573 + ], + [ + 52.6102605, + 13.4551667 + ], + [ + 52.6105313, + 13.4548388 + ], + [ + 52.6108876, + 13.4543778 + ] + ] + }, + { + "osmId": "251840358", + "name": "Stettiner Bahn", + "lengthMeters": 451.364493056181, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5830275, + 13.4348168 + ], + [ + 52.5847864, + 13.436578 + ], + [ + 52.5848741, + 13.4366701 + ], + [ + 52.5851407, + 13.4369512 + ], + [ + 52.5859396, + 13.4378157 + ], + [ + 52.5864631, + 13.4383735 + ] + ] + }, + { + "osmId": "252254904", + "name": "U8", + "lengthMeters": 489.7594545115111, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249771, + 13.4060891 + ], + [ + 52.5248723, + 13.4066529 + ], + [ + 52.5248197, + 13.4069236 + ], + [ + 52.5247596, + 13.4071564 + ], + [ + 52.5247581, + 13.407164 + ], + [ + 52.5247029, + 13.4073413 + ], + [ + 52.5242966, + 13.4084701 + ], + [ + 52.5242261, + 13.4086205 + ], + [ + 52.524147, + 13.4087545 + ], + [ + 52.5240504, + 13.408888 + ], + [ + 52.5239582, + 13.4089852 + ], + [ + 52.5238555, + 13.4090675 + ], + [ + 52.523744, + 13.4091327 + ], + [ + 52.5236267, + 13.4091802 + ], + [ + 52.5231204, + 13.4093206 + ], + [ + 52.5229451, + 13.4093927 + ], + [ + 52.522822, + 13.4094665 + ], + [ + 52.5227216, + 13.4095473 + ], + [ + 52.5226113, + 13.4096601 + ], + [ + 52.5225483, + 13.4097411 + ], + [ + 52.5224934, + 13.4098315 + ], + [ + 52.522431, + 13.4099521 + ], + [ + 52.5223906, + 13.4100528 + ], + [ + 52.5223226, + 13.4102647 + ], + [ + 52.5221097, + 13.4108914 + ] + ] + }, + { + "osmId": "252377861", + "name": null, + "lengthMeters": 4115.366092513848, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1188884, + 11.5768358 + ], + [ + 48.1179694, + 11.5769497 + ], + [ + 48.117524, + 11.5770086 + ], + [ + 48.1172114, + 11.5770893 + ], + [ + 48.1169086, + 11.5771879 + ], + [ + 48.1166952, + 11.5773013 + ], + [ + 48.1164795, + 11.5774366 + ], + [ + 48.1162704, + 11.5776159 + ], + [ + 48.1160581, + 11.5778236 + ], + [ + 48.1158639, + 11.578049 + ], + [ + 48.1156772, + 11.5782937 + ], + [ + 48.1154835, + 11.5785935 + ], + [ + 48.1153514, + 11.5788438 + ], + [ + 48.1152193, + 11.57915 + ], + [ + 48.1151211, + 11.5794409 + ], + [ + 48.1150296, + 11.5797335 + ], + [ + 48.1146734, + 11.5809664 + ], + [ + 48.1142515, + 11.5825294 + ], + [ + 48.114002, + 11.5835612 + ], + [ + 48.1139026, + 11.5839176 + ], + [ + 48.1132358, + 11.5857478 + ], + [ + 48.1128133, + 11.5867869 + ], + [ + 48.112527, + 11.587524 + ], + [ + 48.1119726, + 11.5889605 + ], + [ + 48.1114538, + 11.5903049 + ], + [ + 48.1109274, + 11.5916689 + ], + [ + 48.1108207, + 11.5919669 + ], + [ + 48.1107345, + 11.5922543 + ], + [ + 48.1106589, + 11.5925715 + ], + [ + 48.1106111, + 11.5928989 + ], + [ + 48.1105943, + 11.593181 + ], + [ + 48.1105932, + 11.5934626 + ], + [ + 48.110624, + 11.593813 + ], + [ + 48.1106865, + 11.5942582 + ], + [ + 48.1109586, + 11.5957094 + ], + [ + 48.1111917, + 11.5969238 + ], + [ + 48.1112743, + 11.5972998 + ], + [ + 48.1113714, + 11.597655 + ], + [ + 48.1115363, + 11.5980677 + ], + [ + 48.1117299, + 11.5984174 + ], + [ + 48.1120535, + 11.5989371 + ], + [ + 48.1122828, + 11.599268 + ], + [ + 48.1123019, + 11.5992956 + ], + [ + 48.1125594, + 11.5996001 + ], + [ + 48.1128034, + 11.5998335 + ], + [ + 48.1131315, + 11.600051 + ], + [ + 48.1141517, + 11.6005778 + ], + [ + 48.1144273, + 11.6007571 + ], + [ + 48.114766, + 11.6010345 + ], + [ + 48.1150439, + 11.6013389 + ], + [ + 48.1153582, + 11.6017279 + ], + [ + 48.1155972, + 11.6020831 + ], + [ + 48.1158013, + 11.6024454 + ], + [ + 48.1159578, + 11.6027702 + ], + [ + 48.1160692, + 11.6030878 + ], + [ + 48.1168687, + 11.6060681 + ], + [ + 48.1170536, + 11.6066467 + ], + [ + 48.1172917, + 11.60726 + ], + [ + 48.117825, + 11.6083929 + ], + [ + 48.118472, + 11.609741 + ], + [ + 48.1195751, + 11.6118157 + ], + [ + 48.1199446, + 11.612394 + ], + [ + 48.1201207, + 11.612624 + ], + [ + 48.1202319, + 11.6128033 + ], + [ + 48.120333, + 11.6130198 + ], + [ + 48.1204098, + 11.6132363 + ], + [ + 48.1204993, + 11.6136095 + ], + [ + 48.1205914, + 11.6142536 + ], + [ + 48.1206198, + 11.614833 + ], + [ + 48.120613, + 11.6153776 + ], + [ + 48.1205837, + 11.6161658 + ], + [ + 48.1205068, + 11.6171613 + ], + [ + 48.1204822, + 11.6174804 + ], + [ + 48.1204578, + 11.6177965 + ], + [ + 48.1203989, + 11.6186775 + ], + [ + 48.1203393, + 11.6195613 + ], + [ + 48.1202758, + 11.6206937 + ] + ] + }, + { + "osmId": "252505227", + "name": null, + "lengthMeters": 82.51853063492769, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4309155, + 13.3295188 + ], + [ + 52.4307716, + 13.3292741 + ], + [ + 52.4306392, + 13.3290611 + ], + [ + 52.4305161, + 13.3288739 + ], + [ + 52.4303832, + 13.3286712 + ] + ] + }, + { + "osmId": "252505232", + "name": null, + "lengthMeters": 184.65128437131102, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4295837, + 13.3278595 + ], + [ + 52.4296654, + 13.3279666 + ], + [ + 52.4298568, + 13.3282204 + ], + [ + 52.4300491, + 13.3284786 + ], + [ + 52.4302932, + 13.3288297 + ], + [ + 52.4305677, + 13.3292394 + ], + [ + 52.4308322, + 13.3296532 + ] + ] + }, + { + "osmId": "252505233", + "name": "Anhalter Bahn", + "lengthMeters": 141.919029459271, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4302102, + 13.3296108 + ], + [ + 52.4295962, + 13.3287065 + ], + [ + 52.429336, + 13.3283233 + ], + [ + 52.4292606, + 13.3282122 + ] + ] + }, + { + "osmId": "252505236", + "name": "Anhalter Bahn", + "lengthMeters": 141.45029510471403, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4291727, + 13.3281608 + ], + [ + 52.4298584, + 13.3291736 + ], + [ + 52.430118, + 13.3295569 + ] + ] + }, + { + "osmId": "252505239", + "name": "Stettiner Bahn", + "lengthMeters": 322.7453844231483, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.555599, + 13.398352 + ], + [ + 52.5556527, + 13.3983397 + ], + [ + 52.5558499, + 13.3982868 + ], + [ + 52.5561843, + 13.3982172 + ], + [ + 52.5562923, + 13.398203 + ], + [ + 52.5565534, + 13.3981656 + ], + [ + 52.5565672, + 13.3981636 + ], + [ + 52.5567395, + 13.3981539 + ], + [ + 52.5571324, + 13.3981525 + ], + [ + 52.5575282, + 13.3982193 + ], + [ + 52.5577221, + 13.398271 + ], + [ + 52.5579503, + 13.3983451 + ], + [ + 52.5582053, + 13.3984518 + ], + [ + 52.5584656, + 13.3985805 + ] + ] + }, + { + "osmId": "252505240", + "name": "Stettiner Bahn", + "lengthMeters": 1065.1137798983996, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5864756, + 13.4383166 + ], + [ + 52.5853643, + 13.4371177 + ], + [ + 52.5851663, + 13.4369084 + ], + [ + 52.5848069, + 13.436532 + ], + [ + 52.5830358, + 13.4347737 + ], + [ + 52.5827339, + 13.434462 + ], + [ + 52.5824322, + 13.434135 + ], + [ + 52.5822155, + 13.4339176 + ], + [ + 52.5819315, + 13.4336117 + ], + [ + 52.5806305, + 13.43216 + ], + [ + 52.5801773, + 13.4316849 + ], + [ + 52.5797054, + 13.4312333 + ], + [ + 52.5789584, + 13.4305583 + ], + [ + 52.5787518, + 13.4303842 + ], + [ + 52.5783427, + 13.430003 + ] + ] + }, + { + "osmId": "252505259", + "name": "Stettiner Bahn", + "lengthMeters": 197.74298321379564, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5891239, + 13.4412404 + ], + [ + 52.5904626, + 13.4426998 + ], + [ + 52.590609, + 13.4428505 + ] + ] + }, + { + "osmId": "252505265", + "name": "Anhalter Bahn", + "lengthMeters": 193.3066625274024, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3887562, + 13.2999093 + ], + [ + 52.3886887, + 13.2998813 + ], + [ + 52.3870708, + 13.299211 + ] + ] + }, + { + "osmId": "252505269", + "name": "Stettiner Bahn", + "lengthMeters": 190.22602904266788, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.612427, + 13.4666368 + ], + [ + 52.6119857, + 13.4661135 + ], + [ + 52.6110537, + 13.464957 + ] + ] + }, + { + "osmId": "252505272", + "name": "Anhalter Bahn", + "lengthMeters": 476.9270141013513, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4664994, + 13.3616251 + ], + [ + 52.4664259, + 13.3615996 + ], + [ + 52.4658646, + 13.3613962 + ], + [ + 52.4652551, + 13.3611799 + ], + [ + 52.4642131, + 13.3608286 + ], + [ + 52.4637977, + 13.3606928 + ], + [ + 52.4634782, + 13.3605871 + ], + [ + 52.463116, + 13.3604645 + ], + [ + 52.4627163, + 13.3603263 + ], + [ + 52.4623166, + 13.3601855 + ], + [ + 52.4623016, + 13.360181 + ] + ] + }, + { + "osmId": "252505274", + "name": "Anhalter Bahn", + "lengthMeters": 195.18144991697935, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4292606, + 13.3282122 + ], + [ + 52.4290001, + 13.3278281 + ], + [ + 52.428002, + 13.3263564 + ], + [ + 52.4279553, + 13.3262875 + ] + ] + }, + { + "osmId": "252505278", + "name": "Stettiner Bahn", + "lengthMeters": 216.1595377964217, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6127796, + 13.4671315 + ], + [ + 52.6129162, + 13.4672839 + ], + [ + 52.613384, + 13.4677811 + ], + [ + 52.6134451, + 13.4678474 + ], + [ + 52.6144046, + 13.4688886 + ] + ] + }, + { + "osmId": "252505282", + "name": "Anhalter Bahn", + "lengthMeters": 530.6635936436935, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.430118, + 13.3295569 + ], + [ + 52.4305828, + 13.3302408 + ], + [ + 52.430789, + 13.330543 + ], + [ + 52.4318527, + 13.3321129 + ], + [ + 52.4322822, + 13.3327534 + ], + [ + 52.4327435, + 13.3334531 + ], + [ + 52.4331366, + 13.3340598 + ], + [ + 52.4336422, + 13.3348344 + ] + ] + }, + { + "osmId": "252505290", + "name": null, + "lengthMeters": 78.50954114791378, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4308322, + 13.3296532 + ], + [ + 52.4313336, + 13.3304685 + ] + ] + }, + { + "osmId": "252505295", + "name": "Stettiner Bahn", + "lengthMeters": 597.6866022423676, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5969895, + 13.4496923 + ], + [ + 52.5964748, + 13.4491336 + ], + [ + 52.5949284, + 13.4474531 + ], + [ + 52.5928367, + 13.4451941 + ], + [ + 52.5924992, + 13.4448285 + ] + ] + }, + { + "osmId": "252505299", + "name": null, + "lengthMeters": 664.8038756079998, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4723372, + 13.3637419 + ], + [ + 52.4722636, + 13.3637123 + ], + [ + 52.4719901, + 13.3636007 + ], + [ + 52.4715804, + 13.3634418 + ], + [ + 52.4705464, + 13.3630644 + ], + [ + 52.4700513, + 13.3628904 + ], + [ + 52.4687596, + 13.3624283 + ], + [ + 52.467802, + 13.3620881 + ], + [ + 52.4664994, + 13.3616251 + ] + ] + }, + { + "osmId": "252505356", + "name": "Stettiner Bahn", + "lengthMeters": 401.8890390204203, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5906298, + 13.4428011 + ], + [ + 52.5902197, + 13.4423522 + ], + [ + 52.590153, + 13.4422806 + ], + [ + 52.5897157, + 13.4418106 + ], + [ + 52.5894572, + 13.4415328 + ], + [ + 52.588757, + 13.4407692 + ], + [ + 52.5882169, + 13.4402062 + ], + [ + 52.5879552, + 13.439909 + ], + [ + 52.5876101, + 13.4395326 + ] + ] + }, + { + "osmId": "252661692", + "name": null, + "lengthMeters": 386.8426899206757, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1159327, + 11.5803123 + ], + [ + 48.116218, + 11.5806128 + ], + [ + 48.11642, + 11.5808362 + ], + [ + 48.1166215, + 11.5810631 + ], + [ + 48.1167018, + 11.5811551 + ], + [ + 48.1168295, + 11.5812998 + ], + [ + 48.116958, + 11.5814428 + ], + [ + 48.1173216, + 11.5818514 + ], + [ + 48.1173886, + 11.5819242 + ], + [ + 48.1175932, + 11.5821421 + ], + [ + 48.1177713, + 11.5823238 + ], + [ + 48.1179083, + 11.5824623 + ], + [ + 48.1179544, + 11.5825086 + ], + [ + 48.1180592, + 11.5826145 + ], + [ + 48.1182548, + 11.5828155 + ], + [ + 48.1185984, + 11.5831814 + ], + [ + 48.1187227, + 11.5833047 + ], + [ + 48.1187616, + 11.5833436 + ] + ] + }, + { + "osmId": "253080593", + "name": null, + "lengthMeters": 140.07720677061076, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334119, + 11.7053443 + ], + [ + 48.1334363, + 11.7051011 + ], + [ + 48.1334319, + 11.7034595 + ] + ] + }, + { + "osmId": "253086401", + "name": null, + "lengthMeters": 421.42371143449367, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6378508, + 13.2848697 + ], + [ + 52.6373251, + 13.2851693 + ], + [ + 52.6369333, + 13.2854316 + ], + [ + 52.6366616, + 13.2856491 + ], + [ + 52.6365333, + 13.285752 + ], + [ + 52.6361001, + 13.2861345 + ], + [ + 52.635672, + 13.2865631 + ], + [ + 52.6356508, + 13.2865833 + ], + [ + 52.6350753, + 13.2872338 + ], + [ + 52.6345427, + 13.2878514 + ] + ] + }, + { + "osmId": "253842819", + "name": null, + "lengthMeters": 446.7806469895784, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6077099, + 13.4609377 + ], + [ + 52.6078569, + 13.4610414 + ], + [ + 52.6080152, + 13.4611446 + ], + [ + 52.6083346, + 13.4613345 + ], + [ + 52.6085972, + 13.4615122 + ], + [ + 52.6088471, + 13.4617046 + ], + [ + 52.6090207, + 13.4618582 + ], + [ + 52.6091915, + 13.4620344 + ], + [ + 52.6094824, + 13.4623899 + ], + [ + 52.6096062, + 13.4625676 + ], + [ + 52.6097283, + 13.4627641 + ], + [ + 52.6099494, + 13.4631414 + ], + [ + 52.6102833, + 13.4637402 + ], + [ + 52.6104165, + 13.4639677 + ], + [ + 52.6105583, + 13.4641828 + ], + [ + 52.6106567, + 13.4643231 + ], + [ + 52.6107586, + 13.4644584 + ], + [ + 52.610946, + 13.4646915 + ] + ] + }, + { + "osmId": "253842823", + "name": null, + "lengthMeters": 878.9648383058039, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6600311, + 13.4300346 + ], + [ + 52.6543171, + 13.4287298 + ], + [ + 52.6540007, + 13.4286613 + ], + [ + 52.6536537, + 13.4286224 + ], + [ + 52.653173, + 13.4285909 + ], + [ + 52.6528703, + 13.4285852 + ], + [ + 52.6521857, + 13.4286414 + ] + ] + }, + { + "osmId": "253842824", + "name": null, + "lengthMeters": 2644.5099844802207, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6502699, + 13.4292783 + ], + [ + 52.6501855, + 13.4293305 + ], + [ + 52.6500867, + 13.4293864 + ], + [ + 52.6498258, + 13.4295294 + ], + [ + 52.6496012, + 13.4296701 + ], + [ + 52.6493055, + 13.4298718 + ], + [ + 52.6486011, + 13.4304631 + ], + [ + 52.6479162, + 13.4311524 + ], + [ + 52.6471599, + 13.4320801 + ], + [ + 52.6465445, + 13.4330633 + ], + [ + 52.6463267, + 13.4334398 + ], + [ + 52.6459094, + 13.4342551 + ], + [ + 52.6450953, + 13.4359975 + ], + [ + 52.6406167, + 13.4456013 + ], + [ + 52.6405775, + 13.4456856 + ], + [ + 52.6405343, + 13.4457784 + ], + [ + 52.6386647, + 13.4497947 + ], + [ + 52.6346996, + 13.4582946 + ] + ] + }, + { + "osmId": "253974574", + "name": null, + "lengthMeters": 464.9771795746115, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144328, + 13.517147 + ], + [ + 52.5144473, + 13.5164797 + ], + [ + 52.5144918, + 13.5144616 + ], + [ + 52.5144936, + 13.5143908 + ], + [ + 52.5144943, + 13.5143374 + ], + [ + 52.5145041, + 13.513891 + ], + [ + 52.5145204, + 13.5129971 + ], + [ + 52.514528, + 13.5124377 + ], + [ + 52.5145229, + 13.5118802 + ], + [ + 52.5145083, + 13.5113961 + ], + [ + 52.5144964, + 13.5111293 + ], + [ + 52.5144847, + 13.5109071 + ], + [ + 52.5144667, + 13.5106203 + ], + [ + 52.5144514, + 13.5103955 + ], + [ + 52.5144439, + 13.5102841 + ] + ] + }, + { + "osmId": "254133722", + "name": null, + "lengthMeters": 486.84434291486826, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102665, + 13.3345201 + ], + [ + 52.5098878, + 13.3342728 + ], + [ + 52.5096798, + 13.3341234 + ], + [ + 52.5096324, + 13.3340879 + ], + [ + 52.5096106, + 13.3340719 + ], + [ + 52.5093618, + 13.33388 + ], + [ + 52.5091165, + 13.3336765 + ], + [ + 52.5088839, + 13.333473 + ], + [ + 52.5085311, + 13.3331643 + ], + [ + 52.5081632, + 13.3328725 + ], + [ + 52.5080088, + 13.3327501 + ], + [ + 52.5079602, + 13.3327141 + ], + [ + 52.5074358, + 13.3323257 + ], + [ + 52.5072664, + 13.3321915 + ], + [ + 52.5069038, + 13.3319041 + ], + [ + 52.5068971, + 13.3318982 + ], + [ + 52.5068627, + 13.3318675 + ], + [ + 52.50642, + 13.3314734 + ], + [ + 52.5063303, + 13.3313821 + ] + ] + }, + { + "osmId": "254133723", + "name": null, + "lengthMeters": 306.1775777212998, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053402, + 13.330052 + ], + [ + 52.5052622, + 13.3298826 + ], + [ + 52.5052153, + 13.3297731 + ], + [ + 52.5051679, + 13.329661 + ], + [ + 52.5051221, + 13.3295433 + ], + [ + 52.5050521, + 13.3293427 + ], + [ + 52.5049867, + 13.3291396 + ], + [ + 52.504953, + 13.3290223 + ], + [ + 52.5049207, + 13.3289032 + ], + [ + 52.5048884, + 13.3287811 + ], + [ + 52.5048591, + 13.3286554 + ], + [ + 52.5048286, + 13.3285163 + ], + [ + 52.5048003, + 13.3283772 + ], + [ + 52.5047786, + 13.3282587 + ], + [ + 52.5047586, + 13.3281402 + ], + [ + 52.5047411, + 13.3280273 + ], + [ + 52.5047257, + 13.3279133 + ], + [ + 52.5047036, + 13.3277364 + ], + [ + 52.5046855, + 13.3275524 + ], + [ + 52.5046693, + 13.3273572 + ], + [ + 52.5046581, + 13.3271631 + ], + [ + 52.5046507, + 13.3268539 + ], + [ + 52.5046507, + 13.326696 + ], + [ + 52.5046541, + 13.3265369 + ], + [ + 52.5046917, + 13.3257871 + ] + ] + }, + { + "osmId": "254150070", + "name": null, + "lengthMeters": 110.5824387990372, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055174, + 13.3304807 + ], + [ + 52.5058108, + 13.3309922 + ], + [ + 52.5059279, + 13.3311653 + ], + [ + 52.5061654, + 13.3314743 + ], + [ + 52.5062315, + 13.3315585 + ], + [ + 52.5062498, + 13.3315802 + ] + ] + }, + { + "osmId": "254150072", + "name": "Berliner Stadtbahn", + "lengthMeters": 108.08018980304183, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118036, + 13.3353634 + ], + [ + 52.512044, + 13.3354854 + ], + [ + 52.5122894, + 13.3356131 + ], + [ + 52.5124618, + 13.3356994 + ], + [ + 52.5126812, + 13.3358106 + ], + [ + 52.5127319, + 13.3358368 + ] + ] + }, + { + "osmId": "254156325", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1070.392573921881, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5579078, + 13.0964364 + ], + [ + 52.5578947, + 13.0964889 + ], + [ + 52.5569787, + 13.1000121 + ], + [ + 52.5567633, + 13.1008159 + ], + [ + 52.5566965, + 13.1010825 + ], + [ + 52.5559943, + 13.1037467 + ], + [ + 52.555699, + 13.1049089 + ], + [ + 52.5555797, + 13.105375 + ], + [ + 52.5552143, + 13.1067511 + ], + [ + 52.554918, + 13.1078275 + ], + [ + 52.5548644, + 13.1080222 + ], + [ + 52.5548414, + 13.1081058 + ], + [ + 52.5545178, + 13.1092812 + ], + [ + 52.5541929, + 13.1104501 + ], + [ + 52.5540553, + 13.1109452 + ] + ] + }, + { + "osmId": "254167617", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 653.2240172102677, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5579438, + 13.0964573 + ], + [ + 52.5583418, + 13.0949371 + ], + [ + 52.5584244, + 13.0946183 + ], + [ + 52.5593076, + 13.0912087 + ], + [ + 52.559509, + 13.090431 + ], + [ + 52.559639, + 13.0899304 + ], + [ + 52.5599977, + 13.0885653 + ], + [ + 52.5602578, + 13.0875755 + ] + ] + }, + { + "osmId": "254196862", + "name": "Lehrter Bahn", + "lengthMeters": 4222.52096281574, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5454594, + 13.0313021 + ], + [ + 52.5453568, + 13.0327585 + ], + [ + 52.545279, + 13.0339315 + ], + [ + 52.5452731, + 13.0340201 + ], + [ + 52.5452105, + 13.0348988 + ], + [ + 52.5451483, + 13.035802 + ], + [ + 52.5451336, + 13.0360156 + ], + [ + 52.545081, + 13.0367799 + ], + [ + 52.5450234, + 13.0375914 + ], + [ + 52.5449837, + 13.0381509 + ], + [ + 52.5448108, + 13.0406627 + ], + [ + 52.5447766, + 13.0411538 + ], + [ + 52.5445724, + 13.0440872 + ], + [ + 52.5441463, + 13.05028 + ], + [ + 52.543954, + 13.0530159 + ], + [ + 52.543814, + 13.0550502 + ], + [ + 52.543767, + 13.0557282 + ], + [ + 52.5436365, + 13.0576369 + ], + [ + 52.5436348, + 13.0576592 + ], + [ + 52.5435989, + 13.0581364 + ], + [ + 52.5435648, + 13.0586579 + ], + [ + 52.5435625, + 13.0586918 + ], + [ + 52.5433377, + 13.0619267 + ], + [ + 52.5429293, + 13.0678033 + ], + [ + 52.5427526, + 13.0703467 + ], + [ + 52.5425645, + 13.0730503 + ], + [ + 52.542549, + 13.0732754 + ], + [ + 52.5423112, + 13.0767169 + ], + [ + 52.542121, + 13.0794323 + ], + [ + 52.5419326, + 13.0820979 + ], + [ + 52.5417067, + 13.08502 + ], + [ + 52.5414818, + 13.0879422 + ], + [ + 52.5414695, + 13.0880958 + ], + [ + 52.5412364, + 13.0910946 + ], + [ + 52.5410708, + 13.0931736 + ], + [ + 52.541059, + 13.0933212 + ] + ] + }, + { + "osmId": "254196863", + "name": "Lehrter Bahn", + "lengthMeters": 3764.39113821689, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.541059, + 13.0933212 + ], + [ + 52.5409763, + 13.0943454 + ], + [ + 52.5408301, + 13.0962685 + ], + [ + 52.5407919, + 13.0967452 + ], + [ + 52.5407491, + 13.097338 + ], + [ + 52.5405424, + 13.1001173 + ], + [ + 52.5403467, + 13.1029006 + ], + [ + 52.5402991, + 13.1035782 + ], + [ + 52.5401586, + 13.1055991 + ], + [ + 52.5399548, + 13.1084599 + ], + [ + 52.5399156, + 13.1090348 + ], + [ + 52.5399033, + 13.1092158 + ], + [ + 52.5398014, + 13.1106509 + ], + [ + 52.539754, + 13.111318 + ], + [ + 52.5396041, + 13.11347 + ], + [ + 52.5394991, + 13.11494 + ], + [ + 52.5394474, + 13.1156782 + ], + [ + 52.5393517, + 13.1171281 + ], + [ + 52.5393164, + 13.117721 + ], + [ + 52.5392646, + 13.1185838 + ], + [ + 52.5391577, + 13.1206153 + ], + [ + 52.5391007, + 13.1215378 + ], + [ + 52.5389673, + 13.1235353 + ], + [ + 52.5387698, + 13.1263147 + ], + [ + 52.5386192, + 13.1284811 + ], + [ + 52.5386158, + 13.1285283 + ], + [ + 52.53857, + 13.1292067 + ], + [ + 52.5384648, + 13.1306082 + ], + [ + 52.5383699, + 13.1320046 + ], + [ + 52.5381941, + 13.134508 + ], + [ + 52.5380627, + 13.1362125 + ], + [ + 52.5378966, + 13.1381534 + ], + [ + 52.5378702, + 13.1384616 + ], + [ + 52.537811, + 13.1391703 + ], + [ + 52.5377735, + 13.1396444 + ], + [ + 52.5377379, + 13.1401185 + ], + [ + 52.5376769, + 13.140993 + ], + [ + 52.5376551, + 13.1413249 + ], + [ + 52.5376217, + 13.1418471 + ], + [ + 52.5375961, + 13.1422607 + ], + [ + 52.5375506, + 13.1429901 + ], + [ + 52.5374873, + 13.1441715 + ], + [ + 52.5374451, + 13.1449332 + ], + [ + 52.5374049, + 13.1456344 + ], + [ + 52.5373505, + 13.1465162 + ], + [ + 52.5373052, + 13.1472678 + ], + [ + 52.5372251, + 13.1486199 + ] + ] + }, + { + "osmId": "254196864", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 182.86803410555, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371156, + 13.1519192 + ], + [ + 52.5371773, + 13.1509272 + ], + [ + 52.5372821, + 13.1492293 + ] + ] + }, + { + "osmId": "254196868", + "name": "Lehrter Bahn", + "lengthMeters": 3964.2373973083772, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.540992, + 13.0947324 + ], + [ + 52.5410142, + 13.0944459 + ], + [ + 52.5411111, + 13.0931807 + ], + [ + 52.5412723, + 13.0911084 + ], + [ + 52.5415057, + 13.088094 + ], + [ + 52.5415174, + 13.0879501 + ], + [ + 52.5417452, + 13.0850251 + ], + [ + 52.5419712, + 13.0820989 + ], + [ + 52.5421747, + 13.0794434 + ], + [ + 52.5423847, + 13.0767358 + ], + [ + 52.542649, + 13.0732896 + ], + [ + 52.5426648, + 13.073088 + ], + [ + 52.5428572, + 13.070364 + ], + [ + 52.5430323, + 13.0678206 + ], + [ + 52.5432147, + 13.0652197 + ], + [ + 52.5434412, + 13.0619423 + ], + [ + 52.5436697, + 13.0586705 + ], + [ + 52.5436959, + 13.058287 + ], + [ + 52.5437345, + 13.0576764 + ], + [ + 52.5438498, + 13.0557433 + ], + [ + 52.543886, + 13.0550688 + ], + [ + 52.5440048, + 13.0530245 + ], + [ + 52.5441875, + 13.0502902 + ], + [ + 52.5443742, + 13.0475826 + ], + [ + 52.5446149, + 13.0440887 + ], + [ + 52.5448204, + 13.041161 + ], + [ + 52.5448598, + 13.0405818 + ], + [ + 52.5450276, + 13.0381557 + ], + [ + 52.5450657, + 13.0375994 + ], + [ + 52.5451402, + 13.0365119 + ] + ] + }, + { + "osmId": "254358508", + "name": null, + "lengthMeters": 1006.7271669762135, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4851033, + 10.2058452 + ], + [ + 53.4851675, + 10.2052504 + ], + [ + 53.4852027, + 10.2049463 + ], + [ + 53.4852496, + 10.2045661 + ], + [ + 53.4852993, + 10.2042094 + ], + [ + 53.4854022, + 10.20348 + ], + [ + 53.4854561, + 10.2030822 + ], + [ + 53.4854974, + 10.202739 + ], + [ + 53.4855561, + 10.2021994 + ], + [ + 53.4855614, + 10.202151 + ], + [ + 53.4855785, + 10.2019935 + ], + [ + 53.4856036, + 10.2017552 + ], + [ + 53.4856356, + 10.2014675 + ], + [ + 53.4856603, + 10.2011987 + ], + [ + 53.4856739, + 10.200943 + ], + [ + 53.4857071, + 10.2001119 + ], + [ + 53.4857448, + 10.1992251 + ], + [ + 53.4857572, + 10.198961 + ], + [ + 53.4857768, + 10.1986981 + ], + [ + 53.4858995, + 10.1975452 + ], + [ + 53.4859229, + 10.1973284 + ], + [ + 53.4861242, + 10.1954586 + ], + [ + 53.4861577, + 10.19511 + ], + [ + 53.486177, + 10.1948338 + ], + [ + 53.4861881, + 10.1945814 + ], + [ + 53.4861981, + 10.194335 + ], + [ + 53.4862185, + 10.1938015 + ], + [ + 53.4862686, + 10.1925849 + ], + [ + 53.4862838, + 10.1923203 + ], + [ + 53.4863109, + 10.1920657 + ], + [ + 53.4863512, + 10.1917956 + ], + [ + 53.486515, + 10.1908489 + ] + ] + }, + { + "osmId": "254694279", + "name": null, + "lengthMeters": 749.6329465835196, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.464806, + 13.584179 + ], + [ + 52.4655335, + 13.5842593 + ], + [ + 52.4657688, + 13.5842752 + ], + [ + 52.4659334, + 13.5843138 + ], + [ + 52.4661192, + 13.5844208 + ], + [ + 52.4663299, + 13.5846069 + ], + [ + 52.4664912, + 13.5847986 + ], + [ + 52.4665618, + 13.5848826 + ], + [ + 52.4666309, + 13.5849635 + ], + [ + 52.4669377, + 13.5853227 + ], + [ + 52.4671466, + 13.5856012 + ], + [ + 52.4673414, + 13.5858205 + ], + [ + 52.4674817, + 13.5859859 + ], + [ + 52.467541, + 13.5860558 + ], + [ + 52.4676337, + 13.5861651 + ], + [ + 52.4686131, + 13.5873192 + ], + [ + 52.468696, + 13.587417 + ], + [ + 52.4689986, + 13.5877678 + ], + [ + 52.4692928, + 13.5881514 + ], + [ + 52.4693233, + 13.5881909 + ], + [ + 52.4693546, + 13.5882328 + ], + [ + 52.4696309, + 13.5886074 + ], + [ + 52.4697334, + 13.588738 + ], + [ + 52.4698321, + 13.5888636 + ], + [ + 52.4698986, + 13.5889661 + ], + [ + 52.4699304, + 13.5890151 + ], + [ + 52.4701357, + 13.5893319 + ], + [ + 52.4703988, + 13.5898233 + ] + ] + }, + { + "osmId": "254694281", + "name": null, + "lengthMeters": 751.8592069319924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.470426, + 13.5897772 + ], + [ + 52.4701961, + 13.5893611 + ], + [ + 52.4699531, + 13.5889689 + ], + [ + 52.4699333, + 13.5889369 + ], + [ + 52.469882, + 13.5888694 + ], + [ + 52.4698454, + 13.5888211 + ], + [ + 52.4697524, + 13.5886987 + ], + [ + 52.4694014, + 13.588238 + ], + [ + 52.4691277, + 13.5878809 + ], + [ + 52.4689209, + 13.5876216 + ], + [ + 52.4687066, + 13.5873754 + ], + [ + 52.468645, + 13.5873022 + ], + [ + 52.4683273, + 13.5869247 + ], + [ + 52.4680471, + 13.5865992 + ], + [ + 52.4676466, + 13.5861176 + ], + [ + 52.4675763, + 13.5860329 + ], + [ + 52.4675596, + 13.5860139 + ], + [ + 52.4674983, + 13.5859441 + ], + [ + 52.46736, + 13.5857867 + ], + [ + 52.4671864, + 13.5855872 + ], + [ + 52.4669343, + 13.5852626 + ], + [ + 52.4666444, + 13.5849318 + ], + [ + 52.4665758, + 13.5848489 + ], + [ + 52.466505, + 13.5847634 + ], + [ + 52.4664964, + 13.5847529 + ], + [ + 52.4663343, + 13.5845667 + ], + [ + 52.4661582, + 13.5843785 + ], + [ + 52.4659945, + 13.5842878 + ], + [ + 52.4658459, + 13.584232 + ], + [ + 52.4656788, + 13.5842166 + ], + [ + 52.4655402, + 13.5842002 + ], + [ + 52.4654401, + 13.5841883 + ], + [ + 52.465185, + 13.5841662 + ], + [ + 52.4648103, + 13.5841346 + ] + ] + }, + { + "osmId": "254694284", + "name": null, + "lengthMeters": 87.09209359580834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4743107, + 13.5994339 + ], + [ + 52.4743674, + 13.5995622 + ], + [ + 52.4744117, + 13.599642 + ], + [ + 52.4744395, + 13.5996785 + ], + [ + 52.474521, + 13.5997517 + ], + [ + 52.4745701, + 13.5997797 + ], + [ + 52.474996, + 13.599964 + ] + ] + }, + { + "osmId": "255384809", + "name": null, + "lengthMeters": 597.1874728720348, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7219008, + 9.990856 + ], + [ + 53.720475, + 9.9912119 + ], + [ + 53.7202982, + 9.9912567 + ], + [ + 53.7191146, + 9.9915565 + ], + [ + 53.7178652, + 9.9916901 + ], + [ + 53.7170278, + 9.9917369 + ], + [ + 53.716699, + 9.9917604 + ], + [ + 53.7165709, + 9.9917695 + ], + [ + 53.7165642, + 9.99177 + ] + ] + }, + { + "osmId": "255384812", + "name": null, + "lengthMeters": 596.8274084839478, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.721901, + 9.9908052 + ], + [ + 53.7208002, + 9.9910597 + ], + [ + 53.7204613, + 9.9911515 + ], + [ + 53.720294, + 9.9911992 + ], + [ + 53.7201256, + 9.9912473 + ], + [ + 53.719551, + 9.9913855 + ], + [ + 53.7191129, + 9.9914767 + ], + [ + 53.7178601, + 9.9916191 + ], + [ + 53.7169529, + 9.991679 + ], + [ + 53.7166979, + 9.9916971 + ], + [ + 53.7165731, + 9.9917059 + ], + [ + 53.7165659, + 9.9917065 + ] + ] + }, + { + "osmId": "255385524", + "name": null, + "lengthMeters": 371.9947068547937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.656986, + 10.0162728 + ], + [ + 53.6543151, + 10.0166058 + ], + [ + 53.6542154, + 10.0166208 + ], + [ + 53.6536505, + 10.016706 + ] + ] + }, + { + "osmId": "255524351", + "name": null, + "lengthMeters": 231.8887867548188, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3617709, + 13.4075505 + ], + [ + 52.3626406, + 13.407239 + ], + [ + 52.3630001, + 13.4070922 + ], + [ + 52.3633585, + 13.4069321 + ], + [ + 52.3634279, + 13.4069076 + ], + [ + 52.3638019, + 13.4067789 + ] + ] + }, + { + "osmId": "255524352", + "name": null, + "lengthMeters": 176.55234168076717, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3617637, + 13.4073505 + ], + [ + 52.3617488, + 13.407355 + ], + [ + 52.3603868, + 13.4078311 + ], + [ + 52.3602994, + 13.4078583 + ], + [ + 52.3602105, + 13.4078899 + ] + ] + }, + { + "osmId": "255524353", + "name": null, + "lengthMeters": 179.59969194562348, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3601911, + 13.4081008 + ], + [ + 52.3602203, + 13.4080899 + ], + [ + 52.3602231, + 13.408089 + ], + [ + 52.3604123, + 13.4080209 + ], + [ + 52.3615843, + 13.4076171 + ], + [ + 52.3617413, + 13.4075595 + ], + [ + 52.3617709, + 13.4075505 + ] + ] + }, + { + "osmId": "255562641", + "name": null, + "lengthMeters": 124.33053322973737, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3539398, + 13.4249862 + ], + [ + 52.3540194, + 13.4253012 + ], + [ + 52.3543721, + 13.4266745 + ] + ] + }, + { + "osmId": "255562643", + "name": null, + "lengthMeters": 865.9157249947433, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5176488, + 13.3734162 + ], + [ + 52.517136, + 13.3735767 + ], + [ + 52.5169084, + 13.3736712 + ], + [ + 52.5164233, + 13.373873 + ], + [ + 52.515789, + 13.374212 + ], + [ + 52.5147196, + 13.374772 + ], + [ + 52.5139038, + 13.3751608 + ], + [ + 52.5134415, + 13.3753338 + ], + [ + 52.5129984, + 13.3754732 + ], + [ + 52.5125757, + 13.3755887 + ], + [ + 52.5121526, + 13.3756877 + ], + [ + 52.5117641, + 13.3757592 + ], + [ + 52.5113765, + 13.3758101 + ], + [ + 52.5109546, + 13.3758505 + ], + [ + 52.5105008, + 13.3758693 + ], + [ + 52.5102849, + 13.37587 + ], + [ + 52.5100469, + 13.3758708 + ] + ] + }, + { + "osmId": "255562648", + "name": "Berliner Ringbahn", + "lengthMeters": 168.2344011711931, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5475369, + 13.3786421 + ], + [ + 52.5475102, + 13.3785451 + ], + [ + 52.5474437, + 13.3783075 + ], + [ + 52.5473438, + 13.3779836 + ], + [ + 52.5472656, + 13.3777429 + ], + [ + 52.5471461, + 13.3774004 + ], + [ + 52.5470157, + 13.3770609 + ], + [ + 52.546781, + 13.376492 + ] + ] + }, + { + "osmId": "255562650", + "name": "Berliner Ringbahn", + "lengthMeters": 107.55732156103113, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5478145, + 13.3798721 + ], + [ + 52.5478785, + 13.3801395 + ], + [ + 52.5479969, + 13.3806866 + ], + [ + 52.5480779, + 13.3811399 + ], + [ + 52.5481166, + 13.3813818 + ] + ] + }, + { + "osmId": "255768915", + "name": null, + "lengthMeters": 130.87491352178776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4548785, + 13.7185351 + ], + [ + 52.4551542, + 13.7204128 + ] + ] + }, + { + "osmId": "255768916", + "name": null, + "lengthMeters": 1285.1264272630858, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4551542, + 13.7204128 + ], + [ + 52.4551927, + 13.7206749 + ], + [ + 52.4553564, + 13.7217816 + ], + [ + 52.455402, + 13.7221247 + ], + [ + 52.455421, + 13.7222883 + ], + [ + 52.4554413, + 13.7224933 + ], + [ + 52.455454, + 13.722673 + ], + [ + 52.4554876, + 13.7233671 + ], + [ + 52.4554959, + 13.7235596 + ], + [ + 52.4555015, + 13.723781 + ], + [ + 52.4555089, + 13.7239995 + ], + [ + 52.455516, + 13.7242302 + ], + [ + 52.4555286, + 13.7246396 + ], + [ + 52.4555525, + 13.7253899 + ], + [ + 52.4555741, + 13.726036 + ], + [ + 52.4555855, + 13.72639 + ], + [ + 52.4556019, + 13.7269327 + ], + [ + 52.4556319, + 13.7278911 + ], + [ + 52.4556601, + 13.7287379 + ], + [ + 52.4556843, + 13.7294626 + ], + [ + 52.4556952, + 13.7299656 + ], + [ + 52.455707, + 13.7306608 + ], + [ + 52.4557144, + 13.73096 + ], + [ + 52.4557215, + 13.7315544 + ], + [ + 52.455726, + 13.7317215 + ], + [ + 52.4557238, + 13.7318743 + ], + [ + 52.4557186, + 13.7320025 + ], + [ + 52.4557107, + 13.7321109 + ], + [ + 52.4557053, + 13.7321616 + ], + [ + 52.4556992, + 13.7322109 + ], + [ + 52.4556891, + 13.7322801 + ], + [ + 52.4556768, + 13.7323482 + ], + [ + 52.4556575, + 13.7324498 + ], + [ + 52.4556155, + 13.7326331 + ], + [ + 52.4552364, + 13.7342986 + ], + [ + 52.4551646, + 13.7346111 + ], + [ + 52.4550746, + 13.7350042 + ], + [ + 52.4548356, + 13.7360101 + ], + [ + 52.4544933, + 13.7375084 + ], + [ + 52.4544642, + 13.73763 + ], + [ + 52.4544473, + 13.7377158 + ], + [ + 52.4544267, + 13.7378233 + ], + [ + 52.4542832, + 13.7385887 + ], + [ + 52.4542266, + 13.7388825 + ] + ] + }, + { + "osmId": "255790943", + "name": "Heidekrautbahn", + "lengthMeters": 933.7092913329233, + "maxSpeedKph": 50.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5910587, + 13.3605063 + ], + [ + 52.5909653, + 13.3603668 + ], + [ + 52.5909439, + 13.3603348 + ], + [ + 52.5907184, + 13.3599978 + ], + [ + 52.5902673, + 13.3594006 + ], + [ + 52.5897473, + 13.3588547 + ], + [ + 52.589337, + 13.3584492 + ], + [ + 52.5890022, + 13.3581684 + ], + [ + 52.5887612, + 13.3579855 + ], + [ + 52.5884884, + 13.3578149 + ], + [ + 52.5881921, + 13.357677 + ], + [ + 52.5879373, + 13.3575813 + ], + [ + 52.5876565, + 13.3574963 + ], + [ + 52.5874053, + 13.3574421 + ], + [ + 52.5871228, + 13.3574087 + ], + [ + 52.5868132, + 13.3574129 + ], + [ + 52.5865452, + 13.3574523 + ], + [ + 52.5862595, + 13.3575084 + ], + [ + 52.5859259, + 13.3576205 + ], + [ + 52.5856783, + 13.3577275 + ], + [ + 52.5854704, + 13.3578265 + ], + [ + 52.5852839, + 13.3579406 + ], + [ + 52.5849366, + 13.3581992 + ], + [ + 52.5845456, + 13.3585924 + ], + [ + 52.5842632, + 13.3588604 + ], + [ + 52.5834895, + 13.3596017 + ] + ] + }, + { + "osmId": "255921912", + "name": "U3", + "lengthMeters": 249.4588329078086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.178629, + 11.5563496 + ], + [ + 48.1792549, + 11.5559271 + ], + [ + 48.1799096, + 11.5554842 + ], + [ + 48.1806223, + 11.5550215 + ], + [ + 48.18068, + 11.5549866 + ] + ] + }, + { + "osmId": "255921913", + "name": "U3", + "lengthMeters": 106.3018743982685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1783485, + 11.556546 + ], + [ + 48.177464, + 11.55709 + ] + ] + }, + { + "osmId": "255921916", + "name": "U3", + "lengthMeters": 105.25724293710506, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1775281, + 11.5572676 + ], + [ + 48.1783631, + 11.5565989 + ] + ] + }, + { + "osmId": "255921918", + "name": null, + "lengthMeters": 1424.2735089614857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.177464, + 11.55709 + ], + [ + 48.1771339, + 11.5573846 + ], + [ + 48.1769631, + 11.5575703 + ], + [ + 48.1767849, + 11.5578071 + ], + [ + 48.1766156, + 11.5580788 + ], + [ + 48.176442, + 11.5584143 + ], + [ + 48.1763237, + 11.5586987 + ], + [ + 48.1762197, + 11.5589965 + ], + [ + 48.1761363, + 11.5592668 + ], + [ + 48.1760484, + 11.5596085 + ], + [ + 48.1759792, + 11.5599524 + ], + [ + 48.1759713, + 11.5600055 + ], + [ + 48.1759322, + 11.5602681 + ], + [ + 48.1759149, + 11.5604362 + ], + [ + 48.1759017, + 11.5606064 + ], + [ + 48.1758273, + 11.5615831 + ], + [ + 48.175737, + 11.5637718 + ], + [ + 48.1756521, + 11.5650925 + ], + [ + 48.1756103, + 11.5658899 + ], + [ + 48.175527, + 11.5674813 + ], + [ + 48.1754671, + 11.5684098 + ], + [ + 48.1753955, + 11.5691832 + ], + [ + 48.1753027, + 11.5697615 + ], + [ + 48.1751525, + 11.5703357 + ], + [ + 48.1750716, + 11.5705599 + ], + [ + 48.1749221, + 11.5708868 + ], + [ + 48.1747259, + 11.571223 + ], + [ + 48.1745134, + 11.5715268 + ], + [ + 48.17426, + 11.5718103 + ], + [ + 48.1739995, + 11.5720404 + ], + [ + 48.1737333, + 11.5722349 + ], + [ + 48.1734459, + 11.5723963 + ], + [ + 48.1731449, + 11.5725032 + ], + [ + 48.1727895, + 11.5725876 + ], + [ + 48.1723876, + 11.572637 + ] + ] + }, + { + "osmId": "255921919", + "name": null, + "lengthMeters": 214.65151642875242, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1775281, + 11.5572676 + ], + [ + 48.1784024, + 11.5567419 + ], + [ + 48.1787104, + 11.5565544 + ], + [ + 48.1793087, + 11.5561508 + ] + ] + }, + { + "osmId": "255927829", + "name": "U3", + "lengthMeters": 249.5374007611347, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1806929, + 11.5550369 + ], + [ + 48.1806382, + 11.5550717 + ], + [ + 48.1799336, + 11.5555304 + ], + [ + 48.1792765, + 11.5559768 + ], + [ + 48.1786433, + 11.5564073 + ] + ] + }, + { + "osmId": "255927830", + "name": null, + "lengthMeters": 217.53062452275475, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1792073, + 11.5557627 + ], + [ + 48.1785715, + 11.556195 + ], + [ + 48.1783127, + 11.5563907 + ], + [ + 48.177464, + 11.55709 + ] + ] + }, + { + "osmId": "255927831", + "name": null, + "lengthMeters": 336.24126698095375, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.180131, + 11.5555899 + ], + [ + 48.1814642, + 11.5546671 + ], + [ + 48.1828893, + 11.5537319 + ] + ] + }, + { + "osmId": "255994300", + "name": null, + "lengthMeters": 176.27755361638538, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4473312, + 13.3612353 + ], + [ + 52.4474007, + 13.3611982 + ], + [ + 52.4477608, + 13.3610074 + ], + [ + 52.4480292, + 13.3608622 + ], + [ + 52.4483988, + 13.3606647 + ], + [ + 52.4485256, + 13.3605969 + ], + [ + 52.4487126, + 13.3604985 + ], + [ + 52.448839, + 13.360432 + ] + ] + }, + { + "osmId": "255994301", + "name": null, + "lengthMeters": 480.5357446112634, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4494606, + 13.3600223 + ], + [ + 52.449481, + 13.3600082 + ], + [ + 52.44993, + 13.3596945 + ], + [ + 52.4499548, + 13.3596787 + ], + [ + 52.4503919, + 13.3593758 + ], + [ + 52.4506752, + 13.3591775 + ], + [ + 52.4510011, + 13.3589499 + ], + [ + 52.4513411, + 13.3587242 + ], + [ + 52.451481, + 13.3586336 + ], + [ + 52.4516876, + 13.3585059 + ], + [ + 52.4520522, + 13.358287 + ], + [ + 52.4527393, + 13.35788 + ], + [ + 52.4529814, + 13.3577399 + ], + [ + 52.4534707, + 13.3574522 + ], + [ + 52.4534848, + 13.3574439 + ] + ] + }, + { + "osmId": "255994302", + "name": null, + "lengthMeters": 177.00351304545825, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4487988, + 13.3602391 + ], + [ + 52.4486842, + 13.3602987 + ], + [ + 52.4483673, + 13.3604635 + ], + [ + 52.4480395, + 13.360634 + ], + [ + 52.4479983, + 13.3606564 + ], + [ + 52.4477272, + 13.3607972 + ], + [ + 52.4474772, + 13.3609467 + ], + [ + 52.447404, + 13.3609886 + ], + [ + 52.4472873, + 13.361057 + ] + ] + }, + { + "osmId": "256017412", + "name": null, + "lengthMeters": 1166.8471905585036, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4196829, + 13.3150751 + ], + [ + 52.4198988, + 13.3152802 + ], + [ + 52.4199812, + 13.315359 + ], + [ + 52.4201265, + 13.3154988 + ], + [ + 52.4207414, + 13.3161116 + ], + [ + 52.4210513, + 13.3164372 + ], + [ + 52.4217772, + 13.3172258 + ], + [ + 52.4223838, + 13.3179196 + ], + [ + 52.4229829, + 13.3186273 + ], + [ + 52.4233488, + 13.3190826 + ], + [ + 52.4240205, + 13.3199404 + ], + [ + 52.4245331, + 13.3206271 + ], + [ + 52.4247734, + 13.3209658 + ], + [ + 52.4250269, + 13.3213384 + ], + [ + 52.4252926, + 13.3217415 + ], + [ + 52.4255461, + 13.3221538 + ], + [ + 52.4257678, + 13.3225209 + ], + [ + 52.4259426, + 13.3228341 + ], + [ + 52.4267334, + 13.3242302 + ], + [ + 52.4268231, + 13.3243879 + ], + [ + 52.4272597, + 13.3250509 + ], + [ + 52.4278341, + 13.3257969 + ] + ] + }, + { + "osmId": "256022343", + "name": null, + "lengthMeters": 231.2121669703804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1721089, + 11.5728067 + ], + [ + 48.1715437, + 11.5728125 + ], + [ + 48.1706947, + 11.5728263 + ], + [ + 48.170319, + 11.5728025 + ], + [ + 48.1700311, + 11.572764 + ] + ] + }, + { + "osmId": "256022344", + "name": null, + "lengthMeters": 1415.6061980511981, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1726487, + 11.5729969 + ], + [ + 48.1728097, + 11.5729756 + ], + [ + 48.1730598, + 11.5729182 + ], + [ + 48.1732404, + 11.5728668 + ], + [ + 48.1734924, + 11.5727495 + ], + [ + 48.1737464, + 11.5726047 + ], + [ + 48.1739623, + 11.5724437 + ], + [ + 48.1742822, + 11.5721591 + ], + [ + 48.1745835, + 11.5717785 + ], + [ + 48.1747588, + 11.5714835 + ], + [ + 48.1749252, + 11.5711763 + ], + [ + 48.1750999, + 11.5707849 + ], + [ + 48.1752541, + 11.5703695 + ], + [ + 48.1753927, + 11.5698131 + ], + [ + 48.1754969, + 11.5692713 + ], + [ + 48.1755672, + 11.5686935 + ], + [ + 48.1756279, + 11.5677967 + ], + [ + 48.1756389, + 11.5676344 + ], + [ + 48.175683, + 11.5667567 + ], + [ + 48.1757291, + 11.5659045 + ], + [ + 48.1757725, + 11.5651016 + ], + [ + 48.1759197, + 11.561694 + ], + [ + 48.1759664, + 11.5608814 + ], + [ + 48.1760028, + 11.5604575 + ], + [ + 48.1760263, + 11.5603012 + ], + [ + 48.1760712, + 11.5599912 + ], + [ + 48.1761322, + 11.5596625 + ], + [ + 48.1762038, + 11.5593205 + ], + [ + 48.1762848, + 11.5590099 + ], + [ + 48.1763751, + 11.5587379 + ], + [ + 48.1764857, + 11.5584764 + ], + [ + 48.176625, + 11.5582078 + ], + [ + 48.176796, + 11.5579301 + ], + [ + 48.1769211, + 11.557762 + ], + [ + 48.1770971, + 11.5575716 + ], + [ + 48.1772801, + 11.5574233 + ], + [ + 48.1775281, + 11.5572676 + ] + ] + }, + { + "osmId": "256064119", + "name": null, + "lengthMeters": 75.78509057570143, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1792238, + 11.5066762 + ], + [ + 48.1792241, + 11.5066974 + ], + [ + 48.1792252, + 11.5067192 + ], + [ + 48.1792278, + 11.5067424 + ], + [ + 48.1792325, + 11.506766 + ], + [ + 48.1792438, + 11.5068021 + ], + [ + 48.1792549, + 11.5068283 + ], + [ + 48.1792618, + 11.5068411 + ], + [ + 48.17927, + 11.5068525 + ], + [ + 48.1792778, + 11.5068639 + ], + [ + 48.1792845, + 11.5068716 + ], + [ + 48.1792925, + 11.5068812 + ], + [ + 48.1793054, + 11.506891 + ], + [ + 48.1793182, + 11.5068985 + ], + [ + 48.1793296, + 11.5069052 + ], + [ + 48.1793412, + 11.5069097 + ], + [ + 48.1793544, + 11.5069128 + ], + [ + 48.1793677, + 11.5069144 + ], + [ + 48.1793843, + 11.5069146 + ], + [ + 48.1793998, + 11.506912 + ], + [ + 48.179414, + 11.5069075 + ], + [ + 48.179427, + 11.5069003 + ], + [ + 48.1794455, + 11.5068865 + ], + [ + 48.1794627, + 11.5068706 + ], + [ + 48.1794935, + 11.5068351 + ], + [ + 48.1795317, + 11.5067822 + ], + [ + 48.1795527, + 11.5067551 + ], + [ + 48.1795798, + 11.5067263 + ], + [ + 48.1795881, + 11.5067179 + ], + [ + 48.1795972, + 11.5067115 + ], + [ + 48.1796096, + 11.5067042 + ], + [ + 48.179622, + 11.5066983 + ], + [ + 48.1796332, + 11.5066953 + ], + [ + 48.1796443, + 11.5066933 + ], + [ + 48.1796575, + 11.5066935 + ], + [ + 48.179671, + 11.5066945 + ], + [ + 48.1796896, + 11.5066984 + ], + [ + 48.179705, + 11.5067053 + ], + [ + 48.1797202, + 11.5067135 + ], + [ + 48.1797396, + 11.5067273 + ], + [ + 48.1797581, + 11.5067429 + ] + ] + }, + { + "osmId": "256200949", + "name": "Verbindungsbahn", + "lengthMeters": 273.60813941663423, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.562933, + 9.9416497 + ], + [ + 53.5629258, + 9.9418305 + ], + [ + 53.5628849, + 9.9422981 + ], + [ + 53.5628655, + 9.9424927 + ], + [ + 53.5628621, + 9.9425263 + ], + [ + 53.562854, + 9.9425994 + ], + [ + 53.5627421, + 9.9435234 + ], + [ + 53.562695, + 9.9438879 + ], + [ + 53.5626661, + 9.9441138 + ], + [ + 53.5624794, + 9.9453965 + ], + [ + 53.562467, + 9.9454777 + ], + [ + 53.562432, + 9.9457017 + ] + ] + }, + { + "osmId": "256464004", + "name": null, + "lengthMeters": 337.56146251706946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1828212, + 11.5534748 + ], + [ + 48.1813841, + 11.5544022 + ], + [ + 48.1800179, + 11.5552211 + ] + ] + }, + { + "osmId": "256464005", + "name": null, + "lengthMeters": 1126.5520786208263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1828893, + 11.5537319 + ], + [ + 48.1838357, + 11.553119 + ], + [ + 48.1840656, + 11.5529449 + ], + [ + 48.1843356, + 11.5527047 + ], + [ + 48.1845658, + 11.5524615 + ], + [ + 48.1847871, + 11.5521873 + ], + [ + 48.1850989, + 11.5517262 + ], + [ + 48.1853951, + 11.5511849 + ], + [ + 48.1855683, + 11.5508269 + ], + [ + 48.1856856, + 11.5505231 + ], + [ + 48.1857881, + 11.5501755 + ], + [ + 48.1858729, + 11.5498051 + ], + [ + 48.1859507, + 11.5494079 + ], + [ + 48.186007, + 11.549011 + ], + [ + 48.1860465, + 11.5487182 + ], + [ + 48.1860724, + 11.5476204 + ], + [ + 48.1861079, + 11.5461694 + ], + [ + 48.1861007, + 11.5438242 + ], + [ + 48.1860925, + 11.5433776 + ], + [ + 48.1860802, + 11.5430757 + ], + [ + 48.1860565, + 11.5428007 + ], + [ + 48.1860182, + 11.54255 + ], + [ + 48.1859574, + 11.5422405 + ], + [ + 48.1858964, + 11.5419952 + ], + [ + 48.1858197, + 11.5417578 + ], + [ + 48.1857297, + 11.5415294 + ], + [ + 48.1856089, + 11.5412645 + ], + [ + 48.185495, + 11.5410362 + ] + ] + }, + { + "osmId": "256578458", + "name": null, + "lengthMeters": 91.54581553111225, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4303832, + 13.3286712 + ], + [ + 52.4302707, + 13.3285035 + ], + [ + 52.4300332, + 13.328169 + ], + [ + 52.4297557, + 13.3277975 + ] + ] + }, + { + "osmId": "256578463", + "name": null, + "lengthMeters": 159.1059353875341, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4292726, + 13.3272067 + ], + [ + 52.4291352, + 13.3270492 + ], + [ + 52.4290642, + 13.3269751 + ], + [ + 52.4289922, + 13.3269024 + ], + [ + 52.4285976, + 13.3265402 + ], + [ + 52.428503, + 13.3264499 + ], + [ + 52.4284084, + 13.3263597 + ], + [ + 52.4283347, + 13.3262858 + ], + [ + 52.4282617, + 13.3262091 + ], + [ + 52.4280536, + 13.3259808 + ] + ] + }, + { + "osmId": "256794384", + "name": null, + "lengthMeters": 310.610511361124, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5553069, + 9.9886142 + ], + [ + 53.5552196, + 9.9888966 + ], + [ + 53.5551118, + 9.9891934 + ], + [ + 53.5549841, + 9.9894825 + ], + [ + 53.5548138, + 9.989801 + ], + [ + 53.5546356, + 9.9900906 + ], + [ + 53.5544237, + 9.9904216 + ], + [ + 53.5542409, + 9.9907424 + ], + [ + 53.5541042, + 9.9910189 + ], + [ + 53.5539905, + 9.9912788 + ], + [ + 53.5539168, + 9.9914765 + ], + [ + 53.5538153, + 9.9917474 + ], + [ + 53.5537162, + 9.9920716 + ], + [ + 53.5536495, + 9.992348 + ] + ] + }, + { + "osmId": "256794386", + "name": null, + "lengthMeters": 236.40092848760625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538123, + 9.9924913 + ], + [ + 53.5538936, + 9.9922017 + ], + [ + 53.5539754, + 9.9919135 + ], + [ + 53.5540923, + 9.9915464 + ], + [ + 53.5542895, + 9.9909897 + ], + [ + 53.5543415, + 9.9908435 + ], + [ + 53.5544484, + 9.9904968 + ], + [ + 53.5545602, + 9.9901009 + ], + [ + 53.5546622, + 9.9896431 + ], + [ + 53.5547008, + 9.9894353 + ], + [ + 53.5547306, + 9.9892746 + ] + ] + }, + { + "osmId": "256916881", + "name": null, + "lengthMeters": 267.8377254908057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6570862, + 10.0163281 + ], + [ + 53.6573621, + 10.0163505 + ], + [ + 53.6577249, + 10.0164011 + ], + [ + 53.6582493, + 10.0165055 + ], + [ + 53.6586634, + 10.0166164 + ], + [ + 53.658813, + 10.016668 + ], + [ + 53.6594673, + 10.0168989 + ] + ] + }, + { + "osmId": "256916882", + "name": null, + "lengthMeters": 211.78209818605052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6594673, + 10.0168989 + ], + [ + 53.6601133, + 10.0172184 + ], + [ + 53.6606729, + 10.0175073 + ], + [ + 53.6607601, + 10.0175541 + ], + [ + 53.6611859, + 10.0177569 + ], + [ + 53.661294, + 10.0178082 + ] + ] + }, + { + "osmId": "256962202", + "name": null, + "lengthMeters": 132.5647606256971, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4370468, + 13.3395329 + ], + [ + 52.4374065, + 13.3400705 + ], + [ + 52.4379319, + 13.340843 + ] + ] + }, + { + "osmId": "257337984", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 132.50518976741114, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1582874, + 11.4811023 + ], + [ + 48.1583821, + 11.4811036 + ], + [ + 48.1586144, + 11.4811063 + ], + [ + 48.1588874, + 11.4811303 + ], + [ + 48.1591526, + 11.4811662 + ], + [ + 48.1594744, + 11.4812332 + ] + ] + }, + { + "osmId": "257337986", + "name": null, + "lengthMeters": 1074.2261572309308, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15366, + 11.4826542 + ], + [ + 48.1535162, + 11.4827392 + ], + [ + 48.1531707, + 11.4829441 + ], + [ + 48.1527596, + 11.4831893 + ], + [ + 48.1523165, + 11.4834465 + ], + [ + 48.1519676, + 11.4836652 + ], + [ + 48.1517586, + 11.4837929 + ], + [ + 48.151641, + 11.4838695 + ], + [ + 48.1513595, + 11.4840663 + ], + [ + 48.1511241, + 11.4842545 + ], + [ + 48.1509139, + 11.4844303 + ], + [ + 48.1505494, + 11.4847825 + ], + [ + 48.1498248, + 11.4855315 + ], + [ + 48.1492525, + 11.4861298 + ], + [ + 48.148749, + 11.4866494 + ], + [ + 48.1482559, + 11.4871848 + ], + [ + 48.1480961, + 11.4873639 + ], + [ + 48.1479738, + 11.4875217 + ], + [ + 48.1477213, + 11.4878822 + ], + [ + 48.1475653, + 11.4881209 + ], + [ + 48.1474078, + 11.488397 + ], + [ + 48.147261, + 11.48869 + ], + [ + 48.147121, + 11.4889999 + ], + [ + 48.1470054, + 11.489288 + ], + [ + 48.1469046, + 11.4895675 + ], + [ + 48.1468068, + 11.4898557 + ], + [ + 48.1467145, + 11.4901425 + ], + [ + 48.1466196, + 11.4904528 + ], + [ + 48.1464836, + 11.4909033 + ], + [ + 48.1463342, + 11.4913671 + ] + ] + }, + { + "osmId": "257337987", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 325.47066339826085, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1544853, + 11.4823252 + ], + [ + 48.1548151, + 11.4822069 + ], + [ + 48.1551023, + 11.4820807 + ], + [ + 48.1558148, + 11.4817805 + ], + [ + 48.1562857, + 11.4815937 + ], + [ + 48.1566709, + 11.4814488 + ], + [ + 48.1573217, + 11.4812493 + ] + ] + }, + { + "osmId": "257337989", + "name": null, + "lengthMeters": 765.9602099336912, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1574952, + 11.4813129 + ], + [ + 48.1575781, + 11.4812948 + ], + [ + 48.1578375, + 11.4812418 + ], + [ + 48.1581224, + 11.4812111 + ], + [ + 48.1584462, + 11.4811932 + ], + [ + 48.1586144, + 11.4811904 + ], + [ + 48.1588825, + 11.4812088 + ], + [ + 48.1591477, + 11.4812398 + ], + [ + 48.1594708, + 11.4813082 + ], + [ + 48.1597315, + 11.4813832 + ], + [ + 48.1599175, + 11.4814397 + ], + [ + 48.1601673, + 11.4815358 + ], + [ + 48.1603576, + 11.4816183 + ], + [ + 48.1605683, + 11.4817146 + ], + [ + 48.1608032, + 11.4818369 + ], + [ + 48.1610399, + 11.4819694 + ], + [ + 48.1612668, + 11.4821134 + ], + [ + 48.1614714, + 11.4822431 + ], + [ + 48.1616731, + 11.4823858 + ], + [ + 48.1620874, + 11.4827162 + ], + [ + 48.1624694, + 11.4830796 + ], + [ + 48.1628792, + 11.4835062 + ], + [ + 48.1630988, + 11.483762 + ], + [ + 48.1633156, + 11.4840281 + ], + [ + 48.1635352, + 11.4843125 + ], + [ + 48.1637607, + 11.4846333 + ] + ] + }, + { + "osmId": "257337990", + "name": null, + "lengthMeters": 88.5660351692449, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1582874, + 11.4811023 + ], + [ + 48.1577651, + 11.4811289 + ], + [ + 48.1575569, + 11.4811538 + ], + [ + 48.1574923, + 11.481165 + ] + ] + }, + { + "osmId": "257338147", + "name": null, + "lengthMeters": 107.6600430176307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941666, + 13.6099039 + ], + [ + 52.4940709, + 13.6097961 + ], + [ + 52.494047, + 13.6097718 + ], + [ + 52.4940316, + 13.6097624 + ], + [ + 52.4936827, + 13.609508 + ], + [ + 52.4934462, + 13.6093354 + ], + [ + 52.4934318, + 13.609325 + ], + [ + 52.4932859, + 13.6092588 + ] + ] + }, + { + "osmId": "257731631", + "name": null, + "lengthMeters": 956.4168268270289, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4488721, + 13.3543541 + ], + [ + 52.4491456, + 13.3545693 + ], + [ + 52.4495119, + 13.3548299 + ], + [ + 52.449976, + 13.3551289 + ], + [ + 52.4506823, + 13.3555708 + ], + [ + 52.4511587, + 13.3558619 + ], + [ + 52.4513983, + 13.3560022 + ], + [ + 52.4516378, + 13.3561337 + ], + [ + 52.4518837, + 13.3562531 + ], + [ + 52.4521442, + 13.3563658 + ], + [ + 52.4524069, + 13.35647 + ], + [ + 52.452601, + 13.3565346 + ], + [ + 52.4527962, + 13.3565941 + ], + [ + 52.452987, + 13.3566447 + ], + [ + 52.4531789, + 13.3566912 + ], + [ + 52.4533765, + 13.3567283 + ], + [ + 52.4535753, + 13.3567604 + ], + [ + 52.4538524, + 13.3567951 + ], + [ + 52.453991, + 13.3568079 + ], + [ + 52.4541296, + 13.3568168 + ], + [ + 52.4542273, + 13.3568243 + ], + [ + 52.4543743, + 13.3568253 + ], + [ + 52.454771, + 13.3568232 + ], + [ + 52.4548962, + 13.3568161 + ], + [ + 52.4550707, + 13.3568046 + ], + [ + 52.4552445, + 13.3567892 + ], + [ + 52.4554441, + 13.3567625 + ], + [ + 52.4556438, + 13.356732 + ], + [ + 52.4561038, + 13.356648 + ], + [ + 52.4565866, + 13.3565598 + ], + [ + 52.4572126, + 13.3564447 + ] + ] + }, + { + "osmId": "257731632", + "name": null, + "lengthMeters": 195.8542419584548, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4472975, + 13.3530597 + ], + [ + 52.4478287, + 13.3535179 + ], + [ + 52.4482526, + 13.3538615 + ], + [ + 52.4485942, + 13.3541331 + ], + [ + 52.4486334, + 13.3541643 + ], + [ + 52.4488721, + 13.3543541 + ] + ] + }, + { + "osmId": "257731634", + "name": null, + "lengthMeters": 302.46041510744226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4465825, + 13.3523068 + ], + [ + 52.4464443, + 13.3521813 + ], + [ + 52.4463075, + 13.3520507 + ], + [ + 52.4461204, + 13.3518641 + ], + [ + 52.4458113, + 13.351541 + ], + [ + 52.4449357, + 13.3505918 + ], + [ + 52.4446135, + 13.3502375 + ], + [ + 52.4442996, + 13.3498831 + ] + ] + }, + { + "osmId": "257924634", + "name": null, + "lengthMeters": 2498.447481873095, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1219419, + 11.5486437 + ], + [ + 48.1233162, + 11.5487409 + ], + [ + 48.1238984, + 11.5488561 + ], + [ + 48.1239979, + 11.5488889 + ], + [ + 48.1240974, + 11.5489217 + ], + [ + 48.1242879, + 11.5490067 + ], + [ + 48.1244762, + 11.5491137 + ], + [ + 48.1246248, + 11.5492293 + ], + [ + 48.1247553, + 11.5493533 + ], + [ + 48.1249949, + 11.5496436 + ], + [ + 48.125069, + 11.5497338 + ], + [ + 48.1252085, + 11.5499243 + ], + [ + 48.1254457, + 11.5503158 + ], + [ + 48.1256884, + 11.5507635 + ], + [ + 48.1259536, + 11.5513323 + ], + [ + 48.1266714, + 11.5528846 + ], + [ + 48.1268704, + 11.5532791 + ], + [ + 48.1274251, + 11.5542341 + ], + [ + 48.1277779, + 11.5548663 + ], + [ + 48.1280217, + 11.5553421 + ], + [ + 48.1287057, + 11.5568206 + ], + [ + 48.1290795, + 11.5576102 + ], + [ + 48.1293561, + 11.558195 + ], + [ + 48.1300518, + 11.5595635 + ], + [ + 48.1302198, + 11.5599234 + ], + [ + 48.1316365, + 11.5629263 + ], + [ + 48.1319166, + 11.5634922 + ], + [ + 48.1324769, + 11.5645084 + ], + [ + 48.1326175, + 11.5647735 + ], + [ + 48.1328364, + 11.5652153 + ], + [ + 48.1329929, + 11.5655569 + ], + [ + 48.1330991, + 11.565842 + ], + [ + 48.133168, + 11.5660397 + ], + [ + 48.1333677, + 11.5667413 + ], + [ + 48.1336041, + 11.5676356 + ], + [ + 48.1336885, + 11.5679934 + ], + [ + 48.1337576, + 11.5684125 + ], + [ + 48.1337934, + 11.5689337 + ], + [ + 48.1338185, + 11.5691589 + ], + [ + 48.1338514, + 11.5693436 + ], + [ + 48.133898, + 11.5695048 + ], + [ + 48.1340124, + 11.5698512 + ], + [ + 48.1340893, + 11.5700594 + ], + [ + 48.1341706, + 11.5702575 + ], + [ + 48.1356872, + 11.5733888 + ] + ] + }, + { + "osmId": "257928636", + "name": null, + "lengthMeters": 6573.664142586985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1184513, + 11.5482172 + ], + [ + 48.1180998, + 11.548225 + ], + [ + 48.1178612, + 11.5482135 + ], + [ + 48.1175877, + 11.5481619 + ], + [ + 48.1172486, + 11.5480503 + ], + [ + 48.1171036, + 11.547992 + ], + [ + 48.1169994, + 11.5479314 + ], + [ + 48.1168592, + 11.5478291 + ], + [ + 48.1167055, + 11.5476904 + ], + [ + 48.1165298, + 11.5475058 + ], + [ + 48.1163317, + 11.5472723 + ], + [ + 48.116223, + 11.547114 + ], + [ + 48.1161036, + 11.5469 + ], + [ + 48.1159594, + 11.5465766 + ], + [ + 48.1157816, + 11.5461111 + ], + [ + 48.1156636, + 11.5457411 + ], + [ + 48.1156039, + 11.5455094 + ], + [ + 48.1155672, + 11.5453102 + ], + [ + 48.1155428, + 11.5451089 + ], + [ + 48.1155224, + 11.5448691 + ], + [ + 48.1155211, + 11.5446394 + ], + [ + 48.1155298, + 11.5444552 + ], + [ + 48.1155347, + 11.5443528 + ], + [ + 48.1155686, + 11.5440356 + ], + [ + 48.1156188, + 11.5436962 + ], + [ + 48.1156758, + 11.5434136 + ], + [ + 48.1157545, + 11.5430904 + ], + [ + 48.1158441, + 11.5427905 + ], + [ + 48.1159225, + 11.5425722 + ], + [ + 48.1166508, + 11.5407602 + ], + [ + 48.1167411, + 11.5405088 + ], + [ + 48.1168008, + 11.5403178 + ], + [ + 48.1168633, + 11.5400698 + ], + [ + 48.116908, + 11.5397669 + ], + [ + 48.1169279, + 11.5394957 + ], + [ + 48.1169412, + 11.5390451 + ], + [ + 48.1169361, + 11.5379408 + ], + [ + 48.1169403, + 11.5361235 + ], + [ + 48.1169256, + 11.5349458 + ], + [ + 48.1168836, + 11.5315964 + ], + [ + 48.1168073, + 11.5295391 + ], + [ + 48.1167882, + 11.5289709 + ], + [ + 48.116786, + 11.5285019 + ], + [ + 48.1167871, + 11.5281909 + ], + [ + 48.1168095, + 11.5279015 + ], + [ + 48.1168976, + 11.5273532 + ], + [ + 48.1170155, + 11.5266645 + ], + [ + 48.1171636, + 11.525799 + ], + [ + 48.1171906, + 11.5255359 + ], + [ + 48.1172075, + 11.5252272 + ], + [ + 48.1171884, + 11.5230646 + ], + [ + 48.1172046, + 11.5226613 + ], + [ + 48.1172417, + 11.522249 + ], + [ + 48.1173039, + 11.5216693 + ], + [ + 48.1175902, + 11.5190512 + ], + [ + 48.1176664, + 11.5184969 + ], + [ + 48.1178274, + 11.5176362 + ], + [ + 48.1178732, + 11.5173837 + ], + [ + 48.1179374, + 11.5170116 + ], + [ + 48.1179841, + 11.516719 + ], + [ + 48.1180515, + 11.5162707 + ], + [ + 48.1181078, + 11.5157491 + ], + [ + 48.1181306, + 11.5152488 + ], + [ + 48.1181418, + 11.5148551 + ], + [ + 48.1181428, + 11.5145826 + ], + [ + 48.1181115, + 11.5130116 + ], + [ + 48.1180978, + 11.512637 + ], + [ + 48.1180654, + 11.5122182 + ], + [ + 48.1180116, + 11.5118327 + ], + [ + 48.116494, + 11.5037837 + ], + [ + 48.1164314, + 11.5034435 + ], + [ + 48.1163926, + 11.5030861 + ], + [ + 48.116369, + 11.5026792 + ], + [ + 48.1163622, + 11.5022627 + ], + [ + 48.1163587, + 11.50186 + ], + [ + 48.1163731, + 11.5014619 + ], + [ + 48.1163856, + 11.5010269 + ], + [ + 48.1163956, + 11.5008454 + ], + [ + 48.1164385, + 11.5001428 + ], + [ + 48.1164536, + 11.4997388 + ], + [ + 48.1164544, + 11.498046 + ], + [ + 48.1164638, + 11.4977549 + ], + [ + 48.116502, + 11.4973955 + ], + [ + 48.1165633, + 11.497041 + ], + [ + 48.116677, + 11.4965622 + ], + [ + 48.1167565, + 11.4963027 + ], + [ + 48.1168558, + 11.4960348 + ], + [ + 48.1176267, + 11.4942011 + ], + [ + 48.1178715, + 11.4935641 + ], + [ + 48.1179817, + 11.4932133 + ], + [ + 48.1181246, + 11.4926666 + ], + [ + 48.1182035, + 11.4923162 + ], + [ + 48.1182741, + 11.4918827 + ], + [ + 48.1182971, + 11.4916425 + ], + [ + 48.1183665, + 11.4905772 + ], + [ + 48.1184015, + 11.4898521 + ], + [ + 48.1184457, + 11.4889185 + ], + [ + 48.1184772, + 11.4882355 + ], + [ + 48.1186272, + 11.4849868 + ], + [ + 48.118632, + 11.4844726 + ], + [ + 48.1186193, + 11.4840182 + ], + [ + 48.118591, + 11.4836103 + ], + [ + 48.1185254, + 11.4830892 + ], + [ + 48.1184623, + 11.4826964 + ], + [ + 48.118376, + 11.4823101 + ], + [ + 48.1174493, + 11.4793271 + ], + [ + 48.1173387, + 11.4790136 + ], + [ + 48.1172171, + 11.4787313 + ], + [ + 48.1170488, + 11.4784136 + ], + [ + 48.1168951, + 11.4781556 + ], + [ + 48.1167019, + 11.4778869 + ], + [ + 48.116526, + 11.4776816 + ], + [ + 48.116351, + 11.4775288 + ], + [ + 48.1161444, + 11.4773905 + ], + [ + 48.1158923, + 11.4772683 + ], + [ + 48.115552, + 11.4771372 + ], + [ + 48.1152758, + 11.4770593 + ], + [ + 48.1148119, + 11.4769673 + ], + [ + 48.1141284, + 11.4768317 + ], + [ + 48.1138066, + 11.4767766 + ], + [ + 48.1130537, + 11.4766242 + ], + [ + 48.1127449, + 11.4765807 + ], + [ + 48.1112651, + 11.47644 + ], + [ + 48.1110532, + 11.4763937 + ], + [ + 48.1108229, + 11.4762986 + ], + [ + 48.1106266, + 11.4761847 + ], + [ + 48.1104587, + 11.4760624 + ], + [ + 48.1102762, + 11.475902 + ], + [ + 48.1100979, + 11.4757174 + ], + [ + 48.1099283, + 11.4755171 + ], + [ + 48.109796, + 11.4753299 + ], + [ + 48.1096644, + 11.4751073 + ], + [ + 48.1095385, + 11.4748439 + ], + [ + 48.1094485, + 11.4745813 + ], + [ + 48.1093833, + 11.474385 + ], + [ + 48.1091369, + 11.4735324 + ] + ] + }, + { + "osmId": "258832489", + "name": null, + "lengthMeters": 1793.7864909051495, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6760332, + 13.4321694 + ], + [ + 52.6758998, + 13.4321825 + ], + [ + 52.674786, + 13.4323955 + ], + [ + 52.6734641, + 13.4326701 + ], + [ + 52.6723296, + 13.4327559 + ], + [ + 52.6713466, + 13.4325656 + ], + [ + 52.6704939, + 13.4323913 + ], + [ + 52.6703831, + 13.4323651 + ], + [ + 52.6665856, + 13.4315081 + ], + [ + 52.6643296, + 13.4309974 + ], + [ + 52.66303, + 13.4307058 + ], + [ + 52.6602112, + 13.4300703 + ], + [ + 52.6600311, + 13.4300346 + ] + ] + }, + { + "osmId": "258953487", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 376.44170912543876, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6558231, + 13.3821956 + ], + [ + 52.6561054, + 13.3808928 + ], + [ + 52.6562834, + 13.3800721 + ], + [ + 52.6569573, + 13.3769371 + ] + ] + }, + { + "osmId": "258953490", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 399.15131960214467, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6556931, + 13.3825876 + ], + [ + 52.6553553, + 13.3841537 + ], + [ + 52.6549897, + 13.3857093 + ], + [ + 52.6546776, + 13.3868554 + ], + [ + 52.6543158, + 13.3880451 + ] + ] + }, + { + "osmId": "258953491", + "name": null, + "lengthMeters": 251.34628205309912, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6551811, + 13.3846183 + ], + [ + 52.6551289, + 13.3848712 + ], + [ + 52.6550555, + 13.3851844 + ], + [ + 52.6550147, + 13.385352 + ], + [ + 52.6549565, + 13.3855917 + ], + [ + 52.6548957, + 13.3858335 + ], + [ + 52.6548389, + 13.3860512 + ], + [ + 52.6547521, + 13.3863737 + ], + [ + 52.6546122, + 13.3868636 + ], + [ + 52.6545884, + 13.3869531 + ], + [ + 52.6544644, + 13.3873746 + ], + [ + 52.6544383, + 13.3874631 + ], + [ + 52.6542617, + 13.3880184 + ] + ] + }, + { + "osmId": "259131003", + "name": null, + "lengthMeters": 121.27399876067572, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2011674, + 11.61303 + ], + [ + 48.2013152, + 11.6129856 + ], + [ + 48.2014796, + 11.6129522 + ], + [ + 48.2016085, + 11.612933 + ], + [ + 48.2018382, + 11.6129242 + ], + [ + 48.2020377, + 11.6129012 + ], + [ + 48.2022523, + 11.6128977 + ] + ] + }, + { + "osmId": "259191811", + "name": null, + "lengthMeters": 2456.6621838788883, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0878134, + 11.4826442 + ], + [ + 48.0877415, + 11.4829087 + ], + [ + 48.0876821, + 11.4832697 + ], + [ + 48.0876508, + 11.4836202 + ], + [ + 48.0876282, + 11.4842415 + ], + [ + 48.0876646, + 11.4848044 + ], + [ + 48.0877128, + 11.48532 + ], + [ + 48.0877694, + 11.4857464 + ], + [ + 48.0879306, + 11.4865134 + ], + [ + 48.0880377, + 11.4868702 + ], + [ + 48.0881922, + 11.4873067 + ], + [ + 48.0884568, + 11.4878636 + ], + [ + 48.0887403, + 11.488338 + ], + [ + 48.0889183, + 11.4885815 + ], + [ + 48.0902661, + 11.4900876 + ], + [ + 48.0912349, + 11.4912395 + ], + [ + 48.0919789, + 11.4921208 + ], + [ + 48.0942702, + 11.4948329 + ], + [ + 48.0944412, + 11.4950564 + ], + [ + 48.0945663, + 11.4952523 + ], + [ + 48.0946651, + 11.4954585 + ], + [ + 48.0947293, + 11.4956273 + ], + [ + 48.094807, + 11.4958806 + ], + [ + 48.0948884, + 11.4961927 + ], + [ + 48.0949579, + 11.4965722 + ], + [ + 48.0950139, + 11.4969738 + ], + [ + 48.0950447, + 11.4974148 + ], + [ + 48.0950504, + 11.4978693 + ], + [ + 48.0950332, + 11.4985473 + ], + [ + 48.0950104, + 11.4993303 + ], + [ + 48.0949832, + 11.500146 + ], + [ + 48.0949728, + 11.5008822 + ], + [ + 48.094991, + 11.5012531 + ], + [ + 48.0950253, + 11.5016393 + ], + [ + 48.0952888, + 11.5036447 + ], + [ + 48.0952941, + 11.5036847 + ], + [ + 48.0960718, + 11.5095226 + ], + [ + 48.0961062, + 11.5097808 + ], + [ + 48.0961986, + 11.5103055 + ], + [ + 48.0962831, + 11.5106797 + ] + ] + }, + { + "osmId": "259191812", + "name": null, + "lengthMeters": 122.01512764352415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0886942, + 11.4793623 + ], + [ + 48.0886416, + 11.4796208 + ], + [ + 48.088499, + 11.4801166 + ], + [ + 48.0882863, + 11.480886 + ] + ] + }, + { + "osmId": "259608537", + "name": null, + "lengthMeters": 114.15189509434728, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.560595, + 9.9884562 + ], + [ + 53.5604592, + 9.9884605 + ], + [ + 53.5602966, + 9.9884787 + ], + [ + 53.5601614, + 9.9885132 + ], + [ + 53.5600018, + 9.9885715 + ], + [ + 53.5598456, + 9.9886401 + ], + [ + 53.5597215, + 9.988702 + ], + [ + 53.5595921, + 9.9887772 + ] + ] + }, + { + "osmId": "259654466", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 264.3936911237311, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.538471, + 10.0366699 + ], + [ + 53.5386669, + 10.0359244 + ], + [ + 53.5387739, + 10.0355146 + ], + [ + 53.539435, + 10.0330124 + ] + ] + }, + { + "osmId": "259750169", + "name": null, + "lengthMeters": 94.65572429103672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2141965, + 11.6180384 + ], + [ + 48.2138757, + 11.6178683 + ], + [ + 48.2137268, + 11.617781 + ], + [ + 48.2136384, + 11.6177244 + ], + [ + 48.2135091, + 11.6176131 + ], + [ + 48.2134151, + 11.6175396 + ] + ] + }, + { + "osmId": "259750170", + "name": null, + "lengthMeters": 215.5968724868292, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2109702, + 11.6161819 + ], + [ + 48.2112238, + 11.6163173 + ], + [ + 48.2118542, + 11.6166653 + ], + [ + 48.212498, + 11.6170165 + ], + [ + 48.2127923, + 11.6171765 + ] + ] + }, + { + "osmId": "259750171", + "name": null, + "lengthMeters": 553.2065868864416, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2461068, + 11.6302988 + ], + [ + 48.2458632, + 11.6302198 + ], + [ + 48.2454756, + 11.6300953 + ], + [ + 48.2444277, + 11.6297585 + ], + [ + 48.2412375, + 11.6287665 + ] + ] + }, + { + "osmId": "259922771", + "name": null, + "lengthMeters": 145.30703627587872, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522827, + 11.4542363 + ], + [ + 48.1520134, + 11.4554818 + ], + [ + 48.1519434, + 11.4557396 + ], + [ + 48.15185, + 11.4560833 + ] + ] + }, + { + "osmId": "259929992", + "name": null, + "lengthMeters": 548.3279128409893, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875816, + 10.0639163 + ], + [ + 53.5874114, + 10.0639782 + ], + [ + 53.5872437, + 10.06404 + ], + [ + 53.5871211, + 10.0641061 + ], + [ + 53.5869833, + 10.0641821 + ], + [ + 53.5868478, + 10.0642796 + ], + [ + 53.586188, + 10.0649097 + ], + [ + 53.5856303, + 10.0654455 + ], + [ + 53.5852062, + 10.0658389 + ], + [ + 53.5850112, + 10.0660132 + ], + [ + 53.5847911, + 10.0662067 + ], + [ + 53.5846131, + 10.0663236 + ], + [ + 53.5837227, + 10.0668676 + ], + [ + 53.5830847, + 10.067226 + ] + ] + }, + { + "osmId": "259931614", + "name": null, + "lengthMeters": 90.59003543688021, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552576, + 9.9696886 + ], + [ + 53.5517696, + 9.9698838 + ] + ] + }, + { + "osmId": "260107223", + "name": null, + "lengthMeters": 951.5218444813686, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1083679, + 11.4685968 + ], + [ + 48.1083381, + 11.4681978 + ], + [ + 48.1082981, + 11.4674639 + ], + [ + 48.1082636, + 11.4668508 + ], + [ + 48.1082364, + 11.4662376 + ], + [ + 48.1082364, + 11.4647248 + ], + [ + 48.1082235, + 11.4639901 + ], + [ + 48.1082109, + 11.4626103 + ], + [ + 48.1082066, + 11.4621176 + ], + [ + 48.1082074, + 11.4618639 + ], + [ + 48.1082154, + 11.4614776 + ], + [ + 48.1082547, + 11.4606152 + ], + [ + 48.1083276, + 11.4593707 + ], + [ + 48.1083757, + 11.4586647 + ], + [ + 48.1085225, + 11.4569659 + ], + [ + 48.1086154, + 11.4558234 + ] + ] + }, + { + "osmId": "260910485", + "name": null, + "lengthMeters": 261.528484381542, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1723876, + 11.572637 + ], + [ + 48.1715437, + 11.5726533 + ], + [ + 48.1707008, + 11.5726759 + ], + [ + 48.1703297, + 11.5726563 + ], + [ + 48.1700361, + 11.5726484 + ] + ] + }, + { + "osmId": "260992229", + "name": "Tempelhofer Kurve", + "lengthMeters": 453.9543064973512, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4693065, + 13.3631445 + ], + [ + 52.4693623, + 13.3631747 + ], + [ + 52.4694432, + 13.3632206 + ], + [ + 52.4695828, + 13.3633054 + ], + [ + 52.4696427, + 13.3633444 + ], + [ + 52.4697017, + 13.3633861 + ], + [ + 52.4697428, + 13.3634158 + ], + [ + 52.4697831, + 13.3634469 + ], + [ + 52.4698306, + 13.3634866 + ], + [ + 52.469878, + 13.3635277 + ], + [ + 52.469918, + 13.3635664 + ], + [ + 52.4700026, + 13.3636513 + ], + [ + 52.4700907, + 13.3637494 + ], + [ + 52.4701579, + 13.3638325 + ], + [ + 52.4702079, + 13.3638997 + ], + [ + 52.4702725, + 13.3639892 + ], + [ + 52.4703358, + 13.364084 + ], + [ + 52.4704082, + 13.3642006 + ], + [ + 52.4704773, + 13.3643243 + ], + [ + 52.4705326, + 13.3644342 + ], + [ + 52.4705852, + 13.3645471 + ], + [ + 52.4706232, + 13.3646322 + ], + [ + 52.4706604, + 13.3647219 + ], + [ + 52.4707057, + 13.3648392 + ], + [ + 52.4707517, + 13.3649712 + ], + [ + 52.4707889, + 13.3650878 + ], + [ + 52.4708237, + 13.365212 + ], + [ + 52.470859, + 13.3653431 + ], + [ + 52.4709008, + 13.3655234 + ], + [ + 52.4709414, + 13.365738 + ], + [ + 52.4709745, + 13.3659632 + ], + [ + 52.4709952, + 13.3661493 + ], + [ + 52.471009, + 13.3663137 + ], + [ + 52.4710194, + 13.3664863 + ], + [ + 52.4710325, + 13.3667853 + ], + [ + 52.4710648, + 13.3676679 + ], + [ + 52.4710974, + 13.3685183 + ] + ] + }, + { + "osmId": "261576271", + "name": null, + "lengthMeters": 1632.748832737978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1319163, + 11.5975934 + ], + [ + 48.1318967, + 11.5975625 + ], + [ + 48.1318304, + 11.5974473 + ], + [ + 48.1312447, + 11.5964395 + ], + [ + 48.1312024, + 11.596379 + ], + [ + 48.1311588, + 11.5963238 + ], + [ + 48.131098, + 11.5962623 + ], + [ + 48.1310342, + 11.5962103 + ], + [ + 48.1306906, + 11.5959563 + ], + [ + 48.1306535, + 11.5959254 + ], + [ + 48.1302769, + 11.5955693 + ], + [ + 48.1302615, + 11.5955488 + ], + [ + 48.1302364, + 11.5955158 + ], + [ + 48.1301835, + 11.5954314 + ], + [ + 48.130134, + 11.5953603 + ], + [ + 48.1300726, + 11.5952887 + ], + [ + 48.1295186, + 11.5947373 + ], + [ + 48.1289829, + 11.5941482 + ], + [ + 48.1289187, + 11.5940949 + ], + [ + 48.1288678, + 11.5940532 + ], + [ + 48.1288281, + 11.5940253 + ], + [ + 48.1287381, + 11.5939709 + ], + [ + 48.1286983, + 11.5939514 + ], + [ + 48.1286518, + 11.5939265 + ], + [ + 48.1285437, + 11.5938664 + ], + [ + 48.1284773, + 11.5938257 + ], + [ + 48.1284207, + 11.5937919 + ], + [ + 48.1278484, + 11.5933999 + ], + [ + 48.1270641, + 11.5929185 + ], + [ + 48.1268151, + 11.592717 + ], + [ + 48.1265899, + 11.5925182 + ], + [ + 48.1265024, + 11.5924131 + ], + [ + 48.1263242, + 11.5921655 + ], + [ + 48.126246, + 11.5920366 + ], + [ + 48.1262152, + 11.5919858 + ], + [ + 48.1261108, + 11.5917939 + ], + [ + 48.1259592, + 11.59147 + ], + [ + 48.1259259, + 11.5913988 + ], + [ + 48.1258633, + 11.591265 + ], + [ + 48.1258275, + 11.5911886 + ], + [ + 48.1255688, + 11.5905917 + ], + [ + 48.1254446, + 11.5903058 + ], + [ + 48.125283, + 11.5899333 + ], + [ + 48.1249262, + 11.5891194 + ], + [ + 48.12489, + 11.5890371 + ], + [ + 48.1248616, + 11.5889757 + ], + [ + 48.1248321, + 11.5889231 + ], + [ + 48.1248039, + 11.5888727 + ], + [ + 48.124615, + 11.5885356 + ], + [ + 48.1244463, + 11.5882377 + ], + [ + 48.1243605, + 11.5880861 + ], + [ + 48.1242742, + 11.5879336 + ], + [ + 48.1241824, + 11.5878099 + ], + [ + 48.1241111, + 11.5877236 + ], + [ + 48.1240112, + 11.5876342 + ], + [ + 48.1239072, + 11.5875552 + ], + [ + 48.1229842, + 11.5869018 + ], + [ + 48.122681, + 11.5866724 + ], + [ + 48.1224969, + 11.5865275 + ], + [ + 48.1221904, + 11.5862796 + ], + [ + 48.1221547, + 11.5862467 + ], + [ + 48.1217767, + 11.5859223 + ], + [ + 48.1216684, + 11.5858277 + ], + [ + 48.1215937, + 11.5857579 + ], + [ + 48.1215492, + 11.5857162 + ], + [ + 48.1209885, + 11.5851921 + ], + [ + 48.1209353, + 11.5851424 + ], + [ + 48.1208443, + 11.5850615 + ], + [ + 48.1207211, + 11.5849768 + ], + [ + 48.1205907, + 11.5849136 + ], + [ + 48.1205259, + 11.5848857 + ], + [ + 48.1204867, + 11.5848621 + ], + [ + 48.120432, + 11.5848292 + ], + [ + 48.1203856, + 11.5847978 + ], + [ + 48.1203783, + 11.5847929 + ] + ] + }, + { + "osmId": "261576279", + "name": null, + "lengthMeters": 1211.255378100866, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1322128, + 11.5976553 + ], + [ + 48.1321663, + 11.5977219 + ], + [ + 48.1321546, + 11.5977394 + ], + [ + 48.1320993, + 11.5978211 + ], + [ + 48.132014, + 11.5979592 + ], + [ + 48.132012, + 11.5979622 + ], + [ + 48.131815, + 11.5982445 + ], + [ + 48.1315414, + 11.598655 + ], + [ + 48.1312682, + 11.5990521 + ], + [ + 48.1310734, + 11.5993353 + ], + [ + 48.1310167, + 11.5994228 + ], + [ + 48.1309458, + 11.5994931 + ], + [ + 48.1309167, + 11.5995219 + ], + [ + 48.1308522, + 11.5995676 + ], + [ + 48.1308356, + 11.5995776 + ], + [ + 48.1307808, + 11.5996182 + ], + [ + 48.1307356, + 11.5996516 + ], + [ + 48.1306111, + 11.599771 + ], + [ + 48.1305092, + 11.5998961 + ], + [ + 48.1301788, + 11.6003851 + ], + [ + 48.1296411, + 11.6011811 + ], + [ + 48.1295693, + 11.601315 + ], + [ + 48.129504, + 11.6014637 + ], + [ + 48.1294855, + 11.601513 + ], + [ + 48.1294346, + 11.6016591 + ], + [ + 48.1294217, + 11.6016973 + ], + [ + 48.1293873, + 11.6018085 + ], + [ + 48.129341, + 11.60191 + ], + [ + 48.129298, + 11.6019859 + ], + [ + 48.1289689, + 11.6024688 + ], + [ + 48.1286864, + 11.6028835 + ], + [ + 48.128675, + 11.6029172 + ], + [ + 48.1286573, + 11.6029723 + ], + [ + 48.1286498, + 11.6030019 + ], + [ + 48.1286459, + 11.6030446 + ], + [ + 48.1286443, + 11.6031063 + ], + [ + 48.1286483, + 11.6031613 + ], + [ + 48.1286683, + 11.6032518 + ], + [ + 48.1286871, + 11.6033294 + ], + [ + 48.1287178, + 11.603483 + ], + [ + 48.1287248, + 11.6035589 + ], + [ + 48.1287258, + 11.6035826 + ], + [ + 48.1287238, + 11.6036763 + ], + [ + 48.1287178, + 11.6037637 + ], + [ + 48.1287051, + 11.6038303 + ], + [ + 48.1286845, + 11.6039041 + ], + [ + 48.1286167, + 11.6041037 + ], + [ + 48.1286039, + 11.6041509 + ], + [ + 48.1285989, + 11.6041751 + ], + [ + 48.128587, + 11.6042556 + ], + [ + 48.1285849, + 11.6043102 + ], + [ + 48.1285861, + 11.6043377 + ], + [ + 48.1285876, + 11.6043513 + ], + [ + 48.128594, + 11.6043921 + ], + [ + 48.12861, + 11.6044376 + ], + [ + 48.1286154, + 11.604451 + ], + [ + 48.1286346, + 11.604489 + ], + [ + 48.1286751, + 11.6045625 + ], + [ + 48.129353, + 11.6055719 + ], + [ + 48.1304924, + 11.6072709 + ], + [ + 48.1310534, + 11.6081043 + ], + [ + 48.131609, + 11.6089517 + ], + [ + 48.1317189, + 11.6091181 + ], + [ + 48.1320041, + 11.6095349 + ] + ] + }, + { + "osmId": "262167694", + "name": null, + "lengthMeters": 91.97547021200168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5736342, + 13.502865 + ], + [ + 52.5735398, + 13.5029862 + ], + [ + 52.5732904, + 13.5033061 + ], + [ + 52.5731796, + 13.5034443 + ], + [ + 52.5729805, + 13.5036989 + ] + ] + }, + { + "osmId": "262167697", + "name": null, + "lengthMeters": 2618.5830421451997, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5555717, + 13.5254979 + ], + [ + 52.555393, + 13.5256535 + ], + [ + 52.5551308, + 13.5258781 + ], + [ + 52.5549381, + 13.5260435 + ], + [ + 52.5547427, + 13.526199 + ], + [ + 52.5541263, + 13.5266761 + ], + [ + 52.5540932, + 13.526699 + ], + [ + 52.5535195, + 13.5270955 + ], + [ + 52.5531905, + 13.5273078 + ], + [ + 52.5527266, + 13.527591 + ], + [ + 52.5522648, + 13.5278384 + ], + [ + 52.5516988, + 13.5281213 + ], + [ + 52.5512036, + 13.5283387 + ], + [ + 52.5503002, + 13.5286963 + ], + [ + 52.5493909, + 13.5290211 + ], + [ + 52.5461193, + 13.5302226 + ], + [ + 52.5444787, + 13.5308274 + ], + [ + 52.5428301, + 13.5314369 + ], + [ + 52.5417112, + 13.531835 + ], + [ + 52.5405743, + 13.5321869 + ], + [ + 52.5399606, + 13.5323619 + ], + [ + 52.5389, + 13.5326346 + ], + [ + 52.5383479, + 13.532758 + ], + [ + 52.5378847, + 13.5328653 + ], + [ + 52.5377425, + 13.5329079 + ], + [ + 52.5374312, + 13.5329875 + ], + [ + 52.5371067, + 13.5330764 + ], + [ + 52.5370776, + 13.5330844 + ], + [ + 52.537004, + 13.5331047 + ], + [ + 52.5366106, + 13.5332603 + ], + [ + 52.5361583, + 13.533388 + ], + [ + 52.5357733, + 13.5335212 + ], + [ + 52.535635, + 13.5335744 + ], + [ + 52.5355196, + 13.5336166 + ], + [ + 52.535243, + 13.5337299 + ], + [ + 52.5346455, + 13.5339885 + ], + [ + 52.5344013, + 13.5341107 + ], + [ + 52.5341931, + 13.5341859 + ], + [ + 52.5341023, + 13.5342219 + ], + [ + 52.5339812, + 13.5342699 + ], + [ + 52.5336603, + 13.534394 + ], + [ + 52.5332588, + 13.5345449 + ], + [ + 52.5327732, + 13.5346852 + ] + ] + }, + { + "osmId": "262167703", + "name": null, + "lengthMeters": 650.4100295544273, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.567596, + 13.5108733 + ], + [ + 52.5679737, + 13.5103392 + ], + [ + 52.5681643, + 13.5100727 + ], + [ + 52.5683558, + 13.5098155 + ], + [ + 52.5688093, + 13.509231 + ], + [ + 52.5697296, + 13.5080553 + ], + [ + 52.5698207, + 13.5079366 + ], + [ + 52.569904, + 13.507829 + ], + [ + 52.5713693, + 13.5059584 + ], + [ + 52.5718292, + 13.5054055 + ], + [ + 52.5720122, + 13.5051875 + ], + [ + 52.5721474, + 13.5050228 + ], + [ + 52.5722051, + 13.5049515 + ] + ] + }, + { + "osmId": "262167706", + "name": null, + "lengthMeters": 195.37894547356038, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122477, + 13.5015007 + ], + [ + 52.5120862, + 13.5011405 + ], + [ + 52.5119024, + 13.5007537 + ], + [ + 52.5118067, + 13.5005605 + ], + [ + 52.5115822, + 13.5001326 + ], + [ + 52.5112862, + 13.4996083 + ], + [ + 52.5112106, + 13.4994655 + ], + [ + 52.5111186, + 13.4992915 + ] + ] + }, + { + "osmId": "262185720", + "name": null, + "lengthMeters": 357.03620824086045, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.357926, + 13.1100636 + ], + [ + 52.3574719, + 13.1103214 + ], + [ + 52.3548922, + 13.1117855 + ] + ] + }, + { + "osmId": "262723700", + "name": null, + "lengthMeters": 229.09018158925124, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6942593, + 10.1370274 + ], + [ + 53.6935106, + 10.1370842 + ], + [ + 53.6932158, + 10.1371102 + ], + [ + 53.6929121, + 10.137137 + ], + [ + 53.6927958, + 10.1371501 + ], + [ + 53.6922022, + 10.1372172 + ] + ] + }, + { + "osmId": "263108169", + "name": null, + "lengthMeters": 7590.158823207721, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3757151, + 13.6490388 + ], + [ + 52.3757449, + 13.6489975 + ], + [ + 52.3757697, + 13.6489578 + ], + [ + 52.375782, + 13.6489384 + ], + [ + 52.3758137, + 13.6488879 + ], + [ + 52.3758455, + 13.6488381 + ], + [ + 52.3759721, + 13.6486482 + ], + [ + 52.3759946, + 13.6486175 + ], + [ + 52.3760212, + 13.648579 + ], + [ + 52.3761647, + 13.6483877 + ], + [ + 52.3762538, + 13.6482649 + ], + [ + 52.3763041, + 13.6481948 + ], + [ + 52.3763627, + 13.6481158 + ], + [ + 52.376471, + 13.6479676 + ], + [ + 52.3766682, + 13.6476973 + ], + [ + 52.3768225, + 13.6474869 + ], + [ + 52.3769604, + 13.6472976 + ], + [ + 52.3771536, + 13.6470325 + ], + [ + 52.3774346, + 13.6466477 + ], + [ + 52.377594, + 13.6464293 + ], + [ + 52.3778633, + 13.6460592 + ], + [ + 52.3780321, + 13.6458291 + ], + [ + 52.3782272, + 13.6455695 + ], + [ + 52.3782671, + 13.6455186 + ], + [ + 52.3782824, + 13.6454984 + ], + [ + 52.3782982, + 13.645477 + ], + [ + 52.3783203, + 13.6454473 + ], + [ + 52.37837, + 13.6453871 + ], + [ + 52.3784427, + 13.6452963 + ], + [ + 52.3784817, + 13.6452412 + ], + [ + 52.3787699, + 13.6448383 + ], + [ + 52.3789252, + 13.6446291 + ], + [ + 52.3790154, + 13.6445038 + ], + [ + 52.379102, + 13.6443836 + ], + [ + 52.3792969, + 13.6441173 + ], + [ + 52.3794178, + 13.6439663 + ], + [ + 52.3794349, + 13.6439441 + ], + [ + 52.3795068, + 13.643852 + ], + [ + 52.3795639, + 13.6437772 + ], + [ + 52.3798257, + 13.6433838 + ], + [ + 52.3798545, + 13.6433378 + ], + [ + 52.3798942, + 13.6432791 + ], + [ + 52.3799536, + 13.6431856 + ], + [ + 52.3821484, + 13.6397674 + ], + [ + 52.3823174, + 13.639505 + ], + [ + 52.3851683, + 13.6350702 + ], + [ + 52.3859555, + 13.6338428 + ], + [ + 52.3860204, + 13.6337557 + ], + [ + 52.386041, + 13.6337315 + ], + [ + 52.3860588, + 13.6337144 + ], + [ + 52.3860788, + 13.633699 + ], + [ + 52.3860949, + 13.6336892 + ], + [ + 52.3861176, + 13.6336785 + ], + [ + 52.3861299, + 13.6336751 + ], + [ + 52.3861539, + 13.6336711 + ], + [ + 52.3861625, + 13.6336712 + ], + [ + 52.3861746, + 13.6336715 + ], + [ + 52.3862073, + 13.6336773 + ], + [ + 52.3862237, + 13.6336838 + ], + [ + 52.3862384, + 13.6336914 + ], + [ + 52.3862555, + 13.633701 + ], + [ + 52.3862721, + 13.6337121 + ], + [ + 52.3862856, + 13.6337225 + ], + [ + 52.3863264, + 13.6337581 + ], + [ + 52.3864149, + 13.6338444 + ], + [ + 52.3866019, + 13.634025 + ], + [ + 52.3867115, + 13.6341296 + ], + [ + 52.3868046, + 13.6342166 + ], + [ + 52.3868971, + 13.6342972 + ], + [ + 52.386994, + 13.6343762 + ], + [ + 52.3872029, + 13.6345337 + ], + [ + 52.3873736, + 13.634645 + ], + [ + 52.3875724, + 13.6347613 + ], + [ + 52.3877314, + 13.6348411 + ], + [ + 52.3878729, + 13.6349048 + ], + [ + 52.3880952, + 13.6349925 + ], + [ + 52.3882958, + 13.6350589 + ], + [ + 52.3884986, + 13.6351261 + ], + [ + 52.3888282, + 13.6352016 + ], + [ + 52.3891422, + 13.6352653 + ], + [ + 52.3895452, + 13.63529 + ], + [ + 52.3899432, + 13.6352755 + ], + [ + 52.3901563, + 13.6352445 + ], + [ + 52.390476, + 13.6351982 + ], + [ + 52.3905237, + 13.6351853 + ], + [ + 52.3907301, + 13.6351299 + ], + [ + 52.3909891, + 13.6350317 + ], + [ + 52.3912295, + 13.634932 + ], + [ + 52.3916377, + 13.6347528 + ], + [ + 52.391892, + 13.6346122 + ], + [ + 52.3920783, + 13.6344858 + ], + [ + 52.3923313, + 13.6342775 + ], + [ + 52.392624, + 13.6339933 + ], + [ + 52.3937355, + 13.6327674 + ], + [ + 52.3940801, + 13.6323836 + ], + [ + 52.3943408, + 13.6320931 + ], + [ + 52.3946578, + 13.6317399 + ], + [ + 52.3947051, + 13.6316934 + ], + [ + 52.3948811, + 13.6315205 + ], + [ + 52.3951191, + 13.6313191 + ], + [ + 52.3953522, + 13.6310653 + ], + [ + 52.3956765, + 13.6307148 + ], + [ + 52.395921, + 13.6304485 + ], + [ + 52.3960193, + 13.6303281 + ], + [ + 52.3961562, + 13.6301302 + ], + [ + 52.3963213, + 13.6297982 + ], + [ + 52.3964051, + 13.6296329 + ], + [ + 52.3964855, + 13.6294241 + ], + [ + 52.3966386, + 13.6290895 + ], + [ + 52.3967168, + 13.6289711 + ], + [ + 52.3967404, + 13.6289353 + ], + [ + 52.3968392, + 13.6288117 + ], + [ + 52.397626, + 13.6279662 + ], + [ + 52.3979806, + 13.6275896 + ], + [ + 52.3991172, + 13.6263748 + ], + [ + 52.3994973, + 13.6259817 + ], + [ + 52.3996705, + 13.6258438 + ], + [ + 52.399861, + 13.625714 + ], + [ + 52.4010339, + 13.6249078 + ], + [ + 52.4013919, + 13.6246617 + ], + [ + 52.4014344, + 13.6246324 + ], + [ + 52.4019309, + 13.6242898 + ], + [ + 52.4027916, + 13.6237225 + ], + [ + 52.4029885, + 13.6236016 + ], + [ + 52.4031859, + 13.6235083 + ], + [ + 52.4046984, + 13.6231531 + ], + [ + 52.4049277, + 13.6230488 + ], + [ + 52.4051387, + 13.6228948 + ], + [ + 52.4052615, + 13.6227652 + ], + [ + 52.4053386, + 13.6226689 + ], + [ + 52.4055073, + 13.6224033 + ], + [ + 52.4056347, + 13.6221415 + ], + [ + 52.4057216, + 13.6218425 + ], + [ + 52.4059587, + 13.6206976 + ], + [ + 52.4059861, + 13.6205655 + ], + [ + 52.4064822, + 13.6180281 + ], + [ + 52.4065305, + 13.6176816 + ], + [ + 52.4065578, + 13.6172368 + ], + [ + 52.4065655, + 13.6169693 + ], + [ + 52.4066025, + 13.6129625 + ], + [ + 52.4066087, + 13.6127369 + ], + [ + 52.4066232, + 13.6125684 + ], + [ + 52.406668, + 13.6121691 + ], + [ + 52.4067392, + 13.611794 + ], + [ + 52.406838, + 13.6114373 + ], + [ + 52.4069265, + 13.6111736 + ], + [ + 52.4071205, + 13.6107393 + ], + [ + 52.4073382, + 13.6103348 + ], + [ + 52.4077685, + 13.6095459 + ], + [ + 52.4079258, + 13.6092184 + ], + [ + 52.4080561, + 13.6088883 + ], + [ + 52.4081119, + 13.6086684 + ], + [ + 52.4081576, + 13.608457 + ], + [ + 52.4084314, + 13.6062058 + ], + [ + 52.4086374, + 13.6045618 + ], + [ + 52.4087096, + 13.603986 + ], + [ + 52.4087202, + 13.6038941 + ], + [ + 52.4087811, + 13.6034504 + ], + [ + 52.4088316, + 13.6033 + ], + [ + 52.4088873, + 13.6031616 + ], + [ + 52.4094815, + 13.6018807 + ], + [ + 52.4097154, + 13.6013726 + ], + [ + 52.4099378, + 13.6008511 + ], + [ + 52.4100388, + 13.600554 + ], + [ + 52.4100904, + 13.6004045 + ], + [ + 52.4101345, + 13.6002379 + ], + [ + 52.4101968, + 13.59993 + ], + [ + 52.4104426, + 13.5983713 + ], + [ + 52.4105463, + 13.5976825 + ], + [ + 52.4105554, + 13.5976277 + ], + [ + 52.4108117, + 13.5959271 + ], + [ + 52.4108428, + 13.5956321 + ], + [ + 52.410862, + 13.595404 + ], + [ + 52.4108714, + 13.5951623 + ], + [ + 52.4108681, + 13.5945329 + ], + [ + 52.4108518, + 13.5933924 + ], + [ + 52.4108434, + 13.592564 + ], + [ + 52.4108332, + 13.5917804 + ], + [ + 52.4108107, + 13.5900681 + ], + [ + 52.4108115, + 13.5899463 + ], + [ + 52.4108164, + 13.5898317 + ], + [ + 52.4108253, + 13.5897215 + ], + [ + 52.4108377, + 13.5896126 + ], + [ + 52.4108547, + 13.5895078 + ], + [ + 52.4108787, + 13.5894052 + ], + [ + 52.4109078, + 13.5893015 + ], + [ + 52.4109419, + 13.5892032 + ], + [ + 52.4110296, + 13.5889917 + ], + [ + 52.4111999, + 13.5885995 + ], + [ + 52.4114267, + 13.5880838 + ], + [ + 52.4114676, + 13.5879892 + ], + [ + 52.4115349, + 13.5878333 + ], + [ + 52.4115791, + 13.587713 + ], + [ + 52.4116173, + 13.5875809 + ], + [ + 52.4116507, + 13.5873984 + ], + [ + 52.4116649, + 13.5872551 + ], + [ + 52.4116674, + 13.5872157 + ], + [ + 52.4116712, + 13.58715 + ], + [ + 52.4116727, + 13.5870995 + ], + [ + 52.411671, + 13.5869676 + ], + [ + 52.4116607, + 13.58684 + ], + [ + 52.4116506, + 13.5867482 + ], + [ + 52.4116333, + 13.5866457 + ], + [ + 52.4116015, + 13.5865182 + ], + [ + 52.4115429, + 13.5863384 + ], + [ + 52.4114111, + 13.5859726 + ], + [ + 52.4111568, + 13.5852593 + ], + [ + 52.4110738, + 13.5850217 + ], + [ + 52.4109911, + 13.5847583 + ], + [ + 52.4109623, + 13.5846169 + ], + [ + 52.4109441, + 13.5845027 + ], + [ + 52.4109249, + 13.5843513 + ], + [ + 52.4108918, + 13.5839879 + ], + [ + 52.4108243, + 13.5832688 + ], + [ + 52.4107629, + 13.5825534 + ], + [ + 52.4107609, + 13.5825143 + ], + [ + 52.410752, + 13.5823153 + ], + [ + 52.4107488, + 13.5821394 + ], + [ + 52.410746, + 13.5817634 + ], + [ + 52.4107467, + 13.5810112 + ], + [ + 52.4107554, + 13.5795809 + ], + [ + 52.4107756, + 13.5793943 + ], + [ + 52.4108141, + 13.5791664 + ], + [ + 52.4108604, + 13.5790103 + ], + [ + 52.4108701, + 13.5789806 + ], + [ + 52.4109358, + 13.578817 + ], + [ + 52.4117484, + 13.5772091 + ], + [ + 52.4118931, + 13.5769414 + ], + [ + 52.4120378, + 13.5766895 + ], + [ + 52.4122724, + 13.5763619 + ], + [ + 52.4131505, + 13.575152 + ], + [ + 52.4131745, + 13.5751199 + ], + [ + 52.4134772, + 13.5747052 + ], + [ + 52.4135521, + 13.5746019 + ], + [ + 52.4135915, + 13.5745481 + ], + [ + 52.4136194, + 13.5745115 + ], + [ + 52.4136425, + 13.5744865 + ], + [ + 52.4136683, + 13.5744631 + ], + [ + 52.4136902, + 13.5744487 + ], + [ + 52.4137176, + 13.5744364 + ], + [ + 52.4137436, + 13.5744298 + ], + [ + 52.4137686, + 13.5744277 + ], + [ + 52.4137927, + 13.5744312 + ], + [ + 52.4138161, + 13.5744394 + ], + [ + 52.4138474, + 13.5744567 + ], + [ + 52.413878, + 13.5744822 + ], + [ + 52.4139047, + 13.5745121 + ], + [ + 52.4139299, + 13.5745492 + ], + [ + 52.4139523, + 13.5745903 + ] + ] + }, + { + "osmId": "264586688", + "name": null, + "lengthMeters": 345.27294279917726, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4949053, + 13.3775207 + ], + [ + 52.4950863, + 13.3776326 + ], + [ + 52.4977904, + 13.3794062 + ] + ] + }, + { + "osmId": "264959055", + "name": null, + "lengthMeters": 1175.4677318831175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4730625, + 13.7504384 + ], + [ + 52.473033, + 13.7502607 + ], + [ + 52.4730029, + 13.7500971 + ], + [ + 52.4729289, + 13.7497299 + ], + [ + 52.4728749, + 13.7495168 + ], + [ + 52.4726022, + 13.7484411 + ], + [ + 52.4725652, + 13.7482928 + ], + [ + 52.4722534, + 13.7470538 + ], + [ + 52.4722306, + 13.7469591 + ], + [ + 52.4722136, + 13.7468876 + ], + [ + 52.4722008, + 13.746829 + ], + [ + 52.472174, + 13.7467021 + ], + [ + 52.4721586, + 13.7466131 + ], + [ + 52.4721539, + 13.7465743 + ], + [ + 52.4721487, + 13.7465269 + ], + [ + 52.4721442, + 13.746471 + ], + [ + 52.4721416, + 13.7464108 + ], + [ + 52.4721396, + 13.7463555 + ], + [ + 52.4721356, + 13.7461942 + ], + [ + 52.4721209, + 13.7451173 + ], + [ + 52.4721126, + 13.7437518 + ], + [ + 52.4721118, + 13.7435941 + ], + [ + 52.4720925, + 13.7409501 + ], + [ + 52.4720948, + 13.7408147 + ], + [ + 52.4721009, + 13.7406689 + ], + [ + 52.4721411, + 13.7400667 + ], + [ + 52.4722242, + 13.7388344 + ], + [ + 52.4722734, + 13.7381003 + ], + [ + 52.4722914, + 13.7378425 + ], + [ + 52.4722971, + 13.7377538 + ], + [ + 52.4724499, + 13.735505 + ], + [ + 52.472493, + 13.7348697 + ], + [ + 52.4725201, + 13.7344692 + ], + [ + 52.472533, + 13.734253 + ], + [ + 52.4725704, + 13.7335695 + ], + [ + 52.4725777, + 13.7334108 + ] + ] + }, + { + "osmId": "264959056", + "name": null, + "lengthMeters": 800.9933704922718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4730625, + 13.7504384 + ], + [ + 52.4730754, + 13.7505229 + ], + [ + 52.4730859, + 13.750602 + ], + [ + 52.4730942, + 13.7506769 + ], + [ + 52.4731022, + 13.7507555 + ], + [ + 52.4731069, + 13.7508107 + ], + [ + 52.4731131, + 13.7508732 + ], + [ + 52.4731204, + 13.7509326 + ], + [ + 52.4731299, + 13.7510052 + ], + [ + 52.4732267, + 13.7515903 + ], + [ + 52.4732717, + 13.7518503 + ], + [ + 52.4733444, + 13.7522731 + ], + [ + 52.4733617, + 13.7523761 + ], + [ + 52.4734955, + 13.7531491 + ], + [ + 52.4735388, + 13.7534035 + ], + [ + 52.4735803, + 13.7536419 + ], + [ + 52.4736391, + 13.7539839 + ], + [ + 52.4736672, + 13.7541574 + ], + [ + 52.4736894, + 13.7543107 + ], + [ + 52.4737078, + 13.7544835 + ], + [ + 52.473719, + 13.7546419 + ], + [ + 52.4737271, + 13.7548049 + ], + [ + 52.4737297, + 13.7549278 + ], + [ + 52.4737302, + 13.75508 + ], + [ + 52.4737264, + 13.7552667 + ], + [ + 52.4737177, + 13.7555536 + ], + [ + 52.4737015, + 13.7560677 + ], + [ + 52.4736693, + 13.7570872 + ], + [ + 52.4736349, + 13.7581339 + ], + [ + 52.4736056, + 13.7590871 + ], + [ + 52.4735758, + 13.7600422 + ], + [ + 52.4735703, + 13.7603263 + ], + [ + 52.4735651, + 13.7606052 + ], + [ + 52.4735431, + 13.7613062 + ], + [ + 52.4735391, + 13.7614616 + ], + [ + 52.4735365, + 13.7615609 + ], + [ + 52.4735361, + 13.7616309 + ], + [ + 52.4735362, + 13.761667 + ], + [ + 52.4735369, + 13.761704 + ], + [ + 52.4735382, + 13.7617682 + ], + [ + 52.4735431, + 13.7618755 + ], + [ + 52.4735445, + 13.7619301 + ], + [ + 52.473546, + 13.7619904 + ], + [ + 52.4735462, + 13.7620316 + ], + [ + 52.4735449, + 13.7621152 + ] + ] + }, + { + "osmId": "264959057", + "name": null, + "lengthMeters": 1643.435131457872, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4726531, + 13.7318466 + ], + [ + 52.4726951, + 13.730947 + ], + [ + 52.4727081, + 13.7306867 + ], + [ + 52.4727253, + 13.7302613 + ], + [ + 52.4727464, + 13.729845 + ], + [ + 52.472837, + 13.7279124 + ], + [ + 52.4729118, + 13.7263884 + ], + [ + 52.4730719, + 13.7230077 + ], + [ + 52.473168, + 13.7209845 + ], + [ + 52.4731973, + 13.7203558 + ], + [ + 52.4732733, + 13.7187786 + ], + [ + 52.4732898, + 13.718425 + ], + [ + 52.4733326, + 13.7175423 + ], + [ + 52.4733832, + 13.7164714 + ], + [ + 52.4734281, + 13.7155442 + ], + [ + 52.4734416, + 13.7152577 + ], + [ + 52.4734855, + 13.7143807 + ], + [ + 52.4734914, + 13.7142737 + ], + [ + 52.4734985, + 13.714188 + ], + [ + 52.4735064, + 13.7141302 + ], + [ + 52.4735184, + 13.7140677 + ], + [ + 52.4735356, + 13.7140001 + ], + [ + 52.4735556, + 13.7139366 + ], + [ + 52.4735675, + 13.7139062 + ], + [ + 52.4736002, + 13.7138319 + ], + [ + 52.4736324, + 13.7137789 + ], + [ + 52.473666, + 13.7137262 + ], + [ + 52.473898, + 13.7134123 + ], + [ + 52.4739637, + 13.7133257 + ], + [ + 52.4740573, + 13.7132001 + ], + [ + 52.475197, + 13.7116688 + ], + [ + 52.4753001, + 13.7115385 + ], + [ + 52.4753841, + 13.7114191 + ], + [ + 52.475538, + 13.711209 + ], + [ + 52.4762543, + 13.7102536 + ], + [ + 52.4764981, + 13.7099309 + ] + ] + }, + { + "osmId": "264959058", + "name": null, + "lengthMeters": 120.72494643482946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4773648, + 13.7087655 + ], + [ + 52.4773403, + 13.7087952 + ], + [ + 52.4773206, + 13.7088189 + ], + [ + 52.4772924, + 13.7088497 + ], + [ + 52.4772534, + 13.7088885 + ], + [ + 52.4772178, + 13.7089222 + ], + [ + 52.4771784, + 13.7089623 + ], + [ + 52.4771477, + 13.7089946 + ], + [ + 52.4770518, + 13.7091045 + ], + [ + 52.476835, + 13.7094042 + ], + [ + 52.4767399, + 13.7095327 + ], + [ + 52.4765047, + 13.7098487 + ] + ] + }, + { + "osmId": "264959063", + "name": null, + "lengthMeters": 801.793843917976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4735449, + 13.7621152 + ], + [ + 52.4735591, + 13.7617037 + ], + [ + 52.4735625, + 13.7616008 + ], + [ + 52.4735662, + 13.7614641 + ], + [ + 52.4735812, + 13.7609947 + ], + [ + 52.4736709, + 13.7581368 + ], + [ + 52.4737078, + 13.7569026 + ], + [ + 52.4737543, + 13.755393 + ], + [ + 52.473758, + 13.7552344 + ], + [ + 52.4737602, + 13.7551012 + ], + [ + 52.4737603, + 13.7549296 + ], + [ + 52.4737564, + 13.7547697 + ], + [ + 52.473748, + 13.7546237 + ], + [ + 52.4737177, + 13.7542889 + ], + [ + 52.4737017, + 13.7541801 + ], + [ + 52.4736689, + 13.7539713 + ], + [ + 52.4736109, + 13.7536263 + ], + [ + 52.4735699, + 13.7533885 + ], + [ + 52.473393, + 13.7523609 + ], + [ + 52.4733358, + 13.7520266 + ], + [ + 52.4733024, + 13.7518359 + ], + [ + 52.4730625, + 13.7504384 + ] + ] + }, + { + "osmId": "264970115", + "name": null, + "lengthMeters": 325.0852356262173, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1135542, + 11.5778329 + ], + [ + 48.1136155, + 11.5779167 + ], + [ + 48.1138691, + 11.5782707 + ], + [ + 48.1139988, + 11.5784486 + ], + [ + 48.1141221, + 11.5786181 + ], + [ + 48.1141826, + 11.578699 + ], + [ + 48.1142081, + 11.578733 + ], + [ + 48.1142417, + 11.5787714 + ], + [ + 48.1142952, + 11.5788318 + ], + [ + 48.1143388, + 11.5788783 + ], + [ + 48.1143858, + 11.5789218 + ], + [ + 48.1144758, + 11.5789964 + ], + [ + 48.1145574, + 11.5790541 + ], + [ + 48.1146415, + 11.5791052 + ], + [ + 48.1148025, + 11.579193 + ], + [ + 48.1149916, + 11.5793112 + ], + [ + 48.115027, + 11.5793322 + ], + [ + 48.1150667, + 11.5793586 + ], + [ + 48.1151135, + 11.5793965 + ], + [ + 48.1151347, + 11.5794184 + ], + [ + 48.1151681, + 11.5794498 + ], + [ + 48.1152181, + 11.5795095 + ], + [ + 48.1153522, + 11.5796713 + ], + [ + 48.1155793, + 11.5799307 + ], + [ + 48.1157153, + 11.5800784 + ], + [ + 48.1157733, + 11.5801417 + ], + [ + 48.1158219, + 11.5801935 + ], + [ + 48.1159327, + 11.5803123 + ] + ] + }, + { + "osmId": "265934252", + "name": null, + "lengthMeters": 93.07763869007441, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6652319, + 10.2262107 + ], + [ + 53.6656084, + 10.2274725 + ] + ] + }, + { + "osmId": "265934253", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 148.48176411137123, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5503743, + 10.0094632 + ], + [ + 53.5502093, + 10.0098535 + ], + [ + 53.5501225, + 10.0100895 + ], + [ + 53.5499789, + 10.0105211 + ], + [ + 53.5499292, + 10.0106929 + ], + [ + 53.5498965, + 10.010806 + ], + [ + 53.5497967, + 10.0111818 + ], + [ + 53.5497459, + 10.0114356 + ] + ] + }, + { + "osmId": "265934256", + "name": "Vogelfluglinie", + "lengthMeters": 849.206671585721, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6703916, + 10.239461 + ], + [ + 53.6706411, + 10.2400268 + ], + [ + 53.6707241, + 10.2402112 + ], + [ + 53.6709306, + 10.2406162 + ], + [ + 53.6709335, + 10.240622 + ], + [ + 53.6709544, + 10.240663 + ], + [ + 53.6710508, + 10.2408521 + ], + [ + 53.6715331, + 10.2417921 + ], + [ + 53.6719345, + 10.2424759 + ], + [ + 53.6722586, + 10.2429849 + ], + [ + 53.6725877, + 10.2434637 + ], + [ + 53.6729487, + 10.2439227 + ], + [ + 53.6733135, + 10.2443518 + ], + [ + 53.6737254, + 10.244805 + ], + [ + 53.6740644, + 10.2451183 + ], + [ + 53.6744664, + 10.24547 + ], + [ + 53.6746696, + 10.2456364 + ], + [ + 53.6748148, + 10.2457554 + ], + [ + 53.6751915, + 10.2460129 + ], + [ + 53.6752306, + 10.2460396 + ], + [ + 53.6755876, + 10.2462579 + ], + [ + 53.676009, + 10.2464872 + ], + [ + 53.6765002, + 10.2467265 + ] + ] + }, + { + "osmId": "268088751", + "name": null, + "lengthMeters": 92.45944397214109, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4886969, + 13.3729768 + ], + [ + 52.489161, + 13.373238 + ], + [ + 52.4894835, + 13.3734195 + ] + ] + }, + { + "osmId": "268550353", + "name": "S\u00fcdliche Umgehungsbahn", + "lengthMeters": 724.2758057711064, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3341219, + 13.2780849 + ], + [ + 52.3341951, + 13.2783194 + ], + [ + 52.3342586, + 13.2785029 + ], + [ + 52.3343359, + 13.2787012 + ], + [ + 52.3344342, + 13.2789275 + ], + [ + 52.334526, + 13.2791166 + ], + [ + 52.3345933, + 13.2792402 + ], + [ + 52.3346579, + 13.2793537 + ], + [ + 52.3347247, + 13.2794659 + ], + [ + 52.3347963, + 13.2795774 + ], + [ + 52.3348791, + 13.2796955 + ], + [ + 52.3349628, + 13.2798077 + ], + [ + 52.3350237, + 13.279884 + ], + [ + 52.3350846, + 13.2799558 + ], + [ + 52.3351658, + 13.2800446 + ], + [ + 52.3352466, + 13.280129 + ], + [ + 52.335359, + 13.2802357 + ], + [ + 52.3354813, + 13.2803377 + ], + [ + 52.3356042, + 13.280431 + ], + [ + 52.3357412, + 13.280521 + ], + [ + 52.3358759, + 13.2805949 + ], + [ + 52.3359551, + 13.2806345 + ], + [ + 52.3360928, + 13.2806955 + ], + [ + 52.3362174, + 13.2807377 + ], + [ + 52.3363456, + 13.2807727 + ], + [ + 52.3365035, + 13.2808001 + ], + [ + 52.3366345, + 13.2808147 + ], + [ + 52.3367654, + 13.2808193 + ], + [ + 52.3368759, + 13.2808196 + ], + [ + 52.3369821, + 13.2808158 + ], + [ + 52.3371194, + 13.2808073 + ], + [ + 52.337941, + 13.2807426 + ], + [ + 52.3381015, + 13.2807298 + ], + [ + 52.339468, + 13.2806203 + ], + [ + 52.3395585, + 13.2806161 + ], + [ + 52.3397362, + 13.2806132 + ], + [ + 52.3398602, + 13.2806165 + ], + [ + 52.3399753, + 13.2806243 + ] + ] + }, + { + "osmId": "270437694", + "name": null, + "lengthMeters": 256.7092120559304, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4895358, + 13.2655281 + ], + [ + 52.4892969, + 13.2651591 + ], + [ + 52.4891882, + 13.2649626 + ], + [ + 52.4890743, + 13.2647432 + ], + [ + 52.4886983, + 13.2640158 + ], + [ + 52.488196, + 13.2630414 + ], + [ + 52.4880118, + 13.2626841 + ] + ] + }, + { + "osmId": "270437695", + "name": null, + "lengthMeters": 226.81371703105418, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4883179, + 13.2628119 + ], + [ + 52.4883663, + 13.2629059 + ], + [ + 52.489254, + 13.2646087 + ], + [ + 52.4893722, + 13.2648462 + ], + [ + 52.4896053, + 13.2654063 + ] + ] + }, + { + "osmId": "270437697", + "name": null, + "lengthMeters": 236.0704412022222, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4882477, + 13.2627694 + ], + [ + 52.488265, + 13.2628038 + ], + [ + 52.4883635, + 13.2629992 + ], + [ + 52.4892227, + 13.2646532 + ], + [ + 52.4895394, + 13.265263 + ], + [ + 52.4896053, + 13.2654063 + ], + [ + 52.4896158, + 13.2654346 + ] + ] + }, + { + "osmId": "271047361", + "name": null, + "lengthMeters": 90.71897017934162, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6710477, + 10.240739 + ], + [ + 53.671069, + 10.2407818 + ], + [ + 53.6713261, + 10.2412594 + ], + [ + 53.6716066, + 10.2417418 + ] + ] + }, + { + "osmId": "271420271", + "name": null, + "lengthMeters": 950.6751071582282, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4264659, + 13.3236881 + ], + [ + 52.4259646, + 13.3227882 + ], + [ + 52.4257905, + 13.3224808 + ], + [ + 52.4255629, + 13.3220969 + ], + [ + 52.4253162, + 13.3217011 + ], + [ + 52.4250526, + 13.3212999 + ], + [ + 52.4247977, + 13.3209295 + ], + [ + 52.4245352, + 13.3205676 + ], + [ + 52.4240854, + 13.3199714 + ], + [ + 52.423687, + 13.3194401 + ], + [ + 52.4233712, + 13.3190405 + ], + [ + 52.4230468, + 13.3186442 + ], + [ + 52.422617, + 13.3181248 + ], + [ + 52.4223977, + 13.3178655 + ], + [ + 52.4215898, + 13.3169489 + ], + [ + 52.421075, + 13.316371 + ], + [ + 52.4207777, + 13.3160392 + ], + [ + 52.4206911, + 13.3159427 + ], + [ + 52.4201767, + 13.3153706 + ], + [ + 52.4199504, + 13.3151176 + ], + [ + 52.4198052, + 13.3149723 + ] + ] + }, + { + "osmId": "271420277", + "name": null, + "lengthMeters": 199.44748524019792, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.468261, + 13.3621794 + ], + [ + 52.4672387, + 13.3618584 + ], + [ + 52.4664994, + 13.3616251 + ] + ] + }, + { + "osmId": "271420279", + "name": "Anhalter Bahn", + "lengthMeters": 526.550288598215, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4617009, + 13.3599635 + ], + [ + 52.4615746, + 13.359918 + ], + [ + 52.4606698, + 13.3595949 + ], + [ + 52.4596473, + 13.3592319 + ], + [ + 52.4593606, + 13.3591295 + ], + [ + 52.4590363, + 13.3590122 + ], + [ + 52.4581818, + 13.3587081 + ], + [ + 52.4572788, + 13.3583862 + ], + [ + 52.4572157, + 13.3583636 + ], + [ + 52.4570736, + 13.3583126 + ] + ] + }, + { + "osmId": "271420282", + "name": "Anhalter Bahn", + "lengthMeters": 454.07222282628913, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4486243, + 13.3542602 + ], + [ + 52.4484721, + 13.3541404 + ], + [ + 52.4477832, + 13.3535921 + ], + [ + 52.4477556, + 13.3535695 + ], + [ + 52.4475058, + 13.3533609 + ], + [ + 52.4472033, + 13.3531002 + ], + [ + 52.4469131, + 13.3528404 + ], + [ + 52.4467166, + 13.352657 + ], + [ + 52.4465228, + 13.3524729 + ], + [ + 52.4462444, + 13.3521979 + ], + [ + 52.4460013, + 13.3519507 + ], + [ + 52.4457598, + 13.3516969 + ], + [ + 52.4452019, + 13.3510777 + ], + [ + 52.4450838, + 13.3509416 + ] + ] + }, + { + "osmId": "272109653", + "name": null, + "lengthMeters": 779.9506572288428, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5814499, + 9.9473159 + ], + [ + 53.5813234, + 9.9472807 + ], + [ + 53.5811727, + 9.9472732 + ], + [ + 53.58099, + 9.9472849 + ], + [ + 53.5808322, + 9.9473217 + ], + [ + 53.5806634, + 9.9474076 + ], + [ + 53.5805541, + 9.9474727 + ], + [ + 53.5804461, + 9.9475678 + ], + [ + 53.5803169, + 9.9476938 + ], + [ + 53.5802483, + 9.9477699 + ], + [ + 53.5801665, + 9.9478799 + ], + [ + 53.5799791, + 9.9481682 + ], + [ + 53.5795641, + 9.9488285 + ], + [ + 53.5792088, + 9.9494269 + ], + [ + 53.5789395, + 9.9498769 + ], + [ + 53.5785309, + 9.9505457 + ], + [ + 53.5782913, + 9.950927 + ], + [ + 53.5781956, + 9.9510591 + ], + [ + 53.5781326, + 9.9511388 + ], + [ + 53.5780335, + 9.9512338 + ], + [ + 53.5779438, + 9.9513107 + ], + [ + 53.5777163, + 9.9514879 + ], + [ + 53.5774189, + 9.9517123 + ], + [ + 53.5773422, + 9.9517583 + ], + [ + 53.5772779, + 9.9517887 + ], + [ + 53.5771635, + 9.9518292 + ], + [ + 53.5770759, + 9.9518507 + ], + [ + 53.576948, + 9.951861 + ], + [ + 53.5768355, + 9.9518486 + ], + [ + 53.5767389, + 9.9518256 + ], + [ + 53.5764735, + 9.9517529 + ], + [ + 53.5761663, + 9.9516368 + ], + [ + 53.5757848, + 9.9514913 + ], + [ + 53.57542, + 9.9513349 + ] + ] + }, + { + "osmId": "272760865", + "name": "U8", + "lengthMeters": 237.36824549838028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5221097, + 13.4108914 + ], + [ + 52.5220471, + 13.4110527 + ], + [ + 52.5219915, + 13.4111783 + ], + [ + 52.521919, + 13.4113112 + ], + [ + 52.5217982, + 13.4114755 + ], + [ + 52.5216453, + 13.411666 + ], + [ + 52.521332, + 13.4120546 + ], + [ + 52.5212781, + 13.412122 + ], + [ + 52.5210317, + 13.4124162 + ], + [ + 52.5207179, + 13.4128496 + ], + [ + 52.5204967, + 13.4131624 + ] + ] + }, + { + "osmId": "272760867", + "name": "U8", + "lengthMeters": 418.59461431209985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5181736, + 13.4155104 + ], + [ + 52.5180957, + 13.4155462 + ], + [ + 52.5179608, + 13.4156156 + ], + [ + 52.5178238, + 13.4156948 + ], + [ + 52.5176885, + 13.4158036 + ], + [ + 52.5175775, + 13.4159204 + ], + [ + 52.5174428, + 13.4161026 + ], + [ + 52.5172998, + 13.4163518 + ], + [ + 52.5171857, + 13.416605 + ], + [ + 52.516783, + 13.417548 + ], + [ + 52.5166527, + 13.4177662 + ], + [ + 52.5165621, + 13.4178765 + ], + [ + 52.5164538, + 13.4179781 + ], + [ + 52.5163537, + 13.4180404 + ], + [ + 52.5162441, + 13.4180902 + ], + [ + 52.5161429, + 13.4181164 + ], + [ + 52.5159212, + 13.4181108 + ], + [ + 52.5155111, + 13.4180819 + ], + [ + 52.5150525, + 13.4180221 + ] + ] + }, + { + "osmId": "272795470", + "name": null, + "lengthMeters": 1260.2860771900175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5221423, + 13.4134925 + ], + [ + 52.5222623, + 13.4132179 + ], + [ + 52.5224063, + 13.4129169 + ], + [ + 52.5225646, + 13.4125462 + ], + [ + 52.522783, + 13.4120601 + ], + [ + 52.5229398, + 13.4117531 + ], + [ + 52.5234832, + 13.4108798 + ], + [ + 52.5237977, + 13.4103116 + ], + [ + 52.5238372, + 13.4102577 + ], + [ + 52.5239233, + 13.410161 + ], + [ + 52.5240114, + 13.4100803 + ], + [ + 52.5240856, + 13.4100297 + ], + [ + 52.5241624, + 13.4099961 + ], + [ + 52.5242603, + 13.409975 + ], + [ + 52.5243455, + 13.4099795 + ], + [ + 52.5244188, + 13.4099879 + ], + [ + 52.5245086, + 13.4100204 + ], + [ + 52.5245651, + 13.4100549 + ], + [ + 52.5258601, + 13.4110448 + ], + [ + 52.5259654, + 13.4111006 + ], + [ + 52.5260719, + 13.4111414 + ], + [ + 52.5261777, + 13.4111671 + ], + [ + 52.5262911, + 13.4111704 + ], + [ + 52.5263986, + 13.4111495 + ], + [ + 52.5265091, + 13.4111047 + ], + [ + 52.5268154, + 13.4109557 + ], + [ + 52.527078, + 13.4108326 + ], + [ + 52.5280129, + 13.4103794 + ], + [ + 52.5283961, + 13.410198 + ], + [ + 52.5288357, + 13.4099673 + ], + [ + 52.5290189, + 13.4098939 + ], + [ + 52.5291098, + 13.4098793 + ], + [ + 52.5291991, + 13.4098947 + ], + [ + 52.5292721, + 13.4099225 + ], + [ + 52.5294165, + 13.4100276 + ], + [ + 52.5298185, + 13.4103644 + ], + [ + 52.5300201, + 13.4105575 + ], + [ + 52.5301745, + 13.4107213 + ], + [ + 52.5303979, + 13.4109885 + ], + [ + 52.5312176, + 13.4121802 + ], + [ + 52.5313968, + 13.4123814 + ], + [ + 52.5315714, + 13.4125181 + ], + [ + 52.5317442, + 13.4126268 + ] + ] + }, + { + "osmId": "272795471", + "name": null, + "lengthMeters": 112.56018337513238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.522069, + 13.4133459 + ], + [ + 52.5219007, + 13.4136515 + ], + [ + 52.5218444, + 13.413744 + ], + [ + 52.5217734, + 13.413854 + ], + [ + 52.5217034, + 13.4139562 + ], + [ + 52.5216393, + 13.4140449 + ], + [ + 52.5215023, + 13.4142106 + ], + [ + 52.5213885, + 13.4143234 + ], + [ + 52.5212957, + 13.4144001 + ] + ] + }, + { + "osmId": "272795472", + "name": null, + "lengthMeters": 222.1934186917192, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5131941, + 13.397183 + ], + [ + 52.5132081, + 13.3969631 + ], + [ + 52.5132161, + 13.3967224 + ], + [ + 52.5132197, + 13.396595 + ], + [ + 52.5132345, + 13.3964352 + ], + [ + 52.5132602, + 13.3962765 + ], + [ + 52.5133509, + 13.3958284 + ], + [ + 52.5133905, + 13.3955842 + ], + [ + 52.5134074, + 13.3953056 + ], + [ + 52.5134071, + 13.3951111 + ], + [ + 52.5133827, + 13.3946717 + ], + [ + 52.5133673, + 13.3943737 + ], + [ + 52.5133501, + 13.3942127 + ], + [ + 52.5133281, + 13.3940916 + ], + [ + 52.5132968, + 13.3939632 + ] + ] + }, + { + "osmId": "272795474", + "name": null, + "lengthMeters": 161.95740703521332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209782, + 13.4147951 + ], + [ + 52.5211031, + 13.4147595 + ], + [ + 52.5212346, + 13.4146932 + ], + [ + 52.5213058, + 13.4146525 + ], + [ + 52.5213876, + 13.4145998 + ], + [ + 52.5214588, + 13.4145499 + ], + [ + 52.5215401, + 13.414482 + ], + [ + 52.5216313, + 13.4143854 + ], + [ + 52.5217383, + 13.4142624 + ], + [ + 52.5217978, + 13.4141821 + ], + [ + 52.5218722, + 13.4140694 + ], + [ + 52.521933, + 13.4139532 + ], + [ + 52.5219786, + 13.413858 + ], + [ + 52.5221423, + 13.4134925 + ] + ] + }, + { + "osmId": "273174488", + "name": null, + "lengthMeters": 86.89915578855891, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4949731, + 13.3710907 + ], + [ + 52.4949779, + 13.371097 + ], + [ + 52.4952788, + 13.3714907 + ], + [ + 52.4955859, + 13.3718873 + ] + ] + }, + { + "osmId": "273174492", + "name": null, + "lengthMeters": 211.94642822450334, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4946716, + 13.3705996 + ], + [ + 52.4945553, + 13.3704018 + ], + [ + 52.4944525, + 13.3702038 + ], + [ + 52.4942797, + 13.3698329 + ], + [ + 52.494131, + 13.3695101 + ], + [ + 52.4939445, + 13.3691603 + ], + [ + 52.4938805, + 13.3690754 + ], + [ + 52.4937625, + 13.3689188 + ], + [ + 52.4936082, + 13.3687372 + ], + [ + 52.4933013, + 13.3684873 + ] + ] + }, + { + "osmId": "273265021", + "name": null, + "lengthMeters": 97.29148360545204, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.509852, + 13.3344414 + ], + [ + 52.5102017, + 13.3345953 + ], + [ + 52.5103842, + 13.3346668 + ], + [ + 52.510568, + 13.3347451 + ], + [ + 52.5106991, + 13.334801 + ] + ] + }, + { + "osmId": "273265024", + "name": null, + "lengthMeters": 142.8121678308458, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5063303, + 13.3313821 + ], + [ + 52.5063155, + 13.3313662 + ], + [ + 52.5062623, + 13.3313093 + ], + [ + 52.5060054, + 13.331034 + ], + [ + 52.5058769, + 13.3308796 + ], + [ + 52.5057175, + 13.330663 + ], + [ + 52.5055202, + 13.330373 + ], + [ + 52.5053402, + 13.330052 + ] + ] + }, + { + "osmId": "273265026", + "name": null, + "lengthMeters": 447.78950227695213, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5062498, + 13.3315802 + ], + [ + 52.5065968, + 13.3320285 + ], + [ + 52.5067357, + 13.332195 + ], + [ + 52.5068263, + 13.332308 + ], + [ + 52.5068855, + 13.3323778 + ], + [ + 52.5070035, + 13.3325026 + ], + [ + 52.5073105, + 13.332738 + ], + [ + 52.5078399, + 13.333136 + ], + [ + 52.5081183, + 13.3333498 + ], + [ + 52.5084109, + 13.3335751 + ], + [ + 52.5085892, + 13.3337012 + ], + [ + 52.5086982, + 13.3337763 + ], + [ + 52.508809, + 13.3338454 + ], + [ + 52.5090325, + 13.3339806 + ], + [ + 52.5092943, + 13.3341351 + ], + [ + 52.5095289, + 13.3342723 + ], + [ + 52.5095582, + 13.3342895 + ], + [ + 52.5096791, + 13.3343532 + ], + [ + 52.509852, + 13.3344414 + ] + ] + }, + { + "osmId": "273275698", + "name": null, + "lengthMeters": 626.0747848656968, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061343, + 13.3308841 + ], + [ + 52.5060822, + 13.3308375 + ], + [ + 52.5060646, + 13.3308218 + ], + [ + 52.5057722, + 13.3305262 + ], + [ + 52.5055581, + 13.3302336 + ], + [ + 52.505474, + 13.330106 + ], + [ + 52.505391, + 13.3299581 + ], + [ + 52.5052693, + 13.3296965 + ], + [ + 52.5051819, + 13.329489 + ], + [ + 52.5051112, + 13.3292934 + ], + [ + 52.5050477, + 13.3290925 + ], + [ + 52.5050337, + 13.3290427 + ], + [ + 52.5049824, + 13.3288602 + ], + [ + 52.5049247, + 13.3286138 + ], + [ + 52.5048734, + 13.3283715 + ], + [ + 52.504861, + 13.3283131 + ], + [ + 52.5048256, + 13.3281139 + ], + [ + 52.5047959, + 13.3279123 + ], + [ + 52.5047569, + 13.3275599 + ], + [ + 52.5047249, + 13.3271531 + ], + [ + 52.5047147, + 13.3268508 + ], + [ + 52.5047175, + 13.3265425 + ], + [ + 52.504751, + 13.3259314 + ], + [ + 52.5047586, + 13.3257928 + ], + [ + 52.5047786, + 13.3254273 + ], + [ + 52.5047997, + 13.3250546 + ], + [ + 52.5048174, + 13.3247135 + ], + [ + 52.5048839, + 13.3235517 + ], + [ + 52.5049255, + 13.3228151 + ], + [ + 52.5049274, + 13.3227871 + ], + [ + 52.5049417, + 13.3225186 + ] + ] + }, + { + "osmId": "273275700", + "name": null, + "lengthMeters": 156.57939147777145, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073833, + 13.3319519 + ], + [ + 52.5068696, + 13.3315321 + ], + [ + 52.5066746, + 13.3313628 + ], + [ + 52.5064495, + 13.3311619 + ], + [ + 52.5062811, + 13.3310134 + ], + [ + 52.5061343, + 13.3308841 + ] + ] + }, + { + "osmId": "274162812", + "name": null, + "lengthMeters": 121.6958679973402, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5901852, + 9.9934569 + ], + [ + 53.5904889, + 9.9939632 + ], + [ + 53.5906567, + 9.9942092 + ], + [ + 53.5908289, + 9.9944356 + ], + [ + 53.591015, + 9.9946526 + ] + ] + }, + { + "osmId": "274269220", + "name": null, + "lengthMeters": 181.79533668347713, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054559, + 13.3340536 + ], + [ + 52.5055356, + 13.3338852 + ], + [ + 52.5061408, + 13.3325741 + ], + [ + 52.5063696, + 13.332066 + ], + [ + 52.5064419, + 13.3319111 + ] + ] + }, + { + "osmId": "274269221", + "name": null, + "lengthMeters": 182.67362162474512, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5064022, + 13.3318528 + ], + [ + 52.5061717, + 13.3324376 + ], + [ + 52.5056425, + 13.3335773 + ], + [ + 52.505512, + 13.3338574 + ], + [ + 52.5054172, + 13.3340072 + ] + ] + }, + { + "osmId": "274269224", + "name": null, + "lengthMeters": 346.15004805024057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5087972, + 13.3341589 + ], + [ + 52.5079781, + 13.3336406 + ], + [ + 52.5071612, + 13.3330473 + ], + [ + 52.506384, + 13.332485 + ], + [ + 52.5059557, + 13.3320843 + ] + ] + }, + { + "osmId": "274269226", + "name": null, + "lengthMeters": 1102.5074340168935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5087674, + 13.334326 + ], + [ + 52.5092091, + 13.3346866 + ], + [ + 52.509644, + 13.335085 + ], + [ + 52.5099127, + 13.3353759 + ], + [ + 52.5101778, + 13.3357099 + ], + [ + 52.510599, + 13.3363135 + ], + [ + 52.5111321, + 13.3372508 + ], + [ + 52.5116257, + 13.3381803 + ], + [ + 52.5120552, + 13.3389634 + ], + [ + 52.512486, + 13.3396742 + ], + [ + 52.5127449, + 13.3400349 + ], + [ + 52.5130721, + 13.3404414 + ], + [ + 52.5133566, + 13.3407444 + ], + [ + 52.5136882, + 13.3410556 + ], + [ + 52.5141371, + 13.3414136 + ], + [ + 52.5143719, + 13.3415779 + ], + [ + 52.5146048, + 13.3417235 + ], + [ + 52.5149902, + 13.3419299 + ], + [ + 52.5154845, + 13.3421284 + ], + [ + 52.5158344, + 13.3422236 + ], + [ + 52.5162117, + 13.3422948 + ], + [ + 52.5164686, + 13.3423242 + ], + [ + 52.5167152, + 13.342327 + ], + [ + 52.5168935, + 13.342323 + ], + [ + 52.517014, + 13.3423159 + ] + ] + }, + { + "osmId": "275447157", + "name": null, + "lengthMeters": 346.1714791309223, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.452174, + 13.5150428 + ], + [ + 52.4526622, + 13.5140667 + ], + [ + 52.4535293, + 13.5123322 + ], + [ + 52.4538301, + 13.5117715 + ], + [ + 52.4542022, + 13.5111725 + ] + ] + }, + { + "osmId": "275711863", + "name": null, + "lengthMeters": 164.3992583770925, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5048023, + 13.3026975 + ], + [ + 52.5044228, + 13.3010018 + ], + [ + 52.5042982, + 13.3004142 + ] + ] + }, + { + "osmId": "275711864", + "name": null, + "lengthMeters": 136.20670540901324, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046284, + 13.3026923 + ], + [ + 52.5044862, + 13.3020471 + ], + [ + 52.5043397, + 13.3013883 + ], + [ + 52.5042111, + 13.3008003 + ] + ] + }, + { + "osmId": "275713846", + "name": null, + "lengthMeters": 76.4242766443926, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5040608, + 13.3001159 + ], + [ + 52.5038267, + 13.2990543 + ] + ] + }, + { + "osmId": "275714488", + "name": null, + "lengthMeters": 173.0151765549928, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5034967, + 13.297769 + ], + [ + 52.5035696, + 13.2981119 + ], + [ + 52.50369, + 13.2986678 + ], + [ + 52.5037322, + 13.2988817 + ], + [ + 52.5037519, + 13.2989898 + ], + [ + 52.5037702, + 13.299098 + ], + [ + 52.5038925, + 13.2998302 + ], + [ + 52.5039274, + 13.3000191 + ], + [ + 52.5039642, + 13.3002058 + ] + ] + }, + { + "osmId": "275716889", + "name": null, + "lengthMeters": 255.47313644859358, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055621, + 13.3097981 + ], + [ + 52.5055618, + 13.3098354 + ], + [ + 52.5055606, + 13.3099491 + ], + [ + 52.5055495, + 13.3105302 + ], + [ + 52.5055344, + 13.3111152 + ], + [ + 52.5055162, + 13.3116987 + ], + [ + 52.5055159, + 13.3117061 + ], + [ + 52.5055009, + 13.3120069 + ], + [ + 52.5054139, + 13.3135635 + ] + ] + }, + { + "osmId": "275722376", + "name": null, + "lengthMeters": 319.3387545846125, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054997, + 13.3126507 + ], + [ + 52.5055341, + 13.3120142 + ], + [ + 52.5055466, + 13.3117531 + ], + [ + 52.5055682, + 13.3111463 + ], + [ + 52.5055686, + 13.3111311 + ], + [ + 52.5055829, + 13.3105329 + ], + [ + 52.5055876, + 13.3103396 + ], + [ + 52.5055963, + 13.3099535 + ], + [ + 52.5055978, + 13.3094666 + ], + [ + 52.5055914, + 13.3089636 + ], + [ + 52.5055851, + 13.3087216 + ], + [ + 52.5055598, + 13.308119 + ], + [ + 52.5055511, + 13.3079401 + ] + ] + }, + { + "osmId": "275724840", + "name": null, + "lengthMeters": 87.72139633846541, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053518, + 13.3152545 + ], + [ + 52.5054091, + 13.3142556 + ], + [ + 52.5054212, + 13.3140294 + ], + [ + 52.5054248, + 13.313964 + ] + ] + }, + { + "osmId": "275724841", + "name": null, + "lengthMeters": 103.10435614975039, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053863, + 13.314066 + ], + [ + 52.5052998, + 13.3155827 + ] + ] + }, + { + "osmId": "275929272", + "name": null, + "lengthMeters": 103.68596243595071, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491881, + 13.3933672 + ], + [ + 52.5492175, + 13.3940593 + ], + [ + 52.5492399, + 13.3944382 + ], + [ + 52.5492584, + 13.3946654 + ], + [ + 52.5492804, + 13.3948923 + ] + ] + }, + { + "osmId": "275933873", + "name": null, + "lengthMeters": 155.60201754139683, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494395, + 13.3931496 + ], + [ + 52.5493949, + 13.3919749 + ], + [ + 52.5493872, + 13.3916885 + ], + [ + 52.5493878, + 13.3914008 + ], + [ + 52.5493848, + 13.3908509 + ] + ] + }, + { + "osmId": "276065810", + "name": null, + "lengthMeters": 2884.717174422762, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6662953, + 13.2868232 + ], + [ + 52.6661645, + 13.2868311 + ], + [ + 52.6660354, + 13.286844 + ], + [ + 52.6659278, + 13.2868553 + ], + [ + 52.665901, + 13.2868581 + ], + [ + 52.6657672, + 13.2868764 + ], + [ + 52.6656312, + 13.2869008 + ], + [ + 52.6656114, + 13.2869051 + ], + [ + 52.6654965, + 13.2869301 + ], + [ + 52.6653619, + 13.2869659 + ], + [ + 52.6652285, + 13.2870088 + ], + [ + 52.665098, + 13.2870576 + ], + [ + 52.6649664, + 13.2871129 + ], + [ + 52.6648368, + 13.2871751 + ], + [ + 52.6647082, + 13.2872429 + ], + [ + 52.6645806, + 13.2873172 + ], + [ + 52.664454, + 13.2873985 + ], + [ + 52.6643295, + 13.2874848 + ], + [ + 52.6642061, + 13.2875776 + ], + [ + 52.6640846, + 13.2876776 + ], + [ + 52.6639645, + 13.2877821 + ], + [ + 52.6638481, + 13.2878936 + ], + [ + 52.6637325, + 13.2880091 + ], + [ + 52.6636193, + 13.288132 + ], + [ + 52.6635081, + 13.2882613 + ], + [ + 52.6633981, + 13.2883957 + ], + [ + 52.6632939, + 13.2885316 + ], + [ + 52.6631913, + 13.288674 + ], + [ + 52.6631461, + 13.2887401 + ], + [ + 52.6630909, + 13.288821 + ], + [ + 52.6629927, + 13.2889743 + ], + [ + 52.6628978, + 13.2891326 + ], + [ + 52.6628047, + 13.2892957 + ], + [ + 52.6627163, + 13.2894616 + ], + [ + 52.6626306, + 13.2896321 + ], + [ + 52.6625472, + 13.2898068 + ], + [ + 52.6624678, + 13.2899845 + ], + [ + 52.6623916, + 13.2901676 + ], + [ + 52.6623175, + 13.2903559 + ], + [ + 52.6622481, + 13.2905462 + ], + [ + 52.662181, + 13.2907417 + ], + [ + 52.6621184, + 13.2909375 + ], + [ + 52.6620588, + 13.2911377 + ], + [ + 52.6620033, + 13.2913402 + ], + [ + 52.6619522, + 13.2915445 + ], + [ + 52.6619038, + 13.2917514 + ], + [ + 52.6618595, + 13.2919615 + ], + [ + 52.6618191, + 13.2921726 + ], + [ + 52.6617824, + 13.2923863 + ], + [ + 52.6617499, + 13.2926019 + ], + [ + 52.6617208, + 13.2928185 + ], + [ + 52.6616959, + 13.2930372 + ], + [ + 52.6616748, + 13.2932544 + ], + [ + 52.6616576, + 13.2934755 + ], + [ + 52.6616449, + 13.2936947 + ], + [ + 52.6616357, + 13.2939172 + ], + [ + 52.6616308, + 13.2940868 + ], + [ + 52.6616293, + 13.2941401 + ], + [ + 52.6616277, + 13.2943621 + ], + [ + 52.661629, + 13.2945838 + ], + [ + 52.6616331, + 13.2948046 + ], + [ + 52.6616413, + 13.2950257 + ], + [ + 52.6616515, + 13.2952445 + ], + [ + 52.661666, + 13.2954666 + ], + [ + 52.6616834, + 13.2956868 + ], + [ + 52.6617038, + 13.2959029 + ], + [ + 52.6617279, + 13.2961208 + ], + [ + 52.6617552, + 13.2963367 + ], + [ + 52.661785, + 13.2965509 + ], + [ + 52.6618192, + 13.2967641 + ], + [ + 52.661856, + 13.2969798 + ], + [ + 52.6618959, + 13.2971897 + ], + [ + 52.6619391, + 13.2974002 + ], + [ + 52.6619845, + 13.2976087 + ], + [ + 52.6620344, + 13.2978153 + ], + [ + 52.6620866, + 13.2980168 + ], + [ + 52.6621436, + 13.2982213 + ], + [ + 52.6622007, + 13.2984214 + ], + [ + 52.662262, + 13.298617 + ], + [ + 52.6623265, + 13.2988099 + ], + [ + 52.662394, + 13.2990017 + ], + [ + 52.662464, + 13.2991903 + ], + [ + 52.6625363, + 13.2993755 + ], + [ + 52.6626109, + 13.2995572 + ], + [ + 52.6626883, + 13.2997343 + ], + [ + 52.6627685, + 13.2999102 + ], + [ + 52.662852, + 13.3000828 + ], + [ + 52.6629367, + 13.3002534 + ], + [ + 52.6630249, + 13.3004183 + ], + [ + 52.6631146, + 13.3005801 + ], + [ + 52.6632076, + 13.3007367 + ], + [ + 52.6633025, + 13.3008922 + ], + [ + 52.6633992, + 13.301042 + ], + [ + 52.6634992, + 13.3011911 + ], + [ + 52.6636009, + 13.3013326 + ], + [ + 52.6637048, + 13.3014705 + ], + [ + 52.6638108, + 13.3016059 + ], + [ + 52.6639177, + 13.301735 + ], + [ + 52.6640256, + 13.3018606 + ], + [ + 52.6641368, + 13.3019818 + ], + [ + 52.6642493, + 13.3020964 + ], + [ + 52.6643629, + 13.3022083 + ], + [ + 52.6644788, + 13.3023157 + ], + [ + 52.6645955, + 13.3024188 + ], + [ + 52.6647144, + 13.3025162 + ], + [ + 52.6648335, + 13.3026098 + ], + [ + 52.664955, + 13.3026972 + ], + [ + 52.6650767, + 13.3027802 + ], + [ + 52.6652011, + 13.3028581 + ], + [ + 52.6653261, + 13.3029334 + ], + [ + 52.6654531, + 13.3030033 + ], + [ + 52.6655807, + 13.3030671 + ], + [ + 52.6657074, + 13.3031235 + ], + [ + 52.6658351, + 13.3031756 + ], + [ + 52.6659628, + 13.3032245 + ], + [ + 52.6661013, + 13.3032729 + ], + [ + 52.6662316, + 13.3033167 + ], + [ + 52.6685305, + 13.3040569 + ], + [ + 52.6686576, + 13.3041015 + ], + [ + 52.6687849, + 13.304149 + ], + [ + 52.6689115, + 13.3042011 + ], + [ + 52.6690381, + 13.3042592 + ], + [ + 52.6691616, + 13.3043236 + ], + [ + 52.6692848, + 13.3043918 + ], + [ + 52.6694058, + 13.3044647 + ], + [ + 52.6695266, + 13.3045456 + ], + [ + 52.6696456, + 13.3046326 + ], + [ + 52.6697628, + 13.3047244 + ], + [ + 52.6698786, + 13.3048222 + ], + [ + 52.6699926, + 13.3049242 + ], + [ + 52.6701049, + 13.3050343 + ], + [ + 52.6702143, + 13.3051491 + ], + [ + 52.6703225, + 13.3052673 + ], + [ + 52.6704281, + 13.3053904 + ], + [ + 52.6705316, + 13.3055187 + ], + [ + 52.6706328, + 13.3056552 + ], + [ + 52.6707327, + 13.3057932 + ], + [ + 52.6708282, + 13.3059366 + ], + [ + 52.6709219, + 13.3060855 + ], + [ + 52.6710131, + 13.3062378 + ], + [ + 52.6711021, + 13.3063947 + ], + [ + 52.6711863, + 13.306556 + ], + [ + 52.6712699, + 13.3067217 + ], + [ + 52.6713494, + 13.3068927 + ], + [ + 52.6714259, + 13.3070633 + ], + [ + 52.6714998, + 13.3072413 + ], + [ + 52.6715706, + 13.3074214 + ], + [ + 52.6716373, + 13.3076038 + ], + [ + 52.6717004, + 13.3077892 + ], + [ + 52.671761, + 13.3079792 + ], + [ + 52.671818, + 13.3081723 + ], + [ + 52.6718726, + 13.3083666 + ], + [ + 52.6719235, + 13.3085641 + ], + [ + 52.6719694, + 13.3087648 + ], + [ + 52.672012, + 13.3089667 + ], + [ + 52.6720509, + 13.3091684 + ], + [ + 52.6720869, + 13.3093739 + ], + [ + 52.6721184, + 13.3095809 + ], + [ + 52.6721477, + 13.3097892 + ], + [ + 52.6721717, + 13.3099982 + ], + [ + 52.6721931, + 13.3102094 + ], + [ + 52.6722103, + 13.310423 + ], + [ + 52.6722233, + 13.3106336 + ], + [ + 52.672233, + 13.3108457 + ], + [ + 52.672239, + 13.3110599 + ], + [ + 52.6722409, + 13.3112746 + ], + [ + 52.6722394, + 13.3114886 + ], + [ + 52.6722344, + 13.3117016 + ], + [ + 52.672225, + 13.3119166 + ], + [ + 52.6722121, + 13.3121298 + ], + [ + 52.6721956, + 13.3123413 + ], + [ + 52.6721743, + 13.3125528 + ], + [ + 52.67215, + 13.3127655 + ], + [ + 52.6721218, + 13.3129738 + ], + [ + 52.67209, + 13.3131827 + ], + [ + 52.6720538, + 13.3133915 + ], + [ + 52.6720142, + 13.3135962 + ], + [ + 52.6719717, + 13.3137994 + ], + [ + 52.6719271, + 13.3140028 + ], + [ + 52.6718806, + 13.3142026 + ], + [ + 52.6718319, + 13.3143994 + ], + [ + 52.6717811, + 13.3145957 + ], + [ + 52.6717276, + 13.3147917 + ], + [ + 52.6716731, + 13.3149861 + ] + ] + }, + { + "osmId": "276066064", + "name": null, + "lengthMeters": 164.16995755394618, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6662953, + 13.2868232 + ], + [ + 52.6664294, + 13.2868398 + ], + [ + 52.6666997, + 13.2868831 + ], + [ + 52.6669688, + 13.2869303 + ], + [ + 52.6672378, + 13.2869835 + ], + [ + 52.667372, + 13.2870064 + ], + [ + 52.6675067, + 13.2870284 + ], + [ + 52.6676356, + 13.2870452 + ], + [ + 52.6677645, + 13.2870607 + ] + ] + }, + { + "osmId": "276205110", + "name": null, + "lengthMeters": 299.24872013249313, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4784298, + 13.3506755 + ], + [ + 52.4773004, + 13.3493841 + ], + [ + 52.4771013, + 13.3491566 + ], + [ + 52.4762211, + 13.348151 + ] + ] + }, + { + "osmId": "276205112", + "name": null, + "lengthMeters": 165.75936541336839, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4785623, + 13.3511619 + ], + [ + 52.4786092, + 13.351219 + ], + [ + 52.4787479, + 13.3513833 + ], + [ + 52.4788342, + 13.3514855 + ], + [ + 52.4788987, + 13.3515627 + ], + [ + 52.479111, + 13.3518134 + ], + [ + 52.4796382, + 13.3524409 + ], + [ + 52.4797704, + 13.3525958 + ] + ] + }, + { + "osmId": "276205113", + "name": null, + "lengthMeters": 138.1021126211282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4783514, + 13.3477651 + ], + [ + 52.4782912, + 13.3475025 + ], + [ + 52.4782616, + 13.347364 + ], + [ + 52.478236, + 13.347228 + ], + [ + 52.4781772, + 13.3468552 + ], + [ + 52.4781496, + 13.3466344 + ], + [ + 52.4781293, + 13.3464323 + ], + [ + 52.4781122, + 13.3462123 + ], + [ + 52.4781033, + 13.346053 + ], + [ + 52.4780981, + 13.3459304 + ], + [ + 52.4780952, + 13.345781 + ] + ] + }, + { + "osmId": "276219535", + "name": null, + "lengthMeters": 86.44158351893337, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4714826, + 13.3424854 + ], + [ + 52.4718391, + 13.3428956 + ], + [ + 52.4721157, + 13.3432259 + ] + ] + }, + { + "osmId": "276219536", + "name": null, + "lengthMeters": 272.9947048545832, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.46951, + 13.3400895 + ], + [ + 52.4697654, + 13.3404255 + ], + [ + 52.4699984, + 13.3407218 + ], + [ + 52.470465, + 13.3413205 + ], + [ + 52.4706488, + 13.3415483 + ], + [ + 52.47089, + 13.3418265 + ], + [ + 52.4709823, + 13.3419328 + ], + [ + 52.4710952, + 13.3420574 + ], + [ + 52.4711333, + 13.3420995 + ], + [ + 52.4711756, + 13.3421464 + ], + [ + 52.4714826, + 13.3424854 + ] + ] + }, + { + "osmId": "276219537", + "name": null, + "lengthMeters": 285.757329638623, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4716904, + 13.3426344 + ], + [ + 52.4715039, + 13.3424 + ], + [ + 52.4713275, + 13.3421742 + ], + [ + 52.4712227, + 13.3420401 + ], + [ + 52.4709514, + 13.3416937 + ], + [ + 52.4706133, + 13.3412597 + ], + [ + 52.4705046, + 13.3411226 + ], + [ + 52.4703937, + 13.3409812 + ], + [ + 52.470151, + 13.3406632 + ], + [ + 52.4699665, + 13.340434 + ], + [ + 52.4698, + 13.3402214 + ], + [ + 52.4696625, + 13.3400432 + ] + ] + }, + { + "osmId": "276219538", + "name": null, + "lengthMeters": 721.611681060691, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4696625, + 13.3400432 + ], + [ + 52.4692889, + 13.3395941 + ], + [ + 52.4689136, + 13.339152 + ], + [ + 52.4686649, + 13.3388595 + ], + [ + 52.4682835, + 13.3384095 + ], + [ + 52.4674963, + 13.3374764 + ], + [ + 52.4671076, + 13.3370023 + ], + [ + 52.465619, + 13.335147 + ], + [ + 52.465458, + 13.3349373 + ], + [ + 52.4652978, + 13.3347233 + ], + [ + 52.4647963, + 13.334037 + ], + [ + 52.4644908, + 13.3336142 + ] + ] + }, + { + "osmId": "276257641", + "name": null, + "lengthMeters": 632.9793079031909, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4405242, + 13.2178442 + ], + [ + 52.4405868, + 13.2181567 + ], + [ + 52.4406459, + 13.2184663 + ], + [ + 52.4407064, + 13.2188195 + ], + [ + 52.4407567, + 13.2191708 + ], + [ + 52.4407928, + 13.219469 + ], + [ + 52.4408172, + 13.219746 + ], + [ + 52.4408359, + 13.2199943 + ], + [ + 52.4408496, + 13.2202561 + ], + [ + 52.4408601, + 13.2208317 + ], + [ + 52.440846, + 13.2214432 + ], + [ + 52.4408219, + 13.2218676 + ], + [ + 52.4407748, + 13.2223641 + ], + [ + 52.4407243, + 13.22276 + ], + [ + 52.4406464, + 13.2232284 + ], + [ + 52.4405665, + 13.2236371 + ], + [ + 52.4404697, + 13.2240443 + ], + [ + 52.4403719, + 13.2243996 + ], + [ + 52.4402617, + 13.2247448 + ], + [ + 52.4401065, + 13.2251831 + ], + [ + 52.4399383, + 13.2256072 + ], + [ + 52.4397451, + 13.2260707 + ], + [ + 52.4395245, + 13.226591 + ] + ] + }, + { + "osmId": "276257644", + "name": null, + "lengthMeters": 78.93467602832754, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4406554, + 13.2178427 + ], + [ + 52.4406253, + 13.2176752 + ], + [ + 52.4405816, + 13.2174443 + ], + [ + 52.4405117, + 13.2170869 + ], + [ + 52.4404383, + 13.2167341 + ] + ] + }, + { + "osmId": "276509267", + "name": null, + "lengthMeters": 147.72043674029658, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.431147, + 13.1928462 + ], + [ + 52.431058, + 13.1928116 + ], + [ + 52.4309524, + 13.1927621 + ], + [ + 52.430857, + 13.1927079 + ], + [ + 52.4307553, + 13.1926429 + ], + [ + 52.4306568, + 13.1925699 + ], + [ + 52.4305745, + 13.1925 + ], + [ + 52.4305253, + 13.1924554 + ], + [ + 52.4304729, + 13.1924044 + ], + [ + 52.4303464, + 13.1922757 + ], + [ + 52.4303141, + 13.1922421 + ], + [ + 52.4301424, + 13.1920615 + ], + [ + 52.4299662, + 13.19188 + ] + ] + }, + { + "osmId": "277260971", + "name": null, + "lengthMeters": 265.6448269952405, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5101198, + 13.255878 + ], + [ + 52.5101585, + 13.2558388 + ], + [ + 52.5104628, + 13.2555568 + ], + [ + 52.5106618, + 13.2553712 + ], + [ + 52.5107644, + 13.2552749 + ], + [ + 52.5108379, + 13.2551967 + ], + [ + 52.5109114, + 13.2551221 + ], + [ + 52.5109624, + 13.255064 + ], + [ + 52.5110078, + 13.2550082 + ], + [ + 52.5110942, + 13.2548916 + ], + [ + 52.5112025, + 13.2547413 + ], + [ + 52.5112557, + 13.2546594 + ], + [ + 52.5113092, + 13.254577 + ], + [ + 52.5113798, + 13.2544602 + ], + [ + 52.5114808, + 13.2542701 + ], + [ + 52.5115517, + 13.2541213 + ], + [ + 52.5116127, + 13.2539835 + ], + [ + 52.5116766, + 13.2538282 + ], + [ + 52.5117223, + 13.2537021 + ], + [ + 52.511783, + 13.2535323 + ], + [ + 52.5118555, + 13.2532999 + ] + ] + }, + { + "osmId": "277261636", + "name": null, + "lengthMeters": 213.10198251329487, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121611, + 13.2507162 + ], + [ + 52.5121924, + 13.2500312 + ], + [ + 52.512207, + 13.2496885 + ], + [ + 52.5122104, + 13.2494997 + ], + [ + 52.5122116, + 13.2494318 + ], + [ + 52.512209, + 13.2491751 + ], + [ + 52.5122066, + 13.2490601 + ], + [ + 52.5121977, + 13.2488481 + ], + [ + 52.5121831, + 13.2485905 + ], + [ + 52.5121706, + 13.2484244 + ], + [ + 52.5121463, + 13.2482008 + ], + [ + 52.512112, + 13.2479447 + ], + [ + 52.5120757, + 13.2476982 + ], + [ + 52.5120652, + 13.2476301 + ], + [ + 52.5120596, + 13.2475931 + ] + ] + }, + { + "osmId": "277264811", + "name": null, + "lengthMeters": 86.27385651087056, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113724, + 13.2251521 + ], + [ + 52.5112623, + 13.2253779 + ], + [ + 52.5111924, + 13.2255459 + ], + [ + 52.5111452, + 13.2256613 + ], + [ + 52.5110989, + 13.2257768 + ], + [ + 52.5110237, + 13.225953 + ], + [ + 52.5109173, + 13.2261837 + ] + ] + }, + { + "osmId": "277265414", + "name": null, + "lengthMeters": 176.403703166409, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5323226, + 13.2070432 + ], + [ + 52.5324452, + 13.2064398 + ], + [ + 52.5325229, + 13.2060819 + ], + [ + 52.5325362, + 13.2060204 + ], + [ + 52.5326249, + 13.2056791 + ], + [ + 52.53278, + 13.2051002 + ], + [ + 52.5329227, + 13.204633 + ] + ] + }, + { + "osmId": "277265415", + "name": null, + "lengthMeters": 127.30327724350278, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532592, + 13.2056537 + ], + [ + 52.5325785, + 13.2057055 + ], + [ + 52.5324593, + 13.2061632 + ], + [ + 52.532326, + 13.2067389 + ], + [ + 52.5321904, + 13.2074149 + ] + ] + }, + { + "osmId": "278009344", + "name": null, + "lengthMeters": 119.91865116416193, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3810422, + 13.2475986 + ], + [ + 52.3806777, + 13.2459358 + ] + ] + }, + { + "osmId": "278240007", + "name": "U6", + "lengthMeters": 624.5867661527936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260112, + 13.3873535 + ], + [ + 52.5264628, + 13.3872798 + ], + [ + 52.526891, + 13.3871981 + ], + [ + 52.5269924, + 13.3871654 + ], + [ + 52.5270673, + 13.3871344 + ], + [ + 52.5271443, + 13.3871 + ], + [ + 52.5272485, + 13.3870564 + ], + [ + 52.5273441, + 13.3870051 + ], + [ + 52.5274738, + 13.3869095 + ], + [ + 52.5275916, + 13.3868028 + ], + [ + 52.5278677, + 13.3865011 + ], + [ + 52.5285044, + 13.3857054 + ], + [ + 52.529182, + 13.3848373 + ], + [ + 52.5305312, + 13.3831637 + ], + [ + 52.5307827, + 13.3828762 + ] + ] + }, + { + "osmId": "278828084", + "name": null, + "lengthMeters": 316.53721884240645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2055068, + 11.6138099 + ], + [ + 48.2052589, + 11.6137155 + ], + [ + 48.2049449, + 11.6135983 + ], + [ + 48.2046255, + 11.6135005 + ], + [ + 48.2044385, + 11.6134327 + ], + [ + 48.203943, + 11.6132534 + ], + [ + 48.2038679, + 11.6132286 + ], + [ + 48.2035981, + 11.6131402 + ], + [ + 48.203356, + 11.613073 + ], + [ + 48.2030234, + 11.6129818 + ], + [ + 48.2027251, + 11.6129119 + ] + ] + }, + { + "osmId": "281590622", + "name": null, + "lengthMeters": 139.5500009292764, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4435677, + 13.5692253 + ], + [ + 52.4438253, + 13.569186 + ], + [ + 52.4439236, + 13.5691707 + ], + [ + 52.4441526, + 13.5691352 + ], + [ + 52.4442395, + 13.569139 + ], + [ + 52.4443009, + 13.5691486 + ], + [ + 52.4443526, + 13.5691738 + ], + [ + 52.4443971, + 13.5692032 + ], + [ + 52.4444418, + 13.5692487 + ], + [ + 52.4444847, + 13.569318 + ], + [ + 52.4445091, + 13.5693955 + ], + [ + 52.4445139, + 13.5694183 + ], + [ + 52.4445192, + 13.5694684 + ], + [ + 52.4445241, + 13.5695392 + ], + [ + 52.4445262, + 13.5695884 + ], + [ + 52.4445253, + 13.569629 + ], + [ + 52.4445236, + 13.5696676 + ], + [ + 52.4445206, + 13.5697207 + ], + [ + 52.4445153, + 13.5698039 + ] + ] + }, + { + "osmId": "282248127", + "name": null, + "lengthMeters": 307.13545803850616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5410256, + 10.1120935 + ], + [ + 53.5410861, + 10.1118933 + ], + [ + 53.5416187, + 10.1099729 + ], + [ + 53.5417442, + 10.1095383 + ], + [ + 53.5417635, + 10.109468 + ], + [ + 53.5419274, + 10.1088874 + ], + [ + 53.5421321, + 10.1082383 + ], + [ + 53.5422386, + 10.1079191 + ] + ] + }, + { + "osmId": "282248133", + "name": null, + "lengthMeters": 83.31559762270851, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5416657, + 10.1100684 + ], + [ + 53.5417964, + 10.1094969 + ], + [ + 53.5418228, + 10.1093881 + ], + [ + 53.5418483, + 10.1092871 + ], + [ + 53.5419274, + 10.1088874 + ] + ] + }, + { + "osmId": "282357597", + "name": null, + "lengthMeters": 113.54827058758508, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5349118, + 13.1962846 + ], + [ + 52.5349068, + 13.1963141 + ], + [ + 52.5348634, + 13.1965446 + ], + [ + 52.5348225, + 13.1967782 + ], + [ + 52.5347881, + 13.1969888 + ], + [ + 52.5347053, + 13.1974667 + ], + [ + 52.5346326, + 13.1978993 + ] + ] + }, + { + "osmId": "282760691", + "name": null, + "lengthMeters": 83.75753404881011, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317265, + 13.3897492 + ], + [ + 52.5317453, + 13.3899431 + ], + [ + 52.5317759, + 13.3902137 + ], + [ + 52.5318432, + 13.390868 + ], + [ + 52.5318534, + 13.3909697 + ] + ] + }, + { + "osmId": "282760692", + "name": null, + "lengthMeters": 126.55769567069126, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317548, + 13.3897117 + ], + [ + 52.5317282, + 13.3894611 + ], + [ + 52.5316912, + 13.3890697 + ], + [ + 52.5316628, + 13.3887101 + ], + [ + 52.5316063, + 13.3880642 + ], + [ + 52.5315849, + 13.3878619 + ] + ] + }, + { + "osmId": "283862622", + "name": "ehem. Friedhofsbahn", + "lengthMeters": 117.75703586444305, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4203887, + 13.1782294 + ], + [ + 52.4200652, + 13.1776085 + ], + [ + 52.4199479, + 13.1773882 + ], + [ + 52.4196966, + 13.1769151 + ] + ] + }, + { + "osmId": "283870805", + "name": "Stammbahn", + "lengthMeters": 1888.3154426440274, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4715894, + 13.3427497 + ], + [ + 52.4709077, + 13.3419897 + ], + [ + 52.4705433, + 13.3415625 + ], + [ + 52.4702757, + 13.341234 + ], + [ + 52.4697949, + 13.3406134 + ], + [ + 52.4680059, + 13.3383243 + ], + [ + 52.4669446, + 13.3370071 + ], + [ + 52.4641632, + 13.3335523 + ], + [ + 52.4638616, + 13.3331929 + ], + [ + 52.4633894, + 13.3326072 + ], + [ + 52.4625453, + 13.3315317 + ], + [ + 52.4616766, + 13.3304301 + ], + [ + 52.4603733, + 13.3287721 + ], + [ + 52.4599604, + 13.3282656 + ], + [ + 52.4589988, + 13.3271273 + ], + [ + 52.4580422, + 13.3259478 + ] + ] + }, + { + "osmId": "283881316", + "name": "Siemensbahn", + "lengthMeters": 362.22291727910556, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5296863, + 13.2799872 + ], + [ + 52.5295426, + 13.2802009 + ], + [ + 52.5294166, + 13.2804325 + ], + [ + 52.5293145, + 13.2806497 + ], + [ + 52.5292337, + 13.2808439 + ], + [ + 52.5291677, + 13.2810239 + ], + [ + 52.5290791, + 13.2813095 + ], + [ + 52.5289801, + 13.2816764 + ], + [ + 52.528889, + 13.282154 + ], + [ + 52.5288272, + 13.2826627 + ], + [ + 52.5288141, + 13.2830232 + ], + [ + 52.5288198, + 13.2833605 + ], + [ + 52.5288328, + 13.2837555 + ], + [ + 52.5288669, + 13.2844465 + ], + [ + 52.528893, + 13.2849214 + ] + ] + }, + { + "osmId": "284229391", + "name": null, + "lengthMeters": 4745.063080157006, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4691532, + 9.7194536 + ], + [ + 53.4695427, + 9.7262943 + ], + [ + 53.4696519, + 9.7282042 + ], + [ + 53.4703432, + 9.7401367 + ], + [ + 53.470572, + 9.7442894 + ], + [ + 53.4707102, + 9.7467965 + ], + [ + 53.4713196, + 9.7579028 + ], + [ + 53.4714056, + 9.7592902 + ], + [ + 53.4716239, + 9.7632155 + ], + [ + 53.4720563, + 9.7709077 + ], + [ + 53.4725782, + 9.7805224 + ], + [ + 53.4726429, + 9.7816255 + ], + [ + 53.472777, + 9.7839125 + ], + [ + 53.4729391, + 9.7868768 + ], + [ + 53.4730071, + 9.78818 + ], + [ + 53.4730808, + 9.7895721 + ], + [ + 53.4731256, + 9.7903143 + ], + [ + 53.4731564, + 9.7908297 + ] + ] + }, + { + "osmId": "284476162", + "name": null, + "lengthMeters": 766.6699349833175, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5715501, + 10.06583 + ], + [ + 53.5713412, + 10.0646688 + ], + [ + 53.5712041, + 10.0639702 + ], + [ + 53.5707475, + 10.061653 + ], + [ + 53.5701038, + 10.0585578 + ], + [ + 53.569869, + 10.0576313 + ], + [ + 53.5696638, + 10.0568298 + ], + [ + 53.5691675, + 10.0549464 + ] + ] + }, + { + "osmId": "284476168", + "name": null, + "lengthMeters": 731.0676670644785, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5739985, + 10.0702061 + ], + [ + 53.5742342, + 10.0701317 + ], + [ + 53.5745899, + 10.070049 + ], + [ + 53.5747575, + 10.0700179 + ], + [ + 53.5752322, + 10.0699616 + ], + [ + 53.5762589, + 10.0699715 + ], + [ + 53.5767732, + 10.0699863 + ], + [ + 53.5768947, + 10.0699838 + ], + [ + 53.5778262, + 10.0699907 + ], + [ + 53.5780455, + 10.0699654 + ], + [ + 53.5782097, + 10.0699448 + ], + [ + 53.5785463, + 10.0698815 + ], + [ + 53.5787912, + 10.0698181 + ], + [ + 53.579287, + 10.0696408 + ], + [ + 53.5793711, + 10.069605 + ], + [ + 53.5794827, + 10.0695479 + ], + [ + 53.5798132, + 10.0693766 + ], + [ + 53.5799577, + 10.0692958 + ], + [ + 53.5800589, + 10.0692243 + ], + [ + 53.5804759, + 10.0689475 + ] + ] + }, + { + "osmId": "284476177", + "name": null, + "lengthMeters": 777.8138556631365, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5804521, + 10.0688698 + ], + [ + 53.580118, + 10.0690999 + ], + [ + 53.5797982, + 10.0693 + ], + [ + 53.5794797, + 10.0694576 + ], + [ + 53.5793032, + 10.0695492 + ], + [ + 53.578993, + 10.0696575 + ], + [ + 53.5788045, + 10.0697225 + ], + [ + 53.5785411, + 10.0697865 + ], + [ + 53.5780964, + 10.0698763 + ], + [ + 53.5779525, + 10.0698947 + ], + [ + 53.5775185, + 10.0699212 + ], + [ + 53.5768628, + 10.0699163 + ], + [ + 53.5762638, + 10.0699205 + ], + [ + 53.575229, + 10.0699017 + ], + [ + 53.5748271, + 10.0699036 + ], + [ + 53.5747558, + 10.0699078 + ], + [ + 53.5745909, + 10.0699309 + ], + [ + 53.5744938, + 10.0699435 + ], + [ + 53.5739754, + 10.0700803 + ], + [ + 53.573712, + 10.0701306 + ], + [ + 53.5735533, + 10.0701469 + ] + ] + }, + { + "osmId": "286302736", + "name": null, + "lengthMeters": 324.02990262375477, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5107376, + 9.9200232 + ], + [ + 53.5108208, + 9.9196126 + ], + [ + 53.5108754, + 9.9191353 + ], + [ + 53.5108728, + 9.9185957 + ], + [ + 53.5108104, + 9.918047 + ], + [ + 53.5107167, + 9.9176327 + ], + [ + 53.5107069, + 9.9175893 + ], + [ + 53.5105625, + 9.9171725 + ], + [ + 53.5104132, + 9.9168526 + ], + [ + 53.510189, + 9.9164685 + ], + [ + 53.509987, + 9.91622 + ], + [ + 53.5099015, + 9.9161148 + ], + [ + 53.5097161, + 9.9159226 + ] + ] + }, + { + "osmId": "286302737", + "name": null, + "lengthMeters": 207.0854149880065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5105895, + 9.9170275 + ], + [ + 53.5107985, + 9.9173668 + ], + [ + 53.5108971, + 9.917502 + ], + [ + 53.5110748, + 9.9176711 + ], + [ + 53.511186, + 9.9177844 + ], + [ + 53.5113742, + 9.9179481 + ], + [ + 53.5115214, + 9.9180174 + ], + [ + 53.5115912, + 9.9180503 + ], + [ + 53.5117698, + 9.9181117 + ], + [ + 53.5119205, + 9.9181378 + ], + [ + 53.51197, + 9.9181324 + ], + [ + 53.5120527, + 9.9181271 + ], + [ + 53.5122594, + 9.918107 + ] + ] + }, + { + "osmId": "286302738", + "name": null, + "lengthMeters": 221.5822694714152, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5105895, + 9.9170275 + ], + [ + 53.5106873, + 9.9173237 + ], + [ + 53.510701, + 9.9173652 + ], + [ + 53.5107742, + 9.9176049 + ], + [ + 53.5108711, + 9.9180295 + ], + [ + 53.5109284, + 9.9185794 + ], + [ + 53.5109249, + 9.9191304 + ], + [ + 53.5108902, + 9.9195239 + ], + [ + 53.5108817, + 9.9195677 + ], + [ + 53.5107577, + 9.9202226 + ] + ] + }, + { + "osmId": "286302740", + "name": null, + "lengthMeters": 506.5809057143666, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4806952, + 9.9846591 + ], + [ + 53.481026, + 9.9869234 + ], + [ + 53.4811347, + 9.9876556 + ], + [ + 53.4811701, + 9.9878923 + ], + [ + 53.4813219, + 9.9889196 + ], + [ + 53.4816383, + 9.9910703 + ], + [ + 53.4817815, + 9.9920939 + ] + ] + }, + { + "osmId": "286302742", + "name": null, + "lengthMeters": 231.86139268461235, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4807746, + 9.9816967 + ], + [ + 53.480873, + 9.981054 + ], + [ + 53.4809419, + 9.9807 + ], + [ + 53.48097, + 9.9805805 + ], + [ + 53.4810307, + 9.9803215 + ], + [ + 53.4810863, + 9.9801282 + ], + [ + 53.4811959, + 9.9798262 + ], + [ + 53.4813331, + 9.9795382 + ], + [ + 53.4814495, + 9.9793316 + ], + [ + 53.481487, + 9.9792578 + ], + [ + 53.4815785, + 9.9791119 + ], + [ + 53.4816982, + 9.9789519 + ], + [ + 53.4818131, + 9.9788207 + ], + [ + 53.4818319, + 9.9787966 + ] + ] + }, + { + "osmId": "286302745", + "name": null, + "lengthMeters": 301.6630815753216, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4808209, + 9.9816775 + ], + [ + 53.4808824, + 9.98125 + ], + [ + 53.4809249, + 9.9809901 + ], + [ + 53.4809859, + 9.9806945 + ], + [ + 53.4810158, + 9.9805862 + ], + [ + 53.4810582, + 9.9804324 + ], + [ + 53.4812305, + 9.9799298 + ], + [ + 53.4813286, + 9.9796903 + ], + [ + 53.481406, + 9.9795199 + ], + [ + 53.4815574, + 9.9792362 + ], + [ + 53.4817233, + 9.9790033 + ], + [ + 53.4819468, + 9.9787554 + ], + [ + 53.4820143, + 9.9786956 + ], + [ + 53.482157, + 9.978552 + ], + [ + 53.4824562, + 9.9783042 + ] + ] + }, + { + "osmId": "286329922", + "name": null, + "lengthMeters": 255.81342359739122, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5213788, + 9.9188626 + ], + [ + 53.5212053, + 9.9191934 + ], + [ + 53.5210288, + 9.9194907 + ], + [ + 53.5209873, + 9.9195578 + ], + [ + 53.520804, + 9.9198259 + ], + [ + 53.520675, + 9.9199888 + ], + [ + 53.5205725, + 9.9201024 + ], + [ + 53.5204681, + 9.9201967 + ], + [ + 53.5202977, + 9.9203469 + ], + [ + 53.5201114, + 9.9204637 + ], + [ + 53.5199597, + 9.9205401 + ], + [ + 53.5199354, + 9.9205487 + ], + [ + 53.5197643, + 9.9206018 + ], + [ + 53.5195724, + 9.9206478 + ], + [ + 53.5194296, + 9.9206676 + ] + ] + }, + { + "osmId": "286430782", + "name": null, + "lengthMeters": 201.7219554978874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5180515, + 9.9202534 + ], + [ + 53.5178114, + 9.9200006 + ], + [ + 53.5177055, + 9.9198771 + ], + [ + 53.5176064, + 9.919737 + ], + [ + 53.5173522, + 9.9194185 + ], + [ + 53.5172883, + 9.9193196 + ], + [ + 53.5172135, + 9.9191851 + ], + [ + 53.5170107, + 9.9188361 + ], + [ + 53.5168864, + 9.9185588 + ], + [ + 53.5167484, + 9.9181831 + ] + ] + }, + { + "osmId": "286430783", + "name": null, + "lengthMeters": 748.5290420281316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5167484, + 9.9181831 + ], + [ + 53.5166147, + 9.9177086 + ], + [ + 53.5164869, + 9.9171938 + ], + [ + 53.5164468, + 9.9170317 + ], + [ + 53.5163819, + 9.9167774 + ], + [ + 53.5162235, + 9.916148 + ], + [ + 53.515761, + 9.9142793 + ], + [ + 53.5153874, + 9.9127408 + ], + [ + 53.5152811, + 9.9124058 + ], + [ + 53.5152443, + 9.9122873 + ], + [ + 53.5152276, + 9.9122333 + ], + [ + 53.5151694, + 9.9120692 + ], + [ + 53.5150088, + 9.9117063 + ], + [ + 53.5148282, + 9.9113752 + ], + [ + 53.5146021, + 9.9110638 + ], + [ + 53.5143529, + 9.9107887 + ], + [ + 53.5143137, + 9.9107459 + ], + [ + 53.5140686, + 9.9105388 + ], + [ + 53.5138964, + 9.9104314 + ], + [ + 53.5137504, + 9.9103404 + ], + [ + 53.5134249, + 9.9101886 + ], + [ + 53.5134013, + 9.9101776 + ], + [ + 53.513285, + 9.9101499 + ], + [ + 53.5131271, + 9.9101115 + ], + [ + 53.5131219, + 9.9101102 + ], + [ + 53.5130452, + 9.9100917 + ], + [ + 53.5129513, + 9.9100854 + ], + [ + 53.5127887, + 9.9100717 + ] + ] + }, + { + "osmId": "287522838", + "name": null, + "lengthMeters": 2091.6234962017766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1425329, + 11.5678513 + ], + [ + 48.1426231, + 11.5678803 + ], + [ + 48.1426689, + 11.5678983 + ], + [ + 48.1426805, + 11.5679029 + ], + [ + 48.1426924, + 11.5679104 + ], + [ + 48.1427439, + 11.5679431 + ], + [ + 48.1437111, + 11.5685623 + ], + [ + 48.1442278, + 11.568893 + ], + [ + 48.1442615, + 11.5689315 + ], + [ + 48.1442928, + 11.56898 + ], + [ + 48.1443169, + 11.5690363 + ], + [ + 48.1443334, + 11.5690746 + ], + [ + 48.1444392, + 11.5693528 + ], + [ + 48.1444518, + 11.5693879 + ], + [ + 48.1444841, + 11.5694525 + ], + [ + 48.1445202, + 11.5695014 + ], + [ + 48.1445432, + 11.5695244 + ], + [ + 48.1445865, + 11.5695557 + ], + [ + 48.1446448, + 11.5695806 + ], + [ + 48.1447069, + 11.5695795 + ], + [ + 48.144765, + 11.5695604 + ], + [ + 48.1449694, + 11.5694915 + ], + [ + 48.1450097, + 11.5694763 + ], + [ + 48.145064, + 11.5694704 + ], + [ + 48.1450886, + 11.5694713 + ], + [ + 48.1451259, + 11.5694761 + ], + [ + 48.1454897, + 11.5697072 + ], + [ + 48.1456006, + 11.569779 + ], + [ + 48.145607, + 11.5697831 + ], + [ + 48.145908, + 11.5699779 + ], + [ + 48.1467931, + 11.5705489 + ], + [ + 48.1468802, + 11.5706051 + ], + [ + 48.1469633, + 11.5706594 + ], + [ + 48.1470285, + 11.570702 + ], + [ + 48.1478124, + 11.5712141 + ], + [ + 48.1478595, + 11.5712449 + ], + [ + 48.147917, + 11.5712824 + ], + [ + 48.1481829, + 11.5714561 + ], + [ + 48.1482067, + 11.5714717 + ], + [ + 48.1487734, + 11.5718406 + ], + [ + 48.1488889, + 11.5719173 + ], + [ + 48.1489562, + 11.5719612 + ], + [ + 48.1490068, + 11.5719938 + ], + [ + 48.1490854, + 11.5720443 + ], + [ + 48.149174, + 11.5721011 + ], + [ + 48.14982, + 11.5725159 + ], + [ + 48.1500256, + 11.572648 + ], + [ + 48.1500531, + 11.5726656 + ], + [ + 48.1500622, + 11.5726714 + ], + [ + 48.1504284, + 11.5729064 + ], + [ + 48.1504831, + 11.5729415 + ], + [ + 48.1506528, + 11.5730504 + ], + [ + 48.1508698, + 11.5731897 + ], + [ + 48.1509647, + 11.5732508 + ], + [ + 48.1510271, + 11.5732908 + ], + [ + 48.1510903, + 11.5733314 + ], + [ + 48.1517269, + 11.5737408 + ], + [ + 48.1521708, + 11.5740262 + ], + [ + 48.1524979, + 11.5742365 + ], + [ + 48.152791, + 11.574425 + ], + [ + 48.1532963, + 11.5747498 + ], + [ + 48.1533546, + 11.5747871 + ], + [ + 48.1539927, + 11.5751956 + ], + [ + 48.1543217, + 11.5754105 + ], + [ + 48.1543536, + 11.5754313 + ], + [ + 48.1543949, + 11.5754579 + ], + [ + 48.1544308, + 11.5754713 + ], + [ + 48.1544574, + 11.5754812 + ], + [ + 48.1545169, + 11.5754895 + ], + [ + 48.1545393, + 11.57549 + ], + [ + 48.1545887, + 11.5754885 + ], + [ + 48.154911, + 11.575424 + ], + [ + 48.1550654, + 11.5753985 + ], + [ + 48.1551453, + 11.5753827 + ], + [ + 48.1552408, + 11.5753666 + ], + [ + 48.1553105, + 11.5753549 + ], + [ + 48.1560289, + 11.5752492 + ], + [ + 48.1570152, + 11.5750934 + ], + [ + 48.1573579, + 11.5750554 + ], + [ + 48.1574191, + 11.5750468 + ], + [ + 48.1575703, + 11.5750254 + ], + [ + 48.1576118, + 11.5750188 + ], + [ + 48.1576449, + 11.5750136 + ], + [ + 48.1577146, + 11.575004 + ], + [ + 48.1577325, + 11.5750017 + ], + [ + 48.1579136, + 11.5749817 + ], + [ + 48.1580376, + 11.5749682 + ], + [ + 48.1582026, + 11.5749502 + ], + [ + 48.1587972, + 11.5748852 + ], + [ + 48.1590818, + 11.5748625 + ], + [ + 48.15938, + 11.5748364 + ], + [ + 48.1594038, + 11.5748361 + ], + [ + 48.1594297, + 11.5748367 + ], + [ + 48.1594583, + 11.57484 + ], + [ + 48.1595185, + 11.5748513 + ], + [ + 48.1595517, + 11.5748563 + ], + [ + 48.1595715, + 11.5748605 + ], + [ + 48.1596242, + 11.574876 + ], + [ + 48.1596478, + 11.5748825 + ], + [ + 48.1597155, + 11.5748987 + ], + [ + 48.1598004, + 11.5749184 + ], + [ + 48.1599519, + 11.5749572 + ], + [ + 48.1601163, + 11.5750056 + ] + ] + }, + { + "osmId": "288064200", + "name": null, + "lengthMeters": 949.4098819205896, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6529761, + 9.8010195 + ], + [ + 53.6526997, + 9.8014225 + ], + [ + 53.6520053, + 9.8024615 + ], + [ + 53.6501434, + 9.8051857 + ], + [ + 53.6465977, + 9.8104507 + ], + [ + 53.6465555, + 9.810515 + ] + ] + }, + { + "osmId": "288064202", + "name": null, + "lengthMeters": 85.72501623960753, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.653578, + 9.8002076 + ], + [ + 53.6535481, + 9.8002483 + ], + [ + 53.6531827, + 9.8007182 + ], + [ + 53.6530981, + 9.800845 + ], + [ + 53.6529761, + 9.8010195 + ] + ] + }, + { + "osmId": "288073802", + "name": null, + "lengthMeters": 90.35437106240772, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4556129, + 13.5770335 + ], + [ + 52.4556462, + 13.5770568 + ], + [ + 52.4557174, + 13.5771075 + ], + [ + 52.4557651, + 13.5771381 + ], + [ + 52.4558909, + 13.5772278 + ], + [ + 52.456359, + 13.5775616 + ] + ] + }, + { + "osmId": "288073804", + "name": null, + "lengthMeters": 90.35628018067531, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4563699, + 13.5775108 + ], + [ + 52.4559011, + 13.5771806 + ], + [ + 52.4557682, + 13.577087 + ], + [ + 52.4556585, + 13.5770097 + ], + [ + 52.4556233, + 13.5769844 + ] + ] + }, + { + "osmId": "288073808", + "name": null, + "lengthMeters": 124.72328322620302, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4589712, + 13.5797301 + ], + [ + 52.459013, + 13.5797748 + ], + [ + 52.4590307, + 13.5797948 + ], + [ + 52.459086, + 13.5798574 + ], + [ + 52.4591673, + 13.5799474 + ], + [ + 52.4591859, + 13.5799683 + ], + [ + 52.4593233, + 13.5801266 + ], + [ + 52.4596145, + 13.5804447 + ], + [ + 52.4597465, + 13.5806001 + ], + [ + 52.4597692, + 13.5806268 + ], + [ + 52.4598947, + 13.5807745 + ] + ] + }, + { + "osmId": "288073810", + "name": null, + "lengthMeters": 264.1361264251641, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4584974, + 13.5792363 + ], + [ + 52.4584762, + 13.5792166 + ], + [ + 52.4584687, + 13.5792099 + ], + [ + 52.4583784, + 13.579127 + ], + [ + 52.4572469, + 13.5781287 + ], + [ + 52.4572399, + 13.5781238 + ], + [ + 52.4571885, + 13.5780876 + ], + [ + 52.4570369, + 13.5779807 + ], + [ + 52.4568061, + 13.5778181 + ], + [ + 52.4563699, + 13.5775108 + ] + ] + }, + { + "osmId": "288073812", + "name": null, + "lengthMeters": 87.52876983315605, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4468021, + 13.6317409 + ], + [ + 52.44681, + 13.6317789 + ], + [ + 52.4468478, + 13.6319613 + ], + [ + 52.4468941, + 13.6321425 + ], + [ + 52.4469814, + 13.6324214 + ], + [ + 52.4470637, + 13.6326143 + ], + [ + 52.4470985, + 13.6327031 + ], + [ + 52.4471536, + 13.6328365 + ], + [ + 52.4471695, + 13.632875 + ] + ] + }, + { + "osmId": "288073814", + "name": null, + "lengthMeters": 195.90755989654932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4556129, + 13.5770335 + ], + [ + 52.4556448, + 13.5770622 + ], + [ + 52.4556632, + 13.5770848 + ], + [ + 52.4556782, + 13.5771087 + ], + [ + 52.4556882, + 13.5771295 + ], + [ + 52.4556986, + 13.5771546 + ], + [ + 52.4557058, + 13.5771783 + ], + [ + 52.4557127, + 13.577201 + ], + [ + 52.4557207, + 13.5772388 + ], + [ + 52.4557246, + 13.5772703 + ], + [ + 52.4557267, + 13.5772981 + ], + [ + 52.4557264, + 13.5773297 + ], + [ + 52.4557238, + 13.5773682 + ], + [ + 52.4556967, + 13.5777344 + ], + [ + 52.4556865, + 13.5778734 + ], + [ + 52.4556588, + 13.5782502 + ], + [ + 52.4555543, + 13.5796719 + ], + [ + 52.4555426, + 13.5798306 + ] + ] + }, + { + "osmId": "288073816", + "name": null, + "lengthMeters": 263.9061237511966, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.456359, + 13.5775616 + ], + [ + 52.4567914, + 13.5778699 + ], + [ + 52.4570358, + 13.5780442 + ], + [ + 52.4571486, + 13.5781246 + ], + [ + 52.4572282, + 13.5781813 + ], + [ + 52.4582856, + 13.5791114 + ], + [ + 52.4583604, + 13.5791772 + ], + [ + 52.4584635, + 13.5792628 + ], + [ + 52.458486, + 13.5792827 + ] + ] + }, + { + "osmId": "288073818", + "name": null, + "lengthMeters": 403.17314604350844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4467978, + 13.6258228 + ], + [ + 52.4467968, + 13.6258634 + ], + [ + 52.4467911, + 13.626021 + ], + [ + 52.4467894, + 13.6260679 + ], + [ + 52.4467767, + 13.6263704 + ], + [ + 52.4467709, + 13.6265097 + ], + [ + 52.4467604, + 13.6267378 + ], + [ + 52.4467559, + 13.6268424 + ], + [ + 52.4467509, + 13.6269693 + ], + [ + 52.4467435, + 13.6271124 + ], + [ + 52.4467414, + 13.6271921 + ], + [ + 52.4467379, + 13.6272565 + ], + [ + 52.4467194, + 13.6277385 + ], + [ + 52.4467128, + 13.6279099 + ], + [ + 52.4467099, + 13.6279876 + ], + [ + 52.4467018, + 13.6283282 + ], + [ + 52.4466991, + 13.6284303 + ], + [ + 52.4466967, + 13.6285178 + ], + [ + 52.4466962, + 13.6285653 + ], + [ + 52.4466948, + 13.6287499 + ], + [ + 52.4466942, + 13.6288356 + ], + [ + 52.4466905, + 13.6290789 + ], + [ + 52.44669, + 13.6291117 + ], + [ + 52.4466877, + 13.6292548 + ], + [ + 52.4466882, + 13.6293438 + ], + [ + 52.4466862, + 13.629561 + ], + [ + 52.4466838, + 13.6297754 + ], + [ + 52.4466823, + 13.6299487 + ], + [ + 52.4466814, + 13.6301031 + ], + [ + 52.4466825, + 13.6302821 + ], + [ + 52.446683, + 13.6303687 + ], + [ + 52.4466836, + 13.6304068 + ], + [ + 52.4466843, + 13.630456 + ], + [ + 52.4466893, + 13.6309696 + ], + [ + 52.4466902, + 13.630985 + ], + [ + 52.4466991, + 13.6311403 + ], + [ + 52.4467088, + 13.631214 + ], + [ + 52.4467272, + 13.6313547 + ], + [ + 52.4467381, + 13.6314322 + ], + [ + 52.4467513, + 13.6314961 + ], + [ + 52.4467858, + 13.6316624 + ], + [ + 52.4467974, + 13.6317183 + ], + [ + 52.4468021, + 13.6317409 + ] + ] + }, + { + "osmId": "288073819", + "name": null, + "lengthMeters": 81.43799090388805, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4585424, + 13.5793315 + ], + [ + 52.4588515, + 13.5796117 + ], + [ + 52.4588655, + 13.5796262 + ], + [ + 52.4588822, + 13.5796441 + ], + [ + 52.4588942, + 13.579659 + ], + [ + 52.4589077, + 13.5796771 + ], + [ + 52.4589243, + 13.5797031 + ], + [ + 52.4589419, + 13.579735 + ], + [ + 52.4589509, + 13.5797553 + ], + [ + 52.4589609, + 13.5797823 + ], + [ + 52.4589701, + 13.5798114 + ], + [ + 52.4589768, + 13.579836 + ], + [ + 52.4589825, + 13.5798633 + ], + [ + 52.4589874, + 13.5798982 + ], + [ + 52.4589907, + 13.5799343 + ], + [ + 52.4589905, + 13.5799802 + ], + [ + 52.4589958, + 13.580145 + ] + ] + }, + { + "osmId": "288073821", + "name": null, + "lengthMeters": 87.18113775875004, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4471695, + 13.632875 + ], + [ + 52.4471299, + 13.6327618 + ], + [ + 52.4471065, + 13.6326951 + ], + [ + 52.4470839, + 13.6326357 + ], + [ + 52.4470581, + 13.6325592 + ], + [ + 52.4469702, + 13.6322953 + ], + [ + 52.4469208, + 13.6321468 + ], + [ + 52.4468501, + 13.6319036 + ], + [ + 52.4468251, + 13.6318102 + ], + [ + 52.44681, + 13.6317789 + ], + [ + 52.4468021, + 13.6317409 + ] + ] + }, + { + "osmId": "288073823", + "name": null, + "lengthMeters": 319.65521535071355, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.455146, + 13.5766532 + ], + [ + 52.4547262, + 13.576353 + ], + [ + 52.4546495, + 13.5762822 + ], + [ + 52.4545752, + 13.5762219 + ], + [ + 52.4545669, + 13.5762129 + ], + [ + 52.4544729, + 13.5761104 + ], + [ + 52.4537952, + 13.5753722 + ], + [ + 52.4535045, + 13.5750469 + ], + [ + 52.4532342, + 13.5747445 + ], + [ + 52.4530159, + 13.5745084 + ], + [ + 52.4529886, + 13.5744789 + ], + [ + 52.4529348, + 13.5744207 + ], + [ + 52.4528416, + 13.5743199 + ], + [ + 52.4527563, + 13.5742241 + ], + [ + 52.452733, + 13.5741979 + ], + [ + 52.4527092, + 13.5741711 + ] + ] + }, + { + "osmId": "288073824", + "name": null, + "lengthMeters": 321.3158941985397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4526938, + 13.5742033 + ], + [ + 52.4527184, + 13.5742329 + ], + [ + 52.4527415, + 13.5742606 + ], + [ + 52.4528243, + 13.5743599 + ], + [ + 52.4529176, + 13.5744629 + ], + [ + 52.4529701, + 13.5745209 + ], + [ + 52.4529977, + 13.5745514 + ], + [ + 52.4532159, + 13.5747924 + ], + [ + 52.4534426, + 13.5750498 + ], + [ + 52.4536534, + 13.5752891 + ], + [ + 52.4537093, + 13.5753527 + ], + [ + 52.4537801, + 13.575433 + ], + [ + 52.4537911, + 13.5754455 + ], + [ + 52.4538603, + 13.5755202 + ], + [ + 52.4544526, + 13.5761594 + ], + [ + 52.4545578, + 13.5762718 + ], + [ + 52.4546341, + 13.576341 + ], + [ + 52.454845, + 13.5765054 + ], + [ + 52.4551374, + 13.5767128 + ] + ] + }, + { + "osmId": "288073825", + "name": null, + "lengthMeters": 255.1910896312813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4471695, + 13.632875 + ], + [ + 52.4472051, + 13.6329612 + ], + [ + 52.447261, + 13.633125 + ], + [ + 52.4472835, + 13.633191 + ], + [ + 52.4473323, + 13.6333947 + ], + [ + 52.4473783, + 13.6336122 + ], + [ + 52.4473818, + 13.6336336 + ], + [ + 52.4473879, + 13.6336715 + ], + [ + 52.4474256, + 13.6338895 + ], + [ + 52.447438, + 13.6339606 + ], + [ + 52.4475319, + 13.6345033 + ], + [ + 52.4475378, + 13.6345373 + ], + [ + 52.4475491, + 13.634596 + ], + [ + 52.4475932, + 13.6348241 + ], + [ + 52.4475964, + 13.6348405 + ], + [ + 52.4476576, + 13.63527 + ], + [ + 52.447675, + 13.6354743 + ], + [ + 52.4476867, + 13.6356122 + ], + [ + 52.4477118, + 13.636194 + ], + [ + 52.4477142, + 13.6364935 + ] + ] + }, + { + "osmId": "288073839", + "name": "Bahnhofstra\u00dfe", + "lengthMeters": 91.27196058016142, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.4527092, + 13.5741711 + ], + [ + 52.4523673, + 13.5737931 + ], + [ + 52.452031, + 13.5734124 + ] + ] + }, + { + "osmId": "288200093", + "name": null, + "lengthMeters": 3503.945959086692, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114737, + 13.4968975 + ], + [ + 52.5115785, + 13.4963786 + ], + [ + 52.5116531, + 13.4959389 + ], + [ + 52.5117011, + 13.495685 + ], + [ + 52.5117332, + 13.4955081 + ], + [ + 52.5117654, + 13.4953092 + ], + [ + 52.5117971, + 13.4950807 + ], + [ + 52.5118222, + 13.494849 + ], + [ + 52.5118432, + 13.4945853 + ], + [ + 52.5118551, + 13.4943529 + ], + [ + 52.5118614, + 13.4941189 + ], + [ + 52.5118636, + 13.4936153 + ], + [ + 52.511867, + 13.4934686 + ], + [ + 52.511873, + 13.49329 + ], + [ + 52.5118836, + 13.4930852 + ], + [ + 52.5119036, + 13.4928198 + ], + [ + 52.5123281, + 13.4886625 + ], + [ + 52.5123806, + 13.4883198 + ], + [ + 52.5124022, + 13.4881647 + ], + [ + 52.5124495, + 13.487766 + ], + [ + 52.5125069, + 13.4872449 + ], + [ + 52.5125361, + 13.4869549 + ], + [ + 52.5125846, + 13.4864527 + ], + [ + 52.5126332, + 13.4858912 + ], + [ + 52.5126372, + 13.4858061 + ], + [ + 52.5126637, + 13.4853785 + ], + [ + 52.512675, + 13.4852318 + ], + [ + 52.5131372, + 13.4806983 + ], + [ + 52.5131529, + 13.4805537 + ], + [ + 52.5132098, + 13.4801277 + ], + [ + 52.5132199, + 13.4800518 + ], + [ + 52.5132751, + 13.4796814 + ], + [ + 52.5135563, + 13.4769285 + ], + [ + 52.513603, + 13.4764707 + ], + [ + 52.5137406, + 13.4754354 + ], + [ + 52.5137903, + 13.4749374 + ], + [ + 52.5138368, + 13.4744097 + ], + [ + 52.5140781, + 13.4715823 + ], + [ + 52.5141898, + 13.4702733 + ], + [ + 52.5146113, + 13.4660866 + ], + [ + 52.514656, + 13.4657467 + ], + [ + 52.5146941, + 13.4654209 + ], + [ + 52.5148582, + 13.4638612 + ], + [ + 52.5148957, + 13.4635043 + ], + [ + 52.5149115, + 13.4632693 + ], + [ + 52.5149279, + 13.4629078 + ], + [ + 52.5153224, + 13.4589995 + ], + [ + 52.515656, + 13.455694 + ], + [ + 52.5157876, + 13.4547441 + ], + [ + 52.5158135, + 13.4545694 + ], + [ + 52.5158709, + 13.4540123 + ], + [ + 52.5159536, + 13.4532085 + ], + [ + 52.5159661, + 13.4530012 + ], + [ + 52.5160244, + 13.4520294 + ], + [ + 52.5163151, + 13.4492194 + ], + [ + 52.516343, + 13.4489494 + ], + [ + 52.5165863, + 13.4464444 + ], + [ + 52.5166708, + 13.4458699 + ] + ] + }, + { + "osmId": "288812689", + "name": null, + "lengthMeters": 377.9569846763785, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014023, + 13.4768725 + ], + [ + 52.5013919, + 13.4769262 + ], + [ + 52.5013318, + 13.4772212 + ], + [ + 52.5012482, + 13.4775953 + ], + [ + 52.5011234, + 13.4781311 + ], + [ + 52.5008728, + 13.4790687 + ], + [ + 52.5006586, + 13.4797811 + ], + [ + 52.5005385, + 13.4801508 + ], + [ + 52.5001651, + 13.4812013 + ], + [ + 52.4999168, + 13.4818778 + ] + ] + }, + { + "osmId": "289022116", + "name": null, + "lengthMeters": 483.8615180708776, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1435518, + 11.5148339 + ], + [ + 48.1436546, + 11.5144835 + ], + [ + 48.143719, + 11.5142812 + ], + [ + 48.1437787, + 11.5140437 + ], + [ + 48.1438319, + 11.5137589 + ], + [ + 48.1438573, + 11.5135697 + ], + [ + 48.1438849, + 11.5133315 + ], + [ + 48.1440441, + 11.5119572 + ], + [ + 48.1440973, + 11.5114921 + ], + [ + 48.144153, + 11.5109827 + ], + [ + 48.1442871, + 11.5097083 + ], + [ + 48.1443014, + 11.5095284 + ], + [ + 48.1443109, + 11.5093384 + ], + [ + 48.1443375, + 11.5084539 + ] + ] + }, + { + "osmId": "289026425", + "name": null, + "lengthMeters": 300.114763856081, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1435312, + 11.5152302 + ], + [ + 48.1429742, + 11.5169457 + ], + [ + 48.1428451, + 11.5173399 + ], + [ + 48.1427753, + 11.5175368 + ], + [ + 48.1427055, + 11.517702 + ], + [ + 48.1422784, + 11.5185338 + ], + [ + 48.1421858, + 11.518717 + ] + ] + }, + { + "osmId": "289069193", + "name": null, + "lengthMeters": 121.50447669855595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1862158, + 11.5128501 + ], + [ + 48.1859871, + 11.5125295 + ], + [ + 48.1857784, + 11.5122766 + ], + [ + 48.1853683, + 11.5118184 + ] + ] + }, + { + "osmId": "289115633", + "name": null, + "lengthMeters": 295.8742220270277, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1481174, + 11.4685211 + ], + [ + 48.1480237, + 11.4688813 + ], + [ + 48.1479657, + 11.4691725 + ], + [ + 48.1479265, + 11.4694918 + ], + [ + 48.1478737, + 11.4701993 + ], + [ + 48.1477118, + 11.4724472 + ] + ] + }, + { + "osmId": "289115637", + "name": null, + "lengthMeters": 302.0064258751433, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1481231, + 11.4685286 + ], + [ + 48.1480526, + 11.4688961 + ], + [ + 48.1480079, + 11.4691899 + ], + [ + 48.1479696, + 11.4695067 + ], + [ + 48.1479142, + 11.4702143 + ], + [ + 48.1477429, + 11.4725528 + ] + ] + }, + { + "osmId": "289115659", + "name": null, + "lengthMeters": 211.88655263429214, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.152074, + 11.4531928 + ], + [ + 48.1519774, + 11.4538878 + ], + [ + 48.151788, + 11.4552419 + ], + [ + 48.1516443, + 11.4559736 + ] + ] + }, + { + "osmId": "289115661", + "name": null, + "lengthMeters": 394.54729236166963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1528913, + 11.4456508 + ], + [ + 48.1527764, + 11.4466568 + ], + [ + 48.1527187, + 11.4471087 + ], + [ + 48.152684, + 11.4473803 + ], + [ + 48.1525955, + 11.4481277 + ], + [ + 48.1525372, + 11.4486858 + ], + [ + 48.1524565, + 11.4495097 + ], + [ + 48.1523093, + 11.4508968 + ] + ] + }, + { + "osmId": "289115663", + "name": null, + "lengthMeters": 526.9499408432238, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1535109, + 11.4475444 + ], + [ + 48.1535156, + 11.4474247 + ], + [ + 48.1535208, + 11.4470441 + ], + [ + 48.1535208, + 11.4466517 + ], + [ + 48.153512, + 11.4463823 + ], + [ + 48.1534752, + 11.4457148 + ], + [ + 48.1534237, + 11.4450329 + ], + [ + 48.1533716, + 11.4443186 + ], + [ + 48.1533463, + 11.4438213 + ], + [ + 48.1533253, + 11.4432214 + ], + [ + 48.1533161, + 11.4426451 + ], + [ + 48.1533235, + 11.4421572 + ], + [ + 48.1533463, + 11.4416263 + ], + [ + 48.1533775, + 11.4410292 + ], + [ + 48.1534239, + 11.4404622 + ] + ] + }, + { + "osmId": "289115664", + "name": null, + "lengthMeters": 859.4015486551892, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1443791, + 11.5092269 + ], + [ + 48.1445465, + 11.5076474 + ], + [ + 48.1447847, + 11.5053896 + ], + [ + 48.145103, + 11.5023533 + ], + [ + 48.1452879, + 11.5005814 + ], + [ + 48.1455761, + 11.4977836 + ] + ] + }, + { + "osmId": "289115666", + "name": null, + "lengthMeters": 265.54339926122805, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1449024, + 11.5018886 + ], + [ + 48.14486, + 11.5022937 + ], + [ + 48.1445325, + 11.5054244 + ] + ] + }, + { + "osmId": "289115667", + "name": null, + "lengthMeters": 112.38593270747732, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1443882, + 11.5069412 + ], + [ + 48.1443734, + 11.5074861 + ], + [ + 48.1443527, + 11.5079311 + ], + [ + 48.1443375, + 11.5084539 + ] + ] + }, + { + "osmId": "289115669", + "name": null, + "lengthMeters": 406.75806397661097, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1470766, + 11.4899766 + ], + [ + 48.1472853, + 11.4895186 + ], + [ + 48.1474818, + 11.489125 + ], + [ + 48.1476918, + 11.4887448 + ], + [ + 48.1479692, + 11.4883005 + ], + [ + 48.1482549, + 11.4878792 + ], + [ + 48.1484148, + 11.4876648 + ], + [ + 48.1485793, + 11.4874627 + ], + [ + 48.1489128, + 11.4870824 + ], + [ + 48.1493539, + 11.4866097 + ], + [ + 48.1495257, + 11.4864126 + ], + [ + 48.1496869, + 11.4861904 + ] + ] + }, + { + "osmId": "289610036", + "name": null, + "lengthMeters": 643.7844554161206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1208642, + 11.5561579 + ], + [ + 48.1209095, + 11.5560607 + ], + [ + 48.1212579, + 11.5553351 + ], + [ + 48.1214129, + 11.5550123 + ], + [ + 48.1225634, + 11.5526071 + ], + [ + 48.1232935, + 11.5510825 + ], + [ + 48.1234645, + 11.5507511 + ], + [ + 48.1237135, + 11.5503063 + ], + [ + 48.1238124, + 11.5501174 + ], + [ + 48.1239555, + 11.5498294 + ], + [ + 48.1242783, + 11.5491555 + ] + ] + }, + { + "osmId": "289923974", + "name": null, + "lengthMeters": 118.84894285138633, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.183098, + 11.6327606 + ], + [ + 48.1836324, + 11.6313723 + ] + ] + }, + { + "osmId": "289925226", + "name": null, + "lengthMeters": 2738.7431061580346, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1963617, + 11.504227 + ], + [ + 48.196726, + 11.5025909 + ], + [ + 48.1984756, + 11.4947305 + ], + [ + 48.1986244, + 11.4940193 + ], + [ + 48.198692, + 11.4936531 + ], + [ + 48.1987665, + 11.4931047 + ], + [ + 48.1988069, + 11.4926109 + ], + [ + 48.19883, + 11.4921606 + ], + [ + 48.1988293, + 11.4917151 + ], + [ + 48.1988237, + 11.4912996 + ], + [ + 48.1988096, + 11.4908113 + ], + [ + 48.1987799, + 11.4898418 + ], + [ + 48.1987729, + 11.4894658 + ], + [ + 48.1987781, + 11.4889862 + ], + [ + 48.1987954, + 11.488534 + ], + [ + 48.1988431, + 11.4879645 + ], + [ + 48.1988747, + 11.4876612 + ], + [ + 48.1989183, + 11.4873396 + ], + [ + 48.1990007, + 11.4868404 + ], + [ + 48.1991042, + 11.4863358 + ], + [ + 48.1995555, + 11.4842921 + ], + [ + 48.199976, + 11.4824443 + ], + [ + 48.2001756, + 11.4816956 + ], + [ + 48.200426, + 11.4808851 + ], + [ + 48.2012497, + 11.4785004 + ], + [ + 48.2022955, + 11.4754128 + ], + [ + 48.2024521, + 11.474915 + ], + [ + 48.2025995, + 11.4744043 + ], + [ + 48.2027219, + 11.4739392 + ], + [ + 48.2029005, + 11.4732177 + ], + [ + 48.2035305, + 11.4707039 + ], + [ + 48.2036984, + 11.4701392 + ], + [ + 48.2039353, + 11.4694331 + ] + ] + }, + { + "osmId": "290102784", + "name": null, + "lengthMeters": 223.95230834916225, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027425, + 13.4702536 + ], + [ + 52.5028543, + 13.469608 + ], + [ + 52.503028, + 13.4686799 + ], + [ + 52.5031334, + 13.4681153 + ], + [ + 52.5032098, + 13.4677056 + ], + [ + 52.5032925, + 13.4672624 + ], + [ + 52.5033253, + 13.4670866 + ] + ] + }, + { + "osmId": "290131714", + "name": null, + "lengthMeters": 151.33763948788894, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4326755, + 13.2635901 + ], + [ + 52.4319952, + 13.2616567 + ] + ] + }, + { + "osmId": "290131715", + "name": null, + "lengthMeters": 1328.3377527018938, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4366508, + 13.2749651 + ], + [ + 52.4369275, + 13.2757551 + ], + [ + 52.4372039, + 13.2765431 + ], + [ + 52.4375031, + 13.2773973 + ], + [ + 52.4382148, + 13.2794182 + ], + [ + 52.439306, + 13.2824836 + ], + [ + 52.4401674, + 13.2849078 + ], + [ + 52.4404226, + 13.2856219 + ], + [ + 52.4407081, + 13.2864276 + ], + [ + 52.4408607, + 13.2868555 + ], + [ + 52.4426417, + 13.2919192 + ] + ] + }, + { + "osmId": "290131717", + "name": null, + "lengthMeters": 158.708678257506, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4319952, + 13.2616567 + ], + [ + 52.4318126, + 13.2611344 + ], + [ + 52.4316426, + 13.2605915 + ], + [ + 52.4314911, + 13.2600325 + ], + [ + 52.4314332, + 13.2598057 + ], + [ + 52.4313744, + 13.2595606 + ], + [ + 52.4313728, + 13.2595535 + ] + ] + }, + { + "osmId": "290132421", + "name": null, + "lengthMeters": 207.86798287378343, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.430092, + 13.2546728 + ], + [ + 52.4300504, + 13.2544436 + ], + [ + 52.4300081, + 13.2541895 + ], + [ + 52.4299393, + 13.2536948 + ], + [ + 52.4298686, + 13.2529749 + ], + [ + 52.4298323, + 13.2522965 + ], + [ + 52.4298312, + 13.2518383 + ], + [ + 52.4298301, + 13.2516507 + ] + ] + }, + { + "osmId": "290155410", + "name": null, + "lengthMeters": 1149.4133248162746, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4438006, + 13.2953938 + ], + [ + 52.4434087, + 13.2942799 + ], + [ + 52.4428767, + 13.292772 + ], + [ + 52.4425964, + 13.291976 + ], + [ + 52.4409456, + 13.2872837 + ], + [ + 52.4395129, + 13.283216 + ], + [ + 52.4392647, + 13.2825199 + ], + [ + 52.4386469, + 13.2807609 + ], + [ + 52.4386292, + 13.2807109 + ] + ] + }, + { + "osmId": "290211322", + "name": null, + "lengthMeters": 94.1405990657194, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5093832, + 13.4378539 + ], + [ + 52.5094671, + 13.4376573 + ], + [ + 52.5097352, + 13.4370187 + ], + [ + 52.5097371, + 13.4370139 + ], + [ + 52.5097642, + 13.4369516 + ], + [ + 52.5098677, + 13.4367132 + ] + ] + }, + { + "osmId": "290305119", + "name": null, + "lengthMeters": 261.34955453108864, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353429, + 13.1854287 + ], + [ + 52.5353781, + 13.1860498 + ], + [ + 52.5354459, + 13.186862 + ], + [ + 52.5354835, + 13.1875173 + ], + [ + 52.5354985, + 13.1881621 + ], + [ + 52.5355005, + 13.188753 + ], + [ + 52.5354891, + 13.1892787 + ] + ] + }, + { + "osmId": "290305120", + "name": null, + "lengthMeters": 137.6101426883107, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5314456, + 13.2114751 + ], + [ + 52.5314235, + 13.2116584 + ], + [ + 52.5311941, + 13.213467 + ] + ] + }, + { + "osmId": "290305121", + "name": null, + "lengthMeters": 387.5101841552724, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290503, + 13.2327135 + ], + [ + 52.5293469, + 13.2297997 + ], + [ + 52.5296227, + 13.2270628 + ] + ] + }, + { + "osmId": "290305122", + "name": null, + "lengthMeters": 203.99539930550216, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307102, + 13.2162148 + ], + [ + 52.5307089, + 13.2162242 + ], + [ + 52.5305009, + 13.2177938 + ], + [ + 52.5303461, + 13.2190286 + ], + [ + 52.5303283, + 13.2191644 + ] + ] + }, + { + "osmId": "290305125", + "name": null, + "lengthMeters": 197.2309225372365, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5314613, + 13.21058 + ], + [ + 52.531447, + 13.210697 + ], + [ + 52.5314427, + 13.2107366 + ], + [ + 52.5312834, + 13.2119546 + ], + [ + 52.5310874, + 13.2134302 + ] + ] + }, + { + "osmId": "290305126", + "name": null, + "lengthMeters": 140.44998473709816, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310585, + 13.2136469 + ], + [ + 52.5307873, + 13.2156748 + ] + ] + }, + { + "osmId": "290305127", + "name": "SFS Oebisfelde\u2013Spandau", + "lengthMeters": 160.1955829923817, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5355577, + 13.1903644 + ], + [ + 52.5357209, + 13.1894567 + ], + [ + 52.5359515, + 13.1880862 + ] + ] + }, + { + "osmId": "290305128", + "name": null, + "lengthMeters": 287.3165189367121, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5311519, + 13.2134544 + ], + [ + 52.531174, + 13.2132814 + ], + [ + 52.5311843, + 13.2131971 + ], + [ + 52.5312369, + 13.2127903 + ], + [ + 52.5313886, + 13.2116001 + ], + [ + 52.5314839, + 13.2108484 + ], + [ + 52.5315016, + 13.2107207 + ], + [ + 52.5316787, + 13.2092961 + ] + ] + }, + { + "osmId": "290323872", + "name": null, + "lengthMeters": 806.4661800336024, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5387284, + 13.6319811 + ], + [ + 52.5389977, + 13.6304554 + ], + [ + 52.5390477, + 13.6301614 + ], + [ + 52.5390912, + 13.6298601 + ], + [ + 52.539125, + 13.6296072 + ], + [ + 52.5391982, + 13.6289563 + ], + [ + 52.5392347, + 13.6286442 + ], + [ + 52.5392611, + 13.6283816 + ], + [ + 52.5392987, + 13.6280102 + ], + [ + 52.5393406, + 13.6274633 + ], + [ + 52.5393627, + 13.6270507 + ], + [ + 52.5393737, + 13.6267301 + ], + [ + 52.5394819, + 13.6228366 + ], + [ + 52.5394819, + 13.6225971 + ], + [ + 52.539479, + 13.6223188 + ], + [ + 52.5394716, + 13.6220889 + ], + [ + 52.5394598, + 13.6219038 + ], + [ + 52.5394495, + 13.6217078 + ], + [ + 52.5394252, + 13.6214549 + ], + [ + 52.5393612, + 13.6208996 + ], + [ + 52.5392772, + 13.6202099 + ] + ] + }, + { + "osmId": "290324137", + "name": null, + "lengthMeters": 646.108689936942, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5391468, + 13.6202237 + ], + [ + 52.5392932, + 13.6214397 + ], + [ + 52.5393401, + 13.6219075 + ], + [ + 52.5393701, + 13.6224381 + ], + [ + 52.5393737, + 13.6230044 + ], + [ + 52.5393655, + 13.6241071 + ], + [ + 52.5393588, + 13.6246448 + ], + [ + 52.539333, + 13.6267295 + ], + [ + 52.5393002, + 13.6274554 + ], + [ + 52.5392596, + 13.628019 + ], + [ + 52.5391924, + 13.6286931 + ], + [ + 52.5390707, + 13.6297099 + ] + ] + }, + { + "osmId": "290324139", + "name": null, + "lengthMeters": 1509.8608422187779, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5324607, + 13.5930351 + ], + [ + 52.5323059, + 13.5928253 + ], + [ + 52.532143, + 13.5926517 + ], + [ + 52.531933, + 13.5924391 + ], + [ + 52.531742, + 13.5922739 + ], + [ + 52.53153, + 13.5921152 + ], + [ + 52.5312339, + 13.5919312 + ], + [ + 52.530936, + 13.5917652 + ], + [ + 52.5306343, + 13.5916027 + ], + [ + 52.5301422, + 13.5913391 + ], + [ + 52.5297556, + 13.5911279 + ], + [ + 52.5285282, + 13.5904678 + ], + [ + 52.5278154, + 13.5900844 + ], + [ + 52.5274122, + 13.5898847 + ], + [ + 52.5270534, + 13.5897246 + ], + [ + 52.5268115, + 13.5896266 + ], + [ + 52.5265644, + 13.5895392 + ], + [ + 52.5260409, + 13.5893516 + ], + [ + 52.5254779, + 13.5891595 + ], + [ + 52.5250728, + 13.5890156 + ], + [ + 52.5247524, + 13.5889093 + ], + [ + 52.524411, + 13.5888177 + ], + [ + 52.5240359, + 13.5887392 + ], + [ + 52.5234965, + 13.5886656 + ], + [ + 52.5228675, + 13.5886508 + ], + [ + 52.522542, + 13.5886656 + ], + [ + 52.5218086, + 13.5887555 + ], + [ + 52.5211015, + 13.5888253 + ], + [ + 52.5203565, + 13.5889158 + ], + [ + 52.5198359, + 13.5889698 + ], + [ + 52.519342, + 13.5889868 + ] + ] + }, + { + "osmId": "290407126", + "name": null, + "lengthMeters": 1044.8036781105955, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1605995, + 11.57508 + ], + [ + 48.1611394, + 11.5749849 + ], + [ + 48.1618304, + 11.5748644 + ], + [ + 48.1624174, + 11.5747671 + ], + [ + 48.1624861, + 11.5747569 + ], + [ + 48.1625587, + 11.5747457 + ], + [ + 48.1632738, + 11.5746116 + ], + [ + 48.1633786, + 11.5745939 + ], + [ + 48.1634584, + 11.5745768 + ], + [ + 48.1635735, + 11.5745577 + ], + [ + 48.1645011, + 11.5743831 + ], + [ + 48.164515, + 11.5743799 + ], + [ + 48.1645262, + 11.5743773 + ], + [ + 48.1647331, + 11.5743288 + ], + [ + 48.1650236, + 11.5742811 + ], + [ + 48.1659213, + 11.5741455 + ], + [ + 48.1668585, + 11.5740437 + ], + [ + 48.1669942, + 11.5740295 + ], + [ + 48.167067, + 11.5740208 + ], + [ + 48.1671413, + 11.5740116 + ], + [ + 48.1672306, + 11.5740028 + ], + [ + 48.167295, + 11.5739964 + ], + [ + 48.1683498, + 11.5738465 + ], + [ + 48.1699291, + 11.5736205 + ], + [ + 48.1699433, + 11.5736188 + ] + ] + }, + { + "osmId": "290407136", + "name": null, + "lengthMeters": 2135.7138693076945, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1600933, + 11.5749614 + ], + [ + 48.1600488, + 11.5749493 + ], + [ + 48.1599583, + 11.5749213 + ], + [ + 48.1598057, + 11.5748784 + ], + [ + 48.1596811, + 11.5748442 + ], + [ + 48.1596201, + 11.5748268 + ], + [ + 48.1595676, + 11.5748171 + ], + [ + 48.1595211, + 11.5748092 + ], + [ + 48.1594831, + 11.5748055 + ], + [ + 48.1594279, + 11.5747992 + ], + [ + 48.159372, + 11.5747995 + ], + [ + 48.159153, + 11.5748174 + ], + [ + 48.1591056, + 11.5748194 + ], + [ + 48.1587989, + 11.5748414 + ], + [ + 48.1581658, + 11.5749066 + ], + [ + 48.1580358, + 11.5749218 + ], + [ + 48.157826, + 11.5749463 + ], + [ + 48.1577143, + 11.5749614 + ], + [ + 48.1576432, + 11.5749684 + ], + [ + 48.157567, + 11.5749796 + ], + [ + 48.1573551, + 11.5750106 + ], + [ + 48.1570136, + 11.5750494 + ], + [ + 48.1560266, + 11.5752009 + ], + [ + 48.1554005, + 11.5752906 + ], + [ + 48.1553088, + 11.5753059 + ], + [ + 48.1552612, + 11.575314 + ], + [ + 48.1551576, + 11.5753317 + ], + [ + 48.1550805, + 11.575346 + ], + [ + 48.1547767, + 11.5753993 + ], + [ + 48.1545858, + 11.5754334 + ], + [ + 48.1545235, + 11.5754429 + ], + [ + 48.1544883, + 11.5754387 + ], + [ + 48.1544523, + 11.5754341 + ], + [ + 48.1544057, + 11.575415 + ], + [ + 48.1543631, + 11.5753901 + ], + [ + 48.1543478, + 11.5753811 + ], + [ + 48.1540033, + 11.5751606 + ], + [ + 48.1533662, + 11.5747543 + ], + [ + 48.1533061, + 11.574716 + ], + [ + 48.1525075, + 11.5742038 + ], + [ + 48.1521764, + 11.5739914 + ], + [ + 48.1517367, + 11.5737094 + ], + [ + 48.1512156, + 11.5733708 + ], + [ + 48.1510993, + 11.5732991 + ], + [ + 48.1510353, + 11.5732596 + ], + [ + 48.1509735, + 11.5732194 + ], + [ + 48.1500636, + 11.5726276 + ], + [ + 48.149142, + 11.5720254 + ], + [ + 48.1490197, + 11.5719487 + ], + [ + 48.1489689, + 11.5719158 + ], + [ + 48.1489016, + 11.571872 + ], + [ + 48.1482179, + 11.5714274 + ], + [ + 48.1481952, + 11.5714126 + ], + [ + 48.1479295, + 11.57124 + ], + [ + 48.1470402, + 11.5706616 + ], + [ + 48.1469747, + 11.570619 + ], + [ + 48.1468914, + 11.5705649 + ], + [ + 48.1468048, + 11.5705087 + ], + [ + 48.1465322, + 11.5703321 + ], + [ + 48.1461415, + 11.5700788 + ], + [ + 48.1459201, + 11.5699353 + ], + [ + 48.1457923, + 11.5698526 + ], + [ + 48.1456112, + 11.5697354 + ], + [ + 48.1452366, + 11.5694929 + ], + [ + 48.1451398, + 11.5694281 + ], + [ + 48.1451283, + 11.5694158 + ], + [ + 48.1451118, + 11.5693928 + ], + [ + 48.1450946, + 11.569369 + ], + [ + 48.1450734, + 11.5693303 + ], + [ + 48.1450563, + 11.5692909 + ], + [ + 48.1450398, + 11.5692467 + ], + [ + 48.1449297, + 11.5689668 + ], + [ + 48.1449068, + 11.5689042 + ], + [ + 48.1448795, + 11.5688591 + ], + [ + 48.1448517, + 11.5688231 + ], + [ + 48.1447984, + 11.5687781 + ], + [ + 48.1447325, + 11.5687477 + ], + [ + 48.1446833, + 11.5687426 + ], + [ + 48.144626, + 11.5687561 + ], + [ + 48.1446039, + 11.568763 + ], + [ + 48.1444029, + 11.568836 + ], + [ + 48.1443551, + 11.5688464 + ], + [ + 48.1443248, + 11.5688529 + ], + [ + 48.144274, + 11.5688484 + ], + [ + 48.144242, + 11.5688438 + ], + [ + 48.1436817, + 11.5684891 + ], + [ + 48.1427548, + 11.5679026 + ], + [ + 48.1426914, + 11.5678629 + ], + [ + 48.142635, + 11.5678361 + ], + [ + 48.1423577, + 11.5677523 + ], + [ + 48.1421182, + 11.5676885 + ] + ] + }, + { + "osmId": "290574615", + "name": null, + "lengthMeters": 522.6417777767933, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415205, + 11.5590906 + ], + [ + 48.1417009, + 11.5582768 + ], + [ + 48.1417764, + 11.5579433 + ], + [ + 48.141853, + 11.5576005 + ], + [ + 48.1419518, + 11.5571241 + ], + [ + 48.1419945, + 11.5568373 + ], + [ + 48.1420495, + 11.5565303 + ], + [ + 48.1421252, + 11.5561237 + ], + [ + 48.1422048, + 11.5556733 + ], + [ + 48.1422531, + 11.5553523 + ], + [ + 48.1422864, + 11.5550731 + ], + [ + 48.1423127, + 11.5547447 + ], + [ + 48.1423214, + 11.554452 + ], + [ + 48.1423211, + 11.5542141 + ], + [ + 48.1423098, + 11.5538798 + ], + [ + 48.142273, + 11.5535383 + ], + [ + 48.1422554, + 11.5534042 + ], + [ + 48.1421977, + 11.5530202 + ], + [ + 48.1421549, + 11.5527789 + ], + [ + 48.1420669, + 11.5522563 + ] + ] + }, + { + "osmId": "290574622", + "name": "Stammstrecke", + "lengthMeters": 214.92896784806135, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1414182, + 11.559123 + ], + [ + 48.1412632, + 11.559827 + ], + [ + 48.1411708, + 11.5602467 + ], + [ + 48.1409766, + 11.561102 + ], + [ + 48.1409739, + 11.561114 + ], + [ + 48.140973, + 11.5611176 + ], + [ + 48.1407943, + 11.5618644 + ] + ] + }, + { + "osmId": "290574630", + "name": null, + "lengthMeters": 165.22659899000865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1371526, + 11.6588572 + ], + [ + 48.1367846, + 11.6581133 + ], + [ + 48.1366118, + 11.6577653 + ], + [ + 48.1364381, + 11.6574236 + ], + [ + 48.13626, + 11.6570772 + ] + ] + }, + { + "osmId": "290574633", + "name": null, + "lengthMeters": 111.37090891763661, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1276066, + 11.605381 + ], + [ + 48.1277016, + 11.6055231 + ], + [ + 48.1282712, + 11.6063747 + ], + [ + 48.1283154, + 11.6064412 + ] + ] + }, + { + "osmId": "290574636", + "name": null, + "lengthMeters": 128.36748516278425, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1271261, + 11.6040038 + ], + [ + 48.1271109, + 11.6039846 + ], + [ + 48.1269496, + 11.60378 + ], + [ + 48.1267788, + 11.6035464 + ], + [ + 48.1266474, + 11.6033596 + ], + [ + 48.126527, + 11.6031733 + ], + [ + 48.1263045, + 11.6027927 + ] + ] + }, + { + "osmId": "290574641", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 1584.1564599560347, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1362127, + 11.6568394 + ], + [ + 48.1358613, + 11.656037 + ], + [ + 48.1355313, + 11.6553165 + ], + [ + 48.1353355, + 11.6548901 + ], + [ + 48.1351272, + 11.6544467 + ], + [ + 48.1349546, + 11.6540856 + ], + [ + 48.1346672, + 11.6535166 + ], + [ + 48.1345965, + 11.6533797 + ], + [ + 48.1344738, + 11.6531418 + ], + [ + 48.1342313, + 11.6526776 + ], + [ + 48.1341717, + 11.6525635 + ], + [ + 48.1339999, + 11.6522118 + ], + [ + 48.1339031, + 11.6520003 + ], + [ + 48.1337189, + 11.6515588 + ], + [ + 48.1336715, + 11.6514323 + ], + [ + 48.1336224, + 11.651301 + ], + [ + 48.1335438, + 11.6510714 + ], + [ + 48.1334677, + 11.6508421 + ], + [ + 48.1333795, + 11.6505139 + ], + [ + 48.1332753, + 11.6501055 + ], + [ + 48.1332319, + 11.6498994 + ], + [ + 48.1331751, + 11.649601 + ], + [ + 48.1331188, + 11.6492428 + ], + [ + 48.1330783, + 11.6489406 + ], + [ + 48.1330593, + 11.6487511 + ], + [ + 48.1330472, + 11.6486301 + ], + [ + 48.1330215, + 11.6482376 + ], + [ + 48.1330028, + 11.6475268 + ], + [ + 48.1330188, + 11.6469711 + ], + [ + 48.1330837, + 11.6462214 + ], + [ + 48.1331221, + 11.6458799 + ], + [ + 48.1331537, + 11.6455993 + ], + [ + 48.1335536, + 11.6426359 + ], + [ + 48.1335562, + 11.642617 + ], + [ + 48.1337232, + 11.6414253 + ], + [ + 48.1338213, + 11.6407447 + ], + [ + 48.1339645, + 11.6398449 + ], + [ + 48.1339815, + 11.639735 + ], + [ + 48.134187, + 11.638525 + ], + [ + 48.134317, + 11.6377641 + ], + [ + 48.1344219, + 11.6371027 + ] + ] + }, + { + "osmId": "290607343", + "name": null, + "lengthMeters": 388.67846019947103, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1287588, + 11.6081645 + ], + [ + 48.1286603, + 11.6080426 + ], + [ + 48.1283817, + 11.6076562 + ], + [ + 48.1272394, + 11.60595 + ], + [ + 48.1262739, + 11.6044832 + ] + ] + }, + { + "osmId": "290607349", + "name": null, + "lengthMeters": 115.17225404744084, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1351452, + 11.6323872 + ], + [ + 48.1351522, + 11.63232 + ], + [ + 48.1351961, + 11.6318957 + ], + [ + 48.1352475, + 11.6314002 + ], + [ + 48.1352993, + 11.6308525 + ] + ] + }, + { + "osmId": "290607363", + "name": null, + "lengthMeters": 104.66118752469647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1291454, + 11.6071837 + ], + [ + 48.1289459, + 11.6069229 + ], + [ + 48.1287596, + 11.6066611 + ], + [ + 48.1285356, + 11.6063182 + ], + [ + 48.1285306, + 11.6063108 + ], + [ + 48.1284638, + 11.6062122 + ] + ] + }, + { + "osmId": "290607365", + "name": null, + "lengthMeters": 122.26231950318241, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1285009, + 11.6063692 + ], + [ + 48.1284793, + 11.6063374 + ], + [ + 48.1284298, + 11.6062646 + ], + [ + 48.1277234, + 11.6052044 + ] + ] + }, + { + "osmId": "290607369", + "name": null, + "lengthMeters": 1477.3871968877254, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.134388, + 11.6370891 + ], + [ + 48.1342827, + 11.6377495 + ], + [ + 48.134152, + 11.6385098 + ], + [ + 48.1339455, + 11.6397205 + ], + [ + 48.1339277, + 11.6398334 + ], + [ + 48.1337859, + 11.6407324 + ], + [ + 48.1336977, + 11.6413697 + ], + [ + 48.1335408, + 11.6424612 + ], + [ + 48.1335381, + 11.6424811 + ], + [ + 48.1331149, + 11.6455913 + ], + [ + 48.1330829, + 11.6458713 + ], + [ + 48.1330438, + 11.6462139 + ], + [ + 48.1329821, + 11.6469641 + ], + [ + 48.1329669, + 11.6475226 + ], + [ + 48.1329832, + 11.6482419 + ], + [ + 48.1330112, + 11.6486373 + ], + [ + 48.1330235, + 11.6487604 + ], + [ + 48.1330423, + 11.6489497 + ], + [ + 48.1330829, + 11.649256 + ], + [ + 48.1331399, + 11.6496167 + ], + [ + 48.1331975, + 11.6499162 + ], + [ + 48.1332421, + 11.6501229 + ], + [ + 48.1333454, + 11.6505342 + ], + [ + 48.133435, + 11.6508627 + ], + [ + 48.1334732, + 11.6509797 + ], + [ + 48.133511, + 11.6510956 + ], + [ + 48.1335922, + 11.6513251 + ], + [ + 48.1336407, + 11.6514585 + ], + [ + 48.133688, + 11.6515887 + ], + [ + 48.1338751, + 11.6520268 + ], + [ + 48.1339722, + 11.6522416 + ], + [ + 48.1341433, + 11.6525967 + ], + [ + 48.134442, + 11.6531717 + ], + [ + 48.1345644, + 11.6534122 + ], + [ + 48.1346153, + 11.6535123 + ], + [ + 48.1350928, + 11.6544816 + ], + [ + 48.135298, + 11.6549306 + ], + [ + 48.1356174, + 11.6556501 + ] + ] + }, + { + "osmId": "290607370", + "name": null, + "lengthMeters": 435.2524311935611, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1354082, + 11.6317603 + ], + [ + 48.1355601, + 11.6305499 + ], + [ + 48.135623, + 11.6299781 + ], + [ + 48.1356495, + 11.6296994 + ], + [ + 48.1356709, + 11.6294312 + ], + [ + 48.1356928, + 11.6291446 + ], + [ + 48.135706, + 11.6288073 + ], + [ + 48.1357186, + 11.6281802 + ], + [ + 48.1357142, + 11.6278126 + ], + [ + 48.1357129, + 11.6277034 + ], + [ + 48.1356998, + 11.6272741 + ], + [ + 48.1356609, + 11.6266986 + ], + [ + 48.1355836, + 11.6259437 + ] + ] + }, + { + "osmId": "290607378", + "name": null, + "lengthMeters": 1111.0116280508323, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1284756, + 11.6563748 + ], + [ + 48.129751, + 11.6537532 + ], + [ + 48.1301487, + 11.6529219 + ], + [ + 48.1305305, + 11.652132 + ], + [ + 48.1306819, + 11.6518189 + ], + [ + 48.1308931, + 11.6513819 + ], + [ + 48.1310069, + 11.6511353 + ], + [ + 48.1311118, + 11.6509078 + ], + [ + 48.1313393, + 11.6504042 + ], + [ + 48.1315786, + 11.649809 + ], + [ + 48.1317942, + 11.649196 + ], + [ + 48.1319793, + 11.6485575 + ], + [ + 48.1322526, + 11.6475579 + ], + [ + 48.1325751, + 11.6463523 + ], + [ + 48.1328535, + 11.6453323 + ], + [ + 48.1330437, + 11.6447219 + ], + [ + 48.133158, + 11.644233 + ], + [ + 48.1332151, + 11.6439308 + ], + [ + 48.1332899, + 11.6433956 + ] + ] + }, + { + "osmId": "290607384", + "name": null, + "lengthMeters": 274.7244870767779, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1298418, + 11.6086484 + ], + [ + 48.1300645, + 11.6089721 + ], + [ + 48.1302943, + 11.6093006 + ], + [ + 48.130542, + 11.6096155 + ], + [ + 48.1309674, + 11.6101487 + ], + [ + 48.131709, + 11.6110698 + ] + ] + }, + { + "osmId": "290736428", + "name": null, + "lengthMeters": 91.04259114759668, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4775949, + 13.3313059 + ], + [ + 52.477595, + 13.3313163 + ], + [ + 52.4775971, + 13.3316802 + ], + [ + 52.477602, + 13.33205 + ], + [ + 52.4776126, + 13.3323511 + ], + [ + 52.4776273, + 13.3326486 + ] + ] + }, + { + "osmId": "290736429", + "name": null, + "lengthMeters": 135.4473190602823, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777085, + 13.3308441 + ], + [ + 52.4777071, + 13.3305473 + ], + [ + 52.477707, + 13.3302905 + ], + [ + 52.4777053, + 13.3298721 + ], + [ + 52.4777023, + 13.3289611 + ], + [ + 52.4777012, + 13.3288442 + ] + ] + }, + { + "osmId": "290738873", + "name": null, + "lengthMeters": 189.08009392171618, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776908, + 13.3278065 + ], + [ + 52.4776861, + 13.3273691 + ], + [ + 52.4776821, + 13.3269979 + ], + [ + 52.4776743, + 13.326233 + ], + [ + 52.4776651, + 13.3251822 + ], + [ + 52.4776637, + 13.325015 + ] + ] + }, + { + "osmId": "290738874", + "name": null, + "lengthMeters": 305.7531513016988, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776637, + 13.325015 + ], + [ + 52.4776634, + 13.3249915 + ], + [ + 52.4776636, + 13.3245589 + ], + [ + 52.4776755, + 13.3224083 + ], + [ + 52.4776872, + 13.3205006 + ] + ] + }, + { + "osmId": "290738875", + "name": null, + "lengthMeters": 122.81055325732237, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4776131, + 13.3263389 + ], + [ + 52.4776089, + 13.3270515 + ], + [ + 52.4776057, + 13.3273757 + ], + [ + 52.4776024, + 13.3277227 + ], + [ + 52.4775992, + 13.3281143 + ], + [ + 52.4775992, + 13.3281521 + ] + ] + }, + { + "osmId": "290741153", + "name": null, + "lengthMeters": 217.7426436323691, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4892052, + 13.2993319 + ], + [ + 52.4890698, + 13.2995107 + ], + [ + 52.4884065, + 13.3004078 + ], + [ + 52.4882486, + 13.3006174 + ], + [ + 52.4881789, + 13.3007118 + ], + [ + 52.4879531, + 13.3010137 + ], + [ + 52.4879301, + 13.3010445 + ], + [ + 52.4876899, + 13.3013688 + ] + ] + }, + { + "osmId": "290741156", + "name": null, + "lengthMeters": 187.21745507135728, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.495338, + 13.2915836 + ], + [ + 52.4953712, + 13.2915398 + ], + [ + 52.4954627, + 13.2914171 + ], + [ + 52.4955281, + 13.2913305 + ], + [ + 52.4956817, + 13.2911234 + ], + [ + 52.4956857, + 13.2911182 + ], + [ + 52.4960144, + 13.2906869 + ], + [ + 52.4965244, + 13.2899568 + ], + [ + 52.4966219, + 13.2898172 + ], + [ + 52.4966283, + 13.2898078 + ] + ] + }, + { + "osmId": "290741159", + "name": null, + "lengthMeters": 135.29867596226384, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.495151, + 13.2915788 + ], + [ + 52.49421, + 13.2928458 + ] + ] + }, + { + "osmId": "290741851", + "name": null, + "lengthMeters": 361.3763611058028, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969873, + 13.2892861 + ], + [ + 52.4971289, + 13.2890857 + ], + [ + 52.4973181, + 13.2888134 + ], + [ + 52.4973695, + 13.2887395 + ], + [ + 52.4974749, + 13.2885847 + ], + [ + 52.497557, + 13.288473 + ], + [ + 52.4977918, + 13.2881292 + ], + [ + 52.4979281, + 13.2879376 + ], + [ + 52.4980612, + 13.2877545 + ], + [ + 52.4983158, + 13.2874099 + ], + [ + 52.4984521, + 13.2872189 + ], + [ + 52.4985819, + 13.2870299 + ], + [ + 52.4986833, + 13.2868751 + ], + [ + 52.4988055, + 13.2866819 + ], + [ + 52.4989827, + 13.2863799 + ], + [ + 52.499382, + 13.285685 + ] + ] + }, + { + "osmId": "290872961", + "name": null, + "lengthMeters": 160.23880421565352, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5012025, + 13.285155 + ], + [ + 52.5011807, + 13.2850872 + ], + [ + 52.5011768, + 13.2850751 + ], + [ + 52.5011168, + 13.2848827 + ], + [ + 52.5009794, + 13.2844418 + ], + [ + 52.5005966, + 13.2832135 + ], + [ + 52.5005823, + 13.2831673 + ], + [ + 52.5005455, + 13.2830481 + ] + ] + }, + { + "osmId": "290872962", + "name": null, + "lengthMeters": 176.25544147340256, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5012106, + 13.2855144 + ], + [ + 52.5014961, + 13.2864231 + ], + [ + 52.5015762, + 13.2866912 + ], + [ + 52.5016392, + 13.2869325 + ], + [ + 52.501709, + 13.2872217 + ], + [ + 52.5018708, + 13.287879 + ] + ] + }, + { + "osmId": "290879012", + "name": null, + "lengthMeters": 186.88269045932603, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995272, + 13.2806683 + ], + [ + 52.4995652, + 13.2808022 + ], + [ + 52.4996033, + 13.2809363 + ], + [ + 52.4996786, + 13.2811953 + ], + [ + 52.4997609, + 13.2814672 + ], + [ + 52.499819, + 13.2816463 + ], + [ + 52.4998953, + 13.2818736 + ], + [ + 52.4999586, + 13.2820777 + ], + [ + 52.5000246, + 13.2823027 + ], + [ + 52.5001516, + 13.2827127 + ], + [ + 52.5001834, + 13.2828115 + ], + [ + 52.5002897, + 13.2831278 + ] + ] + }, + { + "osmId": "290879016", + "name": null, + "lengthMeters": 134.23884621448536, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.499734, + 13.2808066 + ], + [ + 52.5002909, + 13.2825661 + ] + ] + }, + { + "osmId": "290880791", + "name": null, + "lengthMeters": 1062.6625345347898, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992406, + 13.2686626 + ], + [ + 52.4993377, + 13.2684544 + ], + [ + 52.4994934, + 13.2681466 + ], + [ + 52.4995668, + 13.2680179 + ], + [ + 52.49964, + 13.2678961 + ], + [ + 52.4997282, + 13.2677628 + ], + [ + 52.4998017, + 13.2676595 + ], + [ + 52.4999005, + 13.2675233 + ], + [ + 52.5000103, + 13.2673807 + ], + [ + 52.5001177, + 13.267243 + ], + [ + 52.5002796, + 13.2670387 + ], + [ + 52.5004535, + 13.2668292 + ], + [ + 52.5005502, + 13.2667134 + ], + [ + 52.5006655, + 13.2665708 + ], + [ + 52.5008092, + 13.2663959 + ], + [ + 52.5009249, + 13.2662564 + ], + [ + 52.5010418, + 13.2661129 + ], + [ + 52.5011843, + 13.265938 + ], + [ + 52.5012894, + 13.2658121 + ], + [ + 52.5013853, + 13.2657083 + ], + [ + 52.5014725, + 13.2656194 + ], + [ + 52.5015811, + 13.2655172 + ], + [ + 52.5017132, + 13.2654113 + ], + [ + 52.5017844, + 13.265358 + ], + [ + 52.501896, + 13.2652867 + ], + [ + 52.5020158, + 13.2652212 + ], + [ + 52.5022232, + 13.2651339 + ], + [ + 52.5022892, + 13.2651023 + ], + [ + 52.502687, + 13.2649433 + ], + [ + 52.5030822, + 13.2648042 + ], + [ + 52.503444, + 13.2646768 + ], + [ + 52.5036567, + 13.2646051 + ], + [ + 52.5038459, + 13.2645403 + ], + [ + 52.5041011, + 13.2644566 + ], + [ + 52.504286, + 13.2643913 + ], + [ + 52.5044574, + 13.2643168 + ], + [ + 52.5046036, + 13.2642593 + ], + [ + 52.504771, + 13.2641908 + ], + [ + 52.5049184, + 13.2641179 + ], + [ + 52.5050616, + 13.2640379 + ], + [ + 52.505192, + 13.2639607 + ], + [ + 52.505343, + 13.2638629 + ], + [ + 52.5054624, + 13.2637764 + ], + [ + 52.5055715, + 13.2636862 + ], + [ + 52.5056949, + 13.2635826 + ], + [ + 52.5057932, + 13.2635052 + ], + [ + 52.5059668, + 13.2633375 + ], + [ + 52.5061011, + 13.2631919 + ], + [ + 52.5062184, + 13.2630595 + ], + [ + 52.5063168, + 13.2629389 + ], + [ + 52.5064301, + 13.2627831 + ], + [ + 52.5065365, + 13.2626357 + ], + [ + 52.5066285, + 13.2625018 + ], + [ + 52.5066917, + 13.2624148 + ], + [ + 52.5068046, + 13.2622392 + ], + [ + 52.5068932, + 13.2620891 + ], + [ + 52.5069855, + 13.2619363 + ], + [ + 52.5070773, + 13.2617708 + ], + [ + 52.5071714, + 13.2615928 + ], + [ + 52.5072403, + 13.2614589 + ], + [ + 52.5073195, + 13.2613054 + ], + [ + 52.5073645, + 13.2612149 + ] + ] + }, + { + "osmId": "291228864", + "name": "Berliner Ringbahn", + "lengthMeters": 694.6817795399493, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321861, + 13.3148659 + ], + [ + 52.532547, + 13.3175183 + ], + [ + 52.5328376, + 13.3196814 + ], + [ + 52.5329809, + 13.3207735 + ], + [ + 52.5330976, + 13.3216163 + ], + [ + 52.5332679, + 13.3230247 + ], + [ + 52.5333503, + 13.3237064 + ], + [ + 52.5334945, + 13.3249077 + ] + ] + }, + { + "osmId": "291228865", + "name": "Berliner Ringbahn", + "lengthMeters": 185.03895739031225, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532433, + 13.3164026 + ], + [ + 52.5322827, + 13.3152632 + ], + [ + 52.5322114, + 13.3147421 + ], + [ + 52.5322108, + 13.3147378 + ], + [ + 52.5321388, + 13.3142127 + ], + [ + 52.5320982, + 13.3139056 + ], + [ + 52.5320726, + 13.313732 + ] + ] + }, + { + "osmId": "291229018", + "name": "Berliner Ringbahn", + "lengthMeters": 86.34121682093127, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532601, + 13.3176488 + ], + [ + 52.5325846, + 13.3175378 + ], + [ + 52.532433, + 13.3164026 + ] + ] + }, + { + "osmId": "291229471", + "name": null, + "lengthMeters": 90.57317242878732, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5329265, + 13.3196484 + ], + [ + 52.5330223, + 13.3203586 + ], + [ + 52.5330848, + 13.3208219 + ], + [ + 52.5331028, + 13.3209557 + ] + ] + }, + { + "osmId": "291231351", + "name": "Berliner Ringbahn", + "lengthMeters": 301.7244698177538, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353047, + 13.3391934 + ], + [ + 52.5354206, + 13.3401416 + ], + [ + 52.5354335, + 13.340249 + ], + [ + 52.5355271, + 13.3411021 + ], + [ + 52.5356929, + 13.3427571 + ], + [ + 52.5357281, + 13.3431773 + ], + [ + 52.5357623, + 13.3435895 + ] + ] + }, + { + "osmId": "291231352", + "name": "Berliner Ringbahn", + "lengthMeters": 325.2484117982028, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5332253, + 13.3223464 + ], + [ + 52.5330204, + 13.3207547 + ], + [ + 52.5328689, + 13.3196645 + ], + [ + 52.532601, + 13.3176488 + ] + ] + }, + { + "osmId": "291252179", + "name": null, + "lengthMeters": 334.8484762969965, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1924134, + 11.5999069 + ], + [ + 48.1925926, + 11.6001256 + ], + [ + 48.1927596, + 11.6002932 + ], + [ + 48.1928096, + 11.6003318 + ], + [ + 48.1928521, + 11.6003678 + ], + [ + 48.1929014, + 11.6004049 + ], + [ + 48.1929993, + 11.6004847 + ], + [ + 48.1931023, + 11.600555 + ], + [ + 48.1935263, + 11.6007765 + ], + [ + 48.193709, + 11.6008668 + ], + [ + 48.1941045, + 11.6010664 + ], + [ + 48.1947527, + 11.6013892 + ], + [ + 48.1951842, + 11.6015963 + ] + ] + }, + { + "osmId": "291252246", + "name": null, + "lengthMeters": 387.2061075526076, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1849404, + 11.4700409 + ], + [ + 48.1857164, + 11.4697838 + ], + [ + 48.1867098, + 11.469439 + ], + [ + 48.1872823, + 11.4692253 + ], + [ + 48.1883256, + 11.4688189 + ] + ] + }, + { + "osmId": "291252247", + "name": null, + "lengthMeters": 655.6930674614608, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.190541, + 11.5844579 + ], + [ + 48.1905501, + 11.585674 + ], + [ + 48.1905633, + 11.5896923 + ], + [ + 48.190598, + 11.5912884 + ], + [ + 48.1906474, + 11.5933009 + ] + ] + }, + { + "osmId": "291252248", + "name": null, + "lengthMeters": 543.3201667994214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1902415, + 11.557983 + ], + [ + 48.1902784, + 11.5612759 + ], + [ + 48.1903041, + 11.5634204 + ], + [ + 48.190324, + 11.5651946 + ], + [ + 48.1903253, + 11.5653113 + ] + ] + }, + { + "osmId": "291342456", + "name": null, + "lengthMeters": 117.8504437376467, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.548974, + 13.38671 + ], + [ + 52.5489716, + 13.386695 + ], + [ + 52.5489651, + 13.3866564 + ], + [ + 52.5488651, + 13.3860567 + ], + [ + 52.5487748, + 13.3855633 + ], + [ + 52.5486575, + 13.3851228 + ], + [ + 52.5486393, + 13.3850602 + ] + ] + }, + { + "osmId": "291478117", + "name": null, + "lengthMeters": 660.9380465058564, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347511, + 11.6363722 + ], + [ + 48.1347761, + 11.6369102 + ], + [ + 48.1348317, + 11.6381049 + ], + [ + 48.1348352, + 11.6385249 + ], + [ + 48.1348137, + 11.638946 + ], + [ + 48.1346651, + 11.6403998 + ], + [ + 48.1344235, + 11.6427398 + ], + [ + 48.1343108, + 11.6438287 + ], + [ + 48.134232, + 11.6443786 + ], + [ + 48.1341505, + 11.6448118 + ], + [ + 48.1340781, + 11.6451698 + ] + ] + }, + { + "osmId": "291478132", + "name": null, + "lengthMeters": 601.4420252718093, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347922, + 11.6363872 + ], + [ + 48.1348639, + 11.6380003 + ], + [ + 48.1348782, + 11.6383946 + ], + [ + 48.1348782, + 11.6387245 + ], + [ + 48.1347761, + 11.6397239 + ], + [ + 48.1345326, + 11.642103 + ], + [ + 48.1343573, + 11.6437992 + ], + [ + 48.1342857, + 11.6444188 + ] + ] + }, + { + "osmId": "291478134", + "name": null, + "lengthMeters": 228.42957105920465, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340816, + 11.647266 + ], + [ + 48.1339886, + 11.6475999 + ], + [ + 48.1339266, + 11.6478058 + ], + [ + 48.1338453, + 11.6481407 + ], + [ + 48.1337863, + 11.6485253 + ], + [ + 48.1337684, + 11.6487908 + ], + [ + 48.1337541, + 11.6494024 + ], + [ + 48.1337612, + 11.6496384 + ], + [ + 48.1337772, + 11.6502623 + ] + ] + }, + { + "osmId": "291628670", + "name": null, + "lengthMeters": 120.68701500077974, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6248042, + 13.4782006 + ], + [ + 52.6245619, + 13.478221 + ], + [ + 52.6242061, + 13.4782039 + ], + [ + 52.6239665, + 13.4781666 + ], + [ + 52.6237232, + 13.4781053 + ] + ] + }, + { + "osmId": "291657921", + "name": null, + "lengthMeters": 125.82787997073021, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6092691, + 13.4630459 + ], + [ + 52.6094883, + 13.4632531 + ], + [ + 52.609589, + 13.4633536 + ], + [ + 52.6097161, + 13.4634823 + ], + [ + 52.6099385, + 13.4637237 + ], + [ + 52.6102223, + 13.4640483 + ] + ] + }, + { + "osmId": "291670884", + "name": null, + "lengthMeters": 214.99705159778318, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5268785, + 13.3707988 + ], + [ + 52.5269899, + 13.3711599 + ], + [ + 52.527113, + 13.3715658 + ], + [ + 52.5272156, + 13.371898 + ], + [ + 52.5277496, + 13.3736361 + ] + ] + }, + { + "osmId": "291670885", + "name": null, + "lengthMeters": 188.2629603086893, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5304827, + 13.3827265 + ], + [ + 52.5302986, + 13.3820913 + ], + [ + 52.5302828, + 13.3820268 + ], + [ + 52.5302703, + 13.3819686 + ], + [ + 52.5302542, + 13.381896 + ], + [ + 52.5302358, + 13.3818032 + ], + [ + 52.5302169, + 13.3817104 + ], + [ + 52.5301982, + 13.3816306 + ], + [ + 52.5301791, + 13.3815498 + ], + [ + 52.5301651, + 13.3815009 + ], + [ + 52.5301427, + 13.3814242 + ], + [ + 52.5299058, + 13.380636 + ], + [ + 52.5298026, + 13.3802869 + ], + [ + 52.5297774, + 13.3801993 + ] + ] + }, + { + "osmId": "291670886", + "name": null, + "lengthMeters": 387.75361459689697, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5254555, + 13.3660771 + ], + [ + 52.5254368, + 13.3660153 + ], + [ + 52.5254206, + 13.3659656 + ], + [ + 52.5253366, + 13.3656791 + ], + [ + 52.525254, + 13.3654263 + ], + [ + 52.5251476, + 13.3650808 + ], + [ + 52.5251168, + 13.3649809 + ], + [ + 52.5245307, + 13.3630755 + ], + [ + 52.5244669, + 13.3628683 + ], + [ + 52.5244183, + 13.3627105 + ], + [ + 52.5242203, + 13.3620668 + ], + [ + 52.5241304, + 13.361777 + ], + [ + 52.5238787, + 13.3609652 + ] + ] + }, + { + "osmId": "291670890", + "name": null, + "lengthMeters": 230.34971455977157, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5278783, + 13.3740768 + ], + [ + 52.5279489, + 13.3743115 + ], + [ + 52.5279559, + 13.3743341 + ], + [ + 52.52797, + 13.3743781 + ], + [ + 52.5282037, + 13.3751724 + ], + [ + 52.5284392, + 13.3759832 + ], + [ + 52.5285203, + 13.3762625 + ], + [ + 52.5287568, + 13.3770736 + ], + [ + 52.5287782, + 13.3771438 + ] + ] + }, + { + "osmId": "291678398", + "name": "Isartalbahn", + "lengthMeters": 1789.8403499805047, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.05827, + 11.5212735 + ], + [ + 48.0581992, + 11.5212184 + ], + [ + 48.0580989, + 11.52114 + ], + [ + 48.0579336, + 11.5210107 + ], + [ + 48.0576936, + 11.520823 + ], + [ + 48.0563866, + 11.5198005 + ], + [ + 48.0551556, + 11.5188464 + ], + [ + 48.0545696, + 11.5183922 + ], + [ + 48.0545378, + 11.5183675 + ], + [ + 48.0545001, + 11.518339 + ], + [ + 48.054057, + 11.517993 + ], + [ + 48.0511291, + 11.5157069 + ], + [ + 48.0499554, + 11.5147955 + ], + [ + 48.0485486, + 11.5136993 + ], + [ + 48.0478443, + 11.5131502 + ], + [ + 48.0463715, + 11.5119953 + ], + [ + 48.0462511, + 11.5119009 + ], + [ + 48.0461451, + 11.5118189 + ], + [ + 48.04547, + 11.5112964 + ], + [ + 48.0448095, + 11.5107487 + ], + [ + 48.0447544, + 11.5107039 + ], + [ + 48.0447214, + 11.5106771 + ], + [ + 48.044676, + 11.5106401 + ], + [ + 48.0440099, + 11.5101054 + ] + ] + }, + { + "osmId": "291678399", + "name": "Isartalbahn", + "lengthMeters": 138.55235941971307, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.066936, + 11.5280971 + ], + [ + 48.068042, + 11.5289559 + ] + ] + }, + { + "osmId": "292154031", + "name": null, + "lengthMeters": 597.9676655580962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5546601, + 9.9864211 + ], + [ + 53.5544697, + 9.9856863 + ], + [ + 53.5543181, + 9.9852627 + ], + [ + 53.5541817, + 9.9849785 + ], + [ + 53.5541127, + 9.9848347 + ], + [ + 53.553861, + 9.9843842 + ], + [ + 53.5536437, + 9.9840902 + ], + [ + 53.5534837, + 9.9839151 + ], + [ + 53.5533453, + 9.9837637 + ], + [ + 53.5532223, + 9.9836523 + ], + [ + 53.5530209, + 9.9834907 + ], + [ + 53.5527973, + 9.9833608 + ], + [ + 53.5524953, + 9.9832179 + ], + [ + 53.5522423, + 9.9831469 + ], + [ + 53.5520483, + 9.9831172 + ], + [ + 53.5517929, + 9.983102 + ], + [ + 53.5515194, + 9.9831604 + ], + [ + 53.5511655, + 9.9832708 + ], + [ + 53.5508181, + 9.9834362 + ], + [ + 53.5502026, + 9.9838472 + ] + ] + }, + { + "osmId": "292154032", + "name": null, + "lengthMeters": 2271.004138628121, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5490166, + 9.9844237 + ], + [ + 53.5489216, + 9.984432 + ], + [ + 53.5487924, + 9.9844432 + ], + [ + 53.5485832, + 9.9844294 + ], + [ + 53.5483883, + 9.9843908 + ], + [ + 53.5481457, + 9.9843143 + ], + [ + 53.5478845, + 9.9841901 + ], + [ + 53.5477908, + 9.9841354 + ], + [ + 53.5476695, + 9.9840645 + ], + [ + 53.546989, + 9.983548 + ], + [ + 53.5466253, + 9.9832834 + ], + [ + 53.5462532, + 9.9830497 + ], + [ + 53.5461884, + 9.9830173 + ], + [ + 53.5460715, + 9.9829589 + ], + [ + 53.5459214, + 9.9829026 + ], + [ + 53.5456533, + 9.9828224 + ], + [ + 53.5454138, + 9.9827955 + ], + [ + 53.5451937, + 9.9827978 + ], + [ + 53.5448532, + 9.9828346 + ], + [ + 53.5446615, + 9.9828846 + ], + [ + 53.5445619, + 9.9829106 + ], + [ + 53.5441985, + 9.9831057 + ], + [ + 53.5439933, + 9.9832288 + ], + [ + 53.543809, + 9.983375 + ], + [ + 53.543645, + 9.9835317 + ], + [ + 53.543465, + 9.983722 + ], + [ + 53.5432658, + 9.9839664 + ], + [ + 53.5431117, + 9.9841643 + ], + [ + 53.542546, + 9.9849917 + ], + [ + 53.5424014, + 9.985237 + ], + [ + 53.5420049, + 9.9859096 + ], + [ + 53.5418057, + 9.986257 + ], + [ + 53.5414215, + 9.986992 + ], + [ + 53.5410563, + 9.9877647 + ], + [ + 53.5407662, + 9.9884401 + ], + [ + 53.5405615, + 9.9890062 + ], + [ + 53.5404178, + 9.9894864 + ], + [ + 53.5403417, + 9.9897871 + ], + [ + 53.5402787, + 9.9900704 + ], + [ + 53.5401569, + 9.9906845 + ], + [ + 53.540082, + 9.9912168 + ], + [ + 53.5400317, + 9.991733 + ], + [ + 53.5400242, + 9.9918095 + ], + [ + 53.5399959, + 9.9924908 + ], + [ + 53.5399946, + 9.9929105 + ], + [ + 53.5400137, + 9.9933421 + ], + [ + 53.5400297, + 9.9937039 + ], + [ + 53.5400524, + 9.9941325 + ], + [ + 53.5401023, + 9.9949076 + ], + [ + 53.5402067, + 9.9964841 + ], + [ + 53.5402379, + 9.9969547 + ], + [ + 53.5403409, + 9.9983502 + ], + [ + 53.5403808, + 9.9988914 + ], + [ + 53.5403859, + 9.9989608 + ], + [ + 53.5404781, + 10.0000967 + ], + [ + 53.5407075, + 10.003651 + ], + [ + 53.5407247, + 10.0040478 + ], + [ + 53.5407296, + 10.004463 + ], + [ + 53.5407275, + 10.0048365 + ], + [ + 53.5406956, + 10.0056616 + ], + [ + 53.5406786, + 10.0059409 + ], + [ + 53.5406654, + 10.0060866 + ] + ] + }, + { + "osmId": "292154033", + "name": null, + "lengthMeters": 137.79582005675366, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502026, + 9.9838472 + ], + [ + 53.5500987, + 9.9839219 + ], + [ + 53.5499395, + 9.9840364 + ], + [ + 53.5495641, + 9.9842406 + ], + [ + 53.5492668, + 9.9843581 + ], + [ + 53.5490166, + 9.9844237 + ] + ] + }, + { + "osmId": "292154034", + "name": null, + "lengthMeters": 174.03652602317766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5544758, + 9.9864442 + ], + [ + 53.5545672, + 9.9869989 + ], + [ + 53.5546044, + 9.9874073 + ], + [ + 53.5546135, + 9.9877534 + ], + [ + 53.5546063, + 9.9881981 + ], + [ + 53.5545796, + 9.9886235 + ], + [ + 53.5545339, + 9.9890433 + ] + ] + }, + { + "osmId": "292154035", + "name": null, + "lengthMeters": 190.97718379795776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5547306, + 9.9892746 + ], + [ + 53.5547721, + 9.9889546 + ], + [ + 53.5548009, + 9.9886036 + ], + [ + 53.5548114, + 9.9883691 + ], + [ + 53.5548102, + 9.9879463 + ], + [ + 53.554799, + 9.9875188 + ], + [ + 53.5547577, + 9.9870837 + ], + [ + 53.5547162, + 9.9867765 + ], + [ + 53.5546601, + 9.9864211 + ] + ] + }, + { + "osmId": "292215373", + "name": "Berliner Stadtbahn", + "lengthMeters": 188.17842962694135, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5231018, + 13.3639881 + ], + [ + 52.5234649, + 13.364813 + ], + [ + 52.523618, + 13.3651882 + ], + [ + 52.5237848, + 13.3655847 + ], + [ + 52.5237894, + 13.3655953 + ], + [ + 52.5238562, + 13.365764 + ], + [ + 52.5238619, + 13.3657791 + ], + [ + 52.5239385, + 13.365982 + ], + [ + 52.5240533, + 13.366287 + ] + ] + }, + { + "osmId": "292215375", + "name": null, + "lengthMeters": 206.86289009709088, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5300087, + 13.222636 + ], + [ + 52.5298168, + 13.2241997 + ], + [ + 52.529666, + 13.2256414 + ] + ] + }, + { + "osmId": "292233723", + "name": null, + "lengthMeters": 87.83564603207279, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697776, + 13.4463732 + ], + [ + 52.4698109, + 13.4466004 + ], + [ + 52.4698481, + 13.4468477 + ], + [ + 52.4699607, + 13.4475957 + ], + [ + 52.4699662, + 13.4476324 + ] + ] + }, + { + "osmId": "292235056", + "name": null, + "lengthMeters": 612.2822771770307, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4677265, + 13.4327697 + ], + [ + 52.4678643, + 13.4336829 + ], + [ + 52.4681206, + 13.4353862 + ], + [ + 52.4682341, + 13.4361406 + ], + [ + 52.4685734, + 13.4383875 + ], + [ + 52.4689841, + 13.4411109 + ], + [ + 52.4690494, + 13.4415437 + ] + ] + }, + { + "osmId": "292235062", + "name": null, + "lengthMeters": 613.1623032401465, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4677265, + 13.4327697 + ], + [ + 52.4678272, + 13.4332201 + ], + [ + 52.4678628, + 13.433404 + ], + [ + 52.4680692, + 13.4347625 + ], + [ + 52.4683011, + 13.436305 + ], + [ + 52.4690891, + 13.4415376 + ] + ] + }, + { + "osmId": "292235128", + "name": null, + "lengthMeters": 3117.1834525572244, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4673889, + 13.4291524 + ], + [ + 52.4673003, + 13.4285054 + ], + [ + 52.4672322, + 13.4279664 + ], + [ + 52.4670928, + 13.4267871 + ], + [ + 52.467081, + 13.4266877 + ], + [ + 52.4668002, + 13.4243803 + ], + [ + 52.4667269, + 13.4238342 + ], + [ + 52.4666731, + 13.4234892 + ], + [ + 52.4666104, + 13.4231311 + ], + [ + 52.4665428, + 13.4227693 + ], + [ + 52.4665358, + 13.4227336 + ], + [ + 52.4663535, + 13.4218073 + ], + [ + 52.4662095, + 13.4210128 + ], + [ + 52.4661527, + 13.4206563 + ], + [ + 52.4660781, + 13.4201116 + ], + [ + 52.4660297, + 13.4197032 + ], + [ + 52.4659867, + 13.4192938 + ], + [ + 52.4658766, + 13.4181277 + ], + [ + 52.4656845, + 13.4160619 + ], + [ + 52.4656045, + 13.415209 + ], + [ + 52.4655206, + 13.4143035 + ], + [ + 52.4653711, + 13.4125472 + ], + [ + 52.4651256, + 13.409671 + ], + [ + 52.4650283, + 13.408537 + ], + [ + 52.4650067, + 13.4082733 + ], + [ + 52.4649915, + 13.4080739 + ], + [ + 52.4649444, + 13.4073471 + ], + [ + 52.4649203, + 13.4065979 + ], + [ + 52.4649157, + 13.4061125 + ], + [ + 52.4649227, + 13.4056237 + ], + [ + 52.4649411, + 13.4051434 + ], + [ + 52.4649663, + 13.4047318 + ], + [ + 52.4649997, + 13.4043282 + ], + [ + 52.4650725, + 13.4036792 + ], + [ + 52.4651444, + 13.4031973 + ], + [ + 52.4652455, + 13.4026185 + ], + [ + 52.4653612, + 13.4020397 + ], + [ + 52.4656659, + 13.4008468 + ], + [ + 52.4661402, + 13.3991061 + ], + [ + 52.4662122, + 13.3988566 + ], + [ + 52.4664219, + 13.3981785 + ], + [ + 52.4666298, + 13.397554 + ], + [ + 52.4668953, + 13.3968218 + ], + [ + 52.4671236, + 13.3962419 + ], + [ + 52.4673556, + 13.3956869 + ], + [ + 52.4678583, + 13.3945435 + ], + [ + 52.4682897, + 13.3935581 + ], + [ + 52.4684018, + 13.3933043 + ], + [ + 52.4690166, + 13.391891 + ], + [ + 52.4691201, + 13.3916178 + ], + [ + 52.4693071, + 13.3911065 + ], + [ + 52.469404, + 13.3908172 + ], + [ + 52.4695629, + 13.3903057 + ], + [ + 52.4696735, + 13.38991 + ], + [ + 52.4697761, + 13.389511 + ], + [ + 52.4699464, + 13.3888186 + ], + [ + 52.4699769, + 13.3886944 + ], + [ + 52.4702325, + 13.3876491 + ], + [ + 52.4704198, + 13.3868935 + ], + [ + 52.4705179, + 13.3865226 + ], + [ + 52.4706469, + 13.3860348 + ], + [ + 52.4706688, + 13.385953 + ], + [ + 52.4706787, + 13.3859152 + ] + ] + }, + { + "osmId": "292236429", + "name": null, + "lengthMeters": 153.28166213056022, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4686275, + 13.4381667 + ], + [ + 52.4686561, + 13.4383563 + ], + [ + 52.468789, + 13.4392394 + ], + [ + 52.4689583, + 13.4403634 + ] + ] + }, + { + "osmId": "292236430", + "name": null, + "lengthMeters": 81.34247446914459, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4689583, + 13.4403634 + ], + [ + 52.4690696, + 13.4411194 + ], + [ + 52.4691201, + 13.441462 + ], + [ + 52.4691302, + 13.4415306 + ] + ] + }, + { + "osmId": "292236431", + "name": null, + "lengthMeters": 145.3544165290022, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4678572, + 13.4324441 + ], + [ + 52.4678424, + 13.4322967 + ], + [ + 52.4678205, + 13.43209 + ], + [ + 52.467789, + 13.4318554 + ], + [ + 52.4677556, + 13.4316222 + ], + [ + 52.467572, + 13.4303783 + ], + [ + 52.4675681, + 13.4303522 + ] + ] + }, + { + "osmId": "292306132", + "name": null, + "lengthMeters": 313.3153044950655, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4779148, + 13.5329792 + ], + [ + 52.477815, + 13.5331885 + ], + [ + 52.4775397, + 13.533778 + ], + [ + 52.477234, + 13.5344664 + ], + [ + 52.4767373, + 13.5355842 + ], + [ + 52.4762449, + 13.536705 + ] + ] + }, + { + "osmId": "292408139", + "name": null, + "lengthMeters": 235.2208796758265, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4585492, + 13.5831521 + ], + [ + 52.4585651, + 13.5826916 + ], + [ + 52.4585673, + 13.5826273 + ], + [ + 52.4585688, + 13.5826019 + ], + [ + 52.458586, + 13.5823145 + ], + [ + 52.4586041, + 13.5820748 + ], + [ + 52.4586063, + 13.5820456 + ], + [ + 52.4586114, + 13.5819781 + ], + [ + 52.4586419, + 13.5816243 + ], + [ + 52.4586569, + 13.5814555 + ], + [ + 52.4586819, + 13.5811737 + ], + [ + 52.4587458, + 13.5803948 + ], + [ + 52.4587496, + 13.5803483 + ], + [ + 52.4587538, + 13.5803052 + ], + [ + 52.4587572, + 13.5802685 + ], + [ + 52.4587763, + 13.580079 + ], + [ + 52.4588059, + 13.5797078 + ] + ] + }, + { + "osmId": "292408775", + "name": null, + "lengthMeters": 1051.8215206052128, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4584797, + 13.5862683 + ], + [ + 52.4584928, + 13.586602 + ], + [ + 52.4585215, + 13.5873286 + ], + [ + 52.4585421, + 13.5878243 + ], + [ + 52.4586176, + 13.5897638 + ], + [ + 52.458624, + 13.5899353 + ], + [ + 52.4586345, + 13.5904023 + ], + [ + 52.4586379, + 13.59079 + ], + [ + 52.4586346, + 13.5912105 + ], + [ + 52.4586277, + 13.5915244 + ], + [ + 52.458627, + 13.5915485 + ], + [ + 52.4586202, + 13.5917989 + ], + [ + 52.4585318, + 13.5948166 + ], + [ + 52.45851, + 13.5954704 + ], + [ + 52.458488, + 13.5958976 + ], + [ + 52.4584635, + 13.5962765 + ], + [ + 52.4584148, + 13.5968129 + ], + [ + 52.4583642, + 13.5972625 + ], + [ + 52.4582347, + 13.5982928 + ], + [ + 52.4581416, + 13.5990349 + ], + [ + 52.4580401, + 13.599829 + ], + [ + 52.4580019, + 13.6001307 + ], + [ + 52.457971, + 13.6004349 + ], + [ + 52.4579439, + 13.6007127 + ], + [ + 52.4579222, + 13.6009905 + ], + [ + 52.4579027, + 13.60131 + ], + [ + 52.4578919, + 13.6015309 + ], + [ + 52.4578871, + 13.6016885 + ] + ] + }, + { + "osmId": "292408776", + "name": null, + "lengthMeters": 250.4430962579982, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4585618, + 13.5872683 + ], + [ + 52.4585327, + 13.5865387 + ], + [ + 52.4585178, + 13.5861095 + ], + [ + 52.4585104, + 13.585796 + ], + [ + 52.4585035, + 13.5854101 + ], + [ + 52.458503, + 13.5850084 + ], + [ + 52.4585125, + 13.5844653 + ], + [ + 52.4585397, + 13.583576 + ] + ] + }, + { + "osmId": "292409593", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 88.86208817288554, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4583638, + 13.5829059 + ], + [ + 52.4583254, + 13.5842159 + ] + ] + }, + { + "osmId": "292410428", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 257.8633836005304, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4583914, + 13.5833684 + ], + [ + 52.4584106, + 13.5827356 + ], + [ + 52.4584194, + 13.5825146 + ], + [ + 52.4584292, + 13.5822666 + ], + [ + 52.4584648, + 13.5815903 + ], + [ + 52.4584829, + 13.581315 + ], + [ + 52.4584879, + 13.5812393 + ], + [ + 52.4585144, + 13.5809147 + ], + [ + 52.4585442, + 13.5805682 + ], + [ + 52.4585464, + 13.5805473 + ], + [ + 52.4585782, + 13.5802397 + ], + [ + 52.458645, + 13.5796666 + ], + [ + 52.4586537, + 13.5795917 + ] + ] + }, + { + "osmId": "292410529", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 761.7317454829513, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4583135, + 13.5845749 + ], + [ + 52.4583059, + 13.5848764 + ], + [ + 52.4582492, + 13.5868115 + ], + [ + 52.4581376, + 13.5905272 + ], + [ + 52.4580121, + 13.5947977 + ], + [ + 52.4579993, + 13.5952312 + ], + [ + 52.4579801, + 13.5958039 + ] + ] + }, + { + "osmId": "292410949", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 136.29172923215657, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4583312, + 13.5853775 + ], + [ + 52.4583443, + 13.5849192 + ], + [ + 52.4583454, + 13.5848801 + ], + [ + 52.4583914, + 13.5833684 + ] + ] + }, + { + "osmId": "292412213", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 772.9598540661832, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4579936, + 13.5967721 + ], + [ + 52.4580393, + 13.5952391 + ], + [ + 52.4580524, + 13.5948005 + ], + [ + 52.4581784, + 13.5905331 + ], + [ + 52.4582886, + 13.5868116 + ], + [ + 52.4583312, + 13.5853775 + ] + ] + }, + { + "osmId": "292412215", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 416.62212987385897, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.457957, + 13.5966598 + ], + [ + 52.4579543, + 13.5967531 + ], + [ + 52.457845, + 13.6004269 + ], + [ + 52.4578222, + 13.6011635 + ], + [ + 52.4577738, + 13.6028013 + ] + ] + }, + { + "osmId": "292455708", + "name": null, + "lengthMeters": 2839.6077418268947, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4560695, + 13.6454806 + ], + [ + 52.456069, + 13.6454951 + ], + [ + 52.4559941, + 13.6462537 + ], + [ + 52.4554399, + 13.65171 + ], + [ + 52.4551538, + 13.654515 + ], + [ + 52.4548927, + 13.6570746 + ], + [ + 52.454889, + 13.6571102 + ], + [ + 52.4548033, + 13.6579507 + ], + [ + 52.4544126, + 13.6618079 + ], + [ + 52.4543167, + 13.6626902 + ], + [ + 52.4541082, + 13.6648185 + ], + [ + 52.453897, + 13.6669 + ], + [ + 52.4538049, + 13.6678019 + ], + [ + 52.4537863, + 13.6679841 + ], + [ + 52.453583, + 13.6699739 + ], + [ + 52.4531209, + 13.674549 + ], + [ + 52.4529676, + 13.6761533 + ], + [ + 52.4528229, + 13.6777693 + ], + [ + 52.4528089, + 13.6779373 + ], + [ + 52.452806, + 13.6779713 + ], + [ + 52.4526785, + 13.6794958 + ], + [ + 52.4523723, + 13.6824708 + ], + [ + 52.452188, + 13.6842291 + ], + [ + 52.4521567, + 13.6845279 + ], + [ + 52.4519489, + 13.6865112 + ], + [ + 52.4519439, + 13.6865589 + ], + [ + 52.4519167, + 13.6868271 + ] + ] + }, + { + "osmId": "292459936", + "name": null, + "lengthMeters": 194.3057654859551, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4517307, + 13.6886432 + ], + [ + 52.4517292, + 13.6886569 + ], + [ + 52.4517154, + 13.6887875 + ], + [ + 52.4516741, + 13.6891604 + ], + [ + 52.4516487, + 13.689372 + ], + [ + 52.4516387, + 13.6894472 + ], + [ + 52.4516086, + 13.6896818 + ], + [ + 52.4515902, + 13.6898344 + ], + [ + 52.4515296, + 13.6903075 + ], + [ + 52.4514522, + 13.6909073 + ], + [ + 52.4514493, + 13.6909298 + ], + [ + 52.4514331, + 13.6910665 + ], + [ + 52.4514134, + 13.691263 + ], + [ + 52.4513945, + 13.6914565 + ] + ] + }, + { + "osmId": "292459937", + "name": null, + "lengthMeters": 2950.0864913471787, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4518493, + 13.6884695 + ], + [ + 52.4518937, + 13.6876681 + ], + [ + 52.4519115, + 13.6873811 + ], + [ + 52.4519204, + 13.6872382 + ], + [ + 52.4519312, + 13.6870972 + ], + [ + 52.4519487, + 13.6868933 + ], + [ + 52.4519766, + 13.686611 + ], + [ + 52.4520388, + 13.6860173 + ], + [ + 52.4521215, + 13.6852189 + ], + [ + 52.4521283, + 13.6851528 + ], + [ + 52.4523391, + 13.6831186 + ], + [ + 52.452405, + 13.6824827 + ], + [ + 52.4527108, + 13.6794972 + ], + [ + 52.452841, + 13.6779753 + ], + [ + 52.4528435, + 13.6779456 + ], + [ + 52.4528577, + 13.6777798 + ], + [ + 52.4530019, + 13.6761573 + ], + [ + 52.4531587, + 13.6745531 + ], + [ + 52.4538223, + 13.6679904 + ], + [ + 52.4538394, + 13.6678214 + ], + [ + 52.4544368, + 13.6619129 + ], + [ + 52.4545585, + 13.6607504 + ], + [ + 52.454822, + 13.6581489 + ], + [ + 52.4549263, + 13.6571206 + ], + [ + 52.4549299, + 13.6570855 + ], + [ + 52.4550427, + 13.6559739 + ], + [ + 52.4551892, + 13.6545264 + ], + [ + 52.4552432, + 13.6539922 + ], + [ + 52.4554775, + 13.6517241 + ], + [ + 52.456031, + 13.6462552 + ], + [ + 52.456108, + 13.6455021 + ] + ] + }, + { + "osmId": "292525330", + "name": null, + "lengthMeters": 132.90911506748233, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4313336, + 13.3304685 + ], + [ + 52.4317395, + 13.3311563 + ], + [ + 52.4321648, + 13.3318773 + ] + ] + }, + { + "osmId": "292525331", + "name": null, + "lengthMeters": 256.68964914679617, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4321648, + 13.3318773 + ], + [ + 52.4337843, + 13.3345755 + ] + ] + }, + { + "osmId": "292526251", + "name": null, + "lengthMeters": 167.9692504134103, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4322087, + 13.3317225 + ], + [ + 52.4316096, + 13.3306969 + ], + [ + 52.4311556, + 13.3299464 + ] + ] + }, + { + "osmId": "292551158", + "name": null, + "lengthMeters": 2185.7434104179247, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4257672, + 13.3737848 + ], + [ + 52.4267605, + 13.3731298 + ], + [ + 52.427295, + 13.3727764 + ], + [ + 52.4278317, + 13.3724347 + ], + [ + 52.4280352, + 13.3723141 + ], + [ + 52.4299313, + 13.3711908 + ], + [ + 52.4307151, + 13.3707301 + ], + [ + 52.4307243, + 13.3707247 + ], + [ + 52.4328995, + 13.3694499 + ], + [ + 52.4338101, + 13.3689242 + ], + [ + 52.4346356, + 13.3684389 + ], + [ + 52.4354946, + 13.367917 + ], + [ + 52.4356081, + 13.3678506 + ], + [ + 52.4367256, + 13.3672125 + ], + [ + 52.436894, + 13.3671142 + ], + [ + 52.4379801, + 13.3665063 + ], + [ + 52.4391058, + 13.3658794 + ], + [ + 52.4392494, + 13.3657948 + ], + [ + 52.4393004, + 13.3657647 + ], + [ + 52.4416245, + 13.3643952 + ], + [ + 52.4427507, + 13.3637349 + ], + [ + 52.4438051, + 13.363137 + ], + [ + 52.4442629, + 13.3628768 + ] + ] + }, + { + "osmId": "292609833", + "name": null, + "lengthMeters": 783.7692338104922, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5691995, + 13.5637488 + ], + [ + 52.5679851, + 13.562711 + ], + [ + 52.5674575, + 13.5622496 + ], + [ + 52.5668309, + 13.561674 + ], + [ + 52.5663728, + 13.5612376 + ], + [ + 52.5658756, + 13.5607568 + ], + [ + 52.5653808, + 13.5602807 + ], + [ + 52.5648236, + 13.5597471 + ], + [ + 52.5645112, + 13.5594475 + ], + [ + 52.5641454, + 13.5590949 + ], + [ + 52.5634945, + 13.5584921 + ], + [ + 52.5630428, + 13.5581082 + ] + ] + }, + { + "osmId": "292609836", + "name": null, + "lengthMeters": 142.59247133368254, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5704248, + 13.5648112 + ], + [ + 52.5692906, + 13.5638267 + ] + ] + }, + { + "osmId": "292610907", + "name": null, + "lengthMeters": 99.570206102602, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5684471, + 13.5629506 + ], + [ + 52.5686424, + 13.5631613 + ], + [ + 52.5688235, + 13.5633591 + ], + [ + 52.568997, + 13.5635502 + ], + [ + 52.5691995, + 13.5637488 + ] + ] + }, + { + "osmId": "292634009", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 176.82201748250012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502909, + 9.9350058 + ], + [ + 53.5503164, + 9.9349984 + ], + [ + 53.5513541, + 9.9347704 + ], + [ + 53.5516056, + 9.9347138 + ], + [ + 53.5517436, + 9.9346833 + ], + [ + 53.5518675, + 9.9346568 + ] + ] + }, + { + "osmId": "292634013", + "name": "City-S-Bahn", + "lengthMeters": 186.63439671624226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502152, + 9.9352131 + ], + [ + 53.5502771, + 9.9351999 + ], + [ + 53.5503323, + 9.9351904 + ], + [ + 53.5515968, + 9.9350555 + ], + [ + 53.5517446, + 9.9350254 + ], + [ + 53.5518873, + 9.9349856 + ] + ] + }, + { + "osmId": "292634015", + "name": "City-S-Bahn", + "lengthMeters": 467.0223191350668, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5488631, + 9.9354531 + ], + [ + 53.5487281, + 9.9355244 + ], + [ + 53.5486216, + 9.935589 + ], + [ + 53.5485208, + 9.9356573 + ], + [ + 53.5483863, + 9.93576 + ], + [ + 53.5482243, + 9.9359023 + ], + [ + 53.5480624, + 9.9360665 + ], + [ + 53.5478826, + 9.9362788 + ], + [ + 53.5477079, + 9.9365217 + ], + [ + 53.5476071, + 9.9366756 + ], + [ + 53.5475436, + 9.9367817 + ], + [ + 53.5474147, + 9.9370225 + ], + [ + 53.5473154, + 9.9372365 + ], + [ + 53.5472205, + 9.937471 + ], + [ + 53.5471879, + 9.9375601 + ], + [ + 53.5471691, + 9.937614 + ], + [ + 53.5471474, + 9.9376784 + ], + [ + 53.5471077, + 9.9378034 + ], + [ + 53.5470633, + 9.9379566 + ], + [ + 53.5470238, + 9.9381067 + ], + [ + 53.5469944, + 9.9382314 + ], + [ + 53.5469657, + 9.9383635 + ], + [ + 53.5469172, + 9.9386169 + ], + [ + 53.5468926, + 9.9387668 + ], + [ + 53.5468603, + 9.9389963 + ], + [ + 53.5468288, + 9.9392875 + ], + [ + 53.5468031, + 9.9396623 + ], + [ + 53.5467942, + 9.9399705 + ], + [ + 53.5467967, + 9.9402921 + ], + [ + 53.5468109, + 9.9406096 + ], + [ + 53.5468384, + 9.9409072 + ] + ] + }, + { + "osmId": "292634020", + "name": "City-S-Bahn", + "lengthMeters": 334.5468897068825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5479105, + 9.9364019 + ], + [ + 53.5477645, + 9.9365907 + ], + [ + 53.5476603, + 9.9367445 + ], + [ + 53.5475595, + 9.9369113 + ], + [ + 53.5474664, + 9.9370841 + ], + [ + 53.547367, + 9.9372923 + ], + [ + 53.5472738, + 9.937516 + ], + [ + 53.5472432, + 9.9375969 + ], + [ + 53.54722, + 9.9376612 + ], + [ + 53.5471941, + 9.9377359 + ], + [ + 53.5471733, + 9.9377991 + ], + [ + 53.5471491, + 9.9378755 + ], + [ + 53.5471107, + 9.9380057 + ], + [ + 53.5470808, + 9.9381166 + ], + [ + 53.5470514, + 9.9382309 + ], + [ + 53.5470136, + 9.9383922 + ], + [ + 53.5469752, + 9.9385783 + ], + [ + 53.5469426, + 9.9387604 + ], + [ + 53.5469067, + 9.9390026 + ], + [ + 53.546875, + 9.9392884 + ], + [ + 53.5468526, + 9.9396079 + ], + [ + 53.5468436, + 9.9399439 + ], + [ + 53.5468487, + 9.9402625 + ], + [ + 53.546863, + 9.9405631 + ], + [ + 53.5468925, + 9.9408809 + ] + ] + }, + { + "osmId": "292634027", + "name": "City-S-Bahn", + "lengthMeters": 158.8681200956202, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5502544, + 9.9349073 + ], + [ + 53.5501019, + 9.9349679 + ], + [ + 53.5497764, + 9.9350973 + ], + [ + 53.5492366, + 9.9352942 + ], + [ + 53.5491331, + 9.9353362 + ], + [ + 53.5490178, + 9.9353856 + ], + [ + 53.5488631, + 9.9354531 + ] + ] + }, + { + "osmId": "292634031", + "name": "City-S-Bahn", + "lengthMeters": 110.18437183000181, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5492358, + 9.9354663 + ], + [ + 53.5497787, + 9.9353211 + ], + [ + 53.5501267, + 9.935237 + ], + [ + 53.5502152, + 9.9352131 + ] + ] + }, + { + "osmId": "292649964", + "name": null, + "lengthMeters": 100.7531372446814, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5646116, + 13.5593669 + ], + [ + 52.5654127, + 13.5600634 + ] + ] + }, + { + "osmId": "292656084", + "name": null, + "lengthMeters": 847.9100692629202, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5654127, + 13.5600634 + ], + [ + 52.5661861, + 13.5607233 + ], + [ + 52.5667499, + 13.5612194 + ], + [ + 52.5673876, + 13.5617608 + ], + [ + 52.5678605, + 13.5621744 + ], + [ + 52.5685074, + 13.5627321 + ], + [ + 52.56915, + 13.5632902 + ], + [ + 52.5697353, + 13.5637944 + ], + [ + 52.57018, + 13.5641777 + ], + [ + 52.5707792, + 13.5646937 + ], + [ + 52.5712791, + 13.5651194 + ], + [ + 52.5717792, + 13.5655563 + ], + [ + 52.5721648, + 13.5658931 + ] + ] + }, + { + "osmId": "292712151", + "name": "City-S-Bahn", + "lengthMeters": 1087.0401888537178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5468925, + 9.9408809 + ], + [ + 53.5469218, + 9.9411232 + ], + [ + 53.5469591, + 9.9413491 + ], + [ + 53.5469777, + 9.9414464 + ], + [ + 53.5469976, + 9.9415502 + ], + [ + 53.5470395, + 9.9417327 + ], + [ + 53.5470745, + 9.9418793 + ], + [ + 53.5471117, + 9.942026 + ], + [ + 53.5471523, + 9.9421631 + ], + [ + 53.5471855, + 9.9422603 + ], + [ + 53.547232, + 9.9423964 + ], + [ + 53.5472724, + 9.9425146 + ], + [ + 53.547319, + 9.9426387 + ], + [ + 53.5473504, + 9.9427225 + ], + [ + 53.54787, + 9.944077 + ], + [ + 53.5481796, + 9.9449204 + ], + [ + 53.5482686, + 9.9452403 + ], + [ + 53.5482812, + 9.9452876 + ], + [ + 53.5484062, + 9.9457244 + ], + [ + 53.5484927, + 9.9460937 + ], + [ + 53.5485685, + 9.9464324 + ], + [ + 53.5486327, + 9.9467464 + ], + [ + 53.5486938, + 9.9470899 + ], + [ + 53.5488138, + 9.9478057 + ], + [ + 53.5488875, + 9.9483044 + ], + [ + 53.5491041, + 9.9497277 + ], + [ + 53.5493569, + 9.9512299 + ], + [ + 53.5494696, + 9.9519132 + ], + [ + 53.5494883, + 9.9520361 + ], + [ + 53.5495054, + 9.9521486 + ], + [ + 53.5495567, + 9.9526524 + ], + [ + 53.5496107, + 9.9532607 + ], + [ + 53.5496758, + 9.9541268 + ], + [ + 53.5497113, + 9.9546548 + ], + [ + 53.5497421, + 9.9552193 + ], + [ + 53.5497641, + 9.9557829 + ], + [ + 53.5497661, + 9.9560105 + ], + [ + 53.5497645, + 9.9562089 + ], + [ + 53.5497594, + 9.9563803 + ] + ] + }, + { + "osmId": "292732544", + "name": null, + "lengthMeters": 921.8768461553896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4651828, + 9.9978942 + ], + [ + 53.4649845, + 9.9980047 + ], + [ + 53.4643596, + 9.998301 + ], + [ + 53.4637782, + 9.9985665 + ], + [ + 53.4632523, + 9.998796 + ], + [ + 53.4624369, + 9.9990335 + ], + [ + 53.4616186, + 9.9991979 + ], + [ + 53.461151, + 9.9992415 + ], + [ + 53.4606664, + 9.9992385 + ], + [ + 53.459771, + 9.9990285 + ], + [ + 53.4593487, + 9.9988107 + ], + [ + 53.4589243, + 9.9985573 + ], + [ + 53.4582434, + 9.9979146 + ], + [ + 53.4577229, + 9.9971929 + ], + [ + 53.4574451, + 9.9966425 + ] + ] + }, + { + "osmId": "292732545", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 264.972945919332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4568028, + 9.9935099 + ], + [ + 53.4570707, + 9.9911458 + ], + [ + 53.4571565, + 9.9904159 + ], + [ + 53.4571728, + 9.9902968 + ], + [ + 53.4571884, + 9.9902137 + ], + [ + 53.4572071, + 9.9901292 + ], + [ + 53.4572275, + 9.9900447 + ], + [ + 53.4572746, + 9.9898731 + ], + [ + 53.4573121, + 9.9897443 + ], + [ + 53.4573466, + 9.9896295 + ] + ] + }, + { + "osmId": "292847713", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 687.1564074565167, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4661359, + 9.9616999 + ], + [ + 53.4665765, + 9.9607642 + ], + [ + 53.4672743, + 9.9593372 + ], + [ + 53.4676239, + 9.9586426 + ], + [ + 53.4680428, + 9.9577841 + ], + [ + 53.4685366, + 9.9568127 + ], + [ + 53.4686335, + 9.9566349 + ], + [ + 53.4687476, + 9.9564423 + ], + [ + 53.4691126, + 9.9558646 + ], + [ + 53.469577, + 9.9551045 + ], + [ + 53.4700636, + 9.9543029 + ], + [ + 53.4701602, + 9.9541482 + ], + [ + 53.4701883, + 9.9541056 + ], + [ + 53.4702181, + 9.9540598 + ], + [ + 53.4702582, + 9.9539865 + ] + ] + }, + { + "osmId": "292847714", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 665.8770015316524, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4700877, + 9.9541551 + ], + [ + 53.470033, + 9.9542468 + ], + [ + 53.4695443, + 9.9550538 + ], + [ + 53.4687091, + 9.9563991 + ], + [ + 53.4686027, + 9.9565826 + ], + [ + 53.4685045, + 9.9567662 + ], + [ + 53.4672877, + 9.9591983 + ], + [ + 53.4660553, + 9.9615791 + ] + ] + }, + { + "osmId": "292906419", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 397.9663686808475, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3933152, + 10.0849516 + ], + [ + 53.3933965, + 10.0847565 + ], + [ + 53.3936227, + 10.0843072 + ], + [ + 53.3937067, + 10.0841402 + ], + [ + 53.3939421, + 10.0836727 + ], + [ + 53.3943225, + 10.0828072 + ], + [ + 53.3943934, + 10.0826582 + ], + [ + 53.3949469, + 10.081494 + ], + [ + 53.3954737, + 10.0804222 + ], + [ + 53.3955503, + 10.0802665 + ] + ] + }, + { + "osmId": "292906422", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 198.88854171142654, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4012164, + 10.0701821 + ], + [ + 53.4013422, + 10.069964 + ], + [ + 53.401846, + 10.0690245 + ], + [ + 53.4024491, + 10.0680095 + ] + ] + }, + { + "osmId": "292906427", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1158.6726510964897, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.398982, + 10.0744958 + ], + [ + 53.3985336, + 10.0755019 + ], + [ + 53.3982666, + 10.0761687 + ], + [ + 53.3981661, + 10.0764195 + ], + [ + 53.3976485, + 10.077712 + ], + [ + 53.3970152, + 10.0794076 + ], + [ + 53.3967399, + 10.0801966 + ], + [ + 53.3963385, + 10.0813473 + ], + [ + 53.3953747, + 10.084303 + ], + [ + 53.3948834, + 10.085965 + ], + [ + 53.3939668, + 10.0894035 + ], + [ + 53.3938893, + 10.0896944 + ] + ] + }, + { + "osmId": "292961152", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 83.29124534655861, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4041754, + 10.0646443 + ], + [ + 53.4042655, + 10.0645073 + ], + [ + 53.4047303, + 10.0638003 + ] + ] + }, + { + "osmId": "293139765", + "name": "Eisacktunnel", + "lengthMeters": 197.36149489558775, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4773659, + 13.3443739 + ], + [ + 52.4772267, + 13.3444203 + ], + [ + 52.4770514, + 13.3444542 + ], + [ + 52.4768283, + 13.344406 + ], + [ + 52.4764921, + 13.3442223 + ], + [ + 52.4763243, + 13.3441791 + ], + [ + 52.476164, + 13.3441844 + ], + [ + 52.4756191, + 13.3442597 + ] + ] + }, + { + "osmId": "293354600", + "name": null, + "lengthMeters": 2514.8734850687156, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4399258, + 10.011209 + ], + [ + 53.4386509, + 10.0124022 + ], + [ + 53.4380185, + 10.0130257 + ], + [ + 53.4376496, + 10.0134433 + ], + [ + 53.4374561, + 10.0136634 + ], + [ + 53.4364458, + 10.0148961 + ], + [ + 53.4361211, + 10.0152773 + ], + [ + 53.4358324, + 10.0156165 + ], + [ + 53.4358193, + 10.0156319 + ], + [ + 53.4354207, + 10.0161003 + ], + [ + 53.4347638, + 10.0168252 + ], + [ + 53.4345781, + 10.0170302 + ], + [ + 53.4341383, + 10.0175113 + ], + [ + 53.4336336, + 10.0180633 + ], + [ + 53.4326552, + 10.0191357 + ], + [ + 53.431599, + 10.0203166 + ], + [ + 53.4314347, + 10.0205002 + ], + [ + 53.4306978, + 10.0213025 + ], + [ + 53.4302619, + 10.0217929 + ], + [ + 53.430134, + 10.0219217 + ], + [ + 53.4299467, + 10.0221319 + ], + [ + 53.4296516, + 10.022468 + ], + [ + 53.4289363, + 10.0232827 + ], + [ + 53.4284715, + 10.0238278 + ], + [ + 53.4279853, + 10.0243907 + ], + [ + 53.4276372, + 10.0247933 + ], + [ + 53.4268178, + 10.0258086 + ], + [ + 53.4267376, + 10.0259106 + ], + [ + 53.4266524, + 10.0260187 + ], + [ + 53.4265121, + 10.026197 + ], + [ + 53.4261685, + 10.0266561 + ], + [ + 53.4258708, + 10.0270538 + ], + [ + 53.4255455, + 10.0274785 + ], + [ + 53.4255407, + 10.0274847 + ], + [ + 53.4254901, + 10.0275507 + ], + [ + 53.4248006, + 10.0285189 + ], + [ + 53.4245792, + 10.0288298 + ], + [ + 53.4234821, + 10.0305019 + ], + [ + 53.4226465, + 10.031805 + ], + [ + 53.4222201, + 10.0323997 + ], + [ + 53.4218503, + 10.0329119 + ], + [ + 53.4215846, + 10.0332859 + ] + ] + }, + { + "osmId": "293966778", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 3510.295194415261, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4091086, + 10.0461338 + ], + [ + 53.4068908, + 10.0483479 + ], + [ + 53.4067086, + 10.0485342 + ], + [ + 53.406691, + 10.0485521 + ], + [ + 53.406359, + 10.0488916 + ], + [ + 53.4057234, + 10.049583 + ], + [ + 53.4050721, + 10.0503431 + ], + [ + 53.4049328, + 10.0505176 + ], + [ + 53.404575, + 10.0509659 + ], + [ + 53.4038072, + 10.0519634 + ], + [ + 53.4030174, + 10.0530401 + ], + [ + 53.4014156, + 10.0554272 + ], + [ + 53.4003563, + 10.0569722 + ], + [ + 53.3997201, + 10.0579399 + ], + [ + 53.3993124, + 10.05856 + ], + [ + 53.3990784, + 10.0589724 + ], + [ + 53.3989411, + 10.0592143 + ], + [ + 53.3985866, + 10.0598398 + ], + [ + 53.3981301, + 10.0606453 + ], + [ + 53.3978376, + 10.0612653 + ], + [ + 53.3975439, + 10.0619243 + ], + [ + 53.3971475, + 10.0629242 + ], + [ + 53.3968098, + 10.0638815 + ], + [ + 53.3962827, + 10.0656582 + ], + [ + 53.3956123, + 10.0680787 + ], + [ + 53.3948855, + 10.0708253 + ], + [ + 53.3944812, + 10.0725504 + ], + [ + 53.3944039, + 10.0729571 + ], + [ + 53.3942969, + 10.0735203 + ], + [ + 53.3941758, + 10.0744005 + ], + [ + 53.3940973, + 10.0749709 + ], + [ + 53.3939944, + 10.0763226 + ], + [ + 53.3938232, + 10.0779662 + ], + [ + 53.3937382, + 10.0789776 + ], + [ + 53.3937141, + 10.0792036 + ], + [ + 53.3935292, + 10.0808135 + ], + [ + 53.3934829, + 10.0811422 + ], + [ + 53.3934368, + 10.0814699 + ], + [ + 53.3932383, + 10.0831241 + ], + [ + 53.3931415, + 10.0837499 + ], + [ + 53.3929785, + 10.0844839 + ], + [ + 53.3927221, + 10.0853895 + ], + [ + 53.3925581, + 10.0858645 + ], + [ + 53.3923379, + 10.0864049 + ], + [ + 53.3921185, + 10.0868355 + ], + [ + 53.3917414, + 10.0875756 + ] + ] + }, + { + "osmId": "294061818", + "name": null, + "lengthMeters": 326.4450958490604, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5881827, + 9.9194634 + ], + [ + 53.5882567, + 9.9193894 + ], + [ + 53.5886107, + 9.9190355 + ], + [ + 53.5886525, + 9.918991 + ], + [ + 53.5890819, + 9.918533 + ], + [ + 53.5890843, + 9.9185304 + ], + [ + 53.5899306, + 9.917613 + ], + [ + 53.5902287, + 9.9172579 + ], + [ + 53.5906252, + 9.9167279 + ] + ] + }, + { + "osmId": "294061819", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 124.4186498215457, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5562886, + 10.0023975 + ], + [ + 53.5562219, + 10.0026174 + ], + [ + 53.5561919, + 10.002711 + ], + [ + 53.5561528, + 10.0028282 + ], + [ + 53.5561038, + 10.0029733 + ], + [ + 53.5560231, + 10.0032001 + ], + [ + 53.555936, + 10.0034156 + ], + [ + 53.5558355, + 10.0036348 + ], + [ + 53.5557953, + 10.0037212 + ], + [ + 53.5556944, + 10.003913 + ], + [ + 53.5556835, + 10.0039366 + ], + [ + 53.5556712, + 10.00396 + ] + ] + }, + { + "osmId": "295250354", + "name": "U6", + "lengthMeters": 420.1935127130573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4557692, + 13.3840629 + ], + [ + 52.4561575, + 13.3840061 + ], + [ + 52.4565156, + 13.3839892 + ], + [ + 52.456982, + 13.3840106 + ], + [ + 52.4575033, + 13.3840982 + ], + [ + 52.458375, + 13.3843124 + ], + [ + 52.4588259, + 13.3844209 + ], + [ + 52.459521, + 13.384594 + ] + ] + }, + { + "osmId": "295250358", + "name": "U6", + "lengthMeters": 1125.1689400183432, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5055012, + 13.3906153 + ], + [ + 52.5049874, + 13.3907533 + ], + [ + 52.504338, + 13.3908392 + ], + [ + 52.5015284, + 13.3912499 + ], + [ + 52.4994226, + 13.3916035 + ], + [ + 52.4990401, + 13.3916225 + ], + [ + 52.4986955, + 13.3916401 + ], + [ + 52.498497, + 13.3916524 + ], + [ + 52.4981833, + 13.3916415 + ], + [ + 52.4977368, + 13.3915325 + ], + [ + 52.4973025, + 13.3914037 + ], + [ + 52.497154, + 13.391351 + ], + [ + 52.497012, + 13.3912768 + ], + [ + 52.4968935, + 13.3911927 + ], + [ + 52.4967435, + 13.3910397 + ], + [ + 52.4961891, + 13.3903625 + ], + [ + 52.4957505, + 13.3897411 + ] + ] + }, + { + "osmId": "295250359", + "name": "U6", + "lengthMeters": 184.78568566056617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4648638, + 13.3856951 + ], + [ + 52.4657118, + 13.385737 + ], + [ + 52.4658487, + 13.3857423 + ], + [ + 52.4660023, + 13.3857494 + ], + [ + 52.4665249, + 13.3857751 + ] + ] + }, + { + "osmId": "295250360", + "name": "U6", + "lengthMeters": 231.8883756968159, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.468611, + 13.3857981 + ], + [ + 52.4691677, + 13.3857675 + ], + [ + 52.4699261, + 13.3856773 + ], + [ + 52.4703417, + 13.3856404 + ], + [ + 52.4706935, + 13.3856457 + ] + ] + }, + { + "osmId": "295255789", + "name": "U6", + "lengthMeters": 801.2703342763401, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196643, + 13.3883201 + ], + [ + 52.5193676, + 13.3883971 + ], + [ + 52.5187898, + 13.3884791 + ], + [ + 52.5186374, + 13.3885149 + ], + [ + 52.5176614, + 13.3886736 + ], + [ + 52.5173944, + 13.3887186 + ], + [ + 52.5161798, + 13.3889138 + ], + [ + 52.5156404, + 13.3889962 + ], + [ + 52.5154026, + 13.3890045 + ], + [ + 52.515226, + 13.3890272 + ], + [ + 52.5138406, + 13.3892953 + ], + [ + 52.5127574, + 13.3894702 + ], + [ + 52.5124956, + 13.389489 + ] + ] + }, + { + "osmId": "295255792", + "name": "U6", + "lengthMeters": 396.3393004744291, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5117738, + 13.3895846 + ], + [ + 52.5108285, + 13.3897485 + ], + [ + 52.5106617, + 13.3897758 + ], + [ + 52.5102192, + 13.389843 + ], + [ + 52.5098933, + 13.3899176 + ], + [ + 52.5096521, + 13.3899736 + ], + [ + 52.5093726, + 13.3900374 + ], + [ + 52.5082314, + 13.3902263 + ] + ] + }, + { + "osmId": "295255796", + "name": "U6", + "lengthMeters": 604.0922696907016, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5063798, + 13.3906375 + ], + [ + 52.5076207, + 13.3903955 + ], + [ + 52.5082369, + 13.3902844 + ], + [ + 52.5093784, + 13.3900958 + ], + [ + 52.5096582, + 13.3900698 + ], + [ + 52.5099017, + 13.3900416 + ], + [ + 52.5102342, + 13.3899834 + ], + [ + 52.5106729, + 13.3899225 + ], + [ + 52.5108369, + 13.3898932 + ], + [ + 52.5111427, + 13.389839 + ], + [ + 52.5117835, + 13.3897268 + ] + ] + }, + { + "osmId": "295356369", + "name": null, + "lengthMeters": 1309.2082655878417, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5407063, + 10.0103806 + ], + [ + 53.5406515, + 10.0106783 + ], + [ + 53.5405961, + 10.0110089 + ], + [ + 53.5405062, + 10.0115862 + ], + [ + 53.5402757, + 10.0130823 + ], + [ + 53.5402743, + 10.0130913 + ], + [ + 53.5399393, + 10.0152525 + ], + [ + 53.5398205, + 10.0160103 + ], + [ + 53.5397971, + 10.016166 + ], + [ + 53.5393898, + 10.0188336 + ], + [ + 53.539373, + 10.0189483 + ], + [ + 53.5390424, + 10.0210767 + ], + [ + 53.5389801, + 10.0214408 + ], + [ + 53.538899, + 10.0218273 + ], + [ + 53.5388638, + 10.0219776 + ], + [ + 53.538844, + 10.0220497 + ], + [ + 53.538829, + 10.0221222 + ], + [ + 53.5387681, + 10.0223254 + ], + [ + 53.5386954, + 10.022554 + ], + [ + 53.5385799, + 10.0228646 + ], + [ + 53.538453, + 10.0231436 + ], + [ + 53.5383056, + 10.0234263 + ], + [ + 53.5381536, + 10.0236893 + ], + [ + 53.5381207, + 10.0237412 + ], + [ + 53.5380321, + 10.023868 + ], + [ + 53.5379548, + 10.0239739 + ], + [ + 53.5377591, + 10.0241963 + ], + [ + 53.5376998, + 10.0242587 + ], + [ + 53.5376311, + 10.0243256 + ], + [ + 53.5375402, + 10.0244044 + ], + [ + 53.5374764, + 10.0244595 + ], + [ + 53.5374172, + 10.0245043 + ], + [ + 53.5373463, + 10.024558 + ], + [ + 53.5372579, + 10.0246162 + ], + [ + 53.5371461, + 10.0246835 + ], + [ + 53.537063, + 10.0247263 + ], + [ + 53.5369748, + 10.0247673 + ], + [ + 53.5368917, + 10.0248008 + ], + [ + 53.5368058, + 10.024829 + ], + [ + 53.5367286, + 10.0248507 + ], + [ + 53.5366376, + 10.0248728 + ], + [ + 53.5365518, + 10.0248886 + ], + [ + 53.5364631, + 10.0248988 + ], + [ + 53.5363818, + 10.0249045 + ], + [ + 53.5363028, + 10.0249065 + ], + [ + 53.5362205, + 10.0249029 + ], + [ + 53.536155, + 10.0248985 + ], + [ + 53.5361095, + 10.0248942 + ], + [ + 53.536055, + 10.0248878 + ], + [ + 53.5359104, + 10.0248553 + ], + [ + 53.5358783, + 10.0248467 + ], + [ + 53.5358346, + 10.0248349 + ], + [ + 53.5357537, + 10.0248092 + ], + [ + 53.5356801, + 10.0247814 + ], + [ + 53.5356086, + 10.0247491 + ], + [ + 53.5354818, + 10.0246907 + ], + [ + 53.5353564, + 10.0246286 + ], + [ + 53.5352584, + 10.0245746 + ], + [ + 53.535165, + 10.0245159 + ], + [ + 53.5350583, + 10.024442 + ], + [ + 53.5349958, + 10.024398 + ], + [ + 53.534993, + 10.0243942 + ] + ] + }, + { + "osmId": "295356371", + "name": null, + "lengthMeters": 1139.6787398302522, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4817201, + 10.0021832 + ], + [ + 53.4817668, + 10.002199 + ], + [ + 53.4833933, + 10.0027638 + ], + [ + 53.4839617, + 10.0029454 + ], + [ + 53.4847052, + 10.003155 + ], + [ + 53.4852038, + 10.0032977 + ], + [ + 53.4854575, + 10.0033698 + ], + [ + 53.4855478, + 10.0033905 + ], + [ + 53.4855497, + 10.0033907 + ], + [ + 53.4856416, + 10.0034138 + ], + [ + 53.4858817, + 10.003476 + ], + [ + 53.4861424, + 10.0035439 + ], + [ + 53.4863984, + 10.0036071 + ], + [ + 53.4865415, + 10.0036425 + ], + [ + 53.4866091, + 10.0036528 + ], + [ + 53.4869402, + 10.0037318 + ], + [ + 53.4873449, + 10.0038285 + ], + [ + 53.4877455, + 10.0039168 + ], + [ + 53.488049, + 10.003981 + ], + [ + 53.4881957, + 10.0040075 + ], + [ + 53.4882666, + 10.0040227 + ], + [ + 53.4885032, + 10.0040658 + ], + [ + 53.4891517, + 10.0041876 + ], + [ + 53.4908361, + 10.0044898 + ], + [ + 53.4918443, + 10.0046631 + ], + [ + 53.4918555, + 10.0046652 + ] + ] + }, + { + "osmId": "295356372", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 167.0856884000001, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4748055, + 9.9992253 + ], + [ + 53.4749188, + 9.9992858 + ], + [ + 53.4749343, + 9.9992939 + ], + [ + 53.4762417, + 9.9999677 + ] + ] + }, + { + "osmId": "295356373", + "name": null, + "lengthMeters": 170.1009065218775, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5204842, + 10.0120061 + ], + [ + 53.5201905, + 10.0118778 + ], + [ + 53.5201501, + 10.0118594 + ], + [ + 53.5197444, + 10.0116751 + ], + [ + 53.5192898, + 10.0114856 + ], + [ + 53.5190021, + 10.0113695 + ] + ] + }, + { + "osmId": "295376548", + "name": "U6", + "lengthMeters": 114.91950837768955, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.518642, + 13.3885693 + ], + [ + 52.5196712, + 13.3884146 + ] + ] + }, + { + "osmId": "295391379", + "name": null, + "lengthMeters": 1272.442514726707, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266765, + 13.2511448 + ], + [ + 52.5266516, + 13.2507368 + ], + [ + 52.5266448, + 13.2506298 + ], + [ + 52.5266096, + 13.2500219 + ], + [ + 52.5265821, + 13.2494155 + ], + [ + 52.526562, + 13.2486113 + ], + [ + 52.5265545, + 13.2473734 + ], + [ + 52.5265603, + 13.2465551 + ], + [ + 52.5265805, + 13.2457505 + ], + [ + 52.5266124, + 13.2451381 + ], + [ + 52.5266543, + 13.2446233 + ], + [ + 52.5267064, + 13.2442038 + ], + [ + 52.5267403, + 13.2439308 + ], + [ + 52.5268631, + 13.2431877 + ], + [ + 52.5270012, + 13.2424964 + ], + [ + 52.527104, + 13.2420672 + ], + [ + 52.5271701, + 13.241803 + ], + [ + 52.5274228, + 13.24086 + ], + [ + 52.5277922, + 13.2395844 + ], + [ + 52.527911, + 13.2391581 + ], + [ + 52.527989, + 13.2388783 + ], + [ + 52.5280681, + 13.238558 + ], + [ + 52.5282909, + 13.2376555 + ], + [ + 52.5284461, + 13.2369322 + ], + [ + 52.5285979, + 13.2361382 + ], + [ + 52.5286925, + 13.2355884 + ], + [ + 52.5287856, + 13.2349809 + ], + [ + 52.5289112, + 13.2340474 + ], + [ + 52.5289928, + 13.2332844 + ], + [ + 52.5290199, + 13.2330344 + ] + ] + }, + { + "osmId": "295391380", + "name": null, + "lengthMeters": 1083.429449802197, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5282601, + 13.2766889 + ], + [ + 52.5281796, + 13.2753156 + ], + [ + 52.5281153, + 13.2742199 + ], + [ + 52.528062, + 13.2733106 + ], + [ + 52.5279265, + 13.2711463 + ], + [ + 52.5278689, + 13.2701582 + ], + [ + 52.5277641, + 13.2683172 + ], + [ + 52.5277421, + 13.2679351 + ], + [ + 52.5274602, + 13.2634457 + ], + [ + 52.5273845, + 13.2622768 + ], + [ + 52.5272889, + 13.2607532 + ] + ] + }, + { + "osmId": "295391382", + "name": null, + "lengthMeters": 436.08046327619496, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778677, + 13.3667206 + ], + [ + 52.4778285, + 13.3666981 + ], + [ + 52.4775965, + 13.3665604 + ], + [ + 52.477119, + 13.3662729 + ], + [ + 52.4767704, + 13.36607 + ], + [ + 52.4762131, + 13.3657456 + ], + [ + 52.4751947, + 13.3651427 + ], + [ + 52.4749715, + 13.365018 + ], + [ + 52.4747668, + 13.3649037 + ], + [ + 52.4746356, + 13.3648345 + ], + [ + 52.4743851, + 13.3647024 + ], + [ + 52.4743656, + 13.3646919 + ], + [ + 52.4743586, + 13.3646882 + ], + [ + 52.4743482, + 13.3646828 + ], + [ + 52.4741675, + 13.3645889 + ] + ] + }, + { + "osmId": "295391384", + "name": null, + "lengthMeters": 655.9270051818332, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5344616, + 13.3606813 + ], + [ + 52.5347142, + 13.36041 + ], + [ + 52.5348143, + 13.3603041 + ], + [ + 52.5353581, + 13.3597275 + ], + [ + 52.5360028, + 13.358854 + ], + [ + 52.5362085, + 13.3584832 + ], + [ + 52.5364367, + 13.3579777 + ], + [ + 52.5366186, + 13.3574765 + ], + [ + 52.5367729, + 13.3569403 + ], + [ + 52.5368753, + 13.3564436 + ], + [ + 52.5369333, + 13.3560964 + ], + [ + 52.5369718, + 13.355803 + ], + [ + 52.5370135, + 13.3554294 + ], + [ + 52.5370348, + 13.3550586 + ], + [ + 52.5370422, + 13.3548269 + ], + [ + 52.5370315, + 13.35425 + ], + [ + 52.5370132, + 13.3539081 + ], + [ + 52.5369926, + 13.3536649 + ], + [ + 52.5369064, + 13.3527499 + ] + ] + }, + { + "osmId": "295391385", + "name": null, + "lengthMeters": 249.37585679912442, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5326504, + 13.3172984 + ], + [ + 52.5325852, + 13.3168086 + ], + [ + 52.532157, + 13.313702 + ] + ] + }, + { + "osmId": "296436456", + "name": null, + "lengthMeters": 550.8744680727771, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557477, + 10.0448662 + ], + [ + 53.5557479, + 10.0455269 + ], + [ + 53.5557394, + 10.0491936 + ], + [ + 53.5557444, + 10.0503243 + ], + [ + 53.5557479, + 10.0511268 + ], + [ + 53.5557258, + 10.053199 + ], + [ + 53.5557256, + 10.0532055 + ] + ] + }, + { + "osmId": "296437705", + "name": null, + "lengthMeters": 514.5361050506289, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5554174, + 10.0571633 + ], + [ + 53.5554173, + 10.057196 + ], + [ + 53.555379, + 10.0576014 + ], + [ + 53.555341, + 10.0580141 + ], + [ + 53.5553017, + 10.058348 + ], + [ + 53.5551827, + 10.0592487 + ], + [ + 53.5550864, + 10.0599301 + ], + [ + 53.5546403, + 10.062921 + ], + [ + 53.5544059, + 10.0645845 + ], + [ + 53.5543824, + 10.0647516 + ] + ] + }, + { + "osmId": "296545881", + "name": null, + "lengthMeters": 431.48568938710036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1623459, + 11.5519362 + ], + [ + 48.1624492, + 11.5522184 + ], + [ + 48.1624639, + 11.5522547 + ], + [ + 48.1624794, + 11.5522897 + ], + [ + 48.1625101, + 11.5523473 + ], + [ + 48.162541, + 11.5523952 + ], + [ + 48.1625568, + 11.5524177 + ], + [ + 48.1625736, + 11.5524378 + ], + [ + 48.162594, + 11.5524578 + ], + [ + 48.1626144, + 11.5524754 + ], + [ + 48.1626398, + 11.5524881 + ], + [ + 48.1626652, + 11.5524972 + ], + [ + 48.1626884, + 11.5525013 + ], + [ + 48.1627116, + 11.5525019 + ], + [ + 48.1627348, + 11.5525001 + ], + [ + 48.162758, + 11.5524938 + ], + [ + 48.1627758, + 11.5524862 + ], + [ + 48.1627936, + 11.5524747 + ], + [ + 48.1628241, + 11.5524478 + ], + [ + 48.1632809, + 11.5520601 + ], + [ + 48.1634491, + 11.5519133 + ], + [ + 48.1635219, + 11.5518565 + ], + [ + 48.1635521, + 11.5518258 + ], + [ + 48.1635795, + 11.551792 + ], + [ + 48.1636089, + 11.551752 + ], + [ + 48.1636355, + 11.5517089 + ], + [ + 48.1636527, + 11.551663 + ], + [ + 48.1636685, + 11.551617 + ], + [ + 48.1636839, + 11.5515602 + ], + [ + 48.1636943, + 11.5515023 + ], + [ + 48.1636997, + 11.5514617 + ], + [ + 48.1637029, + 11.55142 + ], + [ + 48.1637012, + 11.5513743 + ], + [ + 48.163698, + 11.5513285 + ], + [ + 48.1636942, + 11.5512855 + ], + [ + 48.1636883, + 11.5512436 + ], + [ + 48.1636778, + 11.5512034 + ], + [ + 48.1636652, + 11.5511633 + ], + [ + 48.1636507, + 11.5511248 + ], + [ + 48.1636347, + 11.5510863 + ], + [ + 48.1636185, + 11.5510513 + ], + [ + 48.1635987, + 11.5510162 + ], + [ + 48.1635767, + 11.5509873 + ], + [ + 48.1635532, + 11.5509616 + ], + [ + 48.1635093, + 11.550925 + ], + [ + 48.1634875, + 11.5509085 + ], + [ + 48.1634635, + 11.5508951 + ], + [ + 48.1634406, + 11.5508843 + ], + [ + 48.1634163, + 11.5508767 + ], + [ + 48.1632946, + 11.5508633 + ], + [ + 48.163189, + 11.5508633 + ], + [ + 48.1624502, + 11.5508579 + ], + [ + 48.1624223, + 11.550859 + ], + [ + 48.1623929, + 11.5508633 + ], + [ + 48.1623707, + 11.5508716 + ], + [ + 48.1623486, + 11.5508832 + ], + [ + 48.1623261, + 11.5508963 + ], + [ + 48.162305, + 11.5509105 + ], + [ + 48.1622779, + 11.5509412 + ], + [ + 48.1622523, + 11.5509772 + ], + [ + 48.1622308, + 11.5510162 + ], + [ + 48.16221, + 11.5510595 + ], + [ + 48.1622008, + 11.5510902 + ], + [ + 48.1621928, + 11.5511208 + ], + [ + 48.1621875, + 11.5511571 + ], + [ + 48.1621828, + 11.5511943 + ], + [ + 48.16218, + 11.5512391 + ], + [ + 48.1621786, + 11.5512839 + ], + [ + 48.1621812, + 11.5513356 + ], + [ + 48.1621865, + 11.5513884 + ], + [ + 48.1622029, + 11.5514791 + ] + ] + }, + { + "osmId": "296770471", + "name": null, + "lengthMeters": 301.2511655097931, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5394997, + 10.1160448 + ], + [ + 53.5398886, + 10.1151007 + ], + [ + 53.5402716, + 10.1141728 + ], + [ + 53.5405095, + 10.1135952 + ], + [ + 53.5407188, + 10.1130896 + ], + [ + 53.5408106, + 10.1128446 + ], + [ + 53.5409188, + 10.1125531 + ], + [ + 53.5410119, + 10.1122647 + ] + ] + }, + { + "osmId": "297354243", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 9240.70926352814, + "maxSpeedKph": 250.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5396634, + 13.1157115 + ], + [ + 52.5397474, + 13.1145173 + ], + [ + 52.5398537, + 13.1129878 + ], + [ + 52.5399032, + 13.1122536 + ], + [ + 52.5400614, + 13.1100085 + ], + [ + 52.540218, + 13.1078053 + ], + [ + 52.540457, + 13.104417 + ], + [ + 52.5407088, + 13.1007947 + ], + [ + 52.5408642, + 13.0985987 + ], + [ + 52.5410834, + 13.0954734 + ], + [ + 52.5413591, + 13.0915639 + ], + [ + 52.5414966, + 13.0896534 + ], + [ + 52.5417211, + 13.0868201 + ], + [ + 52.5417451, + 13.0865109 + ], + [ + 52.5419695, + 13.0835875 + ], + [ + 52.5422205, + 13.0803624 + ], + [ + 52.5423601, + 13.0785175 + ], + [ + 52.5424269, + 13.0776543 + ], + [ + 52.5426279, + 13.0750586 + ], + [ + 52.5426329, + 13.0749949 + ], + [ + 52.5427507, + 13.0734668 + ], + [ + 52.542815, + 13.072578 + ], + [ + 52.5428649, + 13.0718439 + ], + [ + 52.5430835, + 13.0687068 + ], + [ + 52.5432653, + 13.0660983 + ], + [ + 52.5434919, + 13.0628481 + ], + [ + 52.5436762, + 13.0602387 + ], + [ + 52.5438796, + 13.0572317 + ], + [ + 52.5440778, + 13.0539542 + ], + [ + 52.5442408, + 13.051221 + ], + [ + 52.5444278, + 13.0484811 + ], + [ + 52.5446188, + 13.0457272 + ], + [ + 52.5448315, + 13.0426494 + ], + [ + 52.54495, + 13.0410696 + ], + [ + 52.5450354, + 13.0397096 + ], + [ + 52.5452458, + 13.036653 + ], + [ + 52.5454244, + 13.0340564 + ], + [ + 52.5456152, + 13.0313297 + ], + [ + 52.5458247, + 13.0282486 + ], + [ + 52.5459886, + 13.0258937 + ], + [ + 52.546051, + 13.0249989 + ], + [ + 52.5462443, + 13.022225 + ], + [ + 52.5464374, + 13.0194542 + ], + [ + 52.5466276, + 13.0166934 + ], + [ + 52.5467394, + 13.0150845 + ], + [ + 52.546841, + 13.0136148 + ], + [ + 52.5468897, + 13.0129032 + ], + [ + 52.5470645, + 13.010351 + ], + [ + 52.5472545, + 13.00759 + ], + [ + 52.5474448, + 13.004823 + ], + [ + 52.5476823, + 13.0014346 + ], + [ + 52.5478425, + 12.9991484 + ], + [ + 52.5480571, + 12.9963855 + ], + [ + 52.5481286, + 12.9956311 + ], + [ + 52.5481425, + 12.9954854 + ], + [ + 52.5482301, + 12.9945611 + ], + [ + 52.5483338, + 12.9935455 + ], + [ + 52.5484278, + 12.9927351 + ], + [ + 52.5487358, + 12.9900807 + ], + [ + 52.5490982, + 12.9870539 + ], + [ + 52.5493641, + 12.9847823 + ], + [ + 52.5494684, + 12.9838485 + ], + [ + 52.5495342, + 12.9832591 + ], + [ + 52.5496867, + 12.9818338 + ], + [ + 52.5497482, + 12.9810867 + ], + [ + 52.5498277, + 12.98012 + ] + ] + }, + { + "osmId": "297354244", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 532.5207313644322, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5390709, + 13.1235266 + ], + [ + 52.5392222, + 13.1213643 + ], + [ + 52.5393876, + 13.1190211 + ], + [ + 52.5395793, + 13.1162822 + ], + [ + 52.5396207, + 13.1157047 + ] + ] + }, + { + "osmId": "298165267", + "name": null, + "lengthMeters": 296.8151507520894, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5420267, + 10.1080997 + ], + [ + 53.5418286, + 10.1088856 + ], + [ + 53.5416048, + 10.1097285 + ], + [ + 53.5409181, + 10.1121854 + ] + ] + }, + { + "osmId": "298165268", + "name": null, + "lengthMeters": 685.7453599675389, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5439329, + 10.1042727 + ], + [ + 53.5440374, + 10.1040597 + ], + [ + 53.5441517, + 10.1038139 + ], + [ + 53.5443674, + 10.1032915 + ], + [ + 53.5456355, + 10.1001725 + ], + [ + 53.5463608, + 10.0983329 + ], + [ + 53.5473967, + 10.0956883 + ] + ] + }, + { + "osmId": "298165269", + "name": null, + "lengthMeters": 311.7195769216923, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537319, + 9.9923671 + ], + [ + 53.5538065, + 9.9920795 + ], + [ + 53.5539081, + 9.9917373 + ], + [ + 53.5539782, + 9.9915412 + ], + [ + 53.5540596, + 9.9913522 + ], + [ + 53.5541165, + 9.991218 + ], + [ + 53.5542301, + 9.9909697 + ], + [ + 53.5543103, + 9.9908091 + ], + [ + 53.5544959, + 9.9904991 + ], + [ + 53.5547078, + 9.990163 + ], + [ + 53.5548876, + 9.9898915 + ], + [ + 53.5550664, + 9.9895776 + ], + [ + 53.5552025, + 9.9892968 + ], + [ + 53.5553228, + 9.9889889 + ], + [ + 53.5554129, + 9.9887228 + ], + [ + 53.5554289, + 9.9886655 + ] + ] + }, + { + "osmId": "298165270", + "name": null, + "lengthMeters": 545.8473847025839, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5713515, + 9.9533344 + ], + [ + 53.5712729, + 9.9535333 + ], + [ + 53.5712011, + 9.9536946 + ], + [ + 53.5711724, + 9.9537578 + ], + [ + 53.5711062, + 9.9538925 + ], + [ + 53.5710822, + 9.9539377 + ], + [ + 53.5710238, + 9.9540454 + ], + [ + 53.5709451, + 9.9541842 + ], + [ + 53.5708858, + 9.9543023 + ], + [ + 53.5708546, + 9.9543654 + ], + [ + 53.5708255, + 9.9544334 + ], + [ + 53.5707954, + 9.9545088 + ], + [ + 53.5707621, + 9.9546074 + ], + [ + 53.5707231, + 9.9547432 + ], + [ + 53.5706872, + 9.9548849 + ], + [ + 53.570423, + 9.9559987 + ], + [ + 53.5701094, + 9.9573172 + ], + [ + 53.5699964, + 9.9578394 + ], + [ + 53.5699299, + 9.9581113 + ], + [ + 53.5698731, + 9.9582944 + ], + [ + 53.5697964, + 9.9585005 + ], + [ + 53.5696763, + 9.9588135 + ], + [ + 53.5696034, + 9.959005 + ], + [ + 53.5695652, + 9.9591221 + ], + [ + 53.5695226, + 9.9592809 + ], + [ + 53.5694897, + 9.9594011 + ], + [ + 53.5694527, + 9.9595658 + ], + [ + 53.5694204, + 9.9597379 + ], + [ + 53.5693991, + 9.9599097 + ], + [ + 53.5693881, + 9.9600365 + ], + [ + 53.5693813, + 9.9601582 + ], + [ + 53.5693781, + 9.9602812 + ], + [ + 53.5693789, + 9.9604213 + ], + [ + 53.5693838, + 9.9605517 + ], + [ + 53.5693902, + 9.9606607 + ], + [ + 53.5693976, + 9.9607577 + ] + ] + }, + { + "osmId": "298165271", + "name": null, + "lengthMeters": 476.17203113348444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5529868, + 9.9961669 + ], + [ + 53.5528958, + 9.9966975 + ], + [ + 53.5528156, + 9.997196 + ], + [ + 53.5527757, + 9.997476 + ], + [ + 53.5527418, + 9.997745 + ], + [ + 53.5527084, + 9.998071 + ], + [ + 53.5526835, + 9.9984405 + ], + [ + 53.5526702, + 9.9990158 + ], + [ + 53.5526757, + 9.9993732 + ], + [ + 53.5526882, + 9.9996204 + ], + [ + 53.5527117, + 9.9999001 + ], + [ + 53.5527697, + 10.0003338 + ], + [ + 53.5528019, + 10.0005304 + ], + [ + 53.5528418, + 10.0007117 + ], + [ + 53.5528922, + 10.0009028 + ], + [ + 53.553008, + 10.001285 + ], + [ + 53.553145, + 10.0016874 + ], + [ + 53.5532566, + 10.0019648 + ], + [ + 53.5534745, + 10.0025506 + ], + [ + 53.5535985, + 10.0029382 + ] + ] + }, + { + "osmId": "298179731", + "name": null, + "lengthMeters": 396.4577539409786, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5274979, + 10.1500096 + ], + [ + 53.5261844, + 10.1499514 + ], + [ + 53.5256053, + 10.1499126 + ], + [ + 53.5250699, + 10.1498314 + ], + [ + 53.5248168, + 10.1497789 + ], + [ + 53.5239472, + 10.1495595 + ] + ] + }, + { + "osmId": "298179735", + "name": null, + "lengthMeters": 1900.6473627163373, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293779, + 10.1500968 + ], + [ + 53.5301042, + 10.1501304 + ], + [ + 53.5308224, + 10.1501497 + ], + [ + 53.5316545, + 10.1501671 + ], + [ + 53.5325017, + 10.1502054 + ], + [ + 53.5329199, + 10.1502162 + ], + [ + 53.533222, + 10.1502035 + ], + [ + 53.5336373, + 10.1501688 + ], + [ + 53.5340361, + 10.1501122 + ], + [ + 53.5342808, + 10.1500601 + ], + [ + 53.5346007, + 10.1499573 + ], + [ + 53.5349548, + 10.1498103 + ], + [ + 53.5354013, + 10.1495977 + ], + [ + 53.5358064, + 10.1493846 + ], + [ + 53.536168, + 10.1491448 + ], + [ + 53.5365416, + 10.1488852 + ], + [ + 53.5370756, + 10.1484404 + ], + [ + 53.5375871, + 10.147983 + ], + [ + 53.5381199, + 10.1475183 + ], + [ + 53.538575, + 10.1471171 + ], + [ + 53.5392292, + 10.1465423 + ], + [ + 53.5395302, + 10.1462764 + ], + [ + 53.539897, + 10.1459257 + ], + [ + 53.5400284, + 10.1457745 + ], + [ + 53.540192, + 10.1455711 + ], + [ + 53.54026, + 10.1454776 + ], + [ + 53.5403735, + 10.1453132 + ], + [ + 53.5405215, + 10.14507 + ], + [ + 53.5405952, + 10.1449221 + ], + [ + 53.5406641, + 10.1447579 + ], + [ + 53.5407642, + 10.1445024 + ], + [ + 53.5408366, + 10.1443004 + ], + [ + 53.5408928, + 10.1441248 + ], + [ + 53.5409433, + 10.1439583 + ], + [ + 53.5409877, + 10.1437986 + ], + [ + 53.5410778, + 10.1433873 + ], + [ + 53.5411181, + 10.1431453 + ], + [ + 53.54116, + 10.1428804 + ], + [ + 53.5411849, + 10.1426427 + ], + [ + 53.541205, + 10.1424131 + ], + [ + 53.5412164, + 10.1421493 + ], + [ + 53.5412245, + 10.1418265 + ], + [ + 53.54122, + 10.1415178 + ], + [ + 53.5412095, + 10.1411902 + ], + [ + 53.5411933, + 10.1408971 + ], + [ + 53.5411673, + 10.1405731 + ], + [ + 53.5411201, + 10.1400161 + ], + [ + 53.5410555, + 10.139195 + ], + [ + 53.5409986, + 10.1384683 + ], + [ + 53.5409787, + 10.1382139 + ], + [ + 53.5409731, + 10.1381427 + ], + [ + 53.5409158, + 10.1375385 + ], + [ + 53.5408748, + 10.1372222 + ], + [ + 53.5408303, + 10.1369693 + ], + [ + 53.540758, + 10.1366443 + ] + ] + }, + { + "osmId": "298357088", + "name": null, + "lengthMeters": 1455.3606945434726, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4642786, + 13.6580771 + ], + [ + 52.4641358, + 13.6574365 + ], + [ + 52.4637036, + 13.6555199 + ], + [ + 52.4623709, + 13.6495551 + ], + [ + 52.4609102, + 13.6430251 + ], + [ + 52.4597652, + 13.6379133 + ] + ] + }, + { + "osmId": "298691970", + "name": null, + "lengthMeters": 643.680270658577, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.53687, + 13.3527584 + ], + [ + 52.5369267, + 13.3533188 + ], + [ + 52.5369547, + 13.3536686 + ], + [ + 52.5369838, + 13.3542577 + ], + [ + 52.536987, + 13.3545518 + ], + [ + 52.5369833, + 13.3547801 + ], + [ + 52.5369519, + 13.3553041 + ], + [ + 52.5369218, + 13.3555629 + ], + [ + 52.5368904, + 13.3558185 + ], + [ + 52.5368462, + 13.3560834 + ], + [ + 52.5367934, + 13.3563464 + ], + [ + 52.536733, + 13.3566362 + ], + [ + 52.5366799, + 13.3568562 + ], + [ + 52.5365458, + 13.357311 + ], + [ + 52.5363412, + 13.3578342 + ], + [ + 52.5361524, + 13.3582456 + ], + [ + 52.5359694, + 13.3585903 + ], + [ + 52.5357737, + 13.3589025 + ], + [ + 52.5355062, + 13.3592666 + ], + [ + 52.5345413, + 13.3602974 + ], + [ + 52.5343764, + 13.3604778 + ] + ] + }, + { + "osmId": "298691972", + "name": null, + "lengthMeters": 267.45244345197926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5327061, + 13.3622655 + ], + [ + 52.5325695, + 13.3624108 + ], + [ + 52.5320803, + 13.3629368 + ], + [ + 52.5317517, + 13.3632862 + ], + [ + 52.5306891, + 13.3644195 + ] + ] + }, + { + "osmId": "298863214", + "name": null, + "lengthMeters": 187.82886117340425, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5368847, + 13.3525432 + ], + [ + 52.5368646, + 13.3523329 + ], + [ + 52.5367847, + 13.3516194 + ], + [ + 52.5366135, + 13.3499959 + ], + [ + 52.5365936, + 13.3498077 + ] + ] + }, + { + "osmId": "298863215", + "name": null, + "lengthMeters": 385.4511598214174, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.528131, + 13.2367799 + ], + [ + 52.5279256, + 13.2374855 + ], + [ + 52.5274369, + 13.2390008 + ], + [ + 52.5273118, + 13.2393841 + ], + [ + 52.527117, + 13.2400556 + ], + [ + 52.5270195, + 13.2404356 + ], + [ + 52.52695, + 13.2407273 + ], + [ + 52.5268672, + 13.2410973 + ], + [ + 52.5267683, + 13.2416043 + ], + [ + 52.5267099, + 13.2419609 + ] + ] + }, + { + "osmId": "298863217", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 132.29880011949794, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5376123, + 13.1788196 + ], + [ + 52.5376189, + 13.1787757 + ], + [ + 52.5376428, + 13.1786382 + ], + [ + 52.5379208, + 13.1770233 + ], + [ + 52.5379356, + 13.1769371 + ] + ] + }, + { + "osmId": "299128711", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 84.5276922750395, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497507, + 10.0307605 + ], + [ + 53.5500454, + 10.0305598 + ], + [ + 53.5504535, + 10.0302729 + ] + ] + }, + { + "osmId": "299128712", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 141.07860278350987, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4887064, + 10.1723587 + ], + [ + 53.4884642, + 10.1744519 + ] + ] + }, + { + "osmId": "299128713", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 93.13496142622664, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5495325, + 10.0143834 + ], + [ + 53.5495222, + 10.0136986 + ], + [ + 53.5495277, + 10.0135172 + ], + [ + 53.5495321, + 10.0133697 + ], + [ + 53.5495506, + 10.0129755 + ] + ] + }, + { + "osmId": "299128714", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 148.2425962909505, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.550877, + 10.0299687 + ], + [ + 53.5511026, + 10.0297791 + ], + [ + 53.5511323, + 10.0297466 + ], + [ + 53.5512423, + 10.0296262 + ], + [ + 53.5514123, + 10.0294067 + ], + [ + 53.5514501, + 10.0293452 + ], + [ + 53.5515469, + 10.0292019 + ], + [ + 53.5516865, + 10.0289634 + ], + [ + 53.5517722, + 10.0287929 + ], + [ + 53.5518866, + 10.0285438 + ] + ] + }, + { + "osmId": "299128715", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 384.6052648563165, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5388664, + 10.0420881 + ], + [ + 53.5390418, + 10.0415178 + ], + [ + 53.5391552, + 10.0411763 + ], + [ + 53.539351, + 10.0406346 + ], + [ + 53.5395207, + 10.0402027 + ], + [ + 53.5396505, + 10.0399243 + ], + [ + 53.5399213, + 10.0393684 + ], + [ + 53.540124, + 10.0390022 + ], + [ + 53.5401884, + 10.0388972 + ], + [ + 53.5403523, + 10.0386299 + ], + [ + 53.5403664, + 10.0386092 + ], + [ + 53.5406144, + 10.0382449 + ], + [ + 53.5410548, + 10.0376639 + ] + ] + }, + { + "osmId": "299130657", + "name": null, + "lengthMeters": 1101.8554041147856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6102085, + 10.0244427 + ], + [ + 53.6102615, + 10.0246002 + ], + [ + 53.6104547, + 10.0251419 + ], + [ + 53.6106002, + 10.0254974 + ], + [ + 53.6107267, + 10.025777 + ], + [ + 53.6108415, + 10.0259917 + ], + [ + 53.6110299, + 10.0263311 + ], + [ + 53.6112296, + 10.0266568 + ], + [ + 53.6113968, + 10.0268969 + ], + [ + 53.611615, + 10.0271751 + ], + [ + 53.6117796, + 10.0273583 + ], + [ + 53.6119754, + 10.027554 + ], + [ + 53.6122985, + 10.0278278 + ], + [ + 53.6123662, + 10.0278749 + ], + [ + 53.6127424, + 10.0281162 + ], + [ + 53.6135166, + 10.0284229 + ], + [ + 53.6171517, + 10.0296852 + ], + [ + 53.6175967, + 10.0298426 + ], + [ + 53.6180432, + 10.0300168 + ], + [ + 53.6181658, + 10.0300899 + ], + [ + 53.6182829, + 10.0301607 + ], + [ + 53.6183925, + 10.0302475 + ], + [ + 53.618514, + 10.0303483 + ], + [ + 53.6185557, + 10.0303829 + ], + [ + 53.6187579, + 10.0305624 + ], + [ + 53.6190092, + 10.0307537 + ] + ] + }, + { + "osmId": "299130658", + "name": null, + "lengthMeters": 452.29893636606266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.61951, + 10.0310258 + ], + [ + 53.6196329, + 10.0310955 + ], + [ + 53.6197241, + 10.0311486 + ], + [ + 53.6200352, + 10.0313191 + ], + [ + 53.6202802, + 10.0314342 + ], + [ + 53.6203833, + 10.0314702 + ], + [ + 53.6204711, + 10.0314959 + ], + [ + 53.6207821, + 10.0315712 + ], + [ + 53.620956, + 10.0316057 + ], + [ + 53.6212212, + 10.0316515 + ], + [ + 53.6212355, + 10.031654 + ], + [ + 53.621417, + 10.0316854 + ], + [ + 53.6217109, + 10.0317086 + ], + [ + 53.6220088, + 10.0317183 + ], + [ + 53.6223174, + 10.031752 + ], + [ + 53.6227592, + 10.0318928 + ], + [ + 53.6232672, + 10.0320688 + ], + [ + 53.623499, + 10.0321931 + ] + ] + }, + { + "osmId": "299339990", + "name": null, + "lengthMeters": 457.5630451910753, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4739256, + 13.3649047 + ], + [ + 52.4740814, + 13.3649968 + ], + [ + 52.474182, + 13.3650563 + ], + [ + 52.4743048, + 13.3651287 + ], + [ + 52.4745634, + 13.3652823 + ], + [ + 52.4747797, + 13.3654108 + ], + [ + 52.474799, + 13.3654223 + ], + [ + 52.4752953, + 13.3657171 + ], + [ + 52.4761165, + 13.3662047 + ], + [ + 52.4766766, + 13.3665373 + ], + [ + 52.4770222, + 13.3667425 + ], + [ + 52.477468, + 13.3670072 + ], + [ + 52.4777276, + 13.3671625 + ], + [ + 52.4777721, + 13.3671891 + ], + [ + 52.4777955, + 13.3672012 + ] + ] + }, + { + "osmId": "299339993", + "name": "Anhalter Bahn", + "lengthMeters": 1424.3022020553021, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.445054, + 13.3509807 + ], + [ + 52.4450625, + 13.3509906 + ], + [ + 52.4451809, + 13.3511282 + ], + [ + 52.445742, + 13.3517494 + ], + [ + 52.4459828, + 13.3520033 + ], + [ + 52.446225, + 13.3522508 + ], + [ + 52.4465032, + 13.3525237 + ], + [ + 52.4466986, + 13.3527091 + ], + [ + 52.4468947, + 13.3528933 + ], + [ + 52.4471836, + 13.3531509 + ], + [ + 52.447489, + 13.3534153 + ], + [ + 52.4477399, + 13.3536211 + ], + [ + 52.4477675, + 13.3536437 + ], + [ + 52.4484567, + 13.3541931 + ], + [ + 52.4493081, + 13.3548692 + ], + [ + 52.449656, + 13.3551423 + ], + [ + 52.4499462, + 13.3553638 + ], + [ + 52.4504735, + 13.355753 + ], + [ + 52.4507861, + 13.3559666 + ], + [ + 52.4509712, + 13.3560887 + ], + [ + 52.4512264, + 13.3562436 + ], + [ + 52.4514826, + 13.3563951 + ], + [ + 52.4517168, + 13.3565231 + ], + [ + 52.4519532, + 13.3566494 + ], + [ + 52.4522058, + 13.3567692 + ], + [ + 52.4524594, + 13.3568872 + ], + [ + 52.4527163, + 13.356994 + ], + [ + 52.4529762, + 13.3570992 + ], + [ + 52.4534994, + 13.3572958 + ], + [ + 52.4538094, + 13.3574055 + ], + [ + 52.4544644, + 13.3576423 + ], + [ + 52.4555285, + 13.3580183 + ], + [ + 52.4568936, + 13.3585086 + ] + ] + }, + { + "osmId": "299339994", + "name": "Anhalter Bahn", + "lengthMeters": 654.8144676956833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4603004, + 13.3597201 + ], + [ + 52.4603142, + 13.3597255 + ], + [ + 52.4606374, + 13.3598459 + ], + [ + 52.4621562, + 13.3603851 + ], + [ + 52.4622871, + 13.3604316 + ], + [ + 52.4641759, + 13.3611058 + ], + [ + 52.4652153, + 13.3614776 + ], + [ + 52.4658044, + 13.3616884 + ], + [ + 52.4659109, + 13.361724 + ], + [ + 52.4659721, + 13.3617461 + ], + [ + 52.4660545, + 13.361776 + ] + ] + }, + { + "osmId": "299349732", + "name": null, + "lengthMeters": 1442.0246293121031, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1370851, + 11.6174673 + ], + [ + 48.1371006, + 11.6176311 + ], + [ + 48.1371069, + 11.6176874 + ], + [ + 48.1371504, + 11.6180585 + ], + [ + 48.1371552, + 11.618104 + ], + [ + 48.1371578, + 11.6181318 + ], + [ + 48.1371651, + 11.6181958 + ], + [ + 48.1371707, + 11.6182655 + ], + [ + 48.1371745, + 11.6183541 + ], + [ + 48.137176, + 11.6184232 + ], + [ + 48.1371686, + 11.6186132 + ], + [ + 48.1371728, + 11.6187361 + ], + [ + 48.1371775, + 11.6188237 + ], + [ + 48.1372163, + 11.6192864 + ], + [ + 48.1372207, + 11.6193515 + ], + [ + 48.137224, + 11.6194172 + ], + [ + 48.1372306, + 11.619546 + ], + [ + 48.1372332, + 11.6196803 + ], + [ + 48.1372317, + 11.6198138 + ], + [ + 48.1372274, + 11.6198795 + ], + [ + 48.1372214, + 11.6199463 + ], + [ + 48.1372131, + 11.6200131 + ], + [ + 48.137204, + 11.6200788 + ], + [ + 48.1371902, + 11.6201649 + ], + [ + 48.1371739, + 11.6202497 + ], + [ + 48.1371537, + 11.6203364 + ], + [ + 48.1371319, + 11.6204206 + ], + [ + 48.13711, + 11.6205032 + ], + [ + 48.1370599, + 11.6206639 + ], + [ + 48.1369261, + 11.6210985 + ], + [ + 48.1368366, + 11.6213891 + ], + [ + 48.1367064, + 11.6217503 + ], + [ + 48.136639, + 11.6219377 + ], + [ + 48.1366125, + 11.6220115 + ], + [ + 48.1365071, + 11.6222608 + ], + [ + 48.1362961, + 11.6227603 + ], + [ + 48.1360051, + 11.6234711 + ], + [ + 48.1358913, + 11.6237737 + ], + [ + 48.1358348, + 11.6239626 + ], + [ + 48.1357837, + 11.6241477 + ], + [ + 48.1357037, + 11.6245147 + ], + [ + 48.1356814, + 11.624633 + ], + [ + 48.1356647, + 11.6247587 + ], + [ + 48.1356598, + 11.6248506 + ], + [ + 48.1356536, + 11.6249973 + ], + [ + 48.1356542, + 11.6251443 + ], + [ + 48.135661, + 11.6253172 + ], + [ + 48.1356687, + 11.6254894 + ], + [ + 48.1358448, + 11.6289061 + ], + [ + 48.1358851, + 11.6294393 + ], + [ + 48.1359182, + 11.6299777 + ], + [ + 48.1359318, + 11.6303837 + ], + [ + 48.135945, + 11.6306698 + ], + [ + 48.1359906, + 11.6320233 + ], + [ + 48.1360098, + 11.6333886 + ], + [ + 48.1360098, + 11.6334112 + ], + [ + 48.1360094, + 11.633428 + ], + [ + 48.1360082, + 11.6334629 + ], + [ + 48.1360069, + 11.633505 + ], + [ + 48.1360042, + 11.633538 + ], + [ + 48.1359999, + 11.6335726 + ], + [ + 48.1359906, + 11.6336325 + ], + [ + 48.1359828, + 11.6336703 + ], + [ + 48.1359728, + 11.6337122 + ], + [ + 48.1359619, + 11.6337501 + ], + [ + 48.1359469, + 11.6337954 + ], + [ + 48.13593, + 11.6338406 + ], + [ + 48.1358983, + 11.6339229 + ], + [ + 48.135848, + 11.634055 + ], + [ + 48.1357056, + 11.6343887 + ], + [ + 48.1356853, + 11.6344524 + ], + [ + 48.1356672, + 11.6345155 + ], + [ + 48.1356607, + 11.6345495 + ], + [ + 48.135655, + 11.634584 + ], + [ + 48.1356522, + 11.6346193 + ], + [ + 48.1356518, + 11.6346539 + ], + [ + 48.1356561, + 11.634693 + ], + [ + 48.1356627, + 11.6347293 + ], + [ + 48.1356734, + 11.6347651 + ], + [ + 48.1356856, + 11.6347969 + ], + [ + 48.1357159, + 11.6348573 + ], + [ + 48.1357337, + 11.6348834 + ], + [ + 48.1357526, + 11.6349061 + ], + [ + 48.1357809, + 11.634929 + ], + [ + 48.1358107, + 11.6349453 + ], + [ + 48.1358414, + 11.6349548 + ], + [ + 48.1358594, + 11.6349575 + ], + [ + 48.1358683, + 11.634958 + ], + [ + 48.1358774, + 11.6349572 + ], + [ + 48.1358953, + 11.634954 + ], + [ + 48.1359135, + 11.6349484 + ], + [ + 48.1359302, + 11.6349423 + ], + [ + 48.1359465, + 11.6349351 + ], + [ + 48.1359641, + 11.6349248 + ], + [ + 48.1359809, + 11.6349123 + ], + [ + 48.135997, + 11.6348952 + ], + [ + 48.136012, + 11.6348763 + ], + [ + 48.1360258, + 11.6348548 + ], + [ + 48.1360392, + 11.6348325 + ], + [ + 48.1360498, + 11.634811 + ], + [ + 48.1360592, + 11.6347884 + ], + [ + 48.1360668, + 11.6347643 + ], + [ + 48.1360731, + 11.6347378 + ], + [ + 48.1360762, + 11.6347107 + ], + [ + 48.136078, + 11.6346843 + ], + [ + 48.1360795, + 11.6346563 + ], + [ + 48.13608, + 11.6346286 + ], + [ + 48.1360676, + 11.6341169 + ] + ] + }, + { + "osmId": "299420539", + "name": null, + "lengthMeters": 639.1854510358185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6050977, + 10.0065436 + ], + [ + 53.6048025, + 10.0053649 + ], + [ + 53.6045061, + 10.00418 + ], + [ + 53.6044712, + 10.0040437 + ], + [ + 53.6043552, + 10.0035917 + ], + [ + 53.6042068, + 10.0030731 + ], + [ + 53.6041351, + 10.00285 + ], + [ + 53.6040634, + 10.00263 + ], + [ + 53.603889, + 10.002097 + ], + [ + 53.6037555, + 10.0017544 + ], + [ + 53.603699, + 10.0016127 + ], + [ + 53.6036273, + 10.0014328 + ], + [ + 53.6034338, + 10.0008687 + ], + [ + 53.6033122, + 10.0004725 + ], + [ + 53.6031752, + 9.999982 + ], + [ + 53.6029916, + 9.9993436 + ], + [ + 53.6029184, + 9.9990737 + ], + [ + 53.6028209, + 9.9987141 + ], + [ + 53.6025727, + 9.997857 + ] + ] + }, + { + "osmId": "299420555", + "name": null, + "lengthMeters": 76.22328362291272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6022299, + 9.9966669 + ], + [ + 53.6022198, + 9.9966363 + ], + [ + 53.6021609, + 9.996448 + ], + [ + 53.6020991, + 9.9962708 + ], + [ + 53.602035, + 9.9961025 + ], + [ + 53.6019554, + 9.9959326 + ], + [ + 53.6018428, + 9.9957195 + ] + ] + }, + { + "osmId": "299648165", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 1802.756929219654, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4905052, + 10.1565056 + ], + [ + 53.4905694, + 10.1559039 + ], + [ + 53.4907392, + 10.1545563 + ], + [ + 53.4908542, + 10.1536431 + ], + [ + 53.4911456, + 10.1515384 + ], + [ + 53.4912585, + 10.1508188 + ], + [ + 53.4912627, + 10.1507923 + ], + [ + 53.4913841, + 10.1501067 + ], + [ + 53.4916613, + 10.1487126 + ], + [ + 53.4916639, + 10.1487001 + ], + [ + 53.4919269, + 10.1474444 + ], + [ + 53.4923583, + 10.1455808 + ], + [ + 53.4928332, + 10.1436789 + ], + [ + 53.4933618, + 10.1418167 + ], + [ + 53.4936563, + 10.1408942 + ], + [ + 53.4941313, + 10.1395621 + ], + [ + 53.4946393, + 10.1382845 + ], + [ + 53.4950923, + 10.1372228 + ], + [ + 53.495365, + 10.1365837 + ], + [ + 53.4958691, + 10.1354596 + ], + [ + 53.4965248, + 10.1340426 + ], + [ + 53.4973958, + 10.1322572 + ] + ] + }, + { + "osmId": "299648166", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 732.1155703133614, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4884642, + 10.1744519 + ], + [ + 53.4884585, + 10.1745025 + ], + [ + 53.4875359, + 10.1826475 + ], + [ + 53.4872371, + 10.1852873 + ], + [ + 53.487233, + 10.1853225 + ] + ] + }, + { + "osmId": "299648167", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 771.3337513875715, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5336997, + 10.0590896 + ], + [ + 53.5336915, + 10.059108 + ], + [ + 53.5335258, + 10.0595533 + ], + [ + 53.5332573, + 10.0602126 + ], + [ + 53.5326705, + 10.0616567 + ], + [ + 53.532152, + 10.0629331 + ], + [ + 53.5312708, + 10.0650653 + ], + [ + 53.5310013, + 10.0656789 + ], + [ + 53.5304095, + 10.0669737 + ], + [ + 53.5301867, + 10.0674406 + ], + [ + 53.5297039, + 10.0684004 + ], + [ + 53.5296681, + 10.0684716 + ], + [ + 53.5296354, + 10.0685365 + ] + ] + }, + { + "osmId": "299800687", + "name": null, + "lengthMeters": 194.64801273092567, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5572239, + 9.9967267 + ], + [ + 53.5572484, + 9.9966355 + ], + [ + 53.5574738, + 9.9957973 + ], + [ + 53.557677, + 9.9950379 + ], + [ + 53.5577395, + 9.9948073 + ], + [ + 53.5578218, + 9.9945211 + ], + [ + 53.5578762, + 9.9943544 + ], + [ + 53.5579823, + 9.9940743 + ] + ] + }, + { + "osmId": "299870367", + "name": null, + "lengthMeters": 6580.5465202137675, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6397874, + 13.7513634 + ], + [ + 52.6399295, + 13.7518806 + ], + [ + 52.6400705, + 13.7523472 + ], + [ + 52.6401955, + 13.7527008 + ], + [ + 52.6403231, + 13.7530459 + ], + [ + 52.6404369, + 13.7533213 + ], + [ + 52.6405559, + 13.7535974 + ], + [ + 52.6407833, + 13.7540734 + ], + [ + 52.6410193, + 13.7545248 + ], + [ + 52.6414024, + 13.7551253 + ], + [ + 52.6421812, + 13.7562241 + ], + [ + 52.6429637, + 13.7573256 + ], + [ + 52.6433961, + 13.757934 + ], + [ + 52.6436235, + 13.7582644 + ], + [ + 52.6438433, + 13.7586147 + ], + [ + 52.6442023, + 13.7592175 + ], + [ + 52.6447034, + 13.760179 + ], + [ + 52.6455394, + 13.7620611 + ], + [ + 52.6464472, + 13.7640418 + ], + [ + 52.6486058, + 13.7687469 + ], + [ + 52.6507661, + 13.7735074 + ], + [ + 52.6545421, + 13.7817886 + ], + [ + 52.656216, + 13.7854558 + ], + [ + 52.6582113, + 13.7898349 + ], + [ + 52.6584975, + 13.7904705 + ], + [ + 52.6586411, + 13.7907978 + ], + [ + 52.6613919, + 13.7968009 + ], + [ + 52.663132, + 13.8006295 + ], + [ + 52.6640023, + 13.8025965 + ], + [ + 52.6670662, + 13.8092678 + ], + [ + 52.6691858, + 13.8139375 + ], + [ + 52.6697016, + 13.8150556 + ], + [ + 52.6702145, + 13.8161895 + ], + [ + 52.6712295, + 13.8184153 + ], + [ + 52.6713434, + 13.8186712 + ], + [ + 52.67228, + 13.8207199 + ], + [ + 52.6725051, + 13.8212202 + ], + [ + 52.6727173, + 13.8217151 + ], + [ + 52.6731452, + 13.8228878 + ], + [ + 52.6732368, + 13.8231441 + ], + [ + 52.6737071, + 13.8244611 + ], + [ + 52.6740163, + 13.8252592 + ], + [ + 52.6743279, + 13.8259745 + ], + [ + 52.6748116, + 13.8270408 + ], + [ + 52.674952, + 13.8273503 + ], + [ + 52.6756046, + 13.8287912 + ] + ] + }, + { + "osmId": "299870376", + "name": "Wriezener Bahn", + "lengthMeters": 776.390253805476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6362003, + 13.7311925 + ], + [ + 52.6362834, + 13.7315704 + ], + [ + 52.6363756, + 13.7319509 + ], + [ + 52.636455, + 13.7323224 + ], + [ + 52.6365557, + 13.732899 + ], + [ + 52.6365674, + 13.7329662 + ], + [ + 52.6366547, + 13.73346 + ], + [ + 52.6374232, + 13.7378182 + ], + [ + 52.6379543, + 13.7408309 + ], + [ + 52.6380348, + 13.7414211 + ], + [ + 52.6380773, + 13.7418013 + ], + [ + 52.6381363, + 13.7422392 + ] + ] + }, + { + "osmId": "299875273", + "name": null, + "lengthMeters": 7555.391663846841, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1428852, + 11.5294065 + ], + [ + 48.1428812, + 11.5302073 + ], + [ + 48.1428809, + 11.5308073 + ], + [ + 48.1428802, + 11.5316008 + ], + [ + 48.1428836, + 11.5322703 + ], + [ + 48.1428545, + 11.5330344 + ], + [ + 48.1428359, + 11.5332795 + ], + [ + 48.1407127, + 11.5529297 + ], + [ + 48.1406414, + 11.5536087 + ], + [ + 48.1405417, + 11.5550639 + ], + [ + 48.1403101, + 11.5583741 + ], + [ + 48.1402814, + 11.5587435 + ], + [ + 48.1402741, + 11.5588763 + ], + [ + 48.1402006, + 11.5599286 + ], + [ + 48.1401781, + 11.5603313 + ], + [ + 48.1401519, + 11.5608262 + ], + [ + 48.1401334, + 11.5612882 + ], + [ + 48.1400368, + 11.5624429 + ], + [ + 48.1400265, + 11.5626623 + ], + [ + 48.140024, + 11.5631475 + ], + [ + 48.1400305, + 11.5635115 + ], + [ + 48.140199, + 11.5666386 + ], + [ + 48.140196, + 11.5672437 + ], + [ + 48.1401749, + 11.567832 + ], + [ + 48.1401144, + 11.5684096 + ], + [ + 48.1399041, + 11.5695704 + ], + [ + 48.1395502, + 11.571215 + ], + [ + 48.1393773, + 11.5719288 + ], + [ + 48.1391117, + 11.5731133 + ], + [ + 48.1389743, + 11.5738156 + ], + [ + 48.1389332, + 11.574302 + ], + [ + 48.1389136, + 11.5745508 + ], + [ + 48.1388522, + 11.5751644 + ], + [ + 48.1388102, + 11.5756533 + ], + [ + 48.1387259, + 11.5766844 + ], + [ + 48.1386537, + 11.5775834 + ], + [ + 48.1386511, + 11.5776852 + ], + [ + 48.138663, + 11.5779323 + ], + [ + 48.1386826, + 11.5783095 + ], + [ + 48.1387291, + 11.5790584 + ], + [ + 48.1387704, + 11.5795213 + ], + [ + 48.1388026, + 11.5803197 + ], + [ + 48.1388293, + 11.581222 + ], + [ + 48.1388437, + 11.5819658 + ], + [ + 48.1388382, + 11.5825464 + ], + [ + 48.1388302, + 11.5827546 + ], + [ + 48.1388118, + 11.5830575 + ], + [ + 48.1387578, + 11.5834756 + ], + [ + 48.138705, + 11.5838456 + ], + [ + 48.1386062, + 11.5843618 + ], + [ + 48.1385396, + 11.5847507 + ], + [ + 48.1385086, + 11.5848901 + ], + [ + 48.1383169, + 11.5856765 + ], + [ + 48.1380883, + 11.5866126 + ], + [ + 48.1378954, + 11.5873576 + ], + [ + 48.13771, + 11.5880098 + ], + [ + 48.1374832, + 11.5888134 + ], + [ + 48.1372639, + 11.5894776 + ], + [ + 48.1370556, + 11.5900335 + ], + [ + 48.1367298, + 11.5907785 + ], + [ + 48.1364204, + 11.5913053 + ], + [ + 48.1359903, + 11.5918307 + ], + [ + 48.1356056, + 11.5922205 + ], + [ + 48.1347146, + 11.5929137 + ], + [ + 48.1342652, + 11.5932668 + ], + [ + 48.1336874, + 11.5936721 + ], + [ + 48.1329315, + 11.5941263 + ], + [ + 48.1319526, + 11.5946693 + ], + [ + 48.1301397, + 11.5954972 + ], + [ + 48.1278699, + 11.5964751 + ], + [ + 48.1269871, + 11.5968966 + ], + [ + 48.1264891, + 11.5971927 + ], + [ + 48.1260048, + 11.5975301 + ], + [ + 48.1255087, + 11.5979563 + ], + [ + 48.1250952, + 11.598432 + ], + [ + 48.124864, + 11.5987781 + ], + [ + 48.1246142, + 11.5992338 + ], + [ + 48.1243676, + 11.5998759 + ], + [ + 48.1242725, + 11.6005383 + ], + [ + 48.1242439, + 11.6011733 + ], + [ + 48.1242673, + 11.6016416 + ], + [ + 48.1243705, + 11.6022881 + ], + [ + 48.1245653, + 11.6028967 + ], + [ + 48.1247067, + 11.6032189 + ], + [ + 48.124876, + 11.6035384 + ], + [ + 48.1252146, + 11.6041189 + ], + [ + 48.1260425, + 11.605406 + ], + [ + 48.1266317, + 11.6063065 + ], + [ + 48.1269768, + 11.6068586 + ], + [ + 48.127385, + 11.6074727 + ], + [ + 48.1275933, + 11.6077946 + ], + [ + 48.1279274, + 11.6082904 + ], + [ + 48.128569, + 11.6091576 + ], + [ + 48.1288603, + 11.6094473 + ], + [ + 48.1291649, + 11.6096568 + ], + [ + 48.1295507, + 11.6097894 + ], + [ + 48.1298869, + 11.6098926 + ], + [ + 48.130371, + 11.6100559 + ], + [ + 48.1307971, + 11.6102676 + ], + [ + 48.1311425, + 11.6105307 + ], + [ + 48.1315255, + 11.6109375 + ], + [ + 48.1318818, + 11.6113743 + ], + [ + 48.1322928, + 11.6118128 + ] + ] + }, + { + "osmId": "299875274", + "name": null, + "lengthMeters": 1037.9762079375812, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436487, + 11.5154913 + ], + [ + 48.143673, + 11.5162958 + ], + [ + 48.1437061, + 11.5177131 + ], + [ + 48.1436949, + 11.5185269 + ], + [ + 48.1436705, + 11.5192518 + ], + [ + 48.1436466, + 11.5198301 + ], + [ + 48.1436018, + 11.520644 + ], + [ + 48.1435284, + 11.5215821 + ], + [ + 48.1433867, + 11.5229255 + ], + [ + 48.1432193, + 11.5247347 + ], + [ + 48.1431077, + 11.5261152 + ], + [ + 48.1429966, + 11.5275539 + ], + [ + 48.1428852, + 11.5294065 + ] + ] + }, + { + "osmId": "299875275", + "name": null, + "lengthMeters": 7533.464880825726, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1323263, + 11.6117694 + ], + [ + 48.131957, + 11.6112024 + ], + [ + 48.1315992, + 11.6107478 + ], + [ + 48.1312413, + 11.6103233 + ], + [ + 48.1308959, + 11.6100502 + ], + [ + 48.1304369, + 11.6098272 + ], + [ + 48.1299288, + 11.6096506 + ], + [ + 48.129582, + 11.6095471 + ], + [ + 48.1292105, + 11.6093854 + ], + [ + 48.1289419, + 11.609208 + ], + [ + 48.1286472, + 11.6089663 + ], + [ + 48.128137, + 11.6082849 + ], + [ + 48.127497, + 11.6073136 + ], + [ + 48.1273062, + 11.6070363 + ], + [ + 48.1268106, + 11.6062539 + ], + [ + 48.1260744, + 11.6051383 + ], + [ + 48.1255964, + 11.6043987 + ], + [ + 48.1253088, + 11.6039583 + ], + [ + 48.1249945, + 11.6034191 + ], + [ + 48.1248356, + 11.6031145 + ], + [ + 48.1246887, + 11.6027936 + ], + [ + 48.1245201, + 11.6022176 + ], + [ + 48.1244134, + 11.6015754 + ], + [ + 48.1243927, + 11.6011496 + ], + [ + 48.1244332, + 11.6005409 + ], + [ + 48.1245334, + 11.5999722 + ], + [ + 48.1247287, + 11.5993563 + ], + [ + 48.1251857, + 11.5986432 + ], + [ + 48.12559, + 11.5981731 + ], + [ + 48.1261035, + 11.5977477 + ], + [ + 48.1265764, + 11.5974184 + ], + [ + 48.1270492, + 11.5971303 + ], + [ + 48.1279123, + 11.5966977 + ], + [ + 48.1301681, + 11.5957363 + ], + [ + 48.1320235, + 11.594848 + ], + [ + 48.1329175, + 11.594328 + ], + [ + 48.1337453, + 11.5938462 + ], + [ + 48.1343286, + 11.5934387 + ], + [ + 48.1347682, + 11.5930985 + ], + [ + 48.1356252, + 11.5923875 + ], + [ + 48.1360513, + 11.5919698 + ], + [ + 48.1364708, + 11.5914356 + ], + [ + 48.1368043, + 11.5908885 + ], + [ + 48.1371418, + 11.5901352 + ], + [ + 48.1373437, + 11.5895988 + ], + [ + 48.137564, + 11.5889037 + ], + [ + 48.1377974, + 11.5880781 + ], + [ + 48.1379638, + 11.5874182 + ], + [ + 48.1383736, + 11.5857258 + ], + [ + 48.1385734, + 11.5849283 + ], + [ + 48.1386045, + 11.5847765 + ], + [ + 48.1386697, + 11.5843989 + ], + [ + 48.1387663, + 11.5838846 + ], + [ + 48.1388282, + 11.5835087 + ], + [ + 48.1388739, + 11.583079 + ], + [ + 48.1388934, + 11.5827698 + ], + [ + 48.1389021, + 11.5825582 + ], + [ + 48.1389092, + 11.5819562 + ], + [ + 48.1388862, + 11.5812272 + ], + [ + 48.138858, + 11.5803348 + ], + [ + 48.1388258, + 11.5795476 + ], + [ + 48.1387843, + 11.5790596 + ], + [ + 48.1387326, + 11.5783218 + ], + [ + 48.1387077, + 11.5778796 + ], + [ + 48.1387051, + 11.5776992 + ], + [ + 48.1387269, + 11.5773612 + ], + [ + 48.1388168, + 11.5765027 + ], + [ + 48.1389351, + 11.5752021 + ], + [ + 48.138993, + 11.5747306 + ], + [ + 48.1390255, + 11.574329 + ], + [ + 48.139048, + 11.5741134 + ], + [ + 48.139056, + 11.5738661 + ], + [ + 48.1390987, + 11.5736358 + ], + [ + 48.1391339, + 11.5734542 + ], + [ + 48.1391858, + 11.5731521 + ], + [ + 48.1394493, + 11.5719624 + ], + [ + 48.1395937, + 11.5713561 + ], + [ + 48.1396929, + 11.5708215 + ], + [ + 48.139836, + 11.5701135 + ], + [ + 48.1398481, + 11.5700584 + ], + [ + 48.1399524, + 11.569584 + ], + [ + 48.1400709, + 11.5689996 + ], + [ + 48.1401607, + 11.5684272 + ], + [ + 48.1402416, + 11.5677453 + ], + [ + 48.1402678, + 11.5673398 + ], + [ + 48.1402977, + 11.5667428 + ], + [ + 48.1402842, + 11.5661987 + ], + [ + 48.1402616, + 11.5658586 + ], + [ + 48.1401428, + 11.5634804 + ], + [ + 48.1401245, + 11.5629091 + ], + [ + 48.1401247, + 11.5623501 + ], + [ + 48.1401353, + 11.5619623 + ], + [ + 48.1401514, + 11.5616899 + ], + [ + 48.1401633, + 11.5613861 + ], + [ + 48.1401948, + 11.5608235 + ], + [ + 48.1402087, + 11.5605769 + ], + [ + 48.140222, + 11.5603402 + ], + [ + 48.1402474, + 11.5599254 + ], + [ + 48.1402697, + 11.5595583 + ], + [ + 48.1402905, + 11.5592316 + ], + [ + 48.1403106, + 11.5588951 + ], + [ + 48.1403251, + 11.5586706 + ], + [ + 48.1403434, + 11.5584412 + ], + [ + 48.1404275, + 11.5572619 + ], + [ + 48.1404605, + 11.5568089 + ], + [ + 48.1404894, + 11.5563674 + ], + [ + 48.1405015, + 11.5561492 + ], + [ + 48.140546, + 11.5555305 + ], + [ + 48.1405979, + 11.5548125 + ], + [ + 48.1406375, + 11.5542337 + ], + [ + 48.1406791, + 11.5536211 + ], + [ + 48.1407483, + 11.5529248 + ], + [ + 48.1426792, + 11.5350901 + ], + [ + 48.1429174, + 11.5333071 + ], + [ + 48.1429551, + 11.5329417 + ], + [ + 48.142981, + 11.5326249 + ], + [ + 48.1429866, + 11.5323088 + ], + [ + 48.1429726, + 11.5317055 + ], + [ + 48.1429527, + 11.5307074 + ], + [ + 48.1429465, + 11.5300988 + ], + [ + 48.1429433, + 11.5294008 + ] + ] + }, + { + "osmId": "299875276", + "name": null, + "lengthMeters": 1037.83841609878, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1429433, + 11.5294008 + ], + [ + 48.1430317, + 11.5275579 + ], + [ + 48.1431392, + 11.5261459 + ], + [ + 48.1432528, + 11.5247587 + ], + [ + 48.1434219, + 11.5229427 + ], + [ + 48.1435694, + 11.5215923 + ], + [ + 48.1436417, + 11.5206867 + ], + [ + 48.1436888, + 11.5198565 + ], + [ + 48.1437148, + 11.519261 + ], + [ + 48.1437415, + 11.518528 + ], + [ + 48.1437536, + 11.5177289 + ], + [ + 48.1437212, + 11.5163043 + ], + [ + 48.1436822, + 11.515488 + ] + ] + }, + { + "osmId": "299875277", + "name": null, + "lengthMeters": 96.35774394863108, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436822, + 11.515488 + ], + [ + 48.1436255, + 11.5141921 + ] + ] + }, + { + "osmId": "299875278", + "name": null, + "lengthMeters": 190.1806849096598, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436255, + 11.5141921 + ], + [ + 48.143615, + 11.5138402 + ], + [ + 48.143609, + 11.5133939 + ], + [ + 48.1436207, + 11.5129741 + ], + [ + 48.143647, + 11.5123364 + ], + [ + 48.1436737, + 11.5118805 + ], + [ + 48.1436914, + 11.5116341 + ] + ] + }, + { + "osmId": "299875279", + "name": null, + "lengthMeters": 169.16070672914014, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436141, + 11.5119174 + ], + [ + 48.143599, + 11.5124131 + ], + [ + 48.1435817, + 11.5129334 + ], + [ + 48.1435746, + 11.5134089 + ], + [ + 48.1435804, + 11.5138504 + ], + [ + 48.1435905, + 11.5141956 + ] + ] + }, + { + "osmId": "300268680", + "name": null, + "lengthMeters": 891.9335338893436, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5882984, + 13.284958 + ], + [ + 52.5878355, + 13.2854722 + ], + [ + 52.5862593, + 13.2868973 + ], + [ + 52.5840478, + 13.2887183 + ], + [ + 52.5826122, + 13.2899096 + ], + [ + 52.5823504, + 13.2901206 + ], + [ + 52.5821524, + 13.2902554 + ], + [ + 52.5820142, + 13.2903506 + ], + [ + 52.5818065, + 13.2905056 + ], + [ + 52.5816069, + 13.2906808 + ], + [ + 52.5813487, + 13.2909392 + ], + [ + 52.5812045, + 13.2910932 + ] + ] + }, + { + "osmId": "300288110", + "name": "U6", + "lengthMeters": 863.7044430199153, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4956687, + 13.3900944 + ], + [ + 52.4957235, + 13.3901516 + ], + [ + 52.4967019, + 13.391172 + ], + [ + 52.4968642, + 13.391296 + ], + [ + 52.4969927, + 13.3913693 + ], + [ + 52.4971409, + 13.3914395 + ], + [ + 52.4972934, + 13.3914903 + ], + [ + 52.4977295, + 13.3916064 + ], + [ + 52.498176, + 13.3917244 + ], + [ + 52.4984977, + 13.3917984 + ], + [ + 52.4986943, + 13.3918122 + ], + [ + 52.4990463, + 13.3918069 + ], + [ + 52.4993144, + 13.3917659 + ], + [ + 52.5015424, + 13.3914043 + ], + [ + 52.5031767, + 13.3911278 + ] + ] + }, + { + "osmId": "300288111", + "name": "U6", + "lengthMeters": 2199.946325899644, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4904369, + 13.3864101 + ], + [ + 52.4901302, + 13.3863195 + ], + [ + 52.4896966, + 13.3862116 + ], + [ + 52.4893219, + 13.3861267 + ], + [ + 52.4887284, + 13.3860279 + ], + [ + 52.488103, + 13.3859489 + ], + [ + 52.4875385, + 13.3858872 + ], + [ + 52.487105, + 13.3858518 + ], + [ + 52.4866259, + 13.3858245 + ], + [ + 52.4855965, + 13.3858014 + ], + [ + 52.484713, + 13.3857863 + ], + [ + 52.4843437, + 13.3858008 + ], + [ + 52.4841217, + 13.3858437 + ], + [ + 52.4840079, + 13.38588 + ], + [ + 52.4839139, + 13.385914 + ], + [ + 52.4833346, + 13.3861461 + ], + [ + 52.4831125, + 13.3862032 + ], + [ + 52.4826744, + 13.3862974 + ], + [ + 52.4824612, + 13.3863317 + ], + [ + 52.4817429, + 13.3863244 + ], + [ + 52.4807201, + 13.3863027 + ], + [ + 52.4793435, + 13.3862655 + ], + [ + 52.4791349, + 13.3862411 + ], + [ + 52.4788227, + 13.3861973 + ], + [ + 52.4785909, + 13.3861813 + ], + [ + 52.4781195, + 13.3861713 + ], + [ + 52.4777853, + 13.3861643 + ], + [ + 52.4776813, + 13.3861603 + ], + [ + 52.477038, + 13.3862072 + ], + [ + 52.4746038, + 13.3861332 + ], + [ + 52.4735313, + 13.3861154 + ], + [ + 52.4729296, + 13.3861032 + ], + [ + 52.4727629, + 13.3860865 + ], + [ + 52.4726234, + 13.3860676 + ], + [ + 52.4723548, + 13.3860027 + ], + [ + 52.4721128, + 13.3859241 + ], + [ + 52.4714254, + 13.3856042 + ], + [ + 52.4713306, + 13.3855648 + ], + [ + 52.4712066, + 13.3855259 + ], + [ + 52.4709772, + 13.3854847 + ], + [ + 52.4707488, + 13.3854793 + ] + ] + }, + { + "osmId": "300295481", + "name": "U6", + "lengthMeters": 313.39472456056393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.440287, + 13.3874027 + ], + [ + 52.4406285, + 13.387228 + ], + [ + 52.4413174, + 13.3869754 + ], + [ + 52.4416281, + 13.3868645 + ], + [ + 52.4423204, + 13.3866244 + ], + [ + 52.4430346, + 13.3863827 + ] + ] + }, + { + "osmId": "300526958", + "name": "U6", + "lengthMeters": 89.68524336376507, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4404519, + 13.3872057 + ], + [ + 52.4400324, + 13.3873164 + ], + [ + 52.4396554, + 13.387414 + ] + ] + }, + { + "osmId": "300669198", + "name": null, + "lengthMeters": 141.5397536514411, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1808186, + 11.506258 + ], + [ + 48.1808411, + 11.5073187 + ], + [ + 48.1808756, + 11.5081649 + ] + ] + }, + { + "osmId": "300669200", + "name": null, + "lengthMeters": 102.99336203435455, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1538058, + 11.6234045 + ], + [ + 48.1537621, + 11.6231313 + ], + [ + 48.1535895, + 11.6220545 + ] + ] + }, + { + "osmId": "300669202", + "name": null, + "lengthMeters": 804.6612154650153, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1354075, + 11.5019736 + ], + [ + 48.1353903, + 11.502614 + ], + [ + 48.1353824, + 11.5029016 + ], + [ + 48.1353722, + 11.5034784 + ], + [ + 48.1353575, + 11.5055385 + ], + [ + 48.1353406, + 11.5062371 + ], + [ + 48.1352255, + 11.5086186 + ], + [ + 48.1352074, + 11.5088452 + ], + [ + 48.135125, + 11.5094558 + ], + [ + 48.1351012, + 11.5099217 + ], + [ + 48.1350609, + 11.5108479 + ], + [ + 48.1350238, + 11.5117625 + ], + [ + 48.1350083, + 11.5123082 + ], + [ + 48.1350243, + 11.5127662 + ], + [ + 48.1350251, + 11.5127889 + ] + ] + }, + { + "osmId": "300669204", + "name": null, + "lengthMeters": 6719.8976400664915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1089975, + 11.4736348 + ], + [ + 48.1092505, + 11.4744877 + ], + [ + 48.1094432, + 11.4749221 + ], + [ + 48.1095714, + 11.4752025 + ], + [ + 48.1097098, + 11.4754353 + ], + [ + 48.109855, + 11.475646 + ], + [ + 48.1100331, + 11.4758512 + ], + [ + 48.110214, + 11.4760392 + ], + [ + 48.1104008, + 11.4762136 + ], + [ + 48.1105812, + 11.4763377 + ], + [ + 48.1107866, + 11.4764583 + ], + [ + 48.1110339, + 11.4765535 + ], + [ + 48.1112492, + 11.4766024 + ], + [ + 48.1127347, + 11.4767506 + ], + [ + 48.1130388, + 11.4767914 + ], + [ + 48.1134663, + 11.4768739 + ], + [ + 48.1141129, + 11.4770133 + ], + [ + 48.1148028, + 11.4771503 + ], + [ + 48.1152598, + 11.4772411 + ], + [ + 48.1155376, + 11.4773042 + ], + [ + 48.1158747, + 11.4774371 + ], + [ + 48.1161009, + 11.4775448 + ], + [ + 48.1162995, + 11.4776733 + ], + [ + 48.1164613, + 11.4778159 + ], + [ + 48.1166217, + 11.4780047 + ], + [ + 48.1168133, + 11.4782646 + ], + [ + 48.1169573, + 11.4785119 + ], + [ + 48.1171242, + 11.4788168 + ], + [ + 48.1172423, + 11.479094 + ], + [ + 48.1173464, + 11.4793917 + ], + [ + 48.1182682, + 11.482365 + ], + [ + 48.1183518, + 11.4827289 + ], + [ + 48.1184153, + 11.4831214 + ], + [ + 48.118482, + 11.4836273 + ], + [ + 48.118507, + 11.4840318 + ], + [ + 48.1185206, + 11.4844838 + ], + [ + 48.1185172, + 11.4849766 + ], + [ + 48.1183475, + 11.4882219 + ], + [ + 48.1183173, + 11.4889088 + ], + [ + 48.1182746, + 11.4898377 + ], + [ + 48.118254, + 11.4905538 + ], + [ + 48.1181882, + 11.4916193 + ], + [ + 48.1181651, + 11.4918362 + ], + [ + 48.1180963, + 11.4922634 + ], + [ + 48.1180207, + 11.4925984 + ], + [ + 48.1178808, + 11.4931419 + ], + [ + 48.1177736, + 11.4934811 + ], + [ + 48.1175312, + 11.4941055 + ], + [ + 48.1167621, + 11.4959464 + ], + [ + 48.1166589, + 11.4962229 + ], + [ + 48.116575, + 11.4964943 + ], + [ + 48.1164573, + 11.4969835 + ], + [ + 48.1163908, + 11.4973663 + ], + [ + 48.1163537, + 11.4977336 + ], + [ + 48.116344, + 11.4980345 + ], + [ + 48.1163412, + 11.4997354 + ], + [ + 48.1163259, + 11.5001153 + ], + [ + 48.1162728, + 11.500812 + ], + [ + 48.1162568, + 11.5010042 + ], + [ + 48.1162336, + 11.5014575 + ], + [ + 48.1162169, + 11.5018608 + ], + [ + 48.1162216, + 11.5022728 + ], + [ + 48.1162299, + 11.502688 + ], + [ + 48.1162554, + 11.503091 + ], + [ + 48.1163103, + 11.503473 + ], + [ + 48.116385, + 11.5038188 + ], + [ + 48.1179035, + 11.5118703 + ], + [ + 48.1179556, + 11.5122426 + ], + [ + 48.1179863, + 11.5126453 + ], + [ + 48.1180014, + 11.5130144 + ], + [ + 48.1180305, + 11.5145809 + ], + [ + 48.1180305, + 11.5148511 + ], + [ + 48.1180185, + 11.5152388 + ], + [ + 48.117973, + 11.5157156 + ], + [ + 48.11792, + 11.5162281 + ], + [ + 48.1178542, + 11.5166828 + ], + [ + 48.1178099, + 11.5169543 + ], + [ + 48.1177454, + 11.5173418 + ], + [ + 48.1177075, + 11.5175834 + ], + [ + 48.1175597, + 11.5184568 + ], + [ + 48.1174803, + 11.519023 + ], + [ + 48.1171944, + 11.5216383 + ], + [ + 48.1171309, + 11.52222 + ], + [ + 48.1170946, + 11.5226409 + ], + [ + 48.1170753, + 11.523064 + ], + [ + 48.1170968, + 11.5252188 + ], + [ + 48.1170821, + 11.5255128 + ], + [ + 48.1170477, + 11.5257499 + ], + [ + 48.116899, + 11.5266191 + ], + [ + 48.116781, + 11.5273083 + ], + [ + 48.1167202, + 11.5276981 + ], + [ + 48.1166941, + 11.5279598 + ], + [ + 48.1166827, + 11.5282657 + ], + [ + 48.1166861, + 11.5286243 + ], + [ + 48.1167165, + 11.5295372 + ], + [ + 48.1167941, + 11.5315949 + ], + [ + 48.1168348, + 11.5348982 + ], + [ + 48.1168338, + 11.5350443 + ], + [ + 48.1168262, + 11.5361209 + ], + [ + 48.1168324, + 11.5379444 + ], + [ + 48.1168288, + 11.5390433 + ], + [ + 48.1168276, + 11.5392709 + ], + [ + 48.116824, + 11.539456 + ], + [ + 48.1168115, + 11.5396263 + ], + [ + 48.1167838, + 11.5398342 + ], + [ + 48.1167229, + 11.5401426 + ], + [ + 48.1166862, + 11.5402781 + ], + [ + 48.1166423, + 11.5404216 + ], + [ + 48.1165506, + 11.5406781 + ], + [ + 48.1158259, + 11.5424833 + ], + [ + 48.1157442, + 11.5427212 + ], + [ + 48.1156606, + 11.5430051 + ], + [ + 48.1155713, + 11.5433724 + ], + [ + 48.1155365, + 11.5435252 + ], + [ + 48.1155048, + 11.5436921 + ], + [ + 48.1154559, + 11.5439869 + ], + [ + 48.115422, + 11.5442693 + ], + [ + 48.115403, + 11.5445499 + ], + [ + 48.115403, + 11.544739 + ], + [ + 48.1154125, + 11.5449788 + ], + [ + 48.1154455, + 11.5452848 + ], + [ + 48.1154934, + 11.5455279 + ], + [ + 48.1155636, + 11.5458034 + ], + [ + 48.1156796, + 11.5461709 + ], + [ + 48.1158557, + 11.5466529 + ], + [ + 48.1160205, + 11.5470055 + ], + [ + 48.1161426, + 11.5472433 + ], + [ + 48.1162892, + 11.5474893 + ], + [ + 48.1164466, + 11.5477312 + ], + [ + 48.1165783, + 11.547908 + ], + [ + 48.1167262, + 11.5480767 + ], + [ + 48.1168538, + 11.5481967 + ], + [ + 48.1169962, + 11.5483064 + ], + [ + 48.1171415, + 11.5483837 + ], + [ + 48.1173309, + 11.5484399 + ], + [ + 48.1176478, + 11.5484891 + ], + [ + 48.1178732, + 11.5485087 + ], + [ + 48.1179267, + 11.5485082 + ], + [ + 48.1195564, + 11.5484932 + ] + ] + }, + { + "osmId": "301276189", + "name": null, + "lengthMeters": 136.3635598850504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0889456, + 11.6451298 + ], + [ + 48.0893871, + 11.6446397 + ], + [ + 48.0899283, + 11.6440315 + ] + ] + }, + { + "osmId": "301327724", + "name": null, + "lengthMeters": 201.13712263649876, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1368524, + 11.6147838 + ], + [ + 48.1368531, + 11.6150413 + ], + [ + 48.1368518, + 11.6151858 + ], + [ + 48.1368683, + 11.6154282 + ], + [ + 48.1368947, + 11.6156756 + ], + [ + 48.1370537, + 11.6171478 + ], + [ + 48.1370851, + 11.6174673 + ] + ] + }, + { + "osmId": "301510484", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 935.3433352734996, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4399734, + 10.0113507 + ], + [ + 53.4387252, + 10.0125269 + ], + [ + 53.437856, + 10.013437 + ], + [ + 53.4378315, + 10.0134695 + ], + [ + 53.4369701, + 10.0145042 + ], + [ + 53.4364756, + 10.0150814 + ], + [ + 53.435476, + 10.0163141 + ], + [ + 53.4353719, + 10.0164423 + ], + [ + 53.4345569, + 10.0174292 + ], + [ + 53.4340665, + 10.0180257 + ], + [ + 53.4339096, + 10.0182165 + ], + [ + 53.4330287, + 10.0192925 + ] + ] + }, + { + "osmId": "301517733", + "name": null, + "lengthMeters": 1757.47019394645, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4269428, + 10.0263218 + ], + [ + 53.4269474, + 10.0263165 + ], + [ + 53.4270322, + 10.0262183 + ], + [ + 53.4275887, + 10.0255624 + ], + [ + 53.4276211, + 10.0255242 + ], + [ + 53.4284377, + 10.0245616 + ], + [ + 53.4284612, + 10.0245339 + ], + [ + 53.4300698, + 10.0226378 + ], + [ + 53.4306414, + 10.0219643 + ], + [ + 53.4328706, + 10.0193374 + ], + [ + 53.4330054, + 10.0191785 + ], + [ + 53.4338629, + 10.0181417 + ], + [ + 53.4348604, + 10.0169268 + ], + [ + 53.4349506, + 10.0168188 + ], + [ + 53.4354314, + 10.0162428 + ], + [ + 53.4358696, + 10.0157037 + ], + [ + 53.4361466, + 10.0153628 + ], + [ + 53.436692, + 10.0147215 + ], + [ + 53.43735, + 10.013895 + ], + [ + 53.4376275, + 10.0135786 + ], + [ + 53.4380185, + 10.0131326 + ], + [ + 53.4386764, + 10.0124628 + ], + [ + 53.4393776, + 10.0118022 + ], + [ + 53.4399454, + 10.0112672 + ] + ] + }, + { + "osmId": "301527432", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 968.9814905456254, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4061224, + 10.0621887 + ], + [ + 53.4063789, + 10.0617787 + ], + [ + 53.4077807, + 10.0596319 + ], + [ + 53.4082525, + 10.0589093 + ], + [ + 53.4084749, + 10.0585707 + ], + [ + 53.4091926, + 10.0574414 + ], + [ + 53.4098537, + 10.0564091 + ], + [ + 53.4105005, + 10.0554185 + ], + [ + 53.4105814, + 10.0552945 + ], + [ + 53.4107652, + 10.0550131 + ], + [ + 53.410842, + 10.0548953 + ], + [ + 53.4115121, + 10.0538681 + ], + [ + 53.4116823, + 10.0536071 + ], + [ + 53.4125069, + 10.0522409 + ] + ] + }, + { + "osmId": "301527433", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1011.4530980456217, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4057641, + 10.0623885 + ], + [ + 53.408234, + 10.0586939 + ], + [ + 53.4084024, + 10.0584408 + ], + [ + 53.4096844, + 10.056514 + ], + [ + 53.4104663, + 10.0553589 + ], + [ + 53.4107384, + 10.054957 + ], + [ + 53.4108144, + 10.0548401 + ], + [ + 53.4116415, + 10.0535677 + ], + [ + 53.4124995, + 10.0521365 + ] + ] + }, + { + "osmId": "301562452", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 991.3876484523928, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4058757, + 10.0619444 + ], + [ + 53.406697, + 10.0607139 + ], + [ + 53.407377, + 10.0597224 + ], + [ + 53.4076687, + 10.0592971 + ], + [ + 53.4077859, + 10.0591287 + ], + [ + 53.4083872, + 10.0582438 + ], + [ + 53.4086691, + 10.0578291 + ], + [ + 53.4086973, + 10.0577876 + ], + [ + 53.4098196, + 10.0560898 + ], + [ + 53.410627, + 10.0548773 + ], + [ + 53.410918, + 10.0544402 + ], + [ + 53.4116076, + 10.053376 + ], + [ + 53.4117574, + 10.0531447 + ], + [ + 53.4124809, + 10.0519043 + ] + ] + }, + { + "osmId": "302224338", + "name": null, + "lengthMeters": 267.1168801618531, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5218762, + 13.7141738 + ], + [ + 52.5219974, + 13.7153522 + ], + [ + 52.5220638, + 13.7158711 + ], + [ + 52.5221419, + 13.7163822 + ], + [ + 52.5223, + 13.7172113 + ], + [ + 52.5224583, + 13.7179962 + ] + ] + }, + { + "osmId": "302224348", + "name": null, + "lengthMeters": 296.4119490048945, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5217746, + 13.714216 + ], + [ + 52.5221672, + 13.7185493 + ] + ] + }, + { + "osmId": "303576558", + "name": null, + "lengthMeters": 6234.774870462551, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5232775, + 10.4103608 + ], + [ + 53.5232586, + 10.4099376 + ], + [ + 53.523219, + 10.4090529 + ], + [ + 53.5230845, + 10.4068934 + ], + [ + 53.5228706, + 10.4038187 + ], + [ + 53.5226918, + 10.4007794 + ], + [ + 53.5225151, + 10.397775 + ], + [ + 53.5223942, + 10.3957197 + ], + [ + 53.5223388, + 10.3947781 + ], + [ + 53.5221619, + 10.39177 + ], + [ + 53.5220443, + 10.3897703 + ], + [ + 53.5219799, + 10.3887643 + ], + [ + 53.5217905, + 10.3858035 + ], + [ + 53.5217863, + 10.3857379 + ], + [ + 53.5215969, + 10.3827789 + ], + [ + 53.5215004, + 10.3812702 + ], + [ + 53.5214999, + 10.3812626 + ], + [ + 53.5214046, + 10.3797731 + ], + [ + 53.5213602, + 10.3790786 + ], + [ + 53.5212104, + 10.3767798 + ], + [ + 53.5210711, + 10.3746424 + ], + [ + 53.5210149, + 10.3737799 + ], + [ + 53.5209369, + 10.3725823 + ], + [ + 53.5208575, + 10.3708291 + ], + [ + 53.5208565, + 10.3707773 + ], + [ + 53.5208242, + 10.3691535 + ], + [ + 53.5208344, + 10.3679344 + ], + [ + 53.5208754, + 10.3669135 + ], + [ + 53.520942, + 10.3654834 + ], + [ + 53.5210226, + 10.3647721 + ], + [ + 53.521088, + 10.3641954 + ], + [ + 53.5212749, + 10.3628515 + ], + [ + 53.5214721, + 10.3617229 + ], + [ + 53.521636, + 10.3608657 + ], + [ + 53.5219382, + 10.3595002 + ], + [ + 53.5219514, + 10.3594508 + ], + [ + 53.5220674, + 10.3590166 + ], + [ + 53.5222225, + 10.3584362 + ], + [ + 53.5227006, + 10.3569746 + ], + [ + 53.5229232, + 10.3563305 + ], + [ + 53.5232406, + 10.3554819 + ], + [ + 53.523621, + 10.35456 + ], + [ + 53.5239923, + 10.3537044 + ], + [ + 53.5250111, + 10.3514641 + ], + [ + 53.5254131, + 10.3505591 + ], + [ + 53.5256577, + 10.3499429 + ], + [ + 53.5259861, + 10.3489621 + ], + [ + 53.5260044, + 10.3489133 + ], + [ + 53.5261149, + 10.3486192 + ], + [ + 53.5265752, + 10.3471824 + ], + [ + 53.5267993, + 10.3464178 + ], + [ + 53.526853, + 10.3462195 + ], + [ + 53.5270457, + 10.3455079 + ], + [ + 53.5272474, + 10.3446356 + ], + [ + 53.5273626, + 10.3439894 + ], + [ + 53.5277, + 10.3421724 + ], + [ + 53.527838, + 10.3413642 + ], + [ + 53.5279834, + 10.3405652 + ], + [ + 53.5281131, + 10.3398529 + ], + [ + 53.5284026, + 10.3382622 + ], + [ + 53.5285119, + 10.3376184 + ], + [ + 53.5287357, + 10.3363004 + ], + [ + 53.5288266, + 10.3357296 + ], + [ + 53.5289758, + 10.3347927 + ], + [ + 53.5292066, + 10.333218 + ], + [ + 53.5293222, + 10.3323136 + ], + [ + 53.5293757, + 10.3317509 + ], + [ + 53.5293762, + 10.3317457 + ], + [ + 53.5294255, + 10.3312269 + ], + [ + 53.529538, + 10.3301521 + ], + [ + 53.5296644, + 10.3287772 + ], + [ + 53.5297071, + 10.3283125 + ], + [ + 53.5297667, + 10.3275821 + ], + [ + 53.5297845, + 10.3273566 + ], + [ + 53.5298626, + 10.3261214 + ], + [ + 53.5298683, + 10.3260319 + ], + [ + 53.5298796, + 10.3257785 + ], + [ + 53.5298896, + 10.325554 + ], + [ + 53.5299279, + 10.3246316 + ], + [ + 53.5299358, + 10.3243602 + ], + [ + 53.5299493, + 10.3238946 + ], + [ + 53.5299596, + 10.3236399 + ], + [ + 53.5299716, + 10.322779 + ], + [ + 53.529976, + 10.3224679 + ], + [ + 53.5299854, + 10.3211348 + ], + [ + 53.5299686, + 10.3196087 + ] + ] + }, + { + "osmId": "303674611", + "name": null, + "lengthMeters": 746.2527239188728, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4748357, + 9.8337462 + ], + [ + 53.4748442, + 9.8333822 + ], + [ + 53.4748647, + 9.8327001 + ], + [ + 53.4749337, + 9.8303975 + ], + [ + 53.4749907, + 9.8289171 + ], + [ + 53.4750198, + 9.8280844 + ], + [ + 53.4750308, + 9.8276192 + ], + [ + 53.4750375, + 9.8272107 + ], + [ + 53.4750392, + 9.8270688 + ], + [ + 53.4750413, + 9.8268434 + ], + [ + 53.4750438, + 9.8263019 + ], + [ + 53.4750396, + 9.8257579 + ], + [ + 53.4750319, + 9.8252314 + ], + [ + 53.47502, + 9.8247143 + ], + [ + 53.4750016, + 9.824136 + ], + [ + 53.4749777, + 9.823558 + ], + [ + 53.4749643, + 9.8232809 + ], + [ + 53.474919, + 9.8224867 + ] + ] + }, + { + "osmId": "303904321", + "name": null, + "lengthMeters": 232.1423628151991, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4713366, + 13.3712724 + ], + [ + 52.4713494, + 13.3711219 + ], + [ + 52.4713721, + 13.3709189 + ], + [ + 52.4713906, + 13.3707673 + ], + [ + 52.4714289, + 13.3705225 + ], + [ + 52.4714931, + 13.3702175 + ], + [ + 52.4715432, + 13.3700226 + ], + [ + 52.4715947, + 13.3698381 + ], + [ + 52.4716667, + 13.3696133 + ], + [ + 52.4717802, + 13.3692981 + ], + [ + 52.471943, + 13.368892 + ], + [ + 52.4720716, + 13.3686106 + ], + [ + 52.4721742, + 13.368401 + ], + [ + 52.4722497, + 13.3682474 + ] + ] + }, + { + "osmId": "303904322", + "name": null, + "lengthMeters": 778.5358406309597, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712555, + 13.3740149 + ], + [ + 52.4712392, + 13.3766629 + ], + [ + 52.4712336, + 13.3775937 + ], + [ + 52.4712077, + 13.3816031 + ], + [ + 52.4712005, + 13.3818578 + ], + [ + 52.4711917, + 13.382029 + ], + [ + 52.4711785, + 13.3822251 + ], + [ + 52.4711611, + 13.3824121 + ], + [ + 52.471139, + 13.3826292 + ], + [ + 52.4711122, + 13.3828446 + ], + [ + 52.4710766, + 13.383082 + ], + [ + 52.4710394, + 13.3833041 + ], + [ + 52.4710018, + 13.3835135 + ], + [ + 52.4709575, + 13.3837438 + ], + [ + 52.4708895, + 13.3840604 + ], + [ + 52.4706189, + 13.3852236 + ], + [ + 52.4705885, + 13.3853506 + ] + ] + }, + { + "osmId": "304437483", + "name": null, + "lengthMeters": 153.87970906261376, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4633139, + 13.3583918 + ], + [ + 52.4623595, + 13.3579304 + ], + [ + 52.4622585, + 13.3578799 + ], + [ + 52.4619815, + 13.357782 + ] + ] + }, + { + "osmId": "304437886", + "name": null, + "lengthMeters": 180.57653689327577, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4608933, + 13.3592268 + ], + [ + 52.46088, + 13.3592187 + ], + [ + 52.4606866, + 13.3590911 + ], + [ + 52.4605155, + 13.3589931 + ], + [ + 52.4595262, + 13.3586102 + ], + [ + 52.4593964, + 13.3585602 + ], + [ + 52.4593279, + 13.3585339 + ] + ] + }, + { + "osmId": "304437887", + "name": null, + "lengthMeters": 152.9169358410101, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4593411, + 13.358439 + ], + [ + 52.459409, + 13.3584642 + ], + [ + 52.4598859, + 13.3586402 + ], + [ + 52.4601291, + 13.3586831 + ], + [ + 52.4601543, + 13.3586864 + ], + [ + 52.4603604, + 13.3587159 + ], + [ + 52.4604195, + 13.3587244 + ], + [ + 52.4604762, + 13.3587325 + ], + [ + 52.4606969, + 13.3587933 + ] + ] + }, + { + "osmId": "304439087", + "name": null, + "lengthMeters": 107.86685492690168, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4582842, + 13.3570887 + ], + [ + 52.4578986, + 13.3570628 + ], + [ + 52.4573149, + 13.3571003 + ] + ] + }, + { + "osmId": "304665061", + "name": null, + "lengthMeters": 370.0899089532661, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4617196, + 13.3582093 + ], + [ + 52.462066, + 13.3583905 + ], + [ + 52.4648926, + 13.3598585 + ] + ] + }, + { + "osmId": "304665062", + "name": null, + "lengthMeters": 761.9416738691806, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4682724, + 13.3615197 + ], + [ + 52.4680848, + 13.3614202 + ], + [ + 52.4676173, + 13.3611738 + ], + [ + 52.4671111, + 13.3609315 + ], + [ + 52.4668001, + 13.3607636 + ], + [ + 52.466463, + 13.3606349 + ], + [ + 52.4620784, + 13.3583494 + ], + [ + 52.4617325, + 13.3581688 + ] + ] + }, + { + "osmId": "304665063", + "name": null, + "lengthMeters": 374.9625069250705, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4649163, + 13.3599465 + ], + [ + 52.4620532, + 13.3584326 + ], + [ + 52.4617066, + 13.3582495 + ] + ] + }, + { + "osmId": "304665064", + "name": null, + "lengthMeters": 424.5348719281079, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.461704, + 13.3582949 + ], + [ + 52.4620406, + 13.3584741 + ], + [ + 52.4653349, + 13.3602322 + ] + ] + }, + { + "osmId": "304665065", + "name": null, + "lengthMeters": 424.11477137653253, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4616999, + 13.3583397 + ], + [ + 52.4620278, + 13.3585163 + ], + [ + 52.4653242, + 13.3602902 + ] + ] + }, + { + "osmId": "304665066", + "name": null, + "lengthMeters": 425.16310897801554, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.461698, + 13.3584002 + ], + [ + 52.4620121, + 13.3585681 + ], + [ + 52.465038, + 13.3601902 + ], + [ + 52.4653273, + 13.3603732 + ] + ] + }, + { + "osmId": "304665067", + "name": null, + "lengthMeters": 442.6678940020934, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4616752, + 13.3584557 + ], + [ + 52.4619948, + 13.3586252 + ], + [ + 52.4650454, + 13.3602419 + ], + [ + 52.4654568, + 13.3604955 + ] + ] + }, + { + "osmId": "304665068", + "name": null, + "lengthMeters": 447.6672565889396, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.461667, + 13.358489 + ], + [ + 52.4619846, + 13.3586588 + ], + [ + 52.464853, + 13.3601894 + ], + [ + 52.4651512, + 13.3603587 + ], + [ + 52.4654911, + 13.3605545 + ] + ] + }, + { + "osmId": "304700115", + "name": null, + "lengthMeters": 187.75890104622508, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4595623, + 13.3573204 + ], + [ + 52.4598534, + 13.3573503 + ], + [ + 52.4603827, + 13.3574573 + ], + [ + 52.4612367, + 13.3576679 + ] + ] + }, + { + "osmId": "304719042", + "name": null, + "lengthMeters": 100.14198674718125, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4591815, + 13.3572133 + ], + [ + 52.4589547, + 13.3571736 + ], + [ + 52.45865, + 13.3571392 + ], + [ + 52.4582842, + 13.3570887 + ] + ] + }, + { + "osmId": "304721594", + "name": null, + "lengthMeters": 81.91867944045727, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.461082, + 13.3593508 + ], + [ + 52.4617829, + 13.3597232 + ] + ] + }, + { + "osmId": "304721595", + "name": null, + "lengthMeters": 89.3066983365728, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4654283, + 13.3606386 + ], + [ + 52.4646688, + 13.3602099 + ] + ] + }, + { + "osmId": "304952513", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 835.1844042909182, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5391514, + 13.1686929 + ], + [ + 52.5391945, + 13.1681184 + ], + [ + 52.5392228, + 13.1675496 + ], + [ + 52.5392269, + 13.1669788 + ], + [ + 52.5392194, + 13.1664585 + ], + [ + 52.5392023, + 13.16604 + ], + [ + 52.5391786, + 13.1656431 + ], + [ + 52.5391146, + 13.1649276 + ], + [ + 52.5390943, + 13.1647536 + ], + [ + 52.5390346, + 13.164312 + ], + [ + 52.5389649, + 13.1638762 + ], + [ + 52.5388727, + 13.1633726 + ], + [ + 52.5386924, + 13.1625575 + ], + [ + 52.538596, + 13.1622012 + ], + [ + 52.5384818, + 13.1617974 + ], + [ + 52.5378433, + 13.1597529 + ], + [ + 52.5377748, + 13.1595223 + ], + [ + 52.5377269, + 13.1593581 + ], + [ + 52.5376774, + 13.15918 + ], + [ + 52.5376291, + 13.1589998 + ], + [ + 52.5375836, + 13.1588199 + ], + [ + 52.5375428, + 13.1586542 + ], + [ + 52.5374652, + 13.1583093 + ], + [ + 52.5373928, + 13.1579587 + ], + [ + 52.5373223, + 13.1575744 + ], + [ + 52.5372602, + 13.1571882 + ], + [ + 52.5372292, + 13.1569785 + ] + ] + }, + { + "osmId": "304952514", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 522.8375619566064, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5379952, + 13.1761827 + ], + [ + 52.5381181, + 13.1754111 + ], + [ + 52.5383409, + 13.1740862 + ], + [ + 52.5388087, + 13.1711707 + ], + [ + 52.5390185, + 13.1698435 + ], + [ + 52.5390983, + 13.1692635 + ], + [ + 52.5391514, + 13.1686929 + ] + ] + }, + { + "osmId": "306493966", + "name": null, + "lengthMeters": 2594.228462493641, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0963901, + 11.510635 + ], + [ + 48.0963082, + 11.5102576 + ], + [ + 48.0962158, + 11.5097501 + ], + [ + 48.0956576, + 11.5055887 + ], + [ + 48.0954413, + 11.5042679 + ], + [ + 48.0952768, + 11.5030225 + ], + [ + 48.0951451, + 11.502017 + ], + [ + 48.095112, + 11.5015539 + ], + [ + 48.0950903, + 11.5009831 + ], + [ + 48.0951279, + 11.5001508 + ], + [ + 48.0951491, + 11.4993342 + ], + [ + 48.0951729, + 11.4985661 + ], + [ + 48.0951934, + 11.4978647 + ], + [ + 48.0951871, + 11.4976973 + ], + [ + 48.0951776, + 11.4973991 + ], + [ + 48.0951257, + 11.4969499 + ], + [ + 48.0950698, + 11.4965363 + ], + [ + 48.0949968, + 11.496138 + ], + [ + 48.0949117, + 11.4958111 + ], + [ + 48.0948294, + 11.4955445 + ], + [ + 48.0947622, + 11.4953729 + ], + [ + 48.0946585, + 11.4951558 + ], + [ + 48.0945238, + 11.4949385 + ], + [ + 48.0943433, + 11.4947063 + ], + [ + 48.0920512, + 11.4919919 + ], + [ + 48.0913057, + 11.4911079 + ], + [ + 48.0903445, + 11.4899654 + ], + [ + 48.0898558, + 11.4894234 + ], + [ + 48.0889745, + 11.488491 + ], + [ + 48.0888006, + 11.4882565 + ], + [ + 48.0885245, + 11.4877949 + ], + [ + 48.0882625, + 11.4872367 + ], + [ + 48.0881135, + 11.4868204 + ], + [ + 48.0880079, + 11.4864709 + ], + [ + 48.087848, + 11.4857152 + ], + [ + 48.0877966, + 11.4853045 + ], + [ + 48.087745, + 11.4847838 + ], + [ + 48.0877077, + 11.4842368 + ], + [ + 48.0877314, + 11.4836536 + ], + [ + 48.0877805, + 11.4833263 + ], + [ + 48.0878563, + 11.4829671 + ], + [ + 48.0879183, + 11.4827076 + ], + [ + 48.0881785, + 11.4817867 + ], + [ + 48.0884063, + 11.4809555 + ] + ] + }, + { + "osmId": "306493976", + "name": null, + "lengthMeters": 754.335731021397, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0983716, + 11.5203362 + ], + [ + 48.0981868, + 11.5192771 + ], + [ + 48.0981625, + 11.5191381 + ], + [ + 48.0980302, + 11.5183795 + ], + [ + 48.0975761, + 11.5157771 + ], + [ + 48.0974202, + 11.5149282 + ], + [ + 48.0972623, + 11.5140902 + ], + [ + 48.0970145, + 11.5130234 + ], + [ + 48.0964124, + 11.5107205 + ], + [ + 48.0963901, + 11.510635 + ] + ] + }, + { + "osmId": "306493979", + "name": null, + "lengthMeters": 753.900021378504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0962831, + 11.5106797 + ], + [ + 48.0969063, + 11.5130791 + ], + [ + 48.0971437, + 11.5141417 + ], + [ + 48.0973035, + 11.5149791 + ], + [ + 48.0973467, + 11.5152132 + ], + [ + 48.0974603, + 11.5158288 + ], + [ + 48.0982645, + 11.5203764 + ] + ] + }, + { + "osmId": "306493987", + "name": null, + "lengthMeters": 4429.111515503063, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0982645, + 11.5203764 + ], + [ + 48.0983227, + 11.520749 + ], + [ + 48.0983729, + 11.5211796 + ], + [ + 48.0983901, + 11.5214616 + ], + [ + 48.0983889, + 11.5217282 + ], + [ + 48.0983661, + 11.5221007 + ], + [ + 48.0983124, + 11.5226356 + ], + [ + 48.0982257, + 11.5231928 + ], + [ + 48.0979843, + 11.5243742 + ], + [ + 48.0978284, + 11.5251527 + ], + [ + 48.0976715, + 11.5259471 + ], + [ + 48.0975401, + 11.5267289 + ], + [ + 48.0974519, + 11.5272926 + ], + [ + 48.0974188, + 11.5276668 + ], + [ + 48.0974131, + 11.5279932 + ], + [ + 48.0974176, + 11.5282291 + ], + [ + 48.0974689, + 11.5289742 + ], + [ + 48.097573, + 11.5304207 + ], + [ + 48.0977531, + 11.5329136 + ], + [ + 48.0977977, + 11.5332551 + ], + [ + 48.0979891, + 11.534408 + ], + [ + 48.0981708, + 11.5359539 + ], + [ + 48.0982094, + 11.5362667 + ], + [ + 48.0983737, + 11.5376123 + ], + [ + 48.0983988, + 11.5378703 + ], + [ + 48.0984091, + 11.5381096 + ], + [ + 48.0984113, + 11.5403535 + ], + [ + 48.0983852, + 11.5412557 + ], + [ + 48.0983691, + 11.5418146 + ], + [ + 48.0983761, + 11.5421324 + ], + [ + 48.0984045, + 11.5424555 + ], + [ + 48.0984684, + 11.5428349 + ], + [ + 48.0985517, + 11.5431886 + ], + [ + 48.0986613, + 11.5435116 + ], + [ + 48.0987994, + 11.5438553 + ], + [ + 48.0990131, + 11.5443148 + ], + [ + 48.0991891, + 11.5446167 + ], + [ + 48.0993811, + 11.5448895 + ], + [ + 48.0997679, + 11.545333 + ], + [ + 48.1001719, + 11.5457081 + ], + [ + 48.1005303, + 11.5459488 + ], + [ + 48.1008188, + 11.5460905 + ], + [ + 48.1010526, + 11.546184 + ], + [ + 48.1012875, + 11.5462315 + ], + [ + 48.1015144, + 11.5462417 + ], + [ + 48.1019105, + 11.5461993 + ], + [ + 48.1028385, + 11.5460627 + ], + [ + 48.10347, + 11.5459612 + ], + [ + 48.1037582, + 11.5459226 + ], + [ + 48.1040933, + 11.5458415 + ], + [ + 48.1050028, + 11.5454872 + ], + [ + 48.105198, + 11.5454379 + ], + [ + 48.106197, + 11.5453692 + ], + [ + 48.1065254, + 11.5453734 + ], + [ + 48.1070295, + 11.5454448 + ], + [ + 48.1072831, + 11.545524 + ], + [ + 48.1077889, + 11.5458057 + ], + [ + 48.1083687, + 11.5461949 + ], + [ + 48.110536, + 11.5478204 + ], + [ + 48.1110715, + 11.5482316 + ], + [ + 48.1113064, + 11.5483727 + ], + [ + 48.1115556, + 11.5484835 + ], + [ + 48.112034, + 11.548699 + ], + [ + 48.1121939, + 11.5487534 + ], + [ + 48.1123577, + 11.548797 + ], + [ + 48.1125491, + 11.5488311 + ], + [ + 48.1126367, + 11.5488446 + ], + [ + 48.1128436, + 11.5488676 + ], + [ + 48.1130975, + 11.5488819 + ], + [ + 48.113665, + 11.5487569 + ], + [ + 48.115936, + 11.5484632 + ], + [ + 48.116106, + 11.5484505 + ], + [ + 48.116742, + 11.5484109 + ], + [ + 48.1195626, + 11.548309 + ], + [ + 48.1201399, + 11.54834 + ], + [ + 48.1207013, + 11.5483656 + ], + [ + 48.1215355, + 11.548504 + ] + ] + }, + { + "osmId": "306523332", + "name": null, + "lengthMeters": 1110.3155948025533, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1304056, + 11.5725564 + ], + [ + 48.1302329, + 11.572871 + ], + [ + 48.1299902, + 11.5732431 + ], + [ + 48.1292965, + 11.5741625 + ], + [ + 48.1286467, + 11.5750275 + ], + [ + 48.1283622, + 11.5753574 + ], + [ + 48.1282295, + 11.5754894 + ], + [ + 48.1280822, + 11.5756144 + ], + [ + 48.1278346, + 11.575781 + ], + [ + 48.1275488, + 11.5759403 + ], + [ + 48.1273202, + 11.5760458 + ], + [ + 48.1270695, + 11.5761248 + ], + [ + 48.1268359, + 11.5761591 + ], + [ + 48.1265895, + 11.5761565 + ], + [ + 48.1263215, + 11.5761119 + ], + [ + 48.1251402, + 11.5757548 + ], + [ + 48.1241307, + 11.5756009 + ], + [ + 48.1232713, + 11.5756291 + ], + [ + 48.1228428, + 11.5757038 + ], + [ + 48.1221252, + 11.5758809 + ], + [ + 48.1213348, + 11.5761002 + ], + [ + 48.1213171, + 11.576105 + ] + ] + }, + { + "osmId": "306523333", + "name": null, + "lengthMeters": 1031.7522891584415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1470104, + 11.5599423 + ], + [ + 48.1468571, + 11.5602193 + ], + [ + 48.146685, + 11.5605018 + ], + [ + 48.1465225, + 11.5607149 + ], + [ + 48.1462494, + 11.5610329 + ], + [ + 48.1459898, + 11.5612866 + ], + [ + 48.145807, + 11.5614355 + ], + [ + 48.1455903, + 11.5615742 + ], + [ + 48.1453736, + 11.5616926 + ], + [ + 48.1451479, + 11.5618042 + ], + [ + 48.1448793, + 11.5619023 + ], + [ + 48.1445859, + 11.5619598 + ], + [ + 48.1441677, + 11.5619886 + ], + [ + 48.1438382, + 11.5619598 + ], + [ + 48.1435583, + 11.561904 + ], + [ + 48.1432795, + 11.5618245 + ], + [ + 48.1424872, + 11.5614828 + ], + [ + 48.141819, + 11.5612426 + ], + [ + 48.141483, + 11.5611415 + ], + [ + 48.1413089, + 11.5610955 + ], + [ + 48.1410436, + 11.5610414 + ], + [ + 48.1400276, + 11.5608904 + ], + [ + 48.1393618, + 11.5607889 + ], + [ + 48.1388061, + 11.560815 + ], + [ + 48.1385194, + 11.560842 + ], + [ + 48.1382406, + 11.5608838 + ] + ] + }, + { + "osmId": "306523335", + "name": null, + "lengthMeters": 4050.458944038412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1471212, + 11.5600045 + ], + [ + 48.1472972, + 11.55958 + ], + [ + 48.1474346, + 11.5592138 + ], + [ + 48.1475365, + 11.5589119 + ], + [ + 48.1476392, + 11.5585668 + ], + [ + 48.147752, + 11.5581135 + ], + [ + 48.1478412, + 11.5576772 + ], + [ + 48.1479371, + 11.5570452 + ], + [ + 48.1481233, + 11.5558251 + ], + [ + 48.1482836, + 11.5545531 + ], + [ + 48.1483677, + 11.5541198 + ], + [ + 48.1484567, + 11.553656 + ], + [ + 48.1486454, + 11.5526902 + ], + [ + 48.1488644, + 11.5515624 + ], + [ + 48.1494334, + 11.5486323 + ], + [ + 48.1496285, + 11.5478162 + ], + [ + 48.1497916, + 11.5470079 + ], + [ + 48.1498884, + 11.546463 + ], + [ + 48.1499551, + 11.5460636 + ], + [ + 48.1500441, + 11.5456121 + ], + [ + 48.1501922, + 11.5448197 + ], + [ + 48.1503514, + 11.5440252 + ], + [ + 48.1506455, + 11.5424195 + ], + [ + 48.1506618, + 11.5423304 + ], + [ + 48.1508346, + 11.5414473 + ], + [ + 48.1513419, + 11.5388544 + ], + [ + 48.151865, + 11.5363096 + ], + [ + 48.151938, + 11.5360096 + ], + [ + 48.1520509, + 11.535668 + ], + [ + 48.1522158, + 11.5352242 + ], + [ + 48.152298, + 11.5350202 + ], + [ + 48.1525666, + 11.5343994 + ], + [ + 48.1526851, + 11.5341643 + ], + [ + 48.152764, + 11.5340358 + ], + [ + 48.1528803, + 11.5338802 + ], + [ + 48.1530146, + 11.5337364 + ], + [ + 48.1531542, + 11.533616 + ], + [ + 48.1534146, + 11.533427 + ], + [ + 48.1536117, + 11.5333109 + ], + [ + 48.1541398, + 11.5330486 + ], + [ + 48.1547068, + 11.5327593 + ], + [ + 48.1553323, + 11.5324695 + ], + [ + 48.1555249, + 11.5323425 + ], + [ + 48.1567571, + 11.5314543 + ], + [ + 48.1580553, + 11.5305055 + ], + [ + 48.1583699, + 11.530345 + ], + [ + 48.1586046, + 11.530257 + ], + [ + 48.1622128, + 11.5293162 + ], + [ + 48.1629331, + 11.5291874 + ], + [ + 48.1633751, + 11.529113 + ], + [ + 48.1639343, + 11.5290364 + ], + [ + 48.1641279, + 11.5289479 + ], + [ + 48.1642475, + 11.5289005 + ], + [ + 48.1651263, + 11.5284506 + ], + [ + 48.1653756, + 11.5283474 + ], + [ + 48.1655652, + 11.5282967 + ], + [ + 48.1657242, + 11.5282747 + ], + [ + 48.1659036, + 11.5282696 + ], + [ + 48.166101, + 11.5282831 + ], + [ + 48.1683223, + 11.5286772 + ], + [ + 48.1685749, + 11.5287026 + ], + [ + 48.168857, + 11.5287094 + ], + [ + 48.1691356, + 11.5286891 + ], + [ + 48.1696136, + 11.5286355 + ], + [ + 48.1701716, + 11.5285935 + ] + ] + }, + { + "osmId": "306523337", + "name": null, + "lengthMeters": 360.31596493257723, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1414703, + 11.5612511 + ], + [ + 48.1410343, + 11.5612091 + ], + [ + 48.1400196, + 11.5610481 + ], + [ + 48.1393609, + 11.5609497 + ], + [ + 48.1382406, + 11.5608838 + ] + ] + }, + { + "osmId": "306523338", + "name": null, + "lengthMeters": 2945.6308515839387, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1444597, + 11.5629712 + ], + [ + 48.1447291, + 11.5631327 + ], + [ + 48.145006, + 11.5632954 + ], + [ + 48.1452308, + 11.5634129 + ], + [ + 48.1454605, + 11.5635386 + ], + [ + 48.1456927, + 11.5636441 + ], + [ + 48.1459379, + 11.5637387 + ], + [ + 48.1461598, + 11.5638111 + ], + [ + 48.1464403, + 11.5638732 + ], + [ + 48.1467004, + 11.5639043 + ], + [ + 48.1470405, + 11.5639043 + ], + [ + 48.1473711, + 11.5638654 + ], + [ + 48.1476663, + 11.5637981 + ], + [ + 48.1479662, + 11.5637167 + ], + [ + 48.1482188, + 11.5636572 + ], + [ + 48.14845, + 11.5636171 + ], + [ + 48.148663, + 11.563593 + ], + [ + 48.1489909, + 11.5635634 + ], + [ + 48.149279, + 11.5635553 + ], + [ + 48.1495912, + 11.5635829 + ], + [ + 48.1498923, + 11.5636418 + ], + [ + 48.1501881, + 11.5637364 + ], + [ + 48.1504485, + 11.5638517 + ], + [ + 48.1506927, + 11.5639952 + ], + [ + 48.1507889, + 11.5640602 + ], + [ + 48.1515204, + 11.5645546 + ], + [ + 48.1552426, + 11.5669398 + ], + [ + 48.1554503, + 11.5670582 + ], + [ + 48.1556853, + 11.5671573 + ], + [ + 48.155923, + 11.5672442 + ], + [ + 48.1568646, + 11.5674815 + ], + [ + 48.1571003, + 11.5675409 + ], + [ + 48.1589909, + 11.5680175 + ], + [ + 48.1593238, + 11.5680835 + ], + [ + 48.1601102, + 11.5681647 + ], + [ + 48.1604204, + 11.5682104 + ], + [ + 48.1607454, + 11.5683017 + ], + [ + 48.1609834, + 11.5683744 + ], + [ + 48.1617827, + 11.5686114 + ], + [ + 48.162355, + 11.5688536 + ], + [ + 48.1629598, + 11.5691141 + ], + [ + 48.163558, + 11.5693653 + ], + [ + 48.1641808, + 11.5696087 + ], + [ + 48.1643207, + 11.5696616 + ], + [ + 48.164705, + 11.5698179 + ], + [ + 48.1649009, + 11.5699205 + ], + [ + 48.1650019, + 11.5699896 + ], + [ + 48.1650965, + 11.5700501 + ], + [ + 48.1652735, + 11.5701975 + ], + [ + 48.1654053, + 11.5703352 + ], + [ + 48.1655408, + 11.5704937 + ], + [ + 48.1659024, + 11.5709558 + ], + [ + 48.1664216, + 11.5717791 + ], + [ + 48.1667562, + 11.5723183 + ], + [ + 48.1668782, + 11.572483 + ], + [ + 48.1670192, + 11.5726497 + ], + [ + 48.1671806, + 11.5728082 + ], + [ + 48.1673324, + 11.5729302 + ], + [ + 48.1674829, + 11.5730196 + ], + [ + 48.167651, + 11.5730908 + ], + [ + 48.1678205, + 11.5731335 + ], + [ + 48.1679737, + 11.5731538 + ], + [ + 48.1681133, + 11.5731436 + ], + [ + 48.168257, + 11.5731152 + ], + [ + 48.1683628, + 11.5730826 + ], + [ + 48.1684465, + 11.5730523 + ], + [ + 48.1685279, + 11.5730134 + ], + [ + 48.16862, + 11.5729656 + ], + [ + 48.1686993, + 11.5729276 + ], + [ + 48.1688206, + 11.5728772 + ], + [ + 48.1689406, + 11.5728381 + ], + [ + 48.1691347, + 11.5727982 + ], + [ + 48.1693689, + 11.572792 + ] + ] + }, + { + "osmId": "306523339", + "name": null, + "lengthMeters": 355.3236814863982, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1414579, + 11.5613543 + ], + [ + 48.1417197, + 11.5614372 + ], + [ + 48.1419838, + 11.5615386 + ], + [ + 48.1423757, + 11.5617196 + ], + [ + 48.1431935, + 11.5622264 + ], + [ + 48.1438176, + 11.562592 + ], + [ + 48.1444597, + 11.5629712 + ] + ] + }, + { + "osmId": "306523340", + "name": null, + "lengthMeters": 357.9713965923555, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445035, + 11.5628277 + ], + [ + 48.1429848, + 11.5619168 + ], + [ + 48.1424116, + 11.5615962 + ], + [ + 48.1422129, + 11.5614879 + ], + [ + 48.1420124, + 11.561403 + ], + [ + 48.1417389, + 11.5613103 + ], + [ + 48.1414703, + 11.5612511 + ] + ] + }, + { + "osmId": "306523341", + "name": null, + "lengthMeters": 809.6214345933421, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1423852, + 11.5774917 + ], + [ + 48.1417725, + 11.5770411 + ], + [ + 48.1397179, + 11.5759519 + ], + [ + 48.1385014, + 11.5754618 + ], + [ + 48.1379566, + 11.5752269 + ], + [ + 48.1374532, + 11.575005 + ], + [ + 48.1371169, + 11.5748269 + ], + [ + 48.1368156, + 11.5746147 + ], + [ + 48.1365948, + 11.5744298 + ], + [ + 48.1364578, + 11.5742924 + ], + [ + 48.1361578, + 11.5739362 + ], + [ + 48.1360141, + 11.5737445 + ], + [ + 48.1358963, + 11.5735647 + ], + [ + 48.1357592, + 11.5733123 + ] + ] + }, + { + "osmId": "306523343", + "name": null, + "lengthMeters": 1020.4550037632647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1820022, + 11.5218186 + ], + [ + 48.1819682, + 11.5201684 + ], + [ + 48.1819562, + 11.5197214 + ], + [ + 48.1819238, + 11.5188061 + ], + [ + 48.1818857, + 11.5178002 + ], + [ + 48.1818464, + 11.5170029 + ], + [ + 48.1818189, + 11.5166166 + ], + [ + 48.1817815, + 11.516213 + ], + [ + 48.181469, + 11.513459 + ], + [ + 48.1812868, + 11.5118928 + ], + [ + 48.1811634, + 11.5106255 + ], + [ + 48.1811265, + 11.5099444 + ], + [ + 48.1810812, + 11.5089767 + ], + [ + 48.1810534, + 11.5081497 + ] + ] + }, + { + "osmId": "306523344", + "name": null, + "lengthMeters": 1544.1484249382445, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.185495, + 11.5410362 + ], + [ + 48.1829945, + 11.5366992 + ], + [ + 48.1828644, + 11.536414 + ], + [ + 48.1827681, + 11.536148 + ], + [ + 48.182679, + 11.5358385 + ], + [ + 48.1826181, + 11.5355692 + ], + [ + 48.1823229, + 11.5339328 + ], + [ + 48.1822843, + 11.5336464 + ], + [ + 48.1822635, + 11.533307 + ], + [ + 48.182234, + 11.5324417 + ], + [ + 48.1821845, + 11.5309027 + ], + [ + 48.1821211, + 11.5289347 + ], + [ + 48.1820022, + 11.5218186 + ] + ] + }, + { + "osmId": "306523345", + "name": null, + "lengthMeters": 1551.026522339967, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1819121, + 11.5218251 + ], + [ + 48.182017, + 11.5281984 + ], + [ + 48.1820095, + 11.528941 + ], + [ + 48.1820719, + 11.5309172 + ], + [ + 48.1821254, + 11.5324531 + ], + [ + 48.1821536, + 11.5333153 + ], + [ + 48.1821738, + 11.5336718 + ], + [ + 48.1822189, + 11.5339779 + ], + [ + 48.1825103, + 11.53562 + ], + [ + 48.1825753, + 11.5358977 + ], + [ + 48.1826719, + 11.5362197 + ], + [ + 48.1827692, + 11.5364964 + ], + [ + 48.1829066, + 11.5368031 + ], + [ + 48.1854014, + 11.5411326 + ] + ] + }, + { + "osmId": "306523346", + "name": null, + "lengthMeters": 140.13744194599786, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1810534, + 11.5081497 + ], + [ + 48.1810216, + 11.5073019 + ], + [ + 48.1809835, + 11.5062625 + ] + ] + }, + { + "osmId": "306523347", + "name": null, + "lengthMeters": 1103.9154413901404, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1854014, + 11.5411326 + ], + [ + 48.1855158, + 11.5413541 + ], + [ + 48.1856311, + 11.5416127 + ], + [ + 48.1857194, + 11.5418295 + ], + [ + 48.1857927, + 11.542051 + ], + [ + 48.1858502, + 11.5422895 + ], + [ + 48.1859111, + 11.5425923 + ], + [ + 48.1859461, + 11.542824 + ], + [ + 48.1859697, + 11.5430862 + ], + [ + 48.1859799, + 11.5433856 + ], + [ + 48.1859882, + 11.5438237 + ], + [ + 48.1859822, + 11.5461618 + ], + [ + 48.1859468, + 11.5476174 + ], + [ + 48.1859202, + 11.548719 + ], + [ + 48.1858948, + 11.548985 + ], + [ + 48.1858435, + 11.5493729 + ], + [ + 48.1857701, + 11.5497553 + ], + [ + 48.1856846, + 11.5501148 + ], + [ + 48.1855864, + 11.5504487 + ], + [ + 48.1854758, + 11.5507261 + ], + [ + 48.1853025, + 11.5510889 + ], + [ + 48.1850135, + 11.5516158 + ], + [ + 48.1847097, + 11.5520668 + ], + [ + 48.1844936, + 11.5523346 + ], + [ + 48.1842692, + 11.552568 + ], + [ + 48.1839985, + 11.5527879 + ], + [ + 48.1837285, + 11.5529849 + ], + [ + 48.1835068, + 11.5531209 + ], + [ + 48.1831593, + 11.5532897 + ], + [ + 48.1828212, + 11.5534748 + ] + ] + }, + { + "osmId": "306523349", + "name": null, + "lengthMeters": 212.43143247187777, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409748, + 11.5840905 + ], + [ + 48.1406436, + 11.5850674 + ], + [ + 48.1403299, + 11.585892 + ], + [ + 48.1400356, + 11.5865809 + ] + ] + }, + { + "osmId": "306523350", + "name": null, + "lengthMeters": 1063.6149672349748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1413508, + 11.5834723 + ], + [ + 48.1414575, + 11.583077 + ], + [ + 48.141659, + 11.5823302 + ], + [ + 48.1418881, + 11.5813794 + ], + [ + 48.1422203, + 11.5798639 + ], + [ + 48.1424379, + 11.5789521 + ], + [ + 48.1425645, + 11.5784216 + ], + [ + 48.1426742, + 11.5778725 + ], + [ + 48.1428125, + 11.5771645 + ], + [ + 48.1428906, + 11.5767795 + ], + [ + 48.1429605, + 11.576431 + ], + [ + 48.1431345, + 11.5756169 + ], + [ + 48.1431707, + 11.5754073 + ], + [ + 48.1431888, + 11.5752621 + ], + [ + 48.1432038, + 11.5751109 + ], + [ + 48.1432164, + 11.5749764 + ], + [ + 48.1432255, + 11.574814 + ], + [ + 48.1432284, + 11.5746252 + ], + [ + 48.1432221, + 11.5744034 + ], + [ + 48.1432051, + 11.5741635 + ], + [ + 48.1431755, + 11.5738348 + ], + [ + 48.1431355, + 11.5735938 + ], + [ + 48.1430783, + 11.5732843 + ], + [ + 48.1429855, + 11.5728087 + ], + [ + 48.1428799, + 11.572437 + ], + [ + 48.1427707, + 11.572078 + ], + [ + 48.1426306, + 11.5717219 + ], + [ + 48.1424181, + 11.5712784 + ], + [ + 48.1421226, + 11.570742 + ], + [ + 48.1418318, + 11.5701754 + ] + ] + }, + { + "osmId": "306523354", + "name": null, + "lengthMeters": 322.8643142438774, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356536, + 11.6013322 + ], + [ + 48.1357122, + 11.6009958 + ], + [ + 48.1357463, + 11.6007066 + ], + [ + 48.1357589, + 11.6004556 + ], + [ + 48.1357638, + 11.6002039 + ], + [ + 48.1357385, + 11.5996329 + ], + [ + 48.1357278, + 11.5992829 + ], + [ + 48.1357264, + 11.5989382 + ], + [ + 48.1357298, + 11.5986995 + ], + [ + 48.1357331, + 11.5985849 + ], + [ + 48.1357538, + 11.598206 + ], + [ + 48.1357729, + 11.5979814 + ], + [ + 48.1357916, + 11.5976488 + ], + [ + 48.1358501, + 11.59701 + ] + ] + }, + { + "osmId": "306523355", + "name": null, + "lengthMeters": 1239.7420029146178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1797676, + 11.6037606 + ], + [ + 48.1794027, + 11.6033657 + ], + [ + 48.1791495, + 11.6030917 + ], + [ + 48.1791236, + 11.6030637 + ], + [ + 48.1786848, + 11.6025897 + ], + [ + 48.1785904, + 11.6024897 + ], + [ + 48.1782538, + 11.6021329 + ], + [ + 48.1781113, + 11.6020149 + ], + [ + 48.178031, + 11.6019506 + ], + [ + 48.1778707, + 11.6018362 + ], + [ + 48.1778331, + 11.6018084 + ], + [ + 48.1777746, + 11.6017589 + ], + [ + 48.1776012, + 11.6015948 + ], + [ + 48.1773448, + 11.6013306 + ], + [ + 48.1735911, + 11.5973647 + ], + [ + 48.1731653, + 11.5969302 + ], + [ + 48.1727056, + 11.5964555 + ], + [ + 48.1707621, + 11.594481 + ], + [ + 48.1705821, + 11.5942981 + ] + ] + }, + { + "osmId": "306523356", + "name": null, + "lengthMeters": 148.75365287177402, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1797098, + 11.6038931 + ], + [ + 48.1808098, + 11.6050349 + ] + ] + }, + { + "osmId": "306538736", + "name": null, + "lengthMeters": 1106.7834064211106, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417608, + 11.5702153 + ], + [ + 48.142114, + 11.5708894 + ], + [ + 48.1422767, + 11.571182 + ], + [ + 48.1424575, + 11.5715444 + ], + [ + 48.1426133, + 11.5718892 + ], + [ + 48.1427296, + 11.5722157 + ], + [ + 48.142817, + 11.5725373 + ], + [ + 48.1429006, + 11.5728707 + ], + [ + 48.1429628, + 11.5732887 + ], + [ + 48.1430002, + 11.5735746 + ], + [ + 48.1430084, + 11.5739746 + ], + [ + 48.143008, + 11.574318 + ], + [ + 48.1429984, + 11.5747365 + ], + [ + 48.1429877, + 11.5749471 + ], + [ + 48.1429628, + 11.5751629 + ], + [ + 48.1428993, + 11.5755029 + ], + [ + 48.1427303, + 11.5763375 + ], + [ + 48.1425873, + 11.5770521 + ], + [ + 48.1424945, + 11.5775599 + ], + [ + 48.1423453, + 11.5783958 + ], + [ + 48.1422601, + 11.5788064 + ], + [ + 48.1417807, + 11.581117 + ], + [ + 48.1415404, + 11.5821108 + ], + [ + 48.1413086, + 11.5829708 + ], + [ + 48.1412252, + 11.58328 + ], + [ + 48.1409748, + 11.5840905 + ] + ] + }, + { + "osmId": "306723907", + "name": null, + "lengthMeters": 378.413237024052, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5022534, + 13.4756508 + ], + [ + 52.5022411, + 13.4759022 + ], + [ + 52.5022164, + 13.4765552 + ], + [ + 52.50221, + 13.476721 + ], + [ + 52.5021943, + 13.4771243 + ], + [ + 52.5022187, + 13.4781103 + ], + [ + 52.5022561, + 13.4786527 + ], + [ + 52.5023064, + 13.4792532 + ], + [ + 52.5023183, + 13.479362 + ], + [ + 52.5023936, + 13.4800523 + ], + [ + 52.5025973, + 13.4811663 + ] + ] + }, + { + "osmId": "306849373", + "name": null, + "lengthMeters": 143.265178583166, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3923804, + 13.0901551 + ], + [ + 52.3923886, + 13.0899758 + ], + [ + 52.3923783, + 13.0898751 + ], + [ + 52.3923555, + 13.0897921 + ], + [ + 52.3923102, + 13.0897135 + ], + [ + 52.3922406, + 13.0896404 + ], + [ + 52.3920875, + 13.0895462 + ], + [ + 52.3915932, + 13.0892507 + ], + [ + 52.3913842, + 13.0891257 + ] + ] + }, + { + "osmId": "307079977", + "name": null, + "lengthMeters": 1519.315993875532, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420946, + 11.5370152 + ], + [ + 48.1422065, + 11.5354946 + ], + [ + 48.1422401, + 11.5350379 + ], + [ + 48.1422713, + 11.5346155 + ], + [ + 48.1423145, + 11.5334353 + ], + [ + 48.1423471, + 11.5322968 + ], + [ + 48.1424601, + 11.5298327 + ], + [ + 48.1425786, + 11.5282299 + ], + [ + 48.142675, + 11.5269411 + ], + [ + 48.142781, + 11.5254338 + ], + [ + 48.1430023, + 11.5223603 + ], + [ + 48.1430572, + 11.5215979 + ], + [ + 48.143192, + 11.5197502 + ], + [ + 48.1432347, + 11.5190501 + ], + [ + 48.1432554, + 11.5184886 + ], + [ + 48.1432597, + 11.5177647 + ], + [ + 48.1432401, + 11.5170687 + ], + [ + 48.1432305, + 11.5168269 + ], + [ + 48.1432203, + 11.5166268 + ] + ] + }, + { + "osmId": "307079978", + "name": null, + "lengthMeters": 379.1433617286311, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412934, + 11.5478527 + ], + [ + 48.1413618, + 11.5468715 + ], + [ + 48.1415104, + 11.5448551 + ], + [ + 48.1416675, + 11.5427738 + ] + ] + }, + { + "osmId": "307080036", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1267.2713804054654, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451768, + 11.4940073 + ], + [ + 48.1451808, + 11.4939752 + ], + [ + 48.1453352, + 11.4927359 + ], + [ + 48.1454184, + 11.4923216 + ], + [ + 48.1454517, + 11.4921554 + ], + [ + 48.1455296, + 11.4918326 + ], + [ + 48.1456006, + 11.4915475 + ], + [ + 48.1456906, + 11.4912453 + ], + [ + 48.1457914, + 11.4909565 + ], + [ + 48.1458737, + 11.4907455 + ], + [ + 48.1460357, + 11.4903418 + ], + [ + 48.146225, + 11.489931 + ], + [ + 48.1465223, + 11.4893904 + ], + [ + 48.1466501, + 11.4891866 + ], + [ + 48.1469255, + 11.4887774 + ], + [ + 48.1469485, + 11.4887432 + ], + [ + 48.1471545, + 11.488444 + ], + [ + 48.1473945, + 11.4881232 + ], + [ + 48.147689, + 11.4877494 + ], + [ + 48.147902, + 11.4874929 + ], + [ + 48.148281, + 11.4870496 + ], + [ + 48.1487199, + 11.4865731 + ], + [ + 48.149221, + 11.4860528 + ], + [ + 48.1497889, + 11.4854596 + ], + [ + 48.150512, + 11.484702 + ], + [ + 48.1507172, + 11.4844974 + ], + [ + 48.1508408, + 11.4843741 + ], + [ + 48.1511884, + 11.4840453 + ], + [ + 48.1515313, + 11.4837523 + ], + [ + 48.1518807, + 11.4834829 + ], + [ + 48.1522456, + 11.483235 + ], + [ + 48.1524675, + 11.4831043 + ], + [ + 48.1525403, + 11.4830661 + ], + [ + 48.1528147, + 11.4829223 + ], + [ + 48.1531009, + 11.4827903 + ] + ] + }, + { + "osmId": "307585754", + "name": null, + "lengthMeters": 938.962065285371, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.540249, + 10.0104763 + ], + [ + 53.5401619, + 10.0113708 + ], + [ + 53.5401446, + 10.0115491 + ], + [ + 53.5398426, + 10.0140641 + ], + [ + 53.539783, + 10.014478 + ], + [ + 53.5396288, + 10.015452 + ], + [ + 53.5388035, + 10.0206086 + ], + [ + 53.5387507, + 10.0208521 + ], + [ + 53.5386879, + 10.0211164 + ], + [ + 53.5386387, + 10.021273 + ], + [ + 53.5385858, + 10.0214488 + ], + [ + 53.5385259, + 10.0216204 + ], + [ + 53.5384152, + 10.0219244 + ], + [ + 53.5383032, + 10.0221978 + ], + [ + 53.5382145, + 10.0223915 + ], + [ + 53.5381251, + 10.0225614 + ], + [ + 53.5379831, + 10.0227996 + ], + [ + 53.5378393, + 10.0230267 + ], + [ + 53.537765, + 10.0231342 + ], + [ + 53.5377052, + 10.0232289 + ], + [ + 53.5376489, + 10.0233042 + ], + [ + 53.5375438, + 10.0234255 + ], + [ + 53.5374415, + 10.0235223 + ] + ] + }, + { + "osmId": "307585756", + "name": null, + "lengthMeters": 193.62749102695594, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5374415, + 10.0235223 + ], + [ + 53.5373066, + 10.0236526 + ], + [ + 53.5371878, + 10.0237583 + ], + [ + 53.5370791, + 10.0238414 + ], + [ + 53.536958, + 10.0239296 + ], + [ + 53.5369094, + 10.0239627 + ], + [ + 53.5368834, + 10.0239768 + ], + [ + 53.5368461, + 10.0239972 + ], + [ + 53.5368029, + 10.024019 + ], + [ + 53.5367661, + 10.0240357 + ], + [ + 53.536697, + 10.0240604 + ], + [ + 53.5366604, + 10.0240745 + ], + [ + 53.5366014, + 10.0240923 + ], + [ + 53.5365416, + 10.0241063 + ], + [ + 53.5364679, + 10.0241198 + ], + [ + 53.536422, + 10.0241256 + ], + [ + 53.5363608, + 10.0241307 + ], + [ + 53.5363072, + 10.0241315 + ], + [ + 53.5362698, + 10.0241285 + ], + [ + 53.5362032, + 10.0241219 + ], + [ + 53.536129, + 10.0241122 + ], + [ + 53.5360445, + 10.024094 + ], + [ + 53.5359595, + 10.0240665 + ], + [ + 53.5358673, + 10.024029 + ], + [ + 53.5358506, + 10.0240219 + ], + [ + 53.5357812, + 10.0239902 + ] + ] + }, + { + "osmId": "307598978", + "name": null, + "lengthMeters": 214.33214408086099, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5876544, + 10.0430212 + ], + [ + 53.5876472, + 10.0430609 + ], + [ + 53.5876418, + 10.0430906 + ], + [ + 53.5875719, + 10.0434756 + ], + [ + 53.5875011, + 10.0438652 + ], + [ + 53.5874215, + 10.0443134 + ], + [ + 53.5872917, + 10.0450442 + ], + [ + 53.5871467, + 10.0458336 + ], + [ + 53.5871133, + 10.0460328 + ], + [ + 53.587097, + 10.0461296 + ] + ] + }, + { + "osmId": "307604879", + "name": "Vogelfluglinie", + "lengthMeters": 367.9317225904912, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5648486, + 10.0571732 + ], + [ + 53.5650706, + 10.0579365 + ], + [ + 53.5652689, + 10.058689 + ], + [ + 53.5654331, + 10.0593412 + ], + [ + 53.5656196, + 10.060049 + ], + [ + 53.5657285, + 10.0604103 + ], + [ + 53.5658416, + 10.060743 + ], + [ + 53.5659679, + 10.0611108 + ], + [ + 53.566064, + 10.0613904 + ], + [ + 53.56612, + 10.0615717 + ], + [ + 53.5662006, + 10.0618473 + ], + [ + 53.5662898, + 10.0621828 + ] + ] + }, + { + "osmId": "307604881", + "name": "Vogelfluglinie", + "lengthMeters": 391.54839019757765, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5648964, + 10.0570157 + ], + [ + 53.56489, + 10.0569879 + ], + [ + 53.564489, + 10.0553106 + ], + [ + 53.5641092, + 10.0537006 + ], + [ + 53.5639325, + 10.0528372 + ], + [ + 53.5639152, + 10.0527249 + ], + [ + 53.5638798, + 10.0524942 + ], + [ + 53.5638227, + 10.0521229 + ], + [ + 53.5637403, + 10.0514684 + ], + [ + 53.5637374, + 10.0514302 + ] + ] + }, + { + "osmId": "307605725", + "name": null, + "lengthMeters": 463.1382785140242, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5578606, + 10.0294812 + ], + [ + 53.557827, + 10.029397 + ], + [ + 53.557591, + 10.0288047 + ], + [ + 53.5572112, + 10.0278866 + ], + [ + 53.5569641, + 10.0273561 + ], + [ + 53.5568286, + 10.0271283 + ], + [ + 53.5566516, + 10.0268706 + ], + [ + 53.5563831, + 10.026566 + ], + [ + 53.5562407, + 10.0264413 + ], + [ + 53.5561649, + 10.0263742 + ], + [ + 53.5560707, + 10.0262907 + ], + [ + 53.5558876, + 10.0261468 + ], + [ + 53.5556166, + 10.0259688 + ], + [ + 53.5553269, + 10.0258373 + ], + [ + 53.5551561, + 10.0257674 + ], + [ + 53.5549713, + 10.0257167 + ], + [ + 53.5547098, + 10.025644 + ], + [ + 53.5546711, + 10.0256332 + ], + [ + 53.5546182, + 10.0256154 + ] + ] + }, + { + "osmId": "308083358", + "name": null, + "lengthMeters": 134.0732354828059, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1358414, + 11.6349548 + ], + [ + 48.135861, + 11.6349549 + ], + [ + 48.1358806, + 11.6349515 + ], + [ + 48.1359007, + 11.634946 + ], + [ + 48.1359238, + 11.6349349 + ], + [ + 48.1359453, + 11.6349208 + ], + [ + 48.1359762, + 11.6348938 + ], + [ + 48.1359896, + 11.6348779 + ], + [ + 48.1360015, + 11.6348585 + ], + [ + 48.1360093, + 11.6348407 + ], + [ + 48.136016, + 11.6348221 + ], + [ + 48.1360229, + 11.6347855 + ], + [ + 48.1360268, + 11.6347482 + ], + [ + 48.1360294, + 11.6346947 + ], + [ + 48.1360289, + 11.6346412 + ], + [ + 48.1360179, + 11.6341184 + ], + [ + 48.1360127, + 11.6339716 + ], + [ + 48.1360119, + 11.6338942 + ], + [ + 48.1360123, + 11.6338361 + ], + [ + 48.1360132, + 11.6337886 + ], + [ + 48.1360155, + 11.6337405 + ], + [ + 48.1360195, + 11.63369 + ], + [ + 48.1360237, + 11.6336519 + ], + [ + 48.136028, + 11.6336045 + ], + [ + 48.1360321, + 11.6335573 + ], + [ + 48.1360343, + 11.6335253 + ], + [ + 48.1360358, + 11.633497 + ], + [ + 48.1360373, + 11.6334684 + ], + [ + 48.1360376, + 11.6334468 + ], + [ + 48.1360375, + 11.6334287 + ], + [ + 48.1360371, + 11.633404 + ], + [ + 48.1360352, + 11.6333292 + ] + ] + }, + { + "osmId": "308784465", + "name": null, + "lengthMeters": 1332.6439297351121, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.159252, + 11.5470488 + ], + [ + 48.1592819, + 11.5471043 + ], + [ + 48.1593379, + 11.5472078 + ], + [ + 48.1593804, + 11.5472892 + ], + [ + 48.1593867, + 11.5473012 + ], + [ + 48.1594429, + 11.5474035 + ], + [ + 48.1594598, + 11.5474341 + ], + [ + 48.1595049, + 11.5475162 + ], + [ + 48.1595128, + 11.5475308 + ], + [ + 48.1595668, + 11.547631 + ], + [ + 48.1595885, + 11.547671 + ], + [ + 48.1596073, + 11.5477054 + ], + [ + 48.1604176, + 11.5492032 + ], + [ + 48.1605694, + 11.5494837 + ], + [ + 48.1606221, + 11.5495807 + ], + [ + 48.1606769, + 11.5496792 + ], + [ + 48.1609288, + 11.5501479 + ], + [ + 48.1611066, + 11.5504755 + ], + [ + 48.1611769, + 11.5506159 + ], + [ + 48.1612474, + 11.5507566 + ], + [ + 48.1612951, + 11.5508746 + ], + [ + 48.1613401, + 11.5510129 + ], + [ + 48.1613722, + 11.5511545 + ], + [ + 48.1614003, + 11.5513065 + ], + [ + 48.1614245, + 11.551483 + ], + [ + 48.1614385, + 11.5516481 + ], + [ + 48.1614416, + 11.5517311 + ], + [ + 48.1614429, + 11.5518142 + ], + [ + 48.1614374, + 11.5528195 + ], + [ + 48.1614367, + 11.5528935 + ], + [ + 48.1614381, + 11.5529564 + ], + [ + 48.1614376, + 11.5530718 + ], + [ + 48.161432, + 11.5532865 + ], + [ + 48.1614281, + 11.5541886 + ], + [ + 48.161422, + 11.5567621 + ], + [ + 48.1614216, + 11.5569222 + ], + [ + 48.1614198, + 11.5570764 + ], + [ + 48.1614062, + 11.5576481 + ], + [ + 48.1613954, + 11.5578922 + ], + [ + 48.1613825, + 11.5581451 + ], + [ + 48.1613796, + 11.5581989 + ], + [ + 48.1613746, + 11.5582887 + ], + [ + 48.1613676, + 11.5583978 + ], + [ + 48.1613627, + 11.5584801 + ], + [ + 48.1612261, + 11.5606381 + ], + [ + 48.1612043, + 11.5609968 + ], + [ + 48.1611837, + 11.5612746 + ], + [ + 48.1611715, + 11.5613944 + ], + [ + 48.1611493, + 11.5615298 + ], + [ + 48.1611, + 11.5617516 + ], + [ + 48.1610761, + 11.5618876 + ], + [ + 48.1610671, + 11.5619342 + ], + [ + 48.1610547, + 11.5620009 + ], + [ + 48.1610419, + 11.5620722 + ], + [ + 48.1609857, + 11.5625534 + ], + [ + 48.1609393, + 11.5629632 + ], + [ + 48.1609255, + 11.5630849 + ], + [ + 48.1609217, + 11.5631213 + ], + [ + 48.1609077, + 11.5632689 + ], + [ + 48.1609003, + 11.5633446 + ], + [ + 48.1608904, + 11.5634568 + ], + [ + 48.1608859, + 11.5635071 + ], + [ + 48.1608789, + 11.563584 + ], + [ + 48.1608755, + 11.5636906 + ], + [ + 48.1608777, + 11.5638398 + ] + ] + }, + { + "osmId": "308889239", + "name": null, + "lengthMeters": 266.0877539007557, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1393196, + 11.5627137 + ], + [ + 48.1393295, + 11.5630143 + ], + [ + 48.1393484, + 11.5635882 + ], + [ + 48.1393791, + 11.5640219 + ], + [ + 48.1394277, + 11.5644407 + ], + [ + 48.1394982, + 11.564826 + ], + [ + 48.1395973, + 11.5652518 + ], + [ + 48.1397022, + 11.5656294 + ], + [ + 48.1397919, + 11.5658941 + ], + [ + 48.1398289, + 11.5659929 + ], + [ + 48.139889, + 11.5661482 + ] + ] + }, + { + "osmId": "308889241", + "name": null, + "lengthMeters": 389.4827188670921, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418318, + 11.5701754 + ], + [ + 48.1414351, + 11.5693908 + ], + [ + 48.1412061, + 11.5689051 + ], + [ + 48.1409857, + 11.5683948 + ], + [ + 48.1407415, + 11.5677533 + ], + [ + 48.1404283, + 11.5669662 + ], + [ + 48.1401553, + 11.5662771 + ], + [ + 48.1399501, + 11.5657552 + ] + ] + }, + { + "osmId": "308889242", + "name": null, + "lengthMeters": 939.4467646290377, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1394217, + 11.5626931 + ], + [ + 48.1394119, + 11.561 + ], + [ + 48.1393801, + 11.5603671 + ], + [ + 48.1393149, + 11.5590541 + ], + [ + 48.1392541, + 11.5585496 + ], + [ + 48.1391956, + 11.5581899 + ], + [ + 48.1391181, + 11.5578374 + ], + [ + 48.1389995, + 11.5573985 + ], + [ + 48.1388541, + 11.5569322 + ], + [ + 48.1386984, + 11.5565212 + ], + [ + 48.1385165, + 11.5561092 + ], + [ + 48.1383496, + 11.5557578 + ], + [ + 48.1381499, + 11.555376 + ], + [ + 48.1379522, + 11.5550459 + ], + [ + 48.1377628, + 11.5547597 + ], + [ + 48.1375431, + 11.5544602 + ], + [ + 48.1365152, + 11.5531355 + ], + [ + 48.1357205, + 11.5521165 + ] + ] + }, + { + "osmId": "309024804", + "name": null, + "lengthMeters": 80.61265339227542, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5287726, + 13.4571206 + ], + [ + 52.5288338, + 13.457416 + ], + [ + 52.5288577, + 13.4575269 + ], + [ + 52.5288973, + 13.4577102 + ], + [ + 52.5289391, + 13.4579045 + ], + [ + 52.5289599, + 13.458001 + ], + [ + 52.5290127, + 13.458245 + ] + ] + }, + { + "osmId": "309070044", + "name": null, + "lengthMeters": 500.83330009393455, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5910093, + 9.9446818 + ], + [ + 53.5908152, + 9.9447948 + ], + [ + 53.5906248, + 9.9449184 + ], + [ + 53.59031, + 9.9451279 + ], + [ + 53.5901766, + 9.9452188 + ], + [ + 53.5895889, + 9.9456137 + ], + [ + 53.5891915, + 9.9458818 + ], + [ + 53.5887773, + 9.9461579 + ], + [ + 53.5879359, + 9.9467218 + ], + [ + 53.5875447, + 9.9469825 + ], + [ + 53.5873997, + 9.9470747 + ], + [ + 53.5871653, + 9.9472119 + ], + [ + 53.5869806, + 9.9473088 + ], + [ + 53.5868387, + 9.947372 + ], + [ + 53.5868033, + 9.947387 + ] + ] + }, + { + "osmId": "309070050", + "name": null, + "lengthMeters": 90.42929445316604, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5929176, + 9.9440365 + ], + [ + 53.5929285, + 9.9440329 + ], + [ + 53.5937168, + 9.9437829 + ] + ] + }, + { + "osmId": "309070051", + "name": null, + "lengthMeters": 90.37348293881904, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5936943, + 9.943602 + ], + [ + 53.5934245, + 9.9436432 + ], + [ + 53.5931561, + 9.9437058 + ], + [ + 53.5928898, + 9.9437894 + ] + ] + }, + { + "osmId": "309070052", + "name": null, + "lengthMeters": 395.3368443474743, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5937168, + 9.9437829 + ], + [ + 53.593957, + 9.9437172 + ], + [ + 53.5940825, + 9.9436872 + ], + [ + 53.5942126, + 9.9436656 + ], + [ + 53.5943975, + 9.9436469 + ], + [ + 53.5946766, + 9.9436433 + ], + [ + 53.5948678, + 9.9436338 + ], + [ + 53.595463, + 9.9436203 + ], + [ + 53.5958953, + 9.9435693 + ], + [ + 53.5966193, + 9.9434798 + ], + [ + 53.5972628, + 9.9434245 + ] + ] + }, + { + "osmId": "309789055", + "name": null, + "lengthMeters": 1150.4647576036955, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1714095, + 11.5859281 + ], + [ + 48.1713065, + 11.5859374 + ], + [ + 48.1712631, + 11.5859419 + ], + [ + 48.1712523, + 11.585943 + ], + [ + 48.171159, + 11.5859516 + ], + [ + 48.1710342, + 11.5859631 + ], + [ + 48.1710276, + 11.585964 + ], + [ + 48.171022, + 11.5859648 + ], + [ + 48.1709922, + 11.5859683 + ], + [ + 48.1708857, + 11.585977 + ], + [ + 48.1708295, + 11.5859824 + ], + [ + 48.1701799, + 11.5860456 + ], + [ + 48.1696092, + 11.5860969 + ], + [ + 48.1695532, + 11.5861038 + ], + [ + 48.169491, + 11.5861103 + ], + [ + 48.1693801, + 11.586121 + ], + [ + 48.1692915, + 11.5861296 + ], + [ + 48.1690906, + 11.5861471 + ], + [ + 48.1686834, + 11.5861837 + ], + [ + 48.1682806, + 11.5861968 + ], + [ + 48.1678703, + 11.5862 + ], + [ + 48.1677586, + 11.5861992 + ], + [ + 48.1676465, + 11.5861961 + ], + [ + 48.1674244, + 11.5861856 + ], + [ + 48.1673118, + 11.5861818 + ], + [ + 48.1672079, + 11.5861818 + ], + [ + 48.1671345, + 11.5861841 + ], + [ + 48.1670613, + 11.5861891 + ], + [ + 48.166914, + 11.5862015 + ], + [ + 48.1666069, + 11.5862313 + ], + [ + 48.1665131, + 11.5862406 + ], + [ + 48.1652731, + 11.5863415 + ], + [ + 48.1651466, + 11.5863518 + ], + [ + 48.1648176, + 11.5863803 + ], + [ + 48.1645756, + 11.5864028 + ], + [ + 48.1643954, + 11.5864127 + ], + [ + 48.1642658, + 11.586426 + ], + [ + 48.1642204, + 11.5864285 + ], + [ + 48.1640337, + 11.5864419 + ], + [ + 48.1637727, + 11.5864517 + ], + [ + 48.1633369, + 11.5864221 + ], + [ + 48.1625164, + 11.5863479 + ], + [ + 48.1624321, + 11.5863408 + ], + [ + 48.1622398, + 11.5863226 + ], + [ + 48.1620094, + 11.5863008 + ], + [ + 48.1619853, + 11.5863014 + ], + [ + 48.1619621, + 11.5863077 + ], + [ + 48.1619387, + 11.5863181 + ], + [ + 48.1619161, + 11.5863357 + ], + [ + 48.1618964, + 11.5863579 + ], + [ + 48.1618777, + 11.5863825 + ], + [ + 48.1618672, + 11.5864019 + ], + [ + 48.1618601, + 11.5864191 + ], + [ + 48.1618539, + 11.5864361 + ], + [ + 48.1618485, + 11.5864557 + ], + [ + 48.1618433, + 11.5864785 + ], + [ + 48.1618401, + 11.5865025 + ], + [ + 48.1618392, + 11.5865298 + ], + [ + 48.1618397, + 11.5865572 + ], + [ + 48.1618408, + 11.5865768 + ], + [ + 48.1618435, + 11.5865962 + ], + [ + 48.1618478, + 11.5866195 + ], + [ + 48.1618539, + 11.5866407 + ], + [ + 48.1618619, + 11.5866605 + ], + [ + 48.161864, + 11.5866655 + ], + [ + 48.1618758, + 11.5866891 + ], + [ + 48.1618838, + 11.5867021 + ], + [ + 48.1618924, + 11.5867143 + ], + [ + 48.1619022, + 11.5867253 + ], + [ + 48.1619118, + 11.5867336 + ], + [ + 48.1619458, + 11.5867573 + ], + [ + 48.161981, + 11.5867758 + ], + [ + 48.1619932, + 11.5867809 + ], + [ + 48.1620113, + 11.5867884 + ], + [ + 48.1620439, + 11.5867968 + ], + [ + 48.1620898, + 11.5867946 + ], + [ + 48.1621268, + 11.5867846 + ], + [ + 48.1621548, + 11.5867722 + ], + [ + 48.1621667, + 11.5867646 + ], + [ + 48.1622218, + 11.5867264 + ], + [ + 48.1623953, + 11.5866102 + ] + ] + }, + { + "osmId": "309789075", + "name": null, + "lengthMeters": 109.90351113839239, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1723959, + 11.5858342 + ], + [ + 48.1721184, + 11.5858605 + ], + [ + 48.1715687, + 11.5859126 + ], + [ + 48.1714153, + 11.5859275 + ], + [ + 48.1714095, + 11.5859281 + ] + ] + }, + { + "osmId": "309789078", + "name": null, + "lengthMeters": 263.200041352086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1713892, + 11.5859808 + ], + [ + 48.1714177, + 11.5859797 + ], + [ + 48.1719132, + 11.5859311 + ], + [ + 48.1721194, + 11.585912 + ], + [ + 48.1723593, + 11.5858898 + ], + [ + 48.1723882, + 11.5858894 + ], + [ + 48.1724099, + 11.5858902 + ], + [ + 48.1724316, + 11.5858919 + ], + [ + 48.172449, + 11.5858949 + ], + [ + 48.1724656, + 11.5858991 + ], + [ + 48.1724809, + 11.585904 + ], + [ + 48.1724962, + 11.5859102 + ], + [ + 48.172518, + 11.585924 + ], + [ + 48.1725303, + 11.5859332 + ], + [ + 48.1725513, + 11.5859513 + ], + [ + 48.1725657, + 11.5859636 + ], + [ + 48.1725806, + 11.5859796 + ], + [ + 48.1725945, + 11.5859969 + ], + [ + 48.1726073, + 11.5860149 + ], + [ + 48.1726188, + 11.5860316 + ], + [ + 48.1726236, + 11.5860392 + ], + [ + 48.1726295, + 11.5860486 + ], + [ + 48.1726403, + 11.5860691 + ], + [ + 48.1726522, + 11.5860939 + ], + [ + 48.1726627, + 11.5861169 + ], + [ + 48.1726691, + 11.5861358 + ], + [ + 48.1726743, + 11.586151 + ], + [ + 48.1726806, + 11.5861736 + ], + [ + 48.1726889, + 11.5862091 + ], + [ + 48.1726927, + 11.5862294 + ], + [ + 48.1726969, + 11.5862645 + ], + [ + 48.1726993, + 11.5863288 + ], + [ + 48.1727144, + 11.5866551 + ], + [ + 48.1727176, + 11.5866796 + ], + [ + 48.1727208, + 11.5867037 + ], + [ + 48.1727266, + 11.586731 + ], + [ + 48.1727329, + 11.5867564 + ], + [ + 48.1727379, + 11.5867757 + ], + [ + 48.1727449, + 11.586798 + ], + [ + 48.1727519, + 11.586815 + ], + [ + 48.1727603, + 11.5868339 + ], + [ + 48.1727699, + 11.5868537 + ], + [ + 48.1727819, + 11.5868726 + ], + [ + 48.1727946, + 11.5868927 + ], + [ + 48.1728072, + 11.586911 + ], + [ + 48.17282, + 11.5869262 + ], + [ + 48.1728278, + 11.5869355 + ], + [ + 48.1728395, + 11.5869487 + ], + [ + 48.1728504, + 11.5869587 + ], + [ + 48.1728859, + 11.58698 + ], + [ + 48.172921, + 11.5869968 + ], + [ + 48.1729592, + 11.5870115 + ], + [ + 48.1729994, + 11.5870261 + ], + [ + 48.1731689, + 11.5870906 + ], + [ + 48.1732539, + 11.5871229 + ] + ] + }, + { + "osmId": "309831647", + "name": null, + "lengthMeters": 309.08328896460137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5465605, + 9.9688704 + ], + [ + 53.5464656, + 9.9692653 + ], + [ + 53.5464385, + 9.9694047 + ], + [ + 53.5463857, + 9.9696768 + ], + [ + 53.546285, + 9.9702528 + ], + [ + 53.5461807, + 9.9710297 + ], + [ + 53.5461281, + 9.971421 + ], + [ + 53.5461131, + 9.9716748 + ], + [ + 53.5461075, + 9.9718917 + ], + [ + 53.5461145, + 9.9723125 + ], + [ + 53.5461161, + 9.9724076 + ], + [ + 53.546133, + 9.972809 + ], + [ + 53.5461562, + 9.9731383 + ], + [ + 53.5461905, + 9.9734316 + ] + ] + }, + { + "osmId": "309831648", + "name": null, + "lengthMeters": 914.8303408472176, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497594, + 9.9563803 + ], + [ + 53.5496712, + 9.9578448 + ], + [ + 53.549601, + 9.9590556 + ], + [ + 53.5495982, + 9.9590869 + ], + [ + 53.5495646, + 9.9594833 + ], + [ + 53.549517, + 9.9598884 + ], + [ + 53.5494656, + 9.9603293 + ], + [ + 53.5494034, + 9.9607674 + ], + [ + 53.5493352, + 9.9611596 + ], + [ + 53.5492101, + 9.9618256 + ], + [ + 53.5490771, + 9.9623955 + ], + [ + 53.5489329, + 9.9629487 + ], + [ + 53.5488406, + 9.9632692 + ], + [ + 53.5487362, + 9.9635824 + ], + [ + 53.5486335, + 9.9638984 + ], + [ + 53.5485251, + 9.9642122 + ], + [ + 53.5483779, + 9.9645725 + ], + [ + 53.5481917, + 9.9649922 + ], + [ + 53.5478468, + 9.965747 + ], + [ + 53.5476292, + 9.9662079 + ], + [ + 53.5474237, + 9.9666754 + ], + [ + 53.5473143, + 9.9669199 + ], + [ + 53.5472142, + 9.9671815 + ], + [ + 53.5470242, + 9.9676839 + ], + [ + 53.5467869, + 9.96847 + ], + [ + 53.5466842, + 9.9689114 + ] + ] + }, + { + "osmId": "309970190", + "name": null, + "lengthMeters": 733.2824712225118, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.155022, + 11.4458595 + ], + [ + 48.1550262, + 11.4458536 + ], + [ + 48.155237, + 11.4455374 + ], + [ + 48.1557147, + 11.4448841 + ], + [ + 48.1567348, + 11.4434889 + ], + [ + 48.1570851, + 11.4429994 + ], + [ + 48.1571505, + 11.442908 + ], + [ + 48.1575111, + 11.4424041 + ], + [ + 48.1577724, + 11.4420344 + ], + [ + 48.1578047, + 11.4419894 + ], + [ + 48.1578784, + 11.4418786 + ], + [ + 48.1582716, + 11.4412757 + ], + [ + 48.1584951, + 11.4409279 + ], + [ + 48.1587487, + 11.4405263 + ], + [ + 48.1592326, + 11.4397078 + ], + [ + 48.1595306, + 11.4391943 + ], + [ + 48.1597005, + 11.4389054 + ] + ] + }, + { + "osmId": "309970191", + "name": null, + "lengthMeters": 529.3979331943925, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1867166, + 11.3894405 + ], + [ + 48.1869742, + 11.3889709 + ], + [ + 48.1881839, + 11.38675 + ], + [ + 48.1894318, + 11.3844678 + ], + [ + 48.1897313, + 11.3839133 + ] + ] + }, + { + "osmId": "310398871", + "name": null, + "lengthMeters": 237.25642573381106, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1399501, + 11.5657552 + ], + [ + 48.1398341, + 11.565423 + ], + [ + 48.1397444, + 11.5651234 + ], + [ + 48.1396543, + 11.5647785 + ], + [ + 48.1395756, + 11.5644128 + ], + [ + 48.1395135, + 11.5640323 + ], + [ + 48.1394664, + 11.563614 + ], + [ + 48.1394388, + 11.5631859 + ], + [ + 48.1394316, + 11.5629771 + ], + [ + 48.1394217, + 11.5626931 + ] + ] + }, + { + "osmId": "311591344", + "name": null, + "lengthMeters": 391.22339344050414, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1364004, + 11.6095571 + ], + [ + 48.1364538, + 11.6099457 + ], + [ + 48.1364908, + 11.610338 + ], + [ + 48.1365455, + 11.6109967 + ], + [ + 48.1366095, + 11.6117958 + ], + [ + 48.1366486, + 11.6123318 + ], + [ + 48.1367063, + 11.6130339 + ], + [ + 48.1368196, + 11.614345 + ], + [ + 48.1368482, + 11.6146587 + ], + [ + 48.1368524, + 11.6147838 + ] + ] + }, + { + "osmId": "311591350", + "name": null, + "lengthMeters": 325.3260118969839, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1364238, + 11.6095231 + ], + [ + 48.1364065, + 11.6094167 + ], + [ + 48.136387, + 11.6093161 + ], + [ + 48.1363661, + 11.6092278 + ], + [ + 48.1363521, + 11.6091769 + ], + [ + 48.1363314, + 11.6091002 + ], + [ + 48.1363112, + 11.6090258 + ], + [ + 48.1362973, + 11.6089748 + ], + [ + 48.1362355, + 11.6087571 + ], + [ + 48.1360626, + 11.6081318 + ], + [ + 48.1359187, + 11.6076162 + ], + [ + 48.1358831, + 11.6074754 + ], + [ + 48.1358637, + 11.607382 + ], + [ + 48.1358216, + 11.6071625 + ], + [ + 48.1357929, + 11.6069396 + ], + [ + 48.1357317, + 11.6063935 + ], + [ + 48.1356821, + 11.6059236 + ], + [ + 48.1356417, + 11.6055028 + ], + [ + 48.1356254, + 11.6053324 + ] + ] + }, + { + "osmId": "311750067", + "name": null, + "lengthMeters": 821.1267063322366, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5064419, + 13.3319111 + ], + [ + 52.506757, + 13.3312353 + ], + [ + 52.5077929, + 13.3289758 + ], + [ + 52.507833, + 13.3288766 + ], + [ + 52.5080348, + 13.3283547 + ], + [ + 52.5080953, + 13.3281746 + ], + [ + 52.5081697, + 13.327972 + ], + [ + 52.5082193, + 13.3278489 + ], + [ + 52.5087624, + 13.3266365 + ], + [ + 52.5088756, + 13.3264068 + ], + [ + 52.5089907, + 13.3261803 + ], + [ + 52.5090964, + 13.3259783 + ], + [ + 52.5091689, + 13.3258473 + ], + [ + 52.5092956, + 13.3256364 + ], + [ + 52.5094002, + 13.3254738 + ], + [ + 52.5112699, + 13.3228299 + ] + ] + }, + { + "osmId": "313485941", + "name": null, + "lengthMeters": 846.3839136108548, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2121423, + 11.6731846 + ], + [ + 48.2121267, + 11.6731662 + ], + [ + 48.2111913, + 11.6720321 + ], + [ + 48.2107745, + 11.6714761 + ], + [ + 48.2105967, + 11.6712344 + ], + [ + 48.2105521, + 11.6711528 + ], + [ + 48.2105075, + 11.6710668 + ], + [ + 48.2104275, + 11.6708898 + ], + [ + 48.2103507, + 11.6707105 + ], + [ + 48.2102801, + 11.6705219 + ], + [ + 48.2102546, + 11.6704264 + ], + [ + 48.2102291, + 11.6703308 + ], + [ + 48.210206, + 11.6702317 + ], + [ + 48.2101844, + 11.6701304 + ], + [ + 48.2101659, + 11.6700009 + ], + [ + 48.2101488, + 11.6698692 + ], + [ + 48.2101358, + 11.6697397 + ], + [ + 48.2101257, + 11.6696079 + ], + [ + 48.2101267, + 11.6694995 + ], + [ + 48.2101277, + 11.6693912 + ], + [ + 48.2101368, + 11.6692261 + ], + [ + 48.2101517, + 11.6690611 + ], + [ + 48.2103595, + 11.6677131 + ], + [ + 48.2107201, + 11.6654359 + ], + [ + 48.210993, + 11.6636382 + ], + [ + 48.2110623, + 11.663181 + ] + ] + }, + { + "osmId": "313761342", + "name": null, + "lengthMeters": 79.62230450453048, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5541993, + 10.066035 + ], + [ + 53.5540444, + 10.0671212 + ], + [ + 53.554032, + 10.067207 + ] + ] + }, + { + "osmId": "313867759", + "name": null, + "lengthMeters": 448.88516978319984, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008986, + 13.4766149 + ], + [ + 52.5006739, + 13.4771012 + ], + [ + 52.5004966, + 13.4774931 + ], + [ + 52.5002925, + 13.4779506 + ], + [ + 52.5000376, + 13.4785256 + ], + [ + 52.4999369, + 13.4787473 + ], + [ + 52.4996781, + 13.4793104 + ], + [ + 52.4994981, + 13.4797009 + ], + [ + 52.4993977, + 13.4799222 + ], + [ + 52.4992981, + 13.4801384 + ], + [ + 52.4991802, + 13.4803956 + ], + [ + 52.4990803, + 13.4806145 + ], + [ + 52.4990075, + 13.4807718 + ], + [ + 52.4988964, + 13.4810115 + ], + [ + 52.4984785, + 13.4819223 + ] + ] + }, + { + "osmId": "314653135", + "name": null, + "lengthMeters": 230.76081703741661, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6207388, + 10.0319229 + ], + [ + 53.6208686, + 10.0319639 + ], + [ + 53.6209239, + 10.0319782 + ], + [ + 53.6216117, + 10.0321568 + ], + [ + 53.6224486, + 10.032366 + ], + [ + 53.6227586, + 10.03246 + ], + [ + 53.6227883, + 10.0324705 + ] + ] + }, + { + "osmId": "314653136", + "name": null, + "lengthMeters": 132.733181169266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6207564, + 10.0317181 + ], + [ + 53.6202834, + 10.0315941 + ], + [ + 53.6201032, + 10.0315469 + ], + [ + 53.6197439, + 10.0314553 + ], + [ + 53.6196232, + 10.0314283 + ], + [ + 53.6195761, + 10.0314178 + ] + ] + }, + { + "osmId": "314657498", + "name": null, + "lengthMeters": 740.2433893095167, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6459014, + 10.0899516 + ], + [ + 53.6456603, + 10.0897287 + ], + [ + 53.6454117, + 10.0894857 + ], + [ + 53.6447011, + 10.0885958 + ], + [ + 53.6443519, + 10.08809 + ], + [ + 53.6443051, + 10.0880139 + ], + [ + 53.6440186, + 10.0875478 + ], + [ + 53.6437275, + 10.0870557 + ], + [ + 53.643398, + 10.0864989 + ], + [ + 53.6433348, + 10.0863881 + ], + [ + 53.6427517, + 10.0853661 + ], + [ + 53.6424892, + 10.0848782 + ], + [ + 53.6420755, + 10.0841094 + ], + [ + 53.6417294, + 10.0834542 + ], + [ + 53.6414726, + 10.0830021 + ], + [ + 53.6412442, + 10.0826001 + ], + [ + 53.6410735, + 10.0822956 + ] + ] + }, + { + "osmId": "314750841", + "name": null, + "lengthMeters": 192.16368700630272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1754197, + 11.5661992 + ], + [ + 48.1754294, + 11.5662029 + ], + [ + 48.1754865, + 11.5662402 + ], + [ + 48.1755341, + 11.566279 + ], + [ + 48.1755658, + 11.5663075 + ], + [ + 48.1755843, + 11.5663299 + ], + [ + 48.1756155, + 11.5663702 + ], + [ + 48.1756447, + 11.5664098 + ], + [ + 48.1756651, + 11.5664467 + ], + [ + 48.175691, + 11.566498 + ], + [ + 48.1757136, + 11.566559 + ], + [ + 48.1757297, + 11.5666103 + ], + [ + 48.1757371, + 11.5666524 + ], + [ + 48.1757398, + 11.5667107 + ], + [ + 48.1757378, + 11.5667559 + ], + [ + 48.1757352, + 11.5667765 + ], + [ + 48.1757294, + 11.5668086 + ], + [ + 48.1757215, + 11.5668399 + ], + [ + 48.1757096, + 11.5668669 + ], + [ + 48.1756959, + 11.5668921 + ], + [ + 48.1756668, + 11.5669286 + ], + [ + 48.175649, + 11.5669452 + ], + [ + 48.1756293, + 11.566957 + ], + [ + 48.1756065, + 11.5669697 + ], + [ + 48.1755855, + 11.5669754 + ], + [ + 48.1755589, + 11.5669781 + ], + [ + 48.1755379, + 11.5669757 + ], + [ + 48.1755086, + 11.5669643 + ], + [ + 48.1754788, + 11.5669459 + ], + [ + 48.1754534, + 11.5669231 + ], + [ + 48.175416, + 11.5668778 + ], + [ + 48.1753776, + 11.5668239 + ], + [ + 48.1753662, + 11.5668011 + ], + [ + 48.1753338, + 11.566728 + ], + [ + 48.1753076, + 11.5666666 + ], + [ + 48.1752675, + 11.5665845 + ], + [ + 48.1752408, + 11.5665314 + ], + [ + 48.1748492, + 11.5660734 + ] + ] + }, + { + "osmId": "315395639", + "name": null, + "lengthMeters": 172.60461487702224, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4877128, + 13.2600408 + ], + [ + 52.487819, + 13.2602281 + ], + [ + 52.4879816, + 13.2605529 + ], + [ + 52.4882826, + 13.2611241 + ], + [ + 52.488439, + 13.2614188 + ], + [ + 52.4886245, + 13.2617682 + ], + [ + 52.4887275, + 13.2619695 + ] + ] + }, + { + "osmId": "316702511", + "name": null, + "lengthMeters": 76.73265158517918, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5726998, + 13.3790778 + ], + [ + 52.5724015, + 13.3795984 + ], + [ + 52.5722282, + 13.3799067 + ] + ] + }, + { + "osmId": "316724835", + "name": null, + "lengthMeters": 102.1294827446736, + "maxSpeedKph": 40.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6116445, + 13.3147856 + ], + [ + 52.6117466, + 13.3146918 + ], + [ + 52.6119469, + 13.3145055 + ], + [ + 52.6121992, + 13.3142474 + ], + [ + 52.6124288, + 13.3139996 + ] + ] + }, + { + "osmId": "316724854", + "name": null, + "lengthMeters": 1054.3329986656588, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5749631, + 13.3757867 + ], + [ + 52.5755195, + 13.3748961 + ], + [ + 52.5761137, + 13.3736113 + ], + [ + 52.57687, + 13.3717097 + ], + [ + 52.5770501, + 13.3713132 + ], + [ + 52.5774635, + 13.3704029 + ], + [ + 52.5780359, + 13.3693761 + ], + [ + 52.5788604, + 13.3678809 + ], + [ + 52.579774, + 13.3661321 + ], + [ + 52.5805195, + 13.3647275 + ], + [ + 52.580807, + 13.3641758 + ], + [ + 52.5810076, + 13.3638043 + ] + ] + }, + { + "osmId": "316975485", + "name": null, + "lengthMeters": 104.84913305597206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5300868, + 13.3813369 + ], + [ + 52.5301275, + 13.381482 + ], + [ + 52.5301652, + 13.381612 + ], + [ + 52.5301816, + 13.3816774 + ], + [ + 52.5301979, + 13.3817487 + ], + [ + 52.5302124, + 13.3818236 + ], + [ + 52.5302546, + 13.3820321 + ], + [ + 52.5302853, + 13.3821477 + ], + [ + 52.5303178, + 13.3822634 + ], + [ + 52.5304584, + 13.3827596 + ] + ] + }, + { + "osmId": "317008963", + "name": "Siemensbahn", + "lengthMeters": 345.5590184369736, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5393886, + 13.2629546 + ], + [ + 52.5395481, + 13.2625968 + ], + [ + 52.5400791, + 13.261612 + ], + [ + 52.5406182, + 13.2605857 + ], + [ + 52.5413708, + 13.2590223 + ] + ] + }, + { + "osmId": "317379991", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 106.6880222503103, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5923186, + 10.0370263 + ], + [ + 53.5920334, + 10.0371342 + ], + [ + 53.5920126, + 10.037142 + ], + [ + 53.5913825, + 10.0373809 + ] + ] + }, + { + "osmId": "317401282", + "name": null, + "lengthMeters": 139.09789326754654, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5303384, + 13.3833009 + ], + [ + 52.5302814, + 13.3833714 + ], + [ + 52.5297105, + 13.3840961 + ], + [ + 52.5296054, + 13.3842281 + ], + [ + 52.5293464, + 13.3845536 + ] + ] + }, + { + "osmId": "317769294", + "name": null, + "lengthMeters": 1065.0652945852416, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.518207, + 13.43034 + ], + [ + 52.5181922, + 13.4304414 + ], + [ + 52.5180938, + 13.4311771 + ], + [ + 52.5179666, + 13.4322487 + ], + [ + 52.517915, + 13.4326762 + ], + [ + 52.5179171, + 13.4327616 + ], + [ + 52.5178955, + 13.433153 + ], + [ + 52.5169075, + 13.4427743 + ], + [ + 52.5168281, + 13.4433938 + ], + [ + 52.5167441, + 13.4440685 + ], + [ + 52.5167009, + 13.4444434 + ], + [ + 52.5166489, + 13.4449388 + ], + [ + 52.5166105, + 13.4453458 + ], + [ + 52.5165872, + 13.4456652 + ], + [ + 52.5165773, + 13.4458443 + ] + ] + }, + { + "osmId": "317892218", + "name": "U6", + "lengthMeters": 118.21010887556149, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5630904, + 13.3278532 + ], + [ + 52.5632706, + 13.3271621 + ], + [ + 52.5635095, + 13.326246 + ] + ] + }, + { + "osmId": "318519247", + "name": null, + "lengthMeters": 307.69900139693027, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1446597, + 11.4980779 + ], + [ + 48.1447988, + 11.4967406 + ], + [ + 48.1449444, + 11.4953811 + ], + [ + 48.1449859, + 11.4949624 + ], + [ + 48.1450917, + 11.4939816 + ] + ] + }, + { + "osmId": "318519249", + "name": null, + "lengthMeters": 1810.6071875814155, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445823, + 11.4980571 + ], + [ + 48.1447029, + 11.4969292 + ], + [ + 48.1448644, + 11.4953719 + ], + [ + 48.1449122, + 11.4949484 + ], + [ + 48.1450063, + 11.4940222 + ], + [ + 48.1450859, + 11.4933515 + ], + [ + 48.1451845, + 11.4926908 + ], + [ + 48.1452959, + 11.4920842 + ], + [ + 48.1454322, + 11.4914816 + ], + [ + 48.1455881, + 11.4908667 + ], + [ + 48.1459524, + 11.4894306 + ], + [ + 48.1460126, + 11.4891545 + ], + [ + 48.1460313, + 11.4890685 + ], + [ + 48.146067, + 11.4889049 + ], + [ + 48.1461622, + 11.4883219 + ], + [ + 48.146217, + 11.4879211 + ], + [ + 48.1462668, + 11.4873551 + ], + [ + 48.1462943, + 11.4866564 + ], + [ + 48.1463015, + 11.4858197 + ], + [ + 48.1463066, + 11.4838233 + ], + [ + 48.1463085, + 11.4813284 + ], + [ + 48.1463369, + 11.4807355 + ], + [ + 48.1465092, + 11.4783525 + ], + [ + 48.1467251, + 11.4753576 + ], + [ + 48.1468256, + 11.4740297 + ] + ] + }, + { + "osmId": "318519251", + "name": null, + "lengthMeters": 468.27352879916737, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1456172, + 11.4919291 + ], + [ + 48.1455977, + 11.4922464 + ], + [ + 48.1455679, + 11.4925606 + ], + [ + 48.1455189, + 11.4930019 + ], + [ + 48.1454152, + 11.4937605 + ], + [ + 48.1452929, + 11.4945319 + ], + [ + 48.1451815, + 11.4952674 + ], + [ + 48.1449224, + 11.4969562 + ], + [ + 48.1448349, + 11.4976184 + ], + [ + 48.1447793, + 11.4981101 + ] + ] + }, + { + "osmId": "318519253", + "name": "Fernbahn", + "lengthMeters": 1243.4465945086563, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.143392, + 11.5147099 + ], + [ + 48.1433554, + 11.5137338 + ], + [ + 48.1433613, + 11.5126018 + ], + [ + 48.1433693, + 11.5123348 + ], + [ + 48.1433985, + 11.5117095 + ], + [ + 48.1434713, + 11.5108348 + ], + [ + 48.1437558, + 11.5081315 + ], + [ + 48.1438805, + 11.5069465 + ], + [ + 48.1442849, + 11.5030748 + ], + [ + 48.1443563, + 11.5023998 + ], + [ + 48.1448116, + 11.4981188 + ] + ] + }, + { + "osmId": "318519255", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 307.49645097550615, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1447378, + 11.4980989 + ], + [ + 48.1448725, + 11.496755 + ], + [ + 48.1450119, + 11.4953972 + ], + [ + 48.1451768, + 11.4940073 + ] + ] + }, + { + "osmId": "318519256", + "name": null, + "lengthMeters": 445.0087785485856, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.144541, + 11.501597 + ], + [ + 48.144516, + 11.5018782 + ], + [ + 48.144486, + 11.5023334 + ], + [ + 48.1444697, + 11.5025396 + ], + [ + 48.1444516, + 11.5027452 + ], + [ + 48.1444214, + 11.503056 + ], + [ + 48.1443099, + 11.5040719 + ], + [ + 48.1441423, + 11.505603 + ], + [ + 48.1441322, + 11.5056752 + ], + [ + 48.1440657, + 11.5061479 + ], + [ + 48.1439659, + 11.5068215 + ], + [ + 48.1438774, + 11.5075084 + ] + ] + }, + { + "osmId": "318519257", + "name": null, + "lengthMeters": 338.6658028369925, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1428587, + 11.5157226 + ], + [ + 48.1428431, + 11.515988 + ], + [ + 48.1428159, + 11.5162367 + ], + [ + 48.1427825, + 11.5164763 + ], + [ + 48.1427393, + 11.5166894 + ], + [ + 48.1426813, + 11.5169265 + ], + [ + 48.1426204, + 11.5171376 + ], + [ + 48.1425641, + 11.5173043 + ], + [ + 48.1425019, + 11.5174659 + ], + [ + 48.1423976, + 11.5177062 + ], + [ + 48.1422656, + 11.5179726 + ], + [ + 48.141919, + 11.5186207 + ], + [ + 48.1416519, + 11.5191214 + ], + [ + 48.141557, + 11.5192976 + ], + [ + 48.1413802, + 11.5196052 + ] + ] + }, + { + "osmId": "318519258", + "name": null, + "lengthMeters": 708.4307044162991, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.143732, + 11.5052735 + ], + [ + 48.1437298, + 11.505293 + ], + [ + 48.1437046, + 11.5055304 + ], + [ + 48.1433934, + 11.5083989 + ], + [ + 48.1433818, + 11.5085063 + ], + [ + 48.143136, + 11.510769 + ], + [ + 48.1429994, + 11.5120968 + ], + [ + 48.1429518, + 11.5126105 + ], + [ + 48.1429273, + 11.51299 + ], + [ + 48.1429153, + 11.5133365 + ], + [ + 48.1428998, + 11.5139024 + ], + [ + 48.1428825, + 11.5147256 + ] + ] + }, + { + "osmId": "318519259", + "name": null, + "lengthMeters": 705.4548722879616, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1448559, + 11.4981142 + ], + [ + 48.144487, + 11.5015941 + ], + [ + 48.1444131, + 11.5022959 + ], + [ + 48.1443885, + 11.5025232 + ], + [ + 48.1443838, + 11.5025678 + ], + [ + 48.144368, + 11.5027175 + ], + [ + 48.144298, + 11.5033811 + ], + [ + 48.1442261, + 11.5040621 + ], + [ + 48.1441906, + 11.5044022 + ], + [ + 48.1440765, + 11.5055762 + ], + [ + 48.1440686, + 11.5056557 + ], + [ + 48.1439347, + 11.5069539 + ], + [ + 48.1438774, + 11.5075084 + ] + ] + }, + { + "osmId": "318856354", + "name": null, + "lengthMeters": 87.00989571493267, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1521291, + 11.6138461 + ], + [ + 48.1521523, + 11.6138854 + ], + [ + 48.1521775, + 11.6139135 + ], + [ + 48.1522115, + 11.6139368 + ], + [ + 48.1522308, + 11.613949 + ], + [ + 48.1522525, + 11.6139549 + ], + [ + 48.1522831, + 11.6139578 + ], + [ + 48.1523117, + 11.6139556 + ], + [ + 48.1523364, + 11.613946 + ], + [ + 48.1523576, + 11.6139327 + ], + [ + 48.1523803, + 11.6139172 + ], + [ + 48.1523986, + 11.6138972 + ], + [ + 48.1524158, + 11.613872 + ], + [ + 48.1524301, + 11.6138454 + ], + [ + 48.1524415, + 11.613821 + ], + [ + 48.1524514, + 11.6137899 + ], + [ + 48.1524578, + 11.6137552 + ], + [ + 48.1524607, + 11.6137219 + ], + [ + 48.1524607, + 11.6136871 + ], + [ + 48.1524602, + 11.6136516 + ], + [ + 48.1524553, + 11.6136198 + ], + [ + 48.1524474, + 11.613585 + ], + [ + 48.1524361, + 11.6135517 + ], + [ + 48.1524188, + 11.613514 + ], + [ + 48.1523986, + 11.6134844 + ], + [ + 48.1523781, + 11.6134527 + ], + [ + 48.1523551, + 11.6134224 + ], + [ + 48.1523195, + 11.6133603 + ], + [ + 48.1522848, + 11.6133011 + ] + ] + }, + { + "osmId": "319229503", + "name": null, + "lengthMeters": 930.2839792480236, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5543386, + 10.0265128 + ], + [ + 53.5543613, + 10.0267272 + ], + [ + 53.5543793, + 10.0271516 + ], + [ + 53.5543904, + 10.0276165 + ], + [ + 53.5543952, + 10.0281967 + ], + [ + 53.5544125, + 10.0288838 + ], + [ + 53.5544294, + 10.0292187 + ], + [ + 53.554471, + 10.0296809 + ], + [ + 53.5545312, + 10.0301621 + ], + [ + 53.5547204, + 10.0316131 + ], + [ + 53.5548197, + 10.0323999 + ], + [ + 53.5549027, + 10.0330244 + ], + [ + 53.5549628, + 10.0335181 + ], + [ + 53.5550731, + 10.0343574 + ], + [ + 53.5552481, + 10.0357586 + ], + [ + 53.5554354, + 10.0371542 + ], + [ + 53.5555837, + 10.0383462 + ], + [ + 53.5556802, + 10.0391275 + ], + [ + 53.5557334, + 10.0397518 + ], + [ + 53.5557446, + 10.0400621 + ], + [ + 53.5557492, + 10.0403601 + ] + ] + }, + { + "osmId": "319292807", + "name": null, + "lengthMeters": 1130.0614283760312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4244071, + 13.5867446 + ], + [ + 52.4249674, + 13.5864658 + ], + [ + 52.42761, + 13.585222 + ], + [ + 52.4286123, + 13.5847459 + ], + [ + 52.4289515, + 13.5845746 + ], + [ + 52.429531, + 13.5842949 + ], + [ + 52.4297492, + 13.5841777 + ], + [ + 52.4305802, + 13.5839351 + ], + [ + 52.4307085, + 13.583898 + ], + [ + 52.4311552, + 13.5837656 + ], + [ + 52.4319804, + 13.5835636 + ], + [ + 52.4324041, + 13.5834451 + ], + [ + 52.4342813, + 13.5829274 + ] + ] + }, + { + "osmId": "319531448", + "name": null, + "lengthMeters": 127.7249947914803, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1299026, + 11.6092587 + ], + [ + 48.1293884, + 11.608661 + ], + [ + 48.1290769, + 11.6082532 + ], + [ + 48.1290162, + 11.6081658 + ] + ] + }, + { + "osmId": "319531449", + "name": null, + "lengthMeters": 580.190048884128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1292893, + 11.6073534 + ], + [ + 48.1294218, + 11.6075587 + ], + [ + 48.1296265, + 11.6078703 + ], + [ + 48.1298358, + 11.6081973 + ], + [ + 48.1299635, + 11.6083982 + ], + [ + 48.1301816, + 11.6087198 + ], + [ + 48.1306401, + 11.6093476 + ], + [ + 48.1314065, + 11.6103399 + ], + [ + 48.1316017, + 11.6105712 + ], + [ + 48.1318252, + 11.6108546 + ], + [ + 48.1319906, + 11.6111085 + ], + [ + 48.1324108, + 11.6117435 + ], + [ + 48.1326419, + 11.6121047 + ], + [ + 48.1328116, + 11.612375 + ], + [ + 48.1330559, + 11.6127523 + ] + ] + }, + { + "osmId": "319531450", + "name": null, + "lengthMeters": 377.8998010459343, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1302751, + 11.6093661 + ], + [ + 48.1308631, + 11.6101276 + ], + [ + 48.131012, + 11.6103011 + ], + [ + 48.131316, + 11.6106997 + ], + [ + 48.1317183, + 11.6111875 + ], + [ + 48.1319972, + 11.6114876 + ], + [ + 48.1322928, + 11.6118128 + ], + [ + 48.1324281, + 11.6119881 + ], + [ + 48.1325979, + 11.6122294 + ], + [ + 48.132724, + 11.6124232 + ], + [ + 48.1328653, + 11.612651 + ] + ] + }, + { + "osmId": "319536615", + "name": null, + "lengthMeters": 439.08931660330734, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6339634, + 9.8322897 + ], + [ + 53.633462, + 9.8332623 + ], + [ + 53.6329126, + 9.8343416 + ], + [ + 53.6323146, + 9.8354917 + ], + [ + 53.6313247, + 9.8372418 + ] + ] + }, + { + "osmId": "319555011", + "name": null, + "lengthMeters": 1062.4935902091656, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1883392, + 11.4689123 + ], + [ + 48.1872883, + 11.4693259 + ], + [ + 48.1866423, + 11.4695651 + ], + [ + 48.1857259, + 11.4698803 + ], + [ + 48.1848931, + 11.4701553 + ], + [ + 48.1844823, + 11.4702887 + ], + [ + 48.1839625, + 11.470459 + ], + [ + 48.1837194, + 11.4705397 + ], + [ + 48.1833429, + 11.4706681 + ], + [ + 48.1832474, + 11.470701 + ], + [ + 48.1831058, + 11.4707499 + ], + [ + 48.1819261, + 11.4711742 + ], + [ + 48.1801907, + 11.4718502 + ], + [ + 48.1791065, + 11.4723004 + ], + [ + 48.1790597, + 11.4723198 + ] + ] + }, + { + "osmId": "319555012", + "name": null, + "lengthMeters": 395.8201576548193, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1883604, + 11.4690556 + ], + [ + 48.1918038, + 11.4677019 + ] + ] + }, + { + "osmId": "319555013", + "name": null, + "lengthMeters": 395.77000583374013, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1917819, + 11.4675573 + ], + [ + 48.1914984, + 11.4676715 + ], + [ + 48.1907196, + 11.467979 + ], + [ + 48.1883392, + 11.4689123 + ] + ] + }, + { + "osmId": "319555014", + "name": null, + "lengthMeters": 670.1337877998327, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1918038, + 11.4677019 + ], + [ + 48.1924625, + 11.467437 + ], + [ + 48.1930104, + 11.4672166 + ], + [ + 48.1931218, + 11.4671698 + ], + [ + 48.1941701, + 11.4667488 + ], + [ + 48.1949124, + 11.4664422 + ], + [ + 48.1957217, + 11.4660874 + ], + [ + 48.1969469, + 11.4655506 + ], + [ + 48.1976066, + 11.4652625 + ] + ] + }, + { + "osmId": "319555015", + "name": null, + "lengthMeters": 509.03769757425573, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1931597, + 11.4669009 + ], + [ + 48.1941313, + 11.4665098 + ], + [ + 48.1942652, + 11.4664558 + ], + [ + 48.1948781, + 11.466201 + ], + [ + 48.1956822, + 11.4658837 + ], + [ + 48.1962386, + 11.4656579 + ], + [ + 48.1963281, + 11.4656216 + ], + [ + 48.1966671, + 11.4654842 + ], + [ + 48.1970681, + 11.4653178 + ], + [ + 48.1975786, + 11.465107 + ] + ] + }, + { + "osmId": "319555016", + "name": null, + "lengthMeters": 395.13210869195666, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1883256, + 11.4688189 + ], + [ + 48.1907076, + 11.4678864 + ], + [ + 48.1912014, + 11.4676898 + ], + [ + 48.1917622, + 11.467463 + ] + ] + }, + { + "osmId": "319555017", + "name": null, + "lengthMeters": 329.2069523854406, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1919181, + 11.4673178 + ], + [ + 48.1924668, + 11.4670945 + ], + [ + 48.1931952, + 11.4667954 + ], + [ + 48.1937158, + 11.4665813 + ], + [ + 48.1941114, + 11.4664193 + ], + [ + 48.1947738, + 11.4661459 + ] + ] + }, + { + "osmId": "319555018", + "name": null, + "lengthMeters": 767.2365396806866, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1882858, + 11.4685984 + ], + [ + 48.1872399, + 11.4690059 + ], + [ + 48.1866825, + 11.4692252 + ], + [ + 48.1865082, + 11.469293 + ], + [ + 48.1856838, + 11.4696138 + ], + [ + 48.1852635, + 11.4697735 + ], + [ + 48.1848045, + 11.4699479 + ], + [ + 48.1836891, + 11.470355 + ], + [ + 48.1832132, + 11.4705393 + ], + [ + 48.1825412, + 11.4707818 + ], + [ + 48.1822678, + 11.4708814 + ], + [ + 48.1819307, + 11.4710043 + ], + [ + 48.1815977, + 11.4711414 + ] + ] + }, + { + "osmId": "319555019", + "name": null, + "lengthMeters": 414.96938753889583, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1883089, + 11.4687414 + ], + [ + 48.1887485, + 11.4685656 + ], + [ + 48.1887954, + 11.4685469 + ], + [ + 48.1900297, + 11.4680674 + ], + [ + 48.1907577, + 11.4677771 + ], + [ + 48.1919181, + 11.4673178 + ] + ] + }, + { + "osmId": "319555020", + "name": null, + "lengthMeters": 394.9389468343356, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1917231, + 11.4672569 + ], + [ + 48.1913741, + 11.4673952 + ], + [ + 48.1906783, + 11.4676698 + ], + [ + 48.1906484, + 11.4676796 + ], + [ + 48.1900071, + 11.4679269 + ], + [ + 48.1898472, + 11.4679893 + ], + [ + 48.1897927, + 11.4680105 + ], + [ + 48.1893854, + 11.4681695 + ], + [ + 48.1887716, + 11.4684089 + ], + [ + 48.1887268, + 11.4684264 + ], + [ + 48.1882858, + 11.4685984 + ] + ] + }, + { + "osmId": "319927322", + "name": null, + "lengthMeters": 147.35299499727563, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5424429, + 13.3367911 + ], + [ + 52.5425545, + 13.3370019 + ], + [ + 52.5433099, + 13.338439 + ] + ] + }, + { + "osmId": "319928520", + "name": null, + "lengthMeters": 279.7601822667278, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5552883, + 13.4026821 + ], + [ + 52.5556508, + 13.4027515 + ], + [ + 52.5556819, + 13.4027629 + ], + [ + 52.5557114, + 13.4027828 + ], + [ + 52.5557481, + 13.4028247 + ], + [ + 52.5557844, + 13.4028837 + ], + [ + 52.5558231, + 13.4029605 + ], + [ + 52.555845, + 13.4030305 + ], + [ + 52.555857, + 13.4031055 + ], + [ + 52.5558644, + 13.4032122 + ], + [ + 52.5558652, + 13.4033264 + ], + [ + 52.5558683, + 13.4034358 + ], + [ + 52.5558759, + 13.4035331 + ], + [ + 52.555896, + 13.403608 + ], + [ + 52.55592, + 13.4036758 + ], + [ + 52.5559573, + 13.4037477 + ], + [ + 52.5560026, + 13.4037976 + ], + [ + 52.5560466, + 13.4038294 + ], + [ + 52.556092, + 13.4038488 + ], + [ + 52.5561487, + 13.4038512 + ], + [ + 52.5562062, + 13.4038434 + ], + [ + 52.5562546, + 13.4038112 + ], + [ + 52.5562992, + 13.4037674 + ], + [ + 52.5563325, + 13.4037161 + ], + [ + 52.5563643, + 13.403649 + ], + [ + 52.5563871, + 13.4035775 + ], + [ + 52.556404, + 13.4034934 + ], + [ + 52.5564065, + 13.4034033 + ], + [ + 52.5563981, + 13.403316 + ], + [ + 52.5563811, + 13.4032331 + ], + [ + 52.5563564, + 13.4031534 + ], + [ + 52.556292, + 13.4030533 + ], + [ + 52.5562441, + 13.40301 + ], + [ + 52.5559093, + 13.4027786 + ], + [ + 52.5557847, + 13.4027233 + ] + ] + }, + { + "osmId": "319928530", + "name": null, + "lengthMeters": 100.06294869219687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5557847, + 13.4027233 + ], + [ + 52.5557138, + 13.4027126 + ], + [ + 52.5556469, + 13.4027025 + ], + [ + 52.5552992, + 13.4026406 + ], + [ + 52.5548894, + 13.4025743 + ] + ] + }, + { + "osmId": "319928531", + "name": null, + "lengthMeters": 331.15505617178667, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5543352, + 13.4040624 + ], + [ + 52.5543276, + 13.4041941 + ], + [ + 52.5542168, + 13.406117 + ], + [ + 52.5541452, + 13.407357 + ], + [ + 52.5541379, + 13.4074779 + ], + [ + 52.5540838, + 13.408422 + ], + [ + 52.554077, + 13.4085394 + ], + [ + 52.5540674, + 13.4087065 + ], + [ + 52.554057, + 13.4088865 + ], + [ + 52.554054, + 13.4089387 + ] + ] + }, + { + "osmId": "320089402", + "name": null, + "lengthMeters": 191.38828680824977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5463836, + 13.57254 + ], + [ + 52.5462301, + 13.5719849 + ], + [ + 52.5462048, + 13.5718954 + ], + [ + 52.5461771, + 13.5717885 + ], + [ + 52.54614, + 13.5716484 + ], + [ + 52.5460703, + 13.571382 + ], + [ + 52.5460473, + 13.5712971 + ], + [ + 52.5460121, + 13.5711633 + ], + [ + 52.5457935, + 13.5703135 + ], + [ + 52.5456949, + 13.5699463 + ] + ] + }, + { + "osmId": "320089403", + "name": null, + "lengthMeters": 366.03234092691036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5475658, + 13.559732 + ], + [ + 52.5474986, + 13.5602098 + ], + [ + 52.5474463, + 13.5605701 + ], + [ + 52.5474267, + 13.5606852 + ], + [ + 52.5473705, + 13.5610163 + ], + [ + 52.5472111, + 13.5619425 + ], + [ + 52.5471849, + 13.5620903 + ], + [ + 52.5471516, + 13.5622531 + ], + [ + 52.5471341, + 13.5623369 + ], + [ + 52.5471144, + 13.5624203 + ], + [ + 52.5470794, + 13.5625508 + ], + [ + 52.5470398, + 13.562678 + ], + [ + 52.5469946, + 13.5628148 + ], + [ + 52.5469444, + 13.5629487 + ], + [ + 52.5468943, + 13.5630689 + ], + [ + 52.5468417, + 13.5631848 + ], + [ + 52.5467744, + 13.5633146 + ], + [ + 52.5467039, + 13.5634393 + ], + [ + 52.5466445, + 13.5635331 + ], + [ + 52.5465831, + 13.5636237 + ], + [ + 52.5465395, + 13.5636801 + ], + [ + 52.5464938, + 13.5637383 + ], + [ + 52.5464097, + 13.563837 + ], + [ + 52.5463342, + 13.5639143 + ], + [ + 52.5462355, + 13.5640049 + ], + [ + 52.546168, + 13.5640596 + ], + [ + 52.5460924, + 13.5641157 + ], + [ + 52.5459934, + 13.5641756 + ] + ] + }, + { + "osmId": "320089404", + "name": null, + "lengthMeters": 839.4093475645384, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495492, + 13.5602488 + ], + [ + 52.5499346, + 13.5607976 + ], + [ + 52.5501271, + 13.5610785 + ], + [ + 52.550577, + 13.5617322 + ], + [ + 52.5506528, + 13.5618375 + ], + [ + 52.5513046, + 13.5627929 + ], + [ + 52.5520644, + 13.5638869 + ], + [ + 52.5521458, + 13.5639937 + ], + [ + 52.5522601, + 13.5641404 + ], + [ + 52.5523766, + 13.5642826 + ], + [ + 52.5525063, + 13.5644303 + ], + [ + 52.5526268, + 13.5645558 + ], + [ + 52.5527991, + 13.5647251 + ], + [ + 52.5540951, + 13.5658757 + ], + [ + 52.5542, + 13.5659676 + ], + [ + 52.5555698, + 13.5671692 + ], + [ + 52.5557151, + 13.5672792 + ] + ] + }, + { + "osmId": "320091622", + "name": null, + "lengthMeters": 474.58975935762135, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5320437, + 13.61482 + ], + [ + 52.5319883, + 13.6150858 + ], + [ + 52.5319596, + 13.6152235 + ], + [ + 52.5319058, + 13.6154788 + ], + [ + 52.5318527, + 13.6157319 + ], + [ + 52.5316995, + 13.6164731 + ], + [ + 52.5310126, + 13.6197179 + ], + [ + 52.5308415, + 13.6205336 + ], + [ + 52.5308152, + 13.6206598 + ], + [ + 52.5307897, + 13.6207819 + ], + [ + 52.5307727, + 13.6208632 + ], + [ + 52.5307498, + 13.620973 + ], + [ + 52.5306495, + 13.6214512 + ] + ] + }, + { + "osmId": "320091623", + "name": null, + "lengthMeters": 470.7180419556976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532939, + 13.6106892 + ], + [ + 52.5330807, + 13.6100088 + ], + [ + 52.5331074, + 13.6098814 + ], + [ + 52.533186, + 13.609506 + ], + [ + 52.53321, + 13.6093914 + ], + [ + 52.533407, + 13.6084404 + ], + [ + 52.5334488, + 13.6082461 + ], + [ + 52.533494, + 13.6080438 + ], + [ + 52.5335397, + 13.6078797 + ], + [ + 52.5335713, + 13.6077763 + ], + [ + 52.5336042, + 13.607681 + ], + [ + 52.5336359, + 13.6075955 + ], + [ + 52.5336769, + 13.607493 + ], + [ + 52.5337217, + 13.6073902 + ], + [ + 52.5337492, + 13.6073313 + ], + [ + 52.5338078, + 13.6072147 + ], + [ + 52.5338686, + 13.6071073 + ], + [ + 52.5339325, + 13.6070017 + ], + [ + 52.5339952, + 13.6069094 + ], + [ + 52.5340634, + 13.6068194 + ], + [ + 52.5341394, + 13.6067273 + ], + [ + 52.5342106, + 13.6066521 + ], + [ + 52.5342944, + 13.6065751 + ], + [ + 52.5344444, + 13.6064666 + ], + [ + 52.5345764, + 13.6063737 + ], + [ + 52.5354951, + 13.605722 + ] + ] + }, + { + "osmId": "320092425", + "name": null, + "lengthMeters": 400.39377823750374, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5399864, + 13.6041756 + ], + [ + 52.5403092, + 13.604108 + ], + [ + 52.5407409, + 13.6040201 + ], + [ + 52.541401, + 13.6038808 + ], + [ + 52.5421581, + 13.6037216 + ], + [ + 52.54251, + 13.6036438 + ], + [ + 52.5426333, + 13.6036182 + ], + [ + 52.54324, + 13.6034906 + ], + [ + 52.5435581, + 13.6034242 + ] + ] + }, + { + "osmId": "320092700", + "name": null, + "lengthMeters": 372.88629178737295, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5441027, + 13.5976563 + ], + [ + 52.5441999, + 13.5969453 + ], + [ + 52.5446255, + 13.5937876 + ], + [ + 52.5447459, + 13.5929235 + ], + [ + 52.5448345, + 13.592275 + ] + ] + }, + { + "osmId": "320092701", + "name": null, + "lengthMeters": 441.63843916319985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5435581, + 13.6034242 + ], + [ + 52.5437922, + 13.6033753 + ], + [ + 52.5438262, + 13.6033679 + ], + [ + 52.5438591, + 13.6033599 + ], + [ + 52.5439069, + 13.6033449 + ], + [ + 52.5439499, + 13.6033246 + ], + [ + 52.5439714, + 13.603309 + ], + [ + 52.544017, + 13.6032715 + ], + [ + 52.5440424, + 13.6032384 + ], + [ + 52.5440452, + 13.6032347 + ], + [ + 52.5440733, + 13.6031883 + ], + [ + 52.5440975, + 13.6031421 + ], + [ + 52.5441102, + 13.6031132 + ], + [ + 52.5441231, + 13.6030771 + ], + [ + 52.5441372, + 13.6030165 + ], + [ + 52.5441403, + 13.6029941 + ], + [ + 52.5441465, + 13.6029528 + ], + [ + 52.5441511, + 13.6028881 + ], + [ + 52.5441514, + 13.6028087 + ], + [ + 52.5441503, + 13.602784 + ], + [ + 52.5441471, + 13.6027291 + ], + [ + 52.5440846, + 13.6019345 + ], + [ + 52.5439133, + 13.5997596 + ], + [ + 52.5438976, + 13.5995599 + ], + [ + 52.5438931, + 13.5995024 + ], + [ + 52.5438901, + 13.5994337 + ], + [ + 52.5438886, + 13.5994 + ], + [ + 52.5438895, + 13.5993161 + ], + [ + 52.5438911, + 13.5992707 + ], + [ + 52.5438981, + 13.5991713 + ], + [ + 52.5440155, + 13.5982956 + ], + [ + 52.5440243, + 13.5982308 + ], + [ + 52.5440425, + 13.5980962 + ], + [ + 52.5441027, + 13.5976563 + ] + ] + }, + { + "osmId": "320093500", + "name": null, + "lengthMeters": 104.4431052476298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5487876, + 13.5870247 + ], + [ + 52.5490935, + 13.5871358 + ], + [ + 52.5492067, + 13.5871682 + ], + [ + 52.5492736, + 13.5871731 + ], + [ + 52.5493262, + 13.5871539 + ], + [ + 52.5493456, + 13.5871431 + ], + [ + 52.5493712, + 13.5871271 + ], + [ + 52.5493951, + 13.587109 + ], + [ + 52.5494437, + 13.5870502 + ], + [ + 52.5494686, + 13.5870085 + ], + [ + 52.5495048, + 13.5869267 + ], + [ + 52.5495362, + 13.5868051 + ], + [ + 52.5495564, + 13.5866806 + ] + ] + }, + { + "osmId": "320093501", + "name": null, + "lengthMeters": 362.37705139496467, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5448345, + 13.592275 + ], + [ + 52.5448661, + 13.5920431 + ], + [ + 52.5448931, + 13.5918457 + ], + [ + 52.544911, + 13.5917147 + ], + [ + 52.5449236, + 13.5916225 + ], + [ + 52.5449349, + 13.5915393 + ], + [ + 52.5449528, + 13.5914086 + ], + [ + 52.5450516, + 13.5906822 + ], + [ + 52.545467, + 13.5876276 + ], + [ + 52.5455466, + 13.5870456 + ] + ] + }, + { + "osmId": "320178173", + "name": null, + "lengthMeters": 1009.2611397006785, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5076488, + 13.5385389 + ], + [ + 52.5074517, + 13.5386345 + ], + [ + 52.5063372, + 13.5391333 + ], + [ + 52.5059364, + 13.5393185 + ], + [ + 52.5052973, + 13.5396197 + ], + [ + 52.5046289, + 13.5399499 + ], + [ + 52.5029187, + 13.5407638 + ], + [ + 52.5027619, + 13.5408452 + ], + [ + 52.5026594, + 13.5408965 + ], + [ + 52.5018835, + 13.5412693 + ], + [ + 52.501488, + 13.5414651 + ], + [ + 52.5011134, + 13.5416773 + ], + [ + 52.5006485, + 13.5419753 + ], + [ + 52.5001306, + 13.5423205 + ], + [ + 52.4999714, + 13.5424256 + ], + [ + 52.4991316, + 13.5429821 + ], + [ + 52.4990094, + 13.5430631 + ] + ] + }, + { + "osmId": "320178183", + "name": null, + "lengthMeters": 452.0715538246977, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4959037, + 13.4921645 + ], + [ + 52.4957128, + 13.4926259 + ], + [ + 52.4956133, + 13.4928584 + ], + [ + 52.4954602, + 13.4932027 + ], + [ + 52.494722, + 13.4948736 + ], + [ + 52.4944175, + 13.495575 + ], + [ + 52.4942498, + 13.4959871 + ], + [ + 52.4941228, + 13.4963168 + ], + [ + 52.4939732, + 13.4967256 + ], + [ + 52.4938923, + 13.4969577 + ], + [ + 52.4938086, + 13.4972059 + ], + [ + 52.4937269, + 13.4974597 + ], + [ + 52.4936484, + 13.4977108 + ] + ] + }, + { + "osmId": "320178186", + "name": null, + "lengthMeters": 458.3148428627889, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5212309, + 13.5380364 + ], + [ + 52.5207469, + 13.5381227 + ], + [ + 52.5201406, + 13.5382082 + ], + [ + 52.5195076, + 13.5382914 + ], + [ + 52.5194868, + 13.5382937 + ], + [ + 52.5194333, + 13.5382996 + ], + [ + 52.5172726, + 13.5385395 + ], + [ + 52.517265, + 13.5385403 + ], + [ + 52.5171217, + 13.5385562 + ] + ] + }, + { + "osmId": "320178188", + "name": null, + "lengthMeters": 86.4987545254029, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4979366, + 13.4871173 + ], + [ + 52.4981303, + 13.4866742 + ], + [ + 52.4983922, + 13.4860816 + ] + ] + }, + { + "osmId": "320199525", + "name": null, + "lengthMeters": 5871.539469197555, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2137267, + 11.5409861 + ], + [ + 48.2137192, + 11.5412957 + ], + [ + 48.21373, + 11.5417969 + ], + [ + 48.2137578, + 11.5426865 + ], + [ + 48.2137905, + 11.5435731 + ], + [ + 48.2137011, + 11.5469895 + ], + [ + 48.2137032, + 11.5474068 + ], + [ + 48.2139151, + 11.5501651 + ], + [ + 48.2139281, + 11.5505224 + ], + [ + 48.2139308, + 11.5507401 + ], + [ + 48.2139091, + 11.5511562 + ], + [ + 48.2138683, + 11.5515231 + ], + [ + 48.2138032, + 11.5520251 + ], + [ + 48.2137697, + 11.552258 + ], + [ + 48.2136077, + 11.5532206 + ], + [ + 48.2133756, + 11.5549012 + ], + [ + 48.2132024, + 11.556208 + ], + [ + 48.2130968, + 11.557775 + ], + [ + 48.2131476, + 11.5592302 + ], + [ + 48.2131385, + 11.5598467 + ], + [ + 48.2131105, + 11.5602722 + ], + [ + 48.2130607, + 11.5606366 + ], + [ + 48.2129954, + 11.5609969 + ], + [ + 48.2128016, + 11.5617933 + ], + [ + 48.2123042, + 11.5634071 + ], + [ + 48.211825, + 11.5649752 + ], + [ + 48.2116287, + 11.5655799 + ], + [ + 48.211485, + 11.5659459 + ], + [ + 48.2113425, + 11.5662669 + ], + [ + 48.2110325, + 11.5668659 + ], + [ + 48.2107086, + 11.5674014 + ], + [ + 48.2104367, + 11.5677935 + ], + [ + 48.2101525, + 11.568148 + ], + [ + 48.2098705, + 11.5684584 + ], + [ + 48.2095165, + 11.5687723 + ], + [ + 48.2092089, + 11.5689733 + ], + [ + 48.2089333, + 11.5690946 + ], + [ + 48.208604, + 11.5691768 + ], + [ + 48.208051, + 11.5692363 + ], + [ + 48.2065448, + 11.569322 + ], + [ + 48.2048701, + 11.5693111 + ], + [ + 48.204228, + 11.5693069 + ], + [ + 48.2032651, + 11.5692972 + ], + [ + 48.2029946, + 11.5693076 + ], + [ + 48.2010907, + 11.569381 + ], + [ + 48.2007545, + 11.5694156 + ], + [ + 48.2005222, + 11.5694714 + ], + [ + 48.2002319, + 11.5695788 + ], + [ + 48.1999965, + 11.5697065 + ], + [ + 48.1981524, + 11.5710507 + ], + [ + 48.1978165, + 11.5712525 + ], + [ + 48.1974298, + 11.5714131 + ], + [ + 48.1972417, + 11.5714729 + ], + [ + 48.1971107, + 11.5715146 + ], + [ + 48.1966096, + 11.5716395 + ], + [ + 48.1959225, + 11.5717282 + ], + [ + 48.1949202, + 11.5718655 + ], + [ + 48.1905422, + 11.5723768 + ], + [ + 48.1874888, + 11.5725919 + ], + [ + 48.1868118, + 11.5726388 + ], + [ + 48.1857718, + 11.5727141 + ], + [ + 48.1817136, + 11.5730078 + ], + [ + 48.1809368, + 11.573066 + ], + [ + 48.1800806, + 11.5731298 + ], + [ + 48.1798979, + 11.5731383 + ], + [ + 48.1791512, + 11.5731272 + ], + [ + 48.1788254, + 11.5730841 + ], + [ + 48.1785896, + 11.5730232 + ], + [ + 48.1784374, + 11.5729607 + ], + [ + 48.1782987, + 11.5728744 + ], + [ + 48.1781775, + 11.5727928 + ], + [ + 48.1773152, + 11.5719712 + ], + [ + 48.1771308, + 11.571813 + ] + ] + }, + { + "osmId": "320220941", + "name": null, + "lengthMeters": 137.8826628159424, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4940579, + 13.4960407 + ], + [ + 52.493332, + 13.4976919 + ] + ] + }, + { + "osmId": "320220965", + "name": null, + "lengthMeters": 501.9726986356695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4951622, + 13.4912338 + ], + [ + 52.4948003, + 13.4920468 + ], + [ + 52.4925011, + 13.4972232 + ] + ] + }, + { + "osmId": "320220973", + "name": null, + "lengthMeters": 263.1522253707502, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4921788, + 13.5010627 + ], + [ + 52.4922944, + 13.500625 + ], + [ + 52.4923839, + 13.5003361 + ], + [ + 52.492508, + 13.4999818 + ], + [ + 52.4926408, + 13.499645 + ], + [ + 52.4927727, + 13.4993218 + ], + [ + 52.4929429, + 13.4989902 + ], + [ + 52.4930788, + 13.4987464 + ], + [ + 52.493216, + 13.4985078 + ], + [ + 52.4933612, + 13.4982735 + ], + [ + 52.493562, + 13.4979531 + ] + ] + }, + { + "osmId": "320220987", + "name": null, + "lengthMeters": 810.7358133314704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4929703, + 13.4984066 + ], + [ + 52.4920918, + 13.5004076 + ], + [ + 52.4904584, + 13.5041281 + ], + [ + 52.4898391, + 13.5055351 + ], + [ + 52.4893733, + 13.5065932 + ], + [ + 52.489246, + 13.5068823 + ], + [ + 52.4887007, + 13.5081132 + ] + ] + }, + { + "osmId": "320246391", + "name": null, + "lengthMeters": 95.46017285184517, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.493332, + 13.4976919 + ], + [ + 52.4928288, + 13.4988343 + ] + ] + }, + { + "osmId": "320292165", + "name": null, + "lengthMeters": 216.47881497507498, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232414, + 13.3636085 + ], + [ + 52.5242471, + 13.3652374 + ], + [ + 52.5242989, + 13.3653302 + ], + [ + 52.5243385, + 13.3654089 + ], + [ + 52.524373, + 13.3654839 + ], + [ + 52.524403, + 13.3655615 + ], + [ + 52.5245546, + 13.3659542 + ] + ] + }, + { + "osmId": "320383569", + "name": null, + "lengthMeters": 185.963080193191, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4538205, + 13.5929388 + ], + [ + 52.4534617, + 13.5930945 + ], + [ + 52.4531868, + 13.5932219 + ], + [ + 52.4531355, + 13.5932853 + ], + [ + 52.4530893, + 13.5933667 + ], + [ + 52.4530475, + 13.5934881 + ], + [ + 52.4530397, + 13.5935391 + ], + [ + 52.4530349, + 13.5935687 + ], + [ + 52.453026, + 13.5936525 + ], + [ + 52.4530242, + 13.5937544 + ], + [ + 52.4530137, + 13.5942323 + ], + [ + 52.4530098, + 13.5944854 + ], + [ + 52.4530097, + 13.5945329 + ], + [ + 52.4530158, + 13.5947941 + ] + ] + }, + { + "osmId": "320383572", + "name": null, + "lengthMeters": 985.9876545363027, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4539485, + 13.5929374 + ], + [ + 52.4541427, + 13.5928402 + ], + [ + 52.4548257, + 13.5925191 + ], + [ + 52.4549796, + 13.5924145 + ], + [ + 52.4550458, + 13.5923282 + ], + [ + 52.4551005, + 13.5922353 + ], + [ + 52.4551301, + 13.5921623 + ], + [ + 52.4551547, + 13.5920778 + ], + [ + 52.4552067, + 13.5917351 + ], + [ + 52.4552834, + 13.5911198 + ], + [ + 52.4553089, + 13.5909152 + ], + [ + 52.4553158, + 13.5908676 + ], + [ + 52.4554938, + 13.5894072 + ], + [ + 52.4555086, + 13.5892785 + ], + [ + 52.4555211, + 13.589139 + ], + [ + 52.4555253, + 13.5889833 + ], + [ + 52.4555273, + 13.5887471 + ], + [ + 52.4554789, + 13.5870233 + ], + [ + 52.4554734, + 13.586699 + ], + [ + 52.4554594, + 13.5861022 + ], + [ + 52.4554568, + 13.5859938 + ], + [ + 52.45543, + 13.5850479 + ], + [ + 52.4553754, + 13.5830826 + ], + [ + 52.4553654, + 13.5827216 + ], + [ + 52.4553672, + 13.5824661 + ], + [ + 52.4553832, + 13.5821539 + ], + [ + 52.4554648, + 13.5810641 + ], + [ + 52.4555654, + 13.5798362 + ] + ] + }, + { + "osmId": "320398589", + "name": null, + "lengthMeters": 126.44920007967467, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073323, + 13.4912127 + ], + [ + 52.5070962, + 13.4906636 + ], + [ + 52.5068072, + 13.4899919 + ], + [ + 52.5066882, + 13.4896737 + ] + ] + }, + { + "osmId": "320398629", + "name": null, + "lengthMeters": 156.6053475041093, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061851, + 13.4807409 + ], + [ + 52.5063728, + 13.4801157 + ], + [ + 52.5064956, + 13.4797031 + ], + [ + 52.5065607, + 13.4794895 + ], + [ + 52.5068047, + 13.478663 + ] + ] + }, + { + "osmId": "320398631", + "name": null, + "lengthMeters": 192.3343954925976, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5063069, + 13.4886765 + ], + [ + 52.5065671, + 13.4894659 + ], + [ + 52.5067336, + 13.4900348 + ], + [ + 52.5068413, + 13.4903615 + ], + [ + 52.5069799, + 13.4907402 + ], + [ + 52.5070765, + 13.4909718 + ], + [ + 52.5070874, + 13.490998 + ], + [ + 52.5071529, + 13.4911508 + ] + ] + }, + { + "osmId": "320398637", + "name": null, + "lengthMeters": 456.5731780429945, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5086736, + 13.4945439 + ], + [ + 52.5087855, + 13.4947875 + ], + [ + 52.5088769, + 13.4949635 + ], + [ + 52.5090205, + 13.4952292 + ], + [ + 52.5092222, + 13.4955999 + ], + [ + 52.5104945, + 13.4979348 + ], + [ + 52.5114048, + 13.4995799 + ] + ] + }, + { + "osmId": "320398660", + "name": null, + "lengthMeters": 465.4214849109688, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061572, + 13.480715 + ], + [ + 52.506104, + 13.4808941 + ], + [ + 52.5059693, + 13.4813397 + ], + [ + 52.5058925, + 13.4815997 + ], + [ + 52.5058072, + 13.4819174 + ], + [ + 52.5057267, + 13.4822786 + ], + [ + 52.5056577, + 13.4826352 + ], + [ + 52.5056043, + 13.483017 + ], + [ + 52.5055699, + 13.4834116 + ], + [ + 52.5055515, + 13.4838176 + ], + [ + 52.5055476, + 13.4842314 + ], + [ + 52.5055505, + 13.4846288 + ], + [ + 52.505564, + 13.4850541 + ], + [ + 52.5055874, + 13.4854837 + ], + [ + 52.5056228, + 13.4858965 + ], + [ + 52.5056745, + 13.4862389 + ], + [ + 52.5057415, + 13.4865835 + ], + [ + 52.5058748, + 13.48712 + ], + [ + 52.5059229, + 13.4873122 + ] + ] + }, + { + "osmId": "320398675", + "name": null, + "lengthMeters": 156.79606195254732, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5060514, + 13.4806098 + ], + [ + 52.5064065, + 13.4798875 + ], + [ + 52.5064956, + 13.4797031 + ], + [ + 52.5066693, + 13.4793493 + ], + [ + 52.5069348, + 13.4788041 + ] + ] + }, + { + "osmId": "320398677", + "name": null, + "lengthMeters": 156.3179737850834, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5067764, + 13.4786415 + ], + [ + 52.5065947, + 13.4792509 + ], + [ + 52.5064679, + 13.4796791 + ], + [ + 52.5064065, + 13.4798875 + ], + [ + 52.5061572, + 13.480715 + ] + ] + }, + { + "osmId": "320398706", + "name": null, + "lengthMeters": 110.20091448073629, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078119, + 13.4923269 + ], + [ + 52.5079783, + 13.4927091 + ], + [ + 52.5080976, + 13.4929629 + ], + [ + 52.508436, + 13.4935895 + ] + ] + }, + { + "osmId": "320398715", + "name": null, + "lengthMeters": 157.0200940932777, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5069097, + 13.4787724 + ], + [ + 52.5065607, + 13.4794895 + ], + [ + 52.5064679, + 13.4796791 + ], + [ + 52.5062847, + 13.4800534 + ], + [ + 52.5060246, + 13.4805801 + ] + ] + }, + { + "osmId": "320398719", + "name": null, + "lengthMeters": 294.01383518766204, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5072816, + 13.4914486 + ], + [ + 52.5075256, + 13.4920237 + ], + [ + 52.5077555, + 13.4925584 + ], + [ + 52.5080431, + 13.4932225 + ], + [ + 52.5085347, + 13.4943521 + ], + [ + 52.5086932, + 13.4947159 + ], + [ + 52.5088228, + 13.4949777 + ] + ] + }, + { + "osmId": "320447862", + "name": null, + "lengthMeters": 1319.894405924998, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5655203, + 13.2087423 + ], + [ + 52.5655594, + 13.2087073 + ], + [ + 52.5657626, + 13.2085125 + ], + [ + 52.5659321, + 13.2082979 + ], + [ + 52.5662256, + 13.2078634 + ], + [ + 52.566493, + 13.2074611 + ], + [ + 52.5677185, + 13.2053835 + ], + [ + 52.5681005, + 13.2047359 + ], + [ + 52.5682089, + 13.2045312 + ], + [ + 52.5682994, + 13.2043604 + ], + [ + 52.5683519, + 13.2042557 + ], + [ + 52.568484, + 13.2039923 + ], + [ + 52.5686056, + 13.2036348 + ], + [ + 52.568681, + 13.2033734 + ], + [ + 52.5687713, + 13.2029657 + ], + [ + 52.5688144, + 13.2026213 + ], + [ + 52.5688366, + 13.2023006 + ], + [ + 52.5688388, + 13.2020063 + ], + [ + 52.5688195, + 13.2015977 + ], + [ + 52.5687638, + 13.2011392 + ], + [ + 52.5686501, + 13.2004279 + ], + [ + 52.568577, + 13.1999521 + ], + [ + 52.5685226, + 13.1996188 + ], + [ + 52.5685062, + 13.1995184 + ], + [ + 52.5683307, + 13.1984069 + ], + [ + 52.5682606, + 13.1979626 + ], + [ + 52.5681447, + 13.1972285 + ], + [ + 52.5673537, + 13.1921823 + ], + [ + 52.5673371, + 13.1920784 + ], + [ + 52.567316, + 13.1919457 + ], + [ + 52.5672818, + 13.1917307 + ] + ] + }, + { + "osmId": "320667441", + "name": null, + "lengthMeters": 305.6283738954984, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1436928, + 11.6757863 + ], + [ + 48.1437232, + 11.6760254 + ], + [ + 48.1439458, + 11.6777794 + ], + [ + 48.144209, + 11.6798322 + ] + ] + }, + { + "osmId": "320667442", + "name": null, + "lengthMeters": 303.7705004538056, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1446077, + 11.68293 + ], + [ + 48.1446497, + 11.6832567 + ], + [ + 48.1447628, + 11.684155 + ], + [ + 48.1447763, + 11.6842597 + ], + [ + 48.1448058, + 11.6844869 + ], + [ + 48.1449281, + 11.6854321 + ], + [ + 48.1450895, + 11.686689 + ], + [ + 48.1451231, + 11.6869507 + ] + ] + }, + { + "osmId": "320667443", + "name": null, + "lengthMeters": 297.43572587613573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1443335, + 11.6797099 + ], + [ + 48.1440867, + 11.6777405 + ], + [ + 48.1438317, + 11.6757723 + ] + ] + }, + { + "osmId": "320667444", + "name": null, + "lengthMeters": 176.11366613483057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438317, + 11.6757723 + ], + [ + 48.1437402, + 11.6750517 + ], + [ + 48.1436882, + 11.674703 + ], + [ + 48.1436525, + 11.6745068 + ], + [ + 48.1435845, + 11.6741494 + ], + [ + 48.1435295, + 11.6738769 + ], + [ + 48.1434407, + 11.6734753 + ] + ] + }, + { + "osmId": "320667447", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 303.6228486498619, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1437371, + 11.6757862 + ], + [ + 48.1439915, + 11.6777668 + ], + [ + 48.1442508, + 11.6798053 + ] + ] + }, + { + "osmId": "320667448", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 202.30899218732293, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1449842, + 11.6855968 + ], + [ + 48.1448598, + 11.6846425 + ], + [ + 48.1448417, + 11.684504 + ], + [ + 48.1447974, + 11.6841412 + ], + [ + 48.1447428, + 11.6836773 + ], + [ + 48.1446487, + 11.6829169 + ] + ] + }, + { + "osmId": "320737487", + "name": null, + "lengthMeters": 329.7643883143446, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4423474, + 13.5252584 + ], + [ + 52.4424384, + 13.5250109 + ], + [ + 52.4425027, + 13.5248412 + ], + [ + 52.4425978, + 13.5246289 + ], + [ + 52.4427716, + 13.5243049 + ], + [ + 52.4432626, + 13.523383 + ], + [ + 52.444004, + 13.5219993 + ], + [ + 52.4440883, + 13.5218422 + ], + [ + 52.4442441, + 13.5215273 + ] + ] + }, + { + "osmId": "320737488", + "name": null, + "lengthMeters": 347.5404762342383, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4444931, + 13.5214791 + ], + [ + 52.4443846, + 13.5216729 + ], + [ + 52.4426861, + 13.5248573 + ], + [ + 52.4424268, + 13.5253261 + ] + ] + }, + { + "osmId": "320852456", + "name": null, + "lengthMeters": 93.25833530504644, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4864521, + 13.5131004 + ], + [ + 52.486293, + 13.513489 + ], + [ + 52.48616, + 13.5138506 + ], + [ + 52.4859937, + 13.5142533 + ] + ] + }, + { + "osmId": "320852458", + "name": null, + "lengthMeters": 102.18666360752798, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4859937, + 13.5142533 + ], + [ + 52.4859164, + 13.5144294 + ], + [ + 52.4857886, + 13.5147346 + ], + [ + 52.4856768, + 13.5150365 + ], + [ + 52.4856481, + 13.5151139 + ], + [ + 52.4854857, + 13.5155102 + ] + ] + }, + { + "osmId": "320978876", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 141.990985358157, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5415668, + 13.3870646 + ], + [ + 52.5414777, + 13.3867294 + ], + [ + 52.5414488, + 13.3865684 + ], + [ + 52.5414346, + 13.3864896 + ], + [ + 52.5414144, + 13.3863546 + ], + [ + 52.5413961, + 13.3861739 + ], + [ + 52.541388, + 13.385999 + ], + [ + 52.541388, + 13.3857533 + ], + [ + 52.54139, + 13.3856101 + ], + [ + 52.5414083, + 13.3853744 + ], + [ + 52.5414387, + 13.3851536 + ], + [ + 52.5414563, + 13.3850236 + ] + ] + }, + { + "osmId": "320978877", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 220.73816702103503, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.541444, + 13.3854701 + ], + [ + 52.5414437, + 13.3852711 + ], + [ + 52.5414772, + 13.3849529 + ], + [ + 52.5415385, + 13.3846897 + ], + [ + 52.5416342, + 13.3843733 + ], + [ + 52.5417583, + 13.3840818 + ], + [ + 52.5418746, + 13.3838579 + ], + [ + 52.5419076, + 13.3837943 + ], + [ + 52.5420647, + 13.3834754 + ], + [ + 52.5421458, + 13.3833247 + ], + [ + 52.542252, + 13.3831557 + ], + [ + 52.5422754, + 13.3831206 + ], + [ + 52.5423745, + 13.3829722 + ], + [ + 52.542388, + 13.3829392 + ], + [ + 52.5424781, + 13.3827958 + ] + ] + }, + { + "osmId": "320978878", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 287.6266699025455, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5416208, + 13.3870911 + ], + [ + 52.5415488, + 13.3868231 + ], + [ + 52.5415026, + 13.3866252 + ], + [ + 52.5414948, + 13.3865786 + ], + [ + 52.5414653, + 13.3864014 + ], + [ + 52.5414275, + 13.3859099 + ], + [ + 52.54143, + 13.3857316 + ], + [ + 52.541444, + 13.3854701 + ], + [ + 52.5414632, + 13.3852781 + ], + [ + 52.5414992, + 13.3850254 + ], + [ + 52.5415572, + 13.3847826 + ], + [ + 52.5415838, + 13.384676 + ], + [ + 52.5416577, + 13.384459 + ], + [ + 52.5417496, + 13.3842151 + ], + [ + 52.5418462, + 13.3840297 + ], + [ + 52.5419684, + 13.3837678 + ], + [ + 52.5420652, + 13.3835706 + ], + [ + 52.5422193, + 13.3832789 + ] + ] + }, + { + "osmId": "320978886", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 79.03339406606334, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5410779, + 13.3854972 + ], + [ + 52.541099, + 13.3855543 + ], + [ + 52.541218, + 13.3859599 + ], + [ + 52.5413229, + 13.3863737 + ], + [ + 52.5413806, + 13.3865534 + ] + ] + }, + { + "osmId": "320978887", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 126.06061171480889, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5413806, + 13.3865534 + ], + [ + 52.5414078, + 13.3865594 + ], + [ + 52.5414488, + 13.3865684 + ], + [ + 52.5414948, + 13.3865786 + ], + [ + 52.5417164, + 13.3866275 + ], + [ + 52.5417556, + 13.3866239 + ], + [ + 52.5417764, + 13.3866193 + ], + [ + 52.5418218, + 13.3866022 + ], + [ + 52.5419496, + 13.3865162 + ], + [ + 52.5424482, + 13.3861346 + ] + ] + }, + { + "osmId": "320978889", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 93.61100155202072, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.542388, + 13.3829392 + ], + [ + 52.5423745, + 13.3829722 + ], + [ + 52.5423208, + 13.3831031 + ], + [ + 52.5422985, + 13.3831594 + ], + [ + 52.5422809, + 13.3832037 + ], + [ + 52.5422546, + 13.3832699 + ], + [ + 52.5422179, + 13.3833907 + ], + [ + 52.5421792, + 13.3835502 + ], + [ + 52.5421361, + 13.3838154 + ], + [ + 52.5421242, + 13.3839591 + ], + [ + 52.5421153, + 13.3842198 + ] + ] + }, + { + "osmId": "320978890", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 96.74225927603486, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5414772, + 13.3849529 + ], + [ + 52.5414563, + 13.3850236 + ], + [ + 52.5413966, + 13.3852586 + ], + [ + 52.5413759, + 13.3853652 + ], + [ + 52.541345, + 13.3856134 + ], + [ + 52.5413363, + 13.3858224 + ], + [ + 52.5413531, + 13.3862022 + ], + [ + 52.541371, + 13.3863408 + ] + ] + }, + { + "osmId": "320978891", + "name": "ehem. AEG-Anschlu\u00dfbahn", + "lengthMeters": 343.1034521390216, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5414777, + 13.3867294 + ], + [ + 52.5415474, + 13.3870818 + ], + [ + 52.5415895, + 13.3873635 + ], + [ + 52.5416525, + 13.387652 + ], + [ + 52.5419756, + 13.3887392 + ], + [ + 52.5420816, + 13.3891373 + ], + [ + 52.5422317, + 13.3897264 + ], + [ + 52.5422421, + 13.3897674 + ], + [ + 52.5427107, + 13.3913704 + ] + ] + }, + { + "osmId": "321008735", + "name": null, + "lengthMeters": 76.83498060992886, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5390707, + 13.6297099 + ], + [ + 52.5389706, + 13.6302529 + ], + [ + 52.538872, + 13.630798 + ] + ] + }, + { + "osmId": "321022745", + "name": null, + "lengthMeters": 370.1203571575339, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4943872, + 13.2923781 + ], + [ + 52.4954454, + 13.2910308 + ], + [ + 52.4960019, + 13.2902952 + ], + [ + 52.4965366, + 13.2895322 + ], + [ + 52.4969103, + 13.2889865 + ], + [ + 52.4969609, + 13.2889143 + ] + ] + }, + { + "osmId": "321022747", + "name": null, + "lengthMeters": 307.98756492092554, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4950233, + 13.2914812 + ], + [ + 52.49284, + 13.2942806 + ] + ] + }, + { + "osmId": "321022752", + "name": null, + "lengthMeters": 146.45358667575206, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4933494, + 13.2937101 + ], + [ + 52.4943872, + 13.2923781 + ] + ] + }, + { + "osmId": "321030049", + "name": null, + "lengthMeters": 623.2667782996136, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4713783, + 13.3737949 + ], + [ + 52.4713773, + 13.3739671 + ], + [ + 52.4713702, + 13.3753016 + ], + [ + 52.4713575, + 13.3772283 + ], + [ + 52.4713548, + 13.3776772 + ], + [ + 52.471352, + 13.3781513 + ], + [ + 52.4713497, + 13.3786794 + ], + [ + 52.4713522, + 13.3793414 + ], + [ + 52.4713593, + 13.3797905 + ], + [ + 52.4713685, + 13.3802691 + ], + [ + 52.4713757, + 13.3807481 + ], + [ + 52.4713768, + 13.3810899 + ], + [ + 52.4713706, + 13.3813989 + ], + [ + 52.4713592, + 13.3816985 + ], + [ + 52.4713378, + 13.382004 + ], + [ + 52.4713053, + 13.3823421 + ], + [ + 52.4712628, + 13.3826896 + ], + [ + 52.4712478, + 13.3827864 + ], + [ + 52.4712351, + 13.3828695 + ], + [ + 52.4712184, + 13.3829725 + ] + ] + }, + { + "osmId": "321754199", + "name": null, + "lengthMeters": 89.95641219561917, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4900613, + 13.3599802 + ], + [ + 52.4907832, + 13.3605799 + ] + ] + }, + { + "osmId": "321754205", + "name": null, + "lengthMeters": 89.5071464311902, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4908072, + 13.3604626 + ], + [ + 52.4901064, + 13.3598122 + ] + ] + }, + { + "osmId": "323277926", + "name": null, + "lengthMeters": 164.97430356662022, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334466, + 11.6389103 + ], + [ + 48.1333999, + 11.6393628 + ], + [ + 48.1332631, + 11.6406892 + ], + [ + 48.1332181, + 11.6411068 + ] + ] + }, + { + "osmId": "323635830", + "name": null, + "lengthMeters": 562.7089268755008, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3638767, + 13.5070756 + ], + [ + 52.3637908, + 13.5067434 + ], + [ + 52.363279, + 13.5049129 + ], + [ + 52.3627527, + 13.5030206 + ], + [ + 52.3625826, + 13.5023578 + ], + [ + 52.3618762, + 13.4994658 + ] + ] + }, + { + "osmId": "323635833", + "name": null, + "lengthMeters": 314.63706282053425, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3603425, + 13.4933896 + ], + [ + 52.3605863, + 13.4944278 + ], + [ + 52.3613541, + 13.4976977 + ], + [ + 52.361358, + 13.4977144 + ] + ] + }, + { + "osmId": "323635837", + "name": null, + "lengthMeters": 1171.8509007783907, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3604208, + 13.4933532 + ], + [ + 52.3602172, + 13.4922043 + ], + [ + 52.3600903, + 13.4911684 + ], + [ + 52.3599689, + 13.4896983 + ], + [ + 52.3599172, + 13.4880356 + ], + [ + 52.3599568, + 13.4864207 + ], + [ + 52.3600732, + 13.4848971 + ], + [ + 52.3602824, + 13.4833306 + ], + [ + 52.3604984, + 13.4820795 + ], + [ + 52.3618082, + 13.4766901 + ] + ] + }, + { + "osmId": "323635838", + "name": null, + "lengthMeters": 1092.1622851500747, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3618934, + 13.4766702 + ], + [ + 52.3618717, + 13.4767581 + ], + [ + 52.360555, + 13.4820994 + ], + [ + 52.3603441, + 13.4833475 + ], + [ + 52.3601486, + 13.4849251 + ], + [ + 52.3600402, + 13.4864411 + ], + [ + 52.3600046, + 13.4880159 + ], + [ + 52.3600572, + 13.4896842 + ], + [ + 52.3601812, + 13.4911544 + ], + [ + 52.3603064, + 13.4922015 + ] + ] + }, + { + "osmId": "323635839", + "name": null, + "lengthMeters": 4727.986075930046, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.369252, + 13.5293317 + ], + [ + 52.3694392, + 13.5297038 + ], + [ + 52.3696058, + 13.5300135 + ], + [ + 52.3699383, + 13.530585 + ], + [ + 52.3702689, + 13.5311021 + ], + [ + 52.3704752, + 13.5313996 + ], + [ + 52.3706894, + 13.531689 + ], + [ + 52.3710077, + 13.5320839 + ], + [ + 52.3711928, + 13.5322937 + ], + [ + 52.3713959, + 13.5325054 + ], + [ + 52.3718535, + 13.5329492 + ], + [ + 52.3721945, + 13.5332335 + ], + [ + 52.3725129, + 13.5334766 + ], + [ + 52.3729985, + 13.5337931 + ], + [ + 52.3739797, + 13.5343985 + ], + [ + 52.3742254, + 13.5345503 + ], + [ + 52.374586, + 13.5347905 + ], + [ + 52.3750414, + 13.5351277 + ], + [ + 52.3753753, + 13.5354263 + ], + [ + 52.3756889, + 13.5357436 + ], + [ + 52.375785, + 13.5358483 + ], + [ + 52.3758804, + 13.5359563 + ], + [ + 52.3760699, + 13.5361811 + ], + [ + 52.3762608, + 13.5364293 + ], + [ + 52.376483, + 13.5367409 + ], + [ + 52.376591, + 13.536903 + ], + [ + 52.3766442, + 13.5369883 + ], + [ + 52.3768035, + 13.5372436 + ], + [ + 52.3769556, + 13.537509 + ], + [ + 52.3771065, + 13.5377985 + ], + [ + 52.3772648, + 13.5381135 + ], + [ + 52.37742, + 13.5384493 + ], + [ + 52.3775434, + 13.5387403 + ], + [ + 52.3776603, + 13.5390361 + ], + [ + 52.3778002, + 13.5394162 + ], + [ + 52.3779306, + 13.5398022 + ], + [ + 52.3780356, + 13.5401478 + ], + [ + 52.378095, + 13.5403585 + ], + [ + 52.3782119, + 13.5408072 + ], + [ + 52.3783692, + 13.5414936 + ], + [ + 52.3785138, + 13.5421833 + ], + [ + 52.378702, + 13.5431147 + ], + [ + 52.378743, + 13.5433182 + ], + [ + 52.3789285, + 13.5442196 + ], + [ + 52.3789703, + 13.5444216 + ], + [ + 52.3791224, + 13.5451683 + ], + [ + 52.3792317, + 13.5456906 + ], + [ + 52.3793602, + 13.5463317 + ], + [ + 52.3795585, + 13.5473157 + ], + [ + 52.3797433, + 13.5482957 + ], + [ + 52.3799005, + 13.5491386 + ], + [ + 52.3799116, + 13.5492071 + ], + [ + 52.3803884, + 13.5518905 + ], + [ + 52.3806524, + 13.5533109 + ], + [ + 52.3808234, + 13.5541412 + ], + [ + 52.3810933, + 13.5554017 + ], + [ + 52.3811593, + 13.5557225 + ], + [ + 52.381318, + 13.5564578 + ], + [ + 52.3814401, + 13.5570113 + ], + [ + 52.3815709, + 13.5575564 + ], + [ + 52.3816804, + 13.5579515 + ], + [ + 52.3817972, + 13.5583357 + ], + [ + 52.3819256, + 13.5587043 + ], + [ + 52.3820425, + 13.5590191 + ], + [ + 52.3821521, + 13.5592909 + ], + [ + 52.3823155, + 13.5596635 + ], + [ + 52.3824817, + 13.5600171 + ], + [ + 52.3828088, + 13.5606229 + ], + [ + 52.383175, + 13.5612303 + ], + [ + 52.3837986, + 13.5622559 + ], + [ + 52.3840338, + 13.562653 + ], + [ + 52.3842596, + 13.5630715 + ], + [ + 52.3844299, + 13.563428 + ], + [ + 52.3845379, + 13.5636518 + ], + [ + 52.3846672, + 13.5639595 + ], + [ + 52.3847781, + 13.5642396 + ], + [ + 52.3850044, + 13.5648825 + ], + [ + 52.3851084, + 13.565219 + ], + [ + 52.3852044, + 13.5655613 + ], + [ + 52.3852654, + 13.5657947 + ], + [ + 52.3853901, + 13.5663292 + ], + [ + 52.3859057, + 13.568732 + ], + [ + 52.3861558, + 13.5698992 + ], + [ + 52.3864922, + 13.5714657 + ], + [ + 52.3867424, + 13.5726304 + ], + [ + 52.3868905, + 13.573319 + ], + [ + 52.3869958, + 13.5738081 + ], + [ + 52.387325, + 13.5753419 + ], + [ + 52.3877973, + 13.5775407 + ], + [ + 52.3880007, + 13.5784865 + ], + [ + 52.3882334, + 13.5795858 + ], + [ + 52.3885535, + 13.5810683 + ], + [ + 52.3887961, + 13.5821997 + ], + [ + 52.3890155, + 13.5832159 + ], + [ + 52.3895905, + 13.5859005 + ], + [ + 52.3897809, + 13.5867922 + ], + [ + 52.3898428, + 13.5870766 + ] + ] + }, + { + "osmId": "323635840", + "name": null, + "lengthMeters": 4730.136417527089, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3898821, + 13.5870574 + ], + [ + 52.3896266, + 13.5858796 + ], + [ + 52.3890492, + 13.5831963 + ], + [ + 52.3887499, + 13.5818097 + ], + [ + 52.3885891, + 13.5810529 + ], + [ + 52.3884917, + 13.5805966 + ], + [ + 52.3880321, + 13.5784586 + ], + [ + 52.3874815, + 13.5758929 + ], + [ + 52.3873589, + 13.5753154 + ], + [ + 52.3870295, + 13.573785 + ], + [ + 52.3867755, + 13.5726008 + ], + [ + 52.3863934, + 13.5708258 + ], + [ + 52.3861909, + 13.5698776 + ], + [ + 52.3859409, + 13.5687155 + ], + [ + 52.3854248, + 13.5663129 + ], + [ + 52.3852996, + 13.5657767 + ], + [ + 52.3852387, + 13.5655388 + ], + [ + 52.3851412, + 13.5651943 + ], + [ + 52.3850401, + 13.5648666 + ], + [ + 52.3848168, + 13.5642287 + ], + [ + 52.3846992, + 13.5639279 + ], + [ + 52.3845881, + 13.5636657 + ], + [ + 52.384482, + 13.5634271 + ], + [ + 52.3842862, + 13.5630286 + ], + [ + 52.3840592, + 13.5626135 + ], + [ + 52.3838247, + 13.5622137 + ], + [ + 52.3831977, + 13.5611879 + ], + [ + 52.3828344, + 13.560584 + ], + [ + 52.3825094, + 13.5599768 + ], + [ + 52.3823385, + 13.5596179 + ], + [ + 52.3821833, + 13.559265 + ], + [ + 52.3820671, + 13.5589752 + ], + [ + 52.3819567, + 13.5586735 + ], + [ + 52.3818333, + 13.5583124 + ], + [ + 52.3817057, + 13.5579003 + ], + [ + 52.3816065, + 13.557542 + ], + [ + 52.3814761, + 13.5569955 + ], + [ + 52.3813551, + 13.556437 + ], + [ + 52.3811278, + 13.5553861 + ], + [ + 52.3809904, + 13.5547276 + ], + [ + 52.3808564, + 13.554121 + ], + [ + 52.3806873, + 13.553297 + ], + [ + 52.3804294, + 13.5518718 + ], + [ + 52.3799472, + 13.5492 + ], + [ + 52.3799365, + 13.5491225 + ], + [ + 52.3797799, + 13.5482781 + ], + [ + 52.3795925, + 13.5472937 + ], + [ + 52.3793965, + 13.5463154 + ], + [ + 52.3793267, + 13.5459754 + ], + [ + 52.3792685, + 13.5456718 + ], + [ + 52.3791598, + 13.5451608 + ], + [ + 52.3788955, + 13.543866 + ], + [ + 52.3787839, + 13.5432981 + ], + [ + 52.3786461, + 13.5426168 + ], + [ + 52.3785445, + 13.5421541 + ], + [ + 52.3784035, + 13.541473 + ], + [ + 52.3782466, + 13.5407884 + ], + [ + 52.3781278, + 13.540342 + ], + [ + 52.3780626, + 13.540121 + ], + [ + 52.3779257, + 13.5396722 + ], + [ + 52.3778503, + 13.5394365 + ], + [ + 52.377744, + 13.5391454 + ], + [ + 52.3776895, + 13.5389976 + ], + [ + 52.3775716, + 13.5386995 + ], + [ + 52.3774464, + 13.5384061 + ], + [ + 52.3772909, + 13.5380717 + ], + [ + 52.3771379, + 13.5377555 + ], + [ + 52.3769825, + 13.5374718 + ], + [ + 52.3768298, + 13.5372015 + ], + [ + 52.3766695, + 13.536943 + ], + [ + 52.3766148, + 13.5368574 + ], + [ + 52.3765053, + 13.5366942 + ], + [ + 52.3762901, + 13.5363942 + ], + [ + 52.3760899, + 13.536132 + ], + [ + 52.3759057, + 13.5359135 + ], + [ + 52.3758071, + 13.5358 + ], + [ + 52.3757062, + 13.5356902 + ], + [ + 52.3753915, + 13.5353735 + ], + [ + 52.3750519, + 13.5350671 + ], + [ + 52.374891, + 13.5349484 + ], + [ + 52.3745956, + 13.5347285 + ], + [ + 52.3742367, + 13.5344916 + ], + [ + 52.3730167, + 13.5337429 + ], + [ + 52.3725332, + 13.5334281 + ], + [ + 52.3722063, + 13.5331769 + ], + [ + 52.3718697, + 13.5328942 + ], + [ + 52.3714354, + 13.5324784 + ], + [ + 52.3712113, + 13.5322398 + ], + [ + 52.3710365, + 13.5320324 + ], + [ + 52.3707208, + 13.5316527 + ], + [ + 52.370503, + 13.5313592 + ], + [ + 52.3702998, + 13.5310609 + ], + [ + 52.3699731, + 13.5305431 + ], + [ + 52.3696522, + 13.529958 + ], + [ + 52.3694824, + 13.5296173 + ], + [ + 52.3693086, + 13.529243 + ] + ] + }, + { + "osmId": "323825271", + "name": null, + "lengthMeters": 95.78413268051563, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5567103, + 9.9992187 + ], + [ + 53.5567126, + 9.9991976 + ], + [ + 53.5567312, + 9.9989672 + ], + [ + 53.5567524, + 9.9987758 + ], + [ + 53.5567766, + 9.9985946 + ], + [ + 53.5568231, + 9.9983077 + ], + [ + 53.5568476, + 9.9981893 + ], + [ + 53.5568806, + 9.9980395 + ], + [ + 53.5569348, + 9.9978249 + ] + ] + }, + { + "osmId": "323825272", + "name": "Verbindungsbahn", + "lengthMeters": 102.98766701449877, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5561021, + 10.0037297 + ], + [ + 53.5561718, + 10.0035006 + ], + [ + 53.5562448, + 10.0032286 + ], + [ + 53.5562873, + 10.003044 + ], + [ + 53.5563361, + 10.0028471 + ], + [ + 53.5563809, + 10.002655 + ], + [ + 53.5564609, + 10.0022937 + ] + ] + }, + { + "osmId": "323881804", + "name": null, + "lengthMeters": 498.5579516538974, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5395516, + 13.421974 + ], + [ + 52.5395695, + 13.4218581 + ], + [ + 52.539606, + 13.4216258 + ], + [ + 52.539632, + 13.4214543 + ], + [ + 52.540041, + 13.4188057 + ], + [ + 52.5401347, + 13.4182043 + ], + [ + 52.5402075, + 13.417737 + ], + [ + 52.5403863, + 13.4165904 + ], + [ + 52.5404042, + 13.4164744 + ], + [ + 52.5404207, + 13.4163686 + ], + [ + 52.5404553, + 13.4161474 + ], + [ + 52.5405508, + 13.4155731 + ], + [ + 52.540639, + 13.4150059 + ], + [ + 52.5406662, + 13.4148336 + ] + ] + }, + { + "osmId": "324590451", + "name": null, + "lengthMeters": 76.24542333005985, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4936343, + 13.3686392 + ], + [ + 52.4939863, + 13.3688957 + ], + [ + 52.4942596, + 13.3691013 + ] + ] + }, + { + "osmId": "325039591", + "name": null, + "lengthMeters": 127.91657093810589, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3805245, + 13.2460259 + ], + [ + 52.3809133, + 13.2477996 + ] + ] + }, + { + "osmId": "325039614", + "name": "U7", + "lengthMeters": 2475.79000999115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4165722, + 13.4945615 + ], + [ + 52.416646, + 13.4944353 + ], + [ + 52.4166726, + 13.4943918 + ], + [ + 52.4167573, + 13.4942539 + ], + [ + 52.4169417, + 13.493978 + ], + [ + 52.4172488, + 13.4935767 + ], + [ + 52.4178993, + 13.4927606 + ], + [ + 52.4203272, + 13.4896109 + ], + [ + 52.4209951, + 13.4887347 + ], + [ + 52.421676, + 13.4878389 + ], + [ + 52.4219986, + 13.4873394 + ], + [ + 52.4223931, + 13.4865527 + ], + [ + 52.4227041, + 13.4858145 + ], + [ + 52.4228963, + 13.4852498 + ], + [ + 52.4232097, + 13.4842562 + ], + [ + 52.4232649, + 13.4840651 + ], + [ + 52.4233406, + 13.4838027 + ], + [ + 52.4234805, + 13.4831015 + ], + [ + 52.4235557, + 13.4824119 + ], + [ + 52.4235808, + 13.481997 + ], + [ + 52.4235863, + 13.4815191 + ], + [ + 52.4235548, + 13.4806002 + ], + [ + 52.4234861, + 13.4787072 + ], + [ + 52.4233705, + 13.4765343 + ], + [ + 52.4232768, + 13.4750041 + ], + [ + 52.4232794, + 13.4723862 + ], + [ + 52.4233351, + 13.4709468 + ], + [ + 52.4235305, + 13.4693059 + ], + [ + 52.4236755, + 13.4671543 + ], + [ + 52.4239933, + 13.4650211 + ], + [ + 52.4244037, + 13.4632448 + ] + ] + }, + { + "osmId": "325051627", + "name": null, + "lengthMeters": 528.8755827615357, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4635373, + 13.3619189 + ], + [ + 52.4630734, + 13.3618251 + ], + [ + 52.4627082, + 13.3617513 + ], + [ + 52.4609826, + 13.3611396 + ], + [ + 52.4603446, + 13.3609153 + ], + [ + 52.4600953, + 13.3608239 + ], + [ + 52.4595607, + 13.3606426 + ], + [ + 52.4593178, + 13.3605603 + ], + [ + 52.4591341, + 13.3604814 + ], + [ + 52.4590171, + 13.3604237 + ], + [ + 52.458885, + 13.3603398 + ] + ] + }, + { + "osmId": "325239886", + "name": "Verbindungsbahn", + "lengthMeters": 248.49673238316345, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5560204, + 9.9343182 + ], + [ + 53.5566754, + 9.9339948 + ], + [ + 53.5571513, + 9.9337481 + ], + [ + 53.5576311, + 9.933489 + ], + [ + 53.5579037, + 9.9333305 + ], + [ + 53.5579662, + 9.9332941 + ], + [ + 53.5580734, + 9.9332318 + ], + [ + 53.5581513, + 9.9331865 + ] + ] + }, + { + "osmId": "325402614", + "name": null, + "lengthMeters": 77.54882445629669, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5500549, + 10.0068955 + ], + [ + 53.5498022, + 10.0069725 + ], + [ + 53.54979, + 10.0069749 + ], + [ + 53.5494441, + 10.0070606 + ], + [ + 53.5493664, + 10.0070816 + ] + ] + }, + { + "osmId": "326110168", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 988.7367867770688, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4059004, + 10.0620203 + ], + [ + 53.4071101, + 10.0602524 + ], + [ + 53.4082414, + 10.0585732 + ], + [ + 53.4084555, + 10.0582567 + ], + [ + 53.4089424, + 10.0575368 + ], + [ + 53.4089797, + 10.0574807 + ], + [ + 53.4106656, + 10.0549451 + ], + [ + 53.4113596, + 10.0539012 + ], + [ + 53.4124987, + 10.0520254 + ] + ] + }, + { + "osmId": "326110171", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1505.7149566737037, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4330287, + 10.0192925 + ], + [ + 53.4313097, + 10.0213086 + ], + [ + 53.4306934, + 10.0220315 + ], + [ + 53.4290545, + 10.0239535 + ], + [ + 53.4284836, + 10.024623 + ], + [ + 53.4279143, + 10.0252907 + ], + [ + 53.4270747, + 10.0262753 + ], + [ + 53.4263189, + 10.0271619 + ], + [ + 53.426238, + 10.0272568 + ], + [ + 53.4254967, + 10.028186 + ], + [ + 53.4248422, + 10.0290362 + ], + [ + 53.4247313, + 10.0291866 + ], + [ + 53.424505, + 10.0294936 + ], + [ + 53.4240513, + 10.0301436 + ], + [ + 53.4235764, + 10.0308239 + ], + [ + 53.4227852, + 10.031984 + ], + [ + 53.4221925, + 10.0328826 + ] + ] + }, + { + "osmId": "326110176", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 1446.421744762255, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4226013, + 10.032368 + ], + [ + 53.422707, + 10.0322235 + ], + [ + 53.4239944, + 10.0304646 + ], + [ + 53.4241222, + 10.030295 + ], + [ + 53.424816, + 10.0293709 + ], + [ + 53.4257397, + 10.0281404 + ], + [ + 53.425864, + 10.0279765 + ], + [ + 53.426191, + 10.0275453 + ], + [ + 53.426253, + 10.0274635 + ], + [ + 53.4270622, + 10.0264156 + ], + [ + 53.4279952, + 10.0252764 + ], + [ + 53.428667, + 10.0244919 + ], + [ + 53.4322683, + 10.0202862 + ], + [ + 53.4330474, + 10.0193763 + ] + ] + }, + { + "osmId": "326110183", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 311.69617731977206, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4196255, + 10.037241 + ], + [ + 53.4197514, + 10.0370017 + ], + [ + 53.41978, + 10.0369437 + ], + [ + 53.4201134, + 10.0362671 + ], + [ + 53.4206104, + 10.0354279 + ], + [ + 53.4211909, + 10.0344599 + ], + [ + 53.4215734, + 10.0338653 + ] + ] + }, + { + "osmId": "326110187", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 494.9206644287413, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4187063, + 10.039107 + ], + [ + 53.419751, + 10.0371029 + ], + [ + 53.4198074, + 10.0369947 + ], + [ + 53.4201734, + 10.0362982 + ], + [ + 53.420749, + 10.0352947 + ], + [ + 53.4210315, + 10.0348346 + ], + [ + 53.4212157, + 10.0345314 + ], + [ + 53.4214616, + 10.03413 + ], + [ + 53.4217547, + 10.0336725 + ] + ] + }, + { + "osmId": "326211026", + "name": null, + "lengthMeters": 238.16458705399668, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3702303, + 13.1233498 + ], + [ + 52.3682713, + 13.1247681 + ] + ] + }, + { + "osmId": "326482821", + "name": null, + "lengthMeters": 131.1981732045915, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4844536, + 13.3586168 + ], + [ + 52.4835854, + 13.3573048 + ] + ] + }, + { + "osmId": "326482833", + "name": null, + "lengthMeters": 85.88287639946203, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4942596, + 13.3691013 + ], + [ + 52.4940616, + 13.3689123 + ], + [ + 52.4938527, + 13.3687548 + ], + [ + 52.4937071, + 13.3686633 + ], + [ + 52.4935604, + 13.3685687 + ] + ] + }, + { + "osmId": "327417303", + "name": "U4", + "lengthMeters": 146.40513439385185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4994838, + 13.3530291 + ], + [ + 52.4992743, + 13.3525782 + ], + [ + 52.4991838, + 13.3523472 + ], + [ + 52.4991341, + 13.3521885 + ], + [ + 52.4990852, + 13.3520626 + ], + [ + 52.4990489, + 13.3519611 + ], + [ + 52.4987984, + 13.3511885 + ] + ] + }, + { + "osmId": "327749819", + "name": null, + "lengthMeters": 1307.7690781452502, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1182267, + 11.4246422 + ], + [ + 48.1177795, + 11.4243896 + ], + [ + 48.1170326, + 11.4239382 + ], + [ + 48.1165838, + 11.42366 + ], + [ + 48.1161369, + 11.4233715 + ], + [ + 48.1157088, + 11.4230646 + ], + [ + 48.1152831, + 11.4227331 + ], + [ + 48.1148799, + 11.4223853 + ], + [ + 48.1144917, + 11.4220293 + ], + [ + 48.1137378, + 11.4213316 + ], + [ + 48.1131898, + 11.4208209 + ], + [ + 48.1126381, + 11.4203096 + ], + [ + 48.1110851, + 11.4188679 + ], + [ + 48.1097518, + 11.4176314 + ], + [ + 48.1090766, + 11.4170035 + ], + [ + 48.1084241, + 11.4164023 + ], + [ + 48.1080048, + 11.4160115 + ] + ] + }, + { + "osmId": "327749820", + "name": null, + "lengthMeters": 250.42433043025557, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1185146, + 11.4248995 + ], + [ + 48.1185919, + 11.4249499 + ], + [ + 48.1191063, + 11.4252636 + ], + [ + 48.1194322, + 11.4254623 + ], + [ + 48.1196364, + 11.425585 + ], + [ + 48.1198915, + 11.4257431 + ], + [ + 48.1201169, + 11.4258771 + ], + [ + 48.1204304, + 11.4260698 + ], + [ + 48.1205998, + 11.4261739 + ] + ] + }, + { + "osmId": "327963478", + "name": null, + "lengthMeters": 110.18309417464019, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.194159, + 11.3753432 + ], + [ + 48.1938942, + 11.375853 + ], + [ + 48.1935431, + 11.3765076 + ] + ] + }, + { + "osmId": "327963479", + "name": null, + "lengthMeters": 241.00626107887507, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1955415, + 11.3728392 + ], + [ + 48.1953652, + 11.3731526 + ], + [ + 48.1951529, + 11.3735299 + ], + [ + 48.1949488, + 11.3738927 + ], + [ + 48.1945157, + 11.3746881 + ], + [ + 48.194159, + 11.3753432 + ] + ] + }, + { + "osmId": "327963480", + "name": null, + "lengthMeters": 240.17340628547137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1942232, + 11.3754164 + ], + [ + 48.1951241, + 11.3737741 + ], + [ + 48.195425, + 11.3732255 + ], + [ + 48.1955922, + 11.3729102 + ] + ] + }, + { + "osmId": "327963481", + "name": null, + "lengthMeters": 2366.4857006093716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1955922, + 11.3729102 + ], + [ + 48.1957286, + 11.372663 + ], + [ + 48.1958807, + 11.3724102 + ], + [ + 48.1971868, + 11.3700083 + ], + [ + 48.1980261, + 11.3684697 + ], + [ + 48.1982482, + 11.3680568 + ], + [ + 48.199136, + 11.3663785 + ], + [ + 48.1992781, + 11.3661008 + ], + [ + 48.2000702, + 11.3645679 + ], + [ + 48.2004911, + 11.3637149 + ], + [ + 48.2012113, + 11.3622223 + ], + [ + 48.2015768, + 11.3614371 + ], + [ + 48.202119, + 11.3602322 + ], + [ + 48.2024458, + 11.35949 + ], + [ + 48.2027022, + 11.35887 + ], + [ + 48.2027821, + 11.3586704 + ], + [ + 48.2029704, + 11.3581762 + ], + [ + 48.2031464, + 11.3576854 + ], + [ + 48.2033148, + 11.3571919 + ], + [ + 48.2034047, + 11.3569192 + ], + [ + 48.2034763, + 11.3566919 + ], + [ + 48.2036443, + 11.3561364 + ], + [ + 48.2038054, + 11.3555628 + ], + [ + 48.2039509, + 11.3549977 + ], + [ + 48.2040969, + 11.3544173 + ], + [ + 48.2044368, + 11.353041 + ], + [ + 48.2045443, + 11.3526322 + ], + [ + 48.2046178, + 11.3523477 + ], + [ + 48.2048992, + 11.3514027 + ], + [ + 48.2050502, + 11.3509377 + ], + [ + 48.2052062, + 11.3504783 + ], + [ + 48.2053992, + 11.3499413 + ], + [ + 48.2055458, + 11.3495502 + ], + [ + 48.2057519, + 11.3490379 + ], + [ + 48.2060127, + 11.3484187 + ], + [ + 48.2062813, + 11.3477948 + ], + [ + 48.2066483, + 11.3469424 + ], + [ + 48.2069845, + 11.346163 + ] + ] + }, + { + "osmId": "328426268", + "name": "U8", + "lengthMeters": 174.83268401193908, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114816, + 13.4166853 + ], + [ + 52.5113658, + 13.4166348 + ], + [ + 52.5112882, + 13.4165972 + ], + [ + 52.5112243, + 13.416556 + ], + [ + 52.5111643, + 13.4165077 + ], + [ + 52.5106611, + 13.41612 + ], + [ + 52.510471, + 13.4159741 + ], + [ + 52.5100455, + 13.415644 + ] + ] + }, + { + "osmId": "328426271", + "name": "U8", + "lengthMeters": 864.7618890197326, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044411, + 13.411394 + ], + [ + 52.5059475, + 13.4125615 + ], + [ + 52.5063355, + 13.4128193 + ], + [ + 52.5070722, + 13.4133958 + ], + [ + 52.5081184, + 13.4142149 + ], + [ + 52.5083738, + 13.4144131 + ], + [ + 52.5088504, + 13.4147829 + ], + [ + 52.5090032, + 13.4149202 + ], + [ + 52.5091401, + 13.415065 + ], + [ + 52.5092793, + 13.4152038 + ], + [ + 52.5094213, + 13.4153235 + ], + [ + 52.5095668, + 13.4154368 + ], + [ + 52.5104365, + 13.4161095 + ], + [ + 52.5106232, + 13.4162538 + ], + [ + 52.5108602, + 13.4164328 + ], + [ + 52.5109945, + 13.4165139 + ], + [ + 52.5111319, + 13.4165817 + ], + [ + 52.5113036, + 13.4166629 + ], + [ + 52.5114901, + 13.4167528 + ] + ] + }, + { + "osmId": "328426277", + "name": "U8", + "lengthMeters": 617.8298006988138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4925653, + 13.4222706 + ], + [ + 52.4914511, + 13.4229585 + ], + [ + 52.4913991, + 13.4229874 + ], + [ + 52.4913471, + 13.42301 + ], + [ + 52.4912582, + 13.4230372 + ], + [ + 52.4911537, + 13.4230773 + ], + [ + 52.4903938, + 13.4235599 + ], + [ + 52.489285, + 13.4242557 + ], + [ + 52.488946, + 13.4245239 + ], + [ + 52.4889009, + 13.4245617 + ], + [ + 52.4885259, + 13.4248508 + ], + [ + 52.4884917, + 13.4248716 + ], + [ + 52.4883314, + 13.4249501 + ], + [ + 52.4881746, + 13.4250266 + ], + [ + 52.4880258, + 13.4250905 + ], + [ + 52.4878904, + 13.4251431 + ], + [ + 52.4878465, + 13.4251535 + ], + [ + 52.4878066, + 13.4251625 + ], + [ + 52.4877583, + 13.4251629 + ], + [ + 52.4877023, + 13.4251553 + ], + [ + 52.4876307, + 13.4251285 + ], + [ + 52.4875708, + 13.4250964 + ], + [ + 52.4874681, + 13.4250279 + ], + [ + 52.4873604, + 13.4249412 + ] + ] + }, + { + "osmId": "328463017", + "name": null, + "lengthMeters": 254.2037626649684, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.518959, + 10.0114077 + ], + [ + 53.5189641, + 10.0114099 + ], + [ + 53.5192811, + 10.0115439 + ], + [ + 53.5197339, + 10.0117509 + ], + [ + 53.5201426, + 10.0119249 + ], + [ + 53.5201844, + 10.0119422 + ], + [ + 53.5204936, + 10.0120949 + ], + [ + 53.5208322, + 10.0122956 + ], + [ + 53.5211445, + 10.0125168 + ] + ] + }, + { + "osmId": "328463018", + "name": null, + "lengthMeters": 255.49461069240536, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5211534, + 10.0125895 + ], + [ + 53.5208209, + 10.0123614 + ], + [ + 53.5205102, + 10.0121732 + ], + [ + 53.520178, + 10.0120182 + ], + [ + 53.5197267, + 10.0118195 + ], + [ + 53.5196449, + 10.0117916 + ], + [ + 53.5192744, + 10.0116006 + ], + [ + 53.5189581, + 10.0114667 + ] + ] + }, + { + "osmId": "328463019", + "name": null, + "lengthMeters": 260.98869508878784, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5189495, + 10.0115293 + ], + [ + 53.5189559, + 10.0115321 + ], + [ + 53.5192677, + 10.0116654 + ], + [ + 53.5196362, + 10.0118492 + ], + [ + 53.5197195, + 10.0118893 + ], + [ + 53.5201518, + 10.012118 + ], + [ + 53.5205135, + 10.0123252 + ], + [ + 53.5207895, + 10.012503 + ], + [ + 53.5211738, + 10.0127751 + ] + ] + }, + { + "osmId": "328539880", + "name": "Isartalbahn", + "lengthMeters": 196.5194296185146, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.070101, + 11.530402 + ], + [ + 48.0704182, + 11.5305717 + ], + [ + 48.0708976, + 11.5308195 + ], + [ + 48.0711591, + 11.5309528 + ], + [ + 48.0713537, + 11.5310525 + ], + [ + 48.0714297, + 11.531093 + ], + [ + 48.0716913, + 11.5312257 + ], + [ + 48.0717717, + 11.5312644 + ] + ] + }, + { + "osmId": "328539881", + "name": "Isartalbahn", + "lengthMeters": 177.28357808480726, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0695718, + 11.5299977 + ], + [ + 48.0694994, + 11.5299557 + ], + [ + 48.0692223, + 11.5297809 + ], + [ + 48.0690705, + 11.5296727 + ], + [ + 48.0689298, + 11.5295688 + ], + [ + 48.0687248, + 11.5294134 + ], + [ + 48.0681362, + 11.5289628 + ] + ] + }, + { + "osmId": "328644722", + "name": "U7", + "lengthMeters": 2235.834030644554, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4873476, + 13.4203711 + ], + [ + 52.4875033, + 13.4194058 + ], + [ + 52.4875994, + 13.4186943 + ], + [ + 52.4878645, + 13.4167101 + ], + [ + 52.4888076, + 13.4095036 + ], + [ + 52.488883, + 13.4090197 + ], + [ + 52.4889134, + 13.4088501 + ], + [ + 52.4889687, + 13.4085726 + ], + [ + 52.489076, + 13.4081538 + ], + [ + 52.4891203, + 13.4080006 + ], + [ + 52.4894139, + 13.4069841 + ], + [ + 52.4894787, + 13.4067498 + ], + [ + 52.4895249, + 13.4065286 + ], + [ + 52.4895546, + 13.4062888 + ], + [ + 52.4895638, + 13.4060859 + ], + [ + 52.489544, + 13.4053468 + ], + [ + 52.4895367, + 13.4050828 + ], + [ + 52.4895412, + 13.4047913 + ], + [ + 52.4895571, + 13.4045284 + ], + [ + 52.4895806, + 13.4042954 + ], + [ + 52.4896119, + 13.4040674 + ], + [ + 52.4896497, + 13.4038553 + ], + [ + 52.4909446, + 13.3974333 + ], + [ + 52.4910781, + 13.3966441 + ], + [ + 52.4912047, + 13.3960173 + ], + [ + 52.4914186, + 13.3949579 + ], + [ + 52.4915984, + 13.3941768 + ], + [ + 52.4921907, + 13.3912401 + ], + [ + 52.4922218, + 13.3910381 + ], + [ + 52.4922624, + 13.3907209 + ], + [ + 52.4923052, + 13.3902831 + ], + [ + 52.4923207, + 13.3900773 + ], + [ + 52.4923564, + 13.3895807 + ], + [ + 52.4923901, + 13.3892407 + ], + [ + 52.4924182, + 13.3890712 + ], + [ + 52.4924429, + 13.3889623 + ], + [ + 52.4924792, + 13.3888283 + ], + [ + 52.4925119, + 13.3887282 + ], + [ + 52.4925518, + 13.3886327 + ] + ] + }, + { + "osmId": "328644723", + "name": "U7", + "lengthMeters": 125.37464351660647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4811886, + 13.4348832 + ], + [ + 52.4814773, + 13.4345031 + ], + [ + 52.4818314, + 13.434009 + ], + [ + 52.48193, + 13.4338637 + ], + [ + 52.4820545, + 13.4336979 + ] + ] + }, + { + "osmId": "328644724", + "name": "U7", + "lengthMeters": 139.4531317472747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4811639, + 13.4348382 + ], + [ + 52.4812907, + 13.4346219 + ], + [ + 52.481572, + 13.4342159 + ], + [ + 52.4820234, + 13.4336076 + ], + [ + 52.4821034, + 13.433477 + ] + ] + }, + { + "osmId": "328814240", + "name": "U8", + "lengthMeters": 207.97290452848222, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791976, + 13.4256815 + ], + [ + 52.4795775, + 13.4255217 + ], + [ + 52.4801908, + 13.4253259 + ], + [ + 52.4808439, + 13.4251074 + ], + [ + 52.4810272, + 13.4250477 + ] + ] + }, + { + "osmId": "328814248", + "name": "U8", + "lengthMeters": 209.18957748742565, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4810227, + 13.4249572 + ], + [ + 52.4808337, + 13.4250058 + ], + [ + 52.4796242, + 13.4253965 + ], + [ + 52.4795655, + 13.4254162 + ], + [ + 52.4791728, + 13.4255161 + ] + ] + }, + { + "osmId": "328814252", + "name": "U8", + "lengthMeters": 560.6361914254384, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791728, + 13.4255161 + ], + [ + 52.4785236, + 13.4257538 + ], + [ + 52.4777338, + 13.4260731 + ], + [ + 52.4768214, + 13.4264848 + ], + [ + 52.4762172, + 13.4267581 + ], + [ + 52.4751618, + 13.4272524 + ], + [ + 52.4742987, + 13.4276282 + ] + ] + }, + { + "osmId": "329001191", + "name": "Isartalbahn", + "lengthMeters": 1182.5081695220265, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0057007, + 11.468404 + ], + [ + 48.0052605, + 11.468339 + ], + [ + 48.0049786, + 11.4682826 + ], + [ + 48.0046972, + 11.4682092 + ], + [ + 48.0044813, + 11.4681323 + ], + [ + 48.0043576, + 11.4680788 + ], + [ + 48.0042527, + 11.4680273 + ], + [ + 48.0041091, + 11.4679454 + ], + [ + 48.0039677, + 11.4678578 + ], + [ + 48.0038601, + 11.4677831 + ], + [ + 48.0037555, + 11.4677003 + ], + [ + 48.0036461, + 11.4676101 + ], + [ + 48.0035432, + 11.4675136 + ], + [ + 48.0034352, + 11.4674062 + ], + [ + 48.0033286, + 11.4672908 + ], + [ + 48.003201, + 11.4671414 + ], + [ + 48.0030781, + 11.4669865 + ], + [ + 48.0029551, + 11.4668161 + ], + [ + 48.0028397, + 11.4666429 + ], + [ + 48.0021788, + 11.465567 + ], + [ + 48.0018411, + 11.4650191 + ], + [ + 48.0015071, + 11.4644616 + ], + [ + 48.0011533, + 11.4638805 + ], + [ + 48.0009785, + 11.4636101 + ], + [ + 48.0008473, + 11.4634153 + ], + [ + 48.0007004, + 11.4632179 + ], + [ + 48.0005642, + 11.4630503 + ], + [ + 48.0004335, + 11.4628957 + ], + [ + 48.0002954, + 11.4627479 + ], + [ + 48.0001484, + 11.4626052 + ], + [ + 47.9999957, + 11.462469 + ], + [ + 47.9998407, + 11.462342 + ], + [ + 47.9996888, + 11.4622255 + ], + [ + 47.9995346, + 11.4621203 + ], + [ + 47.9993711, + 11.462021 + ], + [ + 47.9992099, + 11.461929 + ], + [ + 47.9989377, + 11.4618078 + ], + [ + 47.9988098, + 11.4617595 + ], + [ + 47.9986819, + 11.4617193 + ], + [ + 47.9984683, + 11.4616609 + ], + [ + 47.9983624, + 11.4616348 + ], + [ + 47.9982544, + 11.4616145 + ], + [ + 47.9980367, + 11.4615905 + ], + [ + 47.9978227, + 11.461567 + ], + [ + 47.9973228, + 11.4615228 + ], + [ + 47.9970652, + 11.461502 + ], + [ + 47.9968286, + 11.4614738 + ], + [ + 47.996651, + 11.4614537 + ] + ] + }, + { + "osmId": "329004421", + "name": "Isartalbahn", + "lengthMeters": 107.14701581952593, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0424215, + 11.5089939 + ], + [ + 48.0429073, + 11.5093716 + ], + [ + 48.0432765, + 11.5096586 + ] + ] + }, + { + "osmId": "329004423", + "name": "Isartalbahn", + "lengthMeters": 153.7868805349099, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0424421, + 11.5088856 + ], + [ + 48.042035, + 11.508608 + ], + [ + 48.0417504, + 11.5084215 + ], + [ + 48.0415449, + 11.5082865 + ], + [ + 48.0411842, + 11.5080263 + ] + ] + }, + { + "osmId": "329890071", + "name": null, + "lengthMeters": 2143.988959919327, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4903552, + 13.2976274 + ], + [ + 52.490051, + 13.2980355 + ], + [ + 52.4892481, + 13.2990944 + ], + [ + 52.4881828, + 13.3005323 + ], + [ + 52.4878121, + 13.3010326 + ], + [ + 52.4869214, + 13.3022492 + ], + [ + 52.4855331, + 13.304118 + ], + [ + 52.4843712, + 13.3056815 + ], + [ + 52.4841503, + 13.3059768 + ], + [ + 52.4836727, + 13.3066194 + ], + [ + 52.4831547, + 13.3073165 + ], + [ + 52.4827758, + 13.3078263 + ], + [ + 52.482539, + 13.3081404 + ], + [ + 52.480744, + 13.3105641 + ], + [ + 52.4799844, + 13.3116358 + ], + [ + 52.4796503, + 13.3121073 + ], + [ + 52.4792896, + 13.3127624 + ], + [ + 52.4790214, + 13.3133155 + ], + [ + 52.4787929, + 13.3138414 + ], + [ + 52.4787058, + 13.3140418 + ], + [ + 52.4784572, + 13.314719 + ], + [ + 52.4782443, + 13.3154365 + ], + [ + 52.4780298, + 13.3162655 + ], + [ + 52.4779938, + 13.3164045 + ], + [ + 52.4777998, + 13.3173817 + ], + [ + 52.4776805, + 13.3183413 + ], + [ + 52.4776272, + 13.3187896 + ], + [ + 52.4775841, + 13.3192341 + ], + [ + 52.4775661, + 13.3196626 + ], + [ + 52.4775598, + 13.3200817 + ] + ] + }, + { + "osmId": "329890073", + "name": null, + "lengthMeters": 124.94425810226286, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4923979, + 13.2949455 + ], + [ + 52.4932788, + 13.2937998 + ] + ] + }, + { + "osmId": "330066085", + "name": null, + "lengthMeters": 434.55056190885585, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0932471, + 11.6332219 + ], + [ + 48.0932211, + 11.6336418 + ], + [ + 48.0932006, + 11.6339407 + ], + [ + 48.0931591, + 11.6345498 + ], + [ + 48.0931539, + 11.6346275 + ], + [ + 48.0931393, + 11.6348197 + ], + [ + 48.0931238, + 11.6350109 + ], + [ + 48.0930755, + 11.6356049 + ], + [ + 48.0930489, + 11.6359067 + ], + [ + 48.0930232, + 11.6362049 + ], + [ + 48.0929906, + 11.6365506 + ], + [ + 48.0929361, + 11.6369889 + ], + [ + 48.0929046, + 11.6372012 + ], + [ + 48.0928685, + 11.6374447 + ], + [ + 48.0928213, + 11.6377024 + ], + [ + 48.0927401, + 11.6381232 + ], + [ + 48.0926782, + 11.6383869 + ], + [ + 48.092535, + 11.6389498 + ] + ] + }, + { + "osmId": "330066086", + "name": null, + "lengthMeters": 241.31510105916473, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0934891, + 11.6299934 + ], + [ + 48.0934782, + 11.6301134 + ], + [ + 48.0934269, + 11.6306495 + ], + [ + 48.0934191, + 11.6307516 + ], + [ + 48.0933827, + 11.6312262 + ], + [ + 48.0933697, + 11.6313948 + ], + [ + 48.0933231, + 11.63207 + ], + [ + 48.0932932, + 11.6325044 + ], + [ + 48.0932843, + 11.632632 + ], + [ + 48.0932651, + 11.6329368 + ], + [ + 48.0932471, + 11.6332219 + ] + ] + }, + { + "osmId": "330209361", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 321.9421637350992, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.093527, + 11.5323779 + ], + [ + 48.0934343, + 11.5323396 + ], + [ + 48.0932526, + 11.5322645 + ], + [ + 48.0920754, + 11.5317779 + ], + [ + 48.0907361, + 11.5312244 + ] + ] + }, + { + "osmId": "330209362", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 228.39876045608972, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0935162, + 11.5324308 + ], + [ + 48.0942988, + 11.5327555 + ], + [ + 48.095001, + 11.5330459 + ], + [ + 48.0951542, + 11.5331093 + ], + [ + 48.0954191, + 11.5332189 + ], + [ + 48.0954476, + 11.5332303 + ], + [ + 48.0954962, + 11.533249 + ] + ] + }, + { + "osmId": "330487604", + "name": null, + "lengthMeters": 3476.943241932956, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1200841, + 11.6235032 + ], + [ + 48.1200032, + 11.6241531 + ], + [ + 48.1198778, + 11.6254663 + ], + [ + 48.1198434, + 11.6260436 + ], + [ + 48.1198501, + 11.6265088 + ], + [ + 48.1198966, + 11.626995 + ], + [ + 48.1199664, + 11.6274052 + ], + [ + 48.1200602, + 11.6277655 + ], + [ + 48.1201799, + 11.6281072 + ], + [ + 48.1202998, + 11.6284108 + ], + [ + 48.1204294, + 11.6286941 + ], + [ + 48.1205536, + 11.6289207 + ], + [ + 48.1207101, + 11.6291723 + ], + [ + 48.1208799, + 11.6294011 + ], + [ + 48.1210482, + 11.6295855 + ], + [ + 48.1212232, + 11.6297445 + ], + [ + 48.1213801, + 11.6298629 + ], + [ + 48.1215711, + 11.6299678 + ], + [ + 48.1217146, + 11.6300245 + ], + [ + 48.1243101, + 11.6308977 + ], + [ + 48.1246455, + 11.6310515 + ], + [ + 48.1248933, + 11.6311786 + ], + [ + 48.1251118, + 11.6313368 + ], + [ + 48.1252738, + 11.6314849 + ], + [ + 48.125551, + 11.6317874 + ], + [ + 48.1257464, + 11.632038 + ], + [ + 48.1258974, + 11.6322789 + ], + [ + 48.1260422, + 11.6325589 + ], + [ + 48.1261796, + 11.6328665 + ], + [ + 48.1262849, + 11.6331109 + ], + [ + 48.1265101, + 11.6338104 + ], + [ + 48.1266528, + 11.6343123 + ], + [ + 48.1267642, + 11.6348352 + ], + [ + 48.1268516, + 11.6353004 + ], + [ + 48.1269054, + 11.635681 + ], + [ + 48.1269276, + 11.6359305 + ], + [ + 48.1269436, + 11.6362418 + ], + [ + 48.1269256, + 11.6366036 + ], + [ + 48.1268983, + 11.6368757 + ], + [ + 48.1266836, + 11.6383197 + ], + [ + 48.1266067, + 11.639009 + ], + [ + 48.1262951, + 11.6422957 + ], + [ + 48.1259651, + 11.6449232 + ], + [ + 48.1257328, + 11.6466016 + ], + [ + 48.1255684, + 11.6477743 + ], + [ + 48.1255317, + 11.6481542 + ], + [ + 48.125517, + 11.6488579 + ], + [ + 48.1255436, + 11.6493581 + ], + [ + 48.1255955, + 11.6498695 + ], + [ + 48.1256317, + 11.6501281 + ], + [ + 48.1257971, + 11.6513107 + ], + [ + 48.1258307, + 11.6517164 + ], + [ + 48.1258644, + 11.6528728 + ], + [ + 48.1258881, + 11.6543169 + ], + [ + 48.1259468, + 11.655215 + ], + [ + 48.1262714, + 11.6582139 + ], + [ + 48.1262969, + 11.6585841 + ], + [ + 48.1263066, + 11.6589099 + ], + [ + 48.1263006, + 11.6592239 + ], + [ + 48.126267, + 11.6595759 + ], + [ + 48.1262016, + 11.6599351 + ], + [ + 48.1260806, + 11.6604129 + ], + [ + 48.125665, + 11.662185 + ], + [ + 48.1255622, + 11.6627766 + ], + [ + 48.1254551, + 11.6637062 + ] + ] + }, + { + "osmId": "330487605", + "name": null, + "lengthMeters": 3202.516969010133, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1254551, + 11.6637062 + ], + [ + 48.1254471, + 11.66413 + ], + [ + 48.1254751, + 11.6649626 + ], + [ + 48.1256206, + 11.6658959 + ], + [ + 48.1258521, + 11.6667779 + ], + [ + 48.1259512, + 11.6670647 + ], + [ + 48.1260982, + 11.6674182 + ], + [ + 48.1262418, + 11.6676692 + ], + [ + 48.1263793, + 11.6678504 + ], + [ + 48.1265447, + 11.6680339 + ], + [ + 48.12668, + 11.6681402 + ], + [ + 48.1268415, + 11.668222 + ], + [ + 48.1271852, + 11.6683737 + ], + [ + 48.1276262, + 11.668601 + ], + [ + 48.1281669, + 11.6689678 + ], + [ + 48.1289684, + 11.6695678 + ], + [ + 48.1293308, + 11.6698537 + ], + [ + 48.12954, + 11.6700198 + ], + [ + 48.1297554, + 11.670191 + ], + [ + 48.1301573, + 11.6705225 + ], + [ + 48.1307341, + 11.6710285 + ], + [ + 48.1309159, + 11.6711804 + ], + [ + 48.1312749, + 11.6715255 + ], + [ + 48.1320436, + 11.6723328 + ], + [ + 48.1322254, + 11.6725454 + ], + [ + 48.1328982, + 11.6733788 + ], + [ + 48.1332634, + 11.6738241 + ], + [ + 48.1334564, + 11.6741069 + ], + [ + 48.1336313, + 11.6744131 + ], + [ + 48.1337701, + 11.6747533 + ], + [ + 48.1338549, + 11.6750995 + ], + [ + 48.1339017, + 11.675504 + ], + [ + 48.1339091, + 11.675935 + ], + [ + 48.133873, + 11.676368 + ], + [ + 48.1338143, + 11.6767638 + ], + [ + 48.133746, + 11.6771038 + ], + [ + 48.1334779, + 11.6782641 + ], + [ + 48.1333938, + 11.6787106 + ], + [ + 48.1333413, + 11.6791216 + ], + [ + 48.1333255, + 11.6795648 + ], + [ + 48.1333774, + 11.6907644 + ], + [ + 48.1333904, + 11.692384 + ], + [ + 48.1333634, + 11.6953209 + ], + [ + 48.13332, + 11.7000417 + ] + ] + }, + { + "osmId": "330487607", + "name": null, + "lengthMeters": 3467.4431825934876, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1255574, + 11.6637067 + ], + [ + 48.1255919, + 11.6633968 + ], + [ + 48.1256828, + 11.6628215 + ], + [ + 48.1257745, + 11.6622316 + ], + [ + 48.1258495, + 11.6618816 + ], + [ + 48.1261606, + 11.6604646 + ], + [ + 48.1262859, + 11.6599758 + ], + [ + 48.1263559, + 11.6596003 + ], + [ + 48.1263887, + 11.6592434 + ], + [ + 48.1263955, + 11.6589136 + ], + [ + 48.1263876, + 11.6585838 + ], + [ + 48.1263599, + 11.6582015 + ], + [ + 48.126037, + 11.6551992 + ], + [ + 48.1259777, + 11.6543045 + ], + [ + 48.125954, + 11.6528736 + ], + [ + 48.1259224, + 11.6517065 + ], + [ + 48.125884, + 11.6512989 + ], + [ + 48.1256797, + 11.6498442 + ], + [ + 48.1256311, + 11.6493419 + ], + [ + 48.1256164, + 11.648777 + ], + [ + 48.1256322, + 11.6483355 + ], + [ + 48.1256864, + 11.6478129 + ], + [ + 48.1258501, + 11.6466195 + ], + [ + 48.1260737, + 11.6449628 + ], + [ + 48.1261189, + 11.6446364 + ], + [ + 48.1263921, + 11.6423225 + ], + [ + 48.1267042, + 11.6390327 + ], + [ + 48.1267782, + 11.6383477 + ], + [ + 48.1269927, + 11.6369168 + ], + [ + 48.1270232, + 11.6366191 + ], + [ + 48.1270424, + 11.6362419 + ], + [ + 48.1270249, + 11.6359121 + ], + [ + 48.1270029, + 11.635655 + ], + [ + 48.12696, + 11.6353099 + ], + [ + 48.1268753, + 11.6347941 + ], + [ + 48.1267613, + 11.6342613 + ], + [ + 48.1266253, + 11.6337648 + ], + [ + 48.1263811, + 11.6330355 + ], + [ + 48.1262724, + 11.6327745 + ], + [ + 48.1261279, + 11.6324515 + ], + [ + 48.1259868, + 11.6321774 + ], + [ + 48.1258259, + 11.6319254 + ], + [ + 48.1256289, + 11.6316683 + ], + [ + 48.1253342, + 11.6313419 + ], + [ + 48.1251682, + 11.6311947 + ], + [ + 48.1249407, + 11.631034 + ], + [ + 48.1246929, + 11.6309004 + ], + [ + 48.1243452, + 11.6307414 + ], + [ + 48.1217432, + 11.6298653 + ], + [ + 48.1216049, + 11.6297976 + ], + [ + 48.12144, + 11.6297029 + ], + [ + 48.121282, + 11.6295794 + ], + [ + 48.1212639, + 11.6295599 + ], + [ + 48.1211329, + 11.6294187 + ], + [ + 48.1209782, + 11.6292242 + ], + [ + 48.1208235, + 11.6289925 + ], + [ + 48.1206847, + 11.6287557 + ], + [ + 48.1205717, + 11.6285443 + ], + [ + 48.1204492, + 11.6282635 + ], + [ + 48.1203437, + 11.6279929 + ], + [ + 48.1202251, + 11.6276478 + ], + [ + 48.1201404, + 11.6273248 + ], + [ + 48.1200727, + 11.6269493 + ], + [ + 48.1200275, + 11.6264723 + ], + [ + 48.1199773, + 11.6255481 + ], + [ + 48.1199728, + 11.6252217 + ], + [ + 48.119983, + 11.6248208 + ], + [ + 48.1199965, + 11.6246212 + ], + [ + 48.1200417, + 11.6241612 + ], + [ + 48.1201168, + 11.6235117 + ] + ] + }, + { + "osmId": "330839874", + "name": "U2", + "lengthMeters": 232.40288320530215, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5036094, + 13.3748383 + ], + [ + 52.5036327, + 13.374846 + ], + [ + 52.503744, + 13.3748859 + ], + [ + 52.5039, + 13.3749525 + ], + [ + 52.5042634, + 13.3751278 + ], + [ + 52.5043034, + 13.375147 + ], + [ + 52.5055949, + 13.3759017 + ] + ] + }, + { + "osmId": "330839875", + "name": "U2", + "lengthMeters": 232.4945978153898, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5056063, + 13.3758556 + ], + [ + 52.5043095, + 13.3751045 + ], + [ + 52.5042732, + 13.3750854 + ], + [ + 52.5039069, + 13.3749083 + ], + [ + 52.5037464, + 13.374841 + ], + [ + 52.5036196, + 13.3747921 + ] + ] + }, + { + "osmId": "330930833", + "name": null, + "lengthMeters": 227.18760042931916, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1563151, + 11.648451 + ], + [ + 48.1567599, + 11.6483816 + ], + [ + 48.1571151, + 11.648329 + ], + [ + 48.157803, + 11.648227 + ], + [ + 48.1582639, + 11.6481587 + ], + [ + 48.1583481, + 11.6481462 + ] + ] + }, + { + "osmId": "330930834", + "name": null, + "lengthMeters": 226.6332798533469, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1583428, + 11.6480912 + ], + [ + 48.1567548, + 11.6483286 + ], + [ + 48.1563146, + 11.6483929 + ] + ] + }, + { + "osmId": "330930835", + "name": null, + "lengthMeters": 228.87619187087006, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1601408, + 11.6479537 + ], + [ + 48.1603144, + 11.6479236 + ], + [ + 48.1605791, + 11.6478782 + ], + [ + 48.16085, + 11.6478235 + ], + [ + 48.1614045, + 11.6477164 + ], + [ + 48.1617993, + 11.6476308 + ], + [ + 48.1621811, + 11.6475476 + ] + ] + }, + { + "osmId": "330930836", + "name": null, + "lengthMeters": 209.26028014816853, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1563146, + 11.6483929 + ], + [ + 48.1562622, + 11.6484003 + ], + [ + 48.1562306, + 11.6484048 + ], + [ + 48.1561134, + 11.6484225 + ], + [ + 48.1552932, + 11.6485467 + ], + [ + 48.1544419, + 11.6486718 + ] + ] + }, + { + "osmId": "331114772", + "name": null, + "lengthMeters": 233.757967067719, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5261973, + 13.414737 + ], + [ + 52.5259897, + 13.4144889 + ], + [ + 52.5259034, + 13.4143768 + ], + [ + 52.5257994, + 13.4142459 + ], + [ + 52.5257049, + 13.4141293 + ], + [ + 52.5255961, + 13.4139897 + ], + [ + 52.5252287, + 13.4135388 + ], + [ + 52.5252181, + 13.4135215 + ], + [ + 52.5250238, + 13.4132806 + ], + [ + 52.5248171, + 13.4130318 + ], + [ + 52.5245145, + 13.4126668 + ] + ] + }, + { + "osmId": "331227435", + "name": null, + "lengthMeters": 75.89906131119939, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1686133, + 11.6458391 + ], + [ + 48.1692861, + 11.6456665 + ] + ] + }, + { + "osmId": "331227436", + "name": null, + "lengthMeters": 231.31102526881227, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.168597, + 11.6457304 + ], + [ + 48.1682316, + 11.6457961 + ], + [ + 48.1679207, + 11.6458582 + ], + [ + 48.1677878, + 11.6458907 + ], + [ + 48.1676051, + 11.6459355 + ], + [ + 48.1671774, + 11.646051 + ], + [ + 48.1665434, + 11.6462222 + ] + ] + }, + { + "osmId": "331227437", + "name": null, + "lengthMeters": 232.37567371806043, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1665502, + 11.6463383 + ], + [ + 48.1673551, + 11.6461394 + ], + [ + 48.1674325, + 11.6461203 + ], + [ + 48.1676243, + 11.6460762 + ], + [ + 48.1679158, + 11.646006 + ], + [ + 48.1686133, + 11.6458391 + ] + ] + }, + { + "osmId": "331227438", + "name": null, + "lengthMeters": 430.73824414016667, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1665434, + 11.6462222 + ], + [ + 48.1656876, + 11.646457 + ], + [ + 48.1648315, + 11.646681 + ], + [ + 48.1646271, + 11.6467375 + ], + [ + 48.1645071, + 11.6467694 + ], + [ + 48.1641555, + 11.6468711 + ], + [ + 48.1639114, + 11.6469438 + ], + [ + 48.1636972, + 11.6470133 + ], + [ + 48.1633575, + 11.6471288 + ], + [ + 48.1630629, + 11.6472311 + ], + [ + 48.1627414, + 11.6473294 + ] + ] + }, + { + "osmId": "331373249", + "name": null, + "lengthMeters": 91.50734261354522, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1532732, + 11.6208676 + ], + [ + 48.1534607, + 11.6220687 + ] + ] + }, + { + "osmId": "331486662", + "name": null, + "lengthMeters": 122.02450116881545, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2468416, + 11.6307678 + ], + [ + 48.2473384, + 11.6311016 + ], + [ + 48.2478422, + 11.6314445 + ] + ] + }, + { + "osmId": "331486663", + "name": null, + "lengthMeters": 122.3669348695818, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2478573, + 11.6313975 + ], + [ + 48.2473514, + 11.6310568 + ], + [ + 48.2468538, + 11.6307192 + ] + ] + }, + { + "osmId": "331486664", + "name": null, + "lengthMeters": 88.85179999128962, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2468538, + 11.6307192 + ], + [ + 48.2466376, + 11.6305713 + ], + [ + 48.2463419, + 11.6304004 + ], + [ + 48.2461068, + 11.6302988 + ] + ] + }, + { + "osmId": "331515449", + "name": null, + "lengthMeters": 135.77986701504105, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4825313, + 9.9995672 + ], + [ + 53.4825003, + 9.9996909 + ], + [ + 53.4824653, + 9.9998183 + ], + [ + 53.4824228, + 9.9999793 + ], + [ + 53.4823761, + 10.0001214 + ], + [ + 53.4823457, + 10.0002076 + ], + [ + 53.48228, + 10.0003845 + ], + [ + 53.4822007, + 10.0005562 + ], + [ + 53.4821251, + 10.0007027 + ], + [ + 53.4820725, + 10.0007987 + ], + [ + 53.4820214, + 10.0008845 + ], + [ + 53.4819381, + 10.0010038 + ], + [ + 53.4818903, + 10.0010705 + ], + [ + 53.4818794, + 10.0010857 + ], + [ + 53.4818046, + 10.0011764 + ] + ] + }, + { + "osmId": "331515452", + "name": null, + "lengthMeters": 354.2681806195775, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4828353, + 10.0001343 + ], + [ + 53.482857, + 10.0002435 + ], + [ + 53.4828786, + 10.00034 + ], + [ + 53.4829371, + 10.0005473 + ], + [ + 53.482951, + 10.000602 + ], + [ + 53.4830289, + 10.0008566 + ], + [ + 53.4831945, + 10.0013293 + ], + [ + 53.4832075, + 10.0013554 + ], + [ + 53.4833945, + 10.001732 + ], + [ + 53.4835154, + 10.0019494 + ], + [ + 53.4836504, + 10.0021627 + ], + [ + 53.4837651, + 10.0023222 + ], + [ + 53.4838729, + 10.0024542 + ], + [ + 53.4839782, + 10.0025582 + ], + [ + 53.4841132, + 10.0026946 + ], + [ + 53.4841766, + 10.0027559 + ], + [ + 53.4844399, + 10.0029353 + ], + [ + 53.4845282, + 10.002981 + ], + [ + 53.484752, + 10.0030898 + ], + [ + 53.4852038, + 10.0032977 + ] + ] + }, + { + "osmId": "331515453", + "name": null, + "lengthMeters": 131.1487640016181, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.482496, + 9.9995273 + ], + [ + 53.4824643, + 9.9996681 + ], + [ + 53.4824284, + 9.9997973 + ], + [ + 53.4823861, + 9.9999538 + ], + [ + 53.4823433, + 10.0000879 + ], + [ + 53.4823126, + 10.0001691 + ], + [ + 53.4822437, + 10.0003448 + ], + [ + 53.4821651, + 10.0005211 + ], + [ + 53.48209, + 10.0006725 + ], + [ + 53.4819406, + 10.0009173 + ], + [ + 53.4818714, + 10.001016 + ], + [ + 53.4818344, + 10.0010642 + ], + [ + 53.4818067, + 10.0011004 + ] + ] + }, + { + "osmId": "331607241", + "name": null, + "lengthMeters": 122.77041368163064, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.469758, + 13.4592061 + ], + [ + 52.4699819, + 13.4583775 + ], + [ + 52.4701216, + 13.4578781 + ], + [ + 52.4702137, + 13.4575553 + ] + ] + }, + { + "osmId": "331607242", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 85.37046867865456, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4692821, + 13.4603419 + ], + [ + 52.469389, + 13.459884 + ], + [ + 52.4695764, + 13.4591782 + ] + ] + }, + { + "osmId": "331607243", + "name": null, + "lengthMeters": 91.05149619588863, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697267, + 13.4591843 + ], + [ + 52.4694043, + 13.4604199 + ] + ] + }, + { + "osmId": "331607244", + "name": null, + "lengthMeters": 91.06761184526664, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694378, + 13.4604435 + ], + [ + 52.469758, + 13.4592061 + ] + ] + }, + { + "osmId": "331607247", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 123.46723300182026, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4695764, + 13.4591782 + ], + [ + 52.4700192, + 13.4575755 + ], + [ + 52.470035, + 13.4575182 + ] + ] + }, + { + "osmId": "331607248", + "name": null, + "lengthMeters": 112.67404844945548, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694043, + 13.4604199 + ], + [ + 52.46924, + 13.4611998 + ], + [ + 52.4692044, + 13.461403 + ], + [ + 52.4691118, + 13.462011 + ] + ] + }, + { + "osmId": "332117665", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 345.22932054565536, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5374796, + 10.0474175 + ], + [ + 53.5379178, + 10.0460164 + ], + [ + 53.5381788, + 10.0451523 + ], + [ + 53.5384286, + 10.0442826 + ], + [ + 53.5387541, + 10.043131 + ], + [ + 53.5387621, + 10.0431029 + ], + [ + 53.5388679, + 10.0427454 + ] + ] + }, + { + "osmId": "332117666", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 712.882235490584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5378134, + 10.0459767 + ], + [ + 53.5371813, + 10.0482324 + ], + [ + 53.5368539, + 10.0493903 + ], + [ + 53.5362909, + 10.0513744 + ], + [ + 53.5362727, + 10.0514386 + ], + [ + 53.5357794, + 10.053204 + ], + [ + 53.5356045, + 10.0538201 + ], + [ + 53.5350644, + 10.0557221 + ] + ] + }, + { + "osmId": "332563324", + "name": null, + "lengthMeters": 278.37558582270856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5484861, + 10.0058685 + ], + [ + 53.5483192, + 10.0057383 + ], + [ + 53.5481737, + 10.0055747 + ], + [ + 53.5480773, + 10.0054502 + ], + [ + 53.5479506, + 10.0052529 + ], + [ + 53.5478305, + 10.0050361 + ], + [ + 53.547738, + 10.0048109 + ], + [ + 53.5476844, + 10.0046547 + ], + [ + 53.5476099, + 10.0043771 + ], + [ + 53.5475565, + 10.0041416 + ], + [ + 53.5475308, + 10.0040041 + ], + [ + 53.5475043, + 10.0037991 + ], + [ + 53.5474885, + 10.0036102 + ], + [ + 53.5474806, + 10.0033144 + ], + [ + 53.5474863, + 10.0031076 + ], + [ + 53.5475113, + 10.0028425 + ], + [ + 53.5475618, + 10.002359 + ] + ] + }, + { + "osmId": "332563326", + "name": null, + "lengthMeters": 171.17401810323972, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521137, + 10.0109489 + ], + [ + 53.5520944, + 10.0106568 + ], + [ + 53.5520733, + 10.0103337 + ], + [ + 53.5520693, + 10.0102494 + ], + [ + 53.5520248, + 10.0096333 + ], + [ + 53.5519713, + 10.0088681 + ], + [ + 53.5519512, + 10.0086479 + ], + [ + 53.55194, + 10.0085558 + ], + [ + 53.5519112, + 10.0083827 + ] + ] + }, + { + "osmId": "332582157", + "name": null, + "lengthMeters": 132.9551930176634, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7090789, + 9.9922716 + ], + [ + 53.7089095, + 9.9922838 + ], + [ + 53.7088881, + 9.9922854 + ], + [ + 53.7084516, + 9.9923169 + ], + [ + 53.7078846, + 9.9923685 + ] + ] + }, + { + "osmId": "334686276", + "name": null, + "lengthMeters": 330.7386627020227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7074253, + 9.9922875 + ], + [ + 53.7056775, + 9.9924538 + ], + [ + 53.7053935, + 9.9924808 + ], + [ + 53.7044556, + 9.99257 + ] + ] + }, + { + "osmId": "334908590", + "name": null, + "lengthMeters": 458.308974356323, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494766, + 13.5843202 + ], + [ + 52.5494419, + 13.5841644 + ], + [ + 52.5494108, + 13.5840315 + ], + [ + 52.5493559, + 13.5838202 + ], + [ + 52.5492425, + 13.5833864 + ], + [ + 52.5491963, + 13.5832096 + ], + [ + 52.5491315, + 13.5829617 + ], + [ + 52.5491008, + 13.582844 + ], + [ + 52.5487647, + 13.5815651 + ], + [ + 52.5486485, + 13.58112 + ], + [ + 52.5484321, + 13.580292 + ], + [ + 52.5478563, + 13.5780882 + ] + ] + }, + { + "osmId": "335043669", + "name": "U6", + "lengthMeters": 161.92965301779117, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.521111, + 13.3880521 + ], + [ + 52.5206888, + 13.3881188 + ], + [ + 52.5200402, + 13.3882292 + ], + [ + 52.5198615, + 13.388265 + ], + [ + 52.5196643, + 13.3883201 + ] + ] + }, + { + "osmId": "335043672", + "name": "U6", + "lengthMeters": 591.8376878043262, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196712, + 13.3884146 + ], + [ + 52.5198408, + 13.3884103 + ], + [ + 52.5203553, + 13.3883248 + ], + [ + 52.5206989, + 13.3882679 + ], + [ + 52.5213924, + 13.3881042 + ], + [ + 52.5225676, + 13.3878977 + ], + [ + 52.5240336, + 13.3876401 + ], + [ + 52.5249648, + 13.3875308 + ] + ] + }, + { + "osmId": "335191034", + "name": null, + "lengthMeters": 544.9978499880497, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3940722, + 13.1253437 + ], + [ + 52.394163, + 13.1264583 + ], + [ + 52.3943049, + 13.1281562 + ], + [ + 52.3944528, + 13.1296884 + ], + [ + 52.3945467, + 13.1303937 + ], + [ + 52.3946406, + 13.1311902 + ], + [ + 52.3948539, + 13.132951 + ], + [ + 52.3948924, + 13.1332588 + ] + ] + }, + { + "osmId": "335191035", + "name": null, + "lengthMeters": 358.1463055017469, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3949024, + 13.133346 + ], + [ + 52.3949168, + 13.1334833 + ], + [ + 52.3950084, + 13.1342015 + ], + [ + 52.3950446, + 13.1344649 + ], + [ + 52.3951615, + 13.1351717 + ], + [ + 52.3953113, + 13.1358673 + ], + [ + 52.3954911, + 13.1365165 + ], + [ + 52.3956217, + 13.1369231 + ], + [ + 52.3958966, + 13.137675 + ], + [ + 52.396114, + 13.138178 + ] + ] + }, + { + "osmId": "335191037", + "name": null, + "lengthMeters": 763.0656980179346, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4141027, + 13.1647471 + ], + [ + 52.4141086, + 13.1647663 + ], + [ + 52.4142149, + 13.1651086 + ], + [ + 52.4142876, + 13.1653251 + ], + [ + 52.4143633, + 13.165566 + ], + [ + 52.4146419, + 13.1663612 + ], + [ + 52.4147805, + 13.1667374 + ], + [ + 52.4149214, + 13.1671144 + ], + [ + 52.4150508, + 13.1674495 + ], + [ + 52.4151682, + 13.1677573 + ], + [ + 52.4152226, + 13.1678939 + ], + [ + 52.4153159, + 13.1681281 + ], + [ + 52.4154623, + 13.1684882 + ], + [ + 52.4156375, + 13.168911 + ], + [ + 52.4158189, + 13.1693318 + ], + [ + 52.4159973, + 13.1697346 + ], + [ + 52.4161063, + 13.1699726 + ], + [ + 52.4162909, + 13.1703711 + ], + [ + 52.4164687, + 13.1707458 + ], + [ + 52.4170797, + 13.1719968 + ], + [ + 52.4171905, + 13.1722213 + ], + [ + 52.4172256, + 13.1722944 + ], + [ + 52.4173437, + 13.1725398 + ], + [ + 52.4174843, + 13.1728192 + ], + [ + 52.4180333, + 13.1739396 + ] + ] + }, + { + "osmId": "335475762", + "name": null, + "lengthMeters": 90.65237554638914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5653303, + 9.8184861 + ], + [ + 53.5653754, + 9.8187025 + ], + [ + 53.5653928, + 9.8187812 + ], + [ + 53.5654165, + 9.8188797 + ], + [ + 53.5654464, + 9.8189912 + ], + [ + 53.5654775, + 9.8190943 + ], + [ + 53.5655109, + 9.8191959 + ], + [ + 53.5655472, + 9.819296 + ], + [ + 53.5655847, + 9.8193888 + ], + [ + 53.5656287, + 9.8194915 + ], + [ + 53.5656793, + 9.819601 + ], + [ + 53.5657188, + 9.8196811 + ] + ] + }, + { + "osmId": "335475768", + "name": "1226 S-Bahn", + "lengthMeters": 166.83227795169967, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5672406, + 9.820744 + ], + [ + 53.567124, + 9.8207558 + ], + [ + 53.5670107, + 9.8207543 + ], + [ + 53.5669271, + 9.8207465 + ], + [ + 53.5668404, + 9.8207326 + ], + [ + 53.5667487, + 9.8207083 + ], + [ + 53.5666594, + 9.8206784 + ], + [ + 53.5665881, + 9.8206464 + ], + [ + 53.5665435, + 9.8206256 + ], + [ + 53.5664562, + 9.8205722 + ], + [ + 53.5663761, + 9.8205167 + ], + [ + 53.5663139, + 9.8204705 + ], + [ + 53.5662489, + 9.8204135 + ], + [ + 53.5661775, + 9.8203461 + ], + [ + 53.5661145, + 9.8202809 + ], + [ + 53.5660512, + 9.820207 + ], + [ + 53.5659852, + 9.8201217 + ], + [ + 53.5659205, + 9.820029 + ], + [ + 53.5658666, + 9.8199443 + ] + ] + }, + { + "osmId": "336848855", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 374.0907920699353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5326105, + 10.0628686 + ], + [ + 53.5334474, + 10.0611929 + ], + [ + 53.5336793, + 10.060627 + ], + [ + 53.5338724, + 10.0600525 + ], + [ + 53.5339864, + 10.059675 + ], + [ + 53.5340964, + 10.0592894 + ], + [ + 53.5342139, + 10.0588712 + ], + [ + 53.5343337, + 10.0584563 + ], + [ + 53.5343946, + 10.0582352 + ], + [ + 53.5344214, + 10.0581397 + ] + ] + }, + { + "osmId": "336848856", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 499.06270532789256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5325462, + 10.062793 + ], + [ + 53.5322976, + 10.0632649 + ], + [ + 53.5320997, + 10.0636613 + ], + [ + 53.5320649, + 10.0637309 + ], + [ + 53.5320552, + 10.0637504 + ], + [ + 53.5316668, + 10.0645678 + ], + [ + 53.5312722, + 10.0653981 + ], + [ + 53.5312454, + 10.0654544 + ], + [ + 53.5309026, + 10.0661773 + ], + [ + 53.5308896, + 10.0662046 + ], + [ + 53.5307564, + 10.0664856 + ], + [ + 53.5304422, + 10.0671515 + ], + [ + 53.5301589, + 10.0677115 + ], + [ + 53.5297, + 10.06863 + ] + ] + }, + { + "osmId": "337344435", + "name": null, + "lengthMeters": 174.03858526906194, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4474472, + 10.1083495 + ], + [ + 53.4474967, + 10.1084166 + ], + [ + 53.4476117, + 10.1086392 + ], + [ + 53.4478082, + 10.1090388 + ], + [ + 53.447928, + 10.1092963 + ], + [ + 53.4481053, + 10.1096799 + ], + [ + 53.4482475, + 10.1100044 + ], + [ + 53.448436, + 10.1103826 + ] + ] + }, + { + "osmId": "337344436", + "name": null, + "lengthMeters": 242.78982454268137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4489291, + 10.1120355 + ], + [ + 53.4489459, + 10.1120605 + ], + [ + 53.4489695, + 10.1120966 + ], + [ + 53.4490318, + 10.1122253 + ], + [ + 53.4490957, + 10.1123326 + ], + [ + 53.4491548, + 10.1124479 + ], + [ + 53.4493497, + 10.1128664 + ], + [ + 53.4495014, + 10.1132043 + ], + [ + 53.4495941, + 10.1133974 + ], + [ + 53.4496707, + 10.1135396 + ], + [ + 53.4496995, + 10.1135557 + ], + [ + 53.4497554, + 10.1135879 + ], + [ + 53.4497793, + 10.1136227 + ], + [ + 53.4499519, + 10.1139902 + ], + [ + 53.4501324, + 10.1143711 + ], + [ + 53.4502537, + 10.1146339 + ], + [ + 53.450332, + 10.114811 + ] + ] + }, + { + "osmId": "337344451", + "name": null, + "lengthMeters": 330.392817168965, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4470307, + 10.1080862 + ], + [ + 53.4471968, + 10.1084617 + ], + [ + 53.447577, + 10.1092985 + ], + [ + 53.4477623, + 10.109717 + ], + [ + 53.4479332, + 10.1101086 + ], + [ + 53.448053, + 10.1103795 + ], + [ + 53.4482048, + 10.1106852 + ], + [ + 53.4483693, + 10.1110259 + ], + [ + 53.448561, + 10.1114309 + ], + [ + 53.4487207, + 10.1117367 + ], + [ + 53.4488022, + 10.1118694 + ], + [ + 53.4488462, + 10.1119016 + ], + [ + 53.4488897, + 10.1119585 + ] + ] + }, + { + "osmId": "338101549", + "name": null, + "lengthMeters": 214.19636920722482, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356367, + 11.5998518 + ], + [ + 48.1356333, + 11.5996329 + ], + [ + 48.1356257, + 11.5992883 + ], + [ + 48.1356248, + 11.5989892 + ], + [ + 48.1356267, + 11.5986919 + ], + [ + 48.1356293, + 11.5985782 + ], + [ + 48.1356447, + 11.5981958 + ], + [ + 48.1356605, + 11.5979797 + ], + [ + 48.135678, + 11.5978223 + ], + [ + 48.1357318, + 11.5975401 + ], + [ + 48.1358501, + 11.59701 + ] + ] + }, + { + "osmId": "338124337", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 324.9021029556852, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1613729, + 11.4820875 + ], + [ + 48.1614877, + 11.4821643 + ], + [ + 48.161694, + 11.4823138 + ], + [ + 48.1621034, + 11.482646 + ], + [ + 48.162307, + 11.4828249 + ], + [ + 48.1625042, + 11.4830122 + ], + [ + 48.1627065, + 11.4832185 + ], + [ + 48.1629056, + 11.4834355 + ], + [ + 48.1631307, + 11.4836928 + ], + [ + 48.1633516, + 11.4839666 + ], + [ + 48.1635707, + 11.4842578 + ], + [ + 48.1637715, + 11.4845478 + ] + ] + }, + { + "osmId": "338124339", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 577.0709827510268, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2057912, + 11.5381802 + ], + [ + 48.2059225, + 11.5383506 + ], + [ + 48.206069, + 11.5385408 + ], + [ + 48.2063139, + 11.5388312 + ], + [ + 48.2064936, + 11.5390275 + ], + [ + 48.2066549, + 11.5391955 + ], + [ + 48.2067568, + 11.5392931 + ], + [ + 48.2069173, + 11.539447 + ], + [ + 48.2070924, + 11.5396009 + ], + [ + 48.2072163, + 11.5396999 + ], + [ + 48.2072707, + 11.5397434 + ], + [ + 48.2074495, + 11.5398859 + ], + [ + 48.207589, + 11.5399899 + ], + [ + 48.2077297, + 11.5400847 + ], + [ + 48.2080106, + 11.540259 + ], + [ + 48.2082943, + 11.5404213 + ], + [ + 48.2086515, + 11.5405921 + ], + [ + 48.2087676, + 11.5406424 + ], + [ + 48.2089602, + 11.5407225 + ], + [ + 48.2091238, + 11.5407822 + ], + [ + 48.2092905, + 11.5408371 + ], + [ + 48.2095386, + 11.5409083 + ], + [ + 48.2097816, + 11.5409686 + ], + [ + 48.20986, + 11.5409834 + ], + [ + 48.2101452, + 11.5410372 + ], + [ + 48.2103269, + 11.5410654 + ], + [ + 48.2104986, + 11.541092 + ] + ] + }, + { + "osmId": "338124346", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 181.72899216595994, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2107665, + 11.541118 + ], + [ + 48.2110704, + 11.5411491 + ], + [ + 48.2113483, + 11.5411828 + ], + [ + 48.2118757, + 11.541227 + ], + [ + 48.2123978, + 11.5412644 + ] + ] + }, + { + "osmId": "338296464", + "name": null, + "lengthMeters": 712.1770821601931, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1720709, + 11.5287198 + ], + [ + 48.1721028, + 11.5287232 + ], + [ + 48.1721151, + 11.5287245 + ], + [ + 48.1721493, + 11.5287257 + ], + [ + 48.1721562, + 11.5287252 + ], + [ + 48.1721857, + 11.5287234 + ], + [ + 48.1722116, + 11.5287196 + ], + [ + 48.1722392, + 11.5287137 + ], + [ + 48.1722658, + 11.5287057 + ], + [ + 48.172291, + 11.5286932 + ], + [ + 48.1723154, + 11.528678 + ], + [ + 48.172342, + 11.5286535 + ], + [ + 48.1723687, + 11.5286247 + ], + [ + 48.1724123, + 11.5285691 + ], + [ + 48.1724578, + 11.5284878 + ], + [ + 48.1724954, + 11.5284168 + ], + [ + 48.1725657, + 11.5282807 + ], + [ + 48.1726383, + 11.5281403 + ], + [ + 48.1729447, + 11.5275185 + ], + [ + 48.1741494, + 11.5251899 + ], + [ + 48.1749049, + 11.5237145 + ], + [ + 48.1755829, + 11.5223601 + ], + [ + 48.1756544, + 11.5222276 + ], + [ + 48.1757183, + 11.5221156 + ], + [ + 48.175856, + 11.5218788 + ], + [ + 48.1759112, + 11.5217818 + ], + [ + 48.1761041, + 11.5214129 + ] + ] + }, + { + "osmId": "338342417", + "name": null, + "lengthMeters": 131.19071617201897, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5824216, + 9.9869465 + ], + [ + 53.5825779, + 9.9864957 + ], + [ + 53.5827321, + 9.9860617 + ], + [ + 53.5827782, + 9.9859481 + ], + [ + 53.5828231, + 9.9858464 + ], + [ + 53.5828769, + 9.985739 + ], + [ + 53.5829203, + 9.9856638 + ], + [ + 53.5829427, + 9.9856317 + ], + [ + 53.5829635, + 9.9856051 + ], + [ + 53.5830039, + 9.9855587 + ], + [ + 53.5830477, + 9.9855176 + ], + [ + 53.5830796, + 9.9854915 + ], + [ + 53.5831225, + 9.9854646 + ], + [ + 53.5831522, + 9.9854484 + ] + ] + }, + { + "osmId": "338401321", + "name": null, + "lengthMeters": 350.3268690868884, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5801667, + 10.0416353 + ], + [ + 53.5806529, + 10.0422193 + ], + [ + 53.581425, + 10.0431402 + ], + [ + 53.5821376, + 10.044 + ], + [ + 53.5825028, + 10.0444346 + ], + [ + 53.5827336, + 10.0447123 + ] + ] + }, + { + "osmId": "338404170", + "name": null, + "lengthMeters": 302.9327971542782, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5442835, + 9.9801316 + ], + [ + 53.54428, + 9.9799398 + ], + [ + 53.544208, + 9.9785474 + ], + [ + 53.5441848, + 9.9779881 + ], + [ + 53.5441765, + 9.9774337 + ], + [ + 53.5441769, + 9.9771805 + ], + [ + 53.5441838, + 9.9770807 + ], + [ + 53.5441936, + 9.9769787 + ], + [ + 53.5442059, + 9.9768971 + ], + [ + 53.5442188, + 9.9768279 + ], + [ + 53.5442299, + 9.9767756 + ], + [ + 53.5442399, + 9.976728 + ], + [ + 53.5442554, + 9.9766728 + ], + [ + 53.5445389, + 9.9757686 + ], + [ + 53.5445624, + 9.9757026 + ] + ] + }, + { + "osmId": "338404175", + "name": null, + "lengthMeters": 282.24088552048056, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5445624, + 9.9757026 + ], + [ + 53.544965, + 9.9744636 + ], + [ + 53.5454262, + 9.9730529 + ], + [ + 53.5455954, + 9.9724545 + ], + [ + 53.5457293, + 9.9719127 + ] + ] + }, + { + "osmId": "338475097", + "name": null, + "lengthMeters": 513.0597249387122, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.715183, + 9.9918442 + ], + [ + 53.7151369, + 9.9918456 + ], + [ + 53.71427, + 9.9918934 + ], + [ + 53.7138345, + 9.9919139 + ], + [ + 53.7136867, + 9.9919225 + ], + [ + 53.7126921, + 9.9919801 + ], + [ + 53.7126346, + 9.9919834 + ], + [ + 53.7125187, + 9.9919901 + ], + [ + 53.7124195, + 9.9919973 + ], + [ + 53.7114291, + 9.9920695 + ], + [ + 53.7105723, + 9.9921371 + ] + ] + }, + { + "osmId": "338475098", + "name": null, + "lengthMeters": 3852.1059961318365, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7667947, + 9.971677 + ], + [ + 53.7652644, + 9.9724006 + ], + [ + 53.764941, + 9.972552 + ], + [ + 53.7647487, + 9.9726449 + ], + [ + 53.7641894, + 9.9729017 + ], + [ + 53.7633914, + 9.9732681 + ], + [ + 53.7631829, + 9.973366 + ], + [ + 53.7620254, + 9.9739098 + ], + [ + 53.7614477, + 9.9741858 + ], + [ + 53.7607631, + 9.9745089 + ], + [ + 53.7603961, + 9.9746822 + ], + [ + 53.7588969, + 9.9754088 + ], + [ + 53.7582152, + 9.9757963 + ], + [ + 53.7575555, + 9.9762658 + ], + [ + 53.7573736, + 9.9764157 + ], + [ + 53.7568979, + 9.976808 + ], + [ + 53.7562592, + 9.9774043 + ], + [ + 53.7552558, + 9.9784436 + ], + [ + 53.7542882, + 9.9794457 + ], + [ + 53.7542699, + 9.9794647 + ], + [ + 53.7542238, + 9.9795124 + ], + [ + 53.7541882, + 9.9795495 + ], + [ + 53.7541478, + 9.9795917 + ], + [ + 53.7541292, + 9.9796111 + ], + [ + 53.753724, + 9.9800339 + ], + [ + 53.7522694, + 9.9815547 + ], + [ + 53.7512606, + 9.9826094 + ], + [ + 53.7511356, + 9.9827383 + ], + [ + 53.7498807, + 9.9840327 + ], + [ + 53.7491726, + 9.9847609 + ], + [ + 53.7490781, + 9.9848581 + ], + [ + 53.7486845, + 9.9852174 + ], + [ + 53.7482627, + 9.9854897 + ], + [ + 53.7476524, + 9.9857333 + ], + [ + 53.7473243, + 9.985834 + ], + [ + 53.7469097, + 9.9859613 + ], + [ + 53.7460721, + 9.986236 + ], + [ + 53.7455808, + 9.9863939 + ], + [ + 53.7446439, + 9.9866973 + ], + [ + 53.7444496, + 9.9867626 + ], + [ + 53.7441899, + 9.9868495 + ], + [ + 53.7439523, + 9.9869293 + ], + [ + 53.7421456, + 9.9875339 + ], + [ + 53.7418789, + 9.9876232 + ], + [ + 53.7415229, + 9.9877423 + ], + [ + 53.7409213, + 9.9879436 + ], + [ + 53.7396809, + 9.9883677 + ], + [ + 53.7388404, + 9.988646 + ], + [ + 53.7375627, + 9.9890697 + ], + [ + 53.7374972, + 9.9890915 + ], + [ + 53.7374488, + 9.9891075 + ], + [ + 53.7368092, + 9.9893243 + ], + [ + 53.7355648, + 9.9897461 + ], + [ + 53.7352113, + 9.9897777 + ], + [ + 53.7350936, + 9.9897732 + ], + [ + 53.7348411, + 9.9897635 + ], + [ + 53.7342888, + 9.9897572 + ] + ] + }, + { + "osmId": "339137447", + "name": null, + "lengthMeters": 751.0476127087219, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6581513, + 9.7931419 + ], + [ + 53.6578772, + 9.7935261 + ], + [ + 53.6575502, + 9.7939834 + ], + [ + 53.6575366, + 9.7940024 + ], + [ + 53.6573284, + 9.7942935 + ], + [ + 53.6566251, + 9.7952779 + ], + [ + 53.6562819, + 9.7957493 + ], + [ + 53.6559512, + 9.7962036 + ], + [ + 53.6554563, + 9.796924 + ], + [ + 53.6552696, + 9.7971959 + ], + [ + 53.6552219, + 9.7972653 + ], + [ + 53.6546409, + 9.7981491 + ], + [ + 53.6542672, + 9.798738 + ], + [ + 53.6542436, + 9.7987743 + ], + [ + 53.6536496, + 9.7996942 + ], + [ + 53.6532786, + 9.8002568 + ], + [ + 53.6530466, + 9.8006005 + ] + ] + }, + { + "osmId": "339137448", + "name": null, + "lengthMeters": 649.1400615660826, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6531716, + 9.8005113 + ], + [ + 53.6534747, + 9.8000634 + ], + [ + 53.6537875, + 9.7995966 + ], + [ + 53.6540475, + 9.7992087 + ], + [ + 53.6543476, + 9.7987737 + ], + [ + 53.6544352, + 9.7986452 + ], + [ + 53.6546977, + 9.7982693 + ], + [ + 53.6550607, + 9.7977251 + ], + [ + 53.6553369, + 9.79732 + ], + [ + 53.6555199, + 9.7970515 + ], + [ + 53.6560086, + 9.7963346 + ], + [ + 53.6562142, + 9.7960271 + ], + [ + 53.6565101, + 9.7955907 + ], + [ + 53.6565863, + 9.7954794 + ], + [ + 53.6568002, + 9.7951673 + ], + [ + 53.6574111, + 9.7942823 + ], + [ + 53.6575762, + 9.7940466 + ] + ] + }, + { + "osmId": "339487375", + "name": null, + "lengthMeters": 691.4572381049201, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1359499, + 11.5966085 + ], + [ + 48.1361296, + 11.5959262 + ], + [ + 48.1365268, + 11.5946974 + ], + [ + 48.1368147, + 11.593933 + ], + [ + 48.1370063, + 11.5935058 + ], + [ + 48.1386185, + 11.5905167 + ], + [ + 48.1389587, + 11.5898645 + ], + [ + 48.13919, + 11.5894116 + ], + [ + 48.1394078, + 11.5889256 + ] + ] + }, + { + "osmId": "339487376", + "name": null, + "lengthMeters": 78.6498805393589, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1359017, + 11.5965844 + ], + [ + 48.1356846, + 11.5975931 + ] + ] + }, + { + "osmId": "339487377", + "name": null, + "lengthMeters": 2575.4077427033926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357177, + 11.6014935 + ], + [ + 48.1358374, + 11.602209 + ], + [ + 48.1358526, + 11.6022947 + ], + [ + 48.1359846, + 11.6028037 + ], + [ + 48.1361667, + 11.6034002 + ], + [ + 48.1364156, + 11.6039595 + ], + [ + 48.1367071, + 11.6044266 + ], + [ + 48.1370473, + 11.604865 + ], + [ + 48.1386762, + 11.606534 + ], + [ + 48.1392379, + 11.6071108 + ], + [ + 48.1398191, + 11.6077121 + ], + [ + 48.1399415, + 11.6078617 + ], + [ + 48.1400844, + 11.6080689 + ], + [ + 48.1402462, + 11.6083387 + ], + [ + 48.1406159, + 11.6090702 + ], + [ + 48.1408705, + 11.6096386 + ], + [ + 48.1411052, + 11.610238 + ], + [ + 48.1419047, + 11.6126718 + ], + [ + 48.1422243, + 11.6137932 + ], + [ + 48.1423163, + 11.6140718 + ], + [ + 48.1424215, + 11.6143218 + ], + [ + 48.1425509, + 11.6145719 + ], + [ + 48.1427501, + 11.6148664 + ], + [ + 48.1430084, + 11.6151779 + ], + [ + 48.1432282, + 11.6154369 + ], + [ + 48.1433459, + 11.6155698 + ], + [ + 48.1434646, + 11.615692 + ], + [ + 48.1435472, + 11.6157623 + ], + [ + 48.1436278, + 11.6158193 + ], + [ + 48.1437043, + 11.6158742 + ], + [ + 48.1438396, + 11.6159594 + ], + [ + 48.1439998, + 11.6160602 + ], + [ + 48.1441966, + 11.6161573 + ], + [ + 48.1443965, + 11.6162184 + ], + [ + 48.1453613, + 11.6164119 + ], + [ + 48.1471603, + 11.6165975 + ], + [ + 48.1474372, + 11.6165998 + ], + [ + 48.1483306, + 11.616619 + ], + [ + 48.1500153, + 11.6166631 + ], + [ + 48.1501747, + 11.6167093 + ], + [ + 48.1503312, + 11.6167752 + ], + [ + 48.1505905, + 11.6169063 + ], + [ + 48.1508584, + 11.6170754 + ], + [ + 48.1513023, + 11.6174451 + ], + [ + 48.1516574, + 11.6177989 + ], + [ + 48.1520733, + 11.6183026 + ], + [ + 48.152512, + 11.619057 + ], + [ + 48.152757, + 11.6194879 + ], + [ + 48.1529717, + 11.6199158 + ], + [ + 48.1530678, + 11.6201364 + ] + ] + }, + { + "osmId": "339487378", + "name": null, + "lengthMeters": 121.86110955361605, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357553, + 11.6014813 + ], + [ + 48.135688, + 11.600977 + ], + [ + 48.1356739, + 11.600706 + ], + [ + 48.1356604, + 11.6004467 + ], + [ + 48.1356417, + 11.5999881 + ], + [ + 48.1356367, + 11.5998518 + ] + ] + }, + { + "osmId": "339923599", + "name": null, + "lengthMeters": 183.72067646742437, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1394078, + 11.5889256 + ], + [ + 48.1397046, + 11.588165 + ], + [ + 48.1402344, + 11.5867818 + ] + ] + }, + { + "osmId": "339923604", + "name": null, + "lengthMeters": 184.08311542875924, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1400356, + 11.5865809 + ], + [ + 48.1395977, + 11.5877257 + ], + [ + 48.139207, + 11.5887286 + ] + ] + }, + { + "osmId": "339923610", + "name": null, + "lengthMeters": 275.31661349164597, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1402344, + 11.5867818 + ], + [ + 48.1404677, + 11.5861301 + ], + [ + 48.1407829, + 11.5852774 + ], + [ + 48.1410684, + 11.5844186 + ], + [ + 48.1413508, + 11.5834723 + ] + ] + }, + { + "osmId": "339923615", + "name": null, + "lengthMeters": 694.1626707758314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.139207, + 11.5887286 + ], + [ + 48.1387902, + 11.5897688 + ], + [ + 48.1385696, + 11.5902828 + ], + [ + 48.1383539, + 11.5907305 + ], + [ + 48.1369037, + 11.5934054 + ], + [ + 48.136707, + 11.5938273 + ], + [ + 48.136383, + 11.5947392 + ], + [ + 48.1360484, + 11.5958839 + ], + [ + 48.1359017, + 11.5965844 + ] + ] + }, + { + "osmId": "340492583", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 159.11127946597134, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5525828, + 10.0245729 + ], + [ + 53.5524829, + 10.0239846 + ], + [ + 53.5524145, + 10.023685 + ], + [ + 53.5523562, + 10.0234582 + ], + [ + 53.5522796, + 10.0231905 + ], + [ + 53.5522331, + 10.02305 + ], + [ + 53.5521968, + 10.0229486 + ], + [ + 53.552108, + 10.0227072 + ], + [ + 53.551982, + 10.022406 + ] + ] + }, + { + "osmId": "340492584", + "name": null, + "lengthMeters": 201.08286227307096, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5690749, + 9.9668554 + ], + [ + 53.5691411, + 9.9666684 + ], + [ + 53.5692488, + 9.9663099 + ], + [ + 53.5693263, + 9.9659975 + ], + [ + 53.5693442, + 9.9659035 + ], + [ + 53.5693622, + 9.9658135 + ], + [ + 53.5693976, + 9.9656151 + ], + [ + 53.569425, + 9.9654289 + ], + [ + 53.5694461, + 9.9652501 + ], + [ + 53.5694619, + 9.965065 + ], + [ + 53.5695378, + 9.9639471 + ] + ] + }, + { + "osmId": "340492587", + "name": null, + "lengthMeters": 751.5247647740434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5670634, + 9.9710816 + ], + [ + 53.5669486, + 9.9713389 + ], + [ + 53.566704, + 9.9718452 + ], + [ + 53.5664953, + 9.9722232 + ], + [ + 53.5661607, + 9.9727767 + ], + [ + 53.5660016, + 9.9730148 + ], + [ + 53.5658007, + 9.9732737 + ], + [ + 53.5654549, + 9.9736687 + ], + [ + 53.5652397, + 9.9738858 + ], + [ + 53.565022, + 9.9740837 + ], + [ + 53.5648323, + 9.974241 + ], + [ + 53.5646068, + 9.9744101 + ], + [ + 53.5643913, + 9.9745452 + ], + [ + 53.5641753, + 9.974661 + ], + [ + 53.5639717, + 9.9747606 + ], + [ + 53.5637708, + 9.9748343 + ], + [ + 53.5635946, + 9.974908 + ], + [ + 53.5634343, + 9.9749527 + ], + [ + 53.5630667, + 9.975041 + ], + [ + 53.5623737, + 9.9751347 + ], + [ + 53.5619911, + 9.9751888 + ], + [ + 53.5616409, + 9.9752367 + ], + [ + 53.5610988, + 9.9753104 + ] + ] + }, + { + "osmId": "340492589", + "name": null, + "lengthMeters": 123.25388697496584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5673383, + 9.9708488 + ], + [ + 53.5673571, + 9.9708058 + ], + [ + 53.5678301, + 9.9697187 + ], + [ + 53.5679935, + 9.9693433 + ] + ] + }, + { + "osmId": "340492590", + "name": null, + "lengthMeters": 155.20603431221596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.567891, + 9.969189 + ], + [ + 53.5675658, + 9.9699407 + ], + [ + 53.5672458, + 9.9706677 + ], + [ + 53.5670634, + 9.9710816 + ] + ] + }, + { + "osmId": "340492591", + "name": null, + "lengthMeters": 94.4390767005885, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5673344, + 9.9701318 + ], + [ + 53.5681834, + 9.9700931 + ] + ] + }, + { + "osmId": "340492592", + "name": null, + "lengthMeters": 105.93813305846827, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5656057, + 9.969428 + ], + [ + 53.5662566, + 9.9697278 + ], + [ + 53.5665298, + 9.9698136 + ] + ] + }, + { + "osmId": "340492593", + "name": null, + "lengthMeters": 88.53723461769907, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5673227, + 9.9698682 + ], + [ + 53.5667387, + 9.9698765 + ], + [ + 53.5665298, + 9.9698136 + ] + ] + }, + { + "osmId": "340492594", + "name": null, + "lengthMeters": 120.6129358873937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639305, + 9.9693983 + ], + [ + 53.5639634, + 9.969388 + ], + [ + 53.5645343, + 9.9692583 + ], + [ + 53.5647396, + 9.9692404 + ], + [ + 53.5649276, + 9.9692312 + ], + [ + 53.5649747, + 9.9692375 + ], + [ + 53.5650085, + 9.9692469 + ] + ] + }, + { + "osmId": "340492595", + "name": null, + "lengthMeters": 97.98036634681601, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5641432, + 9.9691906 + ], + [ + 53.5642268, + 9.9691713 + ], + [ + 53.5645264, + 9.9691063 + ], + [ + 53.5646481, + 9.9690913 + ], + [ + 53.5647392, + 9.9690908 + ], + [ + 53.5647736, + 9.969094 + ], + [ + 53.5648085, + 9.969102 + ], + [ + 53.5648401, + 9.9691101 + ], + [ + 53.5648799, + 9.9691247 + ], + [ + 53.5650152, + 9.9691798 + ] + ] + }, + { + "osmId": "340492596", + "name": null, + "lengthMeters": 198.4865543948964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5655971, + 9.9694814 + ], + [ + 53.5662482, + 9.969774 + ], + [ + 53.5665019, + 9.9698881 + ], + [ + 53.5667414, + 9.9699958 + ], + [ + 53.5668123, + 9.9700269 + ], + [ + 53.5668615, + 9.970045 + ], + [ + 53.5669174, + 9.9700661 + ], + [ + 53.566967, + 9.9700814 + ], + [ + 53.5670098, + 9.9700935 + ], + [ + 53.5670462, + 9.9701023 + ], + [ + 53.567088, + 9.9701142 + ], + [ + 53.5672061, + 9.9701288 + ], + [ + 53.5672683, + 9.9701321 + ], + [ + 53.5673344, + 9.9701318 + ] + ] + }, + { + "osmId": "341624258", + "name": null, + "lengthMeters": 241.78303395627742, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5484437, + 9.9870452 + ], + [ + 53.5484944, + 9.9870771 + ], + [ + 53.5485366, + 9.9871081 + ], + [ + 53.5485752, + 9.9871423 + ], + [ + 53.5486068, + 9.987174 + ], + [ + 53.5486395, + 9.9872108 + ], + [ + 53.5486656, + 9.9872435 + ], + [ + 53.5486928, + 9.9872807 + ], + [ + 53.5487224, + 9.987327 + ], + [ + 53.5487506, + 9.9873779 + ], + [ + 53.5487701, + 9.9874191 + ], + [ + 53.5487893, + 9.987465 + ], + [ + 53.548809, + 9.9875179 + ], + [ + 53.5488251, + 9.9875668 + ], + [ + 53.5488394, + 9.9876158 + ], + [ + 53.5488537, + 9.987672 + ], + [ + 53.5488659, + 9.9877283 + ], + [ + 53.5488751, + 9.9877809 + ], + [ + 53.5488826, + 9.9878324 + ], + [ + 53.5488886, + 9.9878849 + ], + [ + 53.5488932, + 9.9879389 + ], + [ + 53.5488964, + 9.9879987 + ], + [ + 53.5488975, + 9.9880599 + ], + [ + 53.5488973, + 9.98814 + ], + [ + 53.5488956, + 9.9882078 + ], + [ + 53.5488923, + 9.9882778 + ], + [ + 53.5488735, + 9.9885971 + ], + [ + 53.5488696, + 9.9887432 + ], + [ + 53.5488686, + 9.98883 + ], + [ + 53.5488698, + 9.9889083 + ], + [ + 53.5488741, + 9.9890103 + ], + [ + 53.5488809, + 9.989103 + ], + [ + 53.5488895, + 9.9891874 + ], + [ + 53.5488993, + 9.989262 + ], + [ + 53.5489109, + 9.9893363 + ], + [ + 53.5489251, + 9.9894141 + ], + [ + 53.5489407, + 9.9894888 + ], + [ + 53.5489564, + 9.9895553 + ], + [ + 53.5489738, + 9.9896213 + ], + [ + 53.5489881, + 9.9896711 + ], + [ + 53.5490094, + 9.9897405 + ], + [ + 53.549029, + 9.9898001 + ], + [ + 53.5490556, + 9.9898721 + ], + [ + 53.5490785, + 9.9899274 + ], + [ + 53.5491085, + 9.9899923 + ], + [ + 53.5491394, + 9.9900522 + ], + [ + 53.5492139, + 9.9901999 + ] + ] + }, + { + "osmId": "341624260", + "name": null, + "lengthMeters": 180.02962939274465, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5444857, + 9.9830085 + ], + [ + 53.544513, + 9.9830803 + ], + [ + 53.5446998, + 9.983538 + ], + [ + 53.544731, + 9.9836146 + ], + [ + 53.5448151, + 9.9838023 + ], + [ + 53.5449082, + 9.983974 + ], + [ + 53.5449859, + 9.9840911 + ], + [ + 53.5450846, + 9.9842116 + ], + [ + 53.5451601, + 9.984297 + ], + [ + 53.5452401, + 9.9843753 + ], + [ + 53.5456914, + 9.9847205 + ] + ] + }, + { + "osmId": "341624261", + "name": null, + "lengthMeters": 217.20180081273125, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5454568, + 9.9844819 + ], + [ + 53.5454135, + 9.9844468 + ], + [ + 53.5452546, + 9.9843138 + ], + [ + 53.5451038, + 9.984163 + ], + [ + 53.5450186, + 9.9840469 + ], + [ + 53.5449318, + 9.9839176 + ], + [ + 53.5448804, + 9.9838331 + ], + [ + 53.544831, + 9.9837353 + ], + [ + 53.5447637, + 9.983581 + ], + [ + 53.5445399, + 9.9830309 + ], + [ + 53.5445195, + 9.982979 + ], + [ + 53.5444171, + 9.982719 + ], + [ + 53.5443695, + 9.9825768 + ], + [ + 53.5443513, + 9.9825179 + ], + [ + 53.5443193, + 9.9823892 + ], + [ + 53.5442852, + 9.9822097 + ], + [ + 53.5442667, + 9.9820811 + ], + [ + 53.5442601, + 9.9820205 + ] + ] + }, + { + "osmId": "341624262", + "name": null, + "lengthMeters": 92.07197958855869, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5442601, + 9.9820205 + ], + [ + 53.5442299, + 9.9816533 + ], + [ + 53.5442275, + 9.9816295 + ], + [ + 53.5442207, + 9.9814038 + ], + [ + 53.5442178, + 9.9812932 + ], + [ + 53.5442196, + 9.9811741 + ], + [ + 53.5442249, + 9.9810319 + ], + [ + 53.5442279, + 9.9809503 + ], + [ + 53.5442574, + 9.9806356 + ] + ] + }, + { + "osmId": "341989083", + "name": null, + "lengthMeters": 88.1189489137473, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4765475, + 13.3493023 + ], + [ + 52.4759146, + 13.3485193 + ] + ] + }, + { + "osmId": "344073167", + "name": null, + "lengthMeters": 361.1027498326559, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4704215, + 13.4851725 + ], + [ + 52.4700428, + 13.4857748 + ], + [ + 52.4697317, + 13.4862656 + ], + [ + 52.4696795, + 13.4863486 + ], + [ + 52.4694638, + 13.4866884 + ], + [ + 52.4689663, + 13.4874756 + ], + [ + 52.4687449, + 13.4878441 + ], + [ + 52.4685106, + 13.4882372 + ], + [ + 52.4683262, + 13.4885458 + ], + [ + 52.4681388, + 13.4888525 + ], + [ + 52.4681042, + 13.4889066 + ] + ] + }, + { + "osmId": "344073168", + "name": null, + "lengthMeters": 283.86692741583806, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712609, + 13.483375 + ], + [ + 52.4713525, + 13.4829612 + ], + [ + 52.4713833, + 13.4827606 + ], + [ + 52.4713957, + 13.4826725 + ], + [ + 52.471428, + 13.4824014 + ], + [ + 52.4714527, + 13.4820777 + ], + [ + 52.4714622, + 13.4817801 + ], + [ + 52.4714582, + 13.4814279 + ], + [ + 52.4714276, + 13.4809451 + ], + [ + 52.4713868, + 13.4805784 + ], + [ + 52.4713024, + 13.4799152 + ], + [ + 52.4712945, + 13.4798536 + ], + [ + 52.4712151, + 13.479266 + ] + ] + }, + { + "osmId": "344523601", + "name": null, + "lengthMeters": 1034.8142914729733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4916969, + 10.0047039 + ], + [ + 53.4922121, + 10.0047954 + ], + [ + 53.4932663, + 10.0049839 + ], + [ + 53.4942989, + 10.005166 + ], + [ + 53.4956739, + 10.0054464 + ], + [ + 53.4957655, + 10.0054725 + ], + [ + 53.4966425, + 10.0056963 + ], + [ + 53.4971257, + 10.0058415 + ], + [ + 53.4979709, + 10.0061011 + ], + [ + 53.4985986, + 10.0062852 + ], + [ + 53.4990161, + 10.0064171 + ], + [ + 53.4995435, + 10.0065803 + ], + [ + 53.4995902, + 10.0065973 + ], + [ + 53.5008985, + 10.0069873 + ] + ] + }, + { + "osmId": "344523602", + "name": null, + "lengthMeters": 1283.1985806420394, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5015701, + 10.007736 + ], + [ + 53.5019446, + 10.007882 + ], + [ + 53.5027003, + 10.0081758 + ], + [ + 53.5035098, + 10.008466 + ], + [ + 53.5038645, + 10.0085694 + ], + [ + 53.5040955, + 10.0086334 + ], + [ + 53.504334, + 10.0086884 + ], + [ + 53.5045973, + 10.0087407 + ], + [ + 53.5048387, + 10.0087857 + ], + [ + 53.5050886, + 10.0088212 + ], + [ + 53.5053255, + 10.0088507 + ], + [ + 53.5058177, + 10.008888 + ], + [ + 53.5061769, + 10.0088981 + ], + [ + 53.5062989, + 10.0089023 + ], + [ + 53.5063043, + 10.0089025 + ], + [ + 53.5074821, + 10.0089391 + ], + [ + 53.5080493, + 10.0089526 + ], + [ + 53.5086233, + 10.0089643 + ], + [ + 53.5092633, + 10.0089688 + ], + [ + 53.5096032, + 10.0089653 + ], + [ + 53.5100645, + 10.0089321 + ], + [ + 53.5105088, + 10.0089007 + ], + [ + 53.5111222, + 10.0088882 + ], + [ + 53.511463, + 10.0088987 + ], + [ + 53.5118203, + 10.008936 + ], + [ + 53.5123715, + 10.0090379 + ], + [ + 53.5126972, + 10.0091162 + ], + [ + 53.5130332, + 10.0092068 + ] + ] + }, + { + "osmId": "345057723", + "name": null, + "lengthMeters": 161.31473055120824, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5291936, + 13.4590554 + ], + [ + 52.5293938, + 13.4599778 + ], + [ + 52.5294862, + 13.4603998 + ], + [ + 52.5295129, + 13.4605173 + ], + [ + 52.5295484, + 13.4606279 + ], + [ + 52.5295697, + 13.4606761 + ], + [ + 52.529589, + 13.4607151 + ], + [ + 52.5296172, + 13.4607621 + ], + [ + 52.5296472, + 13.460806 + ], + [ + 52.5296766, + 13.4608428 + ], + [ + 52.5296999, + 13.4608666 + ], + [ + 52.5297391, + 13.4609005 + ], + [ + 52.5297645, + 13.4609195 + ], + [ + 52.5297746, + 13.4609279 + ], + [ + 52.529843, + 13.4609828 + ], + [ + 52.5298951, + 13.4610267 + ] + ] + }, + { + "osmId": "345057727", + "name": null, + "lengthMeters": 841.2816023145214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5717387, + 13.5748198 + ], + [ + 52.5716746, + 13.5748385 + ], + [ + 52.5716104, + 13.5748605 + ], + [ + 52.5715331, + 13.5748863 + ], + [ + 52.571463, + 13.5749157 + ], + [ + 52.5710845, + 13.5751034 + ], + [ + 52.5705097, + 13.5753817 + ], + [ + 52.5703247, + 13.5754735 + ], + [ + 52.5701393, + 13.5755509 + ], + [ + 52.570054, + 13.5755782 + ], + [ + 52.5699567, + 13.5755968 + ], + [ + 52.5698509, + 13.5756059 + ], + [ + 52.5697434, + 13.5756099 + ], + [ + 52.5696386, + 13.5755992 + ], + [ + 52.5695697, + 13.5755871 + ], + [ + 52.5695321, + 13.5755791 + ], + [ + 52.5694286, + 13.5755506 + ], + [ + 52.5693096, + 13.5755041 + ], + [ + 52.5692152, + 13.5754555 + ], + [ + 52.569098, + 13.575384 + ], + [ + 52.5689277, + 13.575256 + ], + [ + 52.568438, + 13.574821 + ], + [ + 52.5679547, + 13.574395 + ], + [ + 52.5677124, + 13.5741769 + ], + [ + 52.5676374, + 13.5741108 + ], + [ + 52.5675688, + 13.5740502 + ], + [ + 52.5651346, + 13.5718953 + ], + [ + 52.5648276, + 13.5716263 + ] + ] + }, + { + "osmId": "345088360", + "name": "U1", + "lengthMeters": 117.19693865212619, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5048302, + 13.4487787 + ], + [ + 52.5046641, + 13.4486521 + ], + [ + 52.5044986, + 13.448528 + ], + [ + 52.5042405, + 13.4483209 + ], + [ + 52.5038766, + 13.4480414 + ] + ] + }, + { + "osmId": "345095783", + "name": "Berliner Stadtbahn", + "lengthMeters": 100.81832736034013, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122166, + 13.4248309 + ], + [ + 52.5122578, + 13.424657 + ], + [ + 52.5122611, + 13.4246439 + ], + [ + 52.512273, + 13.4245975 + ], + [ + 52.5123139, + 13.4244389 + ], + [ + 52.5124148, + 13.4241111 + ], + [ + 52.5125223, + 13.423838 + ], + [ + 52.5126595, + 13.4235398 + ] + ] + }, + { + "osmId": "345095784", + "name": "Berliner Stadtbahn", + "lengthMeters": 160.4453839486206, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51216, + 13.425751 + ], + [ + 52.5121827, + 13.4255015 + ], + [ + 52.5122273, + 13.4251636 + ], + [ + 52.5122555, + 13.4250016 + ], + [ + 52.5122929, + 13.4248107 + ], + [ + 52.5123191, + 13.4246934 + ], + [ + 52.5123258, + 13.4246676 + ], + [ + 52.5123689, + 13.4245024 + ], + [ + 52.5124675, + 13.424191 + ], + [ + 52.5125579, + 13.423949 + ], + [ + 52.5127161, + 13.4235988 + ] + ] + }, + { + "osmId": "345786741", + "name": null, + "lengthMeters": 330.4320185504767, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717365, + 9.9188078 + ], + [ + 53.4717514, + 9.9181329 + ], + [ + 53.4717781, + 9.9175638 + ], + [ + 53.4717873, + 9.917248 + ], + [ + 53.4717952, + 9.9166311 + ], + [ + 53.471815, + 9.9161873 + ], + [ + 53.4718447, + 9.9152621 + ], + [ + 53.4718481, + 9.9150068 + ], + [ + 53.4718501, + 9.9146624 + ], + [ + 53.4718583, + 9.9138208 + ] + ] + }, + { + "osmId": "346444754", + "name": null, + "lengthMeters": 365.2353387914182, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050656, + 13.4587781 + ], + [ + 52.5050906, + 13.4586062 + ], + [ + 52.5052387, + 13.4576169 + ], + [ + 52.5053389, + 13.4569875 + ], + [ + 52.5055975, + 13.455254 + ], + [ + 52.5058325, + 13.4539104 + ], + [ + 52.5058813, + 13.4536314 + ], + [ + 52.5058939, + 13.4535571 + ] + ] + }, + { + "osmId": "347473519", + "name": null, + "lengthMeters": 315.6416437839036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6681022, + 10.2336957 + ], + [ + 53.6682456, + 10.2340901 + ], + [ + 53.6683826, + 10.2344399 + ], + [ + 53.6684157, + 10.2345229 + ], + [ + 53.6686568, + 10.2351316 + ], + [ + 53.6689405, + 10.2358333 + ], + [ + 53.6690574, + 10.2361244 + ], + [ + 53.6693525, + 10.236859 + ], + [ + 53.6695133, + 10.237258 + ], + [ + 53.6695667, + 10.2373981 + ], + [ + 53.6696491, + 10.2376146 + ], + [ + 53.6696753, + 10.2376834 + ] + ] + }, + { + "osmId": "348415117", + "name": null, + "lengthMeters": 202.86769245508825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5132086, + 9.9111619 + ], + [ + 53.5130855, + 9.9109698 + ], + [ + 53.5129515, + 9.9108002 + ], + [ + 53.5127605, + 9.9106159 + ], + [ + 53.5126504, + 9.9105324 + ], + [ + 53.5126441, + 9.9105276 + ], + [ + 53.5125508, + 9.9104568 + ], + [ + 53.5123867, + 9.9103782 + ], + [ + 53.5121345, + 9.9103119 + ], + [ + 53.5119662, + 9.9102676 + ], + [ + 53.5117722, + 9.91025 + ], + [ + 53.5115242, + 9.9102474 + ] + ] + }, + { + "osmId": "349183914", + "name": "Stammstrecke", + "lengthMeters": 721.2880010178227, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1407943, + 11.5618644 + ], + [ + 48.1401586, + 11.5638812 + ], + [ + 48.1399853, + 11.5643739 + ], + [ + 48.1398699, + 11.5646764 + ], + [ + 48.1398462, + 11.5647386 + ], + [ + 48.1397092, + 11.5650598 + ], + [ + 48.1396586, + 11.5651608 + ], + [ + 48.1393929, + 11.5656712 + ], + [ + 48.139307, + 11.5658381 + ], + [ + 48.1391974, + 11.5660804 + ], + [ + 48.1390993, + 11.5663369 + ], + [ + 48.1390045, + 11.5666304 + ], + [ + 48.1388467, + 11.5671954 + ], + [ + 48.1386928, + 11.5678191 + ], + [ + 48.1385874, + 11.5683579 + ], + [ + 48.138477, + 11.5691156 + ], + [ + 48.138383, + 11.570164 + ], + [ + 48.1382971, + 11.5707097 + ] + ] + }, + { + "osmId": "349183915", + "name": "Stammstrecke", + "lengthMeters": 173.24564421814176, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1408568, + 11.5618922 + ], + [ + 48.1410442, + 11.5612167 + ], + [ + 48.1410651, + 11.5611415 + ], + [ + 48.1412099, + 11.5604897 + ], + [ + 48.1412644, + 11.5602443 + ], + [ + 48.1413859, + 11.5596976 + ] + ] + }, + { + "osmId": "349263623", + "name": null, + "lengthMeters": 441.4713392402752, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.34326, + 13.4134934 + ], + [ + 52.3428074, + 13.413571 + ], + [ + 52.3425378, + 13.4136339 + ], + [ + 52.3423638, + 13.4136873 + ], + [ + 52.3421043, + 13.4137759 + ], + [ + 52.3420011, + 13.4138197 + ], + [ + 52.341722, + 13.4139437 + ], + [ + 52.3414959, + 13.4140608 + ], + [ + 52.3411103, + 13.4142884 + ], + [ + 52.3407342, + 13.4145074 + ], + [ + 52.340566, + 13.4146078 + ], + [ + 52.3403983, + 13.4146981 + ], + [ + 52.3402387, + 13.4147829 + ], + [ + 52.3400874, + 13.4148552 + ], + [ + 52.3398331, + 13.4149756 + ], + [ + 52.3396538, + 13.4150446 + ], + [ + 52.3394313, + 13.4151316 + ] + ] + }, + { + "osmId": "349933509", + "name": null, + "lengthMeters": 179.34073435881305, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4108427, + 13.3825512 + ], + [ + 52.410728, + 13.382618 + ], + [ + 52.4103123, + 13.3828599 + ], + [ + 52.410179, + 13.3829328 + ], + [ + 52.4100904, + 13.3829826 + ], + [ + 52.409889, + 13.3830965 + ], + [ + 52.4096741, + 13.3832116 + ], + [ + 52.4094209, + 13.383355 + ], + [ + 52.4094028, + 13.3833652 + ], + [ + 52.4093171, + 13.3834085 + ] + ] + }, + { + "osmId": "349933510", + "name": null, + "lengthMeters": 233.59474381563751, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4092624, + 13.3834988 + ], + [ + 52.4093102, + 13.3834724 + ], + [ + 52.4095531, + 13.383338 + ], + [ + 52.4096808, + 13.3832687 + ], + [ + 52.4097773, + 13.3832163 + ], + [ + 52.4100023, + 13.3830923 + ], + [ + 52.4101843, + 13.3829884 + ], + [ + 52.4103492, + 13.3828973 + ], + [ + 52.4105911, + 13.382761 + ], + [ + 52.4106085, + 13.3827508 + ], + [ + 52.4112481, + 13.3823751 + ] + ] + }, + { + "osmId": "349933511", + "name": null, + "lengthMeters": 374.2716642304903, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4221761, + 13.375978 + ], + [ + 52.4230835, + 13.3754453 + ], + [ + 52.42345, + 13.3752326 + ], + [ + 52.4234545, + 13.3752304 + ], + [ + 52.4236573, + 13.3751101 + ], + [ + 52.4239047, + 13.3749633 + ], + [ + 52.4241987, + 13.3747908 + ], + [ + 52.4243835, + 13.3746791 + ], + [ + 52.4246235, + 13.3745339 + ], + [ + 52.4247316, + 13.3744663 + ], + [ + 52.4248163, + 13.3744132 + ], + [ + 52.4249046, + 13.3743568 + ], + [ + 52.4250231, + 13.3742787 + ], + [ + 52.4253346, + 13.3740721 + ] + ] + }, + { + "osmId": "349933512", + "name": null, + "lengthMeters": 303.7091890909753, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.419324, + 13.3775426 + ], + [ + 52.4189493, + 13.3777338 + ], + [ + 52.41862, + 13.3779091 + ], + [ + 52.4184401, + 13.3780104 + ], + [ + 52.417997, + 13.3782546 + ], + [ + 52.4175676, + 13.3785166 + ], + [ + 52.4169627, + 13.3788798 + ], + [ + 52.416746, + 13.3790186 + ] + ] + }, + { + "osmId": "349933513", + "name": null, + "lengthMeters": 342.4661481716924, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4112481, + 13.3823751 + ], + [ + 52.4121186, + 13.3818678 + ], + [ + 52.4141443, + 13.3806576 + ] + ] + }, + { + "osmId": "349933514", + "name": null, + "lengthMeters": 851.3926909698578, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4093171, + 13.3834085 + ], + [ + 52.4085808, + 13.3837828 + ], + [ + 52.4073437, + 13.3843911 + ], + [ + 52.407091, + 13.3845281 + ], + [ + 52.406756, + 13.3847053 + ], + [ + 52.4058539, + 13.3852035 + ], + [ + 52.4050512, + 13.38569 + ], + [ + 52.4047092, + 13.3858881 + ], + [ + 52.4041798, + 13.3861961 + ], + [ + 52.4037456, + 13.3864385 + ], + [ + 52.4033644, + 13.386641 + ], + [ + 52.4032908, + 13.3866812 + ], + [ + 52.4030102, + 13.3868284 + ], + [ + 52.4020461, + 13.3873343 + ] + ] + }, + { + "osmId": "350009319", + "name": null, + "lengthMeters": 174.74784312213725, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5459662, + 10.0072562 + ], + [ + 53.5449252, + 10.0068726 + ], + [ + 53.5447842, + 10.0068217 + ], + [ + 53.5446064, + 10.006768 + ], + [ + 53.5444271, + 10.0067259 + ] + ] + }, + { + "osmId": "350021694", + "name": null, + "lengthMeters": 201.9963139652453, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6420054, + 9.9494773 + ], + [ + 53.6420095, + 9.949474 + ], + [ + 53.6436406, + 9.9481425 + ] + ] + }, + { + "osmId": "350021699", + "name": null, + "lengthMeters": 202.7434225746473, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6420104, + 9.9495194 + ], + [ + 53.6420192, + 9.9495077 + ], + [ + 53.6436493, + 9.9481725 + ] + ] + }, + { + "osmId": "350021703", + "name": null, + "lengthMeters": 202.7331352138978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6420171, + 9.9495416 + ], + [ + 53.6420279, + 9.949538 + ], + [ + 53.643658, + 9.9482024 + ] + ] + }, + { + "osmId": "350594016", + "name": null, + "lengthMeters": 1046.1885265822052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1699738, + 11.5735766 + ], + [ + 48.1683499, + 11.5738079 + ], + [ + 48.1672933, + 11.573959 + ], + [ + 48.167237, + 11.5739648 + ], + [ + 48.167144, + 11.5739744 + ], + [ + 48.1670674, + 11.5739846 + ], + [ + 48.1669985, + 11.5739932 + ], + [ + 48.1666752, + 11.5740274 + ], + [ + 48.1659334, + 11.5741075 + ], + [ + 48.1650204, + 11.5742399 + ], + [ + 48.1647282, + 11.5742913 + ], + [ + 48.16452, + 11.5743384 + ], + [ + 48.164498, + 11.5743443 + ], + [ + 48.1643727, + 11.5743685 + ], + [ + 48.1636505, + 11.5745077 + ], + [ + 48.1635775, + 11.5745206 + ], + [ + 48.163465, + 11.5745393 + ], + [ + 48.1633811, + 11.574556 + ], + [ + 48.1625562, + 11.5747078 + ], + [ + 48.1624865, + 11.5747204 + ], + [ + 48.1624155, + 11.5747323 + ], + [ + 48.1618172, + 11.5748329 + ], + [ + 48.1611363, + 11.5749495 + ], + [ + 48.1606175, + 11.5750384 + ] + ] + }, + { + "osmId": "350601273", + "name": null, + "lengthMeters": 386.1279479673369, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4731547, + 9.8732754 + ], + [ + 53.473099, + 9.8741978 + ], + [ + 53.4730504, + 9.8751265 + ], + [ + 53.4730103, + 9.8759835 + ], + [ + 53.472991, + 9.8764499 + ], + [ + 53.4729559, + 9.8774464 + ], + [ + 53.4729547, + 9.8774813 + ], + [ + 53.4729385, + 9.877993 + ], + [ + 53.4729127, + 9.8789491 + ], + [ + 53.4729092, + 9.8790939 + ] + ] + }, + { + "osmId": "350601279", + "name": null, + "lengthMeters": 547.011686987887, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5440567, + 10.0256692 + ], + [ + 53.5428861, + 10.0265373 + ], + [ + 53.5426363, + 10.0266759 + ], + [ + 53.5423755, + 10.0267973 + ], + [ + 53.5421592, + 10.0268723 + ], + [ + 53.5418332, + 10.026947 + ], + [ + 53.5418053, + 10.0269517 + ], + [ + 53.5417996, + 10.0269522 + ], + [ + 53.5416244, + 10.0269737 + ], + [ + 53.5413819, + 10.0269826 + ], + [ + 53.541139, + 10.0269772 + ], + [ + 53.5408769, + 10.0269432 + ], + [ + 53.5405637, + 10.0268725 + ], + [ + 53.5402511, + 10.0267813 + ], + [ + 53.5393024, + 10.026478 + ] + ] + }, + { + "osmId": "350638989", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 83.36054893012292, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5031923, + 13.4671886 + ], + [ + 52.5032851, + 13.466797 + ], + [ + 52.5034479, + 13.466031 + ] + ] + }, + { + "osmId": "351086051", + "name": null, + "lengthMeters": 213.20152406427985, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.503725, + 13.4657124 + ], + [ + 52.5036798, + 13.4658714 + ], + [ + 52.5036271, + 13.4660453 + ], + [ + 52.5035716, + 13.4662091 + ], + [ + 52.503526, + 13.4663259 + ], + [ + 52.5034807, + 13.4664316 + ], + [ + 52.5034292, + 13.4665443 + ], + [ + 52.5033769, + 13.4666631 + ], + [ + 52.5033473, + 13.4667264 + ], + [ + 52.5032806, + 13.4668474 + ], + [ + 52.5032227, + 13.4669429 + ], + [ + 52.5031693, + 13.4670285 + ], + [ + 52.5031156, + 13.4671133 + ], + [ + 52.5030545, + 13.4672061 + ], + [ + 52.5029922, + 13.4672893 + ], + [ + 52.5029244, + 13.4673751 + ], + [ + 52.502849, + 13.4674663 + ], + [ + 52.5027826, + 13.4675403 + ], + [ + 52.5027204, + 13.4676023 + ], + [ + 52.5026279, + 13.4676838 + ], + [ + 52.5025391, + 13.4677574 + ], + [ + 52.5024609, + 13.4678186 + ], + [ + 52.5023928, + 13.4678668 + ] + ] + }, + { + "osmId": "351086052", + "name": null, + "lengthMeters": 195.35345971533516, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023928, + 13.4678668 + ], + [ + 52.5023326, + 13.4679072 + ], + [ + 52.5022736, + 13.4679444 + ], + [ + 52.5021559, + 13.4680105 + ], + [ + 52.5020672, + 13.4680529 + ], + [ + 52.5019759, + 13.4680872 + ], + [ + 52.5018922, + 13.4681096 + ], + [ + 52.5018252, + 13.4681275 + ], + [ + 52.5017281, + 13.4681488 + ], + [ + 52.5015626, + 13.4681696 + ], + [ + 52.5014947, + 13.4681721 + ], + [ + 52.5013206, + 13.4681673 + ], + [ + 52.5010157, + 13.4681301 + ], + [ + 52.5006642, + 13.468064 + ] + ] + }, + { + "osmId": "352154274", + "name": null, + "lengthMeters": 169.83038354466953, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5079289, + 10.0041891 + ], + [ + 53.5078246, + 10.0041582 + ], + [ + 53.5077552, + 10.0041373 + ], + [ + 53.5077003, + 10.0041208 + ], + [ + 53.5075916, + 10.0040709 + ], + [ + 53.5074766, + 10.0040181 + ], + [ + 53.507189, + 10.0037684 + ], + [ + 53.5070715, + 10.003672 + ], + [ + 53.5069746, + 10.003617 + ], + [ + 53.5068611, + 10.0035725 + ], + [ + 53.5067656, + 10.0035351 + ], + [ + 53.5064778, + 10.0034525 + ] + ] + }, + { + "osmId": "352165110", + "name": null, + "lengthMeters": 134.0857633138978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5019033, + 10.0072335 + ], + [ + 53.502073, + 10.007288 + ], + [ + 53.5026554, + 10.0074772 + ], + [ + 53.5030916, + 10.0075732 + ] + ] + }, + { + "osmId": "352165117", + "name": null, + "lengthMeters": 796.9934174207144, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5059886, + 10.0083932 + ], + [ + 53.5069377, + 10.0084591 + ], + [ + 53.5074607, + 10.0084525 + ], + [ + 53.508842, + 10.0084387 + ], + [ + 53.5091091, + 10.0084334 + ], + [ + 53.5099163, + 10.0084098 + ], + [ + 53.5099941, + 10.0084097 + ], + [ + 53.5103932, + 10.0084053 + ], + [ + 53.5104409, + 10.0084063 + ], + [ + 53.5107465, + 10.0084308 + ], + [ + 53.5111894, + 10.0084749 + ], + [ + 53.5116652, + 10.0085599 + ], + [ + 53.5117644, + 10.0085789 + ], + [ + 53.5124221, + 10.0087779 + ], + [ + 53.5131262, + 10.0090146 + ] + ] + }, + { + "osmId": "353180142", + "name": null, + "lengthMeters": 289.1935278667046, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1354285, + 11.6268216 + ], + [ + 48.1354388, + 11.6263998 + ], + [ + 48.1354783, + 11.6259829 + ], + [ + 48.1355583, + 11.625312 + ], + [ + 48.1355745, + 11.6251257 + ], + [ + 48.1355971, + 11.6248581 + ], + [ + 48.135611, + 11.624544 + ], + [ + 48.1356129, + 11.6241889 + ], + [ + 48.1355942, + 11.6237011 + ], + [ + 48.1355067, + 11.6229563 + ] + ] + }, + { + "osmId": "353180144", + "name": null, + "lengthMeters": 446.4658486771917, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1353874, + 11.6288662 + ], + [ + 48.1353963, + 11.6291522 + ], + [ + 48.1353966, + 11.6295278 + ], + [ + 48.1353883, + 11.6299717 + ], + [ + 48.1353697, + 11.6303955 + ], + [ + 48.1353338, + 11.6309139 + ], + [ + 48.1353179, + 11.6310827 + ], + [ + 48.1352212, + 11.6320526 + ], + [ + 48.135137, + 11.6329271 + ], + [ + 48.1351222, + 11.6331028 + ], + [ + 48.1350775, + 11.6336675 + ], + [ + 48.1350043, + 11.6345112 + ], + [ + 48.1349798, + 11.6348424 + ] + ] + }, + { + "osmId": "353180149", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 245.55313434598838, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1349489, + 11.6233175 + ], + [ + 48.1349756, + 11.6235233 + ], + [ + 48.1350762, + 11.6242736 + ], + [ + 48.13514, + 11.6249143 + ], + [ + 48.1351764, + 11.625338 + ], + [ + 48.1351959, + 11.6257554 + ], + [ + 48.1352075, + 11.6261348 + ], + [ + 48.1352137, + 11.6265955 + ] + ] + }, + { + "osmId": "353180150", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 2089.0749686355857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1266232, + 11.6603345 + ], + [ + 48.1267512, + 11.6599121 + ], + [ + 48.1268733, + 11.6595385 + ], + [ + 48.126974, + 11.6592605 + ], + [ + 48.1271289, + 11.6588715 + ], + [ + 48.1271514, + 11.6588183 + ], + [ + 48.1272668, + 11.6585461 + ], + [ + 48.1275631, + 11.6579023 + ], + [ + 48.1285807, + 11.6557849 + ], + [ + 48.1287317, + 11.6554706 + ], + [ + 48.1293917, + 11.6540988 + ], + [ + 48.1294624, + 11.6539526 + ], + [ + 48.1295463, + 11.6537794 + ], + [ + 48.1300215, + 11.6527866 + ], + [ + 48.130287, + 11.6522419 + ], + [ + 48.1305593, + 11.6516798 + ], + [ + 48.1307083, + 11.6513648 + ], + [ + 48.1307876, + 11.6511959 + ], + [ + 48.1310262, + 11.650629 + ], + [ + 48.1312484, + 11.6500873 + ], + [ + 48.1314382, + 11.6495613 + ], + [ + 48.1316482, + 11.6489503 + ], + [ + 48.1319325, + 11.6479454 + ], + [ + 48.1320638, + 11.6474225 + ], + [ + 48.1321835, + 11.6468853 + ], + [ + 48.1323972, + 11.6457933 + ], + [ + 48.1325256, + 11.6450584 + ], + [ + 48.132649, + 11.6443519 + ], + [ + 48.1327457, + 11.6437871 + ], + [ + 48.1328809, + 11.643005 + ], + [ + 48.1330406, + 11.6420726 + ], + [ + 48.133138, + 11.6414177 + ], + [ + 48.1332196, + 11.6406803 + ], + [ + 48.1333997, + 11.6389012 + ], + [ + 48.1336392, + 11.6364354 + ], + [ + 48.133661, + 11.6361665 + ], + [ + 48.1337654, + 11.6348786 + ] + ] + }, + { + "osmId": "353180151", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 2088.581016421467, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337317, + 11.634872 + ], + [ + 48.1336297, + 11.6361587 + ], + [ + 48.1336273, + 11.6361898 + ], + [ + 48.1336084, + 11.6364279 + ], + [ + 48.1333983, + 11.6385763 + ], + [ + 48.1333671, + 11.6388948 + ], + [ + 48.133184, + 11.6406646 + ], + [ + 48.1331003, + 11.6414069 + ], + [ + 48.1330037, + 11.6420492 + ], + [ + 48.1328416, + 11.6429718 + ], + [ + 48.1327061, + 11.6437749 + ], + [ + 48.1326108, + 11.6443403 + ], + [ + 48.1323573, + 11.6457764 + ], + [ + 48.1321483, + 11.6468661 + ], + [ + 48.1320309, + 11.6474019 + ], + [ + 48.1318976, + 11.6479217 + ], + [ + 48.1316156, + 11.6489238 + ], + [ + 48.1314089, + 11.6495397 + ], + [ + 48.1312124, + 11.6500617 + ], + [ + 48.1310045, + 11.6505904 + ], + [ + 48.1307578, + 11.6511695 + ], + [ + 48.1306782, + 11.6513366 + ], + [ + 48.1305307, + 11.6516436 + ], + [ + 48.1302625, + 11.6521998 + ], + [ + 48.1299893, + 11.6527642 + ], + [ + 48.1294293, + 11.6539201 + ], + [ + 48.1293214, + 11.6541494 + ], + [ + 48.1287047, + 11.6554319 + ], + [ + 48.1286684, + 11.6555072 + ], + [ + 48.1275288, + 11.6578733 + ], + [ + 48.1272341, + 11.6585112 + ], + [ + 48.1270948, + 11.6588291 + ], + [ + 48.1269346, + 11.6592321 + ], + [ + 48.1268369, + 11.6594997 + ], + [ + 48.1267097, + 11.6598822 + ], + [ + 48.1266868, + 11.6599592 + ], + [ + 48.1265812, + 11.6603143 + ] + ] + }, + { + "osmId": "353180152", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 439.37443773631, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343011, + 11.6290135 + ], + [ + 48.1342771, + 11.629254 + ], + [ + 48.1341107, + 11.6309212 + ], + [ + 48.1341052, + 11.6309767 + ], + [ + 48.1339905, + 11.6320773 + ], + [ + 48.1339299, + 11.6327058 + ], + [ + 48.1338482, + 11.6334924 + ], + [ + 48.1338178, + 11.6338529 + ], + [ + 48.1337317, + 11.634872 + ] + ] + }, + { + "osmId": "353180154", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 439.3118132773269, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343333, + 11.6290205 + ], + [ + 48.1343081, + 11.62927 + ], + [ + 48.1341347, + 11.6309839 + ], + [ + 48.1340227, + 11.6320844 + ], + [ + 48.1339601, + 11.6327162 + ], + [ + 48.1338848, + 11.6334972 + ], + [ + 48.1337654, + 11.6348786 + ] + ] + }, + { + "osmId": "353180157", + "name": null, + "lengthMeters": 89.18813728069615, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350719, + 11.6260999 + ], + [ + 48.1350922, + 11.6258646 + ], + [ + 48.1350957, + 11.6258104 + ], + [ + 48.1350998, + 11.6257471 + ], + [ + 48.1351099, + 11.6255415 + ], + [ + 48.1351123, + 11.6253851 + ], + [ + 48.1351062, + 11.6251438 + ], + [ + 48.135089, + 11.6249027 + ] + ] + }, + { + "osmId": "353729902", + "name": null, + "lengthMeters": 116.70924764536474, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521495, + 10.0063003 + ], + [ + 53.5520756, + 10.006333 + ], + [ + 53.552021, + 10.0063517 + ], + [ + 53.5520107, + 10.0063553 + ], + [ + 53.5516726, + 10.0064741 + ], + [ + 53.5516489, + 10.0064824 + ], + [ + 53.5513389, + 10.0065694 + ], + [ + 53.5511184, + 10.0066262 + ] + ] + }, + { + "osmId": "353735191", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 320.555237541746, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4622668, + 9.9932503 + ], + [ + 53.4623026, + 9.9932689 + ], + [ + 53.4623328, + 9.9932846 + ], + [ + 53.4627743, + 9.9935144 + ], + [ + 53.462906, + 9.9935837 + ], + [ + 53.463282, + 9.9937816 + ], + [ + 53.4645022, + 9.9943053 + ], + [ + 53.4646517, + 9.9943694 + ], + [ + 53.465047, + 9.9945234 + ] + ] + }, + { + "osmId": "353828936", + "name": null, + "lengthMeters": 204.87404920718637, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5511274, + 10.0067919 + ], + [ + 53.5509057, + 10.006837 + ], + [ + 53.5505726, + 10.0069047 + ], + [ + 53.5505297, + 10.0069114 + ], + [ + 53.5504497, + 10.006924 + ], + [ + 53.550106, + 10.0069804 + ], + [ + 53.5500747, + 10.0069855 + ], + [ + 53.5498641, + 10.0070217 + ], + [ + 53.5498195, + 10.0070335 + ], + [ + 53.5496587, + 10.0070761 + ], + [ + 53.5496237, + 10.007085 + ], + [ + 53.549299, + 10.0071679 + ] + ] + }, + { + "osmId": "355432105", + "name": null, + "lengthMeters": 139.58928258854914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5542307, + 10.005258 + ], + [ + 53.5539582, + 10.0054683 + ], + [ + 53.553911, + 10.0055061 + ], + [ + 53.5539044, + 10.0055108 + ], + [ + 53.5538884, + 10.0055221 + ], + [ + 53.5538819, + 10.0055277 + ], + [ + 53.55376, + 10.0056088 + ], + [ + 53.5536333, + 10.0056934 + ], + [ + 53.5535566, + 10.0057443 + ], + [ + 53.5534378, + 10.0058233 + ], + [ + 53.5531312, + 10.0059981 + ], + [ + 53.5530638, + 10.0060313 + ] + ] + }, + { + "osmId": "356053020", + "name": null, + "lengthMeters": 1023.2032722964415, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5129538, + 13.5031039 + ], + [ + 52.5130047, + 13.503266 + ], + [ + 52.513054, + 13.5034179 + ], + [ + 52.5132599, + 13.5041164 + ], + [ + 52.5133313, + 13.5043778 + ], + [ + 52.5134742, + 13.5049138 + ], + [ + 52.5135887, + 13.5053827 + ], + [ + 52.5136277, + 13.5055525 + ], + [ + 52.5136861, + 13.5058164 + ], + [ + 52.5137703, + 13.5062729 + ], + [ + 52.5138618, + 13.506838 + ], + [ + 52.5140691, + 13.5084533 + ], + [ + 52.5141222, + 13.508889 + ], + [ + 52.5142167, + 13.5098027 + ], + [ + 52.5142994, + 13.5109205 + ], + [ + 52.5143239, + 13.5113765 + ], + [ + 52.5143505, + 13.512101 + ], + [ + 52.5143636, + 13.5128126 + ], + [ + 52.5143651, + 13.5132493 + ], + [ + 52.5143596, + 13.5141465 + ], + [ + 52.514354, + 13.5144544 + ], + [ + 52.5143345, + 13.5154144 + ], + [ + 52.5142962, + 13.5171578 + ], + [ + 52.5142952, + 13.5172056 + ], + [ + 52.5142815, + 13.5178557 + ] + ] + }, + { + "osmId": "356101866", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 326.29989520947174, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354338, + 13.1920013 + ], + [ + 52.5356227, + 13.1907649 + ], + [ + 52.5358501, + 13.1893785 + ], + [ + 52.5360703, + 13.1880068 + ], + [ + 52.5361819, + 13.1873365 + ] + ] + }, + { + "osmId": "356309687", + "name": null, + "lengthMeters": 209.54293476388926, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5999052, + 9.8980848 + ], + [ + 53.6000651, + 9.8978086 + ], + [ + 53.6001264, + 9.8977134 + ], + [ + 53.6002139, + 9.8975732 + ], + [ + 53.6007241, + 9.8965828 + ], + [ + 53.6011665, + 9.8957279 + ] + ] + }, + { + "osmId": "356309688", + "name": null, + "lengthMeters": 319.3649505532936, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5992597, + 9.8993388 + ], + [ + 53.5999052, + 9.8980848 + ], + [ + 53.6006783, + 9.8965741 + ], + [ + 53.6008872, + 9.8961644 + ], + [ + 53.6011594, + 9.8957111 + ] + ] + }, + { + "osmId": "356323772", + "name": null, + "lengthMeters": 121.4436275927847, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5590558, + 9.9322706 + ], + [ + 53.5592663, + 9.9320349 + ], + [ + 53.5593682, + 9.9319361 + ], + [ + 53.5594651, + 9.9318537 + ], + [ + 53.5595635, + 9.9317772 + ], + [ + 53.5596088, + 9.931748 + ], + [ + 53.5597719, + 9.931663 + ], + [ + 53.5600515, + 9.9315651 + ] + ] + }, + { + "osmId": "356841093", + "name": null, + "lengthMeters": 221.71236561570714, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5024353, + 13.4679549 + ], + [ + 52.5025189, + 13.4679009 + ], + [ + 52.5025937, + 13.4678452 + ], + [ + 52.5026897, + 13.4677707 + ], + [ + 52.5027838, + 13.4676931 + ], + [ + 52.5028432, + 13.4676376 + ], + [ + 52.5029258, + 13.467557 + ], + [ + 52.5030092, + 13.4674668 + ], + [ + 52.5030838, + 13.4673783 + ], + [ + 52.503161, + 13.4672813 + ], + [ + 52.5032426, + 13.46717 + ], + [ + 52.5032905, + 13.4671014 + ], + [ + 52.5033525, + 13.4670083 + ], + [ + 52.5034202, + 13.4669008 + ], + [ + 52.5034964, + 13.4667658 + ], + [ + 52.5035508, + 13.4666611 + ], + [ + 52.5035927, + 13.4665761 + ], + [ + 52.5036463, + 13.4664629 + ], + [ + 52.5037601, + 13.4661946 + ], + [ + 52.5038289, + 13.4660155 + ], + [ + 52.5038964, + 13.46583 + ] + ] + }, + { + "osmId": "356855610", + "name": null, + "lengthMeters": 102.19958676628387, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5235524, + 10.0053821 + ], + [ + 53.5234351, + 10.006142 + ], + [ + 53.5234287, + 10.006176 + ], + [ + 53.5233642, + 10.0066085 + ], + [ + 53.5233607, + 10.0066295 + ], + [ + 53.523341, + 10.0067523 + ], + [ + 53.5233209, + 10.0068782 + ] + ] + }, + { + "osmId": "356855614", + "name": null, + "lengthMeters": 144.2906026364337, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5302853, + 9.9974658 + ], + [ + 53.5302732, + 9.9974848 + ], + [ + 53.5301935, + 9.9975928 + ], + [ + 53.5300995, + 9.9977031 + ], + [ + 53.5300064, + 9.997799 + ], + [ + 53.5299253, + 9.9978878 + ], + [ + 53.5298328, + 9.9979797 + ], + [ + 53.5297897, + 9.9980148 + ], + [ + 53.5296227, + 9.9981332 + ], + [ + 53.5295271, + 9.9982043 + ], + [ + 53.5291389, + 9.9984612 + ] + ] + }, + { + "osmId": "356855617", + "name": null, + "lengthMeters": 653.8283957417165, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5250749, + 9.9958411 + ], + [ + 53.5249792, + 9.9964648 + ], + [ + 53.5242602, + 10.0010705 + ], + [ + 53.5236899, + 10.0047955 + ], + [ + 53.5236342, + 10.0051402 + ], + [ + 53.5235901, + 10.0054115 + ] + ] + }, + { + "osmId": "357555812", + "name": null, + "lengthMeters": 302.8851849164891, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210017, + 13.3721867 + ], + [ + 52.5214604, + 13.3719251 + ], + [ + 52.5216375, + 13.3718184 + ], + [ + 52.5222658, + 13.3714148 + ], + [ + 52.523497, + 13.370559 + ], + [ + 52.523532, + 13.3705331 + ] + ] + }, + { + "osmId": "358211484", + "name": null, + "lengthMeters": 583.3627196111387, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1345791, + 11.390316 + ], + [ + 48.135038, + 11.3913323 + ], + [ + 48.1352692, + 11.391853 + ], + [ + 48.1353126, + 11.3919548 + ], + [ + 48.1354815, + 11.3923506 + ], + [ + 48.1355713, + 11.3925754 + ], + [ + 48.1356523, + 11.3927784 + ], + [ + 48.1357584, + 11.3930607 + ], + [ + 48.1359452, + 11.3935979 + ], + [ + 48.1360943, + 11.3940648 + ], + [ + 48.1361762, + 11.3943258 + ], + [ + 48.1361789, + 11.3943343 + ], + [ + 48.1361905, + 11.3943714 + ], + [ + 48.1365809, + 11.3956527 + ], + [ + 48.1367668, + 11.3962627 + ], + [ + 48.1370591, + 11.3972218 + ] + ] + }, + { + "osmId": "358211485", + "name": null, + "lengthMeters": 314.65189560352775, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1346092, + 11.3902797 + ], + [ + 48.1343699, + 11.389738 + ], + [ + 48.1343488, + 11.3896901 + ], + [ + 48.1341092, + 11.3891552 + ], + [ + 48.1338366, + 11.3885417 + ], + [ + 48.1334606, + 11.387699 + ], + [ + 48.1332325, + 11.3871898 + ], + [ + 48.1330591, + 11.3867957 + ], + [ + 48.1330391, + 11.3867523 + ] + ] + }, + { + "osmId": "359373375", + "name": null, + "lengthMeters": 109.94846953803358, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5562077, + 9.9357209 + ], + [ + 53.5565805, + 9.9357283 + ], + [ + 53.5568241, + 9.9357331 + ], + [ + 53.5568721, + 9.9357341 + ], + [ + 53.5571964, + 9.9357431 + ] + ] + }, + { + "osmId": "359373376", + "name": null, + "lengthMeters": 104.01029633120194, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.556349, + 9.9351109 + ], + [ + 53.5566203, + 9.9350957 + ], + [ + 53.5567322, + 9.9350772 + ], + [ + 53.5568558, + 9.9350405 + ], + [ + 53.5569606, + 9.935002 + ], + [ + 53.5570734, + 9.9349475 + ], + [ + 53.557262, + 9.9348287 + ] + ] + }, + { + "osmId": "359373378", + "name": "Verbindungsbahn", + "lengthMeters": 138.9085857913471, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5561959, + 9.9350225 + ], + [ + 53.556276, + 9.9350202 + ], + [ + 53.5564703, + 9.9350073 + ], + [ + 53.5566072, + 9.935002 + ], + [ + 53.556851, + 9.9349452 + ], + [ + 53.5570316, + 9.9348702 + ], + [ + 53.5572034, + 9.9347753 + ], + [ + 53.5574099, + 9.9346258 + ] + ] + }, + { + "osmId": "359645977", + "name": null, + "lengthMeters": 116.73357879500358, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2054638, + 11.4638931 + ], + [ + 48.2054778, + 11.463672 + ], + [ + 48.2054862, + 11.4632786 + ], + [ + 48.2054832, + 11.4630138 + ], + [ + 48.2054756, + 11.4627933 + ], + [ + 48.2054659, + 11.4625872 + ], + [ + 48.2054428, + 11.4623222 + ] + ] + }, + { + "osmId": "359770425", + "name": null, + "lengthMeters": 221.8086387760223, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339306, + 11.6334803 + ], + [ + 48.1338049, + 11.6348872 + ], + [ + 48.1337993, + 11.6349577 + ], + [ + 48.13375, + 11.6355929 + ], + [ + 48.1336814, + 11.6364457 + ] + ] + }, + { + "osmId": "359770429", + "name": null, + "lengthMeters": 412.550713052717, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135158, + 11.6331112 + ], + [ + 48.1351722, + 11.6329349 + ], + [ + 48.1352704, + 11.6319272 + ], + [ + 48.1353774, + 11.6308408 + ], + [ + 48.1354043, + 11.6305034 + ], + [ + 48.1354364, + 11.6299787 + ], + [ + 48.135464, + 11.6291496 + ], + [ + 48.1354683, + 11.6285798 + ], + [ + 48.1354535, + 11.6278582 + ], + [ + 48.1354448, + 11.6275819 + ] + ] + }, + { + "osmId": "359770434", + "name": null, + "lengthMeters": 911.6005008987266, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135089, + 11.6249027 + ], + [ + 48.1351262, + 11.625328 + ], + [ + 48.135152, + 11.6257565 + ], + [ + 48.1351655, + 11.6261376 + ], + [ + 48.135174, + 11.6266022 + ], + [ + 48.1351727, + 11.6269539 + ], + [ + 48.1351613, + 11.6278559 + ], + [ + 48.1351263, + 11.6293049 + ], + [ + 48.1351237, + 11.6294223 + ], + [ + 48.135097, + 11.6306287 + ], + [ + 48.1350676, + 11.6311645 + ], + [ + 48.1350201, + 11.6317513 + ], + [ + 48.1348862, + 11.6329237 + ], + [ + 48.1348055, + 11.6336502 + ], + [ + 48.1345923, + 11.6355075 + ], + [ + 48.1344751, + 11.6364632 + ], + [ + 48.134388, + 11.6370891 + ] + ] + }, + { + "osmId": "359770444", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 786.5118128021893, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1344219, + 11.6371027 + ], + [ + 48.1345106, + 11.6364755 + ], + [ + 48.1346281, + 11.6355152 + ], + [ + 48.1348406, + 11.6336582 + ], + [ + 48.1349223, + 11.6329374 + ], + [ + 48.1350544, + 11.6317543 + ], + [ + 48.1350983, + 11.631171 + ], + [ + 48.1351267, + 11.6306366 + ], + [ + 48.1351574, + 11.6294249 + ], + [ + 48.1351604, + 11.6293047 + ], + [ + 48.1351941, + 11.6278584 + ], + [ + 48.1352104, + 11.6269558 + ], + [ + 48.1352137, + 11.6265955 + ] + ] + }, + { + "osmId": "359770448", + "name": null, + "lengthMeters": 433.6337199958929, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1355485, + 11.6259526 + ], + [ + 48.1356248, + 11.626697 + ], + [ + 48.1356626, + 11.6272792 + ], + [ + 48.1356758, + 11.6277059 + ], + [ + 48.1356801, + 11.6280372 + ], + [ + 48.1356815, + 11.6281781 + ], + [ + 48.1356816, + 11.6281858 + ], + [ + 48.1356709, + 11.628806 + ], + [ + 48.1356544, + 11.6291468 + ], + [ + 48.1356349, + 11.6294199 + ], + [ + 48.1356126, + 11.6296864 + ], + [ + 48.1355886, + 11.6299621 + ], + [ + 48.1355253, + 11.6305382 + ], + [ + 48.1353727, + 11.6317478 + ] + ] + }, + { + "osmId": "359770482", + "name": null, + "lengthMeters": 766.874100769815, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347816, + 11.6291358 + ], + [ + 48.1346741, + 11.630197 + ], + [ + 48.1344131, + 11.6327719 + ], + [ + 48.1343283, + 11.6335709 + ], + [ + 48.1338268, + 11.6384164 + ], + [ + 48.1338253, + 11.6384315 + ], + [ + 48.1337659, + 11.6390268 + ], + [ + 48.1337401, + 11.6393509 + ] + ] + }, + { + "osmId": "359890571", + "name": null, + "lengthMeters": 969.2422274979409, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5650599, + 10.0363891 + ], + [ + 53.5650666, + 10.0364033 + ], + [ + 53.565204, + 10.0366952 + ], + [ + 53.5653813, + 10.0370902 + ], + [ + 53.565617, + 10.0376191 + ], + [ + 53.5661627, + 10.0388262 + ], + [ + 53.5662668, + 10.0390555 + ], + [ + 53.5663126, + 10.0391596 + ], + [ + 53.5664163, + 10.039431 + ], + [ + 53.5665238, + 10.0397172 + ], + [ + 53.566612, + 10.0399997 + ], + [ + 53.5666902, + 10.0403146 + ], + [ + 53.5667399, + 10.0405429 + ], + [ + 53.566795, + 10.0408144 + ], + [ + 53.5668361, + 10.0410451 + ], + [ + 53.566877, + 10.0413532 + ], + [ + 53.5669701, + 10.0421257 + ], + [ + 53.5671324, + 10.0434676 + ], + [ + 53.5673192, + 10.0453397 + ], + [ + 53.5673257, + 10.0454045 + ], + [ + 53.5673384, + 10.0454864 + ], + [ + 53.5673796, + 10.0456869 + ], + [ + 53.5676173, + 10.0467215 + ], + [ + 53.5677991, + 10.0475126 + ], + [ + 53.5678076, + 10.0475494 + ], + [ + 53.5678342, + 10.0476748 + ], + [ + 53.5678624, + 10.0478195 + ], + [ + 53.5681839, + 10.0494971 + ], + [ + 53.5682409, + 10.0498053 + ] + ] + }, + { + "osmId": "360588975", + "name": null, + "lengthMeters": 681.6185008473241, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196945, + 13.3730503 + ], + [ + 52.5191931, + 13.3732998 + ], + [ + 52.5188723, + 13.3734888 + ], + [ + 52.5186655, + 13.3736403 + ], + [ + 52.518501, + 13.3737785 + ], + [ + 52.5183457, + 13.3739211 + ], + [ + 52.5181466, + 13.3741317 + ], + [ + 52.5179301, + 13.3743962 + ], + [ + 52.5177608, + 13.3746395 + ], + [ + 52.5175997, + 13.3748921 + ], + [ + 52.5174744, + 13.3751196 + ], + [ + 52.5173518, + 13.3753591 + ], + [ + 52.5171149, + 13.3759092 + ], + [ + 52.5169888, + 13.3762676 + ], + [ + 52.5168797, + 13.3766318 + ], + [ + 52.5168142, + 13.3768778 + ], + [ + 52.5167561, + 13.3771337 + ], + [ + 52.516711, + 13.3773611 + ], + [ + 52.5166791, + 13.3775403 + ], + [ + 52.5166501, + 13.377722 + ], + [ + 52.5166066, + 13.3780908 + ], + [ + 52.5165571, + 13.3786111 + ], + [ + 52.5165246, + 13.3791372 + ], + [ + 52.5165031, + 13.3798485 + ], + [ + 52.5165024, + 13.3802734 + ], + [ + 52.5165052, + 13.3803582 + ], + [ + 52.5165117, + 13.3805523 + ] + ] + }, + { + "osmId": "360823513", + "name": null, + "lengthMeters": 1061.9051473776926, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5777791, + 9.9273909 + ], + [ + 53.578335, + 9.9269654 + ], + [ + 53.57896, + 9.9264845 + ], + [ + 53.579609, + 9.9259852 + ], + [ + 53.5808626, + 9.9250197 + ], + [ + 53.5812404, + 9.9247347 + ], + [ + 53.581634, + 9.9244379 + ], + [ + 53.5831941, + 9.9232412 + ], + [ + 53.5845419, + 9.9222094 + ], + [ + 53.5855374, + 9.9214417 + ], + [ + 53.5864712, + 9.9207276 + ] + ] + }, + { + "osmId": "361004696", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 93.95957731154087, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.599695, + 9.8982304 + ], + [ + 53.5993914, + 9.8988076 + ], + [ + 53.5992821, + 9.89904 + ], + [ + 53.5992712, + 9.8990652 + ], + [ + 53.5991579, + 9.8993281 + ] + ] + }, + { + "osmId": "361004697", + "name": null, + "lengthMeters": 384.9989468826311, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6020943, + 9.894035 + ], + [ + 53.6017788, + 9.8946437 + ], + [ + 53.6017774, + 9.8946465 + ], + [ + 53.6016965, + 9.8947922 + ], + [ + 53.6013834, + 9.8952755 + ], + [ + 53.601149, + 9.8956181 + ], + [ + 53.6008605, + 9.8960551 + ], + [ + 53.6006055, + 9.8965014 + ], + [ + 53.6003014, + 9.897072 + ], + [ + 53.600126, + 9.8974113 + ], + [ + 53.599695, + 9.8982304 + ] + ] + }, + { + "osmId": "361005060", + "name": null, + "lengthMeters": 89.52691030118643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6026207, + 9.8930084 + ], + [ + 53.6025701, + 9.8931025 + ], + [ + 53.6025673, + 9.8931082 + ], + [ + 53.6022687, + 9.8936984 + ], + [ + 53.6020943, + 9.894035 + ] + ] + }, + { + "osmId": "361178790", + "name": null, + "lengthMeters": 76.17578547255303, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281389, + 13.2755461 + ], + [ + 52.5282038, + 13.2766671 + ] + ] + }, + { + "osmId": "361178791", + "name": null, + "lengthMeters": 1175.7666036547537, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5282291, + 13.2771181 + ], + [ + 52.5282307, + 13.2771439 + ], + [ + 52.5282356, + 13.2772232 + ], + [ + 52.5282653, + 13.2777002 + ], + [ + 52.5284012, + 13.2798376 + ], + [ + 52.5284627, + 13.2808049 + ], + [ + 52.5285711, + 13.2824852 + ], + [ + 52.5286642, + 13.2839277 + ], + [ + 52.5287432, + 13.2851648 + ], + [ + 52.5288159, + 13.2863037 + ], + [ + 52.5289181, + 13.287905 + ], + [ + 52.5289606, + 13.2885604 + ], + [ + 52.5290544, + 13.2900078 + ], + [ + 52.5290682, + 13.2902202 + ], + [ + 52.5291638, + 13.2913095 + ], + [ + 52.5292272, + 13.2919273 + ], + [ + 52.5292359, + 13.2920126 + ], + [ + 52.5293208, + 13.2927666 + ], + [ + 52.5295129, + 13.2942509 + ], + [ + 52.5295268, + 13.294357 + ] + ] + }, + { + "osmId": "361372160", + "name": null, + "lengthMeters": 78.6815390326478, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2077608, + 11.4612774 + ], + [ + 48.2075047, + 11.4613807 + ], + [ + 48.2073388, + 11.46146 + ], + [ + 48.2070878, + 11.4616022 + ] + ] + }, + { + "osmId": "361372166", + "name": null, + "lengthMeters": 77.8564663141187, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2071841, + 11.4616047 + ], + [ + 48.207061, + 11.461683 + ], + [ + 48.2069216, + 11.4617851 + ], + [ + 48.2067542, + 11.461933 + ], + [ + 48.206647, + 11.4620366 + ], + [ + 48.2065739, + 11.4621143 + ] + ] + }, + { + "osmId": "361634732", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 239.02215259390297, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538834, + 10.0255632 + ], + [ + 53.5538293, + 10.0255345 + ], + [ + 53.5534841, + 10.0253532 + ], + [ + 53.5533727, + 10.0252862 + ], + [ + 53.5532308, + 10.0251912 + ], + [ + 53.553147, + 10.0251284 + ], + [ + 53.5530579, + 10.0250568 + ], + [ + 53.5529993, + 10.025005 + ], + [ + 53.5529219, + 10.0249317 + ], + [ + 53.5528536, + 10.0248627 + ], + [ + 53.5527996, + 10.0248018 + ], + [ + 53.5526754, + 10.0246512 + ], + [ + 53.5525271, + 10.024453 + ], + [ + 53.5524693, + 10.02437 + ], + [ + 53.5524121, + 10.0242825 + ], + [ + 53.5523268, + 10.0241387 + ], + [ + 53.5522589, + 10.024001 + ], + [ + 53.5521723, + 10.0238266 + ], + [ + 53.5521053, + 10.0236748 + ] + ] + }, + { + "osmId": "361634735", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 511.6365130755048, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5547784, + 10.0259255 + ], + [ + 53.555228, + 10.0260745 + ], + [ + 53.5554718, + 10.0261755 + ], + [ + 53.5555908, + 10.0262308 + ], + [ + 53.5556691, + 10.0262748 + ], + [ + 53.5558897, + 10.0264149 + ], + [ + 53.5560879, + 10.0265712 + ], + [ + 53.5562611, + 10.0267389 + ], + [ + 53.5563743, + 10.0268659 + ], + [ + 53.5565553, + 10.0270738 + ], + [ + 53.5566894, + 10.027252 + ], + [ + 53.5568591, + 10.0275096 + ], + [ + 53.5570393, + 10.0278348 + ], + [ + 53.5571276, + 10.0280089 + ], + [ + 53.5573187, + 10.0284441 + ], + [ + 53.5576228, + 10.0292014 + ], + [ + 53.5577769, + 10.0296026 + ], + [ + 53.5581067, + 10.0304447 + ], + [ + 53.5581781, + 10.0306264 + ] + ] + }, + { + "osmId": "362094899", + "name": null, + "lengthMeters": 6088.409673288274, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6964004, + 9.7159306 + ], + [ + 53.6963507, + 9.7159883 + ], + [ + 53.6959201, + 9.7164883 + ], + [ + 53.6957997, + 9.7166281 + ], + [ + 53.6950202, + 9.7176296 + ], + [ + 53.6950131, + 9.7176386 + ], + [ + 53.6949398, + 9.7177313 + ], + [ + 53.694005, + 9.7190381 + ], + [ + 53.6936429, + 9.7195836 + ], + [ + 53.6933729, + 9.7200155 + ], + [ + 53.6927444, + 9.7210884 + ], + [ + 53.6921437, + 9.7222479 + ], + [ + 53.6907279, + 9.7252009 + ], + [ + 53.6905001, + 9.7257033 + ], + [ + 53.6901768, + 9.7264085 + ], + [ + 53.6897476, + 9.7273665 + ], + [ + 53.6896464, + 9.7276011 + ], + [ + 53.6895982, + 9.7277123 + ], + [ + 53.6892921, + 9.7284006 + ], + [ + 53.6880508, + 9.731225 + ], + [ + 53.687724, + 9.7319717 + ], + [ + 53.6858611, + 9.7362158 + ], + [ + 53.6850866, + 9.7379665 + ], + [ + 53.6841228, + 9.740176 + ], + [ + 53.6832428, + 9.7422054 + ], + [ + 53.6823427, + 9.7441014 + ], + [ + 53.6820603, + 9.7446996 + ], + [ + 53.6795479, + 9.7504864 + ], + [ + 53.6783732, + 9.7531894 + ], + [ + 53.6779971, + 9.7540662 + ], + [ + 53.6766097, + 9.757168 + ], + [ + 53.675254, + 9.7602365 + ], + [ + 53.6745756, + 9.7617758 + ], + [ + 53.6734634, + 9.7642993 + ], + [ + 53.6729959, + 9.7653739 + ], + [ + 53.6717284, + 9.7682878 + ], + [ + 53.6688196, + 9.7747473 + ], + [ + 53.6676714, + 9.7773222 + ], + [ + 53.6659566, + 9.7811674 + ], + [ + 53.6648008, + 9.7833315 + ], + [ + 53.6647305, + 9.7834632 + ], + [ + 53.6642927, + 9.7841146 + ], + [ + 53.6629855, + 9.7860594 + ], + [ + 53.6628363, + 9.7862769 + ], + [ + 53.6625019, + 9.7867645 + ], + [ + 53.6620219, + 9.7874733 + ] + ] + }, + { + "osmId": "362162704", + "name": null, + "lengthMeters": 81.5802580805991, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4942808, + 9.949394 + ], + [ + 53.4945919, + 9.9505109 + ] + ] + }, + { + "osmId": "362162707", + "name": null, + "lengthMeters": 81.54878659811527, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4942511, + 9.9494169 + ], + [ + 53.4945591, + 9.9505357 + ] + ] + }, + { + "osmId": "362162715", + "name": null, + "lengthMeters": 122.97161601765293, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4945919, + 9.9505109 + ], + [ + 53.4948343, + 9.9513864 + ], + [ + 53.4950561, + 9.9521982 + ] + ] + }, + { + "osmId": "362162718", + "name": null, + "lengthMeters": 123.09293282618981, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4945591, + 9.9505357 + ], + [ + 53.4947916, + 9.9513763 + ], + [ + 53.4950259, + 9.952223 + ] + ] + }, + { + "osmId": "362162720", + "name": null, + "lengthMeters": 84.18236824996761, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4950259, + 9.952223 + ], + [ + 53.4952863, + 9.953166 + ], + [ + 53.4953375, + 9.9533825 + ] + ] + }, + { + "osmId": "362162723", + "name": null, + "lengthMeters": 84.00034541219954, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4950561, + 9.9521982 + ], + [ + 53.4953062, + 9.9530896 + ], + [ + 53.49537, + 9.9533529 + ] + ] + }, + { + "osmId": "362648100", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 422.17466500086726, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3391563, + 13.3065305 + ], + [ + 52.3391566, + 13.3065235 + ], + [ + 52.3390737, + 13.3050262 + ], + [ + 52.3389806, + 13.3033014 + ], + [ + 52.3389398, + 13.3026218 + ], + [ + 52.3389032, + 13.3021177 + ], + [ + 52.3388546, + 13.3015544 + ], + [ + 52.3388021, + 13.3010222 + ], + [ + 52.338767, + 13.300696 + ], + [ + 52.3387269, + 13.30036 + ] + ] + }, + { + "osmId": "362648105", + "name": null, + "lengthMeters": 1015.1668653395988, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3488615, + 13.2840155 + ], + [ + 52.348551, + 13.2838829 + ], + [ + 52.3483943, + 13.2838185 + ], + [ + 52.3476708, + 13.2835213 + ], + [ + 52.3473473, + 13.2833935 + ], + [ + 52.3464677, + 13.2830352 + ], + [ + 52.3456936, + 13.2827202 + ], + [ + 52.3454425, + 13.2826186 + ], + [ + 52.3441147, + 13.2820808 + ], + [ + 52.3438512, + 13.2819792 + ], + [ + 52.3429066, + 13.2816177 + ], + [ + 52.3426049, + 13.2815011 + ], + [ + 52.3410339, + 13.280898 + ], + [ + 52.3407973, + 13.2808108 + ], + [ + 52.3406159, + 13.280747 + ], + [ + 52.3404697, + 13.280708 + ], + [ + 52.3403389, + 13.2806793 + ], + [ + 52.3402545, + 13.2806608 + ], + [ + 52.3401752, + 13.2806485 + ], + [ + 52.3400953, + 13.2806361 + ], + [ + 52.3399753, + 13.2806243 + ] + ] + }, + { + "osmId": "362770804", + "name": null, + "lengthMeters": 617.4782307655968, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1327478, + 11.6127949 + ], + [ + 48.1328206, + 11.6129176 + ], + [ + 48.1329141, + 11.6130858 + ], + [ + 48.1332379, + 11.6137504 + ], + [ + 48.133556, + 11.61451 + ], + [ + 48.1337345, + 11.6150557 + ], + [ + 48.1338243, + 11.6153614 + ], + [ + 48.1339534, + 11.6158818 + ], + [ + 48.1341273, + 11.6166953 + ], + [ + 48.1342641, + 11.6174435 + ], + [ + 48.1344695, + 11.6185862 + ], + [ + 48.1346345, + 11.6195245 + ], + [ + 48.1346895, + 11.6198598 + ], + [ + 48.1347392, + 11.6201998 + ], + [ + 48.1347692, + 11.6204396 + ] + ] + }, + { + "osmId": "362770805", + "name": null, + "lengthMeters": 763.8946535566859, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1348639, + 11.6223656 + ], + [ + 48.1348786, + 11.6218603 + ], + [ + 48.1348775, + 11.6215762 + ], + [ + 48.1348705, + 11.6213299 + ], + [ + 48.1348566, + 11.6210566 + ], + [ + 48.1348368, + 11.6207619 + ], + [ + 48.134775, + 11.62019 + ], + [ + 48.1347255, + 11.6198512 + ], + [ + 48.1346701, + 11.6195126 + ], + [ + 48.1345054, + 11.6185809 + ], + [ + 48.1343002, + 11.6174332 + ], + [ + 48.1341631, + 11.6166965 + ], + [ + 48.1339761, + 11.6158148 + ], + [ + 48.1338577, + 11.6153434 + ], + [ + 48.1337651, + 11.6150303 + ], + [ + 48.1335852, + 11.6144839 + ], + [ + 48.1332536, + 11.613664 + ], + [ + 48.1328453, + 11.612886 + ], + [ + 48.1327731, + 11.6127596 + ] + ] + }, + { + "osmId": "362770806", + "name": null, + "lengthMeters": 316.86283671458045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1328653, + 11.612651 + ], + [ + 48.1330755, + 11.6130245 + ], + [ + 48.1331601, + 11.6131842 + ], + [ + 48.1332367, + 11.6133369 + ], + [ + 48.1333098, + 11.6134897 + ], + [ + 48.1333919, + 11.6136702 + ], + [ + 48.1335005, + 11.6139187 + ], + [ + 48.1336204, + 11.6142153 + ], + [ + 48.1336968, + 11.6144218 + ], + [ + 48.1337751, + 11.6146473 + ], + [ + 48.1338436, + 11.6148551 + ], + [ + 48.1339027, + 11.6150464 + ], + [ + 48.1339481, + 11.6151968 + ], + [ + 48.1340175, + 11.6154465 + ], + [ + 48.1341035, + 11.6157885 + ], + [ + 48.1341582, + 11.616042 + ], + [ + 48.1341911, + 11.6161997 + ], + [ + 48.1342078, + 11.6162775 + ], + [ + 48.1342242, + 11.6163628 + ] + ] + }, + { + "osmId": "362770807", + "name": null, + "lengthMeters": 467.61612982109, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1329821, + 11.6125112 + ], + [ + 48.1323633, + 11.6115798 + ], + [ + 48.1322487, + 11.6114056 + ], + [ + 48.1316759, + 11.6105392 + ], + [ + 48.131277, + 11.6099921 + ], + [ + 48.1310698, + 11.6097079 + ], + [ + 48.1307984, + 11.6093635 + ], + [ + 48.1306428, + 11.6091759 + ], + [ + 48.1302318, + 11.6086222 + ], + [ + 48.1299304, + 11.6081812 + ] + ] + }, + { + "osmId": "362770808", + "name": null, + "lengthMeters": 127.25121231484476, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1352662, + 11.6210416 + ], + [ + 48.1351651, + 11.6205068 + ], + [ + 48.1350575, + 11.6199856 + ], + [ + 48.1350025, + 11.6196884 + ], + [ + 48.1349512, + 11.6193933 + ] + ] + }, + { + "osmId": "362770809", + "name": null, + "lengthMeters": 379.12728718979827, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135115, + 11.6217236 + ], + [ + 48.1351531, + 11.6223955 + ], + [ + 48.135179, + 11.6231063 + ], + [ + 48.1352282, + 11.6244742 + ], + [ + 48.1352528, + 11.6251569 + ], + [ + 48.1352736, + 11.6257107 + ], + [ + 48.1353064, + 11.6265817 + ], + [ + 48.1353146, + 11.6268235 + ] + ] + }, + { + "osmId": "362770810", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 745.1553750247168, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347967, + 11.6222593 + ], + [ + 48.1346825, + 11.6214699 + ], + [ + 48.1345359, + 11.6204355 + ], + [ + 48.1344046, + 11.6194917 + ], + [ + 48.1341769, + 11.6179059 + ], + [ + 48.1340255, + 11.6168255 + ], + [ + 48.1339792, + 11.6165167 + ], + [ + 48.133948, + 11.6163209 + ], + [ + 48.1338891, + 11.6159898 + ], + [ + 48.1337525, + 11.6153879 + ], + [ + 48.1336552, + 11.6150486 + ], + [ + 48.1334916, + 11.614552 + ], + [ + 48.1333895, + 11.6142859 + ], + [ + 48.1332529, + 11.6139663 + ], + [ + 48.1330844, + 11.613599 + ], + [ + 48.13277, + 11.6130326 + ], + [ + 48.1326815, + 11.6128861 + ] + ] + }, + { + "osmId": "362770811", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 102.81855836468262, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1326815, + 11.6128861 + ], + [ + 48.1325006, + 11.6125867 + ], + [ + 48.1320275, + 11.6119077 + ] + ] + }, + { + "osmId": "362770812", + "name": null, + "lengthMeters": 98.37848150394473, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1325647, + 11.6128487 + ], + [ + 48.132692, + 11.6130428 + ], + [ + 48.1328825, + 11.6133556 + ], + [ + 48.1329915, + 11.6135401 + ], + [ + 48.1331552, + 11.6138351 + ] + ] + }, + { + "osmId": "362770813", + "name": null, + "lengthMeters": 321.755724437314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1344046, + 11.6165299 + ], + [ + 48.1343553, + 11.6162626 + ], + [ + 48.1342968, + 11.6159723 + ], + [ + 48.1342393, + 11.6157129 + ], + [ + 48.1341834, + 11.6154772 + ], + [ + 48.1341367, + 11.6153034 + ], + [ + 48.1341053, + 11.6151865 + ], + [ + 48.1339764, + 11.6147559 + ], + [ + 48.1339107, + 11.6145556 + ], + [ + 48.1338266, + 11.6143124 + ], + [ + 48.1336872, + 11.6139477 + ], + [ + 48.1336217, + 11.6137841 + ], + [ + 48.1334203, + 11.613358 + ], + [ + 48.1333341, + 11.6132003 + ], + [ + 48.1332337, + 11.6130282 + ], + [ + 48.1331653, + 11.612915 + ], + [ + 48.1330559, + 11.6127523 + ] + ] + }, + { + "osmId": "362770814", + "name": null, + "lengthMeters": 79.11793679918377, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1353267, + 11.6241421 + ], + [ + 48.1354531, + 11.6251913 + ] + ] + }, + { + "osmId": "362770816", + "name": null, + "lengthMeters": 224.637165455825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1351138, + 11.6211326 + ], + [ + 48.1351777, + 11.6218557 + ], + [ + 48.1352167, + 11.6225842 + ], + [ + 48.1352788, + 11.6235918 + ], + [ + 48.1353267, + 11.6241421 + ] + ] + }, + { + "osmId": "363231583", + "name": null, + "lengthMeters": 207.6366470762173, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318641, + 13.2075829 + ], + [ + 52.5318574, + 13.2076251 + ], + [ + 52.5318435, + 13.2077139 + ], + [ + 52.5318323, + 13.2077914 + ], + [ + 52.5317751, + 13.2081858 + ], + [ + 52.5317062, + 13.2086953 + ], + [ + 52.5315797, + 13.2096364 + ], + [ + 52.5314637, + 13.2105622 + ], + [ + 52.5314613, + 13.21058 + ] + ] + }, + { + "osmId": "363568384", + "name": null, + "lengthMeters": 444.45603573077636, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5300692, + 13.22265 + ], + [ + 52.5301151, + 13.2222963 + ], + [ + 52.5301671, + 13.2218979 + ], + [ + 52.5302385, + 13.2213438 + ], + [ + 52.5305368, + 13.218977 + ], + [ + 52.5306939, + 13.217819 + ], + [ + 52.5308843, + 13.2163257 + ], + [ + 52.5308977, + 13.2162223 + ] + ] + }, + { + "osmId": "363588104", + "name": null, + "lengthMeters": 648.3357027463961, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5533421, + 13.3988177 + ], + [ + 52.5527456, + 13.3989786 + ], + [ + 52.552427, + 13.3990562 + ], + [ + 52.5522572, + 13.3990948 + ], + [ + 52.5521034, + 13.3991326 + ], + [ + 52.5517999, + 13.3991748 + ], + [ + 52.5515397, + 13.3992088 + ], + [ + 52.5514105, + 13.3992 + ], + [ + 52.551218, + 13.3991739 + ], + [ + 52.5511808, + 13.3991689 + ], + [ + 52.5508561, + 13.3990572 + ], + [ + 52.5505187, + 13.3988793 + ], + [ + 52.5503662, + 13.3987673 + ], + [ + 52.5502116, + 13.3986325 + ], + [ + 52.5499276, + 13.3983241 + ], + [ + 52.5498717, + 13.3982634 + ], + [ + 52.5494983, + 13.3976953 + ], + [ + 52.5493194, + 13.3973075 + ], + [ + 52.549162, + 13.3968989 + ], + [ + 52.5490689, + 13.396573 + ], + [ + 52.5489846, + 13.3962406 + ], + [ + 52.5489476, + 13.3960422 + ], + [ + 52.5489047, + 13.3957731 + ], + [ + 52.548867, + 13.3955063 + ], + [ + 52.5488258, + 13.3951547 + ] + ] + }, + { + "osmId": "363588105", + "name": "Stettiner Bahn", + "lengthMeters": 156.32022366764727, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485148, + 13.385905 + ], + [ + 52.54833, + 13.3836132 + ] + ] + }, + { + "osmId": "363968533", + "name": null, + "lengthMeters": 1167.22415949994, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6535509, + 9.8001293 + ], + [ + 53.6531692, + 9.8006294 + ], + [ + 53.6527692, + 9.8012089 + ], + [ + 53.6524387, + 9.8017008 + ], + [ + 53.6520009, + 9.8023326 + ], + [ + 53.6518866, + 9.8025088 + ], + [ + 53.6504675, + 9.8045897 + ], + [ + 53.6501157, + 9.8051343 + ], + [ + 53.6474744, + 9.8090361 + ], + [ + 53.6468341, + 9.8099844 + ], + [ + 53.645653, + 9.8117918 + ] + ] + }, + { + "osmId": "363968537", + "name": null, + "lengthMeters": 163.72374676720358, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6535957, + 9.800185 + ], + [ + 53.6536031, + 9.8001738 + ], + [ + 53.6539943, + 9.7996553 + ], + [ + 53.6543305, + 9.7992354 + ], + [ + 53.6544704, + 9.7990408 + ], + [ + 53.6547453, + 9.7986346 + ] + ] + }, + { + "osmId": "364876843", + "name": null, + "lengthMeters": 183.8596084183786, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537296, + 10.0880347 + ], + [ + 53.5538731, + 10.0874286 + ], + [ + 53.5539719, + 10.0866971 + ], + [ + 53.5539868, + 10.0864305 + ], + [ + 53.5539895, + 10.0857059 + ], + [ + 53.5539997, + 10.0855788 + ], + [ + 53.5540205, + 10.0853211 + ] + ] + }, + { + "osmId": "364876844", + "name": null, + "lengthMeters": 181.5817333987454, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538773, + 10.0853397 + ], + [ + 53.5539207, + 10.0855434 + ], + [ + 53.5539435, + 10.0857059 + ], + [ + 53.5539489, + 10.0861822 + ], + [ + 53.5539326, + 10.0866812 + ], + [ + 53.5538744, + 10.0871118 + ], + [ + 53.5538271, + 10.0874172 + ], + [ + 53.5536998, + 10.0880119 + ] + ] + }, + { + "osmId": "364945847", + "name": null, + "lengthMeters": 226.3279409921002, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457217, + 11.441673 + ], + [ + 48.1469976, + 11.4424565 + ], + [ + 48.1472986, + 11.4426428 + ], + [ + 48.1475563, + 11.4428138 + ], + [ + 48.147601, + 11.4428442 + ] + ] + }, + { + "osmId": "364945852", + "name": null, + "lengthMeters": 226.82550626914926, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476138, + 11.4427989 + ], + [ + 48.1475705, + 11.442768 + ], + [ + 48.1473116, + 11.4425977 + ], + [ + 48.1470081, + 11.4424106 + ], + [ + 48.1457316, + 11.4416207 + ] + ] + }, + { + "osmId": "364945857", + "name": null, + "lengthMeters": 153.03090408672867, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1499431, + 11.445482 + ], + [ + 48.1497625, + 11.4451779 + ], + [ + 48.1496346, + 11.4449679 + ], + [ + 48.1494434, + 11.4446749 + ], + [ + 48.1492433, + 11.444398 + ], + [ + 48.1492047, + 11.4443471 + ], + [ + 48.1491091, + 11.444221 + ], + [ + 48.1489619, + 11.4440401 + ] + ] + }, + { + "osmId": "364945861", + "name": null, + "lengthMeters": 149.73729070231133, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1489552, + 11.4440973 + ], + [ + 48.1489808, + 11.4441291 + ], + [ + 48.1490847, + 11.4442581 + ], + [ + 48.1491845, + 11.4443857 + ], + [ + 48.1492226, + 11.4444344 + ], + [ + 48.14942, + 11.4447124 + ], + [ + 48.1496107, + 11.4450027 + ], + [ + 48.1497188, + 11.4451845 + ], + [ + 48.1499131, + 11.4455113 + ] + ] + }, + { + "osmId": "364945864", + "name": null, + "lengthMeters": 884.6962867059924, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1497487, + 11.4450378 + ], + [ + 48.1499806, + 11.4454453 + ], + [ + 48.1501935, + 11.445856 + ], + [ + 48.1504487, + 11.4464111 + ], + [ + 48.1505667, + 11.4466855 + ], + [ + 48.1506762, + 11.4469661 + ], + [ + 48.150851, + 11.4474471 + ], + [ + 48.1509721, + 11.4478212 + ], + [ + 48.1510424, + 11.4480676 + ], + [ + 48.1514583, + 11.4496357 + ], + [ + 48.151472, + 11.4496873 + ], + [ + 48.1514846, + 11.4497349 + ], + [ + 48.151766, + 11.4508246 + ], + [ + 48.1518658, + 11.4512406 + ], + [ + 48.151879, + 11.4512958 + ], + [ + 48.1519474, + 11.4515977 + ], + [ + 48.1519897, + 11.4518354 + ], + [ + 48.1520276, + 11.4520678 + ], + [ + 48.152069, + 11.4523556 + ], + [ + 48.1520982, + 11.4526363 + ], + [ + 48.1521181, + 11.4529495 + ], + [ + 48.152126, + 11.4532717 + ], + [ + 48.1521232, + 11.453549 + ], + [ + 48.1521159, + 11.4538094 + ], + [ + 48.1520921, + 11.4540972 + ], + [ + 48.1520623, + 11.4543576 + ], + [ + 48.1520062, + 11.4547466 + ], + [ + 48.151945, + 11.4551053 + ], + [ + 48.1518798, + 11.4553923 + ], + [ + 48.1518404, + 11.4555659 + ], + [ + 48.1517835, + 11.4557965 + ], + [ + 48.1517288, + 11.4560186 + ] + ] + }, + { + "osmId": "364945865", + "name": null, + "lengthMeters": 118.59940496174681, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1497977, + 11.4448717 + ], + [ + 48.1497559, + 11.444806 + ], + [ + 48.1495514, + 11.4445019 + ], + [ + 48.1493454, + 11.4442184 + ], + [ + 48.1493072, + 11.4441676 + ], + [ + 48.1492201, + 11.4440516 + ], + [ + 48.1490102, + 11.4437954 + ] + ] + }, + { + "osmId": "365057113", + "name": null, + "lengthMeters": 218.95963261722983, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1283619, + 11.3606966 + ], + [ + 48.1282594, + 11.3600869 + ], + [ + 48.1281955, + 11.3597211 + ], + [ + 48.1281416, + 11.3594447 + ], + [ + 48.1280915, + 11.3592062 + ], + [ + 48.1280454, + 11.3589864 + ], + [ + 48.127952, + 11.3586033 + ], + [ + 48.127845, + 11.3582175 + ], + [ + 48.127743, + 11.3579034 + ] + ] + }, + { + "osmId": "365057114", + "name": null, + "lengthMeters": 1567.4997636824994, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1291318, + 11.366238 + ], + [ + 48.1295913, + 11.3689829 + ], + [ + 48.1297118, + 11.3696707 + ], + [ + 48.1299374, + 11.3710038 + ], + [ + 48.1301125, + 11.3720631 + ], + [ + 48.1307815, + 11.3762902 + ], + [ + 48.1315575, + 11.3811869 + ], + [ + 48.1318195, + 11.3828039 + ], + [ + 48.1319169, + 11.383313 + ], + [ + 48.1320274, + 11.383822 + ], + [ + 48.1321388, + 11.3842668 + ], + [ + 48.1322524, + 11.3846752 + ], + [ + 48.1323771, + 11.3850891 + ], + [ + 48.1325102, + 11.3854987 + ], + [ + 48.1326981, + 11.3860273 + ], + [ + 48.1328433, + 11.386392 + ], + [ + 48.1328987, + 11.3865249 + ] + ] + }, + { + "osmId": "365057115", + "name": null, + "lengthMeters": 325.7089039853182, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1284539, + 11.3619686 + ], + [ + 48.1287835, + 11.3640503 + ], + [ + 48.1289328, + 11.3649883 + ], + [ + 48.1291318, + 11.366238 + ] + ] + }, + { + "osmId": "365057118", + "name": null, + "lengthMeters": 94.40235417924036, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1285406, + 11.36194 + ], + [ + 48.1284524, + 11.3612983 + ], + [ + 48.1283619, + 11.3606966 + ] + ] + }, + { + "osmId": "365057119", + "name": null, + "lengthMeters": 325.29173518931935, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1292169, + 11.3662042 + ], + [ + 48.1290199, + 11.3649642 + ], + [ + 48.1288691, + 11.3640153 + ], + [ + 48.1285406, + 11.36194 + ] + ] + }, + { + "osmId": "366000087", + "name": null, + "lengthMeters": 75.55289751629017, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6496841, + 10.0925463 + ], + [ + 53.6490371, + 10.0921962 + ] + ] + }, + { + "osmId": "366000088", + "name": null, + "lengthMeters": 79.08793535026653, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6503929, + 10.0930677 + ], + [ + 53.6497423, + 10.0925828 + ] + ] + }, + { + "osmId": "366092221", + "name": null, + "lengthMeters": 273.0749613053764, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5939429, + 10.0366962 + ], + [ + 53.5954785, + 10.0361553 + ], + [ + 53.5959016, + 10.0360175 + ], + [ + 53.5963494, + 10.0358716 + ] + ] + }, + { + "osmId": "366111992", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 515.19318874636, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5582065, + 10.0305971 + ], + [ + 53.5581487, + 10.0304526 + ], + [ + 53.5581335, + 10.0304147 + ], + [ + 53.5578035, + 10.0295742 + ], + [ + 53.5576465, + 10.0291731 + ], + [ + 53.557363, + 10.0284559 + ], + [ + 53.5573452, + 10.0284124 + ], + [ + 53.5571522, + 10.0279742 + ], + [ + 53.5570642, + 10.0277962 + ], + [ + 53.5568791, + 10.0274669 + ], + [ + 53.5567017, + 10.0271939 + ], + [ + 53.5565435, + 10.0269864 + ], + [ + 53.5563965, + 10.0268105 + ], + [ + 53.5562891, + 10.0266966 + ], + [ + 53.5561171, + 10.0265283 + ], + [ + 53.5560347, + 10.0264653 + ], + [ + 53.5557475, + 10.0262553 + ], + [ + 53.5556739, + 10.0262146 + ], + [ + 53.5555869, + 10.0261625 + ], + [ + 53.5554931, + 10.0261152 + ], + [ + 53.5553615, + 10.026055 + ], + [ + 53.5550401, + 10.0259488 + ], + [ + 53.5547823, + 10.0258667 + ] + ] + }, + { + "osmId": "366111993", + "name": null, + "lengthMeters": 537.3378007757332, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5581781, + 10.0306264 + ], + [ + 53.558505, + 10.031457 + ], + [ + 53.5591254, + 10.0330299 + ], + [ + 53.5595576, + 10.0341307 + ], + [ + 53.5596836, + 10.0344616 + ], + [ + 53.5601157, + 10.0355571 + ], + [ + 53.5603568, + 10.036177 + ], + [ + 53.5607948, + 10.0373283 + ], + [ + 53.5608323, + 10.0374247 + ] + ] + }, + { + "osmId": "366523266", + "name": null, + "lengthMeters": 292.5772587831584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1760268, + 11.6323466 + ], + [ + 48.1760059, + 11.6324927 + ], + [ + 48.1759655, + 11.6327027 + ], + [ + 48.1759247, + 11.6328786 + ], + [ + 48.1758806, + 11.6330442 + ], + [ + 48.1757941, + 11.6333554 + ], + [ + 48.1757028, + 11.6336604 + ], + [ + 48.1756054, + 11.6339643 + ], + [ + 48.1755026, + 11.6342636 + ], + [ + 48.1753619, + 11.6346558 + ], + [ + 48.1752785, + 11.6348692 + ], + [ + 48.1751849, + 11.6350907 + ], + [ + 48.1750515, + 11.63536 + ], + [ + 48.1749812, + 11.6354857 + ], + [ + 48.1749258, + 11.635579 + ], + [ + 48.1747847, + 11.6357751 + ] + ] + }, + { + "osmId": "366746955", + "name": "Niederelbebahn", + "lengthMeters": 259.6635786027023, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4747261, + 9.8376652 + ], + [ + 53.4747487, + 9.8370417 + ], + [ + 53.4747619, + 9.8366777 + ], + [ + 53.4747701, + 9.8364116 + ], + [ + 53.474773, + 9.8363189 + ], + [ + 53.4748022, + 9.8353684 + ], + [ + 53.4748156, + 9.8347703 + ], + [ + 53.4748226, + 9.8344133 + ], + [ + 53.4748357, + 9.8337462 + ] + ] + }, + { + "osmId": "366746958", + "name": "Niederelbebahn", + "lengthMeters": 920.8371405517162, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4748074, + 9.8363853 + ], + [ + 53.4748455, + 9.8351957 + ], + [ + 53.4748616, + 9.8344113 + ], + [ + 53.4748827, + 9.8333877 + ], + [ + 53.4748919, + 9.8330902 + ], + [ + 53.4749747, + 9.830402 + ], + [ + 53.474998, + 9.8297744 + ], + [ + 53.4750276, + 9.8289152 + ], + [ + 53.4750553, + 9.8280946 + ], + [ + 53.4750673, + 9.8275783 + ], + [ + 53.475075, + 9.8270611 + ], + [ + 53.4750769, + 9.8268434 + ], + [ + 53.4750795, + 9.8262992 + ], + [ + 53.4750753, + 9.8257548 + ], + [ + 53.4750678, + 9.8252338 + ], + [ + 53.475056, + 9.8247104 + ], + [ + 53.4750378, + 9.8241333 + ], + [ + 53.4750142, + 9.8235567 + ], + [ + 53.4749877, + 9.8230223 + ], + [ + 53.4749576, + 9.8224896 + ] + ] + }, + { + "osmId": "366747532", + "name": null, + "lengthMeters": 315.2807897797331, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4744259, + 9.8441929 + ], + [ + 53.47443, + 9.8440626 + ], + [ + 53.4744447, + 9.8436961 + ], + [ + 53.4744887, + 9.8425943 + ], + [ + 53.4745068, + 9.8421194 + ], + [ + 53.4745653, + 9.8405848 + ], + [ + 53.4745922, + 9.8398809 + ], + [ + 53.4746086, + 9.8394389 + ] + ] + }, + { + "osmId": "366755980", + "name": null, + "lengthMeters": 76.12050408887808, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0992159, + 11.5223135 + ], + [ + 48.0992308, + 11.5222219 + ], + [ + 48.099247, + 11.5221411 + ], + [ + 48.099278, + 11.5220002 + ], + [ + 48.0993227, + 11.5218167 + ], + [ + 48.0993527, + 11.5216766 + ], + [ + 48.0993716, + 11.5215955 + ], + [ + 48.0993821, + 11.5215073 + ], + [ + 48.0993795, + 11.5214459 + ], + [ + 48.0993579, + 11.5213318 + ] + ] + }, + { + "osmId": "366755985", + "name": null, + "lengthMeters": 160.01841181324303, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0992374, + 11.522596 + ], + [ + 48.0992165, + 11.5224261 + ], + [ + 48.099216, + 11.5223317 + ], + [ + 48.0992159, + 11.5223135 + ], + [ + 48.0992155, + 11.5222328 + ], + [ + 48.0992212, + 11.5221332 + ], + [ + 48.099238, + 11.5220301 + ], + [ + 48.0993106, + 11.5217207 + ], + [ + 48.09934, + 11.5215963 + ], + [ + 48.0993569, + 11.5215184 + ], + [ + 48.0993621, + 11.5214593 + ], + [ + 48.0993627, + 11.5213884 + ], + [ + 48.0993579, + 11.5213318 + ], + [ + 48.0993353, + 11.521257 + ], + [ + 48.0993085, + 11.5212121 + ], + [ + 48.0992822, + 11.521183 + ], + [ + 48.0992486, + 11.5211593 + ], + [ + 48.0992102, + 11.5211397 + ], + [ + 48.0991744, + 11.5211389 + ], + [ + 48.0991308, + 11.5211452 + ], + [ + 48.0990934, + 11.5211696 + ], + [ + 48.0990556, + 11.5212129 + ], + [ + 48.099024, + 11.521268 + ], + [ + 48.0990066, + 11.5213346 + ], + [ + 48.0990014, + 11.5214073 + ], + [ + 48.0990054, + 11.5214839 + ] + ] + }, + { + "osmId": "366755986", + "name": null, + "lengthMeters": 501.3675578168116, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0991741, + 11.522262 + ], + [ + 48.0991237, + 11.5219903 + ], + [ + 48.099027, + 11.5214826 + ], + [ + 48.0990066, + 11.5213346 + ], + [ + 48.098998, + 11.5212721 + ], + [ + 48.0989675, + 11.5208457 + ], + [ + 48.098937, + 11.5199594 + ], + [ + 48.0989244, + 11.5196354 + ], + [ + 48.0989125, + 11.5194071 + ], + [ + 48.0989006, + 11.519249 + ], + [ + 48.098885, + 11.5191032 + ], + [ + 48.0988716, + 11.518984 + ], + [ + 48.0988181, + 11.5186266 + ], + [ + 48.0987809, + 11.5183895 + ], + [ + 48.0986842, + 11.5177693 + ], + [ + 48.0986143, + 11.5173172 + ], + [ + 48.0985355, + 11.516814 + ], + [ + 48.0984485, + 11.5162539 + ], + [ + 48.098386, + 11.5158391 + ], + [ + 48.0983612, + 11.5156414 + ] + ] + }, + { + "osmId": "366755987", + "name": null, + "lengthMeters": 501.97531807677285, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0983302, + 11.5156508 + ], + [ + 48.0983585, + 11.5158497 + ], + [ + 48.0983987, + 11.5161103 + ], + [ + 48.0984552, + 11.516471 + ], + [ + 48.098505, + 11.5168062 + ], + [ + 48.0985875, + 11.5173362 + ], + [ + 48.0986612, + 11.5178094 + ], + [ + 48.0987526, + 11.5183995 + ], + [ + 48.0987891, + 11.5186366 + ], + [ + 48.0988166, + 11.5188237 + ], + [ + 48.0988404, + 11.5189863 + ], + [ + 48.098856, + 11.5191076 + ], + [ + 48.0988709, + 11.5192568 + ], + [ + 48.0988828, + 11.5194094 + ], + [ + 48.0988961, + 11.5196365 + ], + [ + 48.098908, + 11.5199683 + ], + [ + 48.0989192, + 11.5203602 + ], + [ + 48.0989326, + 11.5206965 + ], + [ + 48.0989378, + 11.5208758 + ], + [ + 48.0989541, + 11.5210929 + ], + [ + 48.0989742, + 11.5212799 + ], + [ + 48.0990054, + 11.5214839 + ], + [ + 48.0990441, + 11.5217097 + ], + [ + 48.0991356, + 11.5221896 + ], + [ + 48.0991521, + 11.5222776 + ] + ] + }, + { + "osmId": "366760784", + "name": null, + "lengthMeters": 284.98359419822043, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2093723, + 11.5630797 + ], + [ + 48.2096097, + 11.5630459 + ], + [ + 48.2101419, + 11.5629712 + ], + [ + 48.2104619, + 11.5629271 + ], + [ + 48.2109818, + 11.5628555 + ], + [ + 48.2114512, + 11.5627889 + ], + [ + 48.211924, + 11.5627203 + ] + ] + }, + { + "osmId": "366788831", + "name": null, + "lengthMeters": 580.5824770210177, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4741835, + 9.8470413 + ], + [ + 53.4741038, + 9.8490646 + ], + [ + 53.4740577, + 9.8502466 + ], + [ + 53.474056, + 9.8502992 + ], + [ + 53.4740471, + 9.8505382 + ], + [ + 53.4740138, + 9.8514047 + ], + [ + 53.4739805, + 9.8522717 + ], + [ + 53.4739741, + 9.8524481 + ], + [ + 53.4739383, + 9.8533609 + ], + [ + 53.473931, + 9.8535704 + ], + [ + 53.4739273, + 9.8537224 + ], + [ + 53.4739175, + 9.8544129 + ], + [ + 53.4739059, + 9.8557996 + ] + ] + }, + { + "osmId": "366792544", + "name": null, + "lengthMeters": 3811.3009881443086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1521291, + 11.6138461 + ], + [ + 48.152135, + 11.6138629 + ], + [ + 48.1521559, + 11.6139278 + ], + [ + 48.1521964, + 11.6140177 + ], + [ + 48.1522326, + 11.6140754 + ], + [ + 48.1522665, + 11.6141204 + ], + [ + 48.1522973, + 11.6141567 + ], + [ + 48.1523246, + 11.614183 + ], + [ + 48.1523637, + 11.6142158 + ], + [ + 48.1523994, + 11.6142416 + ], + [ + 48.1526548, + 11.6144061 + ], + [ + 48.1527367, + 11.6144665 + ], + [ + 48.152773, + 11.6144972 + ], + [ + 48.1528065, + 11.6145294 + ], + [ + 48.1528503, + 11.6145807 + ], + [ + 48.1530018, + 11.6148215 + ], + [ + 48.1531033, + 11.6149587 + ], + [ + 48.1532039, + 11.6150881 + ], + [ + 48.1533146, + 11.6152215 + ], + [ + 48.1538297, + 11.6157049 + ], + [ + 48.1538744, + 11.6157584 + ], + [ + 48.1539013, + 11.6157993 + ], + [ + 48.1539263, + 11.6158478 + ], + [ + 48.1539467, + 11.6159074 + ], + [ + 48.1539602, + 11.6159566 + ], + [ + 48.1539709, + 11.6160801 + ], + [ + 48.1539669, + 11.6161503 + ], + [ + 48.1539563, + 11.6162137 + ], + [ + 48.1539178, + 11.61637 + ], + [ + 48.1537453, + 11.6169664 + ], + [ + 48.1536561, + 11.61731 + ], + [ + 48.1535933, + 11.6176673 + ], + [ + 48.1535722, + 11.6178015 + ], + [ + 48.1535497, + 11.6179973 + ], + [ + 48.1535373, + 11.6181313 + ], + [ + 48.1535282, + 11.6182629 + ], + [ + 48.1535219, + 11.6183953 + ], + [ + 48.1535168, + 11.6185845 + ], + [ + 48.1535193, + 11.6187898 + ], + [ + 48.153526, + 11.6189513 + ], + [ + 48.1535332, + 11.6190644 + ], + [ + 48.153621, + 11.6201576 + ], + [ + 48.1536572, + 11.620694 + ], + [ + 48.1536796, + 11.6212298 + ], + [ + 48.1536889, + 11.6214153 + ], + [ + 48.1536984, + 11.6215886 + ], + [ + 48.1537313, + 11.6225759 + ], + [ + 48.1537319, + 11.6229121 + ], + [ + 48.1537322, + 11.6232472 + ], + [ + 48.1537303, + 11.6234114 + ], + [ + 48.1537222, + 11.623836 + ], + [ + 48.153718, + 11.624019 + ], + [ + 48.1537091, + 11.6243444 + ], + [ + 48.1536308, + 11.6257169 + ], + [ + 48.1535732, + 11.6267914 + ], + [ + 48.1535636, + 11.6274675 + ], + [ + 48.1535628, + 11.6276244 + ], + [ + 48.1535615, + 11.6278869 + ], + [ + 48.1535578, + 11.628031 + ], + [ + 48.1535461, + 11.628279 + ], + [ + 48.1535115, + 11.6288982 + ], + [ + 48.1534952, + 11.629203 + ], + [ + 48.1535013, + 11.6292769 + ], + [ + 48.1535091, + 11.6293236 + ], + [ + 48.1535202, + 11.6293624 + ], + [ + 48.1535658, + 11.6294615 + ], + [ + 48.1535957, + 11.6295002 + ], + [ + 48.1536416, + 11.629542 + ], + [ + 48.1536825, + 11.6295636 + ], + [ + 48.1537147, + 11.6295722 + ], + [ + 48.1537406, + 11.6295797 + ], + [ + 48.1543629, + 11.6296418 + ], + [ + 48.1548878, + 11.6296937 + ], + [ + 48.1551664, + 11.6297121 + ], + [ + 48.1552732, + 11.6297188 + ], + [ + 48.1555742, + 11.6297173 + ], + [ + 48.1558201, + 11.6297023 + ], + [ + 48.156062, + 11.6296668 + ], + [ + 48.156289, + 11.6296277 + ], + [ + 48.1565138, + 11.6295655 + ], + [ + 48.1568341, + 11.6294371 + ], + [ + 48.1568843, + 11.6294175 + ], + [ + 48.1570522, + 11.6293467 + ], + [ + 48.1572242, + 11.62928 + ], + [ + 48.1575605, + 11.6291624 + ], + [ + 48.1579226, + 11.6290906 + ], + [ + 48.15829, + 11.6290359 + ], + [ + 48.1583163, + 11.6290334 + ], + [ + 48.1586157, + 11.6290126 + ], + [ + 48.1587877, + 11.6290087 + ], + [ + 48.1589419, + 11.6290094 + ], + [ + 48.1590535, + 11.6290144 + ], + [ + 48.1591538, + 11.6290197 + ], + [ + 48.1604527, + 11.6290897 + ], + [ + 48.1605594, + 11.6290966 + ], + [ + 48.1621059, + 11.6291942 + ], + [ + 48.1622218, + 11.6292015 + ], + [ + 48.1623488, + 11.629208 + ], + [ + 48.1626747, + 11.629228 + ], + [ + 48.1627534, + 11.6292318 + ], + [ + 48.1633186, + 11.6292648 + ], + [ + 48.1637683, + 11.6292911 + ], + [ + 48.1642174, + 11.6293171 + ], + [ + 48.1644428, + 11.6293421 + ], + [ + 48.1646683, + 11.629383 + ], + [ + 48.1649198, + 11.6294547 + ], + [ + 48.1651772, + 11.6295481 + ], + [ + 48.1652841, + 11.6295912 + ], + [ + 48.1654117, + 11.6296438 + ], + [ + 48.1656324, + 11.6297792 + ], + [ + 48.1656905, + 11.6298138 + ], + [ + 48.1658097, + 11.6298893 + ], + [ + 48.166181, + 11.6301802 + ], + [ + 48.1664276, + 11.6304339 + ], + [ + 48.1664805, + 11.6304941 + ], + [ + 48.1665303, + 11.6305507 + ], + [ + 48.1666497, + 11.6306936 + ], + [ + 48.1667061, + 11.6307621 + ], + [ + 48.1667595, + 11.6308313 + ], + [ + 48.1668663, + 11.6309823 + ], + [ + 48.1669625, + 11.6311247 + ], + [ + 48.1670557, + 11.6312778 + ], + [ + 48.1672543, + 11.6316353 + ], + [ + 48.1678623, + 11.6328269 + ], + [ + 48.1679448, + 11.6329749 + ], + [ + 48.1679954, + 11.633064 + ], + [ + 48.1680922, + 11.6332383 + ], + [ + 48.1682116, + 11.6334251 + ], + [ + 48.1683333, + 11.633602 + ], + [ + 48.1684835, + 11.6338087 + ], + [ + 48.1686387, + 11.6339871 + ], + [ + 48.1687835, + 11.6341359 + ], + [ + 48.1690556, + 11.634393 + ], + [ + 48.169094, + 11.6344286 + ], + [ + 48.1691949, + 11.6345222 + ], + [ + 48.1692745, + 11.6345961 + ], + [ + 48.169348, + 11.6346625 + ], + [ + 48.1693631, + 11.6346758 + ], + [ + 48.169706, + 11.6349762 + ], + [ + 48.1699469, + 11.6351944 + ], + [ + 48.1700955, + 11.6353256 + ], + [ + 48.1702873, + 11.635492 + ], + [ + 48.1705413, + 11.6356973 + ], + [ + 48.1707959, + 11.6358942 + ], + [ + 48.1712583, + 11.6361877 + ], + [ + 48.1714671, + 11.6363055 + ], + [ + 48.1716724, + 11.6364038 + ], + [ + 48.1718318, + 11.6364716 + ], + [ + 48.1720057, + 11.6365286 + ], + [ + 48.1721116, + 11.6365644 + ], + [ + 48.1722407, + 11.6366062 + ], + [ + 48.1723411, + 11.6366309 + ], + [ + 48.1725849, + 11.636676 + ], + [ + 48.1727062, + 11.6366935 + ], + [ + 48.172759, + 11.6366968 + ], + [ + 48.1730229, + 11.6367131 + ], + [ + 48.173297, + 11.6366931 + ], + [ + 48.1735628, + 11.636653 + ], + [ + 48.1737522, + 11.6365954 + ], + [ + 48.1739403, + 11.636519 + ], + [ + 48.1741711, + 11.6363883 + ], + [ + 48.1743425, + 11.636269 + ], + [ + 48.1745793, + 11.6360582 + ] + ] + }, + { + "osmId": "366919974", + "name": null, + "lengthMeters": 161.33040509391282, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6490371, + 10.0921962 + ], + [ + 53.6492386, + 10.0923231 + ], + [ + 53.6495777, + 10.0925394 + ], + [ + 53.6503929, + 10.0930677 + ] + ] + }, + { + "osmId": "367204220", + "name": "Stettiner Bahn", + "lengthMeters": 90.58303425481982, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6102223, + 13.4640483 + ], + [ + 52.6105305, + 13.4644103 + ], + [ + 52.6108365, + 13.4647793 + ], + [ + 52.6108815, + 13.4648364 + ] + ] + }, + { + "osmId": "367204221", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 88.56561417264837, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6006445, + 13.4681247 + ], + [ + 52.6009112, + 13.4677778 + ], + [ + 52.6011116, + 13.4675267 + ], + [ + 52.6012738, + 13.4673209 + ] + ] + }, + { + "osmId": "367204222", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1721.0103125206776, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5995378, + 13.4694511 + ], + [ + 52.5994831, + 13.4695231 + ], + [ + 52.5984168, + 13.4708914 + ], + [ + 52.5979819, + 13.4714496 + ], + [ + 52.5967052, + 13.4730782 + ], + [ + 52.5944738, + 13.4759244 + ], + [ + 52.5940248, + 13.4764972 + ], + [ + 52.5908952, + 13.4805985 + ], + [ + 52.5890597, + 13.4829331 + ], + [ + 52.5884764, + 13.4836644 + ], + [ + 52.5884518, + 13.4836953 + ], + [ + 52.5873269, + 13.4851056 + ] + ] + }, + { + "osmId": "367204223", + "name": null, + "lengthMeters": 104.9499225131866, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142662, + 13.5227826 + ], + [ + 52.5142599, + 13.5230821 + ], + [ + 52.5142319, + 13.5243325 + ] + ] + }, + { + "osmId": "367204225", + "name": null, + "lengthMeters": 283.2383428602002, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5143424, + 13.52133 + ], + [ + 52.5143713, + 13.5200402 + ], + [ + 52.5143877, + 13.5193051 + ], + [ + 52.5144305, + 13.5172381 + ], + [ + 52.5144324, + 13.5171638 + ], + [ + 52.5144328, + 13.517147 + ] + ] + }, + { + "osmId": "367204240", + "name": "Stettiner Bahn", + "lengthMeters": 225.96845191583128, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6191166, + 13.4739296 + ], + [ + 52.6186703, + 13.4734241 + ], + [ + 52.6181795, + 13.4728669 + ], + [ + 52.6179654, + 13.4726261 + ], + [ + 52.6178798, + 13.472531 + ], + [ + 52.6177119, + 13.4723465 + ], + [ + 52.6174382, + 13.4720425 + ] + ] + }, + { + "osmId": "367204241", + "name": "Stettiner Bahn", + "lengthMeters": 296.74789517584554, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6180318, + 13.4727802 + ], + [ + 52.6190988, + 13.4739996 + ], + [ + 52.6195668, + 13.4745082 + ], + [ + 52.6199096, + 13.4748802 + ], + [ + 52.6202428, + 13.4752413 + ] + ] + }, + { + "osmId": "367547653", + "name": "Ostbahn", + "lengthMeters": 329.2055636416182, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046157, + 13.463353 + ], + [ + 52.5046018, + 13.4634947 + ], + [ + 52.5045313, + 13.4642128 + ], + [ + 52.5044996, + 13.4645451 + ], + [ + 52.5044602, + 13.4648975 + ], + [ + 52.5044143, + 13.4652483 + ], + [ + 52.5043651, + 13.4655511 + ], + [ + 52.5043159, + 13.4658131 + ], + [ + 52.5042645, + 13.4660579 + ], + [ + 52.5041996, + 13.4663414 + ], + [ + 52.5040154, + 13.4670364 + ], + [ + 52.5039315, + 13.467348 + ], + [ + 52.5038535, + 13.467666 + ], + [ + 52.503778, + 13.4679916 + ] + ] + }, + { + "osmId": "367689097", + "name": null, + "lengthMeters": 100.8478214507556, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531486, + 13.3868164 + ], + [ + 52.5314738, + 13.3866839 + ], + [ + 52.531463, + 13.3865462 + ], + [ + 52.5314491, + 13.3864317 + ], + [ + 52.5314421, + 13.3863759 + ], + [ + 52.5314296, + 13.3862693 + ], + [ + 52.5313992, + 13.3861265 + ], + [ + 52.5313894, + 13.3860706 + ], + [ + 52.5313702, + 13.3859697 + ], + [ + 52.5312894, + 13.3856479 + ], + [ + 52.5312219, + 13.3853991 + ] + ] + }, + { + "osmId": "367727840", + "name": null, + "lengthMeters": 620.0878405309068, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4652913, + 9.9781188 + ], + [ + 53.4654553, + 9.9778035 + ], + [ + 53.4656366, + 9.9774859 + ], + [ + 53.4657602, + 9.977277 + ], + [ + 53.4659573, + 9.976939 + ], + [ + 53.4661483, + 9.9766253 + ], + [ + 53.4663679, + 9.9763106 + ], + [ + 53.4665067, + 9.9760942 + ], + [ + 53.4666322, + 9.9758899 + ], + [ + 53.4669518, + 9.9753477 + ], + [ + 53.4670719, + 9.9751808 + ], + [ + 53.4671069, + 9.9751362 + ], + [ + 53.4672221, + 9.9749891 + ], + [ + 53.4673402, + 9.9748443 + ], + [ + 53.467931, + 9.9741496 + ], + [ + 53.4687636, + 9.97316 + ], + [ + 53.4689573, + 9.972936 + ], + [ + 53.4691326, + 9.9727248 + ], + [ + 53.4691559, + 9.9726996 + ], + [ + 53.4691668, + 9.9726856 + ], + [ + 53.4695854, + 9.9721957 + ] + ] + }, + { + "osmId": "367727843", + "name": null, + "lengthMeters": 212.15791943079137, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5120743, + 9.9101727 + ], + [ + 53.5115242, + 9.9102474 + ], + [ + 53.5108758, + 9.910337 + ], + [ + 53.5106264, + 9.9103848 + ], + [ + 53.5103428, + 9.9104256 + ], + [ + 53.510238, + 9.9104553 + ], + [ + 53.5101753, + 9.910473 + ] + ] + }, + { + "osmId": "367727844", + "name": null, + "lengthMeters": 119.4117190140536, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5132513, + 9.9171804 + ], + [ + 53.5133456, + 9.9170249 + ], + [ + 53.5134399, + 9.9168694 + ], + [ + 53.5135922, + 9.9165604 + ], + [ + 53.5137082, + 9.9163226 + ], + [ + 53.5137939, + 9.9160995 + ], + [ + 53.5138065, + 9.9160668 + ], + [ + 53.513886, + 9.9157452 + ] + ] + }, + { + "osmId": "367729826", + "name": null, + "lengthMeters": 206.46888042711964, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5024546, + 13.2825006 + ], + [ + 52.5026442, + 13.2824293 + ], + [ + 52.5028411, + 13.2823689 + ], + [ + 52.5031182, + 13.2823035 + ], + [ + 52.5036832, + 13.2822195 + ], + [ + 52.5042973, + 13.2821728 + ] + ] + }, + { + "osmId": "367729827", + "name": null, + "lengthMeters": 111.4866007904573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018432, + 13.2827642 + ], + [ + 52.5015958, + 13.2829481 + ], + [ + 52.5009967, + 13.2834311 + ], + [ + 52.5009395, + 13.2834772 + ] + ] + }, + { + "osmId": "367842367", + "name": null, + "lengthMeters": 114.98820833778872, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0976555, + 11.5164921 + ], + [ + 48.0976104, + 11.5160473 + ], + [ + 48.0975778, + 11.5157391 + ], + [ + 48.0975449, + 11.5156013 + ], + [ + 48.0974575, + 11.5151721 + ], + [ + 48.0974216, + 11.5149884 + ] + ] + }, + { + "osmId": "368099136", + "name": null, + "lengthMeters": 161.2549375471556, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5315137, + 13.3873913 + ], + [ + 52.5315498, + 13.3877989 + ], + [ + 52.5315718, + 13.388072 + ], + [ + 52.5315844, + 13.3882394 + ], + [ + 52.5316284, + 13.3887351 + ], + [ + 52.5316609, + 13.3890801 + ], + [ + 52.5316976, + 13.3894856 + ], + [ + 52.5317265, + 13.3897492 + ] + ] + }, + { + "osmId": "368629677", + "name": "Stettiner Bahn", + "lengthMeters": 227.32138600513096, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5963577, + 13.4490751 + ], + [ + 52.597537, + 13.4503499 + ], + [ + 52.5980641, + 13.4509286 + ] + ] + }, + { + "osmId": "368769076", + "name": null, + "lengthMeters": 196.91359145998084, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4591948, + 13.355932 + ], + [ + 52.4590483, + 13.35593 + ], + [ + 52.4587879, + 13.3559344 + ], + [ + 52.4574251, + 13.356027 + ] + ] + }, + { + "osmId": "368769077", + "name": null, + "lengthMeters": 199.18907025546122, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4591916, + 13.3560944 + ], + [ + 52.4590367, + 13.3560808 + ], + [ + 52.4588292, + 13.3560756 + ], + [ + 52.4585183, + 13.3560954 + ], + [ + 52.4582182, + 13.3561135 + ], + [ + 52.4580615, + 13.3561253 + ], + [ + 52.4574018, + 13.3561753 + ] + ] + }, + { + "osmId": "368769078", + "name": null, + "lengthMeters": 132.46916010687318, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4594383, + 13.356382 + ], + [ + 52.4598868, + 13.356476 + ], + [ + 52.4600241, + 13.3565117 + ], + [ + 52.460156, + 13.3565514 + ], + [ + 52.4602039, + 13.3565659 + ], + [ + 52.460321, + 13.356605 + ], + [ + 52.4604366, + 13.3566491 + ], + [ + 52.4605743, + 13.3567047 + ], + [ + 52.4606106, + 13.3567193 + ] + ] + }, + { + "osmId": "368769079", + "name": null, + "lengthMeters": 131.76063947863145, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4594788, + 13.3561901 + ], + [ + 52.4597237, + 13.3562361 + ], + [ + 52.4599172, + 13.3562837 + ], + [ + 52.4601381, + 13.3563472 + ], + [ + 52.460178, + 13.3563611 + ], + [ + 52.4603471, + 13.3564202 + ], + [ + 52.4603556, + 13.3564232 + ], + [ + 52.460598, + 13.3565221 + ], + [ + 52.460643, + 13.3565405 + ] + ] + }, + { + "osmId": "368769080", + "name": null, + "lengthMeters": 133.8070958120821, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4606513, + 13.3564712 + ], + [ + 52.4606055, + 13.3564525 + ], + [ + 52.4604542, + 13.3563908 + ], + [ + 52.4603597, + 13.356354 + ], + [ + 52.4603536, + 13.3563519 + ], + [ + 52.4601369, + 13.3562778 + ], + [ + 52.4599134, + 13.3562177 + ], + [ + 52.4596991, + 13.356168 + ], + [ + 52.4595833, + 13.3561451 + ], + [ + 52.4594678, + 13.3561274 + ] + ] + }, + { + "osmId": "368769081", + "name": null, + "lengthMeters": 270.65305869714484, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4606106, + 13.3567193 + ], + [ + 52.4609734, + 13.3568815 + ], + [ + 52.4615717, + 13.3571575 + ], + [ + 52.4621851, + 13.3574653 + ], + [ + 52.4625626, + 13.3576605 + ], + [ + 52.4628937, + 13.3578398 + ], + [ + 52.4629418, + 13.3578659 + ] + ] + }, + { + "osmId": "368769082", + "name": null, + "lengthMeters": 129.37874390297605, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4606306, + 13.3562756 + ], + [ + 52.4603931, + 13.3561816 + ], + [ + 52.4603752, + 13.3561752 + ], + [ + 52.460169, + 13.3561018 + ], + [ + 52.459942, + 13.3560389 + ], + [ + 52.4598546, + 13.3560161 + ], + [ + 52.4597141, + 13.3559883 + ], + [ + 52.4594854, + 13.3559535 + ] + ] + }, + { + "osmId": "368769083", + "name": null, + "lengthMeters": 271.08506009101364, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.460643, + 13.3565405 + ], + [ + 52.4608127, + 13.3566168 + ], + [ + 52.4610003, + 13.3567115 + ], + [ + 52.4616074, + 13.3570384 + ], + [ + 52.4619091, + 13.35721 + ], + [ + 52.4622097, + 13.3573887 + ], + [ + 52.4625718, + 13.3576304 + ], + [ + 52.4628953, + 13.3578363 + ], + [ + 52.4629418, + 13.3578659 + ] + ] + }, + { + "osmId": "369204331", + "name": null, + "lengthMeters": 89.07605134924694, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4670257, + 13.4906062 + ], + [ + 52.467074, + 13.4905338 + ], + [ + 52.4672288, + 13.4903045 + ], + [ + 52.4673684, + 13.490095 + ], + [ + 52.4676194, + 13.4897234 + ] + ] + }, + { + "osmId": "369204333", + "name": null, + "lengthMeters": 119.14768873951355, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4669402, + 13.4904009 + ], + [ + 52.4669193, + 13.4904335 + ], + [ + 52.4666885, + 13.4907875 + ], + [ + 52.4664615, + 13.4911458 + ], + [ + 52.4661681, + 13.4916203 + ] + ] + }, + { + "osmId": "369204334", + "name": null, + "lengthMeters": 118.62265256637481, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4670017, + 13.4905309 + ], + [ + 52.466976, + 13.4905631 + ], + [ + 52.4668696, + 13.4906933 + ], + [ + 52.4667077, + 13.4908856 + ], + [ + 52.4666595, + 13.4909445 + ], + [ + 52.4665224, + 13.491112 + ], + [ + 52.4664035, + 13.4912669 + ], + [ + 52.4663379, + 13.4913581 + ], + [ + 52.4662866, + 13.4914384 + ], + [ + 52.4662846, + 13.4914414 + ], + [ + 52.4662259, + 13.4915288 + ], + [ + 52.4661681, + 13.4916203 + ] + ] + }, + { + "osmId": "369204335", + "name": null, + "lengthMeters": 146.6642240125548, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4681335, + 13.4889513 + ], + [ + 52.4681696, + 13.4888943 + ], + [ + 52.4683813, + 13.4885535 + ], + [ + 52.4686224, + 13.4881482 + ], + [ + 52.4688797, + 13.487743 + ], + [ + 52.4690332, + 13.487502 + ], + [ + 52.4690433, + 13.4874867 + ], + [ + 52.469055, + 13.4874683 + ], + [ + 52.469076, + 13.487437 + ] + ] + }, + { + "osmId": "369511440", + "name": null, + "lengthMeters": 189.91387758038152, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5147656, + 10.0841068 + ], + [ + 53.5147536, + 10.0841262 + ], + [ + 53.5144848, + 10.0845608 + ], + [ + 53.5142821, + 10.0849307 + ], + [ + 53.5139058, + 10.0855315 + ], + [ + 53.5137258, + 10.0857486 + ], + [ + 53.5136156, + 10.085877 + ], + [ + 53.5135649, + 10.0859606 + ], + [ + 53.5135084, + 10.0860406 + ] + ] + }, + { + "osmId": "369585816", + "name": null, + "lengthMeters": 190.96427421497293, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0464827, + 11.6990483 + ], + [ + 48.0463759, + 11.6991802 + ], + [ + 48.0456174, + 11.6999792 + ], + [ + 48.0450865, + 11.7005432 + ] + ] + }, + { + "osmId": "370014694", + "name": null, + "lengthMeters": 85.30773022555573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336549, + 11.5418678 + ], + [ + 48.1335784, + 11.5430116 + ] + ] + }, + { + "osmId": "370014695", + "name": null, + "lengthMeters": 122.79608055295571, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337704, + 11.5402222 + ], + [ + 48.1337152, + 11.5410435 + ], + [ + 48.1336686, + 11.5416805 + ], + [ + 48.1336549, + 11.5418678 + ] + ] + }, + { + "osmId": "370014696", + "name": null, + "lengthMeters": 122.85508281456012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337981, + 11.541894 + ], + [ + 48.1338113, + 11.5417002 + ], + [ + 48.1338556, + 11.541051 + ], + [ + 48.1339118, + 11.5402473 + ] + ] + }, + { + "osmId": "370014697", + "name": null, + "lengthMeters": 1414.2861864978927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339118, + 11.5402473 + ], + [ + 48.1339381, + 11.5397025 + ], + [ + 48.1339427, + 11.5393762 + ], + [ + 48.1339394, + 11.5390782 + ], + [ + 48.1339035, + 11.5380607 + ], + [ + 48.1338788, + 11.5363794 + ], + [ + 48.133867, + 11.5361139 + ], + [ + 48.1338463, + 11.5358661 + ], + [ + 48.1338069, + 11.5355623 + ], + [ + 48.1337597, + 11.5352432 + ], + [ + 48.1336645, + 11.5347266 + ], + [ + 48.133644, + 11.5346146 + ], + [ + 48.1336086, + 11.5343042 + ], + [ + 48.1335993, + 11.5341074 + ], + [ + 48.1335959, + 11.5338587 + ], + [ + 48.1335962, + 11.5323088 + ], + [ + 48.133594, + 11.5314096 + ], + [ + 48.133592, + 11.5307298 + ], + [ + 48.1336006, + 11.53034 + ], + [ + 48.1336195, + 11.5299777 + ], + [ + 48.1336503, + 11.5295602 + ], + [ + 48.1336848, + 11.5292194 + ], + [ + 48.1337252, + 11.5289036 + ], + [ + 48.1337722, + 11.528628 + ], + [ + 48.1338361, + 11.5283265 + ], + [ + 48.1339208, + 11.5279883 + ], + [ + 48.1342822, + 11.5267021 + ], + [ + 48.1343701, + 11.5263305 + ], + [ + 48.1344357, + 11.5259599 + ], + [ + 48.1346248, + 11.5245686 + ], + [ + 48.134657, + 11.5243004 + ], + [ + 48.1346816, + 11.524028 + ], + [ + 48.1346915, + 11.5238496 + ], + [ + 48.1346952, + 11.5237834 + ], + [ + 48.1347466, + 11.5226491 + ], + [ + 48.1347574, + 11.5224096 + ], + [ + 48.1347787, + 11.5214823 + ] + ] + }, + { + "osmId": "370023028", + "name": null, + "lengthMeters": 121.78540773016104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438958, + 11.5781541 + ], + [ + 48.1433429, + 11.5779246 + ], + [ + 48.1430441, + 11.5777992 + ], + [ + 48.1428407, + 11.5777138 + ] + ] + }, + { + "osmId": "370023030", + "name": null, + "lengthMeters": 120.93404428561318, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1428075, + 11.5779037 + ], + [ + 48.1433141, + 11.5781196 + ], + [ + 48.1438547, + 11.5783437 + ] + ] + }, + { + "osmId": "370023031", + "name": null, + "lengthMeters": 1637.0513570308444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438547, + 11.5783437 + ], + [ + 48.1441876, + 11.5784792 + ], + [ + 48.144514, + 11.5786066 + ], + [ + 48.145952, + 11.5791837 + ], + [ + 48.1503374, + 11.5812227 + ], + [ + 48.1513731, + 11.5817043 + ], + [ + 48.1530003, + 11.5824248 + ], + [ + 48.1553463, + 11.5835426 + ], + [ + 48.1554892, + 11.5836106 + ], + [ + 48.1560119, + 11.5838597 + ], + [ + 48.1565455, + 11.5841078 + ], + [ + 48.1567356, + 11.5841969 + ], + [ + 48.1570676, + 11.5843526 + ], + [ + 48.1579379, + 11.5847661 + ] + ] + }, + { + "osmId": "370028605", + "name": null, + "lengthMeters": 122.72937480420458, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356333, + 11.597976 + ], + [ + 48.1356195, + 11.5981919 + ], + [ + 48.1356078, + 11.5985775 + ], + [ + 48.1356055, + 11.5986881 + ], + [ + 48.1356016, + 11.5989302 + ], + [ + 48.1356033, + 11.5992849 + ], + [ + 48.1356134, + 11.599628 + ] + ] + }, + { + "osmId": "370173516", + "name": null, + "lengthMeters": 84.4863091456007, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5403578, + 10.0092109 + ], + [ + 53.54034, + 10.0094215 + ], + [ + 53.540249, + 10.0104763 + ] + ] + }, + { + "osmId": "370173520", + "name": null, + "lengthMeters": 2281.574718949773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5407101, + 10.0068131 + ], + [ + 53.540751, + 10.0063031 + ], + [ + 53.5407666, + 10.0060994 + ], + [ + 53.5407682, + 10.0060789 + ], + [ + 53.54078, + 10.0059231 + ], + [ + 53.5407956, + 10.0055942 + ], + [ + 53.5408095, + 10.0051444 + ], + [ + 53.5408073, + 10.0046673 + ], + [ + 53.5407925, + 10.0041677 + ], + [ + 53.540764, + 10.0036567 + ], + [ + 53.5407444, + 10.0033239 + ], + [ + 53.5407371, + 10.0031998 + ], + [ + 53.5406576, + 10.0018507 + ], + [ + 53.5406167, + 10.000933 + ], + [ + 53.5405766, + 10.0000838 + ], + [ + 53.5405192, + 9.998926 + ], + [ + 53.5404724, + 9.9982992 + ], + [ + 53.5404276, + 9.9976935 + ], + [ + 53.5403707, + 9.9969289 + ], + [ + 53.5402334, + 9.9948838 + ], + [ + 53.5401572, + 9.993219 + ], + [ + 53.5401514, + 9.992891 + ], + [ + 53.540154, + 9.9925081 + ], + [ + 53.5401861, + 9.9918917 + ], + [ + 53.5402337, + 9.9913661 + ], + [ + 53.5403308, + 9.990726 + ], + [ + 53.5403854, + 9.99041 + ], + [ + 53.5404599, + 9.9901007 + ], + [ + 53.5405345, + 9.9898044 + ], + [ + 53.5406187, + 9.9895278 + ], + [ + 53.5406951, + 9.9892788 + ], + [ + 53.5407892, + 9.9890086 + ], + [ + 53.5411322, + 9.9882038 + ], + [ + 53.5414651, + 9.9874921 + ], + [ + 53.5418969, + 9.9866118 + ], + [ + 53.5421389, + 9.9861212 + ], + [ + 53.5426913, + 9.9851755 + ], + [ + 53.5431358, + 9.9845329 + ], + [ + 53.5432864, + 9.9843298 + ], + [ + 53.5435113, + 9.9840897 + ], + [ + 53.5436809, + 9.9839297 + ], + [ + 53.5438528, + 9.9837869 + ], + [ + 53.5440344, + 9.9836571 + ], + [ + 53.5442325, + 9.9835376 + ], + [ + 53.5445934, + 9.9833938 + ], + [ + 53.5449366, + 9.9833064 + ], + [ + 53.5451355, + 9.9832851 + ], + [ + 53.5453831, + 9.9832945 + ], + [ + 53.5456599, + 9.9833593 + ], + [ + 53.5459048, + 9.9834295 + ], + [ + 53.5461635, + 9.9835571 + ], + [ + 53.5463946, + 9.9836637 + ], + [ + 53.5468194, + 9.9839346 + ], + [ + 53.5475152, + 9.9844068 + ], + [ + 53.5479338, + 9.9846319 + ], + [ + 53.5482696, + 9.9847546 + ], + [ + 53.5486338, + 9.9848137 + ], + [ + 53.5489018, + 9.9848045 + ], + [ + 53.5490477, + 9.9847837 + ] + ] + }, + { + "osmId": "370203071", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 130.20392983285228, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4539266, + 13.5105742 + ], + [ + 52.4536414, + 13.5110176 + ], + [ + 52.4534395, + 13.511333 + ], + [ + 52.4530741, + 13.5118914 + ] + ] + }, + { + "osmId": "370473472", + "name": null, + "lengthMeters": 175.1268528452818, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5459898, + 10.0070727 + ], + [ + 53.5451377, + 10.0067559 + ], + [ + 53.5447921, + 10.0066292 + ], + [ + 53.5446243, + 10.0065688 + ], + [ + 53.5444503, + 10.0065141 + ] + ] + }, + { + "osmId": "371347850", + "name": null, + "lengthMeters": 82.62643809510368, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.165779, + 11.4938162 + ], + [ + 48.1657926, + 11.49376 + ], + [ + 48.1658025, + 11.4937141 + ], + [ + 48.1658075, + 11.4936815 + ], + [ + 48.165811, + 11.4936483 + ], + [ + 48.1658119, + 11.4936241 + ], + [ + 48.1658118, + 11.4935998 + ], + [ + 48.1658094, + 11.4935783 + ], + [ + 48.1658059, + 11.4935568 + ], + [ + 48.1657992, + 11.4935313 + ], + [ + 48.1657914, + 11.4935064 + ], + [ + 48.1657828, + 11.4934842 + ], + [ + 48.1657736, + 11.4934631 + ], + [ + 48.1657633, + 11.4934465 + ], + [ + 48.1657524, + 11.4934298 + ], + [ + 48.1657409, + 11.4934162 + ], + [ + 48.1657284, + 11.4934036 + ], + [ + 48.1657174, + 11.4933948 + ], + [ + 48.1657064, + 11.493386 + ], + [ + 48.165693, + 11.4933769 + ], + [ + 48.1656795, + 11.4933693 + ], + [ + 48.1656669, + 11.4933645 + ], + [ + 48.1656542, + 11.4933608 + ], + [ + 48.1656407, + 11.493358 + ], + [ + 48.1656275, + 11.4933568 + ], + [ + 48.1656108, + 11.4933572 + ], + [ + 48.1655941, + 11.4933602 + ], + [ + 48.1655776, + 11.4933658 + ], + [ + 48.1655616, + 11.4933733 + ], + [ + 48.165542, + 11.493388 + ], + [ + 48.1655232, + 11.493407 + ], + [ + 48.1655055, + 11.4934286 + ], + [ + 48.1654928, + 11.4934486 + ], + [ + 48.1654809, + 11.4934714 + ], + [ + 48.165472, + 11.493494 + ], + [ + 48.1654641, + 11.4935176 + ], + [ + 48.1654573, + 11.493544 + ], + [ + 48.165453, + 11.4935689 + ], + [ + 48.1654494, + 11.493594 + ], + [ + 48.1654352, + 11.4936909 + ] + ] + }, + { + "osmId": "371347851", + "name": null, + "lengthMeters": 97.87360273332061, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1640978, + 11.5057217 + ], + [ + 48.1640742, + 11.5058473 + ], + [ + 48.1640464, + 11.505976 + ], + [ + 48.1639954, + 11.5061793 + ], + [ + 48.163965, + 11.5062966 + ], + [ + 48.163921, + 11.5064447 + ], + [ + 48.1638713, + 11.5066087 + ], + [ + 48.1638181, + 11.5067638 + ], + [ + 48.1637588, + 11.5069364 + ] + ] + }, + { + "osmId": "371347863", + "name": null, + "lengthMeters": 75.43834295936186, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1654352, + 11.4936909 + ], + [ + 48.1653606, + 11.4947019 + ] + ] + }, + { + "osmId": "371347868", + "name": null, + "lengthMeters": 79.99576014548995, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1654634, + 11.4949972 + ], + [ + 48.1655272, + 11.4947495 + ], + [ + 48.1655552, + 11.4946431 + ], + [ + 48.1657318, + 11.4939965 + ] + ] + }, + { + "osmId": "371387890", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 156.95320377219815, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.55031, + 10.0092542 + ], + [ + 53.5500771, + 10.009807 + ], + [ + 53.5499737, + 10.0100951 + ], + [ + 53.5499238, + 10.0102509 + ], + [ + 53.5498759, + 10.0103941 + ], + [ + 53.5497898, + 10.0106914 + ], + [ + 53.5497245, + 10.0109457 + ], + [ + 53.5497037, + 10.011051 + ], + [ + 53.5496471, + 10.011337 + ] + ] + }, + { + "osmId": "371432072", + "name": null, + "lengthMeters": 469.2191807600898, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629967, + 9.9413141 + ], + [ + 53.5630001, + 9.9410531 + ], + [ + 53.5629957, + 9.9408186 + ], + [ + 53.562986, + 9.9405715 + ], + [ + 53.5629618, + 9.940314 + ], + [ + 53.5629249, + 9.9400178 + ], + [ + 53.5628623, + 9.9396588 + ], + [ + 53.5627721, + 9.9391873 + ], + [ + 53.5627049, + 9.9387902 + ], + [ + 53.5626667, + 9.9384858 + ], + [ + 53.5626382, + 9.9381513 + ], + [ + 53.5626342, + 9.9380284 + ], + [ + 53.56263, + 9.9378968 + ], + [ + 53.5626308, + 9.937671 + ], + [ + 53.5626439, + 9.9373936 + ], + [ + 53.5626711, + 9.9370993 + ], + [ + 53.5627281, + 9.9367344 + ], + [ + 53.5627898, + 9.9364629 + ], + [ + 53.5628816, + 9.9361583 + ], + [ + 53.5630045, + 9.9358467 + ], + [ + 53.5631549, + 9.9355615 + ], + [ + 53.5632469, + 9.9354252 + ], + [ + 53.5633187, + 9.9353189 + ], + [ + 53.5634698, + 9.935148 + ], + [ + 53.56356, + 9.9350606 + ], + [ + 53.5636663, + 9.9349812 + ] + ] + }, + { + "osmId": "371846330", + "name": null, + "lengthMeters": 759.302752906246, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5064825, + 13.449778 + ], + [ + 52.5064874, + 13.449758 + ], + [ + 52.5065269, + 13.4495961 + ], + [ + 52.5066049, + 13.4492909 + ], + [ + 52.5066911, + 13.4489622 + ], + [ + 52.5068459, + 13.4483698 + ], + [ + 52.5069062, + 13.4481263 + ], + [ + 52.5069558, + 13.4479258 + ], + [ + 52.5070603, + 13.4474337 + ], + [ + 52.5073097, + 13.4460857 + ], + [ + 52.5074366, + 13.4453942 + ], + [ + 52.5074581, + 13.4452718 + ], + [ + 52.5075497, + 13.4447498 + ], + [ + 52.5076142, + 13.4443941 + ], + [ + 52.5077022, + 13.4439216 + ], + [ + 52.5077251, + 13.4437987 + ], + [ + 52.5077306, + 13.4437704 + ], + [ + 52.5077709, + 13.4435591 + ], + [ + 52.5078063, + 13.4433912 + ], + [ + 52.50786, + 13.4431639 + ], + [ + 52.5078802, + 13.443087 + ], + [ + 52.5079086, + 13.4429791 + ], + [ + 52.5079667, + 13.4427796 + ], + [ + 52.5080214, + 13.442605 + ], + [ + 52.508311, + 13.4417333 + ], + [ + 52.5085414, + 13.4410399 + ], + [ + 52.5085729, + 13.4409453 + ], + [ + 52.5086259, + 13.4407865 + ], + [ + 52.5086392, + 13.4407466 + ], + [ + 52.5086518, + 13.4407087 + ], + [ + 52.5088372, + 13.4401549 + ], + [ + 52.5090742, + 13.4394456 + ] + ] + }, + { + "osmId": "371846331", + "name": null, + "lengthMeters": 142.86754316925516, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099394, + 13.4371186 + ], + [ + 52.5098877, + 13.4372376 + ], + [ + 52.5096563, + 13.4377847 + ], + [ + 52.5095082, + 13.4381779 + ], + [ + 52.5095017, + 13.4381959 + ], + [ + 52.5094426, + 13.4383606 + ], + [ + 52.5093699, + 13.4385743 + ], + [ + 52.5093646, + 13.4385897 + ], + [ + 52.50926, + 13.4389078 + ] + ] + }, + { + "osmId": "371964290", + "name": null, + "lengthMeters": 251.80434381581705, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5346968, + 9.9854291 + ], + [ + 53.5342333, + 9.9853733 + ], + [ + 53.5335052, + 9.9852803 + ], + [ + 53.5329028, + 9.985199 + ], + [ + 53.5327418, + 9.985206 + ], + [ + 53.5326175, + 9.9852222 + ], + [ + 53.5324384, + 9.9852445 + ] + ] + }, + { + "osmId": "372002569", + "name": null, + "lengthMeters": 482.36897109145144, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1505965, + 11.5581254 + ], + [ + 48.1507925, + 11.5580029 + ], + [ + 48.1508412, + 11.5579675 + ], + [ + 48.1509359, + 11.5578985 + ], + [ + 48.1509842, + 11.5578542 + ], + [ + 48.1510075, + 11.5578287 + ], + [ + 48.1521665, + 11.5564406 + ], + [ + 48.1527897, + 11.5556963 + ], + [ + 48.153531, + 11.5547933 + ], + [ + 48.1540281, + 11.5541768 + ] + ] + }, + { + "osmId": "372002570", + "name": null, + "lengthMeters": 404.50830985003427, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1506154, + 11.5580756 + ], + [ + 48.1504008, + 11.5581823 + ], + [ + 48.1503577, + 11.5581948 + ], + [ + 48.1502539, + 11.5582264 + ], + [ + 48.1501926, + 11.558242 + ], + [ + 48.1501411, + 11.5582553 + ], + [ + 48.1489233, + 11.5585879 + ], + [ + 48.1478348, + 11.5588772 + ], + [ + 48.1477676, + 11.5588841 + ], + [ + 48.1477427, + 11.5588858 + ], + [ + 48.14772, + 11.5588861 + ], + [ + 48.1476924, + 11.5588849 + ], + [ + 48.1476627, + 11.5588823 + ], + [ + 48.147633, + 11.558878 + ], + [ + 48.1476079, + 11.5588727 + ], + [ + 48.1475625, + 11.5588613 + ], + [ + 48.1474316, + 11.5588237 + ], + [ + 48.1473858, + 11.5588112 + ], + [ + 48.1473198, + 11.5587932 + ], + [ + 48.1470407, + 11.5587173 + ] + ] + }, + { + "osmId": "372002571", + "name": null, + "lengthMeters": 554.2937178425677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1545336, + 11.5534798 + ], + [ + 48.1543629, + 11.5537037 + ], + [ + 48.1543028, + 11.5537783 + ], + [ + 48.1542659, + 11.5538241 + ], + [ + 48.1541885, + 11.5539276 + ], + [ + 48.1541784, + 11.5539412 + ], + [ + 48.1535199, + 11.5547576 + ], + [ + 48.1527707, + 11.5556625 + ], + [ + 48.1521509, + 11.5564078 + ], + [ + 48.1509862, + 11.5577929 + ], + [ + 48.1509197, + 11.5578578 + ], + [ + 48.1508279, + 11.5579297 + ], + [ + 48.1507806, + 11.5579664 + ], + [ + 48.1506154, + 11.5580756 + ] + ] + }, + { + "osmId": "372002572", + "name": null, + "lengthMeters": 540.0430135442845, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1598887, + 11.5469401 + ], + [ + 48.1599895, + 11.546821 + ], + [ + 48.1601892, + 11.5465884 + ], + [ + 48.1603218, + 11.5464196 + ], + [ + 48.1604418, + 11.5462525 + ], + [ + 48.1605608, + 11.5460783 + ], + [ + 48.1606733, + 11.5459025 + ], + [ + 48.1618454, + 11.5439738 + ], + [ + 48.1628028, + 11.5423858 + ], + [ + 48.1628928, + 11.5422361 + ], + [ + 48.163009, + 11.5420466 + ], + [ + 48.163233, + 11.5416739 + ] + ] + }, + { + "osmId": "372002574", + "name": null, + "lengthMeters": 496.2248117181395, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.163233, + 11.5416739 + ], + [ + 48.1633112, + 11.5415484 + ], + [ + 48.1646013, + 11.5394211 + ], + [ + 48.1647894, + 11.5391482 + ], + [ + 48.1649837, + 11.5388899 + ], + [ + 48.1652344, + 11.5385886 + ], + [ + 48.1656068, + 11.5382139 + ], + [ + 48.16572, + 11.5381032 + ], + [ + 48.1658854, + 11.537942 + ], + [ + 48.1661011, + 11.5377221 + ], + [ + 48.1662607, + 11.5375656 + ], + [ + 48.1665576, + 11.5372733 + ] + ] + }, + { + "osmId": "372002575", + "name": null, + "lengthMeters": 389.38013537400934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1471542, + 11.5587872 + ], + [ + 48.1473167, + 11.558829 + ], + [ + 48.1473968, + 11.5588516 + ], + [ + 48.1474229, + 11.558859 + ], + [ + 48.1475568, + 11.558898 + ], + [ + 48.1476296, + 11.5589161 + ], + [ + 48.1476524, + 11.5589198 + ], + [ + 48.1476773, + 11.558922 + ], + [ + 48.1476871, + 11.5589231 + ], + [ + 48.1477334, + 11.5589257 + ], + [ + 48.1477603, + 11.5589245 + ], + [ + 48.1477836, + 11.5589221 + ], + [ + 48.1478061, + 11.5589183 + ], + [ + 48.1478787, + 11.5589012 + ], + [ + 48.1489212, + 11.5586221 + ], + [ + 48.1501399, + 11.5582925 + ], + [ + 48.1501942, + 11.558278 + ], + [ + 48.1502555, + 11.5582619 + ], + [ + 48.1503608, + 11.5582311 + ], + [ + 48.1504022, + 11.558217 + ], + [ + 48.1505965, + 11.5581254 + ] + ] + }, + { + "osmId": "372002576", + "name": null, + "lengthMeters": 351.5223570020156, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1810592, + 11.5109808 + ], + [ + 48.1810643, + 11.5111036 + ], + [ + 48.1810675, + 11.5111888 + ], + [ + 48.1810685, + 11.5112741 + ], + [ + 48.1810642, + 11.5113303 + ], + [ + 48.1810585, + 11.5113746 + ], + [ + 48.1810519, + 11.5114108 + ], + [ + 48.1810429, + 11.5114456 + ], + [ + 48.1810335, + 11.5114809 + ], + [ + 48.1810098, + 11.511537 + ], + [ + 48.1809906, + 11.5115792 + ], + [ + 48.1809722, + 11.5116124 + ], + [ + 48.180941, + 11.5116662 + ], + [ + 48.1807986, + 11.5119112 + ], + [ + 48.180296, + 11.5127729 + ], + [ + 48.1802641, + 11.5128276 + ], + [ + 48.180092, + 11.5131395 + ], + [ + 48.1798927, + 11.5135361 + ], + [ + 48.1794245, + 11.5145287 + ], + [ + 48.1792911, + 11.5148049 + ] + ] + }, + { + "osmId": "372002577", + "name": null, + "lengthMeters": 357.68033481386874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1793749, + 11.5146945 + ], + [ + 48.1794452, + 11.51455 + ], + [ + 48.1799106, + 11.5135578 + ], + [ + 48.1801107, + 11.5131683 + ], + [ + 48.1802788, + 11.5128583 + ], + [ + 48.1803142, + 11.5127979 + ], + [ + 48.1808179, + 11.5119368 + ], + [ + 48.1809605, + 11.5116913 + ], + [ + 48.1809899, + 11.511638 + ], + [ + 48.1810082, + 11.5116079 + ], + [ + 48.1810311, + 11.5115619 + ], + [ + 48.181052, + 11.5115134 + ], + [ + 48.181062, + 11.511481 + ], + [ + 48.1810727, + 11.5114414 + ], + [ + 48.1810805, + 11.5114069 + ], + [ + 48.1810871, + 11.5113682 + ], + [ + 48.1810919, + 11.5113278 + ], + [ + 48.1810944, + 11.5112822 + ], + [ + 48.1810938, + 11.5111885 + ], + [ + 48.1810895, + 11.5110906 + ], + [ + 48.1810746, + 11.5107604 + ] + ] + }, + { + "osmId": "372002578", + "name": null, + "lengthMeters": 593.833178570041, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.166452, + 11.5373366 + ], + [ + 48.1662179, + 11.5375632 + ], + [ + 48.166062, + 11.5377174 + ], + [ + 48.1658901, + 11.5378916 + ], + [ + 48.1656728, + 11.5380995 + ], + [ + 48.1655621, + 11.5382115 + ], + [ + 48.1651915, + 11.538589 + ], + [ + 48.1649583, + 11.5388706 + ], + [ + 48.164772, + 11.5391179 + ], + [ + 48.1645817, + 11.5393975 + ], + [ + 48.1632887, + 11.5415261 + ], + [ + 48.1629898, + 11.5420206 + ], + [ + 48.1628657, + 11.5422245 + ], + [ + 48.1627841, + 11.5423604 + ], + [ + 48.1625524, + 11.5427375 + ] + ] + }, + { + "osmId": "372002579", + "name": null, + "lengthMeters": 269.34032416040395, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1448794, + 11.5596417 + ], + [ + 48.1450284, + 11.5595993 + ], + [ + 48.1451172, + 11.5595759 + ], + [ + 48.1451867, + 11.5595596 + ], + [ + 48.1452707, + 11.5595399 + ], + [ + 48.1465084, + 11.5592009 + ], + [ + 48.1465312, + 11.5591917 + ], + [ + 48.1465452, + 11.5591855 + ], + [ + 48.1465549, + 11.5591811 + ], + [ + 48.1465726, + 11.5591688 + ], + [ + 48.1465903, + 11.5591553 + ], + [ + 48.1466044, + 11.5591413 + ], + [ + 48.1466184, + 11.5591242 + ], + [ + 48.1466319, + 11.559105 + ], + [ + 48.1466454, + 11.5590841 + ], + [ + 48.1466943, + 11.558998 + ], + [ + 48.1467404, + 11.5589132 + ], + [ + 48.1467595, + 11.558879 + ], + [ + 48.1467756, + 11.5588538 + ], + [ + 48.1467923, + 11.5588301 + ], + [ + 48.1468091, + 11.5588068 + ], + [ + 48.1468172, + 11.5587966 + ], + [ + 48.1468263, + 11.5587874 + ], + [ + 48.1468381, + 11.5587762 + ], + [ + 48.1468506, + 11.5587667 + ], + [ + 48.1468641, + 11.5587581 + ], + [ + 48.1468777, + 11.5587513 + ], + [ + 48.1468927, + 11.5587458 + ], + [ + 48.1469061, + 11.5587426 + ], + [ + 48.1469173, + 11.5587401 + ], + [ + 48.1469273, + 11.5587384 + ], + [ + 48.1469379, + 11.5587371 + ], + [ + 48.1469489, + 11.5587366 + ], + [ + 48.1469589, + 11.5587368 + ], + [ + 48.1469693, + 11.5587387 + ], + [ + 48.1470532, + 11.5587591 + ], + [ + 48.1471542, + 11.5587872 + ] + ] + }, + { + "osmId": "372002580", + "name": null, + "lengthMeters": 281.79593528513965, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1470407, + 11.5587173 + ], + [ + 48.1469474, + 11.558694 + ], + [ + 48.1469226, + 11.5586937 + ], + [ + 48.1468993, + 11.5586971 + ], + [ + 48.1468745, + 11.558705 + ], + [ + 48.1468622, + 11.5587105 + ], + [ + 48.1468504, + 11.5587173 + ], + [ + 48.1468315, + 11.5587308 + ], + [ + 48.146813, + 11.5587472 + ], + [ + 48.1468024, + 11.5587586 + ], + [ + 48.1467921, + 11.5587701 + ], + [ + 48.1467776, + 11.5587889 + ], + [ + 48.1467636, + 11.55881 + ], + [ + 48.1467499, + 11.5588319 + ], + [ + 48.1467149, + 11.5588964 + ], + [ + 48.1466661, + 11.5589863 + ], + [ + 48.1466255, + 11.5590537 + ], + [ + 48.146611, + 11.559076 + ], + [ + 48.1465957, + 11.559095 + ], + [ + 48.1465808, + 11.55911 + ], + [ + 48.1465636, + 11.5591259 + ], + [ + 48.1465466, + 11.5591379 + ], + [ + 48.146524, + 11.5591509 + ], + [ + 48.146498, + 11.5591659 + ], + [ + 48.1462704, + 11.559227 + ], + [ + 48.1460343, + 11.5592904 + ], + [ + 48.1452022, + 11.559516 + ], + [ + 48.1451274, + 11.5595363 + ], + [ + 48.1450255, + 11.5595637 + ], + [ + 48.1446575, + 11.5596634 + ] + ] + }, + { + "osmId": "372002581", + "name": null, + "lengthMeters": 708.1839995005836, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1760111, + 11.5215328 + ], + [ + 48.1758959, + 11.5217517 + ], + [ + 48.1758389, + 11.521851 + ], + [ + 48.1757025, + 11.5220852 + ], + [ + 48.1756385, + 11.5221974 + ], + [ + 48.1755624, + 11.5223349 + ], + [ + 48.1748823, + 11.5236941 + ], + [ + 48.1741276, + 11.5251632 + ], + [ + 48.1728764, + 11.5276053 + ], + [ + 48.1726836, + 11.5279816 + ], + [ + 48.1726168, + 11.5281158 + ], + [ + 48.1725406, + 11.5282667 + ], + [ + 48.1724757, + 11.528395 + ], + [ + 48.172443, + 11.528456 + ], + [ + 48.1724192, + 11.5284979 + ], + [ + 48.1724129, + 11.5285089 + ], + [ + 48.1723848, + 11.5285505 + ], + [ + 48.1723567, + 11.5285868 + ], + [ + 48.1723326, + 11.5286114 + ], + [ + 48.1723053, + 11.5286336 + ], + [ + 48.1722756, + 11.5286544 + ], + [ + 48.1722557, + 11.5286657 + ], + [ + 48.1722356, + 11.5286763 + ], + [ + 48.1722171, + 11.52868 + ], + [ + 48.1722, + 11.528682 + ], + [ + 48.1721695, + 11.528683 + ], + [ + 48.1721378, + 11.5286814 + ], + [ + 48.17206, + 11.5286652 + ], + [ + 48.1719638, + 11.5286378 + ] + ] + }, + { + "osmId": "372002588", + "name": null, + "lengthMeters": 112.65189925034501, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1665576, + 11.5372733 + ], + [ + 48.1668893, + 11.5369465 + ], + [ + 48.1672185, + 11.5366188 + ], + [ + 48.1674005, + 11.5364307 + ] + ] + }, + { + "osmId": "372002589", + "name": null, + "lengthMeters": 78.8146996377817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1399545, + 11.5610935 + ], + [ + 48.1401869, + 11.561126 + ], + [ + 48.1402991, + 11.5611431 + ], + [ + 48.1404684, + 11.5611556 + ], + [ + 48.1406615, + 11.5611538 + ] + ] + }, + { + "osmId": "372002590", + "name": null, + "lengthMeters": 593.3174313263687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1592426, + 11.547637 + ], + [ + 48.1586055, + 11.5484011 + ], + [ + 48.1581397, + 11.5489725 + ], + [ + 48.1553549, + 11.5523941 + ], + [ + 48.1552421, + 11.5525351 + ], + [ + 48.1551117, + 11.5526997 + ] + ] + }, + { + "osmId": "372002593", + "name": null, + "lengthMeters": 333.88225614516404, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1441891, + 11.559788 + ], + [ + 48.1441321, + 11.5598033 + ], + [ + 48.1439638, + 11.5598485 + ], + [ + 48.1436523, + 11.5599322 + ], + [ + 48.1433554, + 11.560012 + ], + [ + 48.1426826, + 11.5601928 + ], + [ + 48.1426318, + 11.5602044 + ], + [ + 48.1425154, + 11.5602353 + ], + [ + 48.1424563, + 11.5602558 + ], + [ + 48.1420099, + 11.5604114 + ], + [ + 48.1417729, + 11.560526 + ], + [ + 48.1417645, + 11.5605301 + ], + [ + 48.1414753, + 11.5606737 + ], + [ + 48.14141, + 11.5607121 + ], + [ + 48.1413854, + 11.5607275 + ], + [ + 48.1413521, + 11.5607536 + ], + [ + 48.1412929, + 11.5607959 + ], + [ + 48.1412745, + 11.5608113 + ] + ] + }, + { + "osmId": "372002594", + "name": null, + "lengthMeters": 285.3688851554593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1694852, + 11.5333398 + ], + [ + 48.16837, + 11.5351004 + ], + [ + 48.1682805, + 11.5352358 + ], + [ + 48.1681305, + 11.5354681 + ], + [ + 48.1679634, + 11.5356981 + ], + [ + 48.1676759, + 11.5360646 + ] + ] + }, + { + "osmId": "372002595", + "name": null, + "lengthMeters": 253.0413439990438, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1698065, + 11.5287196 + ], + [ + 48.170759, + 11.5285999 + ], + [ + 48.1709236, + 11.5285826 + ], + [ + 48.1713252, + 11.5285768 + ], + [ + 48.1713924, + 11.5285765 + ], + [ + 48.1714606, + 11.5285802 + ], + [ + 48.1715471, + 11.5285896 + ], + [ + 48.1716118, + 11.5286016 + ], + [ + 48.1717575, + 11.5286369 + ], + [ + 48.1719877, + 11.5286978 + ], + [ + 48.1720709, + 11.5287198 + ] + ] + }, + { + "osmId": "372002597", + "name": null, + "lengthMeters": 616.8322510447188, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1761041, + 11.5214129 + ], + [ + 48.1761619, + 11.521294 + ], + [ + 48.1763045, + 11.5209869 + ], + [ + 48.1764972, + 11.5205815 + ], + [ + 48.1771911, + 11.5191636 + ], + [ + 48.1781825, + 11.517191 + ], + [ + 48.1791115, + 11.5152558 + ], + [ + 48.1791607, + 11.515151 + ], + [ + 48.1792236, + 11.5150185 + ], + [ + 48.1793749, + 11.5146945 + ] + ] + }, + { + "osmId": "372002600", + "name": null, + "lengthMeters": 241.0119335664165, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1810746, + 11.5107604 + ], + [ + 48.1810652, + 11.5105527 + ], + [ + 48.1810321, + 11.5098713 + ], + [ + 48.1809891, + 11.5089766 + ], + [ + 48.1809827, + 11.5088446 + ], + [ + 48.1809726, + 11.5087183 + ], + [ + 48.1809405, + 11.5084166 + ], + [ + 48.1809219, + 11.5082593 + ], + [ + 48.1809132, + 11.5081941 + ], + [ + 48.1808975, + 11.5081111 + ], + [ + 48.1808805, + 11.5080385 + ], + [ + 48.1808539, + 11.5079535 + ], + [ + 48.1808228, + 11.5078708 + ], + [ + 48.1807997, + 11.5078211 + ], + [ + 48.1807755, + 11.507774 + ], + [ + 48.1807519, + 11.5077346 + ], + [ + 48.1807256, + 11.5076974 + ], + [ + 48.180701, + 11.5076634 + ], + [ + 48.1806803, + 11.5076359 + ] + ] + }, + { + "osmId": "372002602", + "name": null, + "lengthMeters": 77.65074649761256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1593329, + 11.5475737 + ], + [ + 48.1593872, + 11.5475159 + ], + [ + 48.1594022, + 11.5474977 + ], + [ + 48.1594598, + 11.5474341 + ], + [ + 48.1594723, + 11.5474201 + ], + [ + 48.1594857, + 11.5474047 + ], + [ + 48.1595301, + 11.5473553 + ], + [ + 48.1595394, + 11.5473453 + ], + [ + 48.159613, + 11.5472597 + ], + [ + 48.1596595, + 11.5472075 + ], + [ + 48.1598887, + 11.5469401 + ] + ] + }, + { + "osmId": "372002609", + "name": null, + "lengthMeters": 451.5829730727435, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1625524, + 11.5427375 + ], + [ + 48.161822, + 11.5439494 + ], + [ + 48.1606541, + 11.5458739 + ], + [ + 48.1605416, + 11.5460477 + ], + [ + 48.1604242, + 11.5462237 + ], + [ + 48.1603057, + 11.54639 + ], + [ + 48.1601723, + 11.546555 + ], + [ + 48.1599719, + 11.5467892 + ], + [ + 48.159719, + 11.5470814 + ] + ] + }, + { + "osmId": "372002612", + "name": null, + "lengthMeters": 618.0180007407663, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1792911, + 11.5148049 + ], + [ + 48.1792012, + 11.5149959 + ], + [ + 48.1791391, + 11.515129 + ], + [ + 48.1790904, + 11.515234 + ], + [ + 48.1781647, + 11.5171563 + ], + [ + 48.1771703, + 11.5191397 + ], + [ + 48.1764739, + 11.5205519 + ], + [ + 48.1762836, + 11.5209712 + ], + [ + 48.17614, + 11.5212754 + ], + [ + 48.1760111, + 11.5215328 + ] + ] + }, + { + "osmId": "372002614", + "name": null, + "lengthMeters": 294.183662763442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1422771, + 11.5603545 + ], + [ + 48.1424392, + 11.5603066 + ], + [ + 48.1424936, + 11.5602855 + ], + [ + 48.1426144, + 11.5602514 + ], + [ + 48.1426655, + 11.5602408 + ], + [ + 48.1435095, + 11.5600133 + ], + [ + 48.1438959, + 11.5599092 + ], + [ + 48.1441918, + 11.5598286 + ], + [ + 48.1442673, + 11.559808 + ], + [ + 48.14431, + 11.5597964 + ], + [ + 48.144329, + 11.559791 + ], + [ + 48.1444239, + 11.559762 + ], + [ + 48.1448794, + 11.5596417 + ] + ] + }, + { + "osmId": "372454448", + "name": "Potsdamer Kurve", + "lengthMeters": 139.36177315050875, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3409005, + 13.4147974 + ], + [ + 52.3412432, + 13.4146457 + ], + [ + 52.3414134, + 13.4145541 + ], + [ + 52.3416243, + 13.414429 + ], + [ + 52.3418197, + 13.4143271 + ], + [ + 52.3420955, + 13.4141818 + ] + ] + }, + { + "osmId": "372454449", + "name": "Potsdamer Kurve", + "lengthMeters": 137.95753760783333, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3420955, + 13.4141818 + ], + [ + 52.3423505, + 13.4140624 + ], + [ + 52.3425119, + 13.413976 + ], + [ + 52.3429109, + 13.4137588 + ], + [ + 52.3432762, + 13.413559 + ] + ] + }, + { + "osmId": "372499091", + "name": "Berliner Stadtbahn", + "lengthMeters": 222.276436840089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243826, + 13.374848 + ], + [ + 52.5243428, + 13.3749285 + ], + [ + 52.5242835, + 13.3750453 + ], + [ + 52.5241632, + 13.3752763 + ], + [ + 52.5240012, + 13.3755403 + ], + [ + 52.5238393, + 13.3757597 + ], + [ + 52.5236339, + 13.3759913 + ], + [ + 52.5234203, + 13.3762239 + ], + [ + 52.5229842, + 13.3766627 + ], + [ + 52.522972, + 13.3766736 + ], + [ + 52.5228113, + 13.3768396 + ] + ] + }, + { + "osmId": "372556609", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 4160.827230887442, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3487569, + 13.4028316 + ], + [ + 52.3487329, + 13.4027243 + ], + [ + 52.3484095, + 13.4012576 + ], + [ + 52.348395, + 13.4011919 + ], + [ + 52.3483099, + 13.400819 + ], + [ + 52.3481773, + 13.4002384 + ], + [ + 52.348151, + 13.4001232 + ], + [ + 52.3480915, + 13.3998448 + ], + [ + 52.347546, + 13.3974388 + ], + [ + 52.3470833, + 13.3953502 + ], + [ + 52.3468724, + 13.394305 + ], + [ + 52.3467778, + 13.3938058 + ], + [ + 52.3466861, + 13.3933096 + ], + [ + 52.3465156, + 13.3923166 + ], + [ + 52.3463467, + 13.3912226 + ], + [ + 52.3462404, + 13.3904808 + ], + [ + 52.3461526, + 13.389801 + ], + [ + 52.3460603, + 13.3890396 + ], + [ + 52.3459471, + 13.3879566 + ], + [ + 52.3458477, + 13.386912 + ], + [ + 52.3458093, + 13.3864604 + ], + [ + 52.3456459, + 13.3845529 + ], + [ + 52.3455481, + 13.3835068 + ], + [ + 52.3455443, + 13.3834664 + ], + [ + 52.3454995, + 13.3829884 + ], + [ + 52.3454117, + 13.3819754 + ], + [ + 52.345334, + 13.3811574 + ], + [ + 52.3452672, + 13.3803688 + ], + [ + 52.3452536, + 13.3802243 + ], + [ + 52.3451625, + 13.3791843 + ], + [ + 52.3450301, + 13.3777096 + ], + [ + 52.3450105, + 13.3774768 + ], + [ + 52.3449089, + 13.3763521 + ], + [ + 52.3447691, + 13.3747851 + ], + [ + 52.3447559, + 13.3746365 + ], + [ + 52.3445297, + 13.3720831 + ], + [ + 52.3445012, + 13.3717752 + ], + [ + 52.3443872, + 13.3704872 + ], + [ + 52.3440956, + 13.3671937 + ], + [ + 52.3440567, + 13.3667558 + ], + [ + 52.3440516, + 13.3666893 + ], + [ + 52.3440011, + 13.3661765 + ], + [ + 52.3438399, + 13.3643146 + ], + [ + 52.3437687, + 13.3635095 + ], + [ + 52.3437494, + 13.36332 + ], + [ + 52.3437312, + 13.3631126 + ], + [ + 52.3435973, + 13.3615958 + ], + [ + 52.3435095, + 13.360601 + ], + [ + 52.3433382, + 13.3586602 + ], + [ + 52.3432036, + 13.3571382 + ], + [ + 52.3431105, + 13.3562044 + ], + [ + 52.3429458, + 13.3542138 + ], + [ + 52.3427676, + 13.3521663 + ], + [ + 52.3426975, + 13.3514423 + ], + [ + 52.342447, + 13.3486271 + ], + [ + 52.3424086, + 13.3481952 + ], + [ + 52.3422101, + 13.3459768 + ], + [ + 52.3419429, + 13.3429671 + ], + [ + 52.3419258, + 13.3427834 + ] + ] + }, + { + "osmId": "373170159", + "name": "Anhalter Bahn", + "lengthMeters": 142.6520322789056, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4450838, + 13.3509416 + ], + [ + 52.4450753, + 13.3509316 + ], + [ + 52.4449343, + 13.3507693 + ], + [ + 52.4447267, + 13.3505233 + ], + [ + 52.4442703, + 13.3499765 + ], + [ + 52.4440468, + 13.3497026 + ] + ] + }, + { + "osmId": "373176814", + "name": null, + "lengthMeters": 4535.379394423755, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1120134, + 11.5762774 + ], + [ + 48.1118217, + 11.5762078 + ], + [ + 48.1117185, + 11.5761633 + ], + [ + 48.1116424, + 11.5761326 + ], + [ + 48.1114986, + 11.5760717 + ], + [ + 48.1114309, + 11.5760431 + ], + [ + 48.1109148, + 11.5758144 + ], + [ + 48.1103502, + 11.5755363 + ], + [ + 48.1101778, + 11.5754394 + ], + [ + 48.1100029, + 11.5753307 + ], + [ + 48.1096889, + 11.5751073 + ], + [ + 48.1096154, + 11.5750491 + ], + [ + 48.1093953, + 11.5748751 + ], + [ + 48.1090703, + 11.5745874 + ], + [ + 48.1089702, + 11.5744945 + ], + [ + 48.1089173, + 11.5744388 + ], + [ + 48.1088788, + 11.5743992 + ], + [ + 48.1087717, + 11.5742821 + ], + [ + 48.1085805, + 11.574078 + ], + [ + 48.1083607, + 11.5738356 + ], + [ + 48.1081797, + 11.5736287 + ], + [ + 48.1080105, + 11.5734308 + ], + [ + 48.1077643, + 11.5731276 + ], + [ + 48.1074697, + 11.5727498 + ], + [ + 48.1071386, + 11.5723492 + ], + [ + 48.1070227, + 11.5722041 + ], + [ + 48.1068978, + 11.5720551 + ], + [ + 48.1066658, + 11.5717977 + ], + [ + 48.1065231, + 11.5716477 + ], + [ + 48.1063825, + 11.5715064 + ], + [ + 48.106113, + 11.571249 + ], + [ + 48.1058257, + 11.5709773 + ], + [ + 48.1055446, + 11.5707067 + ], + [ + 48.1050751, + 11.5702651 + ], + [ + 48.1049083, + 11.5701091 + ], + [ + 48.104823, + 11.5700293 + ], + [ + 48.1047047, + 11.569914 + ], + [ + 48.1046422, + 11.5698563 + ], + [ + 48.1045623, + 11.5697827 + ], + [ + 48.1045137, + 11.5697354 + ], + [ + 48.1042432, + 11.5694865 + ], + [ + 48.103928, + 11.569204 + ], + [ + 48.1036059, + 11.5689275 + ], + [ + 48.1032888, + 11.5686694 + ], + [ + 48.1031317, + 11.5685426 + ], + [ + 48.1029463, + 11.5683953 + ], + [ + 48.102609, + 11.5681243 + ], + [ + 48.1023294, + 11.5678971 + ], + [ + 48.10205, + 11.5676725 + ], + [ + 48.1018042, + 11.5674695 + ], + [ + 48.1015099, + 11.5672344 + ], + [ + 48.1009699, + 11.5667948 + ], + [ + 48.1008879, + 11.56673 + ], + [ + 48.1006556, + 11.5665482 + ], + [ + 48.0997511, + 11.5658206 + ], + [ + 48.0987903, + 11.5650557 + ], + [ + 48.0986258, + 11.5649312 + ], + [ + 48.0983339, + 11.5647146 + ], + [ + 48.0980482, + 11.5645242 + ], + [ + 48.0978374, + 11.5643907 + ], + [ + 48.0975924, + 11.5642465 + ], + [ + 48.0973469, + 11.5641197 + ], + [ + 48.0971292, + 11.5640122 + ], + [ + 48.0969065, + 11.5639156 + ], + [ + 48.0966678, + 11.5638198 + ], + [ + 48.0960853, + 11.5636202 + ], + [ + 48.0960455, + 11.5636069 + ], + [ + 48.0959417, + 11.5635724 + ], + [ + 48.0958136, + 11.5635309 + ], + [ + 48.0956654, + 11.5634782 + ], + [ + 48.0955342, + 11.5634318 + ], + [ + 48.0953322, + 11.5633679 + ], + [ + 48.0951225, + 11.5633152 + ], + [ + 48.0946946, + 11.5632243 + ], + [ + 48.0942712, + 11.5631424 + ], + [ + 48.0942013, + 11.5631322 + ], + [ + 48.0936032, + 11.5630447 + ], + [ + 48.0931612, + 11.562984 + ], + [ + 48.0927589, + 11.5629245 + ], + [ + 48.0925877, + 11.5628839 + ], + [ + 48.0924983, + 11.5628525 + ], + [ + 48.092407, + 11.5628151 + ], + [ + 48.092295, + 11.5627545 + ], + [ + 48.0922102, + 11.5627022 + ], + [ + 48.0921165, + 11.5626341 + ], + [ + 48.0920566, + 11.5625849 + ], + [ + 48.0919806, + 11.5625155 + ], + [ + 48.0919163, + 11.5624529 + ], + [ + 48.0918302, + 11.5623537 + ], + [ + 48.0917589, + 11.562267 + ], + [ + 48.091658, + 11.5621223 + ], + [ + 48.0915718, + 11.561983 + ], + [ + 48.0915051, + 11.5618564 + ], + [ + 48.091442, + 11.5617205 + ], + [ + 48.0913958, + 11.5616057 + ], + [ + 48.0913485, + 11.5614788 + ], + [ + 48.091306, + 11.5613412 + ], + [ + 48.0912582, + 11.5611571 + ], + [ + 48.0912262, + 11.5610039 + ], + [ + 48.0912009, + 11.5608583 + ], + [ + 48.0911368, + 11.5604191 + ], + [ + 48.0909488, + 11.5590118 + ], + [ + 48.0909097, + 11.5587428 + ], + [ + 48.0908645, + 11.5584561 + ], + [ + 48.0908153, + 11.558199 + ], + [ + 48.0907699, + 11.5579785 + ], + [ + 48.0907182, + 11.5577724 + ], + [ + 48.0906917, + 11.5576719 + ], + [ + 48.0906483, + 11.557538 + ], + [ + 48.0906021, + 11.5574101 + ], + [ + 48.0905435, + 11.5572781 + ], + [ + 48.0905016, + 11.557195 + ], + [ + 48.0904616, + 11.5571253 + ], + [ + 48.0904346, + 11.5570837 + ], + [ + 48.0903892, + 11.5570125 + ], + [ + 48.0903438, + 11.5569503 + ], + [ + 48.0902495, + 11.5568296 + ], + [ + 48.0901944, + 11.5567757 + ], + [ + 48.0901459, + 11.5567271 + ], + [ + 48.0900405, + 11.55664 + ], + [ + 48.0898988, + 11.5565427 + ], + [ + 48.0894611, + 11.5562858 + ], + [ + 48.0890343, + 11.556039 + ], + [ + 48.0885931, + 11.5557819 + ], + [ + 48.0883498, + 11.555639 + ], + [ + 48.0881082, + 11.5555005 + ], + [ + 48.0879808, + 11.5554322 + ], + [ + 48.0878528, + 11.5553635 + ], + [ + 48.0877186, + 11.5552927 + ], + [ + 48.0875813, + 11.5552223 + ], + [ + 48.0873124, + 11.5550823 + ], + [ + 48.0870344, + 11.5549522 + ], + [ + 48.0869561, + 11.5549133 + ], + [ + 48.0868879, + 11.5548821 + ], + [ + 48.0867891, + 11.5548371 + ], + [ + 48.0867793, + 11.5548326 + ], + [ + 48.086687, + 11.5547905 + ], + [ + 48.0862197, + 11.5545748 + ], + [ + 48.0854895, + 11.5542293 + ], + [ + 48.0843167, + 11.5536845 + ], + [ + 48.0831414, + 11.5531389 + ], + [ + 48.0830524, + 11.5530966 + ], + [ + 48.0823936, + 11.5527958 + ], + [ + 48.0817042, + 11.552475 + ], + [ + 48.0802277, + 11.5517784 + ], + [ + 48.0798958, + 11.5516272 + ], + [ + 48.0793752, + 11.5513881 + ], + [ + 48.078957, + 11.5511872 + ], + [ + 48.0786235, + 11.5510213 + ], + [ + 48.0777643, + 11.5506084 + ], + [ + 48.0773287, + 11.5504076 + ], + [ + 48.0768585, + 11.5501786 + ] + ] + }, + { + "osmId": "373176815", + "name": null, + "lengthMeters": 167.79572272076646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1124069, + 11.5764557 + ], + [ + 48.1126025, + 11.5765199 + ], + [ + 48.1126361, + 11.5765328 + ], + [ + 48.112668, + 11.576549 + ], + [ + 48.1126838, + 11.5765589 + ], + [ + 48.1126942, + 11.5765661 + ], + [ + 48.11272, + 11.5765866 + ], + [ + 48.11274, + 11.5766044 + ], + [ + 48.1127682, + 11.5766322 + ], + [ + 48.1128244, + 11.5767063 + ], + [ + 48.1128693, + 11.5767867 + ], + [ + 48.1129724, + 11.5769921 + ], + [ + 48.1130128, + 11.5770658 + ], + [ + 48.1130755, + 11.5771667 + ], + [ + 48.1131383, + 11.5772574 + ], + [ + 48.1131896, + 11.5773296 + ], + [ + 48.1134555, + 11.5776954 + ], + [ + 48.1135542, + 11.5778329 + ] + ] + }, + { + "osmId": "374838887", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 188.07815679837915, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4634643, + 9.993584 + ], + [ + 53.4641236, + 9.9939278 + ], + [ + 53.4650813, + 9.9944175 + ] + ] + }, + { + "osmId": "374838888", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 157.03591587461014, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4659486, + 9.9949432 + ], + [ + 53.4663276, + 9.9951233 + ], + [ + 53.4665367, + 9.9952378 + ], + [ + 53.4672018, + 9.9955797 + ], + [ + 53.4673007, + 9.9956275 + ] + ] + }, + { + "osmId": "374838893", + "name": "Niederelbebahn", + "lengthMeters": 149.4978221583694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4577543, + 9.9900451 + ], + [ + 53.4579279, + 9.9898598 + ], + [ + 53.4580671, + 9.9896735 + ], + [ + 53.4581865, + 9.9894946 + ], + [ + 53.4583525, + 9.9891864 + ], + [ + 53.4585023, + 9.9888703 + ], + [ + 53.4586749, + 9.9884322 + ] + ] + }, + { + "osmId": "374838894", + "name": "Niederelbebahn", + "lengthMeters": 524.0337126774117, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4744361, + 9.8453153 + ], + [ + 53.4743446, + 9.8476911 + ], + [ + 53.4742942, + 9.8490393 + ], + [ + 53.4741741, + 9.8521882 + ], + [ + 53.4741675, + 9.8523612 + ], + [ + 53.4741335, + 9.8532171 + ] + ] + }, + { + "osmId": "374840520", + "name": null, + "lengthMeters": 96.88666294230262, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5539227, + 10.0056118 + ], + [ + 53.5543361, + 10.0052694 + ], + [ + 53.5546969, + 10.0049395 + ] + ] + }, + { + "osmId": "374860873", + "name": "Niederelbebahn", + "lengthMeters": 1213.6732938984958, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4657765, + 9.9770589 + ], + [ + 53.4661179, + 9.9763367 + ], + [ + 53.4661851, + 9.9761842 + ], + [ + 53.4667352, + 9.9750122 + ], + [ + 53.4671647, + 9.9740739 + ], + [ + 53.4675788, + 9.9732149 + ], + [ + 53.4684619, + 9.971262 + ], + [ + 53.4687415, + 9.9705361 + ], + [ + 53.4688444, + 9.9702473 + ], + [ + 53.4689892, + 9.9698252 + ], + [ + 53.4691154, + 9.9694071 + ], + [ + 53.4692382, + 9.9689764 + ], + [ + 53.4694207, + 9.9682549 + ], + [ + 53.4695442, + 9.9676739 + ], + [ + 53.4696575, + 9.967083 + ], + [ + 53.469741, + 9.9665069 + ], + [ + 53.4699771, + 9.96506 + ], + [ + 53.4703097, + 9.9627937 + ], + [ + 53.4703429, + 9.9625671 + ], + [ + 53.4703767, + 9.9622238 + ], + [ + 53.4704857, + 9.9611157 + ], + [ + 53.4705006, + 9.9609152 + ] + ] + }, + { + "osmId": "374919447", + "name": null, + "lengthMeters": 1267.8905173413086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.475562, + 13.3282881 + ], + [ + 52.474424, + 13.3283685 + ], + [ + 52.4738856, + 13.3283856 + ], + [ + 52.4733693, + 13.3284548 + ], + [ + 52.4727425, + 13.328596 + ], + [ + 52.4724927, + 13.3286295 + ], + [ + 52.4721004, + 13.3286396 + ], + [ + 52.4717109, + 13.3286106 + ], + [ + 52.4715226, + 13.3285967 + ], + [ + 52.471317, + 13.3285561 + ], + [ + 52.4709492, + 13.3284434 + ], + [ + 52.4706622, + 13.3283568 + ], + [ + 52.470351, + 13.3282776 + ], + [ + 52.4689557, + 13.328205 + ], + [ + 52.4671272, + 13.3281755 + ], + [ + 52.466679, + 13.3281794 + ], + [ + 52.4656165, + 13.3281755 + ], + [ + 52.4653787, + 13.3281741 + ], + [ + 52.4652752, + 13.3281601 + ], + [ + 52.4650004, + 13.3280952 + ], + [ + 52.4647999, + 13.3280365 + ], + [ + 52.4646214, + 13.3279643 + ], + [ + 52.4644884, + 13.3278944 + ], + [ + 52.4642397, + 13.3276724 + ] + ] + }, + { + "osmId": "374919448", + "name": null, + "lengthMeters": 1788.3594074430926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4640169, + 13.3276224 + ], + [ + 52.4644327, + 13.3280074 + ], + [ + 52.4646004, + 13.3281039 + ], + [ + 52.4647934, + 13.3281913 + ], + [ + 52.4649824, + 13.3282576 + ], + [ + 52.4652607, + 13.3283325 + ], + [ + 52.4653816, + 13.3283487 + ], + [ + 52.4665488, + 13.3283452 + ], + [ + 52.4666792, + 13.3283451 + ], + [ + 52.4671419, + 13.3283472 + ], + [ + 52.4689622, + 13.3283579 + ], + [ + 52.4703493, + 13.3284143 + ], + [ + 52.4706352, + 13.3284733 + ], + [ + 52.470944, + 13.3285699 + ], + [ + 52.4712529, + 13.3286772 + ], + [ + 52.4715153, + 13.3287627 + ], + [ + 52.4718381, + 13.3288317 + ], + [ + 52.471967, + 13.3288481 + ], + [ + 52.4722475, + 13.3288529 + ], + [ + 52.4725127, + 13.3288233 + ], + [ + 52.4727564, + 13.3287724 + ], + [ + 52.4734128, + 13.3285565 + ], + [ + 52.4738931, + 13.3284948 + ], + [ + 52.4744145, + 13.328492 + ], + [ + 52.4755551, + 13.3286184 + ], + [ + 52.4766314, + 13.3286557 + ], + [ + 52.4774602, + 13.3286254 + ], + [ + 52.4784414, + 13.3286405 + ], + [ + 52.4790371, + 13.3287166 + ], + [ + 52.479967, + 13.3287661 + ] + ] + }, + { + "osmId": "374919449", + "name": null, + "lengthMeters": 490.66412047349104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4799704, + 13.3283034 + ], + [ + 52.4790288, + 13.3282908 + ], + [ + 52.4784593, + 13.3283875 + ], + [ + 52.477481, + 13.3283618 + ], + [ + 52.4774265, + 13.3283601 + ], + [ + 52.476638, + 13.3282936 + ], + [ + 52.475562, + 13.3282881 + ] + ] + }, + { + "osmId": "374930731", + "name": "U3", + "lengthMeters": 280.9627997691576, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4812913, + 13.3135221 + ], + [ + 52.4823816, + 13.3135852 + ], + [ + 52.4834813, + 13.3136561 + ], + [ + 52.4838163, + 13.3136767 + ] + ] + }, + { + "osmId": "374930732", + "name": "U3", + "lengthMeters": 275.43570846789316, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4789098, + 13.312512 + ], + [ + 52.4789987, + 13.3125257 + ], + [ + 52.4790712, + 13.3125468 + ], + [ + 52.4791591, + 13.3125808 + ], + [ + 52.479247, + 13.312624 + ], + [ + 52.4793144, + 13.3126643 + ], + [ + 52.4793871, + 13.312712 + ], + [ + 52.4798622, + 13.3130207 + ], + [ + 52.4799647, + 13.3130898 + ], + [ + 52.4800554, + 13.3131507 + ], + [ + 52.4801553, + 13.3132118 + ], + [ + 52.4802752, + 13.313276 + ], + [ + 52.4803532, + 13.313312 + ], + [ + 52.480451, + 13.3133528 + ], + [ + 52.4805356, + 13.3133849 + ], + [ + 52.4806447, + 13.3134187 + ], + [ + 52.4807483, + 13.3134423 + ], + [ + 52.4812019, + 13.3135048 + ], + [ + 52.4812913, + 13.3135221 + ] + ] + }, + { + "osmId": "374930733", + "name": "U3", + "lengthMeters": 93.58086789535082, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4795953, + 13.3126628 + ], + [ + 52.479476, + 13.3125843 + ], + [ + 52.4793923, + 13.3125329 + ], + [ + 52.4793069, + 13.3124909 + ], + [ + 52.4792204, + 13.3124588 + ], + [ + 52.4790967, + 13.3124309 + ], + [ + 52.4789904, + 13.3124173 + ], + [ + 52.4789006, + 13.3124166 + ], + [ + 52.4787764, + 13.3124328 + ] + ] + }, + { + "osmId": "374931224", + "name": null, + "lengthMeters": 546.8500644242059, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893296, + 13.2994022 + ], + [ + 52.48948, + 13.2991738 + ], + [ + 52.4896251, + 13.2989453 + ], + [ + 52.4898407, + 13.2986028 + ], + [ + 52.4900628, + 13.298269 + ], + [ + 52.4905411, + 13.2976146 + ], + [ + 52.4906541, + 13.2974613 + ], + [ + 52.4911387, + 13.2968101 + ], + [ + 52.4914932, + 13.2963328 + ], + [ + 52.4919413, + 13.2957494 + ], + [ + 52.4922536, + 13.295402 + ], + [ + 52.4925869, + 13.295076 + ], + [ + 52.492735, + 13.2949399 + ], + [ + 52.4929774, + 13.2947103 + ], + [ + 52.4932071, + 13.2944743 + ] + ] + }, + { + "osmId": "374931225", + "name": null, + "lengthMeters": 115.71158020635528, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4807891, + 13.3106585 + ], + [ + 52.4806804, + 13.3108009 + ], + [ + 52.4805757, + 13.3109394 + ], + [ + 52.4803149, + 13.3112942 + ], + [ + 52.480078, + 13.3116389 + ], + [ + 52.4800303, + 13.3117097 + ], + [ + 52.479995, + 13.3117621 + ] + ] + }, + { + "osmId": "374931226", + "name": null, + "lengthMeters": 497.7728328832268, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4791338, + 13.313277 + ], + [ + 52.4789861, + 13.3135957 + ], + [ + 52.4788394, + 13.3139443 + ], + [ + 52.4787538, + 13.3141629 + ], + [ + 52.4785761, + 13.3146478 + ], + [ + 52.4784705, + 13.314966 + ], + [ + 52.4783877, + 13.3152341 + ], + [ + 52.4782811, + 13.3156029 + ], + [ + 52.4781841, + 13.3159764 + ], + [ + 52.4781144, + 13.3162689 + ], + [ + 52.4780447, + 13.3165839 + ], + [ + 52.4779721, + 13.3169433 + ], + [ + 52.4779132, + 13.3172676 + ], + [ + 52.47784, + 13.317726 + ], + [ + 52.4777657, + 13.3182581 + ], + [ + 52.4777154, + 13.3187121 + ], + [ + 52.4776833, + 13.3190816 + ], + [ + 52.4776603, + 13.3194677 + ], + [ + 52.4776488, + 13.3197933 + ], + [ + 52.4776432, + 13.320081 + ] + ] + }, + { + "osmId": "374931227", + "name": null, + "lengthMeters": 253.16080878588502, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4792322, + 13.3133149 + ], + [ + 52.4792377, + 13.3133043 + ], + [ + 52.4793321, + 13.3131235 + ], + [ + 52.4795392, + 13.3127531 + ], + [ + 52.4798814, + 13.3121792 + ], + [ + 52.4801057, + 13.3118403 + ], + [ + 52.4801339, + 13.311799 + ], + [ + 52.480308, + 13.3115423 + ], + [ + 52.4803131, + 13.3115348 + ], + [ + 52.4804521, + 13.3113393 + ], + [ + 52.4805593, + 13.3111811 + ], + [ + 52.4806206, + 13.3110936 + ], + [ + 52.4807361, + 13.3109335 + ], + [ + 52.4808735, + 13.3107305 + ] + ] + }, + { + "osmId": "374939922", + "name": null, + "lengthMeters": 1362.8863967465181, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1070677, + 11.5961878 + ], + [ + 48.1072738, + 11.5960986 + ], + [ + 48.1076813, + 11.595925 + ], + [ + 48.1078012, + 11.5958698 + ], + [ + 48.1084222, + 11.5956055 + ], + [ + 48.1087041, + 11.5954864 + ], + [ + 48.1088793, + 11.5954118 + ], + [ + 48.1089672, + 11.595376 + ], + [ + 48.1090586, + 11.5953391 + ], + [ + 48.109201, + 11.5952822 + ], + [ + 48.1099057, + 11.5950178 + ], + [ + 48.1102318, + 11.5949 + ], + [ + 48.1103539, + 11.594859 + ], + [ + 48.1105777, + 11.5947837 + ], + [ + 48.1107223, + 11.5947309 + ], + [ + 48.1107784, + 11.5947038 + ], + [ + 48.1108174, + 11.5946836 + ], + [ + 48.1108578, + 11.5946594 + ], + [ + 48.1109074, + 11.5946285 + ], + [ + 48.1109631, + 11.5945886 + ], + [ + 48.1110191, + 11.5945456 + ], + [ + 48.111067, + 11.5945036 + ], + [ + 48.1111162, + 11.5944543 + ], + [ + 48.1111711, + 11.5943911 + ], + [ + 48.1113031, + 11.5942432 + ], + [ + 48.111443, + 11.5940758 + ], + [ + 48.1115775, + 11.5939217 + ], + [ + 48.1117765, + 11.5936898 + ], + [ + 48.1118773, + 11.5935741 + ], + [ + 48.111981, + 11.5934593 + ], + [ + 48.1120591, + 11.5933833 + ], + [ + 48.1121537, + 11.5933071 + ], + [ + 48.1122261, + 11.5932537 + ], + [ + 48.1123022, + 11.5932067 + ], + [ + 48.1123645, + 11.5931727 + ], + [ + 48.1124348, + 11.5931402 + ], + [ + 48.1124937, + 11.5931183 + ], + [ + 48.1125586, + 11.5930939 + ], + [ + 48.1127159, + 11.5930357 + ], + [ + 48.1128732, + 11.5929792 + ], + [ + 48.1130791, + 11.5929117 + ], + [ + 48.1131946, + 11.5928731 + ], + [ + 48.1132978, + 11.5928411 + ], + [ + 48.1134873, + 11.5927895 + ], + [ + 48.1135829, + 11.5927622 + ], + [ + 48.113678, + 11.5927377 + ], + [ + 48.1138666, + 11.5926961 + ], + [ + 48.1139858, + 11.5926705 + ], + [ + 48.1141549, + 11.59264 + ], + [ + 48.114283, + 11.592623 + ], + [ + 48.1144154, + 11.5925991 + ], + [ + 48.1147053, + 11.5925516 + ], + [ + 48.114747, + 11.592546 + ], + [ + 48.1148145, + 11.5925329 + ], + [ + 48.1148989, + 11.5925074 + ], + [ + 48.1149842, + 11.5924706 + ], + [ + 48.1150332, + 11.592449 + ], + [ + 48.1150892, + 11.5924199 + ], + [ + 48.1151223, + 11.5924014 + ], + [ + 48.1151546, + 11.592382 + ], + [ + 48.1151956, + 11.5923542 + ], + [ + 48.1152206, + 11.5923365 + ], + [ + 48.1152538, + 11.5923122 + ], + [ + 48.115305, + 11.592269 + ], + [ + 48.1153373, + 11.5922407 + ], + [ + 48.1153517, + 11.5922295 + ], + [ + 48.1153772, + 11.5922062 + ], + [ + 48.1154144, + 11.5921693 + ], + [ + 48.1154556, + 11.5921266 + ], + [ + 48.1154913, + 11.5920882 + ], + [ + 48.1157287, + 11.5917968 + ], + [ + 48.1158731, + 11.5916272 + ], + [ + 48.1160172, + 11.5914509 + ], + [ + 48.1164439, + 11.5909366 + ], + [ + 48.116677, + 11.5906599 + ], + [ + 48.1168753, + 11.5904246 + ], + [ + 48.1169055, + 11.5903915 + ], + [ + 48.1169332, + 11.5903531 + ], + [ + 48.116958, + 11.5903167 + ], + [ + 48.1169824, + 11.5902718 + ], + [ + 48.1170004, + 11.5902366 + ], + [ + 48.117012, + 11.590202 + ], + [ + 48.1170285, + 11.590147 + ], + [ + 48.1170414, + 11.5900917 + ], + [ + 48.1170456, + 11.5900649 + ], + [ + 48.1170538, + 11.590014 + ], + [ + 48.1170908, + 11.5896797 + ], + [ + 48.1171293, + 11.5893237 + ], + [ + 48.1171522, + 11.5891046 + ], + [ + 48.1171886, + 11.5887674 + ], + [ + 48.1172025, + 11.5886397 + ], + [ + 48.1172393, + 11.5882855 + ] + ] + }, + { + "osmId": "374939923", + "name": null, + "lengthMeters": 420.4287622522833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1070411, + 11.5961587 + ], + [ + 48.1068982, + 11.5962254 + ], + [ + 48.1067528, + 11.5962876 + ], + [ + 48.1066533, + 11.5963283 + ], + [ + 48.1065543, + 11.5963687 + ], + [ + 48.1062837, + 11.5964718 + ], + [ + 48.1061266, + 11.5965277 + ], + [ + 48.1059908, + 11.5965734 + ], + [ + 48.1059158, + 11.5965984 + ], + [ + 48.1058285, + 11.5966238 + ], + [ + 48.1056963, + 11.5966654 + ], + [ + 48.1055967, + 11.596693 + ], + [ + 48.1055031, + 11.59672 + ], + [ + 48.1053532, + 11.5967583 + ], + [ + 48.1052415, + 11.5967813 + ], + [ + 48.1051507, + 11.5967982 + ], + [ + 48.1050802, + 11.5968113 + ], + [ + 48.1050198, + 11.5968209 + ], + [ + 48.1049817, + 11.5968252 + ], + [ + 48.1049581, + 11.5968272 + ], + [ + 48.1048875, + 11.5968337 + ], + [ + 48.1047164, + 11.5968388 + ], + [ + 48.1044444, + 11.596831 + ], + [ + 48.1041216, + 11.5968154 + ], + [ + 48.1037975, + 11.5968 + ], + [ + 48.1033118, + 11.5967781 + ] + ] + }, + { + "osmId": "374945237", + "name": null, + "lengthMeters": 79.73682388964656, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0762147, + 11.5499066 + ], + [ + 48.0764894, + 11.550044 + ], + [ + 48.0766213, + 11.5501055 + ], + [ + 48.0768197, + 11.5502 + ], + [ + 48.0768965, + 11.550239 + ] + ] + }, + { + "osmId": "374945239", + "name": null, + "lengthMeters": 139.79131428520586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.0762147, + 11.5499066 + ], + [ + 48.0761944, + 11.5499117 + ], + [ + 48.0761727, + 11.5499194 + ], + [ + 48.0761497, + 11.5499284 + ], + [ + 48.0761197, + 11.5499426 + ], + [ + 48.0760989, + 11.5499556 + ], + [ + 48.0760798, + 11.5499728 + ], + [ + 48.0760461, + 11.5500096 + ], + [ + 48.0760253, + 11.5500372 + ], + [ + 48.076015, + 11.5500528 + ], + [ + 48.0760015, + 11.5500722 + ], + [ + 48.0759874, + 11.5500939 + ], + [ + 48.075977, + 11.5501162 + ], + [ + 48.0759683, + 11.550138 + ], + [ + 48.0759618, + 11.5501602 + ], + [ + 48.0759568, + 11.5501851 + ], + [ + 48.0759519, + 11.550211 + ], + [ + 48.075949, + 11.5502431 + ], + [ + 48.0759485, + 11.5502779 + ], + [ + 48.0759494, + 11.5503108 + ], + [ + 48.0759544, + 11.550347 + ], + [ + 48.0759607, + 11.550381 + ], + [ + 48.0759697, + 11.5504148 + ], + [ + 48.0759796, + 11.5504463 + ], + [ + 48.0759893, + 11.5504763 + ], + [ + 48.0760043, + 11.5505089 + ], + [ + 48.0760213, + 11.5505403 + ], + [ + 48.0760423, + 11.5505707 + ], + [ + 48.0760537, + 11.5505853 + ], + [ + 48.0760661, + 11.5505981 + ], + [ + 48.0760795, + 11.5506099 + ], + [ + 48.0760949, + 11.5506231 + ], + [ + 48.0761072, + 11.5506312 + ], + [ + 48.0761215, + 11.5506378 + ], + [ + 48.0761378, + 11.5506449 + ], + [ + 48.076154, + 11.55065 + ], + [ + 48.0761719, + 11.5506534 + ], + [ + 48.0761894, + 11.5506542 + ], + [ + 48.0762081, + 11.5506543 + ], + [ + 48.0762241, + 11.5506521 + ], + [ + 48.0762429, + 11.5506474 + ], + [ + 48.0762589, + 11.5506423 + ], + [ + 48.0762794, + 11.5506312 + ], + [ + 48.0763009, + 11.5506165 + ], + [ + 48.0763254, + 11.5505966 + ], + [ + 48.0763504, + 11.55057 + ], + [ + 48.076478, + 11.550439 + ], + [ + 48.0765095, + 11.5504043 + ], + [ + 48.0765393, + 11.5503714 + ], + [ + 48.0765731, + 11.5503384 + ], + [ + 48.0765857, + 11.5503247 + ], + [ + 48.0765988, + 11.550314 + ] + ] + }, + { + "osmId": "375072765", + "name": null, + "lengthMeters": 105.12167128067072, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1708954, + 11.5285348 + ], + [ + 48.1699529, + 11.5286454 + ] + ] + }, + { + "osmId": "375095875", + "name": null, + "lengthMeters": 82.67415736554113, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4881222, + 13.3711231 + ], + [ + 52.488405, + 13.3711218 + ], + [ + 52.4888535, + 13.3711198 + ], + [ + 52.4888657, + 13.3711203 + ] + ] + }, + { + "osmId": "375331572", + "name": "Berliner Ringbahn", + "lengthMeters": 142.57616307326595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197741, + 13.4721277 + ], + [ + 52.5204314, + 13.4716163 + ], + [ + 52.520933, + 13.471226 + ] + ] + }, + { + "osmId": "375331584", + "name": "Berliner Ringbahn", + "lengthMeters": 564.5024585921512, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520933, + 13.471226 + ], + [ + 52.5211655, + 13.471035 + ], + [ + 52.5214045, + 13.4708337 + ], + [ + 52.5216229, + 13.4706113 + ], + [ + 52.5216305, + 13.4706033 + ], + [ + 52.5217388, + 13.4704921 + ], + [ + 52.5218834, + 13.470336 + ], + [ + 52.5220839, + 13.4700913 + ], + [ + 52.52228, + 13.4698319 + ], + [ + 52.522417, + 13.4696305 + ], + [ + 52.5225495, + 13.4694218 + ], + [ + 52.5226832, + 13.4691976 + ], + [ + 52.5228136, + 13.4689624 + ], + [ + 52.5229092, + 13.4687713 + ], + [ + 52.5230025, + 13.4685766 + ], + [ + 52.523177, + 13.468178 + ], + [ + 52.5232949, + 13.4678739 + ], + [ + 52.5234049, + 13.4675625 + ], + [ + 52.5234977, + 13.4672697 + ], + [ + 52.5235848, + 13.4669696 + ], + [ + 52.5237457, + 13.4663283 + ], + [ + 52.5238086, + 13.4660771 + ], + [ + 52.5238118, + 13.466063 + ], + [ + 52.5238611, + 13.4658557 + ], + [ + 52.5239393, + 13.4655129 + ], + [ + 52.5239986, + 13.4652155 + ], + [ + 52.5240361, + 13.465008 + ], + [ + 52.5240387, + 13.4649928 + ] + ] + }, + { + "osmId": "375331591", + "name": "Berliner Ringbahn", + "lengthMeters": 206.2987323395005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5211451, + 13.470961 + ], + [ + 52.5206418, + 13.4713622 + ], + [ + 52.5197544, + 13.4720535 + ], + [ + 52.5194693, + 13.4722692 + ] + ] + }, + { + "osmId": "375331598", + "name": "Berliner Ringbahn", + "lengthMeters": 217.13458826201133, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5157483, + 13.4743967 + ], + [ + 52.5152394, + 13.4746848 + ], + [ + 52.5148231, + 13.4749123 + ], + [ + 52.5146507, + 13.474992 + ], + [ + 52.5144783, + 13.4750663 + ], + [ + 52.5143307, + 13.475117 + ], + [ + 52.5141798, + 13.4751635 + ], + [ + 52.5138688, + 13.4752361 + ] + ] + }, + { + "osmId": "375331609", + "name": null, + "lengthMeters": 180.71688879891872, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5159583, + 13.4739137 + ], + [ + 52.5158915, + 13.4739515 + ], + [ + 52.5155838, + 13.4741202 + ], + [ + 52.5152869, + 13.4742884 + ], + [ + 52.5152775, + 13.4742937 + ], + [ + 52.5150814, + 13.4744065 + ], + [ + 52.5146847, + 13.4746348 + ], + [ + 52.51466, + 13.4746506 + ], + [ + 52.5145767, + 13.4747039 + ], + [ + 52.5144445, + 13.4747915 + ], + [ + 52.5144262, + 13.4748034 + ] + ] + }, + { + "osmId": "375331614", + "name": null, + "lengthMeters": 187.9058778180049, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5234342, + 13.4664422 + ], + [ + 52.5234373, + 13.466429 + ], + [ + 52.5235258, + 13.466049 + ], + [ + 52.5236183, + 13.4656517 + ], + [ + 52.5237279, + 13.4652124 + ], + [ + 52.5238271, + 13.4648451 + ], + [ + 52.5240107, + 13.4642021 + ], + [ + 52.5240725, + 13.4639902 + ], + [ + 52.5241015, + 13.4638921 + ] + ] + }, + { + "osmId": "375331620", + "name": null, + "lengthMeters": 82.6108219096958, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205956, + 13.4719979 + ], + [ + 52.5205082, + 13.4707854 + ] + ] + }, + { + "osmId": "375331624", + "name": null, + "lengthMeters": 82.91195215145088, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5204707, + 13.4708072 + ], + [ + 52.5205064, + 13.4712116 + ], + [ + 52.5205699, + 13.4720217 + ] + ] + }, + { + "osmId": "375331627", + "name": null, + "lengthMeters": 136.04343869520272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5198404, + 13.4712997 + ], + [ + 52.5199442, + 13.4712325 + ], + [ + 52.5203801, + 13.4709848 + ], + [ + 52.5206167, + 13.4708566 + ], + [ + 52.5209962, + 13.4706409 + ] + ] + }, + { + "osmId": "375331630", + "name": null, + "lengthMeters": 327.2416099786764, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5204933, + 13.4706136 + ], + [ + 52.5204195, + 13.4697634 + ], + [ + 52.520401, + 13.4695496 + ], + [ + 52.5204004, + 13.4695424 + ], + [ + 52.5203997, + 13.469535 + ], + [ + 52.5203934, + 13.4694613 + ], + [ + 52.520387, + 13.4693877 + ], + [ + 52.5203231, + 13.4686453 + ], + [ + 52.5202709, + 13.4680338 + ], + [ + 52.5202116, + 13.4673014 + ], + [ + 52.5202109, + 13.4672932 + ], + [ + 52.5201918, + 13.4670569 + ], + [ + 52.5201294, + 13.466183 + ], + [ + 52.520104, + 13.4658198 + ] + ] + }, + { + "osmId": "375331633", + "name": null, + "lengthMeters": 136.1558948119546, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209853, + 13.4705916 + ], + [ + 52.52061, + 13.4708049 + ], + [ + 52.5203774, + 13.4709333 + ], + [ + 52.5198264, + 13.4712413 + ] + ] + }, + { + "osmId": "375348222", + "name": null, + "lengthMeters": 190.21800840541064, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5455429, + 13.4243158 + ], + [ + 52.5454217, + 13.4245386 + ], + [ + 52.5453381, + 13.4246898 + ], + [ + 52.5452431, + 13.4248607 + ], + [ + 52.5451267, + 13.4250793 + ], + [ + 52.5450171, + 13.4252984 + ], + [ + 52.5449078, + 13.4255198 + ], + [ + 52.5447775, + 13.425819 + ], + [ + 52.5446853, + 13.4260442 + ], + [ + 52.5446103, + 13.4262424 + ], + [ + 52.5445496, + 13.4264109 + ], + [ + 52.5445032, + 13.42654 + ] + ] + }, + { + "osmId": "375348223", + "name": null, + "lengthMeters": 690.5124643566974, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5454299, + 13.4246561 + ], + [ + 52.5454517, + 13.4246106 + ], + [ + 52.5454582, + 13.4245969 + ], + [ + 52.5455603, + 13.4243917 + ], + [ + 52.5457968, + 13.423939 + ], + [ + 52.546232, + 13.4231488 + ], + [ + 52.5467997, + 13.42212 + ], + [ + 52.5473912, + 13.4210344 + ], + [ + 52.5474836, + 13.4208473 + ], + [ + 52.5475657, + 13.420651 + ], + [ + 52.5477305, + 13.4202455 + ], + [ + 52.5478214, + 13.4199715 + ], + [ + 52.5480082, + 13.4194079 + ], + [ + 52.5480778, + 13.4191962 + ], + [ + 52.5483154, + 13.4184795 + ], + [ + 52.5484123, + 13.4181943 + ], + [ + 52.5485786, + 13.4177321 + ], + [ + 52.5487471, + 13.4172949 + ], + [ + 52.5489064, + 13.4168862 + ], + [ + 52.5489895, + 13.4166687 + ], + [ + 52.5490355, + 13.4165505 + ], + [ + 52.549071, + 13.4164459 + ] + ] + }, + { + "osmId": "375348224", + "name": null, + "lengthMeters": 827.7616103402296, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443149, + 13.4270814 + ], + [ + 52.5443103, + 13.4270949 + ], + [ + 52.5441646, + 13.4275172 + ], + [ + 52.5434831, + 13.429489 + ], + [ + 52.5433651, + 13.4298732 + ], + [ + 52.543263, + 13.4302266 + ], + [ + 52.5432249, + 13.4303717 + ], + [ + 52.543046, + 13.431049 + ], + [ + 52.5428707, + 13.43172 + ], + [ + 52.5427344, + 13.4322454 + ], + [ + 52.5426012, + 13.4327313 + ], + [ + 52.542472, + 13.433156 + ], + [ + 52.5422822, + 13.433697 + ], + [ + 52.5422345, + 13.4338259 + ], + [ + 52.5421458, + 13.4340667 + ], + [ + 52.5419654, + 13.4345523 + ], + [ + 52.5418243, + 13.434932 + ], + [ + 52.5412911, + 13.4363689 + ], + [ + 52.5412315, + 13.4365288 + ], + [ + 52.5410388, + 13.4370459 + ], + [ + 52.5408858, + 13.4374283 + ], + [ + 52.5407569, + 13.4377208 + ], + [ + 52.5407284, + 13.4377816 + ] + ] + }, + { + "osmId": "375361370", + "name": null, + "lengthMeters": 641.9761553994596, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5488787, + 13.4166412 + ], + [ + 52.5487483, + 13.4170468 + ], + [ + 52.5486672, + 13.4173007 + ], + [ + 52.5486072, + 13.4174835 + ], + [ + 52.5484615, + 13.4179271 + ], + [ + 52.5484044, + 13.4180993 + ], + [ + 52.5479387, + 13.4195021 + ], + [ + 52.5477824, + 13.4199728 + ], + [ + 52.5476921, + 13.4202298 + ], + [ + 52.5475353, + 13.420623 + ], + [ + 52.5473669, + 13.4210001 + ], + [ + 52.5462075, + 13.4231129 + ], + [ + 52.5457677, + 13.4239101 + ], + [ + 52.5455429, + 13.4243158 + ] + ] + }, + { + "osmId": "375386235", + "name": null, + "lengthMeters": 649.0568468196607, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500786, + 13.4138619 + ], + [ + 52.5505955, + 13.4139357 + ], + [ + 52.5521488, + 13.4142111 + ], + [ + 52.5540172, + 13.4146003 + ], + [ + 52.5544138, + 13.4146646 + ], + [ + 52.5545355, + 13.4146719 + ], + [ + 52.5546373, + 13.4146702 + ], + [ + 52.5547222, + 13.4146687 + ], + [ + 52.5552925, + 13.4145957 + ], + [ + 52.5558836, + 13.4145062 + ] + ] + }, + { + "osmId": "375386236", + "name": null, + "lengthMeters": 649.2994186839426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.548567, + 13.4134946 + ], + [ + 52.5484348, + 13.4134827 + ], + [ + 52.5481427, + 13.4134672 + ], + [ + 52.5478466, + 13.4134216 + ], + [ + 52.5475688, + 13.4133566 + ], + [ + 52.5471747, + 13.4132481 + ], + [ + 52.5453031, + 13.4127463 + ], + [ + 52.5438916, + 13.4123679 + ], + [ + 52.5436666, + 13.412329 + ], + [ + 52.5430158, + 13.4122739 + ], + [ + 52.542784, + 13.4122401 + ] + ] + }, + { + "osmId": "375386237", + "name": null, + "lengthMeters": 169.67032751914948, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500833, + 13.4137729 + ], + [ + 52.5499462, + 13.4137405 + ], + [ + 52.5498182, + 13.4137128 + ], + [ + 52.5492892, + 13.413613 + ], + [ + 52.5487285, + 13.4135173 + ], + [ + 52.548567, + 13.4134946 + ] + ] + }, + { + "osmId": "375386238", + "name": null, + "lengthMeters": 170.12678176437876, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485556, + 13.4136287 + ], + [ + 52.5487276, + 13.4136599 + ], + [ + 52.5488839, + 13.4136878 + ], + [ + 52.5491008, + 13.4137213 + ], + [ + 52.5496958, + 13.413824 + ], + [ + 52.5498089, + 13.4138421 + ], + [ + 52.5500786, + 13.4138619 + ] + ] + }, + { + "osmId": "375522054", + "name": "U7", + "lengthMeters": 211.67348784890717, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697267, + 13.4416287 + ], + [ + 52.4692369, + 13.4415479 + ], + [ + 52.4685723, + 13.4416734 + ], + [ + 52.468201, + 13.4417787 + ], + [ + 52.4680763, + 13.4418208 + ], + [ + 52.4678491, + 13.4419386 + ] + ] + }, + { + "osmId": "375522057", + "name": "U7", + "lengthMeters": 194.34548595183787, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4678565, + 13.4420125 + ], + [ + 52.4680897, + 13.4420394 + ], + [ + 52.4684412, + 13.4419806 + ], + [ + 52.4686375, + 13.4419422 + ], + [ + 52.4691125, + 13.4418492 + ], + [ + 52.4692104, + 13.441828 + ], + [ + 52.4695898, + 13.4417123 + ] + ] + }, + { + "osmId": "375522060", + "name": "U7", + "lengthMeters": 218.3332556132858, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4754695, + 13.4396821 + ], + [ + 52.4759906, + 13.4394091 + ], + [ + 52.4761411, + 13.4393397 + ], + [ + 52.4765134, + 13.439168 + ], + [ + 52.4767738, + 13.4390363 + ], + [ + 52.4770255, + 13.4388679 + ], + [ + 52.4773419, + 13.4387185 + ] + ] + }, + { + "osmId": "375542990", + "name": "U6", + "lengthMeters": 2203.7446978558382, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4706935, + 13.3856457 + ], + [ + 52.4709708, + 13.3856507 + ], + [ + 52.471195, + 13.385683 + ], + [ + 52.4713921, + 13.3857378 + ], + [ + 52.4715771, + 13.3858122 + ], + [ + 52.4721032, + 13.3860608 + ], + [ + 52.4723623, + 13.3861167 + ], + [ + 52.4726399, + 13.3861514 + ], + [ + 52.4729361, + 13.3861607 + ], + [ + 52.473527, + 13.3861688 + ], + [ + 52.4746023, + 13.386193 + ], + [ + 52.477039, + 13.3862663 + ], + [ + 52.4776878, + 13.3863648 + ], + [ + 52.4777858, + 13.3863666 + ], + [ + 52.4781142, + 13.3863747 + ], + [ + 52.4785896, + 13.3863856 + ], + [ + 52.4788198, + 13.3863772 + ], + [ + 52.4791457, + 13.3863366 + ], + [ + 52.479346, + 13.3863227 + ], + [ + 52.480723, + 13.3863507 + ], + [ + 52.4817519, + 13.3863714 + ], + [ + 52.4824663, + 13.3863928 + ], + [ + 52.4827441, + 13.3863909 + ], + [ + 52.482941, + 13.3863861 + ], + [ + 52.4831357, + 13.386366 + ], + [ + 52.4833891, + 13.3862917 + ], + [ + 52.4839482, + 13.386057 + ], + [ + 52.4841373, + 13.3859945 + ], + [ + 52.4843687, + 13.3859476 + ], + [ + 52.4847188, + 13.3859357 + ], + [ + 52.4864549, + 13.3859859 + ], + [ + 52.4871079, + 13.3859213 + ], + [ + 52.487542, + 13.3859506 + ], + [ + 52.4881065, + 13.3860153 + ], + [ + 52.4887288, + 13.3861086 + ], + [ + 52.4893176, + 13.3862193 + ], + [ + 52.489694, + 13.3863041 + ], + [ + 52.4904229, + 13.3865002 + ] + ] + }, + { + "osmId": "375542991", + "name": "U6", + "lengthMeters": 1373.2150360134385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4595335, + 13.3844492 + ], + [ + 52.4591071, + 13.3844011 + ], + [ + 52.4588299, + 13.3843601 + ], + [ + 52.4583797, + 13.3842545 + ], + [ + 52.4575053, + 13.3840453 + ], + [ + 52.4569802, + 13.3839558 + ], + [ + 52.4565119, + 13.3839318 + ], + [ + 52.4561528, + 13.3839546 + ], + [ + 52.4557594, + 13.3840087 + ], + [ + 52.4548826, + 13.3841692 + ], + [ + 52.4543803, + 13.384264 + ], + [ + 52.4535479, + 13.3844188 + ], + [ + 52.4533932, + 13.3844476 + ], + [ + 52.4526906, + 13.3845712 + ], + [ + 52.4519669, + 13.3846247 + ], + [ + 52.4502416, + 13.3849472 + ], + [ + 52.4477058, + 13.3854253 + ], + [ + 52.4472529, + 13.3854665 + ] + ] + }, + { + "osmId": "375542992", + "name": "U6", + "lengthMeters": 239.36100154914052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4707488, + 13.3854793 + ], + [ + 52.4703421, + 13.3854713 + ], + [ + 52.469892, + 13.385507 + ], + [ + 52.4691578, + 13.3855955 + ], + [ + 52.4685993, + 13.3856378 + ] + ] + }, + { + "osmId": "375862377", + "name": "3a", + "lengthMeters": 100.57640457170041, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5299067, + 10.3149017 + ], + [ + 53.5299095, + 10.3149727 + ], + [ + 53.5299125, + 10.3150476 + ], + [ + 53.5299317, + 10.3155349 + ], + [ + 53.529947, + 10.3158748 + ], + [ + 53.529966, + 10.3164201 + ] + ] + }, + { + "osmId": "375887589", + "name": null, + "lengthMeters": 1658.9582882343868, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5159093, + 13.2612578 + ], + [ + 52.515861, + 13.2614162 + ], + [ + 52.5157996, + 13.2615966 + ], + [ + 52.5157601, + 13.2616969 + ], + [ + 52.5156975, + 13.2618433 + ], + [ + 52.5156092, + 13.2620284 + ], + [ + 52.5155255, + 13.2621867 + ], + [ + 52.5146006, + 13.2637523 + ], + [ + 52.5128509, + 13.266719 + ], + [ + 52.5123961, + 13.2675132 + ], + [ + 52.511977, + 13.2682039 + ], + [ + 52.5119244, + 13.2682857 + ], + [ + 52.5118059, + 13.2684659 + ], + [ + 52.5117105, + 13.268602 + ], + [ + 52.5115851, + 13.2687708 + ], + [ + 52.5113852, + 13.2690207 + ], + [ + 52.5111334, + 13.2694113 + ], + [ + 52.5109634, + 13.2696383 + ], + [ + 52.5107325, + 13.2699211 + ], + [ + 52.5106219, + 13.2700918 + ], + [ + 52.5105467, + 13.2702168 + ], + [ + 52.5104245, + 13.2704368 + ], + [ + 52.5103488, + 13.27059 + ], + [ + 52.5102918, + 13.2707367 + ], + [ + 52.5102323, + 13.2708968 + ], + [ + 52.5101946, + 13.2710112 + ], + [ + 52.5101544, + 13.271154 + ], + [ + 52.5100917, + 13.2714229 + ], + [ + 52.5100019, + 13.2718078 + ], + [ + 52.5097807, + 13.2731761 + ], + [ + 52.5097495, + 13.2733695 + ], + [ + 52.5095917, + 13.2744169 + ], + [ + 52.5095829, + 13.2745026 + ], + [ + 52.5095669, + 13.2747059 + ], + [ + 52.5095588, + 13.2748815 + ], + [ + 52.5095558, + 13.2750561 + ], + [ + 52.509558, + 13.2752015 + ], + [ + 52.5095627, + 13.2753489 + ], + [ + 52.5099793, + 13.2817472 + ] + ] + }, + { + "osmId": "375892503", + "name": null, + "lengthMeters": 1638.52376052786, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100197, + 13.2817393 + ], + [ + 52.5096123, + 13.2755049 + ], + [ + 52.5096011, + 13.2753281 + ], + [ + 52.5095958, + 13.2751802 + ], + [ + 52.5095949, + 13.2749722 + ], + [ + 52.5096004, + 13.2747955 + ], + [ + 52.5096113, + 13.2746182 + ], + [ + 52.5096251, + 13.2744726 + ], + [ + 52.5097125, + 13.2738991 + ], + [ + 52.5098011, + 13.273392 + ], + [ + 52.5098574, + 13.2730591 + ], + [ + 52.5099921, + 13.2722497 + ], + [ + 52.5100106, + 13.2721419 + ], + [ + 52.5100725, + 13.2718584 + ], + [ + 52.5101366, + 13.2716009 + ], + [ + 52.5101725, + 13.271463 + ], + [ + 52.5103574, + 13.2710237 + ], + [ + 52.5104858, + 13.2707467 + ], + [ + 52.5105892, + 13.2705597 + ], + [ + 52.5107639, + 13.2702593 + ], + [ + 52.5111379, + 13.2695609 + ], + [ + 52.5112695, + 13.2693203 + ], + [ + 52.5113748, + 13.2691599 + ], + [ + 52.511681, + 13.2687485 + ], + [ + 52.5118442, + 13.2685172 + ], + [ + 52.5120139, + 13.268256 + ], + [ + 52.5146369, + 13.2638207 + ], + [ + 52.5156219, + 13.2621445 + ], + [ + 52.5157165, + 13.261968 + ], + [ + 52.5158049, + 13.2617838 + ], + [ + 52.515867, + 13.2616396 + ], + [ + 52.515922, + 13.2614915 + ] + ] + }, + { + "osmId": "375935979", + "name": "U4", + "lengthMeters": 88.79481513648946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4795989, + 13.3433332 + ], + [ + 52.479166, + 13.3434977 + ], + [ + 52.4789696, + 13.3435935 + ], + [ + 52.4788266, + 13.3436641 + ] + ] + }, + { + "osmId": "375935982", + "name": null, + "lengthMeters": 481.4804994642386, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4781531, + 13.3400239 + ], + [ + 52.4781311, + 13.339359 + ], + [ + 52.4781115, + 13.3387574 + ], + [ + 52.4780959, + 13.3382442 + ], + [ + 52.4780658, + 13.3374541 + ], + [ + 52.4780325, + 13.3366689 + ], + [ + 52.4779874, + 13.3359969 + ], + [ + 52.4779256, + 13.3351119 + ], + [ + 52.4779013, + 13.3347853 + ], + [ + 52.4777719, + 13.332945 + ] + ] + }, + { + "osmId": "375935983", + "name": null, + "lengthMeters": 198.67987515705158, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4780399, + 13.3396738 + ], + [ + 52.4780387, + 13.3403435 + ], + [ + 52.47804, + 13.3407813 + ], + [ + 52.4780446, + 13.3424516 + ], + [ + 52.4780448, + 13.3425243 + ], + [ + 52.4780451, + 13.3426074 + ] + ] + }, + { + "osmId": "376033745", + "name": null, + "lengthMeters": 80.69955112353699, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5101464, + 13.284599 + ], + [ + 52.5102263, + 13.2857842 + ] + ] + }, + { + "osmId": "376033746", + "name": "U7", + "lengthMeters": 1281.7946197644794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120741, + 13.3051654 + ], + [ + 52.5119125, + 13.305193 + ], + [ + 52.5116953, + 13.3052561 + ], + [ + 52.5110059, + 13.3054217 + ], + [ + 52.5103649, + 13.3055695 + ], + [ + 52.5099553, + 13.3056711 + ], + [ + 52.5078685, + 13.306315 + ], + [ + 52.5076936, + 13.3063727 + ], + [ + 52.5074882, + 13.3064596 + ], + [ + 52.5071537, + 13.3065973 + ], + [ + 52.5068976, + 13.3066701 + ], + [ + 52.5051461, + 13.3071698 + ], + [ + 52.5032231, + 13.3077836 + ], + [ + 52.5030822, + 13.3078209 + ], + [ + 52.5029221, + 13.3078534 + ], + [ + 52.502744, + 13.3078734 + ], + [ + 52.5026178, + 13.3078709 + ], + [ + 52.5024384, + 13.3078646 + ], + [ + 52.5022775, + 13.3078505 + ], + [ + 52.5020983, + 13.3078271 + ], + [ + 52.5020539, + 13.3078177 + ], + [ + 52.5019569, + 13.3077973 + ], + [ + 52.5017441, + 13.3077384 + ], + [ + 52.5014634, + 13.3076434 + ], + [ + 52.5012702, + 13.3075733 + ], + [ + 52.5010929, + 13.3075186 + ], + [ + 52.5008973, + 13.3074666 + ], + [ + 52.5007182, + 13.3074294 + ] + ] + }, + { + "osmId": "376033747", + "name": null, + "lengthMeters": 1268.3245923395962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102263, + 13.2857842 + ], + [ + 52.5105985, + 13.2918766 + ], + [ + 52.5107951, + 13.2949841 + ], + [ + 52.5108497, + 13.2958248 + ], + [ + 52.5109188, + 13.2969006 + ], + [ + 52.5113209, + 13.3028189 + ], + [ + 52.5114298, + 13.3044209 + ] + ] + }, + { + "osmId": "376554721", + "name": null, + "lengthMeters": 336.78374267292105, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7366116, + 9.9078785 + ], + [ + 53.7371556, + 9.9083066 + ], + [ + 53.7374901, + 9.9085779 + ], + [ + 53.7378546, + 9.9088574 + ], + [ + 53.7381667, + 9.9091033 + ], + [ + 53.7384687, + 9.9093345 + ], + [ + 53.7387874, + 9.9095894 + ], + [ + 53.7392915, + 9.9099751 + ], + [ + 53.7393602, + 9.9100291 + ] + ] + }, + { + "osmId": "377118648", + "name": "Berliner Stadtbahn", + "lengthMeters": 75.40066203778623, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5153406, + 13.3371433 + ], + [ + 52.5152582, + 13.337085 + ], + [ + 52.5151721, + 13.3370291 + ], + [ + 52.5149763, + 13.3369095 + ], + [ + 52.5147016, + 13.3367734 + ] + ] + }, + { + "osmId": "377118649", + "name": "Berliner Stadtbahn", + "lengthMeters": 233.6243614120768, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5153581, + 13.3370937 + ], + [ + 52.5154726, + 13.3371834 + ], + [ + 52.5155854, + 13.3372789 + ], + [ + 52.5157352, + 13.3374207 + ], + [ + 52.5158946, + 13.3375897 + ], + [ + 52.5160521, + 13.3377637 + ], + [ + 52.516477, + 13.3382375 + ], + [ + 52.5164998, + 13.3382628 + ], + [ + 52.5170362, + 13.3388626 + ], + [ + 52.5171232, + 13.3389596 + ] + ] + }, + { + "osmId": "377118650", + "name": "Berliner Stadtbahn", + "lengthMeters": 80.0688745403359, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5153842, + 13.3369962 + ], + [ + 52.5152373, + 13.3368711 + ], + [ + 52.5150962, + 13.3367651 + ], + [ + 52.5149976, + 13.3366976 + ], + [ + 52.5148839, + 13.3366279 + ], + [ + 52.5148708, + 13.3366199 + ], + [ + 52.5147219, + 13.3365364 + ] + ] + }, + { + "osmId": "377118651", + "name": "Berliner Stadtbahn", + "lengthMeters": 228.67726381497653, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5153261, + 13.3371869 + ], + [ + 52.5154362, + 13.3372742 + ], + [ + 52.5155075, + 13.3373328 + ], + [ + 52.5155928, + 13.3374077 + ], + [ + 52.5156761, + 13.3374877 + ], + [ + 52.5158107, + 13.3376272 + ], + [ + 52.5159358, + 13.3377645 + ], + [ + 52.5161913, + 13.338053 + ], + [ + 52.5163422, + 13.3382182 + ], + [ + 52.5164895, + 13.338383 + ], + [ + 52.5166382, + 13.3385486 + ], + [ + 52.5169838, + 13.3389351 + ], + [ + 52.5170554, + 13.3390092 + ] + ] + }, + { + "osmId": "377124041", + "name": null, + "lengthMeters": 202.55987472615672, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5051252, + 13.3206401 + ], + [ + 52.5051417, + 13.3204415 + ], + [ + 52.505155, + 13.3202275 + ], + [ + 52.5051604, + 13.3201404 + ], + [ + 52.5051785, + 13.3198065 + ], + [ + 52.5052233, + 13.3190102 + ], + [ + 52.5052472, + 13.3185644 + ], + [ + 52.5052521, + 13.3184742 + ], + [ + 52.5052667, + 13.3182087 + ], + [ + 52.5052719, + 13.318113 + ], + [ + 52.5052749, + 13.318029 + ], + [ + 52.5052755, + 13.3180117 + ], + [ + 52.505277, + 13.3178549 + ], + [ + 52.5052773, + 13.3176887 + ], + [ + 52.5052777, + 13.3176592 + ] + ] + }, + { + "osmId": "377474959", + "name": "Berliner Stadtbahn", + "lengthMeters": 187.50905612494827, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5137069, + 13.4209781 + ], + [ + 52.5135662, + 13.421402 + ], + [ + 52.5134172, + 13.4218305 + ], + [ + 52.5132738, + 13.4222301 + ], + [ + 52.5131197, + 13.4226361 + ], + [ + 52.5129843, + 13.4229467 + ], + [ + 52.512809, + 13.4233182 + ] + ] + }, + { + "osmId": "377474960", + "name": "Berliner Stadtbahn", + "lengthMeters": 190.31177526892992, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5137598, + 13.4209827 + ], + [ + 52.5137663, + 13.4209642 + ], + [ + 52.5137967, + 13.4208741 + ], + [ + 52.5138214, + 13.4208039 + ], + [ + 52.5139871, + 13.4203362 + ], + [ + 52.5141354, + 13.4199149 + ], + [ + 52.5143973, + 13.4191704 + ], + [ + 52.5145179, + 13.4188322 + ], + [ + 52.5145254, + 13.4188125 + ], + [ + 52.5145511, + 13.4187442 + ], + [ + 52.5145894, + 13.418642 + ], + [ + 52.5146228, + 13.4185542 + ] + ] + }, + { + "osmId": "377634132", + "name": "U8", + "lengthMeters": 111.11676241680183, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5204967, + 13.4131624 + ], + [ + 52.5199987, + 13.4138873 + ], + [ + 52.519748, + 13.4142501 + ] + ] + }, + { + "osmId": "378474387", + "name": null, + "lengthMeters": 1074.0380977605603, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253158, + 13.7520673 + ], + [ + 52.5253521, + 13.7526333 + ], + [ + 52.5253692, + 13.7530008 + ], + [ + 52.5253769, + 13.7531402 + ], + [ + 52.5253904, + 13.7533392 + ], + [ + 52.5254639, + 13.7541296 + ], + [ + 52.525473, + 13.7542287 + ], + [ + 52.5254826, + 13.7543256 + ], + [ + 52.5254922, + 13.7544252 + ], + [ + 52.5255651, + 13.7551861 + ], + [ + 52.5256199, + 13.7557858 + ], + [ + 52.5257008, + 13.7566524 + ], + [ + 52.5259235, + 13.7591743 + ], + [ + 52.5259903, + 13.7599288 + ], + [ + 52.5261037, + 13.7612095 + ], + [ + 52.5261125, + 13.7613111 + ], + [ + 52.5262883, + 13.7632159 + ], + [ + 52.526458, + 13.7649611 + ], + [ + 52.5265388, + 13.7656661 + ], + [ + 52.5266141, + 13.766376 + ], + [ + 52.5266535, + 13.7668149 + ], + [ + 52.526742, + 13.7677666 + ] + ] + }, + { + "osmId": "378659151", + "name": "U6", + "lengthMeters": 84.28663126799941, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5252572, + 13.3874814 + ], + [ + 52.5256127, + 13.3874193 + ], + [ + 52.5258505, + 13.38738 + ], + [ + 52.5260112, + 13.3873535 + ] + ] + }, + { + "osmId": "378659152", + "name": "U6", + "lengthMeters": 122.36016476449433, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260496, + 13.3872079 + ], + [ + 52.5256031, + 13.3872745 + ], + [ + 52.5249546, + 13.3873866 + ] + ] + }, + { + "osmId": "378659153", + "name": "U6", + "lengthMeters": 429.89286709496895, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249546, + 13.3873866 + ], + [ + 52.5244784, + 13.3875132 + ], + [ + 52.5240316, + 13.3875887 + ], + [ + 52.521635, + 13.387997 + ], + [ + 52.5213052, + 13.3880381 + ], + [ + 52.521111, + 13.3880521 + ] + ] + }, + { + "osmId": "378664953", + "name": "U6", + "lengthMeters": 135.34415371212768, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307827, + 13.3828762 + ], + [ + 52.5308757, + 13.3827599 + ], + [ + 52.5313256, + 13.3821971 + ], + [ + 52.5317507, + 13.3816632 + ] + ] + }, + { + "osmId": "378664954", + "name": "U6", + "lengthMeters": 617.1139726564733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307384, + 13.3827767 + ], + [ + 52.5305084, + 13.3831104 + ], + [ + 52.5302378, + 13.3834426 + ], + [ + 52.5292709, + 13.3846491 + ], + [ + 52.5278455, + 13.386438 + ], + [ + 52.527574, + 13.3867396 + ], + [ + 52.5274554, + 13.3868451 + ], + [ + 52.5273362, + 13.3869388 + ], + [ + 52.5272375, + 13.3869926 + ], + [ + 52.5271341, + 13.3870412 + ], + [ + 52.5270477, + 13.3870771 + ], + [ + 52.5269471, + 13.3871126 + ], + [ + 52.5265306, + 13.3871803 + ], + [ + 52.5260496, + 13.3872079 + ] + ] + }, + { + "osmId": "378664955", + "name": "U6", + "lengthMeters": 135.04786847909304, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5316981, + 13.3815535 + ], + [ + 52.531286, + 13.3820688 + ], + [ + 52.5309471, + 13.3824968 + ], + [ + 52.5308266, + 13.3826546 + ], + [ + 52.5307384, + 13.3827767 + ] + ] + }, + { + "osmId": "378664956", + "name": "U6", + "lengthMeters": 173.04133235403097, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5350155, + 13.3775864 + ], + [ + 52.5352362, + 13.3773098 + ], + [ + 52.536003, + 13.3763591 + ], + [ + 52.536258, + 13.376046 + ] + ] + }, + { + "osmId": "378885726", + "name": null, + "lengthMeters": 124.5356433118794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5714604, + 10.0658774 + ], + [ + 53.5716449, + 10.0668284 + ], + [ + 53.5718043, + 10.0676262 + ], + [ + 53.5718127, + 10.0676677 + ] + ] + }, + { + "osmId": "378965432", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 102.2385787776949, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6699823, + 13.2590464 + ], + [ + 52.6697192, + 13.2576888 + ], + [ + 52.6697045, + 13.2576011 + ] + ] + }, + { + "osmId": "378965443", + "name": null, + "lengthMeters": 187.9731544179895, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6705423, + 13.2616762 + ], + [ + 52.6703198, + 13.2605873 + ], + [ + 52.6702519, + 13.2602874 + ], + [ + 52.6701495, + 13.259857 + ], + [ + 52.6699823, + 13.2590464 + ] + ] + }, + { + "osmId": "379102293", + "name": "U8", + "lengthMeters": 1032.6974829767305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114901, + 13.4167528 + ], + [ + 52.5126044, + 13.4172935 + ], + [ + 52.5128314, + 13.417418 + ], + [ + 52.512971, + 13.4174864 + ], + [ + 52.5133512, + 13.4176395 + ], + [ + 52.5134965, + 13.4176851 + ], + [ + 52.5140049, + 13.4178259 + ], + [ + 52.5143322, + 13.4179216 + ], + [ + 52.5146497, + 13.4180612 + ], + [ + 52.5150364, + 13.4181918 + ], + [ + 52.5152004, + 13.4182414 + ], + [ + 52.5153735, + 13.4182735 + ], + [ + 52.5155033, + 13.4182837 + ], + [ + 52.5157117, + 13.418292 + ], + [ + 52.5158875, + 13.4182855 + ], + [ + 52.5160419, + 13.4182724 + ], + [ + 52.5161513, + 13.4182567 + ], + [ + 52.5162702, + 13.4182247 + ], + [ + 52.5163837, + 13.4181668 + ], + [ + 52.5164942, + 13.4180804 + ], + [ + 52.5166007, + 13.4179608 + ], + [ + 52.5166925, + 13.4178233 + ], + [ + 52.5168194, + 13.417576 + ], + [ + 52.5172172, + 13.4166391 + ], + [ + 52.5173267, + 13.4163934 + ], + [ + 52.5174642, + 13.416152 + ], + [ + 52.5176067, + 13.4159626 + ], + [ + 52.5177133, + 13.4158534 + ], + [ + 52.5178509, + 13.4157471 + ], + [ + 52.517983, + 13.4156664 + ], + [ + 52.5181139, + 13.4156002 + ], + [ + 52.5182495, + 13.4155431 + ], + [ + 52.5184592, + 13.4154578 + ], + [ + 52.5186192, + 13.4153849 + ], + [ + 52.5187716, + 13.4153059 + ], + [ + 52.5189222, + 13.4152125 + ], + [ + 52.5190739, + 13.4150919 + ], + [ + 52.5192244, + 13.4149606 + ], + [ + 52.5193966, + 13.4147794 + ], + [ + 52.5194981, + 13.4146502 + ], + [ + 52.5195817, + 13.4145376 + ], + [ + 52.5196598, + 13.4144324 + ], + [ + 52.5197789, + 13.414272 + ] + ] + }, + { + "osmId": "380085534", + "name": "U8", + "lengthMeters": 408.1625131574507, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5150525, + 13.4180221 + ], + [ + 52.5146517, + 13.417934 + ], + [ + 52.5142799, + 13.4178416 + ], + [ + 52.51401, + 13.4177734 + ], + [ + 52.5136712, + 13.4176784 + ], + [ + 52.5135608, + 13.4176486 + ], + [ + 52.5130573, + 13.4174693 + ], + [ + 52.5128453, + 13.417367 + ], + [ + 52.5126314, + 13.4172499 + ], + [ + 52.5114816, + 13.4166853 + ] + ] + }, + { + "osmId": "380356147", + "name": null, + "lengthMeters": 219.5695162217219, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5700736, + 13.5278536 + ], + [ + 52.5700832, + 13.527907 + ], + [ + 52.5701041, + 13.5279781 + ], + [ + 52.5701269, + 13.5280318 + ], + [ + 52.5701706, + 13.5280969 + ], + [ + 52.5702184, + 13.5281501 + ], + [ + 52.5702612, + 13.5281784 + ], + [ + 52.5703066, + 13.5281953 + ], + [ + 52.5703618, + 13.5281916 + ], + [ + 52.5704162, + 13.5281781 + ], + [ + 52.5704641, + 13.5281541 + ], + [ + 52.570528, + 13.5281227 + ], + [ + 52.5705713, + 13.5280852 + ], + [ + 52.5706086, + 13.5280267 + ], + [ + 52.5706398, + 13.5279711 + ], + [ + 52.5706646, + 13.5278948 + ], + [ + 52.5706804, + 13.5278227 + ], + [ + 52.5706868, + 13.5277459 + ], + [ + 52.570686, + 13.5276767 + ], + [ + 52.570682, + 13.5275965 + ], + [ + 52.5706383, + 13.527045 + ], + [ + 52.5706234, + 13.5268571 + ], + [ + 52.5706176, + 13.5267957 + ], + [ + 52.5706034, + 13.5267211 + ], + [ + 52.5705699, + 13.5266248 + ], + [ + 52.5705331, + 13.5265565 + ], + [ + 52.570499, + 13.5265084 + ], + [ + 52.5704645, + 13.5264756 + ], + [ + 52.5704279, + 13.5264534 + ], + [ + 52.5703923, + 13.5264405 + ], + [ + 52.5703409, + 13.5264347 + ], + [ + 52.570306, + 13.5264397 + ], + [ + 52.5702406, + 13.5264591 + ], + [ + 52.5701835, + 13.5264783 + ] + ] + }, + { + "osmId": "380391921", + "name": null, + "lengthMeters": 132.15739576249874, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5183757, + 13.2490417 + ], + [ + 52.5173037, + 13.2498851 + ] + ] + }, + { + "osmId": "380391922", + "name": null, + "lengthMeters": 539.8126686515463, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5181459, + 13.2495718 + ], + [ + 52.5185492, + 13.2492565 + ], + [ + 52.5187546, + 13.2491136 + ], + [ + 52.5192225, + 13.248733 + ], + [ + 52.5195569, + 13.2484617 + ], + [ + 52.5202529, + 13.247925 + ], + [ + 52.5205887, + 13.247556 + ], + [ + 52.5208045, + 13.2472962 + ], + [ + 52.5209487, + 13.2471507 + ], + [ + 52.5212709, + 13.2468679 + ], + [ + 52.5217136, + 13.2464612 + ], + [ + 52.5223786, + 13.2457067 + ] + ] + }, + { + "osmId": "380391924", + "name": null, + "lengthMeters": 288.9903050623246, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5173037, + 13.2498851 + ], + [ + 52.5170054, + 13.250141 + ], + [ + 52.516895, + 13.2502741 + ], + [ + 52.5168057, + 13.2503998 + ], + [ + 52.5167213, + 13.2505471 + ], + [ + 52.5166373, + 13.250733 + ], + [ + 52.5165664, + 13.2509193 + ], + [ + 52.5164306, + 13.2513714 + ], + [ + 52.5162676, + 13.2520121 + ], + [ + 52.5161924, + 13.2524031 + ], + [ + 52.5161074, + 13.2529904 + ], + [ + 52.5160604, + 13.2533374 + ], + [ + 52.51605, + 13.2534137 + ] + ] + }, + { + "osmId": "380391926", + "name": null, + "lengthMeters": 167.33453416064333, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525377, + 13.2424424 + ], + [ + 52.5254633, + 13.2421682 + ], + [ + 52.5255291, + 13.2419496 + ], + [ + 52.525596, + 13.2417083 + ], + [ + 52.5256744, + 13.2414191 + ], + [ + 52.5257053, + 13.241295 + ], + [ + 52.5257961, + 13.2409097 + ], + [ + 52.5259541, + 13.2401617 + ] + ] + }, + { + "osmId": "380391927", + "name": null, + "lengthMeters": 146.06069134946333, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5251915, + 13.2429421 + ], + [ + 52.5250693, + 13.2433191 + ], + [ + 52.5250044, + 13.2435117 + ], + [ + 52.5249256, + 13.2437123 + ], + [ + 52.5248477, + 13.2438758 + ], + [ + 52.5247739, + 13.2440158 + ], + [ + 52.5246962, + 13.2441477 + ], + [ + 52.5246182, + 13.2442656 + ], + [ + 52.5244916, + 13.2444316 + ], + [ + 52.5243555, + 13.2445561 + ] + ] + }, + { + "osmId": "380967342", + "name": "U9", + "lengthMeters": 1430.5614698517827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5186099, + 13.3420091 + ], + [ + 52.5189072, + 13.3419168 + ], + [ + 52.5190331, + 13.3418776 + ], + [ + 52.5208193, + 13.3415049 + ], + [ + 52.5221181, + 13.3412529 + ], + [ + 52.5227395, + 13.3411561 + ], + [ + 52.5234683, + 13.3410459 + ], + [ + 52.5238743, + 13.3409798 + ], + [ + 52.5241852, + 13.3409688 + ], + [ + 52.5245515, + 13.3410052 + ], + [ + 52.5248782, + 13.3410868 + ], + [ + 52.5255829, + 13.3412987 + ], + [ + 52.5260528, + 13.3413702 + ], + [ + 52.5264047, + 13.3414103 + ], + [ + 52.5265965, + 13.3414029 + ], + [ + 52.5268921, + 13.3414223 + ], + [ + 52.527392, + 13.3413787 + ], + [ + 52.5278293, + 13.3413801 + ], + [ + 52.5287397, + 13.3413774 + ], + [ + 52.5314165, + 13.3413682 + ] + ] + }, + { + "osmId": "380967343", + "name": "U9", + "lengthMeters": 1185.4126169718436, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5419354, + 13.3489639 + ], + [ + 52.5416548, + 13.3483643 + ], + [ + 52.5413435, + 13.3478397 + ], + [ + 52.5409618, + 13.3472661 + ], + [ + 52.5397891, + 13.3455169 + ], + [ + 52.5389508, + 13.3442462 + ], + [ + 52.5386825, + 13.3438676 + ], + [ + 52.5383021, + 13.3434293 + ], + [ + 52.5379895, + 13.343142 + ], + [ + 52.5376564, + 13.3429105 + ], + [ + 52.5364786, + 13.3423432 + ], + [ + 52.5363497, + 13.3422826 + ], + [ + 52.5359884, + 13.3421043 + ], + [ + 52.5353423, + 13.3417918 + ], + [ + 52.5347295, + 13.3415035 + ], + [ + 52.53432, + 13.341356 + ], + [ + 52.5340426, + 13.3412809 + ], + [ + 52.5336706, + 13.3412487 + ], + [ + 52.5330959, + 13.341242 + ], + [ + 52.5330746, + 13.3412417 + ], + [ + 52.5328167, + 13.3412387 + ] + ] + }, + { + "osmId": "380967344", + "name": "U9", + "lengthMeters": 272.92007149582605, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5359568, + 13.3422326 + ], + [ + 52.5363162, + 13.3424499 + ], + [ + 52.5366185, + 13.3426065 + ], + [ + 52.5372105, + 13.3428689 + ], + [ + 52.53764, + 13.3430639 + ], + [ + 52.5379633, + 13.3432499 + ], + [ + 52.5382825, + 13.3434989 + ] + ] + }, + { + "osmId": "380981358", + "name": null, + "lengthMeters": 246.3022214454589, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5411234, + 13.4120969 + ], + [ + 52.5405247, + 13.4121312 + ], + [ + 52.53972, + 13.4121552 + ], + [ + 52.5389089, + 13.4121705 + ] + ] + }, + { + "osmId": "380981360", + "name": null, + "lengthMeters": 244.32084377702944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5389059, + 13.4122234 + ], + [ + 52.5397196, + 13.4122094 + ], + [ + 52.5405248, + 13.412198 + ], + [ + 52.541103, + 13.4122112 + ] + ] + }, + { + "osmId": "380981362", + "name": null, + "lengthMeters": 185.02987256832077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.542784, + 13.4122401 + ], + [ + 52.542461, + 13.4121819 + ], + [ + 52.5415139, + 13.4120986 + ], + [ + 52.5413062, + 13.4120896 + ], + [ + 52.5411234, + 13.4120969 + ] + ] + }, + { + "osmId": "380981363", + "name": null, + "lengthMeters": 187.0255217776128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.541103, + 13.4122112 + ], + [ + 52.5413045, + 13.4122173 + ], + [ + 52.5415356, + 13.4122415 + ], + [ + 52.5424588, + 13.412314 + ], + [ + 52.5427834, + 13.4123107 + ] + ] + }, + { + "osmId": "380985924", + "name": "U9", + "lengthMeters": 549.1957541743172, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5382825, + 13.3434989 + ], + [ + 52.5386623, + 13.343897 + ], + [ + 52.5389383, + 13.3442913 + ], + [ + 52.5397771, + 13.3455698 + ], + [ + 52.5409415, + 13.3473112 + ], + [ + 52.5413149, + 13.3478769 + ], + [ + 52.5416178, + 13.3484094 + ], + [ + 52.5418676, + 13.3490327 + ] + ] + }, + { + "osmId": "380985925", + "name": "U9", + "lengthMeters": 792.4378921844707, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.546043, + 13.3584501 + ], + [ + 52.5457424, + 13.3580596 + ], + [ + 52.5454268, + 13.35758 + ], + [ + 52.5451611, + 13.3571055 + ], + [ + 52.5446569, + 13.3560912 + ], + [ + 52.5442761, + 13.3552575 + ], + [ + 52.5441493, + 13.3549739 + ], + [ + 52.5436429, + 13.3537198 + ], + [ + 52.5431259, + 13.3523363 + ], + [ + 52.5429667, + 13.3518794 + ], + [ + 52.5427577, + 13.3511685 + ], + [ + 52.5426305, + 13.3508071 + ], + [ + 52.5421459, + 13.3494883 + ], + [ + 52.5419354, + 13.3489639 + ] + ] + }, + { + "osmId": "380985926", + "name": "U9", + "lengthMeters": 172.97212952900426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5418676, + 13.3490327 + ], + [ + 52.5419632, + 13.3493005 + ], + [ + 52.5420496, + 13.3495327 + ], + [ + 52.5425115, + 13.350786 + ], + [ + 52.5425858, + 13.3509837 + ], + [ + 52.5426744, + 13.3512195 + ] + ] + }, + { + "osmId": "381187755", + "name": "U8", + "lengthMeters": 587.4993682635028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5477959, + 13.3891911 + ], + [ + 52.5476992, + 13.3892388 + ], + [ + 52.5475665, + 13.3892973 + ], + [ + 52.5473608, + 13.3893709 + ], + [ + 52.5472697, + 13.3893841 + ], + [ + 52.5470589, + 13.3894007 + ], + [ + 52.5464636, + 13.3893754 + ], + [ + 52.5463355, + 13.3893831 + ], + [ + 52.5462265, + 13.3893949 + ], + [ + 52.546091, + 13.3894223 + ], + [ + 52.5459362, + 13.3894717 + ], + [ + 52.5457402, + 13.3895737 + ], + [ + 52.5455558, + 13.3896878 + ], + [ + 52.5452992, + 13.3899055 + ], + [ + 52.5450925, + 13.3901328 + ], + [ + 52.544906, + 13.3903894 + ], + [ + 52.5444943, + 13.3909959 + ], + [ + 52.5443123, + 13.3912242 + ], + [ + 52.5440877, + 13.3914598 + ], + [ + 52.543806, + 13.3916877 + ], + [ + 52.5432587, + 13.3920383 + ], + [ + 52.5430102, + 13.392222 + ] + ] + }, + { + "osmId": "381187758", + "name": "U8", + "lengthMeters": 259.9053030327201, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.538528, + 13.3957893 + ], + [ + 52.5380053, + 13.3961009 + ], + [ + 52.5377927, + 13.3962542 + ], + [ + 52.5374682, + 13.3965052 + ], + [ + 52.5367357, + 13.3970835 + ], + [ + 52.536391, + 13.3973387 + ] + ] + }, + { + "osmId": "381187763", + "name": "U8", + "lengthMeters": 1837.6280686795687, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260126, + 13.4039614 + ], + [ + 52.5260772, + 13.4038659 + ], + [ + 52.5261447, + 13.4037797 + ], + [ + 52.526216, + 13.4037085 + ], + [ + 52.5262964, + 13.4036443 + ], + [ + 52.5264111, + 13.4035763 + ], + [ + 52.526943, + 13.4034031 + ], + [ + 52.527237, + 13.403282 + ], + [ + 52.5273641, + 13.4032105 + ], + [ + 52.5274695, + 13.4031513 + ], + [ + 52.5276093, + 13.4030466 + ], + [ + 52.5281343, + 13.4026119 + ], + [ + 52.5289904, + 13.4019147 + ], + [ + 52.5296021, + 13.4014605 + ], + [ + 52.5298806, + 13.401233 + ], + [ + 52.5303111, + 13.4008673 + ], + [ + 52.5309181, + 13.4003517 + ], + [ + 52.5313993, + 13.3999067 + ], + [ + 52.5322384, + 13.399234 + ], + [ + 52.5325235, + 13.3990389 + ], + [ + 52.5329029, + 13.3988117 + ], + [ + 52.5359736, + 13.3976812 + ], + [ + 52.5361761, + 13.3976004 + ], + [ + 52.536456, + 13.3974887 + ], + [ + 52.5365688, + 13.3974208 + ], + [ + 52.5367825, + 13.3972532 + ], + [ + 52.5374437, + 13.3967379 + ], + [ + 52.5378405, + 13.3964099 + ], + [ + 52.5380432, + 13.3962443 + ], + [ + 52.5385658, + 13.3958178 + ], + [ + 52.5391104, + 13.3954065 + ], + [ + 52.5400593, + 13.3946627 + ], + [ + 52.5410611, + 13.3939005 + ], + [ + 52.5412302, + 13.3937867 + ] + ] + }, + { + "osmId": "381196082", + "name": "U8", + "lengthMeters": 329.021179320392, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5411895, + 13.393667 + ], + [ + 52.5410048, + 13.3938134 + ], + [ + 52.5405759, + 13.3942064 + ], + [ + 52.5400318, + 13.3946274 + ], + [ + 52.5390866, + 13.3953589 + ], + [ + 52.538528, + 13.3957893 + ] + ] + }, + { + "osmId": "381196083", + "name": "U8", + "lengthMeters": 226.4023162238476, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5412302, + 13.3937867 + ], + [ + 52.5413761, + 13.39369 + ], + [ + 52.5416143, + 13.3935029 + ], + [ + 52.5421132, + 13.3931106 + ], + [ + 52.5430658, + 13.3923395 + ] + ] + }, + { + "osmId": "381196084", + "name": "U8", + "lengthMeters": 224.80437464563792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5430102, + 13.392222 + ], + [ + 52.5426257, + 13.392524 + ], + [ + 52.5420554, + 13.3929767 + ], + [ + 52.5418075, + 13.3931723 + ], + [ + 52.5415713, + 13.3933587 + ], + [ + 52.5411895, + 13.393667 + ] + ] + }, + { + "osmId": "381201610", + "name": "U8", + "lengthMeters": 1252.5665375381607, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536391, + 13.3973387 + ], + [ + 52.53623, + 13.3974458 + ], + [ + 52.5358318, + 13.3976534 + ], + [ + 52.5356082, + 13.3977622 + ], + [ + 52.5353976, + 13.3978393 + ], + [ + 52.5328827, + 13.3987583 + ], + [ + 52.5324993, + 13.3989254 + ], + [ + 52.5321068, + 13.3992101 + ], + [ + 52.5308725, + 13.4002083 + ], + [ + 52.5302698, + 13.4007205 + ], + [ + 52.5298356, + 13.4010894 + ], + [ + 52.5289715, + 13.401788 + ], + [ + 52.5280948, + 13.4025167 + ], + [ + 52.5277584, + 13.402844 + ], + [ + 52.5275913, + 13.4029837 + ], + [ + 52.5274619, + 13.4030777 + ], + [ + 52.527223, + 13.4032012 + ], + [ + 52.5269318, + 13.4033129 + ], + [ + 52.5263839, + 13.4034911 + ], + [ + 52.5262753, + 13.4035396 + ], + [ + 52.5261892, + 13.4035971 + ], + [ + 52.5260957, + 13.4036793 + ], + [ + 52.5260237, + 13.4037664 + ], + [ + 52.5259461, + 13.4038835 + ] + ] + }, + { + "osmId": "381201611", + "name": "U8", + "lengthMeters": 184.38516680597843, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259461, + 13.4038835 + ], + [ + 52.5257781, + 13.4042277 + ], + [ + 52.5254496, + 13.4049536 + ], + [ + 52.5251491, + 13.4056238 + ], + [ + 52.5250805, + 13.4057753 + ], + [ + 52.5250375, + 13.4058793 + ], + [ + 52.5249992, + 13.4059987 + ], + [ + 52.5249771, + 13.4060891 + ] + ] + }, + { + "osmId": "381201612", + "name": "U8", + "lengthMeters": 181.55481844945007, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525047, + 13.406124 + ], + [ + 52.5250679, + 13.4060652 + ], + [ + 52.5251499, + 13.4058588 + ], + [ + 52.5255208, + 13.4050316 + ], + [ + 52.5257801, + 13.4044519 + ], + [ + 52.525843, + 13.4043081 + ], + [ + 52.5260126, + 13.4039614 + ] + ] + }, + { + "osmId": "381209264", + "name": "U8", + "lengthMeters": 1589.4224010457217, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4938898, + 13.4216074 + ], + [ + 52.4943273, + 13.4213365 + ], + [ + 52.4949294, + 13.4209584 + ], + [ + 52.4950316, + 13.4208985 + ], + [ + 52.4951178, + 13.420856 + ], + [ + 52.495224, + 13.4208143 + ], + [ + 52.4953312, + 13.4207823 + ], + [ + 52.4954201, + 13.4207652 + ], + [ + 52.4954929, + 13.4207594 + ], + [ + 52.4956001, + 13.4207468 + ], + [ + 52.4956878, + 13.4207252 + ], + [ + 52.4957754, + 13.4206943 + ], + [ + 52.4958429, + 13.4206636 + ], + [ + 52.4959283, + 13.4206165 + ], + [ + 52.4959939, + 13.4205721 + ], + [ + 52.49609, + 13.4204949 + ], + [ + 52.496182, + 13.4204062 + ], + [ + 52.4962401, + 13.4203422 + ], + [ + 52.4963392, + 13.4202137 + ], + [ + 52.4967541, + 13.4196982 + ], + [ + 52.4967965, + 13.4196501 + ], + [ + 52.4968337, + 13.4196043 + ], + [ + 52.4968946, + 13.4195415 + ], + [ + 52.4969581, + 13.4194829 + ], + [ + 52.4970406, + 13.4194178 + ], + [ + 52.4970909, + 13.4193842 + ], + [ + 52.4971768, + 13.4193341 + ], + [ + 52.4979388, + 13.418989 + ], + [ + 52.4983702, + 13.4187817 + ], + [ + 52.4984681, + 13.4187167 + ], + [ + 52.49855, + 13.4186493 + ], + [ + 52.4986458, + 13.4185391 + ], + [ + 52.4988199, + 13.4183056 + ], + [ + 52.4988617, + 13.4182435 + ], + [ + 52.4990051, + 13.4180328 + ], + [ + 52.4990605, + 13.4179486 + ], + [ + 52.4991653, + 13.4177743 + ], + [ + 52.499262, + 13.4176023 + ], + [ + 52.4993579, + 13.4174241 + ], + [ + 52.4994087, + 13.4173231 + ], + [ + 52.4994622, + 13.4171829 + ], + [ + 52.4994965, + 13.4170818 + ], + [ + 52.4995276, + 13.4169775 + ], + [ + 52.4995627, + 13.4168422 + ], + [ + 52.4996188, + 13.4165941 + ], + [ + 52.4996601, + 13.4164298 + ], + [ + 52.5010197, + 13.4117813 + ], + [ + 52.5013741, + 13.4104882 + ], + [ + 52.5014038, + 13.4104128 + ], + [ + 52.5014471, + 13.4103185 + ], + [ + 52.5014948, + 13.4102278 + ], + [ + 52.5015469, + 13.4101442 + ], + [ + 52.5016036, + 13.4100663 + ], + [ + 52.5016474, + 13.4100149 + ], + [ + 52.50171, + 13.4099506 + ], + [ + 52.5017746, + 13.4098953 + ], + [ + 52.5018417, + 13.4098485 + ], + [ + 52.5019105, + 13.4098103 + ], + [ + 52.5019632, + 13.4097869 + ], + [ + 52.5020344, + 13.4097644 + ], + [ + 52.5020895, + 13.4097533 + ], + [ + 52.5021626, + 13.4097462 + ], + [ + 52.5022342, + 13.4097489 + ], + [ + 52.502308, + 13.4097617 + ], + [ + 52.5023785, + 13.4097825 + ], + [ + 52.5024493, + 13.4098124 + ], + [ + 52.5025187, + 13.4098518 + ], + [ + 52.5025691, + 13.4098869 + ], + [ + 52.5026989, + 13.4099895 + ], + [ + 52.5028443, + 13.4101076 + ], + [ + 52.5029547, + 13.4102073 + ], + [ + 52.5030935, + 13.4103277 + ], + [ + 52.5034034, + 13.4106168 + ], + [ + 52.5036106, + 13.4107871 + ], + [ + 52.5041448, + 13.4111584 + ], + [ + 52.5044411, + 13.411394 + ] + ] + }, + { + "osmId": "381209265", + "name": "U8", + "lengthMeters": 185.93327997202792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044744, + 13.4112993 + ], + [ + 52.5041791, + 13.4110436 + ], + [ + 52.5038125, + 13.4107201 + ], + [ + 52.5036644, + 13.410604 + ], + [ + 52.5034508, + 13.4104516 + ], + [ + 52.5031199, + 13.4102293 + ], + [ + 52.5029665, + 13.4101179 + ] + ] + }, + { + "osmId": "381214594", + "name": "U8", + "lengthMeters": 1347.81092403789, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5029665, + 13.4101179 + ], + [ + 52.5028369, + 13.4100174 + ], + [ + 52.5025926, + 13.4098287 + ], + [ + 52.5025283, + 13.409784 + ], + [ + 52.5024772, + 13.4097559 + ], + [ + 52.5023922, + 13.4097176 + ], + [ + 52.5023213, + 13.4096968 + ], + [ + 52.5022691, + 13.4096865 + ], + [ + 52.5021986, + 13.4096798 + ], + [ + 52.5021097, + 13.4096831 + ], + [ + 52.5020384, + 13.4096959 + ], + [ + 52.5019698, + 13.4097151 + ], + [ + 52.5019005, + 13.409744 + ], + [ + 52.5018501, + 13.4097713 + ], + [ + 52.5017836, + 13.4098129 + ], + [ + 52.5017202, + 13.4098626 + ], + [ + 52.5016579, + 13.4099208 + ], + [ + 52.501598, + 13.4099854 + ], + [ + 52.5015427, + 13.4100563 + ], + [ + 52.5014903, + 13.4101331 + ], + [ + 52.5014402, + 13.410218 + ], + [ + 52.5013944, + 13.4103071 + ], + [ + 52.5013534, + 13.4104003 + ], + [ + 52.5013308, + 13.4104613 + ], + [ + 52.5009761, + 13.411783 + ], + [ + 52.5005453, + 13.4132742 + ], + [ + 52.5000734, + 13.4148723 + ], + [ + 52.4996097, + 13.4164366 + ], + [ + 52.4995766, + 13.4165405 + ], + [ + 52.4994539, + 13.4168708 + ], + [ + 52.4993044, + 13.4171808 + ], + [ + 52.4991859, + 13.4173776 + ], + [ + 52.4990054, + 13.4176657 + ], + [ + 52.4987938, + 13.4179881 + ], + [ + 52.4986793, + 13.4181542 + ], + [ + 52.4984708, + 13.4184441 + ], + [ + 52.4983935, + 13.4185255 + ], + [ + 52.4983466, + 13.4185678 + ], + [ + 52.4982791, + 13.4186172 + ], + [ + 52.4979732, + 13.4187903 + ], + [ + 52.4977674, + 13.418899 + ], + [ + 52.4972673, + 13.4191399 + ], + [ + 52.4971641, + 13.4191925 + ], + [ + 52.4970486, + 13.4192656 + ], + [ + 52.4969369, + 13.4193576 + ], + [ + 52.4968444, + 13.4194478 + ], + [ + 52.4967569, + 13.419546 + ], + [ + 52.4966857, + 13.4196365 + ], + [ + 52.4963192, + 13.4201569 + ], + [ + 52.4962774, + 13.4202125 + ], + [ + 52.4962184, + 13.420284 + ], + [ + 52.4961575, + 13.4203483 + ], + [ + 52.4960959, + 13.4204078 + ], + [ + 52.4960306, + 13.4204644 + ], + [ + 52.4959645, + 13.4205134 + ], + [ + 52.4958974, + 13.4205575 + ], + [ + 52.4958467, + 13.4205867 + ], + [ + 52.4957947, + 13.420613 + ], + [ + 52.4957235, + 13.4206427 + ], + [ + 52.4956528, + 13.4206657 + ], + [ + 52.495563, + 13.4206871 + ], + [ + 52.4954203, + 13.4207052 + ], + [ + 52.4952425, + 13.4207465 + ], + [ + 52.4950662, + 13.4208003 + ], + [ + 52.4949445, + 13.4208447 + ], + [ + 52.4943057, + 13.4211868 + ] + ] + }, + { + "osmId": "381214599", + "name": "U8", + "lengthMeters": 206.97775877268256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4943057, + 13.4211868 + ], + [ + 52.4942133, + 13.4212376 + ], + [ + 52.4933991, + 13.4217452 + ], + [ + 52.4929569, + 13.4220218 + ], + [ + 52.4927315, + 13.4221679 + ], + [ + 52.4925653, + 13.4222706 + ] + ] + }, + { + "osmId": "381214603", + "name": "U8", + "lengthMeters": 107.98891107864564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4929822, + 13.422175 + ], + [ + 52.4931022, + 13.4220998 + ], + [ + 52.4938898, + 13.4216074 + ] + ] + }, + { + "osmId": "381233442", + "name": "U8", + "lengthMeters": 227.53069106392218, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4873604, + 13.4249412 + ], + [ + 52.4871185, + 13.4247731 + ], + [ + 52.4867173, + 13.4245155 + ], + [ + 52.4863649, + 13.4243255 + ], + [ + 52.4861723, + 13.4242345 + ], + [ + 52.4860978, + 13.4242071 + ], + [ + 52.486057, + 13.4241964 + ], + [ + 52.4860141, + 13.4241881 + ], + [ + 52.4858792, + 13.4241823 + ], + [ + 52.4857155, + 13.4241699 + ], + [ + 52.485642, + 13.4241672 + ], + [ + 52.4855632, + 13.4241702 + ], + [ + 52.4854742, + 13.4241793 + ], + [ + 52.4853946, + 13.4241964 + ] + ] + }, + { + "osmId": "381233443", + "name": "U8", + "lengthMeters": 490.1268767860979, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4853946, + 13.4241964 + ], + [ + 52.4850233, + 13.4243017 + ], + [ + 52.484494, + 13.424482 + ], + [ + 52.4838889, + 13.4246916 + ], + [ + 52.4833916, + 13.4247521 + ], + [ + 52.4822237, + 13.4247984 + ], + [ + 52.481652, + 13.424854 + ], + [ + 52.4810227, + 13.4249572 + ] + ] + }, + { + "osmId": "381445436", + "name": "U8", + "lengthMeters": 493.167315763856, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4724103, + 13.4286218 + ], + [ + 52.4685785, + 13.4306536 + ], + [ + 52.4684007, + 13.4307482 + ], + [ + 52.4681858, + 13.4308364 + ] + ] + }, + { + "osmId": "381445437", + "name": "U8", + "lengthMeters": 220.600122957674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4742987, + 13.4276282 + ], + [ + 52.4739918, + 13.4277669 + ], + [ + 52.4738409, + 13.4278432 + ], + [ + 52.4728519, + 13.4283495 + ], + [ + 52.4724103, + 13.4286218 + ] + ] + }, + { + "osmId": "381445438", + "name": "U8", + "lengthMeters": 1325.8427930131252, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.467777, + 13.4312136 + ], + [ + 52.4678059, + 13.4311954 + ], + [ + 52.4682035, + 13.4309591 + ], + [ + 52.4684096, + 13.4307911 + ], + [ + 52.4724176, + 13.4286695 + ], + [ + 52.4728761, + 13.4284771 + ], + [ + 52.4729946, + 13.4284168 + ], + [ + 52.4740168, + 13.4278937 + ], + [ + 52.4743177, + 13.4276878 + ], + [ + 52.4751722, + 13.4272989 + ], + [ + 52.4768353, + 13.4265398 + ], + [ + 52.4777567, + 13.426124 + ], + [ + 52.4785425, + 13.4258951 + ], + [ + 52.4791976, + 13.4256815 + ] + ] + }, + { + "osmId": "381471709", + "name": null, + "lengthMeters": 3503.203670677581, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165773, + 13.4458443 + ], + [ + 52.5165358, + 13.4464652 + ], + [ + 52.516334, + 13.4485309 + ], + [ + 52.5162648, + 13.4492067 + ], + [ + 52.5159708, + 13.4520765 + ], + [ + 52.5158469, + 13.4529686 + ], + [ + 52.5157792, + 13.4534934 + ], + [ + 52.5157529, + 13.4537274 + ], + [ + 52.5157244, + 13.4540173 + ], + [ + 52.5157006, + 13.4543071 + ], + [ + 52.5156732, + 13.4547141 + ], + [ + 52.5156164, + 13.4555782 + ], + [ + 52.5152738, + 13.4589867 + ], + [ + 52.5148797, + 13.4629077 + ], + [ + 52.5148307, + 13.463242 + ], + [ + 52.514785, + 13.4635952 + ], + [ + 52.5145978, + 13.4653954 + ], + [ + 52.5145758, + 13.4656467 + ], + [ + 52.5145728, + 13.465733 + ], + [ + 52.5145559, + 13.4660487 + ], + [ + 52.5145424, + 13.4662539 + ], + [ + 52.5141981, + 13.4697463 + ], + [ + 52.5139971, + 13.4715612 + ], + [ + 52.5136844, + 13.4743848 + ], + [ + 52.5135547, + 13.4757042 + ], + [ + 52.5134829, + 13.4764322 + ], + [ + 52.5131695, + 13.4795786 + ], + [ + 52.513137, + 13.4801135 + ], + [ + 52.5131285, + 13.4802538 + ], + [ + 52.5131175, + 13.4804019 + ], + [ + 52.5126149, + 13.4853123 + ], + [ + 52.5125532, + 13.4857793 + ], + [ + 52.5125396, + 13.485866 + ], + [ + 52.5124848, + 13.4863261 + ], + [ + 52.5124195, + 13.486924 + ], + [ + 52.5123655, + 13.4874854 + ], + [ + 52.512324, + 13.4879601 + ], + [ + 52.5123051, + 13.4882185 + ], + [ + 52.5122732, + 13.4887152 + ], + [ + 52.5122636, + 13.4888321 + ], + [ + 52.5118809, + 13.4925819 + ], + [ + 52.5118606, + 13.4928143 + ], + [ + 52.5118433, + 13.4930766 + ], + [ + 52.5118276, + 13.4934586 + ], + [ + 52.5118249, + 13.4936939 + ], + [ + 52.5118256, + 13.4938989 + ], + [ + 52.5118243, + 13.4940765 + ], + [ + 52.5118179, + 13.4943125 + ], + [ + 52.511809, + 13.4944894 + ], + [ + 52.5118001, + 13.4946377 + ], + [ + 52.5117828, + 13.4948418 + ], + [ + 52.5117571, + 13.4950744 + ], + [ + 52.5117248, + 13.4953063 + ], + [ + 52.511688, + 13.4955338 + ], + [ + 52.5116513, + 13.4957323 + ], + [ + 52.5116219, + 13.4958731 + ], + [ + 52.5115651, + 13.4961226 + ], + [ + 52.5115105, + 13.4963377 + ], + [ + 52.5114026, + 13.4968604 + ] + ] + }, + { + "osmId": "381943203", + "name": "U7", + "lengthMeters": 147.90141249770312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4621832, + 13.4452094 + ], + [ + 52.4622778, + 13.4451296 + ], + [ + 52.4625277, + 13.4449557 + ], + [ + 52.4631579, + 13.4445451 + ], + [ + 52.4634094, + 13.4443655 + ] + ] + }, + { + "osmId": "381943204", + "name": "U7", + "lengthMeters": 530.5772173454399, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4634094, + 13.4443655 + ], + [ + 52.4636296, + 13.444182 + ], + [ + 52.4639341, + 13.4439166 + ], + [ + 52.4652847, + 13.4425882 + ], + [ + 52.4654518, + 13.4424623 + ], + [ + 52.4656701, + 13.4423584 + ], + [ + 52.465864, + 13.4423076 + ], + [ + 52.4661906, + 13.4422388 + ], + [ + 52.4678491, + 13.4419386 + ] + ] + }, + { + "osmId": "381943205", + "name": "U7", + "lengthMeters": 145.97114570120516, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4634174, + 13.4444501 + ], + [ + 52.463167, + 13.4446703 + ], + [ + 52.4622085, + 13.4452832 + ] + ] + }, + { + "osmId": "382211949", + "name": "3", + "lengthMeters": 172.4220056915103, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5502274, + 13.3523363 + ], + [ + 52.5497686, + 13.3531478 + ], + [ + 52.5493504, + 13.3538918 + ], + [ + 52.5491948, + 13.3542359 + ] + ] + }, + { + "osmId": "382211951", + "name": "U6", + "lengthMeters": 1554.7296646945426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536258, + 13.376046 + ], + [ + 52.5364103, + 13.3758386 + ], + [ + 52.5367666, + 13.3752897 + ], + [ + 52.5370053, + 13.3749161 + ], + [ + 52.5380826, + 13.3732855 + ], + [ + 52.5391045, + 13.3717317 + ], + [ + 52.5393311, + 13.3714091 + ], + [ + 52.5396736, + 13.3708969 + ], + [ + 52.5399197, + 13.3705281 + ], + [ + 52.540182, + 13.3701371 + ], + [ + 52.540531, + 13.3695882 + ], + [ + 52.5406912, + 13.3692743 + ], + [ + 52.5413511, + 13.3680851 + ], + [ + 52.5418806, + 13.3671485 + ], + [ + 52.5420194, + 13.3669037 + ], + [ + 52.5422262, + 13.3665387 + ], + [ + 52.5427307, + 13.3657223 + ], + [ + 52.5428602, + 13.3654986 + ], + [ + 52.5432894, + 13.3647378 + ], + [ + 52.5434056, + 13.3645371 + ], + [ + 52.5435275, + 13.3643187 + ], + [ + 52.5445761, + 13.3624652 + ], + [ + 52.5449983, + 13.3616597 + ], + [ + 52.5460903, + 13.3597307 + ] + ] + }, + { + "osmId": "382211952", + "name": "U6", + "lengthMeters": 213.90721462626914, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5501194, + 13.3523229 + ], + [ + 52.549486, + 13.3534346 + ], + [ + 52.5493567, + 13.3536646 + ], + [ + 52.5491959, + 13.3539873 + ], + [ + 52.5490164, + 13.3544363 + ], + [ + 52.5488776, + 13.3547305 + ] + ] + }, + { + "osmId": "382211953", + "name": "U6", + "lengthMeters": 172.37485417100808, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5491948, + 13.3542359 + ], + [ + 52.5494799, + 13.3537354 + ], + [ + 52.5497922, + 13.353178 + ], + [ + 52.5501163, + 13.3526048 + ], + [ + 52.5502498, + 13.352368 + ] + ] + }, + { + "osmId": "382225682", + "name": "U6", + "lengthMeters": 915.3338774286071, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5557378, + 13.3424348 + ], + [ + 52.5551027, + 13.3435644 + ], + [ + 52.5544254, + 13.3447699 + ], + [ + 52.5531309, + 13.3470646 + ], + [ + 52.5525797, + 13.3480543 + ], + [ + 52.5523337, + 13.3485654 + ], + [ + 52.5519963, + 13.3491666 + ], + [ + 52.5514678, + 13.349987 + ], + [ + 52.5512486, + 13.3503636 + ], + [ + 52.5508862, + 13.3510085 + ], + [ + 52.5501194, + 13.3523229 + ] + ] + }, + { + "osmId": "382225683", + "name": "U6", + "lengthMeters": 234.36982076437744, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5571776, + 13.339903 + ], + [ + 52.5570027, + 13.3402195 + ], + [ + 52.5566244, + 13.3408781 + ], + [ + 52.5559897, + 13.3419945 + ], + [ + 52.5557378, + 13.3424348 + ] + ] + }, + { + "osmId": "382225684", + "name": "U6", + "lengthMeters": 234.72661480486704, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5557792, + 13.3425006 + ], + [ + 52.5560614, + 13.34209 + ], + [ + 52.5562973, + 13.3417119 + ], + [ + 52.556698, + 13.3410067 + ], + [ + 52.5570732, + 13.3403395 + ], + [ + 52.5572407, + 13.3400009 + ] + ] + }, + { + "osmId": "382225685", + "name": "U6", + "lengthMeters": 907.4164664579135, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5502498, + 13.352368 + ], + [ + 52.5507629, + 13.3514585 + ], + [ + 52.5513272, + 13.3504552 + ], + [ + 52.5520294, + 13.3492215 + ], + [ + 52.5523543, + 13.3485965 + ], + [ + 52.5526137, + 13.3480903 + ], + [ + 52.5531566, + 13.3470954 + ], + [ + 52.5544512, + 13.3448057 + ], + [ + 52.555128, + 13.3436012 + ], + [ + 52.555546, + 13.3428669 + ], + [ + 52.5557792, + 13.3425006 + ] + ] + }, + { + "osmId": "382455308", + "name": "U7", + "lengthMeters": 1081.5834650077186, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4297433, + 13.4527136 + ], + [ + 52.4307326, + 13.4517538 + ], + [ + 52.4310679, + 13.4514378 + ], + [ + 52.4314799, + 13.4510764 + ], + [ + 52.4318434, + 13.4507732 + ], + [ + 52.4322466, + 13.4504786 + ], + [ + 52.4326414, + 13.4502083 + ], + [ + 52.4330874, + 13.4499451 + ], + [ + 52.4338385, + 13.4495777 + ], + [ + 52.434532, + 13.4492884 + ], + [ + 52.4355305, + 13.448908 + ], + [ + 52.4362049, + 13.4486784 + ], + [ + 52.4367372, + 13.4485453 + ], + [ + 52.4372734, + 13.4483102 + ], + [ + 52.4374931, + 13.4482154 + ], + [ + 52.438297, + 13.447869 + ], + [ + 52.4388853, + 13.4476205 + ] + ] + }, + { + "osmId": "382455320", + "name": "U7", + "lengthMeters": 2483.378712419289, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.416635, + 13.4946115 + ], + [ + 52.4167177, + 13.4944737 + ], + [ + 52.4168033, + 13.4943413 + ], + [ + 52.4170037, + 13.4940669 + ], + [ + 52.4173005, + 13.4937164 + ], + [ + 52.4179547, + 13.4928968 + ], + [ + 52.4203757, + 13.4897315 + ], + [ + 52.421729, + 13.4879532 + ], + [ + 52.4220457, + 13.4874134 + ], + [ + 52.4224547, + 13.48664 + ], + [ + 52.4227668, + 13.4858984 + ], + [ + 52.4229889, + 13.4853175 + ], + [ + 52.4234514, + 13.483881 + ], + [ + 52.4235281, + 13.483504 + ], + [ + 52.4236023, + 13.4831395 + ], + [ + 52.4236762, + 13.4824017 + ], + [ + 52.4236808, + 13.4819898 + ], + [ + 52.4236723, + 13.4815111 + ], + [ + 52.4236392, + 13.4805485 + ], + [ + 52.4234192, + 13.4757409 + ], + [ + 52.4233864, + 13.474481 + ], + [ + 52.4233841, + 13.4739611 + ], + [ + 52.4233773, + 13.4724299 + ], + [ + 52.4234685, + 13.4709382 + ], + [ + 52.4236738, + 13.4693433 + ], + [ + 52.4238771, + 13.4672213 + ], + [ + 52.4241736, + 13.4651197 + ], + [ + 52.4245207, + 13.4632009 + ] + ] + }, + { + "osmId": "382640776", + "name": "U6", + "lengthMeters": 405.08993894256196, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5596594, + 13.3355164 + ], + [ + 52.5586066, + 13.3373701 + ], + [ + 52.5575236, + 13.3392725 + ], + [ + 52.5571776, + 13.339903 + ] + ] + }, + { + "osmId": "382640777", + "name": "U6", + "lengthMeters": 158.3572665242485, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5597325, + 13.335618 + ], + [ + 52.5599103, + 13.3353094 + ], + [ + 52.5605018, + 13.3342615 + ], + [ + 52.560582, + 13.3341197 + ], + [ + 52.5607038, + 13.3339048 + ] + ] + }, + { + "osmId": "382640778", + "name": "U6", + "lengthMeters": 158.54756364548035, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5606287, + 13.3337963 + ], + [ + 52.5605102, + 13.3340104 + ], + [ + 52.5600134, + 13.334889 + ], + [ + 52.5598374, + 13.3351991 + ], + [ + 52.5596594, + 13.3355164 + ] + ] + }, + { + "osmId": "382640779", + "name": "U6", + "lengthMeters": 365.0814796170848, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5607038, + 13.3339048 + ], + [ + 52.5608818, + 13.3335526 + ], + [ + 52.5611819, + 13.3329123 + ], + [ + 52.5617703, + 13.3318541 + ], + [ + 52.562227, + 13.3310674 + ], + [ + 52.5622991, + 13.3308233 + ], + [ + 52.5625301, + 13.3299992 + ], + [ + 52.562639, + 13.3296043 + ] + ] + }, + { + "osmId": "382642377", + "name": "U6", + "lengthMeters": 128.56719443025162, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.562639, + 13.3296043 + ], + [ + 52.5630904, + 13.3278532 + ] + ] + }, + { + "osmId": "382642378", + "name": null, + "lengthMeters": 100.11284612136868, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5637667, + 13.3248176 + ], + [ + 52.5634259, + 13.3261885 + ] + ] + }, + { + "osmId": "382642379", + "name": null, + "lengthMeters": 100.06990598622701, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5635095, + 13.326246 + ], + [ + 52.5637608, + 13.3253386 + ], + [ + 52.5638836, + 13.3248995 + ] + ] + }, + { + "osmId": "382642380", + "name": "U6", + "lengthMeters": 128.82231681959064, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5630068, + 13.3277969 + ], + [ + 52.562572, + 13.3295634 + ] + ] + }, + { + "osmId": "382671860", + "name": null, + "lengthMeters": 196.79520331782737, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5664131, + 13.3139364 + ], + [ + 52.5662909, + 13.3143467 + ], + [ + 52.5661347, + 13.3149311 + ], + [ + 52.5659879, + 13.3155745 + ], + [ + 52.5659248, + 13.315888 + ], + [ + 52.56578, + 13.3166505 + ] + ] + }, + { + "osmId": "382671861", + "name": null, + "lengthMeters": 195.91909794473005, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5658078, + 13.3166764 + ], + [ + 52.5659533, + 13.3159118 + ], + [ + 52.5660168, + 13.3155955 + ], + [ + 52.5661657, + 13.3149413 + ], + [ + 52.5663214, + 13.3143682 + ], + [ + 52.5664399, + 13.3139759 + ] + ] + }, + { + "osmId": "383035007", + "name": null, + "lengthMeters": 126.23161768697933, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5803026, + 13.2922273 + ], + [ + 52.5805148, + 13.2920577 + ], + [ + 52.5806245, + 13.2919544 + ], + [ + 52.5807086, + 13.2918637 + ], + [ + 52.5807988, + 13.2917522 + ], + [ + 52.5809126, + 13.2915997 + ], + [ + 52.5810137, + 13.2914403 + ], + [ + 52.5811033, + 13.2913199 + ], + [ + 52.5811672, + 13.2912372 + ], + [ + 52.5812302, + 13.2911677 + ] + ] + }, + { + "osmId": "383035008", + "name": null, + "lengthMeters": 126.43155154649803, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5812045, + 13.2910932 + ], + [ + 52.5811532, + 13.2911453 + ], + [ + 52.5810847, + 13.2912293 + ], + [ + 52.5810159, + 13.2913264 + ], + [ + 52.580944, + 13.2914412 + ], + [ + 52.5808858, + 13.2915386 + ], + [ + 52.5807865, + 13.2916779 + ], + [ + 52.5807057, + 13.2917868 + ], + [ + 52.580618, + 13.2918873 + ], + [ + 52.580499, + 13.2920028 + ], + [ + 52.5802854, + 13.2921739 + ] + ] + }, + { + "osmId": "383333418", + "name": null, + "lengthMeters": 182.80078844589093, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5455225, + 10.0244188 + ], + [ + 53.5452804, + 10.0246473 + ], + [ + 53.5447427, + 10.0251242 + ], + [ + 53.5440567, + 10.0256692 + ] + ] + }, + { + "osmId": "383416565", + "name": null, + "lengthMeters": 244.03707872337847, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1414081, + 11.5498345 + ], + [ + 48.1414261, + 11.5496204 + ], + [ + 48.1414797, + 11.5489306 + ], + [ + 48.1415791, + 11.547622 + ], + [ + 48.1416189, + 11.5470894 + ], + [ + 48.1416587, + 11.5465671 + ] + ] + }, + { + "osmId": "383416568", + "name": null, + "lengthMeters": 389.7938754590361, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434931, + 11.515816 + ], + [ + 48.1435007, + 11.5159813 + ], + [ + 48.1435336, + 11.5167646 + ], + [ + 48.1435454, + 11.5171062 + ], + [ + 48.14355, + 11.5172868 + ], + [ + 48.1435532, + 11.5176866 + ], + [ + 48.1435512, + 11.5178921 + ], + [ + 48.1435507, + 11.5179135 + ], + [ + 48.1435419, + 11.5183282 + ], + [ + 48.1435274, + 11.5187223 + ], + [ + 48.1434902, + 11.5194229 + ], + [ + 48.1434748, + 11.5196093 + ], + [ + 48.1434638, + 11.51978 + ], + [ + 48.1434529, + 11.5199537 + ], + [ + 48.143388, + 11.520861 + ], + [ + 48.1433846, + 11.5209092 + ], + [ + 48.1433735, + 11.5210545 + ] + ] + }, + { + "osmId": "383591842", + "name": null, + "lengthMeters": 166.55539760271668, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5015218, + 13.3444654 + ], + [ + 52.5015539, + 13.3443134 + ], + [ + 52.5016739, + 13.3438109 + ], + [ + 52.5018378, + 13.3429918 + ], + [ + 52.5019465, + 13.3424861 + ], + [ + 52.5020415, + 13.3421601 + ] + ] + }, + { + "osmId": "383591843", + "name": null, + "lengthMeters": 687.9411749825547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054172, + 13.3340072 + ], + [ + 52.5052896, + 13.3342957 + ], + [ + 52.5052624, + 13.3343687 + ], + [ + 52.5052381, + 13.3344454 + ], + [ + 52.5052113, + 13.3345542 + ], + [ + 52.5051966, + 13.3346372 + ], + [ + 52.505186, + 13.3347203 + ], + [ + 52.5051279, + 13.3353912 + ], + [ + 52.5051128, + 13.3355098 + ], + [ + 52.5050969, + 13.335594 + ], + [ + 52.5050765, + 13.3356793 + ], + [ + 52.5050528, + 13.3357596 + ], + [ + 52.5050253, + 13.3358372 + ], + [ + 52.5049931, + 13.3359128 + ], + [ + 52.5049584, + 13.3359804 + ], + [ + 52.5049195, + 13.3360438 + ], + [ + 52.5048758, + 13.3361028 + ], + [ + 52.5048313, + 13.3361526 + ], + [ + 52.504767, + 13.3362118 + ], + [ + 52.5047184, + 13.3362505 + ], + [ + 52.5043882, + 13.3364869 + ], + [ + 52.5043184, + 13.3365296 + ], + [ + 52.5042462, + 13.3365946 + ], + [ + 52.5042051, + 13.3366371 + ], + [ + 52.5041592, + 13.3367054 + ], + [ + 52.5040632, + 13.3369094 + ], + [ + 52.5030472, + 13.3394551 + ], + [ + 52.5021961, + 13.3416096 + ], + [ + 52.5020051, + 13.3421508 + ] + ] + }, + { + "osmId": "383591845", + "name": "U1", + "lengthMeters": 120.42201830854415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5017419, + 13.3438772 + ], + [ + 52.5018251, + 13.3435555 + ], + [ + 52.501939, + 13.3430433 + ], + [ + 52.5021001, + 13.3421996 + ] + ] + }, + { + "osmId": "383960613", + "name": "Berliner Ringbahn", + "lengthMeters": 282.7881949864692, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5302989, + 13.4536857 + ], + [ + 52.5287147, + 13.4552698 + ], + [ + 52.5281269, + 13.4558603 + ] + ] + }, + { + "osmId": "383960614", + "name": "Berliner Ringbahn", + "lengthMeters": 281.77366260353705, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281487, + 13.455915 + ], + [ + 52.5287223, + 13.4553421 + ], + [ + 52.5303125, + 13.4537471 + ] + ] + }, + { + "osmId": "383960616", + "name": "Berliner Ringbahn", + "lengthMeters": 617.3042449526398, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535042, + 13.4489432 + ], + [ + 52.534288, + 13.4496934 + ], + [ + 52.5334713, + 13.4505128 + ], + [ + 52.531631, + 13.4523536 + ], + [ + 52.5302989, + 13.4536857 + ] + ] + }, + { + "osmId": "383960618", + "name": "Berliner Ringbahn", + "lengthMeters": 208.4390418893719, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5351294, + 13.4489339 + ], + [ + 52.5359879, + 13.4480742 + ], + [ + 52.5363219, + 13.4477082 + ], + [ + 52.5364528, + 13.4475402 + ], + [ + 52.5365845, + 13.447347 + ], + [ + 52.5366747, + 13.4472039 + ] + ] + }, + { + "osmId": "383960622", + "name": null, + "lengthMeters": 241.51470074419325, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5268585, + 13.4574081 + ], + [ + 52.5267573, + 13.4575183 + ], + [ + 52.5266343, + 13.4576523 + ], + [ + 52.5264825, + 13.4578212 + ], + [ + 52.526335, + 13.4580007 + ], + [ + 52.526187, + 13.4581909 + ], + [ + 52.5260422, + 13.4583956 + ], + [ + 52.5258479, + 13.4587101 + ], + [ + 52.5257122, + 13.4589512 + ], + [ + 52.5255568, + 13.4592719 + ], + [ + 52.5254538, + 13.4594968 + ], + [ + 52.5253781, + 13.4596822 + ], + [ + 52.5253088, + 13.4598596 + ] + ] + }, + { + "osmId": "383960623", + "name": null, + "lengthMeters": 128.9624689576074, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5287504, + 13.4556817 + ], + [ + 52.5289189, + 13.4555043 + ], + [ + 52.5290218, + 13.4553886 + ], + [ + 52.5290672, + 13.4553367 + ], + [ + 52.5291709, + 13.4552215 + ], + [ + 52.5293186, + 13.4550611 + ], + [ + 52.5297239, + 13.454646 + ] + ] + }, + { + "osmId": "383960625", + "name": null, + "lengthMeters": 183.73982808223278, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5301885, + 13.453949 + ], + [ + 52.5301598, + 13.4539776 + ], + [ + 52.5298649, + 13.4542719 + ], + [ + 52.5296068, + 13.4545358 + ], + [ + 52.5290131, + 13.4551446 + ], + [ + 52.5288924, + 13.4552684 + ], + [ + 52.5287843, + 13.4553807 + ] + ] + }, + { + "osmId": "383989501", + "name": null, + "lengthMeters": 403.5761039741565, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.467755, + 13.4323837 + ], + [ + 52.46777, + 13.432483 + ], + [ + 52.4682038, + 13.4353557 + ], + [ + 52.4682253, + 13.4354984 + ], + [ + 52.4682959, + 13.4359673 + ], + [ + 52.4685902, + 13.4379214 + ], + [ + 52.4686275, + 13.4381667 + ] + ] + }, + { + "osmId": "383989506", + "name": null, + "lengthMeters": 137.94831882747854, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4681027, + 13.4344393 + ], + [ + 52.4681007, + 13.4344254 + ], + [ + 52.4679705, + 13.433514 + ], + [ + 52.4679118, + 13.4329966 + ], + [ + 52.4678572, + 13.4324441 + ] + ] + }, + { + "osmId": "384165125", + "name": null, + "lengthMeters": 992.2268829608513, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4876899, + 13.3013688 + ], + [ + 52.4876844, + 13.3013763 + ], + [ + 52.4869926, + 13.3023128 + ], + [ + 52.4869511, + 13.3023686 + ], + [ + 52.4864711, + 13.3030148 + ], + [ + 52.4863528, + 13.3031741 + ], + [ + 52.4859494, + 13.3037168 + ], + [ + 52.4855683, + 13.3042291 + ], + [ + 52.4842036, + 13.3060641 + ], + [ + 52.4832666, + 13.3073272 + ], + [ + 52.4828851, + 13.3078411 + ], + [ + 52.4828138, + 13.3079371 + ], + [ + 52.4817027, + 13.3094321 + ], + [ + 52.4807891, + 13.3106585 + ] + ] + }, + { + "osmId": "384165126", + "name": null, + "lengthMeters": 685.1757113309473, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4822065, + 13.308833 + ], + [ + 52.4828374, + 13.3079816 + ], + [ + 52.4832115, + 13.3074775 + ], + [ + 52.4838434, + 13.3066257 + ], + [ + 52.4842246, + 13.3061118 + ], + [ + 52.4852355, + 13.3047539 + ], + [ + 52.4855903, + 13.3042765 + ], + [ + 52.4869717, + 13.3024178 + ] + ] + }, + { + "osmId": "384165127", + "name": null, + "lengthMeters": 324.9155867935246, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941412, + 13.292939 + ], + [ + 52.4937176, + 13.2935093 + ], + [ + 52.493443, + 13.2938755 + ], + [ + 52.4931751, + 13.2942163 + ], + [ + 52.4930221, + 13.2943941 + ], + [ + 52.492848, + 13.2945849 + ], + [ + 52.4925351, + 13.2949238 + ], + [ + 52.4923776, + 13.2951016 + ], + [ + 52.4922192, + 13.2952905 + ], + [ + 52.4920232, + 13.2955441 + ], + [ + 52.4919607, + 13.295629 + ], + [ + 52.491817, + 13.2958209 + ], + [ + 52.4918112, + 13.2958287 + ] + ] + }, + { + "osmId": "384165128", + "name": null, + "lengthMeters": 211.7982209938764, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4876364, + 13.3016 + ], + [ + 52.4879589, + 13.3012392 + ], + [ + 52.4880104, + 13.3011736 + ], + [ + 52.4883883, + 13.3006916 + ], + [ + 52.4886599, + 13.3003254 + ], + [ + 52.4889341, + 13.2999556 + ], + [ + 52.4890753, + 13.2997653 + ], + [ + 52.4891367, + 13.2996761 + ] + ] + }, + { + "osmId": "384294420", + "name": null, + "lengthMeters": 1015.6515097417755, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5208784, + 13.4145683 + ], + [ + 52.5207865, + 13.4145514 + ], + [ + 52.5207052, + 13.4145207 + ], + [ + 52.5205917, + 13.4144415 + ], + [ + 52.5205284, + 13.4143781 + ], + [ + 52.5204678, + 13.4143038 + ], + [ + 52.5204132, + 13.414212 + ], + [ + 52.5203569, + 13.414106 + ], + [ + 52.5202064, + 13.4137418 + ], + [ + 52.5199139, + 13.413016 + ], + [ + 52.5194243, + 13.4118257 + ], + [ + 52.5192918, + 13.4115779 + ], + [ + 52.5191883, + 13.4114465 + ], + [ + 52.5190888, + 13.4113665 + ], + [ + 52.5189886, + 13.4113205 + ], + [ + 52.5188797, + 13.411301 + ], + [ + 52.5187859, + 13.4113002 + ], + [ + 52.5186772, + 13.4113228 + ], + [ + 52.518611, + 13.4113514 + ], + [ + 52.5185004, + 13.4114199 + ], + [ + 52.5183941, + 13.4115145 + ], + [ + 52.5179794, + 13.4119077 + ], + [ + 52.5177071, + 13.4120934 + ], + [ + 52.5175541, + 13.4121807 + ], + [ + 52.5173402, + 13.41228 + ], + [ + 52.517203, + 13.412316 + ], + [ + 52.5169898, + 13.4123396 + ], + [ + 52.5166428, + 13.4123283 + ], + [ + 52.5161049, + 13.4122902 + ], + [ + 52.515755, + 13.4122424 + ], + [ + 52.5154592, + 13.4122087 + ], + [ + 52.5148599, + 13.4121313 + ], + [ + 52.5140209, + 13.4120288 + ], + [ + 52.5136415, + 13.4119672 + ], + [ + 52.5135124, + 13.4119456 + ], + [ + 52.5133457, + 13.4118901 + ], + [ + 52.5132098, + 13.4118146 + ], + [ + 52.5131018, + 13.4117271 + ], + [ + 52.5129894, + 13.4116131 + ], + [ + 52.5128959, + 13.4114904 + ] + ] + }, + { + "osmId": "384294421", + "name": null, + "lengthMeters": 204.16149712232684, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119663, + 13.4089147 + ], + [ + 52.5120639, + 13.4093356 + ], + [ + 52.5121171, + 13.4095956 + ], + [ + 52.5121894, + 13.4098464 + ], + [ + 52.5123062, + 13.4102013 + ], + [ + 52.5125513, + 13.4109662 + ], + [ + 52.5126088, + 13.4111266 + ], + [ + 52.5126671, + 13.4112552 + ], + [ + 52.5127246, + 13.4113621 + ], + [ + 52.512787, + 13.4114594 + ], + [ + 52.512842, + 13.4115325 + ] + ] + }, + { + "osmId": "384294422", + "name": null, + "lengthMeters": 202.92429486181703, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5128959, + 13.4114904 + ], + [ + 52.512802, + 13.4113363 + ], + [ + 52.5127399, + 13.4112095 + ], + [ + 52.5126865, + 13.4110666 + ], + [ + 52.5126319, + 13.4109013 + ], + [ + 52.512561, + 13.4106819 + ], + [ + 52.5123886, + 13.410148 + ], + [ + 52.5122786, + 13.4097962 + ], + [ + 52.512212, + 13.4095482 + ], + [ + 52.5121505, + 13.4092906 + ], + [ + 52.5120432, + 13.4088593 + ] + ] + }, + { + "osmId": "384294423", + "name": null, + "lengthMeters": 232.68187434108287, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512842, + 13.4115325 + ], + [ + 52.5130097, + 13.411721 + ], + [ + 52.5130971, + 13.4118006 + ], + [ + 52.5131974, + 13.4118704 + ], + [ + 52.5133457, + 13.411951 + ], + [ + 52.513509, + 13.4120031 + ], + [ + 52.5136403, + 13.4120245 + ], + [ + 52.5140155, + 13.4120884 + ], + [ + 52.5148619, + 13.4121936 + ] + ] + }, + { + "osmId": "384320720", + "name": null, + "lengthMeters": 1835.860906040259, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5166708, + 13.4458699 + ], + [ + 52.5167327, + 13.4453759 + ], + [ + 52.5167985, + 13.4447675 + ], + [ + 52.5168807, + 13.44397 + ], + [ + 52.516897, + 13.443808 + ], + [ + 52.5169195, + 13.4435023 + ], + [ + 52.5169214, + 13.4434054 + ], + [ + 52.516951, + 13.442819 + ], + [ + 52.517938, + 13.4332 + ], + [ + 52.5179619, + 13.4330255 + ], + [ + 52.5180047, + 13.4328007 + ], + [ + 52.518016, + 13.4326996 + ], + [ + 52.518245, + 13.430778 + ], + [ + 52.5182819, + 13.4304682 + ], + [ + 52.5182951, + 13.430366 + ], + [ + 52.5183514, + 13.4298771 + ], + [ + 52.5183764, + 13.4296741 + ], + [ + 52.5183962, + 13.4295306 + ], + [ + 52.5184239, + 13.4293586 + ], + [ + 52.518451, + 13.4292096 + ], + [ + 52.5184771, + 13.4290738 + ], + [ + 52.5191461, + 13.4264785 + ], + [ + 52.520288, + 13.4227008 + ], + [ + 52.5205474, + 13.4220135 + ], + [ + 52.5206804, + 13.4216394 + ], + [ + 52.5207864, + 13.4213126 + ], + [ + 52.5210638, + 13.4203996 + ], + [ + 52.5211712, + 13.4200448 + ] + ] + }, + { + "osmId": "384320732", + "name": null, + "lengthMeters": 389.71285175039344, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5219725, + 13.4147613 + ], + [ + 52.5220589, + 13.4149498 + ], + [ + 52.5221153, + 13.4151076 + ], + [ + 52.5221682, + 13.4152971 + ], + [ + 52.5222036, + 13.4154666 + ], + [ + 52.5222235, + 13.415647 + ], + [ + 52.5222358, + 13.4158755 + ], + [ + 52.5222274, + 13.4160495 + ], + [ + 52.5222158, + 13.4161604 + ], + [ + 52.5221818, + 13.4163706 + ], + [ + 52.5221587, + 13.4164944 + ], + [ + 52.5221301, + 13.416638 + ], + [ + 52.5219932, + 13.4171826 + ], + [ + 52.5214313, + 13.4190541 + ], + [ + 52.5213959, + 13.4191577 + ], + [ + 52.5212928, + 13.4194014 + ], + [ + 52.5212238, + 13.4195824 + ], + [ + 52.5210837, + 13.4199691 + ] + ] + }, + { + "osmId": "384345627", + "name": "U1", + "lengthMeters": 121.32809296215544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006086, + 13.4403597 + ], + [ + 52.5006691, + 13.44076 + ], + [ + 52.5006967, + 13.440943 + ], + [ + 52.50073, + 13.4411323 + ], + [ + 52.5007695, + 13.4413062 + ], + [ + 52.5008942, + 13.4416933 + ], + [ + 52.5009593, + 13.4418691 + ], + [ + 52.5009843, + 13.4419459 + ], + [ + 52.5010059, + 13.4420153 + ] + ] + }, + { + "osmId": "384345628", + "name": "U1", + "lengthMeters": 770.297206814683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006351, + 13.4403497 + ], + [ + 52.5004227, + 13.4388792 + ], + [ + 52.4993628, + 13.4316119 + ], + [ + 52.4993448, + 13.4314738 + ], + [ + 52.4993353, + 13.4313914 + ], + [ + 52.4993285, + 13.4313144 + ], + [ + 52.4993229, + 13.4312289 + ], + [ + 52.49932, + 13.4311529 + ], + [ + 52.4993192, + 13.43108 + ], + [ + 52.4993204, + 13.4310082 + ], + [ + 52.4993226, + 13.4309363 + ], + [ + 52.4993275, + 13.4308578 + ], + [ + 52.4993337, + 13.4307837 + ], + [ + 52.499344, + 13.4306809 + ], + [ + 52.4993664, + 13.4304651 + ], + [ + 52.4993722, + 13.4304031 + ], + [ + 52.4993802, + 13.4303067 + ], + [ + 52.4993852, + 13.4302232 + ], + [ + 52.4993878, + 13.4301366 + ], + [ + 52.4993884, + 13.4300566 + ], + [ + 52.4993875, + 13.4299748 + ], + [ + 52.4993848, + 13.4298903 + ], + [ + 52.4993794, + 13.4297596 + ], + [ + 52.4993499, + 13.4292332 + ] + ] + }, + { + "osmId": "384345629", + "name": "U1", + "lengthMeters": 121.54956043069448, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5010344, + 13.4420075 + ], + [ + 52.5010078, + 13.4419248 + ], + [ + 52.5009968, + 13.4418912 + ], + [ + 52.5009207, + 13.4416776 + ], + [ + 52.5008434, + 13.4414409 + ], + [ + 52.5007946, + 13.4412905 + ], + [ + 52.5007825, + 13.4412394 + ], + [ + 52.5007665, + 13.4411646 + ], + [ + 52.5007428, + 13.4410438 + ], + [ + 52.5007171, + 13.4409012 + ], + [ + 52.5006945, + 13.4407467 + ], + [ + 52.5006351, + 13.4403497 + ] + ] + }, + { + "osmId": "384345630", + "name": "U1", + "lengthMeters": 770.8761144830379, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993223, + 13.4292364 + ], + [ + 52.4993521, + 13.4297601 + ], + [ + 52.4993577, + 13.4298826 + ], + [ + 52.4993608, + 13.4299749 + ], + [ + 52.4993614, + 13.4300569 + ], + [ + 52.4993593, + 13.4301388 + ], + [ + 52.4993564, + 13.4302203 + ], + [ + 52.4993508, + 13.4303062 + ], + [ + 52.499345, + 13.4303817 + ], + [ + 52.4993385, + 13.4304482 + ], + [ + 52.4993148, + 13.4306677 + ], + [ + 52.4993044, + 13.4307693 + ], + [ + 52.4992969, + 13.4308548 + ], + [ + 52.4992921, + 13.4309376 + ], + [ + 52.4992894, + 13.4310078 + ], + [ + 52.4992883, + 13.4310779 + ], + [ + 52.4992895, + 13.4311491 + ], + [ + 52.4992923, + 13.4312215 + ], + [ + 52.4992967, + 13.4312958 + ], + [ + 52.4993041, + 13.4313774 + ], + [ + 52.4993142, + 13.4314633 + ], + [ + 52.499336, + 13.4316201 + ], + [ + 52.5004472, + 13.4392593 + ], + [ + 52.5006086, + 13.4403597 + ] + ] + }, + { + "osmId": "384345631", + "name": "U1", + "lengthMeters": 140.59067747182027, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993499, + 13.4292332 + ], + [ + 52.4993169, + 13.4286836 + ], + [ + 52.4992519, + 13.4276166 + ], + [ + 52.4992445, + 13.4275008 + ], + [ + 52.4992274, + 13.4271661 + ] + ] + }, + { + "osmId": "384345632", + "name": "U1", + "lengthMeters": 140.47819863989002, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992003, + 13.427171 + ], + [ + 52.4992152, + 13.4274653 + ], + [ + 52.4992648, + 13.4282006 + ], + [ + 52.4992784, + 13.4284097 + ], + [ + 52.4993047, + 13.4289095 + ], + [ + 52.4993223, + 13.4292364 + ] + ] + }, + { + "osmId": "384804026", + "name": "U1", + "lengthMeters": 521.8257482825715, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983826, + 13.4063653 + ], + [ + 52.4983916, + 13.4078229 + ], + [ + 52.4984083, + 13.4085196 + ], + [ + 52.4985864, + 13.4121152 + ], + [ + 52.4985936, + 13.4123789 + ], + [ + 52.4985863, + 13.4126403 + ], + [ + 52.4985703, + 13.4129136 + ], + [ + 52.4985049, + 13.4137834 + ], + [ + 52.4984966, + 13.4140527 + ] + ] + }, + { + "osmId": "384804027", + "name": "U1", + "lengthMeters": 130.43396834181573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983692, + 13.4044386 + ], + [ + 52.4983806, + 13.4060282 + ], + [ + 52.4983826, + 13.4063653 + ] + ] + }, + { + "osmId": "384804028", + "name": "U1", + "lengthMeters": 522.1593238385127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4985231, + 13.4140562 + ], + [ + 52.4985284, + 13.4137896 + ], + [ + 52.4985975, + 13.412915 + ], + [ + 52.4986139, + 13.4126464 + ], + [ + 52.4986194, + 13.4123804 + ], + [ + 52.4986121, + 13.4121144 + ], + [ + 52.4984359, + 13.4085106 + ], + [ + 52.4984206, + 13.4078222 + ], + [ + 52.4984069, + 13.4063641 + ] + ] + }, + { + "osmId": "385250925", + "name": null, + "lengthMeters": 164.71742540904842, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5013635, + 13.4777984 + ], + [ + 52.5013321, + 13.4779173 + ], + [ + 52.501055, + 13.4789674 + ], + [ + 52.5010234, + 13.4790871 + ], + [ + 52.5009271, + 13.4793952 + ], + [ + 52.5007967, + 13.4798127 + ], + [ + 52.5007865, + 13.4798454 + ], + [ + 52.5007367, + 13.4800018 + ] + ] + }, + { + "osmId": "385258470", + "name": null, + "lengthMeters": 355.2695542569117, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4925775, + 13.499916 + ], + [ + 52.4925396, + 13.5000166 + ], + [ + 52.4924153, + 13.5003769 + ], + [ + 52.4923088, + 13.5007275 + ], + [ + 52.4922181, + 13.5010773 + ], + [ + 52.4920729, + 13.5017045 + ], + [ + 52.4918671, + 13.5026844 + ], + [ + 52.4916497, + 13.5037157 + ], + [ + 52.491526, + 13.5042541 + ], + [ + 52.4913917, + 13.5047782 + ] + ] + }, + { + "osmId": "385258471", + "name": null, + "lengthMeters": 1079.900216937614, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4947431, + 13.4959807 + ], + [ + 52.4950784, + 13.4949894 + ], + [ + 52.4954401, + 13.4939666 + ], + [ + 52.495852, + 13.492778 + ], + [ + 52.4961641, + 13.4919529 + ], + [ + 52.4962899, + 13.4916202 + ], + [ + 52.4968514, + 13.490134 + ], + [ + 52.4970224, + 13.4896815 + ], + [ + 52.4971539, + 13.4893355 + ], + [ + 52.4975943, + 13.4881977 + ], + [ + 52.4979474, + 13.4873378 + ], + [ + 52.4980534, + 13.4870795 + ], + [ + 52.4984556, + 13.4861584 + ], + [ + 52.4991053, + 13.48462 + ], + [ + 52.4994143, + 13.483848 + ], + [ + 52.4995215, + 13.4835801 + ], + [ + 52.4999238, + 13.4824981 + ] + ] + }, + { + "osmId": "385258472", + "name": null, + "lengthMeters": 1004.6915929806297, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998988, + 13.4824507 + ], + [ + 52.4994938, + 13.483551 + ], + [ + 52.4993861, + 13.4838196 + ], + [ + 52.499076, + 13.4845933 + ], + [ + 52.4984271, + 13.4861233 + ], + [ + 52.4980249, + 13.4870477 + ], + [ + 52.4979174, + 13.4873112 + ], + [ + 52.4976652, + 13.4879294 + ], + [ + 52.4975659, + 13.4881729 + ], + [ + 52.4971255, + 13.4893078 + ], + [ + 52.4968197, + 13.4901036 + ], + [ + 52.4966743, + 13.490482 + ], + [ + 52.4965653, + 13.4907658 + ], + [ + 52.4962598, + 13.4915835 + ], + [ + 52.4958244, + 13.4927547 + ], + [ + 52.4954075, + 13.493927 + ], + [ + 52.495051, + 13.4949665 + ] + ] + }, + { + "osmId": "385258473", + "name": null, + "lengthMeters": 174.08349723991017, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4934103, + 13.4986426 + ], + [ + 52.4934126, + 13.4986395 + ], + [ + 52.4935136, + 13.4984951 + ], + [ + 52.4935933, + 13.4983813 + ], + [ + 52.4937485, + 13.4981528 + ], + [ + 52.4937693, + 13.4981222 + ], + [ + 52.4939316, + 13.4978609 + ], + [ + 52.4940029, + 13.4977305 + ], + [ + 52.4940594, + 13.4976273 + ], + [ + 52.4941845, + 13.4973814 + ], + [ + 52.4942931, + 13.4971509 + ], + [ + 52.494368, + 13.4969807 + ], + [ + 52.4943877, + 13.496934 + ], + [ + 52.4944635, + 13.496754 + ] + ] + }, + { + "osmId": "385393639", + "name": null, + "lengthMeters": 172.61313144524718, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140873, + 13.5185913 + ], + [ + 52.514036, + 13.5209515 + ], + [ + 52.5140349, + 13.5210019 + ], + [ + 52.5140319, + 13.5211405 + ] + ] + }, + { + "osmId": "385393643", + "name": null, + "lengthMeters": 190.98100437542547, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5141485, + 13.5213119 + ], + [ + 52.5142039, + 13.5188271 + ], + [ + 52.5142089, + 13.5184914 + ] + ] + }, + { + "osmId": "385393647", + "name": null, + "lengthMeters": 229.92968030540536, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5140104, + 13.524701 + ], + [ + 52.5140436, + 13.5241401 + ], + [ + 52.51407, + 13.5237032 + ], + [ + 52.5140886, + 13.523353 + ], + [ + 52.514105, + 13.5230053 + ], + [ + 52.5141067, + 13.5229399 + ], + [ + 52.514121, + 13.5225237 + ], + [ + 52.5141305, + 13.5221187 + ], + [ + 52.5141422, + 13.5215963 + ], + [ + 52.5141485, + 13.5213119 + ] + ] + }, + { + "osmId": "385504119", + "name": null, + "lengthMeters": 603.9706710291129, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5868033, + 9.947387 + ], + [ + 53.5865101, + 9.9474919 + ], + [ + 53.5864339, + 9.9475221 + ], + [ + 53.5863335, + 9.947556 + ], + [ + 53.5862582, + 9.9475795 + ], + [ + 53.586049, + 9.9476313 + ], + [ + 53.5852057, + 9.9477875 + ], + [ + 53.5850769, + 9.9478167 + ], + [ + 53.5842524, + 9.9479917 + ], + [ + 53.5837168, + 9.9480631 + ], + [ + 53.5835555, + 9.9480674 + ], + [ + 53.5834122, + 9.9480544 + ], + [ + 53.5832797, + 9.9480276 + ], + [ + 53.5831572, + 9.947995 + ], + [ + 53.582639, + 9.9477909 + ], + [ + 53.5820027, + 9.9475361 + ], + [ + 53.5814499, + 9.9473159 + ] + ] + }, + { + "osmId": "385504120", + "name": null, + "lengthMeters": 181.13298274024953, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5722526, + 9.9510544 + ], + [ + 53.5721059, + 9.9513411 + ], + [ + 53.5719993, + 9.9515796 + ], + [ + 53.5716225, + 9.9525982 + ], + [ + 53.5713515, + 9.9533344 + ] + ] + }, + { + "osmId": "385669853", + "name": null, + "lengthMeters": 224.18798029030944, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5025788, + 13.4703428 + ], + [ + 52.5026078, + 13.4701815 + ], + [ + 52.5027873, + 13.4691823 + ], + [ + 52.5028463, + 13.4688607 + ], + [ + 52.5028915, + 13.4686139 + ], + [ + 52.5031865, + 13.4672162 + ], + [ + 52.5031923, + 13.4671886 + ] + ] + }, + { + "osmId": "385669854", + "name": null, + "lengthMeters": 334.1589998302136, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5017862, + 13.475103 + ], + [ + 52.5018359, + 13.4748484 + ], + [ + 52.5020809, + 13.4735457 + ], + [ + 52.5021505, + 13.473141 + ], + [ + 52.5022036, + 13.4728016 + ], + [ + 52.5023091, + 13.4720992 + ], + [ + 52.5023503, + 13.4718186 + ], + [ + 52.5023813, + 13.471607 + ], + [ + 52.5024899, + 13.47089 + ], + [ + 52.5025788, + 13.4703428 + ] + ] + }, + { + "osmId": "385907614", + "name": null, + "lengthMeters": 97.89495683674772, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4743107, + 13.5994339 + ], + [ + 52.4742402, + 13.5992487 + ], + [ + 52.4742193, + 13.599184 + ], + [ + 52.4739776, + 13.598672 + ], + [ + 52.4737724, + 13.5982945 + ] + ] + }, + { + "osmId": "386046454", + "name": null, + "lengthMeters": 78.86982017702084, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.43535, + 13.5411011 + ], + [ + 52.4353936, + 13.5412129 + ], + [ + 52.4354444, + 13.5413509 + ], + [ + 52.4354555, + 13.541381 + ], + [ + 52.4355119, + 13.5415196 + ], + [ + 52.4355429, + 13.5415998 + ], + [ + 52.43572, + 13.5420934 + ] + ] + }, + { + "osmId": "386052954", + "name": null, + "lengthMeters": 121.83277623486882, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054427, + 13.4712728 + ], + [ + 52.5055171, + 13.4713475 + ], + [ + 52.5056585, + 13.4714997 + ], + [ + 52.5058078, + 13.4716804 + ], + [ + 52.5059092, + 13.4718086 + ], + [ + 52.5060153, + 13.471957 + ], + [ + 52.5061738, + 13.4721794 + ], + [ + 52.5062396, + 13.4722825 + ], + [ + 52.5063012, + 13.4723842 + ] + ] + }, + { + "osmId": "386052955", + "name": null, + "lengthMeters": 208.10607470605788, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5067832, + 13.4733819 + ], + [ + 52.5067268, + 13.473218 + ], + [ + 52.5066585, + 13.4730329 + ], + [ + 52.5065185, + 13.4727068 + ], + [ + 52.5064096, + 13.4724887 + ], + [ + 52.506288, + 13.4722727 + ], + [ + 52.5061864, + 13.4721081 + ], + [ + 52.5060641, + 13.4719392 + ], + [ + 52.5059757, + 13.4718149 + ], + [ + 52.5058766, + 13.4716834 + ], + [ + 52.5057324, + 13.4715111 + ], + [ + 52.5055803, + 13.4713385 + ], + [ + 52.5054758, + 13.4712346 + ] + ] + }, + { + "osmId": "386101182", + "name": null, + "lengthMeters": 135.26228118732263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5473473, + 9.9861761 + ], + [ + 53.5476766, + 9.986521 + ], + [ + 53.5478185, + 9.9866405 + ], + [ + 53.5479815, + 9.9867537 + ], + [ + 53.548151, + 9.9868606 + ], + [ + 53.5482707, + 9.9869361 + ], + [ + 53.5484437, + 9.9870452 + ] + ] + }, + { + "osmId": "386161713", + "name": "U8", + "lengthMeters": 880.727746040863, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5723987, + 13.359929 + ], + [ + 52.5728356, + 13.3596577 + ], + [ + 52.5730547, + 13.3594711 + ], + [ + 52.5732112, + 13.3592519 + ], + [ + 52.5732911, + 13.3590494 + ], + [ + 52.5733499, + 13.3586875 + ], + [ + 52.5734149, + 13.3570538 + ], + [ + 52.5735556, + 13.3549182 + ], + [ + 52.5737744, + 13.3520232 + ], + [ + 52.5739161, + 13.3508889 + ], + [ + 52.5740329, + 13.3501878 + ], + [ + 52.574159, + 13.3493359 + ], + [ + 52.5742823, + 13.3485058 + ], + [ + 52.5743668, + 13.3479372 + ] + ] + }, + { + "osmId": "386161718", + "name": "U8", + "lengthMeters": 157.20122616376648, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5742719, + 13.3478894 + ], + [ + 52.5740593, + 13.3493019 + ], + [ + 52.5739362, + 13.3501491 + ] + ] + }, + { + "osmId": "386178011", + "name": "U8", + "lengthMeters": 1394.621804707972, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5610717, + 13.3681461 + ], + [ + 52.5624982, + 13.3662367 + ], + [ + 52.5630235, + 13.3655336 + ], + [ + 52.563556, + 13.3648961 + ], + [ + 52.5636104, + 13.3648309 + ], + [ + 52.5639031, + 13.3645492 + ], + [ + 52.5640591, + 13.364399 + ], + [ + 52.5642184, + 13.3642648 + ], + [ + 52.5643218, + 13.3641777 + ], + [ + 52.5644441, + 13.3640761 + ], + [ + 52.5645519, + 13.3640021 + ], + [ + 52.5650728, + 13.3637397 + ], + [ + 52.5651582, + 13.3636857 + ], + [ + 52.5654275, + 13.3635153 + ], + [ + 52.570281, + 13.3609645 + ], + [ + 52.5707992, + 13.3607794 + ], + [ + 52.5714586, + 13.3604277 + ], + [ + 52.5719794, + 13.360149 + ], + [ + 52.5723987, + 13.359929 + ] + ] + }, + { + "osmId": "386178012", + "name": "U8", + "lengthMeters": 1525.3558820672379, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5739362, + 13.3501491 + ], + [ + 52.5738518, + 13.3508204 + ], + [ + 52.5737084, + 13.3519683 + ], + [ + 52.5735095, + 13.3548759 + ], + [ + 52.5733693, + 13.3570216 + ], + [ + 52.5732838, + 13.3586738 + ], + [ + 52.5732148, + 13.3590074 + ], + [ + 52.5731313, + 13.3592077 + ], + [ + 52.5730237, + 13.3593524 + ], + [ + 52.5728134, + 13.3595054 + ], + [ + 52.5723847, + 13.3597628 + ], + [ + 52.5719485, + 13.3599858 + ], + [ + 52.570906, + 13.3605414 + ], + [ + 52.5707536, + 13.360624 + ], + [ + 52.5702577, + 13.3609061 + ], + [ + 52.5654276, + 13.3634237 + ] + ] + }, + { + "osmId": "386196770", + "name": "U8", + "lengthMeters": 232.9113710704831, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5654276, + 13.3634237 + ], + [ + 52.5650604, + 13.363578 + ], + [ + 52.5645265, + 13.3638451 + ], + [ + 52.5644054, + 13.3639267 + ], + [ + 52.5642721, + 13.3640327 + ], + [ + 52.5640328, + 13.3642395 + ], + [ + 52.5635192, + 13.3647759 + ] + ] + }, + { + "osmId": "386196771", + "name": "U8", + "lengthMeters": 1274.9363854492183, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5526528, + 13.3805068 + ], + [ + 52.5530244, + 13.3790125 + ], + [ + 52.5531734, + 13.3785321 + ], + [ + 52.5533381, + 13.3781003 + ], + [ + 52.5534628, + 13.3778246 + ], + [ + 52.5535991, + 13.3775566 + ], + [ + 52.5537574, + 13.3772985 + ], + [ + 52.5539354, + 13.3770288 + ], + [ + 52.5542061, + 13.3766771 + ], + [ + 52.5561435, + 13.3744784 + ], + [ + 52.5565966, + 13.3740342 + ], + [ + 52.556778, + 13.3738536 + ], + [ + 52.5569667, + 13.3736498 + ], + [ + 52.5572368, + 13.3732896 + ], + [ + 52.5575597, + 13.372859 + ], + [ + 52.5576169, + 13.3727775 + ], + [ + 52.5584732, + 13.3716159 + ], + [ + 52.5598568, + 13.3697751 + ], + [ + 52.5610717, + 13.3681461 + ] + ] + }, + { + "osmId": "386347068", + "name": null, + "lengthMeters": 133.33161774318282, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5585793, + 13.4132987 + ], + [ + 52.5574733, + 13.4140606 + ] + ] + }, + { + "osmId": "386347069", + "name": null, + "lengthMeters": 608.7618424481402, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5598158, + 13.4132867 + ], + [ + 52.561154, + 13.4131712 + ], + [ + 52.5626503, + 13.4129618 + ], + [ + 52.5643079, + 13.4127201 + ], + [ + 52.565273, + 13.4125794 + ] + ] + }, + { + "osmId": "386347070", + "name": null, + "lengthMeters": 128.88922206290195, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5574862, + 13.4141108 + ], + [ + 52.5581201, + 13.4136849 + ], + [ + 52.558369, + 13.4135488 + ], + [ + 52.5585745, + 13.4134625 + ] + ] + }, + { + "osmId": "386347071", + "name": null, + "lengthMeters": 138.25729916686853, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5598155, + 13.4131399 + ], + [ + 52.5593591, + 13.4131477 + ], + [ + 52.5590343, + 13.4131676 + ], + [ + 52.5585793, + 13.4132987 + ] + ] + }, + { + "osmId": "386348752", + "name": null, + "lengthMeters": 194.04543266114115, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5723866, + 10.0695001 + ], + [ + 53.5724399, + 10.0695793 + ], + [ + 53.5725585, + 10.0697387 + ], + [ + 53.5726257, + 10.0698213 + ], + [ + 53.5727111, + 10.0699187 + ], + [ + 53.5728697, + 10.0700622 + ], + [ + 53.5730143, + 10.0701568 + ], + [ + 53.5731064, + 10.0702124 + ], + [ + 53.5732009, + 10.0702523 + ], + [ + 53.5732984, + 10.0702855 + ], + [ + 53.5734018, + 10.070308 + ], + [ + 53.5734691, + 10.0703116 + ], + [ + 53.5735448, + 10.0703111 + ], + [ + 53.5736555, + 10.0703035 + ], + [ + 53.5737606, + 10.0702802 + ], + [ + 53.5739985, + 10.0702061 + ] + ] + }, + { + "osmId": "386468277", + "name": "U6", + "lengthMeters": 481.16328965069636, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4648657, + 13.3855691 + ], + [ + 52.4645425, + 13.3855978 + ], + [ + 52.4641509, + 13.385591 + ], + [ + 52.4637261, + 13.3855541 + ], + [ + 52.4628777, + 13.385367 + ], + [ + 52.4616403, + 13.3850623 + ], + [ + 52.4611773, + 13.3849356 + ], + [ + 52.4608121, + 13.3847937 + ], + [ + 52.4605829, + 13.3847119 + ] + ] + }, + { + "osmId": "386468281", + "name": "U6", + "lengthMeters": 390.14898952220267, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4605701, + 13.3848532 + ], + [ + 52.4616372, + 13.3851148 + ], + [ + 52.4628727, + 13.3854212 + ], + [ + 52.4637279, + 13.385616 + ], + [ + 52.4640441, + 13.3856489 + ] + ] + }, + { + "osmId": "386468283", + "name": "U6", + "lengthMeters": 118.03989562634278, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4605829, + 13.3847119 + ], + [ + 52.4596777, + 13.3844815 + ], + [ + 52.4595335, + 13.3844492 + ] + ] + }, + { + "osmId": "386468285", + "name": "U6", + "lengthMeters": 117.9700592161466, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.459521, + 13.384594 + ], + [ + 52.4599547, + 13.3846976 + ], + [ + 52.4605701, + 13.3848532 + ] + ] + }, + { + "osmId": "386496523", + "name": "U6", + "lengthMeters": 281.8609961215524, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4430346, + 13.3863827 + ], + [ + 52.4438863, + 13.3861973 + ], + [ + 52.4446541, + 13.3860476 + ], + [ + 52.4452088, + 13.3859397 + ], + [ + 52.4454151, + 13.385902 + ], + [ + 52.4455508, + 13.3858809 + ] + ] + }, + { + "osmId": "386496524", + "name": "U6", + "lengthMeters": 192.22813869442962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4472529, + 13.3854665 + ], + [ + 52.4469213, + 13.3854945 + ], + [ + 52.4462642, + 13.3856143 + ], + [ + 52.445776, + 13.3857052 + ], + [ + 52.4455353, + 13.3857731 + ] + ] + }, + { + "osmId": "386496525", + "name": "U6", + "lengthMeters": 191.56928771954418, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4455508, + 13.3858809 + ], + [ + 52.4457854, + 13.3858492 + ], + [ + 52.446277, + 13.3857568 + ], + [ + 52.4469295, + 13.385632 + ], + [ + 52.4472629, + 13.3855677 + ] + ] + }, + { + "osmId": "386496527", + "name": "U6", + "lengthMeters": 574.0054203294761, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4455353, + 13.3857731 + ], + [ + 52.4452064, + 13.3858765 + ], + [ + 52.4446563, + 13.3859887 + ], + [ + 52.4438821, + 13.3861409 + ], + [ + 52.4432322, + 13.3862755 + ], + [ + 52.4429797, + 13.3863402 + ], + [ + 52.4422464, + 13.3865896 + ], + [ + 52.4416145, + 13.3868141 + ], + [ + 52.4413102, + 13.3869167 + ], + [ + 52.4409975, + 13.3870327 + ], + [ + 52.4406112, + 13.387166 + ], + [ + 52.4404519, + 13.3872057 + ] + ] + }, + { + "osmId": "386702817", + "name": null, + "lengthMeters": 267.2945395787125, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51605, + 13.2534137 + ], + [ + 52.5160308, + 13.2535636 + ], + [ + 52.5160174, + 13.2537101 + ], + [ + 52.5160052, + 13.253913 + ], + [ + 52.5160009, + 13.2540873 + ], + [ + 52.5160037, + 13.2542343 + ], + [ + 52.516012, + 13.2543803 + ], + [ + 52.5160242, + 13.2545247 + ], + [ + 52.5161694, + 13.2557374 + ], + [ + 52.5162002, + 13.2559985 + ], + [ + 52.5162345, + 13.2563483 + ], + [ + 52.5162489, + 13.2565541 + ], + [ + 52.5162674, + 13.256908 + ], + [ + 52.5162791, + 13.25732 + ] + ] + }, + { + "osmId": "386702818", + "name": null, + "lengthMeters": 992.8585438239352, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512641, + 13.3204533 + ], + [ + 52.5126437, + 13.3203372 + ], + [ + 52.5126388, + 13.3202221 + ], + [ + 52.5126316, + 13.3201381 + ], + [ + 52.5125238, + 13.3193017 + ], + [ + 52.5124011, + 13.3182597 + ], + [ + 52.5123586, + 13.3178521 + ], + [ + 52.5123244, + 13.317443 + ], + [ + 52.5123015, + 13.3170609 + ], + [ + 52.5120592, + 13.3133583 + ], + [ + 52.511993, + 13.3122828 + ], + [ + 52.5119877, + 13.3121793 + ], + [ + 52.5119955, + 13.3117827 + ], + [ + 52.5119997, + 13.3115218 + ], + [ + 52.5119875, + 13.3110899 + ], + [ + 52.5119571, + 13.3106614 + ], + [ + 52.5118833, + 13.309538 + ], + [ + 52.5118076, + 13.3083569 + ], + [ + 52.5117981, + 13.3081701 + ], + [ + 52.5117957, + 13.3081132 + ], + [ + 52.5117611, + 13.3076164 + ], + [ + 52.5117237, + 13.3072092 + ], + [ + 52.5115705, + 13.3059092 + ] + ] + }, + { + "osmId": "386821325", + "name": null, + "lengthMeters": 199.05132133461836, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5345799, + 13.3603662 + ], + [ + 52.5345596, + 13.3603892 + ], + [ + 52.5338186, + 13.3611848 + ], + [ + 52.5331108, + 13.3619408 + ], + [ + 52.533081, + 13.361975 + ] + ] + }, + { + "osmId": "386821326", + "name": null, + "lengthMeters": 104.64716956875552, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5421941, + 13.3659384 + ], + [ + 52.5418173, + 13.3651428 + ], + [ + 52.5416097, + 13.3647256 + ] + ] + }, + { + "osmId": "386822744", + "name": "U4", + "lengthMeters": 323.1059877379817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.482805, + 13.3420225 + ], + [ + 52.4826345, + 13.3420911 + ], + [ + 52.4825431, + 13.3421279 + ], + [ + 52.4821485, + 13.3423053 + ], + [ + 52.4807434, + 13.3428106 + ], + [ + 52.4805688, + 13.3428786 + ], + [ + 52.4799845, + 13.3431613 + ] + ] + }, + { + "osmId": "386822745", + "name": "U4", + "lengthMeters": 609.3836092796487, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.483363, + 13.3419865 + ], + [ + 52.4835426, + 13.3419073 + ], + [ + 52.4839829, + 13.3417088 + ], + [ + 52.487662, + 13.3403847 + ], + [ + 52.4877871, + 13.3403453 + ], + [ + 52.487912, + 13.3403159 + ], + [ + 52.488037, + 13.3402968 + ], + [ + 52.4881279, + 13.3402896 + ], + [ + 52.4882366, + 13.340287 + ], + [ + 52.4883272, + 13.3402914 + ], + [ + 52.4887279, + 13.3403421 + ] + ] + }, + { + "osmId": "386822794", + "name": "U4", + "lengthMeters": 76.9666809674362, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5004325, + 13.3563138 + ], + [ + 52.5000926, + 13.3553233 + ] + ] + }, + { + "osmId": "387106269", + "name": "U2", + "lengthMeters": 172.7136928448878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119248, + 13.3861345 + ], + [ + 52.5119019, + 13.3858259 + ], + [ + 52.5118738, + 13.3855467 + ], + [ + 52.5118519, + 13.3853624 + ], + [ + 52.511824, + 13.3851542 + ], + [ + 52.5117915, + 13.3849264 + ], + [ + 52.5117184, + 13.3845131 + ], + [ + 52.5116624, + 13.384228 + ], + [ + 52.5115389, + 13.3836704 + ] + ] + }, + { + "osmId": "387106270", + "name": null, + "lengthMeters": 175.19649304400318, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120833, + 13.3887098 + ], + [ + 52.5120779, + 13.3886579 + ], + [ + 52.512027, + 13.3879552 + ], + [ + 52.5119514, + 13.3867232 + ], + [ + 52.5119248, + 13.3861345 + ] + ] + }, + { + "osmId": "387106271", + "name": null, + "lengthMeters": 136.07824650616476, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119123, + 13.3867324 + ], + [ + 52.5119958, + 13.3879612 + ], + [ + 52.5120236, + 13.388661 + ], + [ + 52.512024, + 13.3887341 + ] + ] + }, + { + "osmId": "387106272", + "name": "U2", + "lengthMeters": 210.91666599340297, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114702, + 13.3837054 + ], + [ + 52.5115756, + 13.3842721 + ], + [ + 52.5116293, + 13.3845548 + ], + [ + 52.5116966, + 13.384956 + ], + [ + 52.5117285, + 13.3851794 + ], + [ + 52.5117719, + 13.38553 + ], + [ + 52.511813, + 13.3858515 + ], + [ + 52.511867, + 13.3862827 + ], + [ + 52.5119123, + 13.3867324 + ] + ] + }, + { + "osmId": "387118472", + "name": "U6", + "lengthMeters": 207.65508177675756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5082314, + 13.3902263 + ], + [ + 52.507623, + 13.3903196 + ], + [ + 52.5070055, + 13.3903908 + ], + [ + 52.50637, + 13.3904721 + ] + ] + }, + { + "osmId": "387118473", + "name": "U6", + "lengthMeters": 97.16666278652377, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.50551, + 13.3907754 + ], + [ + 52.5061667, + 13.3906709 + ], + [ + 52.5063798, + 13.3906375 + ] + ] + }, + { + "osmId": "387118474", + "name": "U6", + "lengthMeters": 97.09115511137665, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.50637, + 13.3904721 + ], + [ + 52.5057422, + 13.390575 + ], + [ + 52.5055012, + 13.3906153 + ] + ] + }, + { + "osmId": "387118475", + "name": "U6", + "lengthMeters": 260.60902057670796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5031767, + 13.3911278 + ], + [ + 52.5049898, + 13.3908184 + ], + [ + 52.50551, + 13.3907754 + ] + ] + }, + { + "osmId": "387141732", + "name": null, + "lengthMeters": 154.43163790697076, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.511286, + 13.4029249 + ], + [ + 52.5112501, + 13.4041795 + ], + [ + 52.5112391, + 13.4045471 + ], + [ + 52.5112331, + 13.4047202 + ], + [ + 52.5112213, + 13.4052044 + ] + ] + }, + { + "osmId": "387141733", + "name": null, + "lengthMeters": 157.47926559572534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112989, + 13.4052553 + ], + [ + 52.5113144, + 13.4047277 + ], + [ + 52.5113235, + 13.4045543 + ], + [ + 52.5113535, + 13.4035235 + ], + [ + 52.51138, + 13.4029323 + ] + ] + }, + { + "osmId": "387141734", + "name": null, + "lengthMeters": 268.5904906501941, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112213, + 13.4052044 + ], + [ + 52.5112156, + 13.4055646 + ], + [ + 52.5112238, + 13.4058601 + ], + [ + 52.5112424, + 13.4060854 + ], + [ + 52.5112783, + 13.406427 + ], + [ + 52.5113355, + 13.4067457 + ], + [ + 52.5113893, + 13.4069566 + ], + [ + 52.5116806, + 13.4078751 + ], + [ + 52.5117522, + 13.4080924 + ], + [ + 52.5118899, + 13.4085805 + ], + [ + 52.5119663, + 13.4089147 + ] + ] + }, + { + "osmId": "387141735", + "name": null, + "lengthMeters": 261.8388511677241, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120432, + 13.4088593 + ], + [ + 52.5118146, + 13.4080512 + ], + [ + 52.5114477, + 13.4069008 + ], + [ + 52.511399, + 13.4067066 + ], + [ + 52.5113451, + 13.4064068 + ], + [ + 52.5113131, + 13.4060638 + ], + [ + 52.5113012, + 13.4058493 + ], + [ + 52.5112957, + 13.4055719 + ], + [ + 52.5112989, + 13.4052553 + ] + ] + }, + { + "osmId": "387329044", + "name": "U3", + "lengthMeters": 285.0614135365926, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008779, + 13.336878 + ], + [ + 52.5001249, + 13.3360701 + ], + [ + 52.4998879, + 13.3358163 + ], + [ + 52.4987332, + 13.334571 + ] + ] + }, + { + "osmId": "387329045", + "name": "U3", + "lengthMeters": 131.25129230400168, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998525, + 13.3359045 + ], + [ + 52.5005679, + 13.3366391 + ], + [ + 52.5008534, + 13.3369323 + ] + ] + }, + { + "osmId": "387333018", + "name": "U4", + "lengthMeters": 135.69357595805147, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4959158, + 13.3426196 + ], + [ + 52.4959705, + 13.3427599 + ], + [ + 52.4962693, + 13.3436521 + ], + [ + 52.4964017, + 13.3440402 + ], + [ + 52.4965154, + 13.344365 + ] + ] + }, + { + "osmId": "387345144", + "name": null, + "lengthMeters": 328.2826584018421, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.167194, + 11.5749723 + ], + [ + 48.1672684, + 11.574741 + ], + [ + 48.1673812, + 11.5744872 + ], + [ + 48.1675486, + 11.5741939 + ], + [ + 48.1677647, + 11.5738479 + ], + [ + 48.1679723, + 11.5735805 + ], + [ + 48.1681541, + 11.573401 + ], + [ + 48.1683305, + 11.5732474 + ], + [ + 48.168623, + 11.5730623 + ], + [ + 48.1688272, + 11.5729676 + ], + [ + 48.1689874, + 11.5729185 + ], + [ + 48.1691408, + 11.5728931 + ], + [ + 48.1693202, + 11.5728847 + ], + [ + 48.1695999, + 11.5729071 + ] + ] + }, + { + "osmId": "387345145", + "name": null, + "lengthMeters": 350.2978475711272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1696171, + 11.5726337 + ], + [ + 48.1693286, + 11.572607 + ], + [ + 48.1691346, + 11.5726091 + ], + [ + 48.1689537, + 11.5726382 + ], + [ + 48.1687693, + 11.5726966 + ], + [ + 48.1686022, + 11.5727795 + ], + [ + 48.1684149, + 11.5728925 + ], + [ + 48.1682446, + 11.5730137 + ], + [ + 48.168096, + 11.5731389 + ], + [ + 48.1678577, + 11.5733751 + ], + [ + 48.1676384, + 11.573654 + ], + [ + 48.1674189, + 11.5740075 + ], + [ + 48.1672697, + 11.5743074 + ], + [ + 48.1671605, + 11.574575 + ], + [ + 48.1670761, + 11.5748565 + ] + ] + }, + { + "osmId": "387345146", + "name": null, + "lengthMeters": 462.0677964365604, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1731531, + 11.5727274 + ], + [ + 48.1733832, + 11.5726433 + ], + [ + 48.1736461, + 11.5725166 + ], + [ + 48.1738517, + 11.5723836 + ], + [ + 48.1740759, + 11.5722129 + ], + [ + 48.1743373, + 11.5719803 + ], + [ + 48.1745037, + 11.5718236 + ], + [ + 48.174711, + 11.5716768 + ], + [ + 48.1748823, + 11.5715927 + ], + [ + 48.1750349, + 11.5715367 + ], + [ + 48.1752109, + 11.5714873 + ], + [ + 48.1754055, + 11.5714479 + ], + [ + 48.1756652, + 11.5714452 + ], + [ + 48.1758357, + 11.5714483 + ], + [ + 48.1760271, + 11.5714839 + ], + [ + 48.1766057, + 11.5716397 + ], + [ + 48.1768911, + 11.5717801 + ], + [ + 48.1770846, + 11.5719149 + ] + ] + }, + { + "osmId": "387345147", + "name": null, + "lengthMeters": 470.9783116475642, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1771308, + 11.571813 + ], + [ + 48.1769227, + 11.5716701 + ], + [ + 48.1766283, + 11.5715263 + ], + [ + 48.1764052, + 11.5714293 + ], + [ + 48.1761809, + 11.5713685 + ], + [ + 48.1759193, + 11.571318 + ], + [ + 48.1756764, + 11.5713032 + ], + [ + 48.1753837, + 11.5713125 + ], + [ + 48.1751626, + 11.5713499 + ], + [ + 48.1749259, + 11.5714339 + ], + [ + 48.1747764, + 11.5715133 + ], + [ + 48.1745989, + 11.5716394 + ], + [ + 48.1744494, + 11.5717608 + ], + [ + 48.1742408, + 11.5719616 + ], + [ + 48.1740508, + 11.5721297 + ], + [ + 48.1738302, + 11.5723109 + ], + [ + 48.1736252, + 11.5724357 + ], + [ + 48.1733686, + 11.5725655 + ], + [ + 48.1731409, + 11.5726491 + ] + ] + }, + { + "osmId": "387345148", + "name": null, + "lengthMeters": 300.1594290541206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1695999, + 11.5729071 + ], + [ + 48.170692, + 11.573033 + ], + [ + 48.1715412, + 11.5730165 + ], + [ + 48.172296, + 11.5730203 + ] + ] + }, + { + "osmId": "387345819", + "name": "U6", + "lengthMeters": 231.96896892517933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4665249, + 13.3857751 + ], + [ + 52.468611, + 13.3857981 + ] + ] + }, + { + "osmId": "387345820", + "name": "U6", + "lengthMeters": 91.2002033613085, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4640441, + 13.3856489 + ], + [ + 52.4648638, + 13.3856951 + ] + ] + }, + { + "osmId": "387345821", + "name": "U6", + "lengthMeters": 184.57399239095867, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4665249, + 13.3856298 + ], + [ + 52.4658526, + 13.385601 + ], + [ + 52.4652812, + 13.3855659 + ], + [ + 52.4650729, + 13.3855608 + ], + [ + 52.4648657, + 13.3855691 + ] + ] + }, + { + "osmId": "387345822", + "name": "U6", + "lengthMeters": 230.66339244583355, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4685993, + 13.3856378 + ], + [ + 52.4665249, + 13.3856298 + ] + ] + }, + { + "osmId": "387362912", + "name": "U1", + "lengthMeters": 144.50883173993745, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008762, + 13.3587927 + ], + [ + 52.500279, + 13.3606888 + ] + ] + }, + { + "osmId": "387362913", + "name": "U1", + "lengthMeters": 134.85123721060668, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998522, + 13.3625597 + ], + [ + 52.4999483, + 13.3622116 + ], + [ + 52.5003037, + 13.3609762 + ], + [ + 52.5003669, + 13.3607559 + ] + ] + }, + { + "osmId": "387362915", + "name": "U1", + "lengthMeters": 106.7763893431896, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997645, + 13.3624677 + ], + [ + 52.4997334, + 13.3626042 + ], + [ + 52.4996369, + 13.3631107 + ], + [ + 52.4996208, + 13.363224 + ], + [ + 52.4996095, + 13.3633373 + ], + [ + 52.499603, + 13.3634532 + ], + [ + 52.4996011, + 13.3635703 + ], + [ + 52.4996045, + 13.3636875 + ], + [ + 52.499613, + 13.3638018 + ], + [ + 52.4996234, + 13.3638864 + ], + [ + 52.4996413, + 13.3640001 + ] + ] + }, + { + "osmId": "387370685", + "name": "U6", + "lengthMeters": 455.88423608623316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317507, + 13.3816632 + ], + [ + 52.5322693, + 13.3810151 + ], + [ + 52.5327956, + 13.3803597 + ], + [ + 52.5333104, + 13.3797164 + ], + [ + 52.5350155, + 13.3775864 + ] + ] + }, + { + "osmId": "387370686", + "name": "U6", + "lengthMeters": 457.83221817969405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5349747, + 13.3774672 + ], + [ + 52.5346369, + 13.3779977 + ], + [ + 52.5342889, + 13.3784158 + ], + [ + 52.5335949, + 13.3792985 + ], + [ + 52.5332773, + 13.3796512 + ], + [ + 52.5330705, + 13.379884 + ], + [ + 52.532755, + 13.3802769 + ], + [ + 52.5326075, + 13.3804533 + ], + [ + 52.5322367, + 13.3809252 + ], + [ + 52.5318607, + 13.3813803 + ], + [ + 52.5316981, + 13.3815535 + ] + ] + }, + { + "osmId": "387892379", + "name": null, + "lengthMeters": 78.25948567164825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5125804, + 13.5005323 + ], + [ + 52.5121919, + 13.499568 + ] + ] + }, + { + "osmId": "388285037", + "name": null, + "lengthMeters": 224.1874487387293, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4630492, + 9.9938062 + ], + [ + 53.4633866, + 9.9939583 + ], + [ + 53.4636056, + 9.994057 + ], + [ + 53.4641141, + 9.9942863 + ], + [ + 53.4649979, + 9.9946749 + ] + ] + }, + { + "osmId": "388432539", + "name": "U2", + "lengthMeters": 545.3878003114238, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5380962, + 13.412187 + ], + [ + 52.536789, + 13.4122736 + ], + [ + 52.5362655, + 13.4123215 + ], + [ + 52.5358815, + 13.412354 + ], + [ + 52.535496, + 13.4124009 + ], + [ + 52.5349181, + 13.4124935 + ], + [ + 52.5343381, + 13.4126133 + ], + [ + 52.5338971, + 13.4127108 + ], + [ + 52.5335927, + 13.4127689 + ], + [ + 52.5334227, + 13.4127832 + ], + [ + 52.533209, + 13.4127564 + ] + ] + }, + { + "osmId": "388432540", + "name": "U2", + "lengthMeters": 163.86890403434222, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317442, + 13.4126268 + ], + [ + 52.5322899, + 13.4127544 + ], + [ + 52.5325617, + 13.4128392 + ], + [ + 52.532828, + 13.4128879 + ], + [ + 52.533029, + 13.4129243 + ], + [ + 52.5332047, + 13.4129221 + ] + ] + }, + { + "osmId": "388432541", + "name": "U2", + "lengthMeters": 161.30920498206962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533209, + 13.4127564 + ], + [ + 52.5330265, + 13.4127265 + ], + [ + 52.5326286, + 13.4126407 + ], + [ + 52.5322836, + 13.4125583 + ], + [ + 52.5320487, + 13.4125048 + ], + [ + 52.5317721, + 13.4124311 + ] + ] + }, + { + "osmId": "388432543", + "name": "U2", + "lengthMeters": 546.0595835285068, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5332047, + 13.4129221 + ], + [ + 52.5334605, + 13.4129064 + ], + [ + 52.5335905, + 13.412878 + ], + [ + 52.5339096, + 13.4128153 + ], + [ + 52.5343508, + 13.412731 + ], + [ + 52.5355105, + 13.4125048 + ], + [ + 52.5362648, + 13.4124088 + ], + [ + 52.5367914, + 13.4123624 + ], + [ + 52.5380959, + 13.4122459 + ] + ] + }, + { + "osmId": "388689200", + "name": "U7", + "lengthMeters": 561.8166778892183, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941343, + 13.3095684 + ], + [ + 52.4944458, + 13.3092699 + ], + [ + 52.4946386, + 13.3091071 + ], + [ + 52.4948205, + 13.3089766 + ], + [ + 52.4950257, + 13.3088413 + ], + [ + 52.49517, + 13.3087498 + ], + [ + 52.4953727, + 13.3086254 + ], + [ + 52.4955268, + 13.3085427 + ], + [ + 52.4957867, + 13.3084259 + ], + [ + 52.4960663, + 13.3083192 + ], + [ + 52.4962966, + 13.3082451 + ], + [ + 52.4965094, + 13.308185 + ], + [ + 52.4967057, + 13.3081385 + ], + [ + 52.4972063, + 13.3080392 + ], + [ + 52.4974008, + 13.3079946 + ], + [ + 52.4976317, + 13.3079304 + ], + [ + 52.4989866, + 13.3074824 + ] + ] + }, + { + "osmId": "388689201", + "name": "U7", + "lengthMeters": 204.73165776536808, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.493669, + 13.3098116 + ], + [ + 52.493868, + 13.3095895 + ], + [ + 52.4940505, + 13.3094056 + ], + [ + 52.4941849, + 13.3092859 + ], + [ + 52.4943339, + 13.3091535 + ], + [ + 52.4945046, + 13.3090149 + ], + [ + 52.4946655, + 13.3088965 + ], + [ + 52.4948497, + 13.3087734 + ], + [ + 52.4949924, + 13.3086855 + ], + [ + 52.4950988, + 13.3086243 + ], + [ + 52.4953214, + 13.3085087 + ] + ] + }, + { + "osmId": "388689203", + "name": "U7", + "lengthMeters": 3842.227867730647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4986214, + 13.3822629 + ], + [ + 52.4986532, + 13.3808032 + ], + [ + 52.4986452, + 13.3805372 + ], + [ + 52.4986292, + 13.3803326 + ], + [ + 52.4986037, + 13.3800735 + ], + [ + 52.4985786, + 13.3798779 + ], + [ + 52.4985412, + 13.3796558 + ], + [ + 52.4985008, + 13.3794311 + ], + [ + 52.4984529, + 13.3792112 + ], + [ + 52.4983999, + 13.3789974 + ], + [ + 52.4983296, + 13.3787618 + ], + [ + 52.4982492, + 13.3785308 + ], + [ + 52.4981703, + 13.3783361 + ], + [ + 52.498072, + 13.3781275 + ], + [ + 52.4979435, + 13.3778543 + ], + [ + 52.4977994, + 13.3776114 + ], + [ + 52.4976861, + 13.3774251 + ], + [ + 52.4975276, + 13.3771946 + ], + [ + 52.4973831, + 13.3770186 + ], + [ + 52.4972128, + 13.3768356 + ], + [ + 52.4969822, + 13.3766444 + ], + [ + 52.4967581, + 13.3765141 + ], + [ + 52.4962782, + 13.3763373 + ], + [ + 52.495324, + 13.3760856 + ], + [ + 52.4950955, + 13.3759832 + ], + [ + 52.4948946, + 13.3758709 + ], + [ + 52.4946776, + 13.3757078 + ], + [ + 52.4944921, + 13.3755148 + ], + [ + 52.4942347, + 13.3751737 + ], + [ + 52.4940034, + 13.3748229 + ], + [ + 52.4937791, + 13.3744385 + ], + [ + 52.4935931, + 13.374079 + ], + [ + 52.4934488, + 13.3737788 + ], + [ + 52.4933238, + 13.3734742 + ], + [ + 52.493141, + 13.3728923 + ], + [ + 52.493056, + 13.3725338 + ], + [ + 52.4930067, + 13.3722467 + ], + [ + 52.4929648, + 13.3719071 + ], + [ + 52.4929494, + 13.371692 + ], + [ + 52.4929441, + 13.3715891 + ], + [ + 52.4929372, + 13.3713038 + ], + [ + 52.4929304, + 13.3710311 + ], + [ + 52.4928982, + 13.3700756 + ], + [ + 52.4928903, + 13.369885 + ], + [ + 52.492877, + 13.3697099 + ], + [ + 52.4928601, + 13.3695634 + ], + [ + 52.4928391, + 13.3694193 + ], + [ + 52.4928129, + 13.3692766 + ], + [ + 52.4927761, + 13.3691083 + ], + [ + 52.4927242, + 13.3689173 + ], + [ + 52.4926431, + 13.3686942 + ], + [ + 52.4925732, + 13.36852 + ], + [ + 52.4925204, + 13.3684001 + ], + [ + 52.4924413, + 13.368239 + ], + [ + 52.4923932, + 13.3681496 + ], + [ + 52.4923302, + 13.3680449 + ], + [ + 52.4922507, + 13.3679235 + ], + [ + 52.4921306, + 13.367746 + ], + [ + 52.4920085, + 13.3675706 + ], + [ + 52.491912, + 13.3674356 + ], + [ + 52.4916435, + 13.3670901 + ], + [ + 52.4915622, + 13.366977 + ], + [ + 52.4914818, + 13.3668581 + ], + [ + 52.4913929, + 13.3667141 + ], + [ + 52.4912837, + 13.3665206 + ], + [ + 52.4911922, + 13.3663397 + ], + [ + 52.491117, + 13.3661752 + ], + [ + 52.4910462, + 13.3660064 + ], + [ + 52.4909518, + 13.3657337 + ], + [ + 52.4908941, + 13.3655525 + ], + [ + 52.490826, + 13.3653122 + ], + [ + 52.4907804, + 13.3651235 + ], + [ + 52.4907236, + 13.3648436 + ], + [ + 52.4906967, + 13.3646742 + ], + [ + 52.4906678, + 13.3644748 + ], + [ + 52.4906063, + 13.3640144 + ], + [ + 52.4905717, + 13.3637254 + ], + [ + 52.4903184, + 13.3615272 + ], + [ + 52.4903046, + 13.3613819 + ], + [ + 52.4902917, + 13.361207 + ], + [ + 52.4902824, + 13.3610047 + ], + [ + 52.4902814, + 13.360795 + ], + [ + 52.4902802, + 13.3605865 + ], + [ + 52.4903224, + 13.3598747 + ], + [ + 52.4903286, + 13.3597703 + ], + [ + 52.4903637, + 13.3594098 + ], + [ + 52.490374, + 13.3592583 + ], + [ + 52.4903828, + 13.3590822 + ], + [ + 52.4903893, + 13.3588749 + ], + [ + 52.4903903, + 13.3586672 + ], + [ + 52.4903855, + 13.3584318 + ], + [ + 52.4903759, + 13.3582261 + ], + [ + 52.4903637, + 13.3580489 + ], + [ + 52.490342, + 13.3578142 + ], + [ + 52.48979, + 13.3523817 + ], + [ + 52.489763, + 13.3521779 + ], + [ + 52.4897207, + 13.3519224 + ], + [ + 52.4896893, + 13.3517527 + ], + [ + 52.4896498, + 13.3514963 + ], + [ + 52.4896042, + 13.351137 + ], + [ + 52.4895755, + 13.3508577 + ], + [ + 52.4894385, + 13.3495418 + ], + [ + 52.489399, + 13.3490192 + ], + [ + 52.4893673, + 13.3485277 + ], + [ + 52.4893412, + 13.3482348 + ], + [ + 52.4888727, + 13.343527 + ], + [ + 52.4888037, + 13.3429781 + ], + [ + 52.4887019, + 13.3423243 + ], + [ + 52.4886701, + 13.34201 + ], + [ + 52.4885407, + 13.3407319 + ], + [ + 52.4885009, + 13.3403307 + ], + [ + 52.4884356, + 13.3395297 + ], + [ + 52.4883806, + 13.3386791 + ], + [ + 52.4883539, + 13.3383585 + ], + [ + 52.4882326, + 13.337142 + ], + [ + 52.4882013, + 13.3367927 + ], + [ + 52.488154, + 13.3363261 + ], + [ + 52.4881295, + 13.3361244 + ], + [ + 52.4880652, + 13.3356931 + ], + [ + 52.4875633, + 13.3327727 + ], + [ + 52.4875028, + 13.332463 + ] + ] + }, + { + "osmId": "388702047", + "name": null, + "lengthMeters": 106.22130036486838, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249703, + 13.3875044 + ], + [ + 52.5248886, + 13.3875171 + ], + [ + 52.5247474, + 13.3875403 + ], + [ + 52.5242398, + 13.3876293 + ], + [ + 52.5241046, + 13.3876511 + ], + [ + 52.524076, + 13.3876566 + ], + [ + 52.5240202, + 13.3876673 + ] + ] + }, + { + "osmId": "388702049", + "name": null, + "lengthMeters": 80.07948264420205, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5233049, + 13.3877727 + ], + [ + 52.5233632, + 13.387762 + ], + [ + 52.5235573, + 13.3877265 + ], + [ + 52.5236302, + 13.3877223 + ], + [ + 52.5237075, + 13.3877201 + ], + [ + 52.5238257, + 13.387727 + ], + [ + 52.5238754, + 13.3877283 + ], + [ + 52.5239552, + 13.3877237 + ], + [ + 52.5240231, + 13.3877146 + ] + ] + }, + { + "osmId": "388706076", + "name": "U7", + "lengthMeters": 655.5820041232821, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697267, + 13.4416287 + ], + [ + 52.4725833, + 13.4411469 + ], + [ + 52.4728337, + 13.4410745 + ], + [ + 52.4731159, + 13.44095 + ], + [ + 52.4741765, + 13.4403511 + ], + [ + 52.4746162, + 13.4400971 + ], + [ + 52.4749655, + 13.4399221 + ], + [ + 52.4754695, + 13.4396821 + ] + ] + }, + { + "osmId": "388706077", + "name": "U7", + "lengthMeters": 505.3554544974916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4773419, + 13.4387185 + ], + [ + 52.4776136, + 13.4385534 + ], + [ + 52.478595, + 13.4378316 + ], + [ + 52.4794338, + 13.4372138 + ], + [ + 52.4795625, + 13.437096 + ], + [ + 52.4797116, + 13.4369355 + ], + [ + 52.4798283, + 13.4367942 + ], + [ + 52.48002, + 13.4365236 + ], + [ + 52.4807266, + 13.4354867 + ], + [ + 52.4811639, + 13.4348382 + ] + ] + }, + { + "osmId": "388706078", + "name": "U7", + "lengthMeters": 218.89062345120948, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4754805, + 13.4397358 + ], + [ + 52.4757389, + 13.4396244 + ], + [ + 52.4760123, + 13.4395297 + ], + [ + 52.4765358, + 13.4392871 + ], + [ + 52.476676, + 13.4392161 + ], + [ + 52.4767982, + 13.4391541 + ], + [ + 52.4770518, + 13.4389845 + ], + [ + 52.4773565, + 13.4387784 + ] + ] + }, + { + "osmId": "389467451", + "name": null, + "lengthMeters": 228.16255312354792, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.155003, + 11.4458138 + ], + [ + 48.1549977, + 11.4458216 + ], + [ + 48.1549826, + 11.4458439 + ], + [ + 48.1547879, + 11.4461314 + ], + [ + 48.1544722, + 11.4466013 + ], + [ + 48.1543749, + 11.4467628 + ], + [ + 48.1542058, + 11.4470451 + ], + [ + 48.154053, + 11.4473301 + ], + [ + 48.153886, + 11.4476653 + ], + [ + 48.1537795, + 11.4478913 + ], + [ + 48.1536669, + 11.4481376 + ] + ] + }, + { + "osmId": "389513325", + "name": null, + "lengthMeters": 189.80243603719748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5740758, + 13.3992654 + ], + [ + 52.5733745, + 13.39903 + ], + [ + 52.5724033, + 13.3987041 + ] + ] + }, + { + "osmId": "389513337", + "name": null, + "lengthMeters": 127.91840448449562, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5706655, + 13.398687 + ], + [ + 52.5706, + 13.3987996 + ], + [ + 52.5705929, + 13.3988116 + ], + [ + 52.570535, + 13.398914 + ], + [ + 52.5700597, + 13.3998207 + ], + [ + 52.5699077, + 13.4001107 + ] + ] + }, + { + "osmId": "389530588", + "name": null, + "lengthMeters": 174.9041203928494, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5697382, + 13.4110828 + ], + [ + 52.5696553, + 13.4111574 + ], + [ + 52.5696144, + 13.4111903 + ], + [ + 52.5695737, + 13.4112249 + ], + [ + 52.5695065, + 13.4112701 + ], + [ + 52.5694416, + 13.4113108 + ], + [ + 52.5692849, + 13.411401 + ], + [ + 52.5689898, + 13.4115683 + ], + [ + 52.5688968, + 13.4116209 + ], + [ + 52.5688132, + 13.4116683 + ], + [ + 52.5686342, + 13.4117645 + ], + [ + 52.5684858, + 13.4118505 + ], + [ + 52.5683147, + 13.4119416 + ], + [ + 52.5682883, + 13.4119545 + ], + [ + 52.5682623, + 13.4119673 + ] + ] + }, + { + "osmId": "389530590", + "name": null, + "lengthMeters": 259.9945390461498, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5675217, + 13.4122321 + ], + [ + 52.5677029, + 13.4121896 + ], + [ + 52.567843, + 13.4121595 + ], + [ + 52.5679909, + 13.4121219 + ], + [ + 52.5681604, + 13.4120505 + ], + [ + 52.5682108, + 13.4120293 + ], + [ + 52.5682286, + 13.4120193 + ], + [ + 52.5682679, + 13.4120001 + ], + [ + 52.5684492, + 13.4119072 + ], + [ + 52.5686427, + 13.4118018 + ], + [ + 52.5687366, + 13.4117474 + ], + [ + 52.5688599, + 13.4116789 + ], + [ + 52.5691188, + 13.411535 + ], + [ + 52.5691398, + 13.4115211 + ], + [ + 52.5693298, + 13.4114147 + ], + [ + 52.5695036, + 13.4113135 + ], + [ + 52.5696423, + 13.4112135 + ], + [ + 52.5697182, + 13.4111461 + ], + [ + 52.5697496, + 13.4111194 + ] + ] + }, + { + "osmId": "389705418", + "name": null, + "lengthMeters": 152.28084937587175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120027, + 13.475511 + ], + [ + 52.5119893, + 13.4754911 + ], + [ + 52.5119659, + 13.4754453 + ], + [ + 52.51195, + 13.4754058 + ], + [ + 52.5119365, + 13.4753608 + ], + [ + 52.511934, + 13.4753509 + ], + [ + 52.5119252, + 13.4753038 + ], + [ + 52.5119191, + 13.4752617 + ], + [ + 52.5119181, + 13.4752434 + ], + [ + 52.5119188, + 13.4751235 + ], + [ + 52.511928, + 13.4750206 + ], + [ + 52.5119889, + 13.4744387 + ], + [ + 52.5120425, + 13.4739014 + ], + [ + 52.5120589, + 13.4737339 + ], + [ + 52.5120988, + 13.473326 + ] + ] + }, + { + "osmId": "389705430", + "name": null, + "lengthMeters": 117.31159185089614, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5923061, + 13.4108797 + ], + [ + 52.5922816, + 13.4108857 + ], + [ + 52.592264, + 13.4108876 + ], + [ + 52.5922441, + 13.4108873 + ], + [ + 52.592218, + 13.4108839 + ], + [ + 52.5922029, + 13.4108794 + ], + [ + 52.5921806, + 13.4108702 + ], + [ + 52.5921626, + 13.4108589 + ], + [ + 52.592137, + 13.4108406 + ], + [ + 52.5921108, + 13.4108133 + ], + [ + 52.5920833, + 13.4107769 + ], + [ + 52.59206, + 13.4107419 + ], + [ + 52.592033, + 13.4106962 + ], + [ + 52.5920044, + 13.4106436 + ], + [ + 52.5919721, + 13.4105761 + ], + [ + 52.59195, + 13.4105232 + ], + [ + 52.5919299, + 13.4104731 + ], + [ + 52.5918202, + 13.410176 + ], + [ + 52.5917881, + 13.4100883 + ], + [ + 52.5917588, + 13.4100066 + ], + [ + 52.5916351, + 13.4096626 + ] + ] + }, + { + "osmId": "389827278", + "name": null, + "lengthMeters": 264.9238364929703, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3637627, + 13.4659623 + ], + [ + 52.3636387, + 13.46627 + ], + [ + 52.3635681, + 13.4664776 + ], + [ + 52.3634738, + 13.4667871 + ], + [ + 52.3633847, + 13.467106 + ], + [ + 52.3632859, + 13.4675037 + ], + [ + 52.3632208, + 13.4678369 + ], + [ + 52.3631637, + 13.4681847 + ], + [ + 52.3631198, + 13.4685291 + ], + [ + 52.3630897, + 13.4688368 + ], + [ + 52.3630221, + 13.469625 + ] + ] + }, + { + "osmId": "389827279", + "name": null, + "lengthMeters": 266.1007818844708, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3630523, + 13.4696716 + ], + [ + 52.3631238, + 13.4688472 + ], + [ + 52.363164, + 13.4684205 + ], + [ + 52.363231, + 13.4679633 + ], + [ + 52.3633219, + 13.4675064 + ], + [ + 52.3634317, + 13.467065 + ], + [ + 52.3635442, + 13.4666614 + ], + [ + 52.3636722, + 13.4662936 + ], + [ + 52.3637912, + 13.4659907 + ] + ] + }, + { + "osmId": "390034350", + "name": "U7", + "lengthMeters": 192.96845209513958, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4989866, + 13.3074824 + ], + [ + 52.4991672, + 13.3074344 + ], + [ + 52.4993273, + 13.3074106 + ], + [ + 52.4995013, + 13.307403 + ], + [ + 52.5000051, + 13.3074048 + ], + [ + 52.5001204, + 13.3074052 + ], + [ + 52.5002423, + 13.307399 + ], + [ + 52.5003613, + 13.3073965 + ], + [ + 52.5004767, + 13.307401 + ], + [ + 52.5005924, + 13.3074119 + ], + [ + 52.5007182, + 13.3074294 + ] + ] + }, + { + "osmId": "390034351", + "name": "U7", + "lengthMeters": 281.72390683039544, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.498975, + 13.3074103 + ], + [ + 52.4995016, + 13.3072358 + ], + [ + 52.4998025, + 13.3071791 + ], + [ + 52.4999608, + 13.3071756 + ], + [ + 52.5001843, + 13.3071717 + ], + [ + 52.5003409, + 13.3071966 + ], + [ + 52.5004789, + 13.3072279 + ], + [ + 52.5006822, + 13.3072877 + ], + [ + 52.5009116, + 13.3073691 + ], + [ + 52.5014713, + 13.307577 + ] + ] + }, + { + "osmId": "390034353", + "name": "U7", + "lengthMeters": 413.40619994552253, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953214, + 13.3085087 + ], + [ + 52.4955068, + 13.3084249 + ], + [ + 52.4956461, + 13.3083661 + ], + [ + 52.495943, + 13.3082542 + ], + [ + 52.4961551, + 13.3081873 + ], + [ + 52.4963312, + 13.3081379 + ], + [ + 52.4965271, + 13.3080934 + ], + [ + 52.4972954, + 13.3079471 + ], + [ + 52.4974029, + 13.3079196 + ], + [ + 52.4976158, + 13.307861 + ], + [ + 52.498975, + 13.3074103 + ] + ] + }, + { + "osmId": "390060702", + "name": "U6", + "lengthMeters": 397.7991870769796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467586, + 13.3585441 + ], + [ + 52.5481803, + 13.3560336 + ], + [ + 52.548713, + 13.3550928 + ], + [ + 52.5491948, + 13.3542359 + ] + ] + }, + { + "osmId": "390060715", + "name": "U9", + "lengthMeters": 669.5331873742598, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5468095, + 13.3599147 + ], + [ + 52.5477189, + 13.3613151 + ], + [ + 52.5482831, + 13.3622199 + ], + [ + 52.5492223, + 13.36372 + ], + [ + 52.5497647, + 13.3645043 + ], + [ + 52.5504224, + 13.365536 + ], + [ + 52.5507115, + 13.3660076 + ], + [ + 52.5509351, + 13.3664063 + ], + [ + 52.5511384, + 13.3667909 + ] + ] + }, + { + "osmId": "390060720", + "name": "U9", + "lengthMeters": 129.84472259113176, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5459553, + 13.3586057 + ], + [ + 52.5461132, + 13.3588594 + ], + [ + 52.5463482, + 13.359224 + ], + [ + 52.5468095, + 13.3599147 + ] + ] + }, + { + "osmId": "390060725", + "name": "U9", + "lengthMeters": 620.3402003014646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5426744, + 13.3512195 + ], + [ + 52.5430943, + 13.352365 + ], + [ + 52.5436117, + 13.3537504 + ], + [ + 52.5441212, + 13.355001 + ], + [ + 52.5446285, + 13.3561202 + ], + [ + 52.545135, + 13.3571449 + ], + [ + 52.5453853, + 13.3576134 + ], + [ + 52.5459553, + 13.3586057 + ] + ] + }, + { + "osmId": "390061859", + "name": "U9", + "lengthMeters": 800.1792395125722, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5512069, + 13.366688 + ], + [ + 52.5498015, + 13.3644507 + ], + [ + 52.5492727, + 13.363545 + ], + [ + 52.548357, + 13.3620895 + ], + [ + 52.5475586, + 13.3607988 + ], + [ + 52.547347, + 13.3604622 + ], + [ + 52.5468951, + 13.3597264 + ], + [ + 52.5465657, + 13.3592121 + ], + [ + 52.5464499, + 13.3590333 + ], + [ + 52.5462666, + 13.3587499 + ], + [ + 52.5461753, + 13.3586204 + ], + [ + 52.546043, + 13.3584501 + ] + ] + }, + { + "osmId": "390194960", + "name": "U9", + "lengthMeters": 111.94622112213851, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5511384, + 13.3667909 + ], + [ + 52.551389, + 13.3672268 + ], + [ + 52.5518496, + 13.3679623 + ] + ] + }, + { + "osmId": "390194961", + "name": "U9", + "lengthMeters": 331.2553827762761, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5603999, + 13.3758231 + ], + [ + 52.5601814, + 13.3755522 + ], + [ + 52.5599743, + 13.3753242 + ], + [ + 52.5597199, + 13.3751069 + ], + [ + 52.5580491, + 13.3738603 + ], + [ + 52.5577486, + 13.373617 + ] + ] + }, + { + "osmId": "390211466", + "name": null, + "lengthMeters": 197.13434771345334, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102053, + 13.2846358 + ], + [ + 52.5101783, + 13.2841556 + ], + [ + 52.510142, + 13.2837088 + ], + [ + 52.510047, + 13.2823034 + ], + [ + 52.5100197, + 13.2817393 + ] + ] + }, + { + "osmId": "390211467", + "name": null, + "lengthMeters": 193.89067541679435, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099793, + 13.2817472 + ], + [ + 52.51009, + 13.2835955 + ], + [ + 52.5101464, + 13.284599 + ] + ] + }, + { + "osmId": "390222707", + "name": "U7", + "lengthMeters": 428.4835579623289, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4968739, + 13.3891703 + ], + [ + 52.4969692, + 13.3890839 + ], + [ + 52.4970612, + 13.3889926 + ], + [ + 52.4971518, + 13.388892 + ], + [ + 52.4972392, + 13.3887874 + ], + [ + 52.4973235, + 13.3886765 + ], + [ + 52.4974048, + 13.3885581 + ], + [ + 52.4974831, + 13.3884346 + ], + [ + 52.4975689, + 13.3882849 + ], + [ + 52.4976517, + 13.3881255 + ], + [ + 52.4977176, + 13.3879861 + ], + [ + 52.4977801, + 13.3878398 + ], + [ + 52.4978385, + 13.3876907 + ], + [ + 52.4979042, + 13.3875019 + ], + [ + 52.4979622, + 13.3873153 + ], + [ + 52.4980216, + 13.3871011 + ], + [ + 52.4984702, + 13.3852043 + ], + [ + 52.4985494, + 13.3847802 + ], + [ + 52.4985864, + 13.3845198 + ], + [ + 52.4986119, + 13.3842881 + ], + [ + 52.4986267, + 13.3841121 + ], + [ + 52.4986423, + 13.3837993 + ] + ] + }, + { + "osmId": "390222708", + "name": "U8", + "lengthMeters": 130.51345552587554, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5525731, + 13.3804349 + ], + [ + 52.5524786, + 13.3807031 + ], + [ + 52.5520548, + 13.3817981 + ], + [ + 52.5519492, + 13.3820697 + ] + ] + }, + { + "osmId": "390222709", + "name": "U7", + "lengthMeters": 77.91512277318166, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987642, + 13.3834089 + ], + [ + 52.4987711, + 13.3831378 + ], + [ + 52.4987673, + 13.3828058 + ], + [ + 52.498764, + 13.3827271 + ], + [ + 52.4987551, + 13.3825151 + ], + [ + 52.4987387, + 13.3822603 + ] + ] + }, + { + "osmId": "390222710", + "name": "U7", + "lengthMeters": 104.07203772386747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4986423, + 13.3837993 + ], + [ + 52.4986455, + 13.3834458 + ], + [ + 52.4986443, + 13.3831312 + ], + [ + 52.498643, + 13.3830081 + ], + [ + 52.4986344, + 13.3825855 + ], + [ + 52.4986214, + 13.3822629 + ] + ] + }, + { + "osmId": "390513529", + "name": "Wriezener Bahn", + "lengthMeters": 194.31294293791322, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.637467, + 13.7383978 + ], + [ + 52.63793, + 13.7410229 + ], + [ + 52.6379553, + 13.7411627 + ] + ] + }, + { + "osmId": "391364745", + "name": null, + "lengthMeters": 146.35224051215883, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122636, + 13.3214057 + ], + [ + 52.5120246, + 13.3217404 + ], + [ + 52.5113799, + 13.322598 + ], + [ + 52.5112457, + 13.3227765 + ] + ] + }, + { + "osmId": "391364747", + "name": null, + "lengthMeters": 147.12827452695964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5112699, + 13.3228299 + ], + [ + 52.5119294, + 13.3219618 + ], + [ + 52.5120527, + 13.3217995 + ], + [ + 52.5122931, + 13.3214521 + ] + ] + }, + { + "osmId": "391364748", + "name": null, + "lengthMeters": 79.85624854806949, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122931, + 13.3214521 + ], + [ + 52.512438, + 13.3212097 + ], + [ + 52.5124814, + 13.3211215 + ], + [ + 52.5125308, + 13.3210006 + ], + [ + 52.5125647, + 13.3208988 + ], + [ + 52.5125932, + 13.3207908 + ], + [ + 52.5126157, + 13.3206802 + ], + [ + 52.5126311, + 13.3205675 + ], + [ + 52.512641, + 13.3204533 + ] + ] + }, + { + "osmId": "391385378", + "name": null, + "lengthMeters": 149.2528621268132, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.49737, + 13.3644393 + ], + [ + 52.497641, + 13.3629969 + ], + [ + 52.4977199, + 13.3625751 + ], + [ + 52.4977328, + 13.3625064 + ], + [ + 52.4977659, + 13.3623326 + ] + ] + }, + { + "osmId": "391385379", + "name": null, + "lengthMeters": 168.11112551433797, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4977916, + 13.3620548 + ], + [ + 52.4977064, + 13.3624969 + ], + [ + 52.4975794, + 13.3631731 + ], + [ + 52.4973416, + 13.3644256 + ] + ] + }, + { + "osmId": "391385380", + "name": null, + "lengthMeters": 682.3085543547018, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997955, + 13.3525281 + ], + [ + 52.4993628, + 13.354578 + ], + [ + 52.4978568, + 13.3617188 + ], + [ + 52.4977916, + 13.3620548 + ] + ] + }, + { + "osmId": "391385381", + "name": null, + "lengthMeters": 701.008743866329, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4977659, + 13.3623326 + ], + [ + 52.4978859, + 13.3617165 + ], + [ + 52.4994234, + 13.354403 + ], + [ + 52.4998219, + 13.3525433 + ] + ] + }, + { + "osmId": "391391722", + "name": "U7", + "lengthMeters": 1003.3647894675081, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014713, + 13.307577 + ], + [ + 52.5019156, + 13.3077114 + ], + [ + 52.5021659, + 13.3077629 + ], + [ + 52.5024355, + 13.3077936 + ], + [ + 52.5026151, + 13.3077999 + ], + [ + 52.5027415, + 13.3077965 + ], + [ + 52.5029213, + 13.3077783 + ], + [ + 52.5030838, + 13.3077466 + ], + [ + 52.5032077, + 13.3077093 + ], + [ + 52.5049368, + 13.3071607 + ], + [ + 52.5051462, + 13.3070979 + ], + [ + 52.5056075, + 13.3069282 + ], + [ + 52.5063018, + 13.3066803 + ], + [ + 52.5065311, + 13.3066037 + ], + [ + 52.5068246, + 13.3065075 + ], + [ + 52.5071181, + 13.306416 + ], + [ + 52.5072252, + 13.3063907 + ], + [ + 52.5078548, + 13.3062421 + ], + [ + 52.510077, + 13.3055605 + ], + [ + 52.5103511, + 13.3054716 + ] + ] + }, + { + "osmId": "391391723", + "name": null, + "lengthMeters": 102.10393420962865, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114298, + 13.3044209 + ], + [ + 52.5115139, + 13.3057581 + ], + [ + 52.5115252, + 13.3059215 + ] + ] + }, + { + "osmId": "391391724", + "name": null, + "lengthMeters": 101.73926326522486, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115705, + 13.3059092 + ], + [ + 52.5114792, + 13.3046443 + ], + [ + 52.5114667, + 13.3044156 + ] + ] + }, + { + "osmId": "391391725", + "name": null, + "lengthMeters": 1035.1582784899085, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115252, + 13.3059215 + ], + [ + 52.511558, + 13.3073334 + ], + [ + 52.5115923, + 13.3077586 + ], + [ + 52.5115808, + 13.3078902 + ], + [ + 52.5116068, + 13.3083894 + ], + [ + 52.5116869, + 13.3095573 + ], + [ + 52.5117922, + 13.3111297 + ], + [ + 52.5118199, + 13.311544 + ], + [ + 52.5118361, + 13.3117119 + ], + [ + 52.511862, + 13.3119123 + ], + [ + 52.5119016, + 13.3122002 + ], + [ + 52.5119141, + 13.3123191 + ], + [ + 52.5120119, + 13.3136944 + ], + [ + 52.5120409, + 13.3139233 + ], + [ + 52.5120686, + 13.3141837 + ], + [ + 52.5120891, + 13.314449 + ], + [ + 52.512104, + 13.3147134 + ], + [ + 52.5121974, + 13.316077 + ], + [ + 52.512269, + 13.3172329 + ], + [ + 52.5122915, + 13.3175543 + ], + [ + 52.5123239, + 13.3179324 + ], + [ + 52.5123411, + 13.3181073 + ], + [ + 52.5123788, + 13.3184548 + ], + [ + 52.5125878, + 13.3201299 + ], + [ + 52.5125968, + 13.320218 + ], + [ + 52.5126012, + 13.3203068 + ], + [ + 52.5126016, + 13.3203964 + ], + [ + 52.512597, + 13.3204889 + ], + [ + 52.5125854, + 13.3206047 + ], + [ + 52.5125648, + 13.3207224 + ], + [ + 52.5125393, + 13.3208324 + ], + [ + 52.5125062, + 13.3209423 + ], + [ + 52.5124676, + 13.3210439 + ] + ] + }, + { + "osmId": "391391726", + "name": null, + "lengthMeters": 1266.373759889541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114667, + 13.3044156 + ], + [ + 52.5112811, + 13.3016308 + ], + [ + 52.5109564, + 13.296888 + ], + [ + 52.5108916, + 13.2958152 + ], + [ + 52.5108409, + 13.2949787 + ], + [ + 52.5103068, + 13.2863828 + ], + [ + 52.5102711, + 13.2858065 + ] + ] + }, + { + "osmId": "391391727", + "name": "U7", + "lengthMeters": 268.13397578971575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5103511, + 13.3054716 + ], + [ + 52.510527, + 13.3054081 + ], + [ + 52.5109805, + 13.3052277 + ], + [ + 52.51121, + 13.3051522 + ], + [ + 52.5114066, + 13.3050876 + ], + [ + 52.5115637, + 13.3050496 + ], + [ + 52.5117031, + 13.3050235 + ], + [ + 52.5119006, + 13.3049959 + ], + [ + 52.5122125, + 13.3049772 + ], + [ + 52.5123443, + 13.3049772 + ], + [ + 52.5127331, + 13.3049935 + ] + ] + }, + { + "osmId": "391559409", + "name": null, + "lengthMeters": 159.02809754977096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5132968, + 13.3939632 + ], + [ + 52.5132447, + 13.3938032 + ], + [ + 52.5132025, + 13.3937003 + ], + [ + 52.5131551, + 13.3936028 + ], + [ + 52.5131005, + 13.3935098 + ], + [ + 52.5130292, + 13.393428 + ], + [ + 52.512981, + 13.3933853 + ], + [ + 52.5126426, + 13.3930643 + ], + [ + 52.5125808, + 13.3930034 + ], + [ + 52.5125342, + 13.3929459 + ], + [ + 52.5124763, + 13.3928585 + ], + [ + 52.512437, + 13.3927801 + ], + [ + 52.5124058, + 13.3927063 + ], + [ + 52.5123813, + 13.3926358 + ], + [ + 52.5123609, + 13.3925647 + ], + [ + 52.5123398, + 13.3924794 + ], + [ + 52.512316, + 13.3923566 + ] + ] + }, + { + "osmId": "391559410", + "name": null, + "lengthMeters": 216.46591122010145, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5132487, + 13.3939856 + ], + [ + 52.513275, + 13.3941135 + ], + [ + 52.5132894, + 13.3942235 + ], + [ + 52.5133018, + 13.3943749 + ], + [ + 52.5133132, + 13.3946805 + ], + [ + 52.5133294, + 13.3951191 + ], + [ + 52.5133284, + 13.3952908 + ], + [ + 52.5133073, + 13.3955568 + ], + [ + 52.5132749, + 13.3957697 + ], + [ + 52.5131833, + 13.3962382 + ], + [ + 52.5131555, + 13.3964077 + ], + [ + 52.5131448, + 13.3965692 + ], + [ + 52.5131495, + 13.3967089 + ], + [ + 52.5131504, + 13.396912 + ], + [ + 52.5131403, + 13.3971318 + ] + ] + }, + { + "osmId": "391559412", + "name": null, + "lengthMeters": 446.10974042064214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.51138, + 13.4029323 + ], + [ + 52.5113944, + 13.4025477 + ], + [ + 52.5114072, + 13.4022813 + ], + [ + 52.511423, + 13.4020937 + ], + [ + 52.5114394, + 13.4019491 + ], + [ + 52.5114733, + 13.4017272 + ], + [ + 52.5115037, + 13.4015555 + ], + [ + 52.5115509, + 13.4013841 + ], + [ + 52.5116217, + 13.4011876 + ], + [ + 52.5129179, + 13.3979966 + ], + [ + 52.5130612, + 13.3976636 + ], + [ + 52.5131353, + 13.397489 + ], + [ + 52.5131743, + 13.3973277 + ], + [ + 52.5131941, + 13.397183 + ] + ] + }, + { + "osmId": "391559413", + "name": null, + "lengthMeters": 450.1764487550324, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5131403, + 13.3971318 + ], + [ + 52.5131226, + 13.3973101 + ], + [ + 52.5130944, + 13.397467 + ], + [ + 52.5130399, + 13.3976358 + ], + [ + 52.5128908, + 13.3979712 + ], + [ + 52.5115917, + 13.401163 + ], + [ + 52.5115165, + 13.4013637 + ], + [ + 52.5114779, + 13.4014814 + ], + [ + 52.5114253, + 13.4016683 + ], + [ + 52.5113723, + 13.4018987 + ], + [ + 52.5113434, + 13.4020574 + ], + [ + 52.5113154, + 13.4022705 + ], + [ + 52.5112965, + 13.4025515 + ], + [ + 52.511286, + 13.4029249 + ] + ] + }, + { + "osmId": "391579242", + "name": "U7", + "lengthMeters": 180.22392529969406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4894793, + 13.3154248 + ], + [ + 52.4897168, + 13.3151094 + ], + [ + 52.4899667, + 13.3147731 + ], + [ + 52.4902375, + 13.3143976 + ], + [ + 52.4907254, + 13.3137228 + ] + ] + }, + { + "osmId": "391579243", + "name": "U7", + "lengthMeters": 421.0645513234111, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4907254, + 13.3137228 + ], + [ + 52.4910913, + 13.313232 + ], + [ + 52.4932844, + 13.3102821 + ], + [ + 52.4934959, + 13.3100208 + ], + [ + 52.493669, + 13.3098116 + ] + ] + }, + { + "osmId": "391579250", + "name": "U3", + "lengthMeters": 208.66919461366942, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893091, + 13.3141917 + ], + [ + 52.4894844, + 13.3142621 + ], + [ + 52.489589, + 13.3143109 + ], + [ + 52.4897089, + 13.3143797 + ], + [ + 52.489825, + 13.3144595 + ], + [ + 52.4899244, + 13.3145379 + ], + [ + 52.4901868, + 13.3147949 + ], + [ + 52.4904119, + 13.3151053 + ], + [ + 52.4905438, + 13.3153039 + ], + [ + 52.4906346, + 13.315458 + ], + [ + 52.4907082, + 13.315597 + ], + [ + 52.4907667, + 13.315714 + ], + [ + 52.4908344, + 13.3158584 + ] + ] + }, + { + "osmId": "391579251", + "name": "U3", + "lengthMeters": 612.1592107001346, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4838163, + 13.3136767 + ], + [ + 52.487034, + 13.3138838 + ], + [ + 52.4874296, + 13.3139111 + ], + [ + 52.488112, + 13.3139652 + ], + [ + 52.4883095, + 13.313999 + ], + [ + 52.4885047, + 13.3140363 + ], + [ + 52.4887922, + 13.314069 + ], + [ + 52.4888822, + 13.3140814 + ], + [ + 52.4889719, + 13.314098 + ], + [ + 52.4891148, + 13.3141307 + ], + [ + 52.489221, + 13.3141626 + ], + [ + 52.4893091, + 13.3141917 + ] + ] + }, + { + "osmId": "391590318", + "name": "U8", + "lengthMeters": 131.32644441163603, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5520438, + 13.3821682 + ], + [ + 52.5523966, + 13.3812926 + ], + [ + 52.552565, + 13.3808018 + ], + [ + 52.5526528, + 13.3805068 + ] + ] + }, + { + "osmId": "391590319", + "name": "U8", + "lengthMeters": 449.53666296515206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5519492, + 13.3820697 + ], + [ + 52.5517387, + 13.382578 + ], + [ + 52.5515291, + 13.3830135 + ], + [ + 52.5512944, + 13.3834279 + ], + [ + 52.5507242, + 13.3843821 + ], + [ + 52.5499112, + 13.3857427 + ], + [ + 52.5497905, + 13.3859759 + ], + [ + 52.5497117, + 13.3861584 + ], + [ + 52.5493657, + 13.3871421 + ] + ] + }, + { + "osmId": "391590692", + "name": null, + "lengthMeters": 127.59328617813921, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1775262, + 11.4729392 + ], + [ + 48.1764138, + 11.4733614 + ] + ] + }, + { + "osmId": "391590694", + "name": null, + "lengthMeters": 127.57187166152208, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1764241, + 11.4734147 + ], + [ + 48.1775362, + 11.4729919 + ] + ] + }, + { + "osmId": "391590697", + "name": null, + "lengthMeters": 127.3842181215129, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1764059, + 11.4732665 + ], + [ + 48.1769642, + 11.4730486 + ], + [ + 48.1775153, + 11.4728381 + ] + ] + }, + { + "osmId": "391590699", + "name": null, + "lengthMeters": 128.668280943672, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1775023, + 11.4726964 + ], + [ + 48.1773984, + 11.4727369 + ], + [ + 48.1770497, + 11.4728748 + ], + [ + 48.1766109, + 11.4730502 + ], + [ + 48.1764044, + 11.4731407 + ], + [ + 48.1763852, + 11.4731486 + ] + ] + }, + { + "osmId": "391590700", + "name": null, + "lengthMeters": 122.12443755970281, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1788884, + 11.4721634 + ], + [ + 48.178001, + 11.4725024 + ], + [ + 48.1778241, + 11.47257 + ] + ] + }, + { + "osmId": "391590702", + "name": null, + "lengthMeters": 122.49105458706512, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1778399, + 11.4727112 + ], + [ + 48.1789035, + 11.4722811 + ] + ] + }, + { + "osmId": "391866692", + "name": null, + "lengthMeters": 581.5653417053604, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4950748, + 13.5256152 + ], + [ + 52.4951647, + 13.5253387 + ], + [ + 52.4952909, + 13.5250404 + ], + [ + 52.4954241, + 13.524794 + ], + [ + 52.4954936, + 13.5246854 + ], + [ + 52.4955934, + 13.5245482 + ], + [ + 52.4956677, + 13.5244584 + ], + [ + 52.4957648, + 13.524355 + ], + [ + 52.4958354, + 13.5242887 + ], + [ + 52.4958791, + 13.5242511 + ], + [ + 52.4960693, + 13.5241414 + ], + [ + 52.4970665, + 13.523508 + ], + [ + 52.498109, + 13.5228545 + ], + [ + 52.4983911, + 13.5226772 + ], + [ + 52.4984606, + 13.522625 + ], + [ + 52.4989569, + 13.5222346 + ], + [ + 52.4996445, + 13.5217965 + ] + ] + }, + { + "osmId": "392068730", + "name": "Verbindungsbahn", + "lengthMeters": 171.19427031882697, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5591136, + 9.9329353 + ], + [ + 53.558996, + 9.9330095 + ], + [ + 53.5588307, + 9.9331287 + ], + [ + 53.5586997, + 9.9332531 + ], + [ + 53.5585305, + 9.9334245 + ], + [ + 53.558364, + 9.9336236 + ], + [ + 53.5581811, + 9.9338544 + ], + [ + 53.5579835, + 9.9340824 + ], + [ + 53.5578061, + 9.9342837 + ] + ] + }, + { + "osmId": "392102663", + "name": null, + "lengthMeters": 718.0183366642767, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023153, + 13.5435012 + ], + [ + 52.5034691, + 13.5447816 + ], + [ + 52.503976, + 13.5453502 + ], + [ + 52.5044119, + 13.5458899 + ], + [ + 52.5048587, + 13.5464991 + ], + [ + 52.5058241, + 13.5478351 + ], + [ + 52.5060523, + 13.5481509 + ], + [ + 52.5070575, + 13.5495368 + ], + [ + 52.5074076, + 13.5500059 + ] + ] + }, + { + "osmId": "392113249", + "name": "Stettiner Bahn", + "lengthMeters": 191.7504014979582, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.666096, + 13.5554471 + ], + [ + 52.666729, + 13.5580921 + ] + ] + }, + { + "osmId": "392159878", + "name": null, + "lengthMeters": 118.55768862404034, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4028979, + 13.5882706 + ], + [ + 52.4029534, + 13.588191 + ], + [ + 52.403497, + 13.5873684 + ], + [ + 52.4036826, + 13.5870875 + ] + ] + }, + { + "osmId": "392159908", + "name": null, + "lengthMeters": 104.73582258993724, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4036497, + 13.5870433 + ], + [ + 52.4035199, + 13.5872522 + ], + [ + 52.4030094, + 13.5880121 + ], + [ + 52.4029578, + 13.5880906 + ] + ] + }, + { + "osmId": "392252487", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 347.6083013318835, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5020247, + 13.5417689 + ], + [ + 52.5016257, + 13.5419923 + ], + [ + 52.501281, + 13.5421328 + ], + [ + 52.5008928, + 13.5422367 + ], + [ + 52.5005543, + 13.5423141 + ], + [ + 52.5001847, + 13.5424282 + ], + [ + 52.4997909, + 13.5426037 + ], + [ + 52.4993999, + 13.5428175 + ], + [ + 52.4991325, + 13.5429857 + ], + [ + 52.4990094, + 13.5430631 + ] + ] + }, + { + "osmId": "392310532", + "name": null, + "lengthMeters": 229.26843144991182, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006772, + 13.282503 + ], + [ + 52.5013305, + 13.2824014 + ], + [ + 52.5017007, + 13.2823456 + ], + [ + 52.5023712, + 13.2822445 + ], + [ + 52.5027313, + 13.2822144 + ] + ] + }, + { + "osmId": "392310535", + "name": null, + "lengthMeters": 663.7730526888512, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5369835, + 13.3510382 + ], + [ + 52.5368488, + 13.3499524 + ], + [ + 52.5367961, + 13.3495833 + ], + [ + 52.5367254, + 13.3491626 + ], + [ + 52.5366671, + 13.3488139 + ], + [ + 52.5365221, + 13.3479183 + ], + [ + 52.5364278, + 13.3470844 + ], + [ + 52.536409, + 13.346918 + ], + [ + 52.5362232, + 13.3450588 + ], + [ + 52.5361209, + 13.3441835 + ], + [ + 52.5360165, + 13.3433889 + ], + [ + 52.5358774, + 13.342447 + ], + [ + 52.5357429, + 13.3414443 + ] + ] + }, + { + "osmId": "392310539", + "name": null, + "lengthMeters": 431.77521483376086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5057779, + 13.2821692 + ], + [ + 52.5052434, + 13.2820673 + ], + [ + 52.504802, + 13.2820116 + ], + [ + 52.5046112, + 13.2819938 + ], + [ + 52.5042993, + 13.2819865 + ], + [ + 52.5038046, + 13.2820074 + ], + [ + 52.503568, + 13.2820381 + ], + [ + 52.5031115, + 13.2820923 + ], + [ + 52.5025742, + 13.2821641 + ], + [ + 52.5025109, + 13.282171 + ], + [ + 52.5023794, + 13.2821868 + ], + [ + 52.501906, + 13.2822501 + ] + ] + }, + { + "osmId": "392390127", + "name": null, + "lengthMeters": 150.01496566600983, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046917, + 13.3257871 + ], + [ + 52.5047181, + 13.3253107 + ], + [ + 52.5048132, + 13.3235797 + ] + ] + }, + { + "osmId": "392498663", + "name": null, + "lengthMeters": 1244.7327782287978, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3995551, + 13.593225 + ], + [ + 52.3991396, + 13.5938192 + ], + [ + 52.3988561, + 13.5941977 + ], + [ + 52.3987457, + 13.5943378 + ], + [ + 52.3986847, + 13.5944153 + ], + [ + 52.398666, + 13.5944425 + ], + [ + 52.3984405, + 13.5947703 + ], + [ + 52.3982824, + 13.5950029 + ], + [ + 52.3978631, + 13.5956152 + ], + [ + 52.3975748, + 13.5960216 + ], + [ + 52.3973788, + 13.5962609 + ], + [ + 52.3971984, + 13.5964594 + ], + [ + 52.3969987, + 13.5966641 + ], + [ + 52.3969606, + 13.5966974 + ], + [ + 52.3967009, + 13.5969119 + ], + [ + 52.3964716, + 13.5970697 + ], + [ + 52.3962621, + 13.597191 + ], + [ + 52.3960123, + 13.597307 + ], + [ + 52.3958058, + 13.5973873 + ], + [ + 52.3956014, + 13.5974463 + ], + [ + 52.39535, + 13.5974924 + ], + [ + 52.395125, + 13.5975134 + ], + [ + 52.3949177, + 13.5975176 + ], + [ + 52.3947026, + 13.5974999 + ], + [ + 52.3944799, + 13.5974645 + ], + [ + 52.3942053, + 13.5973866 + ], + [ + 52.3939095, + 13.5972703 + ], + [ + 52.3935595, + 13.5970701 + ], + [ + 52.3933391, + 13.5969237 + ], + [ + 52.3930769, + 13.5967148 + ], + [ + 52.3928479, + 13.5965029 + ], + [ + 52.3926488, + 13.5962778 + ], + [ + 52.3924491, + 13.5960326 + ], + [ + 52.3922154, + 13.5956969 + ], + [ + 52.3920008, + 13.5953307 + ], + [ + 52.3918495, + 13.5950343 + ], + [ + 52.3917335, + 13.5947847 + ], + [ + 52.3916232, + 13.5945284 + ], + [ + 52.3914142, + 13.5939358 + ], + [ + 52.3913381, + 13.5936788 + ], + [ + 52.3912515, + 13.5933667 + ], + [ + 52.3911535, + 13.5929631 + ], + [ + 52.3910612, + 13.5925577 + ], + [ + 52.3909119, + 13.5918677 + ], + [ + 52.3909054, + 13.5918378 + ] + ] + }, + { + "osmId": "392498664", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 344.9224183562643, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6012738, + 13.4673209 + ], + [ + 52.6024965, + 13.4657514 + ], + [ + 52.6027229, + 13.465459 + ], + [ + 52.6037173, + 13.4641746 + ] + ] + }, + { + "osmId": "392498665", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 585.0912656208527, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6036895, + 13.4641285 + ], + [ + 52.6028039, + 13.4652688 + ], + [ + 52.6024677, + 13.4657018 + ], + [ + 52.6018944, + 13.4664384 + ], + [ + 52.6017804, + 13.466583 + ], + [ + 52.6001838, + 13.4686298 + ], + [ + 52.5996197, + 13.4693469 + ], + [ + 52.5995378, + 13.4694511 + ] + ] + }, + { + "osmId": "392577192", + "name": "Linie G", + "lengthMeters": 1103.887189309613, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5170083, + 13.3421603 + ], + [ + 52.5167332, + 13.3422057 + ], + [ + 52.5164755, + 13.3422223 + ], + [ + 52.5162122, + 13.3422132 + ], + [ + 52.5158414, + 13.3421512 + ], + [ + 52.5154949, + 13.342058 + ], + [ + 52.5150081, + 13.3418575 + ], + [ + 52.5146216, + 13.3416567 + ], + [ + 52.5143878, + 13.3415108 + ], + [ + 52.514155, + 13.3413465 + ], + [ + 52.5137158, + 13.3409951 + ], + [ + 52.5133778, + 13.3406766 + ], + [ + 52.5131006, + 13.3403788 + ], + [ + 52.5127788, + 13.339986 + ], + [ + 52.5125118, + 13.3396128 + ], + [ + 52.5120862, + 13.3389124 + ], + [ + 52.5116666, + 13.3381366 + ], + [ + 52.5111648, + 13.3371972 + ], + [ + 52.5109654, + 13.3368299 + ], + [ + 52.5106519, + 13.3362535 + ], + [ + 52.5102617, + 13.335596 + ], + [ + 52.5099845, + 13.3352445 + ], + [ + 52.5096932, + 13.334926 + ], + [ + 52.5095907, + 13.3348313 + ], + [ + 52.509267, + 13.3345324 + ], + [ + 52.5087972, + 13.3341589 + ] + ] + }, + { + "osmId": "392577193", + "name": "Linie G", + "lengthMeters": 178.68553956156128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.517014, + 13.3423159 + ], + [ + 52.5173734, + 13.3422615 + ], + [ + 52.5180852, + 13.3421226 + ], + [ + 52.518377, + 13.3420621 + ], + [ + 52.5186099, + 13.3420091 + ] + ] + }, + { + "osmId": "392577194", + "name": "U9", + "lengthMeters": 1427.8276827056252, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5314036, + 13.3413034 + ], + [ + 52.5287413, + 13.3413212 + ], + [ + 52.5273953, + 13.341321 + ], + [ + 52.5271941, + 13.341307 + ], + [ + 52.5268908, + 13.3412859 + ], + [ + 52.5265939, + 13.3412819 + ], + [ + 52.5264246, + 13.3412617 + ], + [ + 52.5259884, + 13.3411854 + ], + [ + 52.5257759, + 13.3411392 + ], + [ + 52.5256042, + 13.3411017 + ], + [ + 52.5248935, + 13.3409966 + ], + [ + 52.5245573, + 13.3409376 + ], + [ + 52.5241787, + 13.3409081 + ], + [ + 52.5238687, + 13.3409215 + ], + [ + 52.5234557, + 13.3409832 + ], + [ + 52.522737, + 13.3410984 + ], + [ + 52.522111, + 13.3411898 + ], + [ + 52.5208005, + 13.3414499 + ], + [ + 52.5190258, + 13.3418065 + ], + [ + 52.518606, + 13.3418486 + ] + ] + }, + { + "osmId": "392591721", + "name": "U7", + "lengthMeters": 2033.0010859969568, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127331, + 13.3049935 + ], + [ + 52.5129479, + 13.3050375 + ], + [ + 52.5131803, + 13.3050957 + ], + [ + 52.5134426, + 13.3051884 + ], + [ + 52.5136834, + 13.3053005 + ], + [ + 52.5139557, + 13.3054529 + ], + [ + 52.5142377, + 13.3056382 + ], + [ + 52.5145226, + 13.305836 + ], + [ + 52.5150966, + 13.3062473 + ], + [ + 52.5152499, + 13.3063355 + ], + [ + 52.5155106, + 13.3064537 + ], + [ + 52.5157789, + 13.3065239 + ], + [ + 52.5161578, + 13.3065515 + ], + [ + 52.5165292, + 13.3065253 + ], + [ + 52.5166903, + 13.306505 + ], + [ + 52.5174942, + 13.3064094 + ], + [ + 52.5181101, + 13.3063343 + ], + [ + 52.5185468, + 13.3062962 + ], + [ + 52.5187899, + 13.3062753 + ], + [ + 52.5190306, + 13.3062726 + ], + [ + 52.5192582, + 13.3062987 + ], + [ + 52.5195071, + 13.3063461 + ], + [ + 52.5198247, + 13.3064201 + ], + [ + 52.5199514, + 13.3064495 + ], + [ + 52.5201828, + 13.3064927 + ], + [ + 52.520418, + 13.3065216 + ], + [ + 52.5206161, + 13.3065304 + ], + [ + 52.5207788, + 13.3065292 + ], + [ + 52.5209335, + 13.3065141 + ], + [ + 52.521176, + 13.3064789 + ], + [ + 52.5213185, + 13.3064501 + ], + [ + 52.5214598, + 13.306406 + ], + [ + 52.5216717, + 13.3063346 + ], + [ + 52.5224069, + 13.3060553 + ], + [ + 52.5225471, + 13.3060127 + ], + [ + 52.5227072, + 13.305978 + ], + [ + 52.522868, + 13.3059592 + ], + [ + 52.5230107, + 13.3059467 + ], + [ + 52.5231909, + 13.3059392 + ], + [ + 52.5233166, + 13.3059405 + ], + [ + 52.5240156, + 13.3060012 + ], + [ + 52.5242505, + 13.3060093 + ], + [ + 52.5243945, + 13.3059993 + ], + [ + 52.5245024, + 13.3059867 + ], + [ + 52.5246284, + 13.3059653 + ], + [ + 52.5247179, + 13.3059431 + ], + [ + 52.5248242, + 13.3059068 + ], + [ + 52.5249464, + 13.305859 + ], + [ + 52.5250512, + 13.3058145 + ], + [ + 52.5251375, + 13.3057733 + ], + [ + 52.5252407, + 13.3057163 + ], + [ + 52.5253247, + 13.3056641 + ], + [ + 52.5254252, + 13.3055932 + ], + [ + 52.52558, + 13.3054707 + ], + [ + 52.5257331, + 13.3053379 + ], + [ + 52.5258783, + 13.305194 + ], + [ + 52.5260235, + 13.3050357 + ], + [ + 52.5261935, + 13.3048353 + ], + [ + 52.5263256, + 13.3046696 + ], + [ + 52.526474, + 13.3044684 + ], + [ + 52.5266005, + 13.3042918 + ], + [ + 52.5267869, + 13.3040107 + ], + [ + 52.5272637, + 13.3032676 + ], + [ + 52.527412, + 13.3030313 + ], + [ + 52.5275834, + 13.3027796 + ], + [ + 52.5277357, + 13.3025767 + ], + [ + 52.5278805, + 13.3024001 + ], + [ + 52.5280411, + 13.3022169 + ], + [ + 52.5281935, + 13.3020597 + ], + [ + 52.5283633, + 13.3018996 + ], + [ + 52.5285087, + 13.3017748 + ], + [ + 52.528701, + 13.3016286 + ], + [ + 52.5288701, + 13.3015134 + ], + [ + 52.5290219, + 13.3014211 + ], + [ + 52.5296274, + 13.3010675 + ], + [ + 52.5298881, + 13.3009418 + ] + ] + }, + { + "osmId": "392591722", + "name": "U7", + "lengthMeters": 998.6466090844408, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5357263, + 13.2974666 + ], + [ + 52.5357766, + 13.2972813 + ], + [ + 52.5358291, + 13.2970588 + ], + [ + 52.5358649, + 13.2968963 + ], + [ + 52.5359265, + 13.2965596 + ], + [ + 52.5359525, + 13.2964135 + ], + [ + 52.5359833, + 13.2962197 + ], + [ + 52.5360378, + 13.2958494 + ], + [ + 52.5361357, + 13.2951113 + ], + [ + 52.5361778, + 13.2947517 + ], + [ + 52.5362193, + 13.29446 + ], + [ + 52.5363433, + 13.2931796 + ], + [ + 52.5363742, + 13.2928602 + ], + [ + 52.5364036, + 13.2925706 + ], + [ + 52.5365121, + 13.2915245 + ], + [ + 52.5365973, + 13.2906805 + ], + [ + 52.536636, + 13.2901835 + ], + [ + 52.5366585, + 13.2898336 + ], + [ + 52.5366777, + 13.2894814 + ], + [ + 52.5366892, + 13.2891878 + ], + [ + 52.5366964, + 13.2887466 + ], + [ + 52.5366963, + 13.2885104 + ], + [ + 52.5366886, + 13.2870349 + ], + [ + 52.5366817, + 13.2859108 + ], + [ + 52.5366792, + 13.2856547 + ], + [ + 52.536668, + 13.285421 + ], + [ + 52.5366537, + 13.2850606 + ], + [ + 52.536649, + 13.284794 + ], + [ + 52.5366496, + 13.2846164 + ], + [ + 52.5366537, + 13.2843814 + ], + [ + 52.5366739, + 13.2837619 + ], + [ + 52.5367108, + 13.2828793 + ] + ] + }, + { + "osmId": "392591723", + "name": "U7", + "lengthMeters": 344.6473738633337, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5356817, + 13.2975154 + ], + [ + 52.5357207, + 13.2973827 + ], + [ + 52.5357722, + 13.2971932 + ], + [ + 52.5358138, + 13.2970265 + ], + [ + 52.5358451, + 13.2968869 + ], + [ + 52.5358789, + 13.2967187 + ], + [ + 52.5359248, + 13.2964415 + ], + [ + 52.535984, + 13.2959964 + ], + [ + 52.5360363, + 13.2955445 + ], + [ + 52.5360677, + 13.2951936 + ], + [ + 52.5360949, + 13.2948284 + ], + [ + 52.5361094, + 13.2944358 + ], + [ + 52.5361781, + 13.2937365 + ], + [ + 52.5362695, + 13.2928393 + ], + [ + 52.5363054, + 13.2925475 + ] + ] + }, + { + "osmId": "392602880", + "name": "U7", + "lengthMeters": 1081.5465461397127, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.429835, + 13.4529859 + ], + [ + 52.4304279, + 13.4521569 + ], + [ + 52.4308908, + 13.4517056 + ], + [ + 52.4311785, + 13.4514268 + ], + [ + 52.431509, + 13.4511484 + ], + [ + 52.4318843, + 13.4508245 + ], + [ + 52.4322624, + 13.4505484 + ], + [ + 52.4326711, + 13.450272 + ], + [ + 52.4331115, + 13.4500315 + ], + [ + 52.4339321, + 13.4496513 + ], + [ + 52.4345328, + 13.4493982 + ], + [ + 52.435533, + 13.4490257 + ], + [ + 52.4362255, + 13.4488209 + ], + [ + 52.4367397, + 13.4486565 + ], + [ + 52.4373027, + 13.4484976 + ], + [ + 52.4382329, + 13.448096 + ], + [ + 52.4383254, + 13.4480569 + ], + [ + 52.4389105, + 13.4478094 + ] + ] + }, + { + "osmId": "392602883", + "name": "U7", + "lengthMeters": 286.7482084401266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4277596, + 13.4554882 + ], + [ + 52.428058, + 13.4550579 + ], + [ + 52.4287938, + 13.4541316 + ], + [ + 52.4295772, + 13.4532641 + ], + [ + 52.429835, + 13.4529859 + ] + ] + }, + { + "osmId": "392602887", + "name": "U7", + "lengthMeters": 290.1032312733388, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4276369, + 13.4552319 + ], + [ + 52.4279313, + 13.4548136 + ], + [ + 52.4286898, + 13.4538805 + ], + [ + 52.4290039, + 13.453533 + ], + [ + 52.4297433, + 13.4527136 + ] + ] + }, + { + "osmId": "392602893", + "name": "U7", + "lengthMeters": 498.65124001306305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4250851, + 13.4612593 + ], + [ + 52.4258296, + 13.4591672 + ], + [ + 52.4269231, + 13.4569754 + ], + [ + 52.4276369, + 13.4552319 + ] + ] + }, + { + "osmId": "392621997", + "name": "U7", + "lengthMeters": 143.9680992302305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4245207, + 13.4632009 + ], + [ + 52.4249637, + 13.461909 + ], + [ + 52.4251569, + 13.4613517 + ] + ] + }, + { + "osmId": "392621998", + "name": "U7", + "lengthMeters": 492.9577126188434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4251569, + 13.4613517 + ], + [ + 52.4259329, + 13.4593727 + ], + [ + 52.4270617, + 13.4572503 + ], + [ + 52.4277596, + 13.4554882 + ] + ] + }, + { + "osmId": "392622013", + "name": "U7", + "lengthMeters": 113.89285973704688, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4245831, + 13.4627234 + ], + [ + 52.4250851, + 13.4612593 + ] + ] + }, + { + "osmId": "392733176", + "name": "U9", + "lengthMeters": 217.4065794399904, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328263, + 13.3413622 + ], + [ + 52.5332457, + 13.3413117 + ], + [ + 52.5336675, + 13.3413063 + ], + [ + 52.5340377, + 13.3413453 + ], + [ + 52.5343151, + 13.3414097 + ], + [ + 52.534719, + 13.3415726 + ], + [ + 52.5347629, + 13.3415944 + ] + ] + }, + { + "osmId": "392733177", + "name": "U9", + "lengthMeters": 156.990846982034, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5314165, + 13.3413682 + ], + [ + 52.5316615, + 13.3413932 + ], + [ + 52.5317916, + 13.3414109 + ], + [ + 52.5324532, + 13.3414101 + ], + [ + 52.5328263, + 13.3413622 + ] + ] + }, + { + "osmId": "392733178", + "name": "U9", + "lengthMeters": 157.29569883549095, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5328167, + 13.3412387 + ], + [ + 52.5327944, + 13.3412386 + ], + [ + 52.5326672, + 13.3412379 + ], + [ + 52.5320987, + 13.341235 + ], + [ + 52.5316622, + 13.3412632 + ], + [ + 52.5314036, + 13.3413034 + ] + ] + }, + { + "osmId": "392754074", + "name": "U7", + "lengthMeters": 492.0863836768817, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530522, + 13.4488406 + ], + [ + 52.4540542, + 13.4485423 + ], + [ + 52.4547758, + 13.4483464 + ], + [ + 52.4550304, + 13.4482863 + ], + [ + 52.4553481, + 13.448246 + ], + [ + 52.4557166, + 13.4482669 + ], + [ + 52.4559819, + 13.4483209 + ], + [ + 52.4563057, + 13.4484249 + ], + [ + 52.4565721, + 13.448502 + ], + [ + 52.4568373, + 13.4485513 + ], + [ + 52.4571483, + 13.4485687 + ], + [ + 52.4574327, + 13.4485332 + ] + ] + }, + { + "osmId": "392754077", + "name": "U7", + "lengthMeters": 329.6769124666937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4501541, + 13.4497935 + ], + [ + 52.4516005, + 13.4493797 + ], + [ + 52.4520869, + 13.44926 + ], + [ + 52.4526871, + 13.4491066 + ], + [ + 52.453069, + 13.4489265 + ] + ] + }, + { + "osmId": "392754078", + "name": "U7", + "lengthMeters": 204.918412982433, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4512369, + 13.4493534 + ], + [ + 52.4515878, + 13.4492584 + ], + [ + 52.4520738, + 13.4491401 + ], + [ + 52.4526693, + 13.4489868 + ], + [ + 52.4530522, + 13.4488406 + ] + ] + }, + { + "osmId": "392773514", + "name": "U7", + "lengthMeters": 160.64922872156083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4863441, + 13.3215914 + ], + [ + 52.4863654, + 13.3213718 + ], + [ + 52.4863904, + 13.3211691 + ], + [ + 52.4864163, + 13.3209863 + ], + [ + 52.4864532, + 13.3207807 + ], + [ + 52.4864804, + 13.3206861 + ], + [ + 52.4865383, + 13.3204697 + ], + [ + 52.4866147, + 13.3202387 + ], + [ + 52.486693, + 13.3200424 + ], + [ + 52.4867782, + 13.3198561 + ], + [ + 52.4868598, + 13.3196995 + ], + [ + 52.4869734, + 13.3195131 + ] + ] + }, + { + "osmId": "392773515", + "name": "U7", + "lengthMeters": 1179.9209155411322, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.486486, + 13.3213312 + ], + [ + 52.4865192, + 13.3210305 + ], + [ + 52.4865536, + 13.3207717 + ], + [ + 52.4865954, + 13.3206018 + ], + [ + 52.4866203, + 13.320511 + ], + [ + 52.4866633, + 13.3203625 + ], + [ + 52.4867345, + 13.320154 + ], + [ + 52.4868268, + 13.319932 + ], + [ + 52.4869068, + 13.3197715 + ], + [ + 52.4870068, + 13.3196024 + ], + [ + 52.4872771, + 13.3191711 + ], + [ + 52.4878785, + 13.3181182 + ], + [ + 52.4887709, + 13.3165801 + ], + [ + 52.4888973, + 13.3163694 + ], + [ + 52.4890544, + 13.3161264 + ], + [ + 52.4891921, + 13.3159336 + ], + [ + 52.4893477, + 13.3157325 + ], + [ + 52.4896533, + 13.3153717 + ], + [ + 52.4898163, + 13.3151855 + ], + [ + 52.4900475, + 13.3149339 + ], + [ + 52.4903804, + 13.3145267 + ], + [ + 52.4906784, + 13.3141087 + ], + [ + 52.4908189, + 13.3139135 + ], + [ + 52.4911722, + 13.3134193 + ], + [ + 52.4916612, + 13.3127428 + ], + [ + 52.4927627, + 13.3112668 + ], + [ + 52.4931982, + 13.3106662 + ], + [ + 52.4934537, + 13.3103371 + ], + [ + 52.4937152, + 13.3100248 + ], + [ + 52.4939394, + 13.309773 + ], + [ + 52.4939738, + 13.3097353 + ], + [ + 52.4941343, + 13.3095684 + ] + ] + }, + { + "osmId": "392773516", + "name": "U7", + "lengthMeters": 393.1210461070663, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4869734, + 13.3195131 + ], + [ + 52.487829, + 13.3180842 + ], + [ + 52.4888043, + 13.3163924 + ], + [ + 52.4889723, + 13.3161272 + ], + [ + 52.4891322, + 13.315892 + ], + [ + 52.4892555, + 13.3157207 + ], + [ + 52.4894793, + 13.3154248 + ] + ] + }, + { + "osmId": "392799678", + "name": "U3", + "lengthMeters": 1340.8754482582624, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4677171, + 13.3102002 + ], + [ + 52.4678134, + 13.3103316 + ], + [ + 52.4680948, + 13.3106903 + ], + [ + 52.4683157, + 13.3109507 + ], + [ + 52.4685232, + 13.3111744 + ], + [ + 52.4686449, + 13.3113001 + ], + [ + 52.4687734, + 13.3114092 + ], + [ + 52.4688838, + 13.3115136 + ], + [ + 52.4696271, + 13.3123377 + ], + [ + 52.4697785, + 13.3124956 + ], + [ + 52.4698396, + 13.3125558 + ], + [ + 52.4703856, + 13.313068 + ], + [ + 52.4705657, + 13.313223 + ], + [ + 52.471696, + 13.3140439 + ], + [ + 52.4718469, + 13.314137 + ], + [ + 52.4719893, + 13.3142089 + ], + [ + 52.472145, + 13.3142769 + ], + [ + 52.4722838, + 13.314336 + ], + [ + 52.4723885, + 13.3143778 + ], + [ + 52.472512, + 13.3144238 + ], + [ + 52.472617, + 13.3144435 + ], + [ + 52.4728071, + 13.3144665 + ], + [ + 52.4738372, + 13.3145303 + ], + [ + 52.4739449, + 13.314537 + ], + [ + 52.4742306, + 13.3145175 + ], + [ + 52.474408, + 13.3144782 + ], + [ + 52.4744795, + 13.3144616 + ], + [ + 52.4745672, + 13.3144394 + ], + [ + 52.4746606, + 13.3144142 + ], + [ + 52.4748788, + 13.3143609 + ], + [ + 52.4751817, + 13.3142863 + ], + [ + 52.4754354, + 13.3142087 + ], + [ + 52.4756244, + 13.314139 + ], + [ + 52.4758036, + 13.3140671 + ], + [ + 52.4760646, + 13.3139571 + ], + [ + 52.4762707, + 13.3138623 + ], + [ + 52.476445, + 13.3137789 + ], + [ + 52.4767875, + 13.3136092 + ], + [ + 52.4770232, + 13.3134926 + ], + [ + 52.4771595, + 13.3134173 + ], + [ + 52.4784923, + 13.3126114 + ], + [ + 52.4785606, + 13.3125769 + ], + [ + 52.4786321, + 13.3125468 + ], + [ + 52.4787036, + 13.3125242 + ], + [ + 52.4787939, + 13.3125113 + ], + [ + 52.4789098, + 13.312512 + ] + ] + }, + { + "osmId": "392799679", + "name": "U3", + "lengthMeters": 228.70429416253373, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4677838, + 13.3100504 + ], + [ + 52.4677141, + 13.3099534 + ], + [ + 52.4676339, + 13.3098203 + ], + [ + 52.467453, + 13.3095314 + ], + [ + 52.4670281, + 13.3087573 + ], + [ + 52.4665965, + 13.3079728 + ], + [ + 52.4663696, + 13.3076019 + ] + ] + }, + { + "osmId": "392799680", + "name": "U3", + "lengthMeters": 231.05481062099076, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4663452, + 13.3076465 + ], + [ + 52.4665079, + 13.3080439 + ], + [ + 52.4669659, + 13.3088779 + ], + [ + 52.4673898, + 13.309643 + ], + [ + 52.4675484, + 13.3099411 + ], + [ + 52.4677171, + 13.3102002 + ] + ] + }, + { + "osmId": "393445104", + "name": null, + "lengthMeters": 211.09018995435798, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0809078, + 11.6091009 + ], + [ + 48.0807706, + 11.6091359 + ], + [ + 48.0801324, + 11.6092984 + ], + [ + 48.0795765, + 11.60944 + ], + [ + 48.0795518, + 11.6094462 + ], + [ + 48.0790361, + 11.6095756 + ] + ] + }, + { + "osmId": "393445105", + "name": null, + "lengthMeters": 1414.909099729507, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0664825, + 11.6124663 + ], + [ + 48.0666011, + 11.6124692 + ], + [ + 48.0669325, + 11.6124775 + ], + [ + 48.0673787, + 11.6124759 + ], + [ + 48.0674438, + 11.6124712 + ], + [ + 48.0676384, + 11.6124571 + ], + [ + 48.0678947, + 11.6124264 + ], + [ + 48.0683352, + 11.6123479 + ], + [ + 48.070353, + 11.6118387 + ], + [ + 48.0756486, + 11.6104918 + ], + [ + 48.076291, + 11.6103284 + ], + [ + 48.0770393, + 11.6101381 + ], + [ + 48.0789486, + 11.6096524 + ], + [ + 48.0790496, + 11.6096267 + ] + ] + }, + { + "osmId": "394139281", + "name": null, + "lengthMeters": 235.41902300141967, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1371982, + 11.5898969 + ], + [ + 48.1366179, + 11.5929479 + ] + ] + }, + { + "osmId": "394320749", + "name": null, + "lengthMeters": 375.9042368374941, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5230033, + 13.3918245 + ], + [ + 52.5229128, + 13.3917652 + ], + [ + 52.5228306, + 13.3917 + ], + [ + 52.5226909, + 13.3915684 + ], + [ + 52.5225779, + 13.3914462 + ], + [ + 52.5224693, + 13.3913056 + ], + [ + 52.5224098, + 13.3912121 + ], + [ + 52.5223511, + 13.3911116 + ], + [ + 52.5222988, + 13.3910036 + ], + [ + 52.5222493, + 13.3908918 + ], + [ + 52.5222077, + 13.3907819 + ], + [ + 52.5221724, + 13.3906636 + ], + [ + 52.5221404, + 13.3905424 + ], + [ + 52.5221152, + 13.3904289 + ], + [ + 52.5220945, + 13.3903095 + ], + [ + 52.5220777, + 13.3901782 + ], + [ + 52.5220638, + 13.39004 + ], + [ + 52.5220561, + 13.3897503 + ], + [ + 52.5220389, + 13.3891904 + ], + [ + 52.5220061, + 13.3888828 + ], + [ + 52.5219957, + 13.3887829 + ], + [ + 52.5219837, + 13.3886795 + ], + [ + 52.5219694, + 13.3885771 + ], + [ + 52.521951, + 13.3884867 + ], + [ + 52.521929, + 13.3883987 + ], + [ + 52.5219023, + 13.3883013 + ], + [ + 52.5218694, + 13.3882044 + ], + [ + 52.5218254, + 13.3880948 + ], + [ + 52.5218007, + 13.3880388 + ], + [ + 52.5217676, + 13.3879724 + ], + [ + 52.521655, + 13.3877823 + ], + [ + 52.5215991, + 13.3876894 + ], + [ + 52.5215428, + 13.3876006 + ], + [ + 52.5213691, + 13.3873575 + ] + ] + }, + { + "osmId": "394320750", + "name": null, + "lengthMeters": 380.2010542399903, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5213119, + 13.3874678 + ], + [ + 52.5214939, + 13.3876804 + ], + [ + 52.5215542, + 13.3877632 + ], + [ + 52.5216114, + 13.3878594 + ], + [ + 52.5217215, + 13.3880547 + ], + [ + 52.521747, + 13.3881025 + ], + [ + 52.5217729, + 13.3881592 + ], + [ + 52.5218157, + 13.3882718 + ], + [ + 52.5218432, + 13.388359 + ], + [ + 52.5218647, + 13.3884443 + ], + [ + 52.5218949, + 13.388591 + ], + [ + 52.521932, + 13.3889239 + ], + [ + 52.5219684, + 13.3892561 + ], + [ + 52.5219879, + 13.3897564 + ], + [ + 52.5220018, + 13.390042 + ], + [ + 52.5220112, + 13.3901983 + ], + [ + 52.5220233, + 13.39035 + ], + [ + 52.5220418, + 13.3904806 + ], + [ + 52.5220659, + 13.390606 + ], + [ + 52.5220973, + 13.390726 + ], + [ + 52.5221324, + 13.3908454 + ], + [ + 52.5221736, + 13.3909573 + ], + [ + 52.5222177, + 13.3910646 + ], + [ + 52.5222669, + 13.3911674 + ], + [ + 52.5223192, + 13.3912668 + ], + [ + 52.5224237, + 13.3914282 + ], + [ + 52.5225293, + 13.3915626 + ], + [ + 52.5226538, + 13.3916897 + ], + [ + 52.5227818, + 13.3917947 + ], + [ + 52.5228778, + 13.3918609 + ], + [ + 52.5229831, + 13.3919189 + ] + ] + }, + { + "osmId": "394320751", + "name": null, + "lengthMeters": 225.63042894222903, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196337, + 13.3856036 + ], + [ + 52.5197439, + 13.3856878 + ], + [ + 52.5198491, + 13.3857863 + ], + [ + 52.5201473, + 13.3860934 + ], + [ + 52.5204288, + 13.386401 + ], + [ + 52.5206238, + 13.3866467 + ], + [ + 52.5210212, + 13.3871505 + ], + [ + 52.5213119, + 13.3874678 + ] + ] + }, + { + "osmId": "394320752", + "name": null, + "lengthMeters": 232.80741658875817, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5213691, + 13.3873575 + ], + [ + 52.5210947, + 13.3869811 + ], + [ + 52.5207072, + 13.3864625 + ], + [ + 52.5205081, + 13.3861976 + ], + [ + 52.5202346, + 13.3858855 + ], + [ + 52.5199173, + 13.3855777 + ], + [ + 52.5198157, + 13.385482 + ], + [ + 52.5197612, + 13.3854381 + ], + [ + 52.519725, + 13.3854129 + ], + [ + 52.5196669, + 13.3853781 + ] + ] + }, + { + "osmId": "394374234", + "name": null, + "lengthMeters": 965.1292486944756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.479967, + 13.3287661 + ], + [ + 52.4803318, + 13.3287889 + ], + [ + 52.4806017, + 13.3288545 + ], + [ + 52.4808344, + 13.3289608 + ], + [ + 52.4811417, + 13.3291603 + ], + [ + 52.4831592, + 13.3306271 + ], + [ + 52.4833717, + 13.3307639 + ], + [ + 52.4838421, + 13.3309913 + ], + [ + 52.4840671, + 13.3310674 + ], + [ + 52.4843028, + 13.3311415 + ], + [ + 52.4845329, + 13.331193 + ], + [ + 52.4849886, + 13.3312359 + ], + [ + 52.4867323, + 13.3312082 + ], + [ + 52.4874715, + 13.3311797 + ], + [ + 52.4879959, + 13.3311592 + ], + [ + 52.4883744, + 13.331146 + ] + ] + }, + { + "osmId": "394374244", + "name": "U7", + "lengthMeters": 262.6380688797036, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4875028, + 13.332463 + ], + [ + 52.4873998, + 13.3319983 + ], + [ + 52.4873366, + 13.3316065 + ], + [ + 52.4870874, + 13.3300607 + ], + [ + 52.4868706, + 13.3287275 + ] + ] + }, + { + "osmId": "394374247", + "name": "U7", + "lengthMeters": 3843.407176505414, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987387, + 13.3822603 + ], + [ + 52.4986817, + 13.3807943 + ], + [ + 52.4986709, + 13.3805311 + ], + [ + 52.4986557, + 13.3803266 + ], + [ + 52.4986298, + 13.3800654 + ], + [ + 52.4986041, + 13.379865 + ], + [ + 52.4985688, + 13.3796382 + ], + [ + 52.4985259, + 13.379414 + ], + [ + 52.4984784, + 13.3791917 + ], + [ + 52.498424, + 13.3789749 + ], + [ + 52.4983552, + 13.3787367 + ], + [ + 52.4982734, + 13.3785052 + ], + [ + 52.4981927, + 13.3783112 + ], + [ + 52.4980948, + 13.3781011 + ], + [ + 52.4979666, + 13.3778239 + ], + [ + 52.4978209, + 13.377577 + ], + [ + 52.4977062, + 13.3773916 + ], + [ + 52.4975486, + 13.3771534 + ], + [ + 52.4973996, + 13.3769798 + ], + [ + 52.4972281, + 13.3768043 + ], + [ + 52.4969968, + 13.3766048 + ], + [ + 52.4967704, + 13.3764671 + ], + [ + 52.4962857, + 13.3762788 + ], + [ + 52.4953301, + 13.3760312 + ], + [ + 52.4951044, + 13.3759296 + ], + [ + 52.494907, + 13.3758184 + ], + [ + 52.4946952, + 13.3756582 + ], + [ + 52.4945126, + 13.3754713 + ], + [ + 52.4942579, + 13.3751356 + ], + [ + 52.4940318, + 13.3747738 + ], + [ + 52.4938207, + 13.3743861 + ], + [ + 52.4936455, + 13.3740172 + ], + [ + 52.4935166, + 13.3737125 + ], + [ + 52.4933994, + 13.3734017 + ], + [ + 52.4932333, + 13.3728534 + ], + [ + 52.4931566, + 13.3724932 + ], + [ + 52.4931111, + 13.3722096 + ], + [ + 52.4930749, + 13.371869 + ], + [ + 52.4930656, + 13.3717091 + ], + [ + 52.4930617, + 13.3715858 + ], + [ + 52.493055, + 13.3712028 + ], + [ + 52.4930535, + 13.3707908 + ], + [ + 52.4930453, + 13.3703794 + ], + [ + 52.4930292, + 13.3700585 + ], + [ + 52.4930133, + 13.3698326 + ], + [ + 52.4929988, + 13.3696336 + ], + [ + 52.492968, + 13.3694059 + ], + [ + 52.4929211, + 13.369151 + ], + [ + 52.492877, + 13.3689356 + ], + [ + 52.4928254, + 13.3687557 + ], + [ + 52.4927472, + 13.368526 + ], + [ + 52.4926692, + 13.36833 + ], + [ + 52.4925952, + 13.368166 + ], + [ + 52.4924914, + 13.367965 + ], + [ + 52.4923371, + 13.3677205 + ], + [ + 52.4922149, + 13.3675478 + ], + [ + 52.4919184, + 13.3671657 + ], + [ + 52.491746, + 13.3669539 + ], + [ + 52.4916191, + 13.3667877 + ], + [ + 52.4914853, + 13.3665898 + ], + [ + 52.4913588, + 13.366377 + ], + [ + 52.4912633, + 13.3661998 + ], + [ + 52.491163, + 13.3659922 + ], + [ + 52.4910645, + 13.3657797 + ], + [ + 52.4910258, + 13.3656776 + ], + [ + 52.4909533, + 13.3654729 + ], + [ + 52.4908813, + 13.3652361 + ], + [ + 52.4908118, + 13.3649623 + ], + [ + 52.4907548, + 13.3646804 + ], + [ + 52.490714, + 13.3644246 + ], + [ + 52.4906682, + 13.3641084 + ], + [ + 52.4906224, + 13.3637623 + ], + [ + 52.4905826, + 13.3634147 + ], + [ + 52.4904343, + 13.3621126 + ], + [ + 52.4904094, + 13.3618185 + ], + [ + 52.4903956, + 13.361524 + ], + [ + 52.4903933, + 13.3612861 + ], + [ + 52.4903986, + 13.3610193 + ], + [ + 52.4904111, + 13.3606519 + ], + [ + 52.4904543, + 13.3598438 + ], + [ + 52.490468, + 13.3594289 + ], + [ + 52.490465, + 13.3589728 + ], + [ + 52.4904497, + 13.3585607 + ], + [ + 52.4904254, + 13.3582112 + ], + [ + 52.4904071, + 13.3580077 + ], + [ + 52.4898052, + 13.3521126 + ], + [ + 52.48978, + 13.3518379 + ], + [ + 52.4897053, + 13.3511099 + ], + [ + 52.489571, + 13.3498022 + ], + [ + 52.4895411, + 13.3495121 + ], + [ + 52.4895008, + 13.3491148 + ], + [ + 52.4894268, + 13.3485383 + ], + [ + 52.4893505, + 13.3479026 + ], + [ + 52.4889101, + 13.3434821 + ], + [ + 52.4888458, + 13.3426054 + ], + [ + 52.4888181, + 13.3422968 + ], + [ + 52.4886909, + 13.3409909 + ], + [ + 52.4886615, + 13.3406982 + ], + [ + 52.4886088, + 13.3401393 + ], + [ + 52.4885509, + 13.3396463 + ], + [ + 52.488479, + 13.3390978 + ], + [ + 52.4884272, + 13.3385843 + ], + [ + 52.4882883, + 13.3371637 + ], + [ + 52.4882323, + 13.336563 + ], + [ + 52.4881854, + 13.3361611 + ], + [ + 52.4881415, + 13.335846 + ], + [ + 52.4876196, + 13.3327854 + ], + [ + 52.4875685, + 13.3324128 + ] + ] + }, + { + "osmId": "394374253", + "name": "U7", + "lengthMeters": 490.55229859833094, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4868706, + 13.3287275 + ], + [ + 52.4865896, + 13.327252 + ], + [ + 52.4865471, + 13.3270233 + ], + [ + 52.4865167, + 13.3268266 + ], + [ + 52.4864863, + 13.3265708 + ], + [ + 52.486468, + 13.3263666 + ], + [ + 52.486457, + 13.3261643 + ], + [ + 52.4864502, + 13.3259566 + ], + [ + 52.4864472, + 13.325663 + ], + [ + 52.4864487, + 13.3253106 + ], + [ + 52.4864538, + 13.3248979 + ], + [ + 52.4864529, + 13.324544 + ], + [ + 52.4864454, + 13.3243088 + ], + [ + 52.4864319, + 13.3240432 + ], + [ + 52.4864197, + 13.3237202 + ], + [ + 52.4864122, + 13.323545 + ], + [ + 52.4863853, + 13.3232576 + ], + [ + 52.4863438, + 13.3227969 + ], + [ + 52.4863312, + 13.3225499 + ], + [ + 52.4863244, + 13.3222643 + ], + [ + 52.4863259, + 13.3219597 + ], + [ + 52.4863327, + 13.3217467 + ], + [ + 52.4863441, + 13.3215914 + ] + ] + }, + { + "osmId": "394563357", + "name": "U3", + "lengthMeters": 138.45682802472615, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4576925, + 13.2898977 + ], + [ + 52.4575857, + 13.2897909 + ], + [ + 52.4574608, + 13.2896801 + ], + [ + 52.4572802, + 13.2895168 + ], + [ + 52.4570906, + 13.2893426 + ], + [ + 52.4569704, + 13.2892343 + ], + [ + 52.4568433, + 13.2891283 + ], + [ + 52.4567183, + 13.2890324 + ], + [ + 52.4565927, + 13.2889428 + ] + ] + }, + { + "osmId": "394897371", + "name": null, + "lengthMeters": 345.86680891907633, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5763635, + 13.2953896 + ], + [ + 52.5760903, + 13.2956103 + ], + [ + 52.5758654, + 13.2958249 + ], + [ + 52.5756484, + 13.2960426 + ], + [ + 52.5755131, + 13.2961917 + ], + [ + 52.5754163, + 13.2962983 + ], + [ + 52.5752413, + 13.2964918 + ], + [ + 52.5749502, + 13.296867 + ], + [ + 52.5746771, + 13.2972507 + ], + [ + 52.5742805, + 13.297858 + ], + [ + 52.5738871, + 13.2984453 + ] + ] + }, + { + "osmId": "395131309", + "name": null, + "lengthMeters": 101.31983973780927, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4922673, + 13.3675259 + ], + [ + 52.4923917, + 13.367635 + ], + [ + 52.4930741, + 13.3681195 + ], + [ + 52.4930995, + 13.3681332 + ] + ] + }, + { + "osmId": "395397868", + "name": null, + "lengthMeters": 97.764090166141, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5902219, + 13.2829374 + ], + [ + 52.5906221, + 13.2826885 + ], + [ + 52.5910389, + 13.2824032 + ] + ] + }, + { + "osmId": "395397871", + "name": null, + "lengthMeters": 79.91593082352698, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5909359, + 13.2823312 + ], + [ + 52.5906221, + 13.2826885 + ], + [ + 52.5903479, + 13.2830114 + ] + ] + }, + { + "osmId": "395470581", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 160.56560503595543, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5531636, + 10.0068345 + ], + [ + 53.5530528, + 10.0068922 + ], + [ + 53.5530525, + 10.0068923 + ], + [ + 53.5530522, + 10.0068924 + ], + [ + 53.5526948, + 10.0070769 + ], + [ + 53.5525687, + 10.0071357 + ], + [ + 53.5521946, + 10.0072931 + ], + [ + 53.5517746, + 10.007497 + ] + ] + }, + { + "osmId": "396007082", + "name": null, + "lengthMeters": 81.8199037763427, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126142, + 13.5739567 + ], + [ + 52.512596, + 13.5751654 + ] + ] + }, + { + "osmId": "396007084", + "name": null, + "lengthMeters": 80.87900970975456, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512596, + 13.5751654 + ], + [ + 52.5125803, + 13.5760855 + ], + [ + 52.5125757, + 13.5763601 + ] + ] + }, + { + "osmId": "396007085", + "name": null, + "lengthMeters": 1010.2667027609054, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120406, + 13.591518 + ], + [ + 52.5120045, + 13.5930545 + ], + [ + 52.5119325, + 13.5950659 + ], + [ + 52.5118613, + 13.5968358 + ], + [ + 52.5117527, + 13.5996417 + ], + [ + 52.5117192, + 13.6005309 + ], + [ + 52.5117002, + 13.6010611 + ], + [ + 52.5116862, + 13.6016022 + ], + [ + 52.5116817, + 13.602407 + ], + [ + 52.5116873, + 13.6028647 + ], + [ + 52.5117001, + 13.6033783 + ], + [ + 52.5117324, + 13.6042359 + ], + [ + 52.5117873, + 13.6055381 + ], + [ + 52.5118251, + 13.6064219 + ] + ] + }, + { + "osmId": "396197831", + "name": null, + "lengthMeters": 200.50690140237674, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1062163, + 11.4144154 + ], + [ + 48.106295, + 11.4144883 + ], + [ + 48.1069841, + 11.4151269 + ], + [ + 48.1073732, + 11.415481 + ], + [ + 48.1077495, + 11.4158367 + ] + ] + }, + { + "osmId": "396197832", + "name": null, + "lengthMeters": 202.70804359432867, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1077706, + 11.415792 + ], + [ + 48.1073938, + 11.4154287 + ], + [ + 48.1070078, + 11.4150525 + ], + [ + 48.1062481, + 11.4142906 + ] + ] + }, + { + "osmId": "396197833", + "name": null, + "lengthMeters": 238.87494136745408, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1043913, + 11.4127183 + ], + [ + 48.1044064, + 11.4127326 + ], + [ + 48.104972, + 11.4132659 + ], + [ + 48.1054612, + 11.4137168 + ], + [ + 48.1056321, + 11.4138749 + ], + [ + 48.1062163, + 11.4144154 + ] + ] + }, + { + "osmId": "396197834", + "name": null, + "lengthMeters": 734.8809999481026, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1039685, + 11.4122077 + ], + [ + 48.1035033, + 11.4118064 + ], + [ + 48.1027866, + 11.4111693 + ], + [ + 48.102136, + 11.4105624 + ], + [ + 48.1009246, + 11.4094406 + ], + [ + 48.1002084, + 11.4087707 + ], + [ + 48.0996211, + 11.4081993 + ], + [ + 48.0989942, + 11.4075752 + ], + [ + 48.0983761, + 11.4069388 + ] + ] + }, + { + "osmId": "396211582", + "name": null, + "lengthMeters": 104.55859169833728, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1628662, + 11.4326256 + ], + [ + 48.1628561, + 11.4326444 + ], + [ + 48.1622762, + 11.4337233 + ] + ] + }, + { + "osmId": "396211585", + "name": null, + "lengthMeters": 99.89927314358229, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1637618, + 11.4310106 + ], + [ + 48.1631843, + 11.4320424 + ] + ] + }, + { + "osmId": "396211589", + "name": null, + "lengthMeters": 125.42776194590337, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1632701, + 11.4321434 + ], + [ + 48.1633335, + 11.4320291 + ], + [ + 48.1636836, + 11.4313973 + ], + [ + 48.163991, + 11.4308427 + ] + ] + }, + { + "osmId": "396211592", + "name": null, + "lengthMeters": 105.10145641879286, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1623552, + 11.4338184 + ], + [ + 48.1628667, + 11.4328824 + ], + [ + 48.1629545, + 11.4327226 + ] + ] + }, + { + "osmId": "396743406", + "name": null, + "lengthMeters": 87.69009898242706, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.482226, + 9.9761579 + ], + [ + 53.4820352, + 9.9765724 + ], + [ + 53.4818925, + 9.9768553 + ], + [ + 53.4817481, + 9.9772107 + ] + ] + }, + { + "osmId": "396744561", + "name": null, + "lengthMeters": 226.13546478585522, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5108022, + 13.5000425 + ], + [ + 52.5109118, + 13.4996948 + ], + [ + 52.5109721, + 13.4994824 + ], + [ + 52.5110085, + 13.4993394 + ], + [ + 52.5111022, + 13.498957 + ], + [ + 52.5111622, + 13.4986589 + ], + [ + 52.5112999, + 13.4979032 + ], + [ + 52.5113699, + 13.4975221 + ], + [ + 52.5113917, + 13.497394 + ], + [ + 52.5114737, + 13.4968975 + ] + ] + }, + { + "osmId": "396744562", + "name": null, + "lengthMeters": 225.0873781655355, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114026, + 13.4968604 + ], + [ + 52.51129, + 13.497364 + ], + [ + 52.5112681, + 13.4974748 + ], + [ + 52.5110033, + 13.4988952 + ], + [ + 52.5109286, + 13.4993031 + ], + [ + 52.5108692, + 13.499605 + ], + [ + 52.5108444, + 13.499717 + ], + [ + 52.5108154, + 13.4998277 + ], + [ + 52.5107604, + 13.5000112 + ] + ] + }, + { + "osmId": "396746285", + "name": null, + "lengthMeters": 75.62026763063812, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5334992, + 9.9726619 + ], + [ + 53.5339023, + 9.9726018 + ], + [ + 53.5340571, + 9.9725787 + ], + [ + 53.5341767, + 9.9725626 + ] + ] + }, + { + "osmId": "396800404", + "name": null, + "lengthMeters": 1140.9714747123505, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4693591, + 13.2376456 + ], + [ + 52.4696984, + 13.2380808 + ], + [ + 52.4714984, + 13.2403555 + ], + [ + 52.4717568, + 13.2406835 + ], + [ + 52.4719757, + 13.2409576 + ], + [ + 52.4723669, + 13.2414575 + ], + [ + 52.4729787, + 13.2422307 + ], + [ + 52.473538, + 13.2429377 + ], + [ + 52.4741214, + 13.2436766 + ], + [ + 52.474505, + 13.2441783 + ], + [ + 52.4747446, + 13.2445053 + ], + [ + 52.47505, + 13.2449655 + ], + [ + 52.4754041, + 13.245544 + ], + [ + 52.4757405, + 13.2461579 + ], + [ + 52.4757777, + 13.2462281 + ], + [ + 52.4760705, + 13.2467808 + ], + [ + 52.4764188, + 13.2474382 + ], + [ + 52.4767769, + 13.2481207 + ], + [ + 52.4768344, + 13.2482303 + ], + [ + 52.4770673, + 13.2486743 + ] + ] + }, + { + "osmId": "396800405", + "name": null, + "lengthMeters": 276.76674671521306, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4858724, + 13.2574455 + ], + [ + 52.485983, + 13.2575897 + ], + [ + 52.4860324, + 13.2576566 + ], + [ + 52.4861969, + 13.2578795 + ], + [ + 52.4865216, + 13.2583341 + ], + [ + 52.4867514, + 13.258665 + ], + [ + 52.4869732, + 13.2590087 + ], + [ + 52.4871401, + 13.2592884 + ], + [ + 52.4872935, + 13.2595629 + ], + [ + 52.4876644, + 13.2602691 + ] + ] + }, + { + "osmId": "397112084", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 860.2201459173401, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5292503, + 10.308375 + ], + [ + 53.5293696, + 10.3093208 + ], + [ + 53.5294924, + 10.3104219 + ], + [ + 53.5294947, + 10.3104476 + ], + [ + 53.5295775, + 10.311373 + ], + [ + 53.5296694, + 10.3124988 + ], + [ + 53.5297318, + 10.3134553 + ], + [ + 53.5297489, + 10.3137177 + ], + [ + 53.5297753, + 10.3141877 + ], + [ + 53.5298052, + 10.3147218 + ], + [ + 53.5298701, + 10.316263 + ], + [ + 53.5298829, + 10.3167494 + ], + [ + 53.5299102, + 10.3177861 + ], + [ + 53.529931, + 10.3185692 + ], + [ + 53.5299352, + 10.319101 + ], + [ + 53.5299367, + 10.319753 + ], + [ + 53.529938, + 10.3203168 + ], + [ + 53.5299403, + 10.3213104 + ] + ] + }, + { + "osmId": "397112085", + "name": null, + "lengthMeters": 678.9116686119455, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5299616, + 10.3185713 + ], + [ + 53.5299401, + 10.3177906 + ], + [ + 53.5298981, + 10.316258 + ], + [ + 53.5298758, + 10.3157424 + ], + [ + 53.5298314, + 10.3147166 + ], + [ + 53.5298026, + 10.3141855 + ], + [ + 53.5298014, + 10.3141628 + ], + [ + 53.5297778, + 10.3137143 + ], + [ + 53.5296966, + 10.3124827 + ], + [ + 53.5296059, + 10.3113618 + ], + [ + 53.5295271, + 10.3104423 + ], + [ + 53.5295236, + 10.310402 + ], + [ + 53.5294006, + 10.309312 + ], + [ + 53.5292854, + 10.3083773 + ] + ] + }, + { + "osmId": "397246945", + "name": null, + "lengthMeters": 82.77364941851371, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3965973, + 13.2752547 + ], + [ + 52.3966161, + 13.2753714 + ], + [ + 52.396627, + 13.2754243 + ], + [ + 52.3967172, + 13.2758997 + ], + [ + 52.3968181, + 13.2764196 + ] + ] + }, + { + "osmId": "397422493", + "name": null, + "lengthMeters": 96.76554305433405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3732699, + 13.1129588 + ], + [ + 52.3736094, + 13.1132658 + ], + [ + 52.3738521, + 13.1134638 + ], + [ + 52.3740357, + 13.1136351 + ] + ] + }, + { + "osmId": "397646613", + "name": null, + "lengthMeters": 103.51673699532068, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5789187, + 13.2834175 + ], + [ + 52.5792642, + 13.2833692 + ], + [ + 52.5794403, + 13.2833317 + ], + [ + 52.5796424, + 13.2832619 + ], + [ + 52.579838, + 13.2831922 + ] + ] + }, + { + "osmId": "397646615", + "name": null, + "lengthMeters": 102.95316643007214, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5789154, + 13.2833156 + ], + [ + 52.5794826, + 13.2832566 + ], + [ + 52.5797206, + 13.2832137 + ], + [ + 52.579838, + 13.2831922 + ] + ] + }, + { + "osmId": "398064619", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 208.04372789548353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.533642, + 10.0593636 + ], + [ + 53.5339692, + 10.0585082 + ], + [ + 53.5341104, + 10.0581103 + ], + [ + 53.5342333, + 10.057764 + ], + [ + 53.5345991, + 10.05666 + ] + ] + }, + { + "osmId": "398260943", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 114.94102059128153, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5473303, + 10.0328287 + ], + [ + 53.5482676, + 10.0320951 + ] + ] + }, + { + "osmId": "398266318", + "name": null, + "lengthMeters": 479.1005744687314, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5825435, + 9.9479022 + ], + [ + 53.582626, + 9.9479319 + ], + [ + 53.583155, + 9.9481009 + ], + [ + 53.5832183, + 9.9481208 + ], + [ + 53.5832768, + 9.9481332 + ], + [ + 53.5834138, + 9.948155 + ], + [ + 53.5835652, + 9.9481663 + ], + [ + 53.5837314, + 9.9481617 + ], + [ + 53.5839198, + 9.9481443 + ], + [ + 53.5842728, + 9.9480787 + ], + [ + 53.5851408, + 9.9478786 + ], + [ + 53.5858985, + 9.9477263 + ], + [ + 53.5862525, + 9.9476459 + ], + [ + 53.5863584, + 9.9476168 + ], + [ + 53.586473, + 9.9475752 + ], + [ + 53.5868068, + 9.9474467 + ] + ] + }, + { + "osmId": "398266319", + "name": null, + "lengthMeters": 555.69903571778, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5722787, + 9.9510863 + ], + [ + 53.5727997, + 9.9500255 + ], + [ + 53.5728784, + 9.9498982 + ], + [ + 53.5729412, + 9.9498112 + ], + [ + 53.5730554, + 9.9496839 + ], + [ + 53.5731566, + 9.9495996 + ], + [ + 53.573259, + 9.9495251 + ], + [ + 53.573335, + 9.9494919 + ], + [ + 53.573411, + 9.9494704 + ], + [ + 53.573519, + 9.9494523 + ], + [ + 53.5736268, + 9.9494571 + ], + [ + 53.573694, + 9.9494674 + ], + [ + 53.5737968, + 9.9494994 + ], + [ + 53.5738702, + 9.9495354 + ], + [ + 53.5739374, + 9.9495795 + ], + [ + 53.5740261, + 9.9496506 + ], + [ + 53.5741033, + 9.9497257 + ], + [ + 53.5742364, + 9.9498954 + ], + [ + 53.57462, + 9.9505684 + ], + [ + 53.5747546, + 9.9507897 + ], + [ + 53.5749075, + 9.9510002 + ], + [ + 53.5750211, + 9.9511216 + ], + [ + 53.5751303, + 9.9512216 + ], + [ + 53.5752651, + 9.9513125 + ], + [ + 53.5753285, + 9.951352 + ], + [ + 53.5754109, + 9.9513941 + ], + [ + 53.5757797, + 9.9515532 + ], + [ + 53.5761603, + 9.9516912 + ], + [ + 53.5764669, + 9.9518058 + ] + ] + }, + { + "osmId": "398266320", + "name": null, + "lengthMeters": 108.69708735268645, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5764669, + 9.9518058 + ], + [ + 53.5768377, + 9.9519148 + ], + [ + 53.5769606, + 9.951925 + ], + [ + 53.5770348, + 9.9519167 + ], + [ + 53.5771213, + 9.9519073 + ], + [ + 53.5771923, + 9.9518897 + ], + [ + 53.5772892, + 9.9518485 + ], + [ + 53.5773569, + 9.9518221 + ], + [ + 53.5774277, + 9.9517763 + ] + ] + }, + { + "osmId": "398364076", + "name": "Isartalbahn", + "lengthMeters": 160.45259091452593, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0595497, + 11.5222711 + ], + [ + 48.05894, + 11.5217948 + ], + [ + 48.0583726, + 11.5213533 + ], + [ + 48.05827, + 11.5212735 + ] + ] + }, + { + "osmId": "398364077", + "name": "Isartalbahn", + "lengthMeters": 157.49743262948257, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0582742, + 11.5213347 + ], + [ + 48.0589266, + 11.5218423 + ], + [ + 48.0595295, + 11.5223163 + ] + ] + }, + { + "osmId": "398364078", + "name": "Isartalbahn", + "lengthMeters": 832.7134822889749, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0661916, + 11.5274472 + ], + [ + 48.0660723, + 11.5273568 + ], + [ + 48.0660636, + 11.52735 + ], + [ + 48.0631873, + 11.5251072 + ], + [ + 48.0612025, + 11.5235597 + ], + [ + 48.0600193, + 11.5226372 + ], + [ + 48.0599627, + 11.5225931 + ], + [ + 48.059845, + 11.5225013 + ], + [ + 48.0597917, + 11.5224592 + ], + [ + 48.0597364, + 11.5224182 + ], + [ + 48.0595497, + 11.5222711 + ] + ] + }, + { + "osmId": "398364079", + "name": null, + "lengthMeters": 907.9009250966919, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0595295, + 11.5223163 + ], + [ + 48.0596873, + 11.5224353 + ], + [ + 48.0597403, + 11.5224772 + ], + [ + 48.0597926, + 11.5225228 + ], + [ + 48.0598591, + 11.5225747 + ], + [ + 48.059911, + 11.5226152 + ], + [ + 48.063171, + 11.5251594 + ], + [ + 48.0661074, + 11.5274512 + ], + [ + 48.0667685, + 11.5279671 + ] + ] + }, + { + "osmId": "398489566", + "name": null, + "lengthMeters": 116.76183168299042, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4851134, + 10.0032036 + ], + [ + 53.4852556, + 10.003247 + ], + [ + 53.4852678, + 10.0032507 + ], + [ + 53.4855294, + 10.0033051 + ], + [ + 53.4855596, + 10.0033114 + ], + [ + 53.4856129, + 10.0033229 + ], + [ + 53.4858408, + 10.0033723 + ], + [ + 53.4860825, + 10.0034157 + ], + [ + 53.4861546, + 10.0034287 + ] + ] + }, + { + "osmId": "398489567", + "name": null, + "lengthMeters": 178.9340718253813, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5105942, + 10.0079368 + ], + [ + 53.5105416, + 10.0079279 + ], + [ + 53.5098478, + 10.0079146 + ], + [ + 53.5089855, + 10.0079444 + ] + ] + }, + { + "osmId": "398489570", + "name": null, + "lengthMeters": 321.5859696032914, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.506094, + 10.007902 + ], + [ + 53.5068544, + 10.0079467 + ], + [ + 53.5072062, + 10.0079489 + ], + [ + 53.5072924, + 10.0079495 + ], + [ + 53.507483, + 10.0079575 + ], + [ + 53.5076819, + 10.0079599 + ], + [ + 53.5077063, + 10.0079596 + ], + [ + 53.507735, + 10.0079584 + ], + [ + 53.5078457, + 10.0079566 + ], + [ + 53.5085032, + 10.0079529 + ], + [ + 53.508804, + 10.0079445 + ], + [ + 53.5089855, + 10.0079444 + ] + ] + }, + { + "osmId": "398613056", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 91.90067554085516, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5515845, + 10.0078823 + ], + [ + 53.5514739, + 10.0079556 + ], + [ + 53.5513645, + 10.0080381 + ], + [ + 53.5512605, + 10.0081261 + ], + [ + 53.5512521, + 10.0081336 + ], + [ + 53.5512201, + 10.008162 + ], + [ + 53.5510568, + 10.0083322 + ], + [ + 53.5508698, + 10.0085678 + ] + ] + }, + { + "osmId": "398625583", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 108.59126951700733, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5515459, + 10.0077511 + ], + [ + 53.5516308, + 10.007699 + ], + [ + 53.5516416, + 10.0076924 + ], + [ + 53.5517839, + 10.0076056 + ], + [ + 53.5518586, + 10.0075677 + ], + [ + 53.5522951, + 10.007353 + ], + [ + 53.5524798, + 10.0072738 + ] + ] + }, + { + "osmId": "398770010", + "name": null, + "lengthMeters": 117.94716073719576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4339763, + 13.5414404 + ], + [ + 52.4337972, + 13.5416824 + ], + [ + 52.4337316, + 13.5417723 + ], + [ + 52.4336844, + 13.5418437 + ], + [ + 52.4336103, + 13.5419701 + ], + [ + 52.4335157, + 13.5421519 + ], + [ + 52.4334275, + 13.5423119 + ], + [ + 52.4333875, + 13.5423734 + ], + [ + 52.4333526, + 13.5424212 + ], + [ + 52.43327, + 13.5425304 + ], + [ + 52.4332013, + 13.5426218 + ] + ] + }, + { + "osmId": "399413644", + "name": null, + "lengthMeters": 124.79458640649807, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4519167, + 13.6868271 + ], + [ + 52.45189, + 13.6870813 + ], + [ + 52.4518881, + 13.6870995 + ], + [ + 52.4517316, + 13.6886343 + ], + [ + 52.4517307, + 13.6886432 + ] + ] + }, + { + "osmId": "399435709", + "name": null, + "lengthMeters": 763.1541510489135, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0307016, + 11.7156679 + ], + [ + 48.030457, + 11.7159265 + ], + [ + 48.0301629, + 11.7162323 + ], + [ + 48.0298817, + 11.7164919 + ], + [ + 48.0296732, + 11.7166802 + ], + [ + 48.0295987, + 11.7167351 + ], + [ + 48.0294278, + 11.7168609 + ], + [ + 48.0291296, + 11.7170504 + ], + [ + 48.0288481, + 11.7172006 + ], + [ + 48.0285199, + 11.7173286 + ], + [ + 48.0283264, + 11.7173919 + ], + [ + 48.0281193, + 11.7174597 + ], + [ + 48.0263502, + 11.7179082 + ], + [ + 48.0249676, + 11.7182676 + ], + [ + 48.0246999, + 11.7183368 + ], + [ + 48.0244613, + 11.7183982 + ], + [ + 48.0241904, + 11.7184619 + ] + ] + }, + { + "osmId": "399442945", + "name": null, + "lengthMeters": 677.59944483154, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.457611, + 13.6118216 + ], + [ + 52.4575283, + 13.615534 + ], + [ + 52.4574718, + 13.617609 + ], + [ + 52.4574118, + 13.6196389 + ], + [ + 52.4573793, + 13.6207666 + ], + [ + 52.4573745, + 13.6209281 + ], + [ + 52.4573476, + 13.6218126 + ] + ] + }, + { + "osmId": "399442946", + "name": null, + "lengthMeters": 267.8160898512382, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4574568, + 13.6215524 + ], + [ + 52.4574479, + 13.6206457 + ], + [ + 52.4574545, + 13.6199164 + ], + [ + 52.4574717, + 13.6191859 + ], + [ + 52.4575086, + 13.617621 + ], + [ + 52.4575088, + 13.6176017 + ] + ] + }, + { + "osmId": "399483788", + "name": null, + "lengthMeters": 109.26107334486679, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4584328, + 13.5834347 + ], + [ + 52.4584313, + 13.5835458 + ], + [ + 52.4584253, + 13.5840013 + ], + [ + 52.458426, + 13.584249 + ], + [ + 52.4584291, + 13.5846517 + ], + [ + 52.4584371, + 13.5850469 + ] + ] + }, + { + "osmId": "399844121", + "name": null, + "lengthMeters": 271.47767455936213, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5612548, + 9.9890319 + ], + [ + 53.5612671, + 9.9890162 + ], + [ + 53.561295, + 9.9889793 + ], + [ + 53.5614121, + 9.9888246 + ], + [ + 53.5614325, + 9.9887962 + ], + [ + 53.5615976, + 9.9885667 + ], + [ + 53.561633, + 9.9885114 + ], + [ + 53.5617432, + 9.9883393 + ], + [ + 53.5618663, + 9.9881315 + ], + [ + 53.5619925, + 9.987909 + ], + [ + 53.5620702, + 9.987769 + ], + [ + 53.5620887, + 9.9877358 + ], + [ + 53.5623727, + 9.9872265 + ], + [ + 53.5626516, + 9.9867219 + ], + [ + 53.5629146, + 9.986246 + ], + [ + 53.5629788, + 9.9861299 + ] + ] + }, + { + "osmId": "399844123", + "name": null, + "lengthMeters": 269.3515011650015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5630081, + 9.9861708 + ], + [ + 53.5619653, + 9.9880693 + ], + [ + 53.5618502, + 9.988269 + ], + [ + 53.561795, + 9.9883612 + ], + [ + 53.5617114, + 9.9884971 + ], + [ + 53.5616772, + 9.9885514 + ], + [ + 53.5615786, + 9.9886983 + ], + [ + 53.5614442, + 9.9888834 + ], + [ + 53.5613061, + 9.9890641 + ] + ] + }, + { + "osmId": "399844124", + "name": null, + "lengthMeters": 271.2255310773451, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5613671, + 9.9892156 + ], + [ + 53.5613954, + 9.9891792 + ], + [ + 53.5614612, + 9.9890949 + ], + [ + 53.5615377, + 9.9889896 + ], + [ + 53.5616238, + 9.988859 + ], + [ + 53.5617055, + 9.9887263 + ], + [ + 53.561788, + 9.988581 + ], + [ + 53.561956, + 9.9882671 + ], + [ + 53.5621985, + 9.9878123 + ], + [ + 53.5623176, + 9.9875825 + ], + [ + 53.5630325, + 9.9862237 + ] + ] + }, + { + "osmId": "399895866", + "name": null, + "lengthMeters": 162.47616664259832, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6613009, + 13.5369319 + ], + [ + 52.6611549, + 13.5366469 + ], + [ + 52.6610012, + 13.5363632 + ], + [ + 52.6606726, + 13.5358087 + ], + [ + 52.6605022, + 13.5355157 + ], + [ + 52.6603413, + 13.5352266 + ], + [ + 52.6603077, + 13.535166 + ] + ] + }, + { + "osmId": "399895870", + "name": null, + "lengthMeters": 186.0332764655486, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6592771, + 13.532994 + ], + [ + 52.6594428, + 13.5332735 + ], + [ + 52.6594654, + 13.5333144 + ], + [ + 52.6595392, + 13.5334481 + ], + [ + 52.6598369, + 13.5339967 + ], + [ + 52.6599288, + 13.534173 + ], + [ + 52.6601529, + 13.5346032 + ], + [ + 52.6601619, + 13.5346206 + ], + [ + 52.6603503, + 13.5349967 + ], + [ + 52.6603824, + 13.5350633 + ] + ] + }, + { + "osmId": "400130272", + "name": null, + "lengthMeters": 1388.2678496635037, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.499684, + 10.1267864 + ], + [ + 53.5006766, + 10.1251203 + ], + [ + 53.5011301, + 10.1243507 + ], + [ + 53.5014593, + 10.123802 + ], + [ + 53.5021383, + 10.1226605 + ], + [ + 53.5026488, + 10.1217421 + ], + [ + 53.5030879, + 10.1209267 + ], + [ + 53.5042893, + 10.1185446 + ], + [ + 53.5064413, + 10.1143007 + ], + [ + 53.5080496, + 10.1112203 + ] + ] + }, + { + "osmId": "400130281", + "name": null, + "lengthMeters": 420.9337934771129, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4972118, + 10.1316047 + ], + [ + 53.49783, + 10.1303587 + ], + [ + 53.4989537, + 10.128158 + ], + [ + 53.4992277, + 10.1276187 + ], + [ + 53.49955, + 10.1270303 + ], + [ + 53.499684, + 10.1267864 + ] + ] + }, + { + "osmId": "400188018", + "name": null, + "lengthMeters": 627.3759692917504, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6351214, + 13.4906883 + ], + [ + 52.6351007, + 13.4906688 + ], + [ + 52.6348197, + 13.4904008 + ], + [ + 52.6346913, + 13.4902859 + ], + [ + 52.6344684, + 13.4900951 + ], + [ + 52.6342783, + 13.4899242 + ], + [ + 52.6342133, + 13.4898658 + ], + [ + 52.6337191, + 13.4893471 + ], + [ + 52.6331189, + 13.4887039 + ], + [ + 52.6322161, + 13.4877433 + ], + [ + 52.6319402, + 13.4874498 + ], + [ + 52.6317929, + 13.4872931 + ], + [ + 52.6317265, + 13.4872224 + ], + [ + 52.6314893, + 13.48697 + ], + [ + 52.6305461, + 13.4859727 + ], + [ + 52.630459, + 13.4858807 + ], + [ + 52.6303414, + 13.4857563 + ] + ] + }, + { + "osmId": "400188019", + "name": null, + "lengthMeters": 611.5940169614313, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6303098, + 13.4858065 + ], + [ + 52.6304381, + 13.4859413 + ], + [ + 52.6305285, + 13.4860362 + ], + [ + 52.6314734, + 13.4870284 + ], + [ + 52.631704, + 13.4872748 + ], + [ + 52.6317709, + 13.4873462 + ], + [ + 52.632194, + 13.4877982 + ], + [ + 52.6327626, + 13.4884058 + ], + [ + 52.633742, + 13.4894521 + ], + [ + 52.634074, + 13.4898066 + ], + [ + 52.6342567, + 13.489995 + ], + [ + 52.6343723, + 13.490122 + ], + [ + 52.6348278, + 13.4905972 + ], + [ + 52.6349354, + 13.4907095 + ] + ] + }, + { + "osmId": "400658959", + "name": null, + "lengthMeters": 118.28767513232715, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5902432, + 9.9954746 + ], + [ + 53.590218, + 9.9945532 + ], + [ + 53.5902038, + 9.9940775 + ], + [ + 53.590194, + 9.9938882 + ], + [ + 53.5901813, + 9.9936858 + ] + ] + }, + { + "osmId": "400668827", + "name": null, + "lengthMeters": 209.50651945415277, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5408331, + 10.0104786 + ], + [ + 53.5407974, + 10.0106323 + ], + [ + 53.5407368, + 10.0108997 + ], + [ + 53.5406854, + 10.0111754 + ], + [ + 53.5406005, + 10.0116822 + ], + [ + 53.5404848, + 10.0124241 + ], + [ + 53.5403163, + 10.0134722 + ], + [ + 53.5403088, + 10.0135217 + ] + ] + }, + { + "osmId": "400668828", + "name": null, + "lengthMeters": 117.44741737972086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5405557, + 10.0122008 + ], + [ + 53.540586, + 10.0119996 + ], + [ + 53.5407075, + 10.0113033 + ], + [ + 53.5407409, + 10.0111096 + ], + [ + 53.540781, + 10.0108968 + ], + [ + 53.5408125, + 10.0107592 + ], + [ + 53.5408497, + 10.010594 + ], + [ + 53.5408717, + 10.0105064 + ] + ] + }, + { + "osmId": "400668831", + "name": null, + "lengthMeters": 87.00874302453623, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5392651, + 10.0214383 + ], + [ + 53.5392118, + 10.0218076 + ], + [ + 53.5390836, + 10.0227191 + ] + ] + }, + { + "osmId": "400795618", + "name": null, + "lengthMeters": 1038.3580697982545, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5080496, + 10.1112203 + ], + [ + 53.508185, + 10.1109621 + ], + [ + 53.5086172, + 10.1100963 + ], + [ + 53.5090047, + 10.1093493 + ], + [ + 53.5098579, + 10.1076776 + ], + [ + 53.5107804, + 10.1058673 + ], + [ + 53.5115237, + 10.1044109 + ], + [ + 53.5123482, + 10.1028073 + ], + [ + 53.5130573, + 10.1014088 + ], + [ + 53.5130694, + 10.1013848 + ], + [ + 53.5140104, + 10.0995117 + ], + [ + 53.5141184, + 10.0992859 + ] + ] + }, + { + "osmId": "401050611", + "name": null, + "lengthMeters": 129.3065201278526, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4981635, + 13.2724353 + ], + [ + 52.498146, + 13.2725293 + ], + [ + 52.4980577, + 13.2730251 + ], + [ + 52.4979969, + 13.2734306 + ], + [ + 52.497967, + 13.273652 + ], + [ + 52.4979457, + 13.2738743 + ], + [ + 52.4979321, + 13.2740649 + ], + [ + 52.4979187, + 13.2742978 + ] + ] + }, + { + "osmId": "401050612", + "name": null, + "lengthMeters": 437.7962209286262, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984187, + 13.2809975 + ], + [ + 52.4983101, + 13.2805681 + ], + [ + 52.4981659, + 13.2798749 + ], + [ + 52.4980792, + 13.2793511 + ], + [ + 52.4980542, + 13.2791807 + ], + [ + 52.4979598, + 13.2784501 + ], + [ + 52.497889, + 13.2777334 + ], + [ + 52.4978349, + 13.2770218 + ], + [ + 52.4978047, + 13.2764242 + ], + [ + 52.4977876, + 13.2758819 + ], + [ + 52.4977876, + 13.2753548 + ], + [ + 52.4978013, + 13.2750458 + ], + [ + 52.4978143, + 13.2748133 + ], + [ + 52.4978229, + 13.2746655 + ] + ] + }, + { + "osmId": "401050615", + "name": null, + "lengthMeters": 449.12301457948394, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.497789, + 13.2745267 + ], + [ + 52.4977646, + 13.275044 + ], + [ + 52.4977518, + 13.2756658 + ], + [ + 52.4977623, + 13.2762708 + ], + [ + 52.4977949, + 13.2770057 + ], + [ + 52.4978489, + 13.2777013 + ], + [ + 52.4979251, + 13.2784577 + ], + [ + 52.4980182, + 13.2791916 + ], + [ + 52.498043, + 13.2793655 + ], + [ + 52.4981316, + 13.2798953 + ], + [ + 52.4982765, + 13.2805932 + ], + [ + 52.4983867, + 13.2810253 + ] + ] + }, + { + "osmId": "401110158", + "name": null, + "lengthMeters": 122.30024151266335, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293556, + 10.3083573 + ], + [ + 53.5294111, + 10.3088106 + ], + [ + 53.5294614, + 10.3092168 + ], + [ + 53.5295672, + 10.310173 + ] + ] + }, + { + "osmId": "403065887", + "name": null, + "lengthMeters": 166.42110422275988, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6160669, + 13.4704896 + ], + [ + 52.6163072, + 13.470739 + ], + [ + 52.6169036, + 13.4713662 + ], + [ + 52.6173255, + 13.4718234 + ] + ] + }, + { + "osmId": "403065889", + "name": null, + "lengthMeters": 135.73270520177996, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6173444, + 13.4717775 + ], + [ + 52.6166545, + 13.4710069 + ], + [ + 52.6163387, + 13.4706382 + ] + ] + }, + { + "osmId": "403102505", + "name": null, + "lengthMeters": 163.95157101435947, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5786817, + 13.4300138 + ], + [ + 52.5786717, + 13.4300036 + ], + [ + 52.5783664, + 13.4297066 + ], + [ + 52.5777784, + 13.4291062 + ], + [ + 52.577582, + 13.4289179 + ], + [ + 52.5775133, + 13.4288509 + ], + [ + 52.5774226, + 13.4287518 + ] + ] + }, + { + "osmId": "403102506", + "name": null, + "lengthMeters": 1033.6287812976766, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5786166, + 13.4301595 + ], + [ + 52.5789836, + 13.4304803 + ], + [ + 52.5793408, + 13.4307952 + ], + [ + 52.580018, + 13.4314193 + ], + [ + 52.580873, + 13.4323167 + ], + [ + 52.5820369, + 13.4335951 + ], + [ + 52.5822542, + 13.433834 + ], + [ + 52.5825712, + 13.4341751 + ], + [ + 52.5828922, + 13.4345117 + ], + [ + 52.5835392, + 13.4351675 + ], + [ + 52.5848345, + 13.4364451 + ], + [ + 52.585662, + 13.437327 + ], + [ + 52.5865067, + 13.4382348 + ] + ] + }, + { + "osmId": "403102507", + "name": null, + "lengthMeters": 171.8045985214373, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5773127, + 13.4287999 + ], + [ + 52.5774087, + 13.4289235 + ], + [ + 52.5774594, + 13.4289834 + ], + [ + 52.5775551, + 13.4290928 + ], + [ + 52.578128, + 13.4296973 + ], + [ + 52.5783453, + 13.4299064 + ], + [ + 52.5784523, + 13.4300136 + ], + [ + 52.5786166, + 13.4301595 + ] + ] + }, + { + "osmId": "403442270", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 412.3368574746146, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4602544, + 13.5010191 + ], + [ + 52.4602176, + 13.5010733 + ], + [ + 52.4589805, + 13.5029763 + ], + [ + 52.4586586, + 13.5034752 + ], + [ + 52.4585584, + 13.5036296 + ], + [ + 52.4579336, + 13.5045979 + ], + [ + 52.4576357, + 13.5050428 + ], + [ + 52.4575463, + 13.5051763 + ] + ] + }, + { + "osmId": "403597626", + "name": null, + "lengthMeters": 208.0848278191336, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5083376, + 13.2584686 + ], + [ + 52.5081334, + 13.258939 + ], + [ + 52.508096, + 13.2590278 + ], + [ + 52.508064, + 13.2591079 + ], + [ + 52.5080207, + 13.259223 + ], + [ + 52.5078813, + 13.2595982 + ], + [ + 52.5077989, + 13.2598149 + ], + [ + 52.5077298, + 13.2599955 + ], + [ + 52.5076843, + 13.2601143 + ], + [ + 52.5075308, + 13.2605196 + ], + [ + 52.5075265, + 13.2605312 + ], + [ + 52.5074771, + 13.2606658 + ], + [ + 52.5074322, + 13.2607839 + ], + [ + 52.5073893, + 13.2608968 + ], + [ + 52.5073449, + 13.2610138 + ], + [ + 52.5073286, + 13.2610567 + ] + ] + }, + { + "osmId": "403597627", + "name": null, + "lengthMeters": 226.88193093835525, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5073645, + 13.2612149 + ], + [ + 52.5074172, + 13.2610969 + ], + [ + 52.5074704, + 13.2609775 + ], + [ + 52.507624, + 13.2606334 + ], + [ + 52.5076306, + 13.2606185 + ], + [ + 52.5077876, + 13.2602149 + ], + [ + 52.5078315, + 13.2601027 + ], + [ + 52.5080375, + 13.2595757 + ], + [ + 52.5081757, + 13.2592351 + ], + [ + 52.5082065, + 13.2591598 + ], + [ + 52.5083383, + 13.2588379 + ], + [ + 52.508506, + 13.2584374 + ] + ] + }, + { + "osmId": "403597628", + "name": null, + "lengthMeters": 164.3698481599149, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5093527, + 13.2567045 + ], + [ + 52.5091951, + 13.2569496 + ], + [ + 52.5090416, + 13.2572152 + ], + [ + 52.508977, + 13.2573224 + ], + [ + 52.5089047, + 13.2574477 + ], + [ + 52.5087441, + 13.2577475 + ], + [ + 52.5085659, + 13.258054 + ], + [ + 52.5085207, + 13.2581318 + ], + [ + 52.5083376, + 13.2584686 + ] + ] + }, + { + "osmId": "403597629", + "name": null, + "lengthMeters": 155.05559198376602, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.508506, + 13.2584374 + ], + [ + 52.5085316, + 13.2583846 + ], + [ + 52.5086126, + 13.2582175 + ], + [ + 52.5088157, + 13.2577986 + ], + [ + 52.5089856, + 13.2574704 + ], + [ + 52.5091624, + 13.2571413 + ], + [ + 52.5093035, + 13.2569097 + ], + [ + 52.5093534, + 13.2568325 + ], + [ + 52.5093896, + 13.2567752 + ], + [ + 52.5094268, + 13.256721 + ] + ] + }, + { + "osmId": "403614735", + "name": null, + "lengthMeters": 159.2421074446625, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984375, + 13.2715173 + ], + [ + 52.4984695, + 13.2713835 + ], + [ + 52.4985848, + 13.2708929 + ], + [ + 52.4986015, + 13.2708238 + ], + [ + 52.498747, + 13.2702227 + ], + [ + 52.4987813, + 13.2700822 + ], + [ + 52.4988224, + 13.2699209 + ], + [ + 52.4988551, + 13.2697923 + ], + [ + 52.4988911, + 13.2696632 + ], + [ + 52.4988969, + 13.2696423 + ], + [ + 52.4989253, + 13.2695406 + ], + [ + 52.4989687, + 13.2693932 + ], + [ + 52.4989829, + 13.269343 + ] + ] + }, + { + "osmId": "403614737", + "name": null, + "lengthMeters": 161.14400634984528, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4988758, + 13.2692372 + ], + [ + 52.4988602, + 13.2692785 + ], + [ + 52.4988019, + 13.2694517 + ], + [ + 52.4987571, + 13.269585 + ], + [ + 52.4986585, + 13.269927 + ], + [ + 52.4986171, + 13.2700928 + ], + [ + 52.4985835, + 13.2702428 + ], + [ + 52.4985687, + 13.2703 + ], + [ + 52.4985425, + 13.2704293 + ], + [ + 52.4984938, + 13.2706686 + ], + [ + 52.4984778, + 13.2707503 + ], + [ + 52.4984568, + 13.2708603 + ], + [ + 52.4984218, + 13.2710539 + ], + [ + 52.4983726, + 13.2713266 + ], + [ + 52.4983482, + 13.2714461 + ] + ] + }, + { + "osmId": "403614738", + "name": null, + "lengthMeters": 547.1121107840552, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997479, + 13.2799292 + ], + [ + 52.4997459, + 13.2799228 + ], + [ + 52.4996295, + 13.2795516 + ], + [ + 52.4994971, + 13.2791254 + ], + [ + 52.4994665, + 13.2790268 + ], + [ + 52.4993621, + 13.2786905 + ], + [ + 52.4992295, + 13.2782653 + ], + [ + 52.4991209, + 13.2779168 + ], + [ + 52.4988031, + 13.2769075 + ], + [ + 52.4986879, + 13.2765321 + ], + [ + 52.4985549, + 13.2760984 + ], + [ + 52.4985349, + 13.2760359 + ], + [ + 52.4984208, + 13.2756801 + ], + [ + 52.4983427, + 13.2754145 + ], + [ + 52.4982837, + 13.2752162 + ], + [ + 52.4982432, + 13.2750552 + ], + [ + 52.498199, + 13.2748471 + ], + [ + 52.498167, + 13.2746584 + ], + [ + 52.4981412, + 13.2744784 + ], + [ + 52.4981206, + 13.2742994 + ], + [ + 52.4981147, + 13.274243 + ], + [ + 52.4981069, + 13.2741265 + ], + [ + 52.4980971, + 13.2739392 + ], + [ + 52.4980923, + 13.2737666 + ], + [ + 52.4980941, + 13.2735824 + ], + [ + 52.4981023, + 13.2733836 + ], + [ + 52.498115, + 13.2731812 + ], + [ + 52.4981346, + 13.273004 + ], + [ + 52.4981521, + 13.2728609 + ], + [ + 52.4981747, + 13.2726685 + ], + [ + 52.4981949, + 13.2725613 + ], + [ + 52.4982088, + 13.2724879 + ] + ] + }, + { + "osmId": "403644365", + "name": null, + "lengthMeters": 148.98057609387507, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6556383, + 13.3825422 + ], + [ + 52.655504, + 13.383166 + ], + [ + 52.6551811, + 13.3846183 + ] + ] + }, + { + "osmId": "404387340", + "name": null, + "lengthMeters": 1166.697863870362, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5573787, + 13.5239414 + ], + [ + 52.5576348, + 13.5236736 + ], + [ + 52.557908, + 13.5233508 + ], + [ + 52.5581689, + 13.5230186 + ], + [ + 52.5584283, + 13.5226641 + ], + [ + 52.5591333, + 13.5216153 + ], + [ + 52.559445, + 13.5211793 + ], + [ + 52.5597535, + 13.5207612 + ], + [ + 52.5620309, + 13.5178391 + ], + [ + 52.5621778, + 13.5176644 + ], + [ + 52.5632051, + 13.516352 + ], + [ + 52.5633389, + 13.5161841 + ], + [ + 52.5634253, + 13.5160756 + ], + [ + 52.5635286, + 13.515946 + ], + [ + 52.5638824, + 13.5155064 + ], + [ + 52.5640158, + 13.5153519 + ], + [ + 52.5641824, + 13.5151591 + ], + [ + 52.5646731, + 13.5146174 + ], + [ + 52.5649092, + 13.5143567 + ], + [ + 52.5651357, + 13.5140893 + ], + [ + 52.5654098, + 13.5137559 + ], + [ + 52.5656415, + 13.5134609 + ], + [ + 52.5656815, + 13.51341 + ] + ] + }, + { + "osmId": "404387341", + "name": null, + "lengthMeters": 1195.7806981421065, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5655897, + 13.5132576 + ], + [ + 52.5655749, + 13.5132763 + ], + [ + 52.5650312, + 13.5139626 + ], + [ + 52.5646144, + 13.5144847 + ], + [ + 52.5639847, + 13.5152734 + ], + [ + 52.5634974, + 13.5158837 + ], + [ + 52.5633936, + 13.5160141 + ], + [ + 52.5633084, + 13.5161212 + ], + [ + 52.5631773, + 13.5162858 + ], + [ + 52.5621478, + 13.5175994 + ], + [ + 52.5620108, + 13.5177857 + ], + [ + 52.5597145, + 13.5207042 + ], + [ + 52.559088, + 13.5214972 + ], + [ + 52.5587205, + 13.5219934 + ], + [ + 52.5583545, + 13.5225061 + ], + [ + 52.5580808, + 13.5228699 + ], + [ + 52.5577982, + 13.5232152 + ], + [ + 52.5574682, + 13.5235957 + ], + [ + 52.5570841, + 13.524005 + ], + [ + 52.5570624, + 13.5240274 + ] + ] + }, + { + "osmId": "404387342", + "name": null, + "lengthMeters": 193.30836943583412, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5570624, + 13.5240274 + ], + [ + 52.5569905, + 13.524102 + ], + [ + 52.5566662, + 13.5244347 + ], + [ + 52.5564409, + 13.5246572 + ], + [ + 52.5561584, + 13.524938 + ], + [ + 52.5559474, + 13.5251414 + ], + [ + 52.5558474, + 13.5252348 + ], + [ + 52.5558247, + 13.5252544 + ], + [ + 52.5557804, + 13.5252996 + ], + [ + 52.5556829, + 13.5253948 + ], + [ + 52.5555717, + 13.5254979 + ] + ] + }, + { + "osmId": "404387343", + "name": null, + "lengthMeters": 232.14762158528296, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5555815, + 13.5256841 + ], + [ + 52.5558475, + 13.5254608 + ], + [ + 52.5559887, + 13.5253414 + ], + [ + 52.556374, + 13.5249813 + ], + [ + 52.5565082, + 13.5248478 + ], + [ + 52.556529, + 13.5248272 + ], + [ + 52.5568183, + 13.5245354 + ], + [ + 52.557049, + 13.5242865 + ], + [ + 52.5571034, + 13.5242312 + ], + [ + 52.5571511, + 13.5241814 + ], + [ + 52.5573787, + 13.5239414 + ] + ] + }, + { + "osmId": "404401914", + "name": null, + "lengthMeters": 666.3104172509101, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5347618, + 13.5350265 + ], + [ + 52.5346765, + 13.5350034 + ], + [ + 52.5345668, + 13.5349762 + ], + [ + 52.5344008, + 13.5349447 + ], + [ + 52.5342233, + 13.534917 + ], + [ + 52.5340738, + 13.5349027 + ], + [ + 52.5339208, + 13.5348955 + ], + [ + 52.5337935, + 13.5348956 + ], + [ + 52.5336217, + 13.5349014 + ], + [ + 52.5334059, + 13.5349236 + ], + [ + 52.5330962, + 13.5349727 + ], + [ + 52.5327417, + 13.5350491 + ], + [ + 52.5312401, + 13.5353908 + ], + [ + 52.5305299, + 13.5355568 + ], + [ + 52.5300653, + 13.5356468 + ], + [ + 52.5295957, + 13.5357316 + ], + [ + 52.52914, + 13.535807 + ], + [ + 52.5290223, + 13.5358322 + ], + [ + 52.5288116, + 13.5358768 + ] + ] + }, + { + "osmId": "404401915", + "name": null, + "lengthMeters": 613.5669076411048, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293683, + 13.5359141 + ], + [ + 52.5294513, + 13.535899 + ], + [ + 52.5295237, + 13.5358858 + ], + [ + 52.5296718, + 13.5358507 + ], + [ + 52.5298167, + 13.5358106 + ], + [ + 52.5298971, + 13.5357883 + ], + [ + 52.530533, + 13.5356237 + ], + [ + 52.5309824, + 13.5355139 + ], + [ + 52.5312458, + 13.5354537 + ], + [ + 52.5325696, + 13.5351491 + ], + [ + 52.5328464, + 13.5350919 + ], + [ + 52.5331272, + 13.5350443 + ], + [ + 52.5332934, + 13.5350284 + ], + [ + 52.5334864, + 13.5350129 + ], + [ + 52.5335911, + 13.5350103 + ], + [ + 52.5337584, + 13.5350145 + ], + [ + 52.5338749, + 13.535023 + ], + [ + 52.5340696, + 13.5350443 + ], + [ + 52.5342304, + 13.5350713 + ], + [ + 52.5344188, + 13.5351137 + ], + [ + 52.5346214, + 13.5351701 + ], + [ + 52.5348376, + 13.5352433 + ] + ] + }, + { + "osmId": "404401916", + "name": null, + "lengthMeters": 198.98214447975647, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348376, + 13.5352433 + ], + [ + 52.5350666, + 13.5353305 + ], + [ + 52.5358419, + 13.5356545 + ], + [ + 52.5358945, + 13.5356766 + ], + [ + 52.5359394, + 13.5356954 + ], + [ + 52.5363028, + 13.5358479 + ], + [ + 52.536484, + 13.5359239 + ], + [ + 52.5365181, + 13.5359382 + ], + [ + 52.5365728, + 13.5359621 + ] + ] + }, + { + "osmId": "404401917", + "name": null, + "lengthMeters": 215.4262085016233, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536644, + 13.535779 + ], + [ + 52.5360964, + 13.5355502 + ], + [ + 52.5358652, + 13.5354523 + ], + [ + 52.535308, + 13.5352219 + ], + [ + 52.5352335, + 13.535192 + ], + [ + 52.5350488, + 13.5351214 + ], + [ + 52.5348877, + 13.5350668 + ], + [ + 52.5347618, + 13.5350265 + ] + ] + }, + { + "osmId": "404462150", + "name": null, + "lengthMeters": 281.209036102725, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.555566, + 9.9829855 + ], + [ + 53.5555865, + 9.9835151 + ], + [ + 53.5555964, + 9.9838462 + ], + [ + 53.5556107, + 9.984425 + ], + [ + 53.555608, + 9.9860399 + ], + [ + 53.5555928, + 9.9867216 + ], + [ + 53.5555626, + 9.9872377 + ] + ] + }, + { + "osmId": "404462151", + "name": null, + "lengthMeters": 95.78391038357678, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5555626, + 9.9872377 + ], + [ + 53.5555481, + 9.9874791 + ], + [ + 53.55548, + 9.9878614 + ], + [ + 53.5554329, + 9.9881099 + ], + [ + 53.5553778, + 9.988357 + ], + [ + 53.5553069, + 9.9886142 + ] + ] + }, + { + "osmId": "404593717", + "name": null, + "lengthMeters": 161.22807128521055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5698054, + 9.9696825 + ], + [ + 53.5701344, + 9.969404 + ], + [ + 53.5703882, + 9.9692521 + ], + [ + 53.5705849, + 9.9691846 + ], + [ + 53.5708273, + 9.9691539 + ], + [ + 53.5711958, + 9.9691438 + ] + ] + }, + { + "osmId": "405287043", + "name": null, + "lengthMeters": 210.3965952028374, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0790496, + 11.6096267 + ], + [ + 48.0795568, + 11.6094943 + ], + [ + 48.0795795, + 11.6094884 + ], + [ + 48.0801381, + 11.6093475 + ], + [ + 48.0804986, + 11.6092565 + ], + [ + 48.0807752, + 11.6091867 + ], + [ + 48.0809149, + 11.6091514 + ] + ] + }, + { + "osmId": "405287044", + "name": null, + "lengthMeters": 1413.3535167735997, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0790361, + 11.6095756 + ], + [ + 48.0789429, + 11.6095993 + ], + [ + 48.0770341, + 11.6100852 + ], + [ + 48.0756433, + 11.6104392 + ], + [ + 48.0703492, + 11.6117868 + ], + [ + 48.0683294, + 11.6122961 + ], + [ + 48.067891, + 11.6123751 + ], + [ + 48.0676365, + 11.6124076 + ], + [ + 48.0673813, + 11.6124276 + ], + [ + 48.0669346, + 11.6124304 + ], + [ + 48.0666015, + 11.6124183 + ], + [ + 48.0664833, + 11.612414 + ] + ] + }, + { + "osmId": "405326553", + "name": null, + "lengthMeters": 147.2475744306764, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4404383, + 13.2167341 + ], + [ + 52.4403496, + 13.2163037 + ], + [ + 52.4402392, + 13.2158142 + ], + [ + 52.4400364, + 13.2148203 + ], + [ + 52.4400081, + 13.2146798 + ] + ] + }, + { + "osmId": "406073852", + "name": null, + "lengthMeters": 731.2116462396759, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536799, + 13.4338044 + ], + [ + 52.5369934, + 13.4340276 + ], + [ + 52.5375409, + 13.4346615 + ], + [ + 52.538216, + 13.435449 + ], + [ + 52.5397557, + 13.4372343 + ], + [ + 52.5401209, + 13.4376534 + ], + [ + 52.5401678, + 13.4377046 + ], + [ + 52.5408786, + 13.4385364 + ], + [ + 52.5409314, + 13.438598 + ], + [ + 52.5410731, + 13.4387594 + ], + [ + 52.5411784, + 13.4388845 + ], + [ + 52.5412811, + 13.4390084 + ], + [ + 52.541379, + 13.4391257 + ], + [ + 52.5417123, + 13.4395137 + ], + [ + 52.5421657, + 13.4400522 + ] + ] + }, + { + "osmId": "406073855", + "name": null, + "lengthMeters": 433.1720021510026, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362946, + 13.4327441 + ], + [ + 52.5372751, + 13.4298937 + ], + [ + 52.5374399, + 13.4294221 + ], + [ + 52.537596, + 13.4289622 + ], + [ + 52.5376459, + 13.428818 + ], + [ + 52.5376973, + 13.4286692 + ], + [ + 52.5382143, + 13.4271711 + ] + ] + }, + { + "osmId": "406273537", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 1204.7972727478013, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5347963, + 10.057058 + ], + [ + 53.5348159, + 10.0569153 + ], + [ + 53.5348786, + 10.0564574 + ], + [ + 53.5350559, + 10.0551627 + ], + [ + 53.5351393, + 10.0545677 + ], + [ + 53.5353796, + 10.052854 + ], + [ + 53.5355796, + 10.0513743 + ], + [ + 53.5357389, + 10.050321 + ], + [ + 53.5361695, + 10.0477159 + ], + [ + 53.5364463, + 10.0460953 + ], + [ + 53.5366756, + 10.0448862 + ], + [ + 53.5367105, + 10.0447073 + ], + [ + 53.5368379, + 10.0440531 + ], + [ + 53.5370401, + 10.0430133 + ], + [ + 53.5371741, + 10.0423129 + ], + [ + 53.5374884, + 10.0406934 + ], + [ + 53.5376127, + 10.0400533 + ], + [ + 53.5377333, + 10.0395242 + ] + ] + }, + { + "osmId": "406273538", + "name": null, + "lengthMeters": 309.64976954537997, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5284418, + 10.3026365 + ], + [ + 53.5286965, + 10.3039459 + ], + [ + 53.5290018, + 10.3058006 + ], + [ + 53.52921, + 10.3071381 + ] + ] + }, + { + "osmId": "406273539", + "name": null, + "lengthMeters": 534.0929951857206, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5306168, + 10.066381 + ], + [ + 53.5306297, + 10.0663503 + ], + [ + 53.530916, + 10.0656663 + ], + [ + 53.5324742, + 10.0616913 + ], + [ + 53.5327628, + 10.0609699 + ], + [ + 53.5332813, + 10.0596577 + ] + ] + }, + { + "osmId": "406273540", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 570.7891755223775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5342467, + 10.0667603 + ], + [ + 53.5341437, + 10.0665131 + ], + [ + 53.5340567, + 10.0662667 + ], + [ + 53.5339104, + 10.0657602 + ], + [ + 53.5338436, + 10.0654523 + ], + [ + 53.5337937, + 10.0651568 + ], + [ + 53.5337503, + 10.0647949 + ], + [ + 53.5337264, + 10.0644601 + ], + [ + 53.5337186, + 10.0639103 + ], + [ + 53.5337462, + 10.0634327 + ], + [ + 53.5337884, + 10.0630531 + ], + [ + 53.5338651, + 10.0625418 + ], + [ + 53.5339714, + 10.0618973 + ], + [ + 53.5343448, + 10.0597291 + ], + [ + 53.5343539, + 10.0596643 + ], + [ + 53.5344054, + 10.0593564 + ], + [ + 53.5344281, + 10.0592321 + ], + [ + 53.5345488, + 10.0585021 + ] + ] + }, + { + "osmId": "406273541", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 476.73369645710216, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5332491, + 10.0596158 + ], + [ + 53.532724, + 10.0609446 + ], + [ + 53.5324471, + 10.061648 + ], + [ + 53.5311689, + 10.0648943 + ], + [ + 53.530882, + 10.06563 + ] + ] + }, + { + "osmId": "407544832", + "name": null, + "lengthMeters": 101.35430010991551, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5019181, + 13.475169 + ], + [ + 52.501959, + 13.4749737 + ], + [ + 52.5020281, + 13.4746783 + ], + [ + 52.5021002, + 13.4744004 + ], + [ + 52.5021688, + 13.474155 + ], + [ + 52.5022399, + 13.4739216 + ], + [ + 52.5022778, + 13.4737948 + ] + ] + }, + { + "osmId": "407544834", + "name": null, + "lengthMeters": 126.49184500691595, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044549, + 13.4627593 + ], + [ + 52.5045342, + 13.4620875 + ], + [ + 52.5046724, + 13.4611666 + ], + [ + 52.5047017, + 13.4609713 + ], + [ + 52.5047068, + 13.4609374 + ] + ] + }, + { + "osmId": "407544836", + "name": null, + "lengthMeters": 93.08743332588902, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006642, + 13.468064 + ], + [ + 52.5002644, + 13.4679871 + ], + [ + 52.5000574, + 13.4679535 + ], + [ + 52.4998763, + 13.4679148 + ], + [ + 52.4998327, + 13.4679052 + ] + ] + }, + { + "osmId": "407544842", + "name": null, + "lengthMeters": 218.12240153576533, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038964, + 13.46583 + ], + [ + 52.5039546, + 13.4656485 + ], + [ + 52.5040355, + 13.4653712 + ], + [ + 52.5041383, + 13.4649948 + ], + [ + 52.5041881, + 13.4647456 + ], + [ + 52.5042338, + 13.4644961 + ], + [ + 52.5042684, + 13.4642634 + ], + [ + 52.5043122, + 13.4639302 + ], + [ + 52.5043566, + 13.4635463 + ], + [ + 52.5044549, + 13.4627593 + ] + ] + }, + { + "osmId": "407544844", + "name": null, + "lengthMeters": 197.45266464389874, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053454, + 13.4563227 + ], + [ + 52.5052919, + 13.456675 + ], + [ + 52.505121, + 13.4576506 + ], + [ + 52.5049216, + 13.4587728 + ], + [ + 52.5049159, + 13.4588045 + ], + [ + 52.5049038, + 13.4588715 + ], + [ + 52.5048584, + 13.4591279 + ] + ] + }, + { + "osmId": "407544846", + "name": null, + "lengthMeters": 132.13678490531888, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4998315, + 13.4679605 + ], + [ + 52.4998719, + 13.4679696 + ], + [ + 52.4998912, + 13.4679743 + ], + [ + 52.4999791, + 13.4679927 + ], + [ + 52.5000946, + 13.4680114 + ], + [ + 52.5006542, + 13.4681137 + ], + [ + 52.5010118, + 13.4681863 + ] + ] + }, + { + "osmId": "407544848", + "name": null, + "lengthMeters": 718.674657608149, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.50515, + 13.4571252 + ], + [ + 52.5048938, + 13.4585953 + ], + [ + 52.5045773, + 13.4603726 + ], + [ + 52.5044598, + 13.4610448 + ], + [ + 52.5042276, + 13.4623451 + ], + [ + 52.5042228, + 13.462377 + ], + [ + 52.5041551, + 13.4627399 + ], + [ + 52.5038626, + 13.4643927 + ], + [ + 52.5038294, + 13.4645769 + ], + [ + 52.5037199, + 13.4651855 + ], + [ + 52.5036027, + 13.4658257 + ], + [ + 52.5035156, + 13.4663393 + ], + [ + 52.5034508, + 13.4667102 + ], + [ + 52.5033889, + 13.4670657 + ], + [ + 52.5033883, + 13.467069 + ], + [ + 52.5033445, + 13.4673203 + ] + ] + }, + { + "osmId": "407544850", + "name": null, + "lengthMeters": 233.0860366936516, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5031349, + 13.4694841 + ], + [ + 52.5030191, + 13.470097 + ], + [ + 52.5029946, + 13.4702293 + ], + [ + 52.5028773, + 13.470764 + ], + [ + 52.5028308, + 13.4709551 + ], + [ + 52.5026319, + 13.4717669 + ], + [ + 52.5025679, + 13.4720563 + ], + [ + 52.5025009, + 13.472405 + ], + [ + 52.502449, + 13.4727349 + ] + ] + }, + { + "osmId": "407544853", + "name": null, + "lengthMeters": 1052.9135194578948, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5044603, + 13.4601858 + ], + [ + 52.5043056, + 13.4610551 + ], + [ + 52.5042838, + 13.4611774 + ], + [ + 52.5041397, + 13.4619921 + ], + [ + 52.5038016, + 13.4639067 + ], + [ + 52.5036397, + 13.4648232 + ], + [ + 52.5035445, + 13.4653331 + ], + [ + 52.5035025, + 13.4655516 + ], + [ + 52.5034098, + 13.4660204 + ], + [ + 52.5032474, + 13.4667913 + ], + [ + 52.5030739, + 13.4675476 + ], + [ + 52.5028551, + 13.4685916 + ], + [ + 52.5025515, + 13.4702504 + ], + [ + 52.5024395, + 13.4709272 + ], + [ + 52.5023448, + 13.4715014 + ], + [ + 52.5023063, + 13.4717506 + ], + [ + 52.5022546, + 13.4720854 + ], + [ + 52.5020731, + 13.4732292 + ], + [ + 52.5019876, + 13.4737297 + ], + [ + 52.5019082, + 13.474167 + ], + [ + 52.5018201, + 13.4746389 + ], + [ + 52.501785, + 13.4748252 + ], + [ + 52.50174, + 13.4750798 + ] + ] + }, + { + "osmId": "407907781", + "name": null, + "lengthMeters": 933.845361046974, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.495891, + 10.0054272 + ], + [ + 53.495682, + 10.0053518 + ], + [ + 53.4956046, + 10.0053222 + ], + [ + 53.4955487, + 10.0053008 + ], + [ + 53.4954099, + 10.0052525 + ], + [ + 53.4952823, + 10.005223 + ], + [ + 53.4950693, + 10.0051627 + ], + [ + 53.4948532, + 10.005121 + ], + [ + 53.4944015, + 10.0050339 + ], + [ + 53.493555, + 10.0048824 + ], + [ + 53.4932207, + 10.004818 + ], + [ + 53.492868, + 10.0047571 + ], + [ + 53.4923702, + 10.0046718 + ], + [ + 53.4908478, + 10.0044009 + ], + [ + 53.49, + 10.0042517 + ], + [ + 53.4891555, + 10.0041018 + ], + [ + 53.4885101, + 10.0039865 + ], + [ + 53.4883017, + 10.0039369 + ], + [ + 53.4881008, + 10.0038789 + ], + [ + 53.4879399, + 10.0038344 + ], + [ + 53.4875582, + 10.003723 + ] + ] + }, + { + "osmId": "407907783", + "name": null, + "lengthMeters": 298.8517694868121, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5159674, + 10.0096668 + ], + [ + 53.5151523, + 10.0093958 + ], + [ + 53.5150407, + 10.0093593 + ], + [ + 53.5144272, + 10.0091187 + ], + [ + 53.5138106, + 10.0088809 + ], + [ + 53.5133463, + 10.0086728 + ] + ] + }, + { + "osmId": "407907784", + "name": null, + "lengthMeters": 960.5452801021833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4947402, + 10.0050192 + ], + [ + 53.4944169, + 10.0049674 + ], + [ + 53.4930863, + 10.004725 + ], + [ + 53.4923766, + 10.0045954 + ], + [ + 53.4908534, + 10.0043352 + ], + [ + 53.4900017, + 10.0041856 + ], + [ + 53.489168, + 10.0040326 + ], + [ + 53.4885258, + 10.003912 + ], + [ + 53.4882993, + 10.0038591 + ], + [ + 53.4881054, + 10.0038087 + ], + [ + 53.4879419, + 10.0037791 + ], + [ + 53.4875582, + 10.003723 + ], + [ + 53.4874528, + 10.0036992 + ], + [ + 53.4870122, + 10.0035967 + ], + [ + 53.4867281, + 10.0035319 + ], + [ + 53.4862324, + 10.0034402 + ], + [ + 53.4861546, + 10.0034287 + ] + ] + }, + { + "osmId": "407907786", + "name": null, + "lengthMeters": 291.8809938070091, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5131833, + 10.0086088 + ], + [ + 53.5130416, + 10.0085526 + ], + [ + 53.5129748, + 10.0085261 + ], + [ + 53.5125475, + 10.0083627 + ], + [ + 53.512477, + 10.0083373 + ], + [ + 53.5123638, + 10.0082932 + ], + [ + 53.512235, + 10.0082521 + ], + [ + 53.5118384, + 10.008156 + ], + [ + 53.5117076, + 10.0081165 + ], + [ + 53.5114822, + 10.0080546 + ], + [ + 53.5113519, + 10.0080273 + ], + [ + 53.5111793, + 10.007999 + ], + [ + 53.5110337, + 10.0079776 + ], + [ + 53.5108659, + 10.0079627 + ], + [ + 53.5106373, + 10.0079364 + ], + [ + 53.5105942, + 10.0079368 + ] + ] + }, + { + "osmId": "408034485", + "name": null, + "lengthMeters": 274.08926265929074, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.522496, + 9.9586008 + ], + [ + 53.521615, + 9.9586006 + ], + [ + 53.5200651, + 9.9586079 + ], + [ + 53.5200311, + 9.9586106 + ] + ] + }, + { + "osmId": "408047829", + "name": null, + "lengthMeters": 90.41268770350808, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5130408, + 9.9624723 + ], + [ + 53.5131216, + 9.9622036 + ], + [ + 53.5132551, + 9.9615854 + ], + [ + 53.5133381, + 9.9612014 + ] + ] + }, + { + "osmId": "408047838", + "name": null, + "lengthMeters": 132.47259451861936, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5149346, + 9.959696 + ], + [ + 53.5148666, + 9.9596514 + ], + [ + 53.5147418, + 9.9595695 + ], + [ + 53.5145582, + 9.959465 + ], + [ + 53.514435, + 9.9594336 + ], + [ + 53.5143114, + 9.9594256 + ], + [ + 53.5141854, + 9.9594519 + ], + [ + 53.5140586, + 9.959501 + ], + [ + 53.5139833, + 9.9595591 + ], + [ + 53.5138139, + 9.9597452 + ] + ] + }, + { + "osmId": "408823520", + "name": null, + "lengthMeters": 362.4709735441409, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5506968, + 9.9976735 + ], + [ + 53.5506592, + 9.9961555 + ], + [ + 53.5506347, + 9.9956958 + ], + [ + 53.550534, + 9.9949509 + ], + [ + 53.5504461, + 9.9943527 + ], + [ + 53.5504116, + 9.9941628 + ], + [ + 53.5503834, + 9.9940349 + ], + [ + 53.5503462, + 9.9938922 + ], + [ + 53.550292, + 9.9937139 + ], + [ + 53.5502545, + 9.9936097 + ], + [ + 53.5500229, + 9.9930982 + ], + [ + 53.5497705, + 9.9925805 + ] + ] + }, + { + "osmId": "408823521", + "name": null, + "lengthMeters": 76.19999431366014, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5534771, + 9.9934379 + ], + [ + 53.5536578, + 9.9926894 + ], + [ + 53.5537319, + 9.9923671 + ] + ] + }, + { + "osmId": "408823522", + "name": null, + "lengthMeters": 220.29058836058442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536495, + 9.992348 + ], + [ + 53.5535163, + 9.9930304 + ], + [ + 53.5534353, + 9.9934441 + ], + [ + 53.5532347, + 9.9947004 + ], + [ + 53.5531198, + 9.9954149 + ], + [ + 53.5530971, + 9.9955494 + ] + ] + }, + { + "osmId": "408823523", + "name": null, + "lengthMeters": 117.28460721829336, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5497471, + 9.9926294 + ], + [ + 53.5498905, + 9.9929053 + ], + [ + 53.5499954, + 9.9931165 + ], + [ + 53.5502338, + 9.9936327 + ], + [ + 53.550272, + 9.9937341 + ], + [ + 53.5503241, + 9.9939053 + ], + [ + 53.5503645, + 9.9940581 + ] + ] + }, + { + "osmId": "408823524", + "name": null, + "lengthMeters": 243.1653537381065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5503645, + 9.9940581 + ], + [ + 53.5503896, + 9.9941807 + ], + [ + 53.5504636, + 9.9946282 + ], + [ + 53.550508, + 9.9949606 + ], + [ + 53.5506091, + 9.9957164 + ], + [ + 53.5506311, + 9.9961615 + ], + [ + 53.5506798, + 9.9976839 + ] + ] + }, + { + "osmId": "408823525", + "name": null, + "lengthMeters": 215.62733435592776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5535209, + 9.992478 + ], + [ + 53.5534183, + 9.9929471 + ], + [ + 53.553307, + 9.9933832 + ], + [ + 53.5531157, + 9.994601 + ], + [ + 53.5530732, + 9.9948717 + ], + [ + 53.5530477, + 9.9950672 + ], + [ + 53.5530251, + 9.9953511 + ], + [ + 53.5530043, + 9.9956122 + ] + ] + }, + { + "osmId": "408823526", + "name": null, + "lengthMeters": 259.5482661323346, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530417, + 9.9961896 + ], + [ + 53.5531489, + 9.9958651 + ], + [ + 53.5531851, + 9.9957175 + ], + [ + 53.5533001, + 9.9952411 + ], + [ + 53.5533173, + 9.9951385 + ], + [ + 53.5533767, + 9.9947852 + ], + [ + 53.5534102, + 9.994586 + ], + [ + 53.5535193, + 9.9939372 + ], + [ + 53.5535808, + 9.9935715 + ], + [ + 53.5535895, + 9.9935177 + ], + [ + 53.5537118, + 9.9929246 + ], + [ + 53.5538123, + 9.9924913 + ] + ] + }, + { + "osmId": "408823527", + "name": null, + "lengthMeters": 206.1683254346098, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5510777, + 10.0007211 + ], + [ + 53.5509415, + 9.9999672 + ], + [ + 53.5508802, + 9.9995276 + ], + [ + 53.5508539, + 9.9993458 + ], + [ + 53.5507599, + 9.9985417 + ], + [ + 53.5506968, + 9.9976735 + ] + ] + }, + { + "osmId": "408839378", + "name": null, + "lengthMeters": 428.6629238607453, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5510299, + 9.9908075 + ], + [ + 53.5512413, + 9.9914626 + ], + [ + 53.5514713, + 9.9920939 + ], + [ + 53.5514989, + 9.9921629 + ], + [ + 53.5515049, + 9.9921781 + ], + [ + 53.5518278, + 9.9929863 + ], + [ + 53.5521795, + 9.993884 + ], + [ + 53.5523023, + 9.9941777 + ], + [ + 53.5523218, + 9.9942182 + ], + [ + 53.552349, + 9.9942714 + ], + [ + 53.5523947, + 9.994358 + ], + [ + 53.5525086, + 9.9945589 + ], + [ + 53.5525946, + 9.9947001 + ], + [ + 53.5526317, + 9.99476 + ], + [ + 53.5526723, + 9.9948201 + ], + [ + 53.5528441, + 9.9950523 + ], + [ + 53.5528756, + 9.9950917 + ], + [ + 53.5529149, + 9.995138 + ], + [ + 53.5529836, + 9.9952135 + ], + [ + 53.5530228, + 9.9952546 + ], + [ + 53.5530709, + 9.9953035 + ], + [ + 53.5531212, + 9.9953502 + ], + [ + 53.5532936, + 9.9955018 + ], + [ + 53.5534786, + 9.9956509 + ] + ] + }, + { + "osmId": "408839379", + "name": null, + "lengthMeters": 484.27359916228363, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5512087, + 9.9950305 + ], + [ + 53.5509518, + 9.9953707 + ], + [ + 53.5506908, + 9.9957006 + ], + [ + 53.550585, + 9.9958049 + ], + [ + 53.5505206, + 9.9958627 + ], + [ + 53.5504378, + 9.9959315 + ], + [ + 53.5503213, + 9.9960173 + ], + [ + 53.5502151, + 9.9960845 + ], + [ + 53.5501116, + 9.9961507 + ], + [ + 53.5499317, + 9.9962453 + ], + [ + 53.549742, + 9.9963343 + ], + [ + 53.5496086, + 9.9963789 + ], + [ + 53.5494444, + 9.9964302 + ], + [ + 53.5489775, + 9.9965633 + ], + [ + 53.5487138, + 9.9966659 + ], + [ + 53.5485814, + 9.9967372 + ], + [ + 53.5484429, + 9.9968284 + ], + [ + 53.5483389, + 9.996919 + ], + [ + 53.5482421, + 9.9970368 + ], + [ + 53.5481451, + 9.9971596 + ], + [ + 53.5480546, + 9.99731 + ], + [ + 53.5479693, + 9.9974822 + ], + [ + 53.5478879, + 9.9976759 + ], + [ + 53.5478199, + 9.9978743 + ], + [ + 53.5477905, + 9.9979758 + ], + [ + 53.5477586, + 9.9980986 + ], + [ + 53.5477375, + 9.9982051 + ], + [ + 53.547716, + 9.9983413 + ], + [ + 53.5477024, + 9.9984465 + ], + [ + 53.5476883, + 9.9985889 + ] + ] + }, + { + "osmId": "408839380", + "name": null, + "lengthMeters": 285.3620262625921, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5532386, + 9.9923913 + ], + [ + 53.5529346, + 9.9928352 + ], + [ + 53.5525406, + 9.9933084 + ], + [ + 53.5522197, + 9.9937227 + ], + [ + 53.5519038, + 9.9941252 + ], + [ + 53.5517339, + 9.9943305 + ], + [ + 53.5516198, + 9.9944685 + ], + [ + 53.5512087, + 9.9950305 + ] + ] + }, + { + "osmId": "408839381", + "name": null, + "lengthMeters": 283.19245154767543, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5512496, + 9.9950956 + ], + [ + 53.5514525, + 9.994855 + ], + [ + 53.5516598, + 9.9946262 + ], + [ + 53.5518492, + 9.9944611 + ], + [ + 53.5523523, + 9.9938446 + ], + [ + 53.552426, + 9.9937439 + ], + [ + 53.5526148, + 9.9934765 + ], + [ + 53.5527128, + 9.9933253 + ], + [ + 53.5530897, + 9.9927029 + ], + [ + 53.5532477, + 9.9924636 + ] + ] + }, + { + "osmId": "408855542", + "name": null, + "lengthMeters": 309.96354443413867, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5535985, + 10.0029382 + ], + [ + 53.5537159, + 10.0033268 + ], + [ + 53.5537948, + 10.0036604 + ], + [ + 53.5539022, + 10.0042003 + ], + [ + 53.5539706, + 10.0045782 + ], + [ + 53.5540002, + 10.0048069 + ], + [ + 53.5540213, + 10.0050371 + ], + [ + 53.5541, + 10.006186 + ], + [ + 53.554145, + 10.0068431 + ], + [ + 53.5541655, + 10.0071427 + ], + [ + 53.554181, + 10.0074881 + ] + ] + }, + { + "osmId": "408855543", + "name": null, + "lengthMeters": 998.8080335768964, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.554181, + 10.0074881 + ], + [ + 53.5541802, + 10.0077322 + ], + [ + 53.5541702, + 10.0079301 + ], + [ + 53.5541524, + 10.0081783 + ], + [ + 53.5541258, + 10.008429 + ], + [ + 53.5540712, + 10.0087962 + ], + [ + 53.5540163, + 10.0091022 + ], + [ + 53.5539402, + 10.00941 + ], + [ + 53.5538455, + 10.009737 + ], + [ + 53.5537372, + 10.010046 + ], + [ + 53.5536061, + 10.0103395 + ], + [ + 53.5533978, + 10.0107275 + ], + [ + 53.5531042, + 10.0112292 + ], + [ + 53.5529505, + 10.011505 + ], + [ + 53.5528669, + 10.0116907 + ], + [ + 53.552767, + 10.0119014 + ], + [ + 53.5526717, + 10.0121641 + ], + [ + 53.552565, + 10.012478 + ], + [ + 53.5524826, + 10.0127966 + ], + [ + 53.5524084, + 10.0131441 + ], + [ + 53.5523536, + 10.0134743 + ], + [ + 53.5523177, + 10.0137608 + ], + [ + 53.5522968, + 10.0139965 + ], + [ + 53.5522851, + 10.0141929 + ], + [ + 53.5522858, + 10.0144851 + ], + [ + 53.5522981, + 10.0147541 + ], + [ + 53.5523451, + 10.0155469 + ], + [ + 53.5523924, + 10.0161594 + ], + [ + 53.5524248, + 10.0165126 + ], + [ + 53.5524467, + 10.0167779 + ], + [ + 53.5524741, + 10.0171105 + ], + [ + 53.5525965, + 10.018406 + ], + [ + 53.5526656, + 10.0190325 + ], + [ + 53.5527203, + 10.0194763 + ], + [ + 53.5529562, + 10.0208441 + ], + [ + 53.5531002, + 10.0215241 + ] + ] + }, + { + "osmId": "408860364", + "name": null, + "lengthMeters": 119.79826263431805, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6326095, + 10.0067944 + ], + [ + 53.6318043, + 10.0068916 + ], + [ + 53.6317368, + 10.006889 + ], + [ + 53.6315343, + 10.0068994 + ] + ] + }, + { + "osmId": "408860369", + "name": null, + "lengthMeters": 146.055004019926, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6326045, + 10.0065832 + ], + [ + 53.6317834, + 10.006672 + ], + [ + 53.6317416, + 10.0066821 + ], + [ + 53.6317035, + 10.0066899 + ], + [ + 53.6316347, + 10.0067178 + ], + [ + 53.6315794, + 10.0067448 + ], + [ + 53.6315413, + 10.006763 + ], + [ + 53.6314567, + 10.0068005 + ], + [ + 53.6313923, + 10.0068276 + ], + [ + 53.6313075, + 10.0068693 + ] + ] + }, + { + "osmId": "408897407", + "name": null, + "lengthMeters": 227.784811200901, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5516914, + 10.0075881 + ], + [ + 53.5516136, + 10.0074166 + ], + [ + 53.5514484, + 10.0071077 + ], + [ + 53.5513612, + 10.0069647 + ], + [ + 53.5512358, + 10.0068131 + ], + [ + 53.5511134, + 10.0066813 + ], + [ + 53.550994, + 10.0065709 + ], + [ + 53.5508493, + 10.0064799 + ], + [ + 53.5507449, + 10.0064229 + ], + [ + 53.5505903, + 10.0063695 + ], + [ + 53.5504717, + 10.0063409 + ], + [ + 53.5503414, + 10.0063017 + ], + [ + 53.5501113, + 10.0062674 + ], + [ + 53.5499015, + 10.0062383 + ] + ] + }, + { + "osmId": "408897412", + "name": null, + "lengthMeters": 219.4065376679497, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5525438, + 10.0139164 + ], + [ + 53.5524804, + 10.0130081 + ], + [ + 53.5523692, + 10.0113226 + ], + [ + 53.5523226, + 10.010616 + ] + ] + }, + { + "osmId": "408897413", + "name": null, + "lengthMeters": 160.10609200039863, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5499015, + 10.0062383 + ], + [ + 53.5498626, + 10.0062331 + ], + [ + 53.5494476, + 10.0061783 + ], + [ + 53.5490463, + 10.0061276 + ], + [ + 53.5489166, + 10.006092 + ], + [ + 53.5486301, + 10.0059521 + ], + [ + 53.5485823, + 10.0059287 + ], + [ + 53.5484861, + 10.0058685 + ] + ] + }, + { + "osmId": "408897414", + "name": null, + "lengthMeters": 174.3799038338184, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5485529, + 10.006073 + ], + [ + 53.5488309, + 10.0062177 + ], + [ + 53.548951, + 10.0062682 + ], + [ + 53.5490281, + 10.0062965 + ], + [ + 53.5492133, + 10.0063259 + ], + [ + 53.5494862, + 10.0063596 + ], + [ + 53.5498601, + 10.0063962 + ], + [ + 53.5501, + 10.0064211 + ] + ] + }, + { + "osmId": "409289690", + "name": null, + "lengthMeters": 87.44117345935837, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4889439, + 13.3737292 + ], + [ + 52.489395, + 13.374019 + ], + [ + 52.489678, + 13.3741921 + ] + ] + }, + { + "osmId": "409289693", + "name": null, + "lengthMeters": 89.39885294527872, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4908616, + 13.3749394 + ], + [ + 52.4910451, + 13.3750806 + ], + [ + 52.4911998, + 13.3751904 + ], + [ + 52.4913412, + 13.3752915 + ], + [ + 52.4915999, + 13.3754613 + ] + ] + }, + { + "osmId": "410363491", + "name": null, + "lengthMeters": 85.84348737430889, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409255, + 11.5499528 + ], + [ + 48.1409243, + 11.549366 + ], + [ + 48.1409261, + 11.5489303 + ], + [ + 48.1409266, + 11.5487959 + ] + ] + }, + { + "osmId": "410363492", + "name": null, + "lengthMeters": 101.42647377624297, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411373, + 11.528766 + ], + [ + 48.1411716, + 11.5289358 + ], + [ + 48.1412079, + 11.529095 + ], + [ + 48.141332, + 11.5295003 + ], + [ + 48.1415286, + 11.5299945 + ] + ] + }, + { + "osmId": "410955388", + "name": null, + "lengthMeters": 355.20095960535133, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4129464, + 13.5729655 + ], + [ + 52.412891, + 13.5730371 + ], + [ + 52.4123493, + 13.573736 + ], + [ + 52.4119433, + 13.5742988 + ], + [ + 52.4118571, + 13.5744183 + ], + [ + 52.4117016, + 13.5746337 + ], + [ + 52.4114351, + 13.5750031 + ], + [ + 52.411214, + 13.575317 + ], + [ + 52.4109837, + 13.5756507 + ], + [ + 52.4107687, + 13.5759313 + ], + [ + 52.4104849, + 13.5763016 + ] + ] + }, + { + "osmId": "410961544", + "name": "Verbindungsbahn", + "lengthMeters": 76.53109320416652, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5638633, + 9.9724323 + ], + [ + 53.5638678, + 9.9725614 + ], + [ + 53.5639022, + 9.9732322 + ], + [ + 53.5639124, + 9.973588 + ] + ] + }, + { + "osmId": "410961545", + "name": "Verbindungsbahn", + "lengthMeters": 388.48239078677204, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5639124, + 9.973588 + ], + [ + 53.5639197, + 9.9739603 + ], + [ + 53.5639479, + 9.9750389 + ], + [ + 53.5639577, + 9.9766845 + ], + [ + 53.563965, + 9.9781713 + ], + [ + 53.5639693, + 9.979469 + ] + ] + }, + { + "osmId": "411639465", + "name": null, + "lengthMeters": 165.9483075828476, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5235901, + 10.0054115 + ], + [ + 53.5234969, + 10.0060291 + ], + [ + 53.5233631, + 10.0068651 + ], + [ + 53.5233315, + 10.0070536 + ], + [ + 53.5233084, + 10.0071763 + ], + [ + 53.5232817, + 10.007301 + ], + [ + 53.5232199, + 10.0075773 + ], + [ + 53.5231737, + 10.0078203 + ] + ] + }, + { + "osmId": "411639469", + "name": null, + "lengthMeters": 697.7703975803698, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5251391, + 9.9951695 + ], + [ + 53.5250363, + 9.9958277 + ], + [ + 53.5242207, + 10.0010517 + ], + [ + 53.5237929, + 10.0038646 + ], + [ + 53.5236726, + 10.0046452 + ], + [ + 53.5236114, + 10.0050097 + ], + [ + 53.5235938, + 10.005128 + ], + [ + 53.5235524, + 10.0053821 + ] + ] + }, + { + "osmId": "413192360", + "name": null, + "lengthMeters": 115.9153954093102, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.140994, + 11.5495837 + ], + [ + 48.141096, + 11.548029 + ] + ] + }, + { + "osmId": "413581912", + "name": null, + "lengthMeters": 242.2350936691232, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6529823, + 10.186269 + ], + [ + 53.6529868, + 10.1860877 + ], + [ + 53.653005, + 10.1850656 + ], + [ + 53.6530526, + 10.1831755 + ], + [ + 53.6530828, + 10.1825979 + ] + ] + }, + { + "osmId": "413801770", + "name": null, + "lengthMeters": 327.2065323479624, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5741386, + 9.988886 + ], + [ + 53.5739755, + 9.9889364 + ], + [ + 53.5737978, + 9.9889624 + ], + [ + 53.5735261, + 9.9889643 + ], + [ + 53.5734126, + 9.9889556 + ], + [ + 53.5732295, + 9.9889469 + ], + [ + 53.572288, + 9.9889043 + ], + [ + 53.5720381, + 9.9888952 + ], + [ + 53.5712005, + 9.9888438 + ] + ] + }, + { + "osmId": "415383440", + "name": null, + "lengthMeters": 81.60277100140344, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5556156, + 9.9350669 + ], + [ + 53.5558982, + 9.9350862 + ], + [ + 53.5561809, + 9.935102 + ], + [ + 53.556349, + 9.9351109 + ] + ] + }, + { + "osmId": "415991534", + "name": null, + "lengthMeters": 140.36376620907535, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4591154, + 9.9914237 + ], + [ + 53.4593453, + 9.9915112 + ], + [ + 53.460329, + 9.9920044 + ] + ] + }, + { + "osmId": "415991541", + "name": null, + "lengthMeters": 431.6403438030612, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445544, + 11.4980496 + ], + [ + 48.1445203, + 11.4983739 + ], + [ + 48.1440305, + 11.50301 + ], + [ + 48.1439591, + 11.5036825 + ], + [ + 48.1439477, + 11.5037957 + ] + ] + }, + { + "osmId": "415991542", + "name": null, + "lengthMeters": 78.11501642939018, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1510836, + 11.4576715 + ], + [ + 48.1512322, + 11.4571765 + ], + [ + 48.151368, + 11.4567087 + ] + ] + }, + { + "osmId": "415991546", + "name": null, + "lengthMeters": 167.76085163669887, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1480897, + 11.467097 + ], + [ + 48.1482776, + 11.4665234 + ], + [ + 48.1487588, + 11.4650703 + ] + ] + }, + { + "osmId": "415991547", + "name": null, + "lengthMeters": 369.95763072791783, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1497959, + 11.4612753 + ], + [ + 48.149737, + 11.461472 + ], + [ + 48.1494499, + 11.4624377 + ], + [ + 48.1493661, + 11.4627269 + ], + [ + 48.1491655, + 11.4634301 + ], + [ + 48.149094, + 11.463694 + ], + [ + 48.1489523, + 11.4641972 + ], + [ + 48.1487904, + 11.4647231 + ], + [ + 48.1484392, + 11.4658277 + ] + ] + }, + { + "osmId": "415991548", + "name": null, + "lengthMeters": 137.47864943704445, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1505119, + 11.4593616 + ], + [ + 48.1508154, + 11.4584715 + ], + [ + 48.1509459, + 11.4580972 + ], + [ + 48.1510724, + 11.4577099 + ] + ] + }, + { + "osmId": "415991549", + "name": null, + "lengthMeters": 132.97312590951165, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1503244, + 11.4596678 + ], + [ + 48.1501348, + 11.4602113 + ], + [ + 48.1499211, + 11.4608694 + ], + [ + 48.1497959, + 11.4612753 + ] + ] + }, + { + "osmId": "415991550", + "name": null, + "lengthMeters": 339.2298820879455, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1525158, + 11.4507461 + ], + [ + 48.1526716, + 11.4486624 + ], + [ + 48.1527096, + 11.4481305 + ], + [ + 48.1527708, + 11.4473883 + ], + [ + 48.1528797, + 11.4462062 + ] + ] + }, + { + "osmId": "415991552", + "name": null, + "lengthMeters": 131.565072012328, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1528913, + 11.4456508 + ], + [ + 48.1528945, + 11.4456176 + ], + [ + 48.1529657, + 11.4448766 + ], + [ + 48.15306, + 11.4438954 + ] + ] + }, + { + "osmId": "415991553", + "name": null, + "lengthMeters": 647.2304027622686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1478381, + 11.4691163 + ], + [ + 48.1480098, + 11.4685797 + ], + [ + 48.1482029, + 11.4679881 + ], + [ + 48.1483603, + 11.4675171 + ], + [ + 48.1489891, + 11.465784 + ], + [ + 48.1492468, + 11.4650924 + ], + [ + 48.1496734, + 11.4639474 + ], + [ + 48.1501367, + 11.4627001 + ], + [ + 48.1503833, + 11.4619381 + ], + [ + 48.1505475, + 11.4613988 + ] + ] + }, + { + "osmId": "415991556", + "name": null, + "lengthMeters": 309.90468466097025, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1493284, + 11.4633855 + ], + [ + 48.149176, + 11.4638961 + ], + [ + 48.1488933, + 11.4647934 + ], + [ + 48.148401, + 11.4663192 + ], + [ + 48.1482255, + 11.466845 + ], + [ + 48.1481231, + 11.4671515 + ] + ] + }, + { + "osmId": "415991667", + "name": null, + "lengthMeters": 543.5204632319035, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445081, + 11.4980411 + ], + [ + 48.1443834, + 11.4991363 + ], + [ + 48.1442736, + 11.5002413 + ], + [ + 48.1442434, + 11.5005289 + ], + [ + 48.1440546, + 11.5023143 + ], + [ + 48.1438838, + 11.5039089 + ], + [ + 48.143732, + 11.5052735 + ] + ] + }, + { + "osmId": "416147743", + "name": null, + "lengthMeters": 2586.499793545321, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1916777, + 11.5981777 + ], + [ + 48.1920016, + 11.5985958 + ], + [ + 48.1921871, + 11.5988036 + ], + [ + 48.1923812, + 11.5989817 + ], + [ + 48.1927038, + 11.5991784 + ], + [ + 48.1928807, + 11.5993012 + ], + [ + 48.1930439, + 11.5993602 + ], + [ + 48.1934874, + 11.5993627 + ], + [ + 48.1940397, + 11.5993336 + ], + [ + 48.1945678, + 11.5993191 + ], + [ + 48.1948148, + 11.5993118 + ], + [ + 48.1951763, + 11.5993135 + ], + [ + 48.1954621, + 11.5992734 + ], + [ + 48.1957083, + 11.5991905 + ], + [ + 48.1958588, + 11.5991229 + ], + [ + 48.1960101, + 11.5990393 + ], + [ + 48.1961315, + 11.5989826 + ], + [ + 48.196392, + 11.5988502 + ], + [ + 48.1968497, + 11.5985822 + ], + [ + 48.1971647, + 11.5984721 + ], + [ + 48.1974319, + 11.5984491 + ], + [ + 48.1983911, + 11.5983707 + ], + [ + 48.1993368, + 11.5982097 + ], + [ + 48.2012724, + 11.5979945 + ], + [ + 48.2013359, + 11.5980088 + ], + [ + 48.2013877, + 11.5980524 + ], + [ + 48.2014191, + 11.5981027 + ], + [ + 48.2014329, + 11.5981738 + ], + [ + 48.2013764, + 11.5986667 + ], + [ + 48.2012985, + 11.5993299 + ], + [ + 48.2011465, + 11.6004628 + ], + [ + 48.2010283, + 11.6013695 + ], + [ + 48.2009273, + 11.602258 + ], + [ + 48.2007568, + 11.6036103 + ], + [ + 48.2007287, + 11.60387 + ], + [ + 48.2006137, + 11.6049425 + ], + [ + 48.2005754, + 11.6052991 + ], + [ + 48.2005287, + 11.6056316 + ], + [ + 48.2004776, + 11.6059824 + ], + [ + 48.2004131, + 11.6065268 + ], + [ + 48.200332, + 11.6071786 + ], + [ + 48.2002483, + 11.6078226 + ], + [ + 48.2001493, + 11.60853 + ], + [ + 48.2000982, + 11.6088606 + ], + [ + 48.2000177, + 11.6093887 + ], + [ + 48.1999327, + 11.6099293 + ], + [ + 48.1998305, + 11.6106462 + ], + [ + 48.1997961, + 11.6108427 + ], + [ + 48.1997474, + 11.6111292 + ], + [ + 48.1997444, + 11.6112665 + ], + [ + 48.1997588, + 11.6113815 + ], + [ + 48.1997827, + 11.6114385 + ], + [ + 48.199814, + 11.611476 + ], + [ + 48.1998773, + 11.6115102 + ], + [ + 48.1999685, + 11.6115452 + ], + [ + 48.2005415, + 11.6117426 + ], + [ + 48.200721, + 11.611802 + ], + [ + 48.2008041, + 11.6118231 + ], + [ + 48.2009612, + 11.6118672 + ], + [ + 48.2010558, + 11.6118672 + ], + [ + 48.2011637, + 11.6118644 + ], + [ + 48.2012691, + 11.6118366 + ], + [ + 48.201412, + 11.6118094 + ], + [ + 48.2015489, + 11.6117982 + ], + [ + 48.2015953, + 11.6117913 + ], + [ + 48.2016388, + 11.6117798 + ], + [ + 48.2016868, + 11.6117629 + ], + [ + 48.201701, + 11.6117579 + ], + [ + 48.2017514, + 11.6117436 + ], + [ + 48.2018012, + 11.6117425 + ], + [ + 48.2018736, + 11.6117644 + ], + [ + 48.2020052, + 11.6118467 + ], + [ + 48.2027546, + 11.6123142 + ], + [ + 48.2027807, + 11.6123438 + ], + [ + 48.2028015, + 11.6123815 + ], + [ + 48.202816, + 11.6124254 + ], + [ + 48.2028235, + 11.6124731 + ], + [ + 48.2028234, + 11.6125221 + ], + [ + 48.2028158, + 11.6125698 + ], + [ + 48.2028011, + 11.6126138 + ], + [ + 48.20278, + 11.6126515 + ], + [ + 48.2027537, + 11.6126809 + ], + [ + 48.2027235, + 11.6127004 + ], + [ + 48.2026912, + 11.612709 + ], + [ + 48.2026496, + 11.6127026 + ], + [ + 48.2026228, + 11.6126913 + ], + [ + 48.2023103, + 11.6125601 + ], + [ + 48.2021975, + 11.6125049 + ], + [ + 48.2020835, + 11.6123922 + ] + ] + }, + { + "osmId": "416147744", + "name": null, + "lengthMeters": 670.4105113910074, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1974293, + 11.598334 + ], + [ + 48.1971504, + 11.5983689 + ], + [ + 48.1968378, + 11.5984616 + ], + [ + 48.1963753, + 11.5987364 + ], + [ + 48.1961205, + 11.5988655 + ], + [ + 48.1959672, + 11.5989511 + ], + [ + 48.1958202, + 11.5990307 + ], + [ + 48.1956679, + 11.599114 + ], + [ + 48.1954891, + 11.599191 + ], + [ + 48.1953204, + 11.5992085 + ], + [ + 48.1951006, + 11.5992253 + ], + [ + 48.1943504, + 11.5992365 + ], + [ + 48.1937356, + 11.5992626 + ], + [ + 48.1931185, + 11.5992849 + ], + [ + 48.1930032, + 11.5992664 + ], + [ + 48.1928841, + 11.5992053 + ], + [ + 48.1927084, + 11.5990793 + ], + [ + 48.1924119, + 11.5988966 + ], + [ + 48.1922366, + 11.5987355 + ], + [ + 48.1920589, + 11.5985485 + ], + [ + 48.1917196, + 11.5981172 + ] + ] + }, + { + "osmId": "416160984", + "name": "Westtangente", + "lengthMeters": 1199.0277012656384, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1542984, + 11.509689 + ], + [ + 48.154171, + 11.5095463 + ], + [ + 48.1539467, + 11.5093112 + ], + [ + 48.1538663, + 11.5092264 + ], + [ + 48.153504, + 11.5089035 + ], + [ + 48.1531734, + 11.5085836 + ], + [ + 48.1530702, + 11.5083828 + ], + [ + 48.1529372, + 11.5081149 + ], + [ + 48.1527871, + 11.5077003 + ], + [ + 48.1526626, + 11.5073349 + ], + [ + 48.1525719, + 11.5070615 + ], + [ + 48.1525004, + 11.5067729 + ], + [ + 48.1522989, + 11.5059575 + ], + [ + 48.1520517, + 11.5049978 + ], + [ + 48.1519852, + 11.504791 + ], + [ + 48.1518949, + 11.5045975 + ], + [ + 48.1517867, + 11.5044413 + ], + [ + 48.1515951, + 11.5043059 + ], + [ + 48.1515047, + 11.5042568 + ], + [ + 48.1512268, + 11.5041006 + ], + [ + 48.1510521, + 11.503986 + ], + [ + 48.1507134, + 11.5037977 + ], + [ + 48.150426, + 11.5036465 + ], + [ + 48.1502118, + 11.5035314 + ], + [ + 48.1499235, + 11.5034285 + ], + [ + 48.1496812, + 11.5033566 + ], + [ + 48.149435, + 11.5033075 + ], + [ + 48.1490975, + 11.5032733 + ], + [ + 48.1488304, + 11.5032688 + ], + [ + 48.1483596, + 11.5032795 + ], + [ + 48.1480981, + 11.5032862 + ], + [ + 48.1477361, + 11.5032733 + ], + [ + 48.1474082, + 11.5032593 + ], + [ + 48.1470152, + 11.50347 + ], + [ + 48.1468356, + 11.5034689 + ], + [ + 48.1466559, + 11.5034678 + ], + [ + 48.1462701, + 11.503539 + ], + [ + 48.1460789, + 11.5036155 + ], + [ + 48.1459378, + 11.5036183 + ], + [ + 48.1456305, + 11.5036091 + ] + ] + }, + { + "osmId": "416458313", + "name": null, + "lengthMeters": 151.40443636119852, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5735533, + 10.0701469 + ], + [ + 53.5734683, + 10.0701453 + ], + [ + 53.5733918, + 10.0701339 + ], + [ + 53.5732241, + 10.0700961 + ], + [ + 53.5730962, + 10.070044 + ], + [ + 53.5729846, + 10.069981 + ], + [ + 53.5728653, + 10.0698939 + ], + [ + 53.5727429, + 10.0697806 + ], + [ + 53.5725734, + 10.0695702 + ], + [ + 53.5724397, + 10.0693734 + ], + [ + 53.5723477, + 10.0692347 + ] + ] + }, + { + "osmId": "416499659", + "name": null, + "lengthMeters": 93.66156926151449, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5657973, + 9.9336869 + ], + [ + 53.5666371, + 9.9335773 + ] + ] + }, + { + "osmId": "416499683", + "name": null, + "lengthMeters": 517.5146162422533, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5865815, + 9.9206455 + ], + [ + 53.587258, + 9.9201158 + ], + [ + 53.5876915, + 9.919749 + ], + [ + 53.5881288, + 9.9193544 + ], + [ + 53.5882149, + 9.9192671 + ], + [ + 53.5885694, + 9.9189078 + ], + [ + 53.5890377, + 9.9184121 + ], + [ + 53.5898978, + 9.9174711 + ], + [ + 53.5901642, + 9.9171596 + ], + [ + 53.5905643, + 9.9166272 + ] + ] + }, + { + "osmId": "416499771", + "name": null, + "lengthMeters": 91.20199597566292, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.540353, + 10.0135382 + ], + [ + 53.5403765, + 10.0133856 + ], + [ + 53.5405557, + 10.0122008 + ] + ] + }, + { + "osmId": "416531418", + "name": null, + "lengthMeters": 1718.0177177980001, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4883744, + 13.331146 + ], + [ + 52.4892434, + 13.331126 + ], + [ + 52.4900975, + 13.3311447 + ], + [ + 52.4909207, + 13.3311287 + ], + [ + 52.4912108, + 13.3311221 + ], + [ + 52.4920931, + 13.3311019 + ], + [ + 52.4929082, + 13.3310898 + ], + [ + 52.493412, + 13.3310804 + ], + [ + 52.4949983, + 13.3310295 + ], + [ + 52.4954663, + 13.3310106 + ], + [ + 52.4959072, + 13.3309597 + ], + [ + 52.4963864, + 13.3309007 + ], + [ + 52.4983955, + 13.330835 + ], + [ + 52.498599, + 13.3308283 + ], + [ + 52.4994765, + 13.3308616 + ], + [ + 52.500015, + 13.3308947 + ], + [ + 52.5012425, + 13.3310725 + ], + [ + 52.5021797, + 13.3312601 + ], + [ + 52.5038023, + 13.3315005 + ] + ] + }, + { + "osmId": "417038997", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 211.72499772073667, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4335788, + 13.5428849 + ], + [ + 52.4340283, + 13.5422836 + ], + [ + 52.4344311, + 13.5417309 + ], + [ + 52.4349888, + 13.5409402 + ], + [ + 52.4350355, + 13.540874 + ] + ] + }, + { + "osmId": "417039007", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 810.9715754810929, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4341571, + 13.5420328 + ], + [ + 52.433734, + 13.5426014 + ], + [ + 52.4337036, + 13.5426421 + ], + [ + 52.4332974, + 13.5431855 + ], + [ + 52.4324579, + 13.5443297 + ], + [ + 52.4323629, + 13.5444657 + ], + [ + 52.4311128, + 13.5462801 + ], + [ + 52.4306471, + 13.5469765 + ], + [ + 52.4293983, + 13.548844 + ], + [ + 52.4286773, + 13.5499222 + ] + ] + }, + { + "osmId": "417039020", + "name": null, + "lengthMeters": 240.19031124448665, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5022794, + 13.469192 + ], + [ + 52.5020817, + 13.4691042 + ], + [ + 52.5019033, + 13.4690274 + ], + [ + 52.5015863, + 13.4688977 + ], + [ + 52.5001832, + 13.4683359 + ] + ] + }, + { + "osmId": "417039023", + "name": null, + "lengthMeters": 185.76129405285727, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006522, + 13.4685845 + ], + [ + 52.5012966, + 13.4688479 + ], + [ + 52.5015683, + 13.4689805 + ], + [ + 52.5017222, + 13.4690652 + ], + [ + 52.5018761, + 13.4691611 + ], + [ + 52.5020776, + 13.4693011 + ], + [ + 52.5022395, + 13.4694203 + ] + ] + }, + { + "osmId": "417381741", + "name": "Nordring", + "lengthMeters": 473.15413747553407, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347829, + 11.653204 + ], + [ + 48.1349583, + 11.6531305 + ], + [ + 48.1352708, + 11.6529995 + ], + [ + 48.1356157, + 11.6528504 + ], + [ + 48.1359188, + 11.6527023 + ], + [ + 48.1361409, + 11.6525816 + ], + [ + 48.1370835, + 11.6520694 + ], + [ + 48.1374518, + 11.6518968 + ], + [ + 48.1376599, + 11.6518003 + ], + [ + 48.1378723, + 11.6517093 + ], + [ + 48.1381093, + 11.6516128 + ], + [ + 48.1383201, + 11.6515278 + ], + [ + 48.1384599, + 11.6514645 + ], + [ + 48.1388426, + 11.6513047 + ] + ] + }, + { + "osmId": "417384940", + "name": null, + "lengthMeters": 975.6826955958759, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1430086, + 11.6500607 + ], + [ + 48.1436956, + 11.6499849 + ], + [ + 48.1448084, + 11.6498668 + ], + [ + 48.1453662, + 11.6498076 + ], + [ + 48.1464795, + 11.6496878 + ], + [ + 48.1470232, + 11.6496293 + ], + [ + 48.148011, + 11.6495268 + ], + [ + 48.1483274, + 11.649494 + ], + [ + 48.1486991, + 11.6494547 + ], + [ + 48.1487335, + 11.6494515 + ], + [ + 48.1487696, + 11.6494473 + ], + [ + 48.1488406, + 11.6494403 + ], + [ + 48.1496176, + 11.6493638 + ], + [ + 48.1496219, + 11.6493634 + ], + [ + 48.1498367, + 11.6493405 + ], + [ + 48.1509432, + 11.6492223 + ], + [ + 48.1517602, + 11.6491136 + ] + ] + }, + { + "osmId": "418106539", + "name": null, + "lengthMeters": 2586.0799286529764, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1370012, + 11.4808891 + ], + [ + 48.1370563, + 11.4805787 + ], + [ + 48.1370992, + 11.4803042 + ], + [ + 48.1371449, + 11.4799888 + ], + [ + 48.1372729, + 11.4793305 + ], + [ + 48.1374343, + 11.4788087 + ], + [ + 48.1376103, + 11.4784222 + ], + [ + 48.1379878, + 11.4778872 + ], + [ + 48.1383799, + 11.4776852 + ], + [ + 48.1388006, + 11.4774676 + ], + [ + 48.1402373, + 11.4766114 + ], + [ + 48.1418773, + 11.4750671 + ], + [ + 48.1426544, + 11.4743785 + ], + [ + 48.1429368, + 11.4740565 + ], + [ + 48.1434058, + 11.4734984 + ], + [ + 48.1438896, + 11.4729406 + ], + [ + 48.1445166, + 11.4722155 + ], + [ + 48.1448653, + 11.4718358 + ], + [ + 48.1448978, + 11.4718144 + ], + [ + 48.1450129, + 11.4717388 + ], + [ + 48.1451458, + 11.4716538 + ], + [ + 48.1452705, + 11.4715647 + ], + [ + 48.1452877, + 11.4715488 + ], + [ + 48.1453735, + 11.4714664 + ], + [ + 48.1454633, + 11.4713851 + ], + [ + 48.1455824, + 11.4712843 + ], + [ + 48.1456781, + 11.4712188 + ], + [ + 48.1457478, + 11.4711712 + ], + [ + 48.1457659, + 11.4711584 + ], + [ + 48.1458269, + 11.4711152 + ], + [ + 48.1460023, + 11.4710041 + ], + [ + 48.1461924, + 11.4708765 + ], + [ + 48.1463315, + 11.4707933 + ], + [ + 48.1464265, + 11.4706945 + ], + [ + 48.1464748, + 11.4706425 + ], + [ + 48.1466499, + 11.4704426 + ], + [ + 48.1467611, + 11.470224 + ], + [ + 48.1470679, + 11.4693423 + ], + [ + 48.1474759, + 11.4680207 + ], + [ + 48.1481533, + 11.4658735 + ], + [ + 48.1486671, + 11.4643265 + ], + [ + 48.148736, + 11.4640689 + ], + [ + 48.148937, + 11.463318 + ], + [ + 48.1490065, + 11.4630797 + ], + [ + 48.1491926, + 11.4624416 + ], + [ + 48.1497018, + 11.4607561 + ], + [ + 48.1498473, + 11.460339 + ], + [ + 48.1499989, + 11.4599044 + ], + [ + 48.1501263, + 11.4595431 + ], + [ + 48.1503558, + 11.4588926 + ], + [ + 48.1507503, + 11.4575754 + ], + [ + 48.1508936, + 11.4567961 + ], + [ + 48.151093, + 11.4557108 + ], + [ + 48.1511002, + 11.4555604 + ] + ] + }, + { + "osmId": "418106550", + "name": "U5", + "lengthMeters": 2584.6307162962726, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1508971, + 11.4554802 + ], + [ + 48.1508893, + 11.4557277 + ], + [ + 48.1508494, + 11.456114 + ], + [ + 48.1507941, + 11.456478 + ], + [ + 48.1507033, + 11.4571286 + ], + [ + 48.1505953, + 11.4576207 + ], + [ + 48.1502458, + 11.4588209 + ], + [ + 48.150016, + 11.4594518 + ], + [ + 48.1498914, + 11.459794 + ], + [ + 48.1497563, + 11.4602292 + ], + [ + 48.1490593, + 11.4624752 + ], + [ + 48.1488989, + 11.4630149 + ], + [ + 48.148606, + 11.4640008 + ], + [ + 48.1481207, + 11.4656341 + ], + [ + 48.1477355, + 11.4668015 + ], + [ + 48.1475111, + 11.4675137 + ], + [ + 48.1473061, + 11.4682202 + ], + [ + 48.1470594, + 11.4690479 + ], + [ + 48.1468692, + 11.4696333 + ], + [ + 48.1466307, + 11.470161 + ], + [ + 48.1464954, + 11.4704028 + ], + [ + 48.1463359, + 11.4705396 + ], + [ + 48.1461958, + 11.4706364 + ], + [ + 48.1460537, + 11.4707371 + ], + [ + 48.1459416, + 11.4708253 + ], + [ + 48.145801, + 11.4709183 + ], + [ + 48.145556, + 11.4710875 + ], + [ + 48.1453934, + 11.4712155 + ], + [ + 48.1452607, + 11.4713225 + ], + [ + 48.145138, + 11.471429 + ], + [ + 48.1450396, + 11.4715112 + ], + [ + 48.1449556, + 11.4715737 + ], + [ + 48.1448779, + 11.4716379 + ], + [ + 48.1447672, + 11.471764 + ], + [ + 48.144455, + 11.4721118 + ], + [ + 48.1441178, + 11.4724972 + ], + [ + 48.1436367, + 11.4730486 + ], + [ + 48.1433438, + 11.4733755 + ], + [ + 48.1432089, + 11.473526 + ], + [ + 48.1428755, + 11.473913 + ], + [ + 48.1427819, + 11.4740217 + ], + [ + 48.1426258, + 11.474163 + ], + [ + 48.1423833, + 11.4743768 + ], + [ + 48.1418722, + 11.4747791 + ], + [ + 48.1413482, + 11.4752905 + ], + [ + 48.1407805, + 11.4758553 + ], + [ + 48.1402516, + 11.4763764 + ], + [ + 48.1394427, + 11.4769089 + ], + [ + 48.1380016, + 11.4776254 + ], + [ + 48.1377762, + 11.4779042 + ], + [ + 48.1375068, + 11.4783382 + ], + [ + 48.1373364, + 11.4787516 + ], + [ + 48.1371939, + 11.4792192 + ], + [ + 48.1370341, + 11.479798 + ], + [ + 48.1369248, + 11.4801804 + ], + [ + 48.1368536, + 11.4805048 + ], + [ + 48.1367877, + 11.4807777 + ] + ] + }, + { + "osmId": "418532404", + "name": null, + "lengthMeters": 180.9686454363466, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5428236, + 10.1062645 + ], + [ + 53.5429341, + 10.1059892 + ], + [ + 53.5429999, + 10.1058434 + ], + [ + 53.543194, + 10.105458 + ], + [ + 53.5433963, + 10.1051108 + ], + [ + 53.5437529, + 10.1045633 + ], + [ + 53.5439329, + 10.1042727 + ] + ] + }, + { + "osmId": "418532405", + "name": null, + "lengthMeters": 307.1857533256664, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5422072, + 10.1078878 + ], + [ + 53.5420982, + 10.1082119 + ], + [ + 53.5419308, + 10.1087449 + ], + [ + 53.5418528, + 10.1090047 + ], + [ + 53.541715, + 10.1095066 + ], + [ + 53.5415892, + 10.1099485 + ], + [ + 53.541055, + 10.1118575 + ], + [ + 53.5409948, + 10.1120636 + ] + ] + }, + { + "osmId": "419247006", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 112.78033909650526, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4655317, + 9.9630682 + ], + [ + 53.4659417, + 9.9621228 + ], + [ + 53.4661359, + 9.9616999 + ] + ] + }, + { + "osmId": "419258383", + "name": null, + "lengthMeters": 254.50127702806495, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5448988, + 10.0250797 + ], + [ + 53.5452211, + 10.0248292 + ], + [ + 53.5453647, + 10.0247176 + ], + [ + 53.5455581, + 10.0245672 + ], + [ + 53.5466227, + 10.0237395 + ], + [ + 53.5469766, + 10.0234643 + ] + ] + }, + { + "osmId": "419258384", + "name": null, + "lengthMeters": 142.26727106705448, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5466785, + 10.0234963 + ], + [ + 53.5465798, + 10.0235734 + ], + [ + 53.546061, + 10.0239803 + ], + [ + 53.5458012, + 10.0241865 + ], + [ + 53.545539, + 10.0244062 + ], + [ + 53.5455225, + 10.0244188 + ] + ] + }, + { + "osmId": "420899174", + "name": "Lehrter Bahn", + "lengthMeters": 81.45276259105052, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5372251, + 13.1486199 + ], + [ + 52.5371508, + 13.1497522 + ], + [ + 52.5371487, + 13.1497847 + ], + [ + 52.5371467, + 13.1498173 + ] + ] + }, + { + "osmId": "420900194", + "name": null, + "lengthMeters": 145.57257699096414, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5303283, + 13.2191644 + ], + [ + 52.5302949, + 13.2194171 + ], + [ + 52.5302852, + 13.2195036 + ], + [ + 52.5300594, + 13.2212705 + ] + ] + }, + { + "osmId": "421021565", + "name": "Berliner Stadtbahn", + "lengthMeters": 106.49900146380057, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205228, + 13.3861286 + ], + [ + 52.5206194, + 13.385766 + ], + [ + 52.5208119, + 13.385043 + ], + [ + 52.5208531, + 13.3848914 + ], + [ + 52.5208749, + 13.3848107 + ], + [ + 52.5209072, + 13.3846869 + ] + ] + }, + { + "osmId": "421230283", + "name": null, + "lengthMeters": 185.36932871018465, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306023, + 13.3646967 + ], + [ + 52.5319998, + 13.3632026 + ] + ] + }, + { + "osmId": "421230286", + "name": null, + "lengthMeters": 215.04268974447322, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5308016, + 13.3644136 + ], + [ + 52.5301067, + 13.3651553 + ], + [ + 52.5291964, + 13.3661241 + ], + [ + 52.5291785, + 13.366142 + ] + ] + }, + { + "osmId": "421230287", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 142.93779527247818, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5358869, + 13.1894244 + ], + [ + 52.5360081, + 13.188677 + ], + [ + 52.5362181, + 13.1873824 + ] + ] + }, + { + "osmId": "421618229", + "name": null, + "lengthMeters": 488.21754479491796, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5206367, + 13.3728474 + ], + [ + 52.5209757, + 13.372666 + ], + [ + 52.5211389, + 13.3725641 + ], + [ + 52.5212966, + 13.3724513 + ], + [ + 52.5214712, + 13.3723165 + ], + [ + 52.5216054, + 13.3722131 + ], + [ + 52.5217433, + 13.3721209 + ], + [ + 52.521879, + 13.3720384 + ], + [ + 52.5220185, + 13.3719613 + ], + [ + 52.5222964, + 13.3718191 + ], + [ + 52.5224466, + 13.3717485 + ], + [ + 52.5225585, + 13.3716959 + ], + [ + 52.5227109, + 13.3716213 + ], + [ + 52.5228668, + 13.3715509 + ], + [ + 52.5230212, + 13.3714939 + ], + [ + 52.5231764, + 13.3714423 + ], + [ + 52.5234363, + 13.3713551 + ], + [ + 52.5236712, + 13.3712555 + ], + [ + 52.524229, + 13.3709832 + ], + [ + 52.5245349, + 13.3708167 + ], + [ + 52.524799, + 13.370609 + ] + ] + }, + { + "osmId": "421618232", + "name": null, + "lengthMeters": 104.08219792212668, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205913, + 13.3726096 + ], + [ + 52.5201499, + 13.3728265 + ], + [ + 52.5196945, + 13.3730503 + ] + ] + }, + { + "osmId": "421618233", + "name": null, + "lengthMeters": 83.56785427158034, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5258337, + 13.3696001 + ], + [ + 52.5252979, + 13.3699753 + ], + [ + 52.5251423, + 13.3700843 + ] + ] + }, + { + "osmId": "421618235", + "name": null, + "lengthMeters": 104.74090856723842, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197345, + 13.3732924 + ], + [ + 52.5201897, + 13.3730685 + ], + [ + 52.5206367, + 13.3728474 + ] + ] + }, + { + "osmId": "421618236", + "name": null, + "lengthMeters": 132.5540170913972, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165117, + 13.3805523 + ], + [ + 52.5165253, + 13.3808655 + ], + [ + 52.5165428, + 13.3811753 + ], + [ + 52.516576, + 13.3816943 + ], + [ + 52.5166034, + 13.3821052 + ], + [ + 52.5166048, + 13.382125 + ], + [ + 52.5166311, + 13.3825012 + ] + ] + }, + { + "osmId": "421618237", + "name": null, + "lengthMeters": 485.55858131359264, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5247387, + 13.3703803 + ], + [ + 52.5245939, + 13.3704677 + ], + [ + 52.5242696, + 13.3706799 + ], + [ + 52.5239805, + 13.3708822 + ], + [ + 52.5236455, + 13.3710911 + ], + [ + 52.5234012, + 13.371217 + ], + [ + 52.5231611, + 13.3713346 + ], + [ + 52.52301, + 13.3714097 + ], + [ + 52.522859, + 13.3714845 + ], + [ + 52.5225563, + 13.3716359 + ], + [ + 52.5217293, + 13.3720451 + ], + [ + 52.5214504, + 13.3721836 + ], + [ + 52.5212631, + 13.3722772 + ], + [ + 52.5205913, + 13.3726096 + ] + ] + }, + { + "osmId": "422692534", + "name": "Berliner Stadtbahn", + "lengthMeters": 164.2839494880746, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5116777, + 13.3352388 + ], + [ + 52.5116257, + 13.3352113 + ], + [ + 52.5112222, + 13.3350035 + ], + [ + 52.5102665, + 13.3345201 + ] + ] + }, + { + "osmId": "422692535", + "name": "Berliner Stadtbahn", + "lengthMeters": 82.05239622264942, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121803, + 13.4248135 + ], + [ + 52.5121344, + 13.4250486 + ], + [ + 52.5121035, + 13.4252581 + ], + [ + 52.5120688, + 13.4255221 + ], + [ + 52.5120498, + 13.4257982 + ], + [ + 52.5120414, + 13.4259476 + ], + [ + 52.512039, + 13.4259921 + ], + [ + 52.5120378, + 13.4259992 + ] + ] + }, + { + "osmId": "422692536", + "name": "Berliner Stadtbahn", + "lengthMeters": 128.57889710668383, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5106991, + 13.334801 + ], + [ + 52.5108557, + 13.3348843 + ], + [ + 52.5112111, + 13.335062 + ], + [ + 52.5118036, + 13.3353634 + ] + ] + }, + { + "osmId": "422692537", + "name": "Berliner Stadtbahn", + "lengthMeters": 156.34866492972844, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5132538, + 13.3359025 + ], + [ + 52.5129651, + 13.3357797 + ], + [ + 52.5126919, + 13.3356419 + ], + [ + 52.5123892, + 13.3354869 + ], + [ + 52.5119077, + 13.3352366 + ] + ] + }, + { + "osmId": "424742003", + "name": null, + "lengthMeters": 121.6862027671489, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5571789, + 9.9771416 + ], + [ + 53.5570653, + 9.9772343 + ], + [ + 53.5568173, + 9.9774587 + ], + [ + 53.5566741, + 9.9776092 + ], + [ + 53.5565065, + 9.9778136 + ], + [ + 53.5562723, + 9.9781575 + ] + ] + }, + { + "osmId": "426168561", + "name": null, + "lengthMeters": 127.31980944006034, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5814222, + 9.9475117 + ], + [ + 53.5819809, + 9.9477063 + ], + [ + 53.5825435, + 9.9479022 + ] + ] + }, + { + "osmId": "426168562", + "name": null, + "lengthMeters": 490.49194085597776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.555753, + 9.9799053 + ], + [ + 53.5558353, + 9.9795641 + ], + [ + 53.5559518, + 9.9791978 + ], + [ + 53.5560319, + 9.9789823 + ], + [ + 53.556112, + 9.9788044 + ], + [ + 53.5562408, + 9.9785247 + ], + [ + 53.5563345, + 9.9783514 + ], + [ + 53.5564347, + 9.9781893 + ], + [ + 53.5565403, + 9.9780204 + ], + [ + 53.5566573, + 9.9778678 + ], + [ + 53.5567606, + 9.9777447 + ], + [ + 53.5568811, + 9.9776138 + ], + [ + 53.5569859, + 9.9775202 + ], + [ + 53.557109, + 9.9774178 + ], + [ + 53.557217, + 9.9773307 + ], + [ + 53.5580847, + 9.9768295 + ], + [ + 53.5585204, + 9.9765803 + ], + [ + 53.5588895, + 9.9763681 + ], + [ + 53.5589721, + 9.9763223 + ], + [ + 53.5593316, + 9.9761168 + ] + ] + }, + { + "osmId": "426168564", + "name": null, + "lengthMeters": 88.65846040041461, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5695171, + 9.9613967 + ], + [ + 53.5694813, + 9.9611193 + ], + [ + 53.5694631, + 9.960951 + ], + [ + 53.5694493, + 9.9607953 + ], + [ + 53.5694364, + 9.9606071 + ], + [ + 53.5694307, + 9.9604957 + ], + [ + 53.5694263, + 9.9603935 + ], + [ + 53.5694243, + 9.9602874 + ], + [ + 53.5694244, + 9.9602115 + ], + [ + 53.5694255, + 9.9601517 + ], + [ + 53.5694286, + 9.9600672 + ] + ] + }, + { + "osmId": "426168565", + "name": null, + "lengthMeters": 169.65414931665072, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5695378, + 9.9639471 + ], + [ + 53.5695565, + 9.9636226 + ], + [ + 53.5695788, + 9.9632501 + ], + [ + 53.5695965, + 9.9629707 + ], + [ + 53.5696026, + 9.9628294 + ], + [ + 53.5696069, + 9.9626818 + ], + [ + 53.5696096, + 9.9625285 + ], + [ + 53.5696073, + 9.9623402 + ], + [ + 53.5696008, + 9.9621903 + ], + [ + 53.5695906, + 9.9620448 + ], + [ + 53.5695738, + 9.9618746 + ], + [ + 53.5695474, + 9.9616498 + ], + [ + 53.5695171, + 9.9613967 + ] + ] + }, + { + "osmId": "426435450", + "name": null, + "lengthMeters": 101.49982938573258, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4257252, + 13.1893257 + ], + [ + 52.4254803, + 13.1888223 + ], + [ + 52.4253191, + 13.1884811 + ], + [ + 52.4251645, + 13.1881446 + ] + ] + }, + { + "osmId": "426435451", + "name": null, + "lengthMeters": 101.49130814055151, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4251254, + 13.1881957 + ], + [ + 52.4252189, + 13.1883962 + ], + [ + 52.4253693, + 13.1887118 + ], + [ + 52.4254467, + 13.1888761 + ], + [ + 52.4256902, + 13.1893714 + ] + ] + }, + { + "osmId": "426435452", + "name": null, + "lengthMeters": 372.61258695377245, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4193952, + 13.1765811 + ], + [ + 52.4191925, + 13.1761882 + ], + [ + 52.4190506, + 13.1759037 + ], + [ + 52.4189898, + 13.1757819 + ], + [ + 52.4187112, + 13.1752122 + ], + [ + 52.4185368, + 13.1748581 + ], + [ + 52.4183673, + 13.1745105 + ], + [ + 52.4178237, + 13.1734034 + ], + [ + 52.4172873, + 13.1723101 + ] + ] + }, + { + "osmId": "426530257", + "name": null, + "lengthMeters": 140.3197520247142, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5694286, + 9.9600672 + ], + [ + 53.5694424, + 9.9598827 + ], + [ + 53.5694586, + 9.95974 + ], + [ + 53.5694923, + 9.9595586 + ], + [ + 53.5695252, + 9.9594081 + ], + [ + 53.5695637, + 9.9592746 + ], + [ + 53.569609, + 9.9591203 + ], + [ + 53.5696746, + 9.9589303 + ], + [ + 53.5697414, + 9.9587499 + ], + [ + 53.5697942, + 9.958607 + ], + [ + 53.5698929, + 9.9583418 + ], + [ + 53.5699507, + 9.9581567 + ] + ] + }, + { + "osmId": "427231835", + "name": null, + "lengthMeters": 201.06474549609862, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243806, + 13.4629574 + ], + [ + 52.5246758, + 13.4619619 + ], + [ + 52.5248267, + 13.4614678 + ], + [ + 52.5249799, + 13.4609755 + ], + [ + 52.525197, + 13.4603059 + ] + ] + }, + { + "osmId": "427231836", + "name": null, + "lengthMeters": 238.5342905753339, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5268994, + 13.4574599 + ], + [ + 52.5269374, + 13.4574234 + ], + [ + 52.5274654, + 13.4569282 + ], + [ + 52.5279813, + 13.4564448 + ], + [ + 52.5282204, + 13.4562217 + ], + [ + 52.5286746, + 13.4557365 + ], + [ + 52.5287504, + 13.4556817 + ] + ] + }, + { + "osmId": "427231837", + "name": null, + "lengthMeters": 110.32752013231817, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495347, + 13.4133628 + ], + [ + 52.5495408, + 13.4131749 + ], + [ + 52.5495463, + 13.4129361 + ], + [ + 52.5495561, + 13.4126952 + ], + [ + 52.5495672, + 13.4123858 + ], + [ + 52.5496059, + 13.4117457 + ], + [ + 52.5496064, + 13.4117358 + ] + ] + }, + { + "osmId": "427231838", + "name": null, + "lengthMeters": 257.48047868209267, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5212078, + 13.4705109 + ], + [ + 52.5212629, + 13.4704739 + ], + [ + 52.521416, + 13.4703645 + ], + [ + 52.5215646, + 13.47024 + ], + [ + 52.5217131, + 13.4701063 + ], + [ + 52.5218573, + 13.4699578 + ], + [ + 52.5220015, + 13.4698039 + ], + [ + 52.5221513, + 13.469609 + ], + [ + 52.5222966, + 13.4694032 + ], + [ + 52.5224197, + 13.4692156 + ], + [ + 52.5225317, + 13.4690317 + ], + [ + 52.5226192, + 13.4688705 + ], + [ + 52.5227033, + 13.4687019 + ], + [ + 52.5228193, + 13.4684466 + ], + [ + 52.5228868, + 13.4682841 + ], + [ + 52.5229491, + 13.4681211 + ], + [ + 52.5229525, + 13.468111 + ] + ] + }, + { + "osmId": "427231839", + "name": null, + "lengthMeters": 120.27738428159336, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5398623, + 13.4400034 + ], + [ + 52.5402953, + 13.4390478 + ], + [ + 52.540408, + 13.4388028 + ], + [ + 52.5405044, + 13.4385724 + ] + ] + }, + { + "osmId": "427231840", + "name": null, + "lengthMeters": 742.0883806069284, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5302548, + 13.4541039 + ], + [ + 52.5303323, + 13.454022 + ], + [ + 52.5304194, + 13.4539257 + ], + [ + 52.5304315, + 13.4539118 + ], + [ + 52.5305287, + 13.4537975 + ], + [ + 52.5308601, + 13.4533937 + ], + [ + 52.5310282, + 13.4531975 + ], + [ + 52.5312964, + 13.4529071 + ], + [ + 52.5315965, + 13.4526046 + ], + [ + 52.5328805, + 13.4513207 + ], + [ + 52.5336502, + 13.4505519 + ], + [ + 52.5354685, + 13.4487351 + ], + [ + 52.5359128, + 13.4482934 + ] + ] + }, + { + "osmId": "427323912", + "name": null, + "lengthMeters": 125.08807917895118, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5534722, + 13.3987833 + ], + [ + 52.554451, + 13.3985436 + ], + [ + 52.5545852, + 13.3985146 + ] + ] + }, + { + "osmId": "427323913", + "name": null, + "lengthMeters": 576.5751276981277, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4797393, + 13.368264 + ], + [ + 52.4800654, + 13.3684254 + ], + [ + 52.4802387, + 13.3685129 + ], + [ + 52.4806146, + 13.3687185 + ], + [ + 52.4810019, + 13.3689462 + ], + [ + 52.4812495, + 13.3690941 + ], + [ + 52.4822107, + 13.369668 + ], + [ + 52.4823142, + 13.3697265 + ], + [ + 52.4830589, + 13.3701636 + ], + [ + 52.4837149, + 13.3705618 + ], + [ + 52.4846187, + 13.3711394 + ] + ] + }, + { + "osmId": "427323949", + "name": "Stettiner Bahn", + "lengthMeters": 126.98940776795526, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5511115, + 13.3988841 + ], + [ + 52.551004, + 13.3988355 + ], + [ + 52.5508142, + 13.3987261 + ], + [ + 52.5506713, + 13.3986325 + ], + [ + 52.5505124, + 13.39851 + ], + [ + 52.5503007, + 13.398312 + ], + [ + 52.5500897, + 13.3980719 + ] + ] + }, + { + "osmId": "427539171", + "name": null, + "lengthMeters": 301.60600646852726, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5331028, + 13.3209557 + ], + [ + 52.5331941, + 13.3216664 + ], + [ + 52.5334163, + 13.3233174 + ], + [ + 52.5336793, + 13.3253128 + ] + ] + }, + { + "osmId": "427539172", + "name": "Berliner Ringbahn", + "lengthMeters": 115.88483380074602, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5335834, + 13.3252726 + ], + [ + 52.5333766, + 13.3235934 + ] + ] + }, + { + "osmId": "427539173", + "name": "Berliner Ringbahn", + "lengthMeters": 86.0084216899171, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5333766, + 13.3235934 + ], + [ + 52.5333553, + 13.3234176 + ], + [ + 52.5332253, + 13.3223464 + ] + ] + }, + { + "osmId": "427539174", + "name": "Berliner Ringbahn", + "lengthMeters": 129.67449692660793, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334945, + 13.3249077 + ], + [ + 52.5336519, + 13.3261163 + ], + [ + 52.5337391, + 13.3267822 + ] + ] + }, + { + "osmId": "427556362", + "name": null, + "lengthMeters": 159.5602806176721, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0983522, + 11.5155718 + ], + [ + 48.0982729, + 11.5148715 + ], + [ + 48.0982179, + 11.5143103 + ], + [ + 48.0981621, + 11.5137425 + ], + [ + 48.0981331, + 11.5134485 + ] + ] + }, + { + "osmId": "427556363", + "name": null, + "lengthMeters": 159.4634035837408, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.0981042, + 11.5134559 + ], + [ + 48.0981339, + 11.5137509 + ], + [ + 48.0981897, + 11.514311 + ], + [ + 48.0982455, + 11.5148755 + ], + [ + 48.0983222, + 11.5155782 + ] + ] + }, + { + "osmId": "427700958", + "name": null, + "lengthMeters": 322.9257418213528, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5569244, + 10.0198726 + ], + [ + 53.5576053, + 10.0214184 + ], + [ + 53.5577821, + 10.0218551 + ], + [ + 53.5578827, + 10.0221022 + ], + [ + 53.5580055, + 10.0224594 + ], + [ + 53.5581156, + 10.0228176 + ], + [ + 53.5582459, + 10.0232775 + ], + [ + 53.558374, + 10.0237641 + ], + [ + 53.5584435, + 10.0240171 + ] + ] + }, + { + "osmId": "429934880", + "name": null, + "lengthMeters": 180.38337501217052, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.141715, + 11.5293091 + ], + [ + 48.1416567, + 11.5291496 + ], + [ + 48.1415568, + 11.5289133 + ], + [ + 48.141457, + 11.5286971 + ], + [ + 48.1413404, + 11.528462 + ], + [ + 48.141208, + 11.5282261 + ], + [ + 48.14111, + 11.5280747 + ], + [ + 48.1410371, + 11.5279704 + ], + [ + 48.1409275, + 11.5278094 + ], + [ + 48.1407975, + 11.5276441 + ], + [ + 48.1406661, + 11.5274775 + ] + ] + }, + { + "osmId": "430112187", + "name": "Fernbahn", + "lengthMeters": 500.94754537423, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1422898, + 11.5418995 + ], + [ + 48.1422899, + 11.5418984 + ], + [ + 48.1423488, + 11.5411119 + ], + [ + 48.1423623, + 11.5408916 + ], + [ + 48.1423786, + 11.540638 + ], + [ + 48.1424089, + 11.5400789 + ], + [ + 48.1424378, + 11.5395127 + ], + [ + 48.1424783, + 11.5386326 + ], + [ + 48.142504, + 11.538016 + ], + [ + 48.1425113, + 11.5377836 + ], + [ + 48.1425134, + 11.5375642 + ], + [ + 48.1425082, + 11.5372217 + ], + [ + 48.1424911, + 11.5365109 + ], + [ + 48.1424841, + 11.535912 + ], + [ + 48.1424856, + 11.53572 + ], + [ + 48.1424901, + 11.5355055 + ], + [ + 48.1425024, + 11.5351634 + ] + ] + }, + { + "osmId": "430112188", + "name": "Fernbahn", + "lengthMeters": 1431.7287333046565, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1425024, + 11.5351634 + ], + [ + 48.1425027, + 11.5351555 + ], + [ + 48.1425109, + 11.5349652 + ], + [ + 48.1425684, + 11.5332456 + ], + [ + 48.1425778, + 11.5328491 + ], + [ + 48.1426152, + 11.5315712 + ], + [ + 48.1426308, + 11.5309761 + ], + [ + 48.1426532, + 11.5304041 + ], + [ + 48.1426814, + 11.5298874 + ], + [ + 48.142707, + 11.5294932 + ], + [ + 48.1427993, + 11.5282487 + ], + [ + 48.1428311, + 11.5278077 + ], + [ + 48.1428321, + 11.5277938 + ], + [ + 48.1428883, + 11.5270129 + ], + [ + 48.1432319, + 11.5223755 + ], + [ + 48.1432883, + 11.5216378 + ], + [ + 48.1432893, + 11.5216203 + ], + [ + 48.1433388, + 11.5209815 + ], + [ + 48.1433757, + 11.5204821 + ], + [ + 48.1434221, + 11.5198108 + ], + [ + 48.1434662, + 11.5190888 + ], + [ + 48.1434962, + 11.5184704 + ], + [ + 48.1435042, + 11.5181257 + ], + [ + 48.1435069, + 11.5179433 + ], + [ + 48.1435073, + 11.517771 + ], + [ + 48.1435064, + 11.5174451 + ], + [ + 48.1435, + 11.5171011 + ], + [ + 48.1434883, + 11.5167672 + ], + [ + 48.1434514, + 11.5159428 + ] + ] + }, + { + "osmId": "430112189", + "name": null, + "lengthMeters": 95.4230231073108, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434688, + 11.5144508 + ], + [ + 48.1434529, + 11.5140945 + ], + [ + 48.143442, + 11.5137338 + ], + [ + 48.1434344, + 11.513166 + ] + ] + }, + { + "osmId": "430112190", + "name": null, + "lengthMeters": 147.5766981712223, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1458098, + 11.4892594 + ], + [ + 48.145758, + 11.4884814 + ], + [ + 48.1457545, + 11.4880665 + ], + [ + 48.1457616, + 11.4877509 + ], + [ + 48.1457709, + 11.4875178 + ], + [ + 48.1457855, + 11.4872758 + ] + ] + }, + { + "osmId": "430112191", + "name": null, + "lengthMeters": 265.8441889027988, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1427415, + 11.5388547 + ], + [ + 48.1427519, + 11.5386573 + ], + [ + 48.1427532, + 11.5386323 + ], + [ + 48.1427811, + 11.5381482 + ], + [ + 48.1427862, + 11.5380137 + ], + [ + 48.1427881, + 11.537973 + ], + [ + 48.142801, + 11.5376343 + ], + [ + 48.1428121, + 11.5372111 + ], + [ + 48.1428126, + 11.5367896 + ], + [ + 48.142813, + 11.5365181 + ], + [ + 48.1428004, + 11.5358435 + ], + [ + 48.1427998, + 11.5358129 + ], + [ + 48.1427873, + 11.5354659 + ], + [ + 48.1427846, + 11.5352763 + ] + ] + }, + { + "osmId": "430112196", + "name": null, + "lengthMeters": 97.19256407964133, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420418, + 11.5484072 + ], + [ + 48.1420591, + 11.5481705 + ], + [ + 48.1421071, + 11.5475083 + ], + [ + 48.1421307, + 11.5471825 + ], + [ + 48.1421364, + 11.547105 + ] + ] + }, + { + "osmId": "430112197", + "name": null, + "lengthMeters": 96.59958044057159, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418661, + 11.5509941 + ], + [ + 48.1418883, + 11.5512487 + ], + [ + 48.1419179, + 11.5515361 + ], + [ + 48.1419464, + 11.551763 + ], + [ + 48.1419812, + 11.5520009 + ], + [ + 48.1420247, + 11.5522731 + ] + ] + }, + { + "osmId": "430112198", + "name": null, + "lengthMeters": 294.4750264434016, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1438774, + 11.5075084 + ], + [ + 48.143868, + 11.5075897 + ], + [ + 48.1436345, + 11.5097833 + ], + [ + 48.1436053, + 11.5100472 + ], + [ + 48.1435192, + 11.5109209 + ], + [ + 48.1435021, + 11.5111194 + ], + [ + 48.1434753, + 11.511431 + ] + ] + }, + { + "osmId": "430112199", + "name": null, + "lengthMeters": 467.814593225927, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1421364, + 11.547105 + ], + [ + 48.1421466, + 11.5469638 + ], + [ + 48.1422952, + 11.5449826 + ], + [ + 48.1423138, + 11.5447227 + ], + [ + 48.1423234, + 11.5445948 + ], + [ + 48.1423581, + 11.5441362 + ], + [ + 48.1423612, + 11.5440938 + ], + [ + 48.142429, + 11.5431747 + ], + [ + 48.1425357, + 11.5417385 + ], + [ + 48.1426025, + 11.5408389 + ] + ] + }, + { + "osmId": "430112200", + "name": null, + "lengthMeters": 75.26729080006689, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418341, + 11.5499815 + ], + [ + 48.1418324, + 11.5500677 + ], + [ + 48.141834, + 11.5502387 + ], + [ + 48.141841, + 11.5505217 + ], + [ + 48.1418505, + 11.5507446 + ], + [ + 48.1418661, + 11.5509941 + ] + ] + }, + { + "osmId": "430112201", + "name": null, + "lengthMeters": 95.04332724304876, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420669, + 11.5522563 + ], + [ + 48.1420233, + 11.5519918 + ], + [ + 48.1419849, + 11.5517031 + ], + [ + 48.1419607, + 11.5514807 + ], + [ + 48.1419412, + 11.5512547 + ], + [ + 48.141924, + 11.5509951 + ] + ] + }, + { + "osmId": "430112202", + "name": null, + "lengthMeters": 209.37974241535653, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420094, + 11.5471733 + ], + [ + 48.1420024, + 11.5472746 + ], + [ + 48.1419688, + 11.5477395 + ], + [ + 48.1419443, + 11.5480467 + ], + [ + 48.1419197, + 11.5483897 + ], + [ + 48.1419058, + 11.5485744 + ], + [ + 48.1418892, + 11.5487917 + ], + [ + 48.1418622, + 11.5491461 + ], + [ + 48.1418552, + 11.5492719 + ], + [ + 48.1418441, + 11.549493 + ], + [ + 48.1418375, + 11.5496928 + ], + [ + 48.1418347, + 11.5499319 + ], + [ + 48.1418341, + 11.5499815 + ] + ] + }, + { + "osmId": "430112203", + "name": null, + "lengthMeters": 255.1464916965975, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1448953, + 11.4985052 + ], + [ + 48.1449688, + 11.4979723 + ], + [ + 48.1450378, + 11.4975348 + ], + [ + 48.1451356, + 11.4969587 + ], + [ + 48.1452663, + 11.4963677 + ], + [ + 48.1455602, + 11.4952213 + ] + ] + }, + { + "osmId": "430150571", + "name": null, + "lengthMeters": 109.87040612556392, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1278335, + 11.6050371 + ], + [ + 48.1275002, + 11.6045369 + ], + [ + 48.1271691, + 11.6040617 + ], + [ + 48.1271555, + 11.6040434 + ], + [ + 48.1271261, + 11.6040038 + ] + ] + }, + { + "osmId": "430150572", + "name": null, + "lengthMeters": 137.11284816935395, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1261335, + 11.6026338 + ], + [ + 48.1264248, + 11.6031499 + ], + [ + 48.1266506, + 11.6035398 + ], + [ + 48.1269456, + 11.6040236 + ] + ] + }, + { + "osmId": "430150574", + "name": null, + "lengthMeters": 107.8426383207404, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1277586, + 11.6051517 + ], + [ + 48.1270858, + 11.6041361 + ], + [ + 48.1270754, + 11.6041204 + ] + ] + }, + { + "osmId": "430150575", + "name": "Stammstrecke", + "lengthMeters": 87.61990928388201, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1259548, + 11.6019753 + ], + [ + 48.1259124, + 11.6018308 + ], + [ + 48.125869, + 11.6016866 + ], + [ + 48.1258115, + 11.6014442 + ], + [ + 48.1257801, + 11.6012886 + ], + [ + 48.1257471, + 11.6010845 + ], + [ + 48.1257195, + 11.6008535 + ] + ] + }, + { + "osmId": "430172361", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 309.8155847574635, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2476513, + 11.552293 + ], + [ + 48.2484713, + 11.5526738 + ], + [ + 48.2489271, + 11.5528854 + ], + [ + 48.2489578, + 11.5528995 + ], + [ + 48.249223, + 11.5530215 + ], + [ + 48.2498503, + 11.55331 + ], + [ + 48.2503134, + 11.553528 + ] + ] + }, + { + "osmId": "431587096", + "name": null, + "lengthMeters": 135.47383068878176, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.150774, + 11.4469077 + ], + [ + 48.1506723, + 11.4466217 + ], + [ + 48.1505395, + 11.4462953 + ], + [ + 48.1502895, + 11.4457534 + ], + [ + 48.1501785, + 11.4455348 + ], + [ + 48.1501005, + 11.4453899 + ] + ] + }, + { + "osmId": "431587106", + "name": null, + "lengthMeters": 145.10287181268308, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1514144, + 11.457985 + ], + [ + 48.1512026, + 11.4586811 + ], + [ + 48.1509333, + 11.4595825 + ], + [ + 48.1508749, + 11.4597659 + ] + ] + }, + { + "osmId": "431622436", + "name": null, + "lengthMeters": 183.0194469455244, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536223, + 10.0235432 + ], + [ + 53.5535781, + 10.023364 + ], + [ + 53.5534855, + 10.0229632 + ], + [ + 53.5534029, + 10.0224844 + ], + [ + 53.553303, + 10.0218884 + ], + [ + 53.5532415, + 10.021587 + ], + [ + 53.553181, + 10.0212253 + ], + [ + 53.5531243, + 10.020905 + ] + ] + }, + { + "osmId": "431786563", + "name": null, + "lengthMeters": 1601.1775335066804, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.446211, + 13.5247193 + ], + [ + 52.4459356, + 13.5251987 + ], + [ + 52.445343, + 13.5261148 + ], + [ + 52.4445847, + 13.5272166 + ], + [ + 52.4435366, + 13.528761 + ], + [ + 52.4425646, + 13.530189 + ], + [ + 52.4417491, + 13.5313861 + ], + [ + 52.4417348, + 13.5314071 + ], + [ + 52.4413726, + 13.5319388 + ], + [ + 52.44026, + 13.5335604 + ], + [ + 52.4392203, + 13.5351045 + ], + [ + 52.4382312, + 13.5365541 + ], + [ + 52.4379921, + 13.5368992 + ], + [ + 52.4378201, + 13.5371504 + ], + [ + 52.4377429, + 13.5372618 + ], + [ + 52.4368949, + 13.5384215 + ], + [ + 52.4364675, + 13.538982 + ], + [ + 52.4361234, + 13.5394333 + ], + [ + 52.4354447, + 13.5403963 + ] + ] + }, + { + "osmId": "431786577", + "name": null, + "lengthMeters": 1606.4568854469512, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4355099, + 13.5405226 + ], + [ + 52.4355557, + 13.5404478 + ], + [ + 52.4358572, + 13.5399552 + ], + [ + 52.4361466, + 13.5395169 + ], + [ + 52.4364995, + 13.539033 + ], + [ + 52.4366939, + 13.5387666 + ], + [ + 52.4369237, + 13.5384645 + ], + [ + 52.4375383, + 13.5376327 + ], + [ + 52.4381001, + 13.5368196 + ], + [ + 52.4392483, + 13.5351462 + ], + [ + 52.4402853, + 13.5336112 + ], + [ + 52.4414016, + 13.5319836 + ], + [ + 52.4417755, + 13.5314322 + ], + [ + 52.4419147, + 13.5312267 + ], + [ + 52.4425945, + 13.530224 + ], + [ + 52.4435571, + 13.5287992 + ], + [ + 52.4437791, + 13.5284835 + ], + [ + 52.4443821, + 13.5275965 + ], + [ + 52.4445911, + 13.5272883 + ], + [ + 52.4447248, + 13.5270945 + ], + [ + 52.445045, + 13.5266239 + ], + [ + 52.4453681, + 13.5261521 + ], + [ + 52.4457107, + 13.5256446 + ], + [ + 52.4459714, + 13.525254 + ], + [ + 52.4463002, + 13.5247685 + ] + ] + }, + { + "osmId": "432785722", + "name": null, + "lengthMeters": 452.1098040389338, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5049725, + 13.4587629 + ], + [ + 52.5048241, + 13.459629 + ], + [ + 52.504765, + 13.4599739 + ], + [ + 52.5046153, + 13.4608152 + ], + [ + 52.5044229, + 13.4619032 + ], + [ + 52.5043905, + 13.4620865 + ], + [ + 52.5043267, + 13.462448 + ], + [ + 52.5042171, + 13.4631211 + ], + [ + 52.504161, + 13.4634657 + ], + [ + 52.5040213, + 13.4643517 + ], + [ + 52.5038856, + 13.465199 + ] + ] + }, + { + "osmId": "432908692", + "name": null, + "lengthMeters": 178.86620265815952, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4939967, + 13.3733915 + ], + [ + 52.4942392, + 13.3734535 + ], + [ + 52.4947594, + 13.3736715 + ], + [ + 52.4955489, + 13.374072 + ] + ] + }, + { + "osmId": "432908693", + "name": null, + "lengthMeters": 134.33617663777443, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4944164, + 13.3734301 + ], + [ + 52.4946092, + 13.3735217 + ], + [ + 52.4949304, + 13.3736709 + ], + [ + 52.4955768, + 13.3739822 + ] + ] + }, + { + "osmId": "433258174", + "name": null, + "lengthMeters": 231.05975391183077, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5341738, + 10.0794068 + ], + [ + 53.5343822, + 10.0796721 + ], + [ + 53.5345489, + 10.0799389 + ], + [ + 53.5346994, + 10.0802076 + ], + [ + 53.5348502, + 10.0805561 + ], + [ + 53.53497, + 10.0808933 + ], + [ + 53.5350702, + 10.0812305 + ], + [ + 53.5350991, + 10.0813535 + ], + [ + 53.5351375, + 10.0815278 + ], + [ + 53.5351935, + 10.0818679 + ], + [ + 53.5352523, + 10.0822846 + ] + ] + }, + { + "osmId": "434362588", + "name": "U3", + "lengthMeters": 797.5890189610636, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4663696, + 13.3076019 + ], + [ + 52.4661934, + 13.3072403 + ], + [ + 52.4660004, + 13.3067252 + ], + [ + 52.4658477, + 13.3061501 + ], + [ + 52.4657784, + 13.3057318 + ], + [ + 52.4657718, + 13.3056319 + ], + [ + 52.4655627, + 13.303153 + ], + [ + 52.4655475, + 13.3029732 + ], + [ + 52.4653128, + 13.3002006 + ], + [ + 52.4652954, + 13.2999961 + ], + [ + 52.4652369, + 13.2994086 + ], + [ + 52.4651587, + 13.2989043 + ], + [ + 52.4650373, + 13.2983353 + ], + [ + 52.4649961, + 13.29818 + ], + [ + 52.4647638, + 13.2974557 + ], + [ + 52.4645665, + 13.2969205 + ], + [ + 52.464418, + 13.2964582 + ] + ] + }, + { + "osmId": "434370951", + "name": "U8", + "lengthMeters": 1381.3149888753603, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4810272, + 13.4250477 + ], + [ + 52.4811824, + 13.4250029 + ], + [ + 52.4816544, + 13.4248983 + ], + [ + 52.4822262, + 13.42485 + ], + [ + 52.482841, + 13.4248224 + ], + [ + 52.4833957, + 13.4247964 + ], + [ + 52.4838956, + 13.4247534 + ], + [ + 52.4844917, + 13.4245684 + ], + [ + 52.485021, + 13.424386 + ], + [ + 52.4854023, + 13.4243068 + ], + [ + 52.4854856, + 13.4243027 + ], + [ + 52.4855615, + 13.4243113 + ], + [ + 52.4856241, + 13.4243175 + ], + [ + 52.4857082, + 13.4243335 + ], + [ + 52.4858727, + 13.4243643 + ], + [ + 52.4860355, + 13.4243894 + ], + [ + 52.4860839, + 13.4244056 + ], + [ + 52.4861313, + 13.4244231 + ], + [ + 52.4861917, + 13.4244512 + ], + [ + 52.4863219, + 13.4245161 + ], + [ + 52.4866375, + 13.4246952 + ], + [ + 52.4872075, + 13.4250455 + ], + [ + 52.4874179, + 13.4251417 + ], + [ + 52.4875099, + 13.4251882 + ], + [ + 52.4875679, + 13.4251984 + ], + [ + 52.4876544, + 13.4252258 + ], + [ + 52.4877297, + 13.4252369 + ], + [ + 52.4878012, + 13.4252306 + ], + [ + 52.4878753, + 13.4252298 + ], + [ + 52.4879776, + 13.425215 + ], + [ + 52.488174, + 13.4252018 + ], + [ + 52.488263, + 13.4251781 + ], + [ + 52.4883479, + 13.4251436 + ], + [ + 52.4883801, + 13.4251254 + ], + [ + 52.4887314, + 13.4248612 + ], + [ + 52.4892477, + 13.4244776 + ], + [ + 52.4893081, + 13.4244333 + ], + [ + 52.4894119, + 13.4243588 + ], + [ + 52.4904445, + 13.4237188 + ], + [ + 52.4907464, + 13.4235239 + ], + [ + 52.4909258, + 13.4233888 + ], + [ + 52.491107, + 13.4232583 + ], + [ + 52.4922843, + 13.4225204 + ], + [ + 52.4924569, + 13.4224379 + ], + [ + 52.4927612, + 13.4223017 + ], + [ + 52.4929822, + 13.422175 + ] + ] + }, + { + "osmId": "435864710", + "name": null, + "lengthMeters": 948.6361668718499, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4642397, + 13.3276724 + ], + [ + 52.4638916, + 13.3273563 + ], + [ + 52.4631954, + 13.3266763 + ], + [ + 52.4614271, + 13.3250187 + ], + [ + 52.4600347, + 13.3236803 + ], + [ + 52.45808, + 13.3217491 + ], + [ + 52.457477, + 13.3212636 + ], + [ + 52.4571272, + 13.3210195 + ], + [ + 52.4568134, + 13.3208049 + ] + ] + }, + { + "osmId": "435864715", + "name": null, + "lengthMeters": 928.0345688491236, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4879907, + 13.3308142 + ], + [ + 52.4874539, + 13.3308127 + ], + [ + 52.4867542, + 13.3308195 + ], + [ + 52.4845131, + 13.3309168 + ], + [ + 52.484242, + 13.3308954 + ], + [ + 52.483863, + 13.3308579 + ], + [ + 52.4833828, + 13.3306755 + ], + [ + 52.4831674, + 13.3305439 + ], + [ + 52.4811739, + 13.3290341 + ], + [ + 52.4808589, + 13.3287716 + ], + [ + 52.4806756, + 13.3286135 + ], + [ + 52.4803457, + 13.3283756 + ], + [ + 52.4799704, + 13.3283034 + ] + ] + }, + { + "osmId": "435864717", + "name": null, + "lengthMeters": 77.32945202213875, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493504, + 13.3538918 + ], + [ + 52.5488776, + 13.3547305 + ] + ] + }, + { + "osmId": "435864724", + "name": "U7", + "lengthMeters": 1134.2193296840007, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120741, + 13.3051654 + ], + [ + 52.5122181, + 13.3051528 + ], + [ + 52.5123455, + 13.3051478 + ], + [ + 52.5126832, + 13.3051829 + ], + [ + 52.5128269, + 13.3052043 + ], + [ + 52.5129706, + 13.3052332 + ], + [ + 52.5131313, + 13.3052734 + ], + [ + 52.5132896, + 13.305325 + ], + [ + 52.5133566, + 13.305351 + ], + [ + 52.5135005, + 13.3054083 + ], + [ + 52.5136909, + 13.3055025 + ], + [ + 52.5139264, + 13.30565 + ], + [ + 52.5144863, + 13.3060535 + ], + [ + 52.5146647, + 13.3061927 + ], + [ + 52.5148455, + 13.3063182 + ], + [ + 52.5150665, + 13.3064429 + ], + [ + 52.5152378, + 13.3065256 + ], + [ + 52.515394, + 13.3065908 + ], + [ + 52.5155528, + 13.3066457 + ], + [ + 52.5159244, + 13.306752 + ], + [ + 52.5161585, + 13.3067536 + ], + [ + 52.5165353, + 13.3067234 + ], + [ + 52.5171293, + 13.3066452 + ], + [ + 52.517477, + 13.3065982 + ], + [ + 52.5187665, + 13.3064702 + ], + [ + 52.5190228, + 13.3064714 + ], + [ + 52.519142, + 13.3064856 + ], + [ + 52.5192211, + 13.3064951 + ], + [ + 52.519806, + 13.3066225 + ], + [ + 52.5199325, + 13.3066542 + ], + [ + 52.5201151, + 13.3066917 + ], + [ + 52.5203645, + 13.3067254 + ], + [ + 52.5205941, + 13.3067341 + ], + [ + 52.5208098, + 13.3067279 + ], + [ + 52.5209666, + 13.3067042 + ], + [ + 52.5211472, + 13.3066595 + ], + [ + 52.5214799, + 13.3065429 + ], + [ + 52.521671, + 13.3064636 + ], + [ + 52.521878, + 13.3063633 + ], + [ + 52.5220681, + 13.3062747 + ] + ] + }, + { + "osmId": "435864725", + "name": null, + "lengthMeters": 2007.4884879646945, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5059557, + 13.3320843 + ], + [ + 52.5057154, + 13.3319336 + ], + [ + 52.505572, + 13.3318547 + ], + [ + 52.5054419, + 13.3317832 + ], + [ + 52.5052763, + 13.3317174 + ], + [ + 52.5050974, + 13.3316542 + ], + [ + 52.5046764, + 13.3315489 + ], + [ + 52.5037715, + 13.331348 + ], + [ + 52.5022206, + 13.3310966 + ], + [ + 52.5020288, + 13.3310924 + ], + [ + 52.5012491, + 13.330992 + ], + [ + 52.5000228, + 13.3308229 + ], + [ + 52.4994709, + 13.330772 + ], + [ + 52.4985859, + 13.3307157 + ], + [ + 52.4965694, + 13.3307102 + ], + [ + 52.4963668, + 13.3307478 + ], + [ + 52.4959032, + 13.3308484 + ], + [ + 52.4954647, + 13.3309087 + ], + [ + 52.4949869, + 13.3309222 + ], + [ + 52.4934143, + 13.3309598 + ], + [ + 52.4929145, + 13.3309464 + ], + [ + 52.4926795, + 13.3309047 + ], + [ + 52.4920817, + 13.3309061 + ], + [ + 52.4911643, + 13.3309189 + ], + [ + 52.4909253, + 13.3309222 + ], + [ + 52.4900974, + 13.3309625 + ], + [ + 52.4892328, + 13.3310361 + ], + [ + 52.488742, + 13.3310026 + ], + [ + 52.4879907, + 13.3308142 + ] + ] + }, + { + "osmId": "435864746", + "name": null, + "lengthMeters": 142.36728390616258, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554635, + 13.3720057 + ], + [ + 52.5563641, + 13.3726277 + ], + [ + 52.5566613, + 13.3727294 + ] + ] + }, + { + "osmId": "436121608", + "name": "U7", + "lengthMeters": 451.91611851447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969672, + 13.3891615 + ], + [ + 52.4970733, + 13.3890555 + ], + [ + 52.4971628, + 13.3889576 + ], + [ + 52.4972496, + 13.3888543 + ], + [ + 52.4973339, + 13.3887435 + ], + [ + 52.4974148, + 13.3886299 + ], + [ + 52.4974929, + 13.3885103 + ], + [ + 52.4975921, + 13.388343 + ], + [ + 52.4976745, + 13.3881857 + ], + [ + 52.497741, + 13.388048 + ], + [ + 52.4978157, + 13.387882 + ], + [ + 52.4978856, + 13.3877043 + ], + [ + 52.4979703, + 13.3874447 + ], + [ + 52.4980165, + 13.3872861 + ], + [ + 52.4980583, + 13.3871231 + ], + [ + 52.4985446, + 13.3850637 + ], + [ + 52.4986047, + 13.3847865 + ], + [ + 52.4986512, + 13.3845349 + ], + [ + 52.4986865, + 13.3843063 + ], + [ + 52.4987094, + 13.3841347 + ], + [ + 52.498743, + 13.3838074 + ], + [ + 52.4987558, + 13.3836043 + ], + [ + 52.4987642, + 13.3834089 + ] + ] + }, + { + "osmId": "436121618", + "name": "U8", + "lengthMeters": 109.34329604235342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5197789, + 13.414272 + ], + [ + 52.5200532, + 13.4138708 + ], + [ + 52.5201356, + 13.4137809 + ], + [ + 52.5202159, + 13.4137074 + ], + [ + 52.5205811, + 13.4133491 + ] + ] + }, + { + "osmId": "436121659", + "name": "U8", + "lengthMeters": 127.33920001460265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4681858, + 13.4308364 + ], + [ + 52.4677777, + 13.4310747 + ], + [ + 52.467106, + 13.4314625 + ] + ] + }, + { + "osmId": "436121669", + "name": "U8", + "lengthMeters": 3527.0515305429603, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5956732, + 13.333919 + ], + [ + 52.5956576, + 13.3335881 + ], + [ + 52.5955679, + 13.3328914 + ], + [ + 52.5953762, + 13.3322924 + ], + [ + 52.5950545, + 13.3315643 + ], + [ + 52.5941943, + 13.3296316 + ], + [ + 52.5933725, + 13.3280164 + ], + [ + 52.5927036, + 13.3271994 + ], + [ + 52.5921613, + 13.3266544 + ], + [ + 52.5919533, + 13.3265222 + ], + [ + 52.5907956, + 13.3257173 + ], + [ + 52.5905027, + 13.3255541 + ], + [ + 52.5902016, + 13.3254467 + ], + [ + 52.5898042, + 13.3253792 + ], + [ + 52.5893314, + 13.3254083 + ], + [ + 52.5889162, + 13.3254249 + ], + [ + 52.5881747, + 13.325702 + ], + [ + 52.5879234, + 13.3258231 + ], + [ + 52.5873033, + 13.3262683 + ], + [ + 52.5869821, + 13.3266601 + ], + [ + 52.5868903, + 13.3268968 + ], + [ + 52.5865262, + 13.3278661 + ], + [ + 52.5863069, + 13.3283175 + ], + [ + 52.5860581, + 13.3288027 + ], + [ + 52.5856099, + 13.3294976 + ], + [ + 52.5851112, + 13.3301564 + ], + [ + 52.5845728, + 13.3307189 + ], + [ + 52.5838859, + 13.3311165 + ], + [ + 52.5819921, + 13.3320695 + ], + [ + 52.5798974, + 13.3328378 + ], + [ + 52.578983, + 13.3332552 + ], + [ + 52.5784067, + 13.3334638 + ], + [ + 52.5777855, + 13.3336887 + ], + [ + 52.577017, + 13.3340751 + ], + [ + 52.5766801, + 13.3343781 + ], + [ + 52.5763703, + 13.3347543 + ], + [ + 52.5761117, + 13.3352955 + ], + [ + 52.5758876, + 13.3358896 + ], + [ + 52.5756915, + 13.3365378 + ], + [ + 52.5755267, + 13.3371099 + ], + [ + 52.5755077, + 13.3371941 + ], + [ + 52.5754965, + 13.3372786 + ], + [ + 52.5754087, + 13.3384242 + ], + [ + 52.5753172, + 13.3395601 + ], + [ + 52.5750993, + 13.3419457 + ], + [ + 52.5747606, + 13.3444334 + ], + [ + 52.5743888, + 13.3470476 + ], + [ + 52.5743175, + 13.3475614 + ], + [ + 52.5742719, + 13.3478894 + ] + ] + }, + { + "osmId": "436121673", + "name": "U8", + "lengthMeters": 3561.2055865597004, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5743668, + 13.3479372 + ], + [ + 52.5745525, + 13.3470669 + ], + [ + 52.5749627, + 13.3445085 + ], + [ + 52.5752814, + 13.3419456 + ], + [ + 52.5753888, + 13.3394854 + ], + [ + 52.575434, + 13.3384282 + ], + [ + 52.5755289, + 13.3372736 + ], + [ + 52.5755389, + 13.3372123 + ], + [ + 52.5755545, + 13.3371539 + ], + [ + 52.5757244, + 13.3365534 + ], + [ + 52.5759188, + 13.3359196 + ], + [ + 52.5761375, + 13.3353384 + ], + [ + 52.5763957, + 13.3347978 + ], + [ + 52.576726, + 13.3344383 + ], + [ + 52.5770811, + 13.3341561 + ], + [ + 52.5777743, + 13.3338483 + ], + [ + 52.5790887, + 13.3334367 + ], + [ + 52.5797413, + 13.333155 + ], + [ + 52.5800586, + 13.3329895 + ], + [ + 52.5820347, + 13.3322636 + ], + [ + 52.5838917, + 13.3312612 + ], + [ + 52.5845773, + 13.3308849 + ], + [ + 52.5851681, + 13.3302998 + ], + [ + 52.5856482, + 13.3296436 + ], + [ + 52.586092, + 13.3289587 + ], + [ + 52.5865889, + 13.3279668 + ], + [ + 52.5870188, + 13.3268842 + ], + [ + 52.5873324, + 13.3264713 + ], + [ + 52.5877752, + 13.3261469 + ], + [ + 52.5882755, + 13.3259105 + ], + [ + 52.5887924, + 13.3257321 + ], + [ + 52.5891843, + 13.3256015 + ], + [ + 52.5898184, + 13.3254813 + ], + [ + 52.590197, + 13.3255056 + ], + [ + 52.5904931, + 13.3256111 + ], + [ + 52.5907828, + 13.3257727 + ], + [ + 52.5919377, + 13.3265754 + ], + [ + 52.5921529, + 13.3267103 + ], + [ + 52.5926842, + 13.3272492 + ], + [ + 52.5933477, + 13.3280598 + ], + [ + 52.5941661, + 13.329668 + ], + [ + 52.5943372, + 13.3300522 + ], + [ + 52.5950254, + 13.3315992 + ], + [ + 52.5952308, + 13.3321703 + ], + [ + 52.5953527, + 13.332663 + ], + [ + 52.5954952, + 13.3334451 + ], + [ + 52.5955809, + 13.3347252 + ] + ] + }, + { + "osmId": "436121731", + "name": "U7", + "lengthMeters": 2259.3309622172474, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.487381, + 13.4206916 + ], + [ + 52.4874533, + 13.4201441 + ], + [ + 52.4876666, + 13.4184752 + ], + [ + 52.4879064, + 13.4167182 + ], + [ + 52.4887553, + 13.4102298 + ], + [ + 52.4888492, + 13.4095118 + ], + [ + 52.4888804, + 13.4093101 + ], + [ + 52.4889345, + 13.4090267 + ], + [ + 52.4890012, + 13.4087523 + ], + [ + 52.4890782, + 13.4084855 + ], + [ + 52.489157, + 13.4082197 + ], + [ + 52.4894228, + 13.407307 + ], + [ + 52.4894985, + 13.4070468 + ], + [ + 52.4895542, + 13.4068232 + ], + [ + 52.4895851, + 13.406657 + ], + [ + 52.4896019, + 13.4064829 + ], + [ + 52.4896071, + 13.4063397 + ], + [ + 52.4895803, + 13.4053399 + ], + [ + 52.4895746, + 13.4050824 + ], + [ + 52.4895789, + 13.4047901 + ], + [ + 52.4895931, + 13.404542 + ], + [ + 52.4896158, + 13.4043067 + ], + [ + 52.4896487, + 13.4040794 + ], + [ + 52.4896807, + 13.4038815 + ], + [ + 52.4909786, + 13.3974485 + ], + [ + 52.4911639, + 13.3966926 + ], + [ + 52.4914508, + 13.3952569 + ], + [ + 52.4915011, + 13.3950052 + ], + [ + 52.4916195, + 13.3942707 + ], + [ + 52.4922242, + 13.391245 + ], + [ + 52.4922556, + 13.3910478 + ], + [ + 52.4923038, + 13.3906733 + ], + [ + 52.4923331, + 13.3903852 + ], + [ + 52.4923521, + 13.3901514 + ], + [ + 52.4923654, + 13.3899474 + ], + [ + 52.4923918, + 13.3895953 + ], + [ + 52.4924206, + 13.3892751 + ], + [ + 52.4924396, + 13.3891583 + ], + [ + 52.4924719, + 13.3890184 + ], + [ + 52.4925037, + 13.3889097 + ], + [ + 52.4925393, + 13.3888071 + ], + [ + 52.4925699, + 13.3887326 + ], + [ + 52.4926147, + 13.3886381 + ] + ] + }, + { + "osmId": "436575296", + "name": null, + "lengthMeters": 165.7201665904207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5194296, + 9.9206676 + ], + [ + 53.5193572, + 9.9206781 + ], + [ + 53.5192081, + 9.9206819 + ], + [ + 53.5191141, + 9.9206731 + ], + [ + 53.5190317, + 9.9206617 + ], + [ + 53.5189797, + 9.9206483 + ], + [ + 53.5189176, + 9.920635 + ], + [ + 53.5188378, + 9.9206128 + ], + [ + 53.5187852, + 9.9205953 + ], + [ + 53.5187175, + 9.9205734 + ], + [ + 53.5186301, + 9.9205356 + ], + [ + 53.5185252, + 9.9204818 + ], + [ + 53.5184084, + 9.9204216 + ], + [ + 53.518253, + 9.9203294 + ], + [ + 53.5181907, + 9.9202815 + ], + [ + 53.518108, + 9.9202084 + ], + [ + 53.5180004, + 9.9201037 + ] + ] + }, + { + "osmId": "436575305", + "name": null, + "lengthMeters": 177.57889983013462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5213037, + 9.9240015 + ], + [ + 53.5213931, + 9.9241187 + ], + [ + 53.5214405, + 9.9241808 + ], + [ + 53.5215109, + 9.9242577 + ], + [ + 53.5217441, + 9.9245045 + ], + [ + 53.5218952, + 9.9246622 + ], + [ + 53.5219937, + 9.9247818 + ], + [ + 53.5220443, + 9.9248432 + ], + [ + 53.522183, + 9.9250256 + ], + [ + 53.5223772, + 9.9253401 + ], + [ + 53.5224321, + 9.9254322 + ], + [ + 53.5225685, + 9.9256278 + ] + ] + }, + { + "osmId": "436575308", + "name": null, + "lengthMeters": 144.7415040322312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5176499, + 9.919688 + ], + [ + 53.5174367, + 9.9194243 + ], + [ + 53.5172885, + 9.9192098 + ], + [ + 53.5172733, + 9.9191878 + ], + [ + 53.517189, + 9.9190506 + ], + [ + 53.5170825, + 9.9188421 + ], + [ + 53.5169835, + 9.9186373 + ], + [ + 53.5168323, + 9.9182703 + ], + [ + 53.5167717, + 9.9180994 + ] + ] + }, + { + "osmId": "436818896", + "name": null, + "lengthMeters": 227.6999087380994, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1522921, + 11.453794 + ], + [ + 48.1524067, + 11.4528022 + ], + [ + 48.1524337, + 11.4524396 + ], + [ + 48.1524504, + 11.4521347 + ], + [ + 48.1524838, + 11.4514078 + ], + [ + 48.1525158, + 11.4507461 + ] + ] + }, + { + "osmId": "437425426", + "name": null, + "lengthMeters": 469.48591067453674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536718, + 10.0028911 + ], + [ + 53.5535373, + 10.0024996 + ], + [ + 53.553237, + 10.0016818 + ], + [ + 53.5530648, + 10.0011399 + ], + [ + 53.5530036, + 10.0009147 + ], + [ + 53.5529397, + 10.0006354 + ], + [ + 53.5528847, + 10.0003478 + ], + [ + 53.5528363, + 10.000021 + ], + [ + 53.5527867, + 9.9995995 + ], + [ + 53.5527701, + 9.9993616 + ], + [ + 53.5527577, + 9.999012 + ], + [ + 53.552758, + 9.9986733 + ], + [ + 53.5527656, + 9.9984358 + ], + [ + 53.5527824, + 9.9981562 + ], + [ + 53.5528072, + 9.9978424 + ], + [ + 53.5528442, + 9.9975478 + ], + [ + 53.5528801, + 9.9972889 + ], + [ + 53.5529651, + 9.9967226 + ], + [ + 53.5530417, + 9.9961896 + ] + ] + }, + { + "osmId": "437425429", + "name": null, + "lengthMeters": 498.10460581762857, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5527015, + 10.0143593 + ], + [ + 53.5527014, + 10.0140019 + ], + [ + 53.5527068, + 10.0137659 + ], + [ + 53.5527278, + 10.0134886 + ], + [ + 53.5527565, + 10.013219 + ], + [ + 53.5528026, + 10.0129252 + ], + [ + 53.5528772, + 10.01256 + ], + [ + 53.5529432, + 10.0122947 + ], + [ + 53.5530137, + 10.0120511 + ], + [ + 53.5530596, + 10.0118988 + ], + [ + 53.5531154, + 10.0117192 + ], + [ + 53.5531895, + 10.0115178 + ], + [ + 53.5533069, + 10.0112479 + ], + [ + 53.5534594, + 10.0109312 + ], + [ + 53.5537381, + 10.010316 + ], + [ + 53.5538512, + 10.0100358 + ], + [ + 53.5539664, + 10.0096795 + ], + [ + 53.5540631, + 10.0093019 + ], + [ + 53.554155, + 10.0088287 + ], + [ + 53.5542094, + 10.0084374 + ], + [ + 53.5542348, + 10.0081882 + ], + [ + 53.5542437, + 10.0079343 + ], + [ + 53.5542441, + 10.0077465 + ], + [ + 53.5542358, + 10.0074786 + ] + ] + }, + { + "osmId": "437534086", + "name": null, + "lengthMeters": 496.16979465649587, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4921369, + 13.3725539 + ], + [ + 52.4909098, + 13.3724633 + ], + [ + 52.490428, + 13.3724425 + ], + [ + 52.489478, + 13.3723576 + ], + [ + 52.4887911, + 13.372232 + ], + [ + 52.4882282, + 13.3721159 + ], + [ + 52.4877603, + 13.3720006 + ], + [ + 52.4877286, + 13.3719928 + ], + [ + 52.4876922, + 13.371984 + ] + ] + }, + { + "osmId": "437534087", + "name": null, + "lengthMeters": 280.439342844502, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4842508, + 13.3707006 + ], + [ + 52.4835567, + 13.3702866 + ], + [ + 52.4825766, + 13.369708 + ], + [ + 52.4818793, + 13.3692912 + ] + ] + }, + { + "osmId": "437534089", + "name": null, + "lengthMeters": 207.5645011725821, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4860341, + 13.3716024 + ], + [ + 52.4859735, + 13.3715762 + ], + [ + 52.4858885, + 13.3715394 + ], + [ + 52.4856834, + 13.3714507 + ], + [ + 52.4853151, + 13.3712746 + ], + [ + 52.4847855, + 13.3710064 + ], + [ + 52.4843327, + 13.3707482 + ], + [ + 52.4842508, + 13.3707006 + ] + ] + }, + { + "osmId": "437575660", + "name": null, + "lengthMeters": 200.21356734189175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5531002, + 10.0215241 + ], + [ + 53.5531624, + 10.0219324 + ], + [ + 53.5532205, + 10.0222912 + ], + [ + 53.5532722, + 10.0226037 + ], + [ + 53.5533071, + 10.0227809 + ], + [ + 53.5533509, + 10.023003 + ], + [ + 53.5534945, + 10.023658 + ], + [ + 53.5535212, + 10.0237618 + ], + [ + 53.5536432, + 10.0241674 + ], + [ + 53.5537269, + 10.0243447 + ] + ] + }, + { + "osmId": "437575661", + "name": null, + "lengthMeters": 94.37212301744616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5520053, + 10.0227403 + ], + [ + 53.5515231, + 10.0215647 + ] + ] + }, + { + "osmId": "437575662", + "name": null, + "lengthMeters": 149.3670950334373, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5511969, + 10.0207789 + ], + [ + 53.5514894, + 10.0215992 + ], + [ + 53.5519247, + 10.0226783 + ] + ] + }, + { + "osmId": "437575663", + "name": null, + "lengthMeters": 111.08249923610701, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5531243, + 10.020905 + ], + [ + 53.5530846, + 10.0206553 + ], + [ + 53.552997, + 10.0202633 + ], + [ + 53.5529233, + 10.0197365 + ], + [ + 53.552863, + 10.0192847 + ] + ] + }, + { + "osmId": "437575664", + "name": null, + "lengthMeters": 124.61202468294736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5520277, + 10.0223652 + ], + [ + 53.5520014, + 10.0223084 + ], + [ + 53.5517816, + 10.0218329 + ], + [ + 53.5516391, + 10.0215557 + ], + [ + 53.5515515, + 10.0213519 + ], + [ + 53.5513612, + 10.020852 + ] + ] + }, + { + "osmId": "437575665", + "name": null, + "lengthMeters": 93.36055401039988, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5546182, + 10.0256154 + ], + [ + 53.5542685, + 10.0255249 + ], + [ + 53.5540613, + 10.0254424 + ], + [ + 53.5538505, + 10.0253406 + ], + [ + 53.5538381, + 10.0253346 + ], + [ + 53.553799, + 10.0253157 + ] + ] + }, + { + "osmId": "437575666", + "name": null, + "lengthMeters": 98.36744606042132, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5546182, + 10.0256154 + ], + [ + 53.5543521, + 10.0255126 + ], + [ + 53.5541576, + 10.025425 + ], + [ + 53.5539639, + 10.0253044 + ], + [ + 53.5538603, + 10.0252231 + ], + [ + 53.5537795, + 10.0251585 + ] + ] + }, + { + "osmId": "437575667", + "name": null, + "lengthMeters": 174.75577381996467, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5538309, + 10.0254385 + ], + [ + 53.5539782, + 10.0255075 + ], + [ + 53.5542017, + 10.0255925 + ], + [ + 53.5544837, + 10.0256748 + ], + [ + 53.5548452, + 10.0257578 + ], + [ + 53.5551552, + 10.0258441 + ], + [ + 53.5553758, + 10.0259126 + ] + ] + }, + { + "osmId": "437575668", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 101.94778966560742, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5547823, + 10.0258667 + ], + [ + 53.5541398, + 10.025656 + ], + [ + 53.5538834, + 10.0255632 + ] + ] + }, + { + "osmId": "438362808", + "name": null, + "lengthMeters": 80.20093305385056, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5009543, + 13.4765594 + ], + [ + 52.5010138, + 13.4764254 + ], + [ + 52.5012834, + 13.4758419 + ], + [ + 52.5013879, + 13.4756126 + ] + ] + }, + { + "osmId": "438400101", + "name": null, + "lengthMeters": 128.96158507277374, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5049417, + 13.3225186 + ], + [ + 52.5049672, + 13.322056 + ], + [ + 52.5049752, + 13.3219211 + ], + [ + 52.5049848, + 13.3217875 + ], + [ + 52.5050016, + 13.3216062 + ], + [ + 52.5050221, + 13.3214273 + ], + [ + 52.5050433, + 13.3212693 + ], + [ + 52.5050674, + 13.3211052 + ], + [ + 52.5050976, + 13.3208834 + ], + [ + 52.5051252, + 13.3206401 + ] + ] + }, + { + "osmId": "438414950", + "name": null, + "lengthMeters": 119.35061510954054, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5025701, + 13.2825461 + ], + [ + 52.5023499, + 13.2826347 + ], + [ + 52.5021404, + 13.2827451 + ], + [ + 52.5019354, + 13.2828674 + ], + [ + 52.5017469, + 13.2829958 + ], + [ + 52.50166, + 13.2830657 + ], + [ + 52.5015633, + 13.2831436 + ] + ] + }, + { + "osmId": "438414952", + "name": null, + "lengthMeters": 127.83618951216575, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5016125, + 13.2833549 + ], + [ + 52.5017016, + 13.2832806 + ], + [ + 52.5017974, + 13.2832082 + ], + [ + 52.5019804, + 13.2830762 + ], + [ + 52.5021834, + 13.2829459 + ], + [ + 52.5023865, + 13.2828265 + ], + [ + 52.5025646, + 13.2827333 + ], + [ + 52.5026842, + 13.2826805 + ] + ] + }, + { + "osmId": "438414954", + "name": null, + "lengthMeters": 361.801083904513, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4969609, + 13.2889143 + ], + [ + 52.497236, + 13.2885197 + ], + [ + 52.4974652, + 13.2881947 + ], + [ + 52.4976934, + 13.2878685 + ], + [ + 52.4979314, + 13.2875307 + ], + [ + 52.498166, + 13.2871923 + ], + [ + 52.498412, + 13.2868251 + ], + [ + 52.4987341, + 13.2863028 + ], + [ + 52.4990292, + 13.2857973 + ], + [ + 52.4991674, + 13.2855681 + ], + [ + 52.4993469, + 13.2852853 + ] + ] + }, + { + "osmId": "438414958", + "name": null, + "lengthMeters": 361.6474839545622, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993238, + 13.2852455 + ], + [ + 52.499142, + 13.285531 + ], + [ + 52.4990083, + 13.2857512 + ], + [ + 52.4987054, + 13.2862625 + ], + [ + 52.4983871, + 13.2867843 + ], + [ + 52.4981435, + 13.287141 + ], + [ + 52.4980489, + 13.2872796 + ], + [ + 52.4976687, + 13.2878269 + ], + [ + 52.4974418, + 13.2881525 + ], + [ + 52.4972158, + 13.2884764 + ], + [ + 52.4969386, + 13.2888731 + ] + ] + }, + { + "osmId": "438426581", + "name": "U6", + "lengthMeters": 349.21513342063827, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5488776, + 13.3547305 + ], + [ + 52.5486918, + 13.3550626 + ], + [ + 52.5481583, + 13.3559964 + ], + [ + 52.5474613, + 13.3572076 + ], + [ + 52.5467355, + 13.3585071 + ] + ] + }, + { + "osmId": "438426582", + "name": "U6", + "lengthMeters": 172.49818393465333, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362296, + 13.3759723 + ], + [ + 52.5358946, + 13.3763099 + ], + [ + 52.5351951, + 13.3771815 + ], + [ + 52.5349747, + 13.3774672 + ] + ] + }, + { + "osmId": "438459110", + "name": null, + "lengthMeters": 110.64150331386183, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5469766, + 10.0234643 + ], + [ + 53.5473399, + 10.0231818 + ], + [ + 53.5474074, + 10.0231294 + ], + [ + 53.5478799, + 10.022762 + ] + ] + }, + { + "osmId": "438459111", + "name": null, + "lengthMeters": 141.98218161448577, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5478477, + 10.0226341 + ], + [ + 53.547572, + 10.0228187 + ], + [ + 53.5472967, + 10.0230132 + ], + [ + 53.5466785, + 10.0234963 + ] + ] + }, + { + "osmId": "438533060", + "name": null, + "lengthMeters": 121.60460275813942, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4978647, + 13.2741399 + ], + [ + 52.497929, + 13.2736126 + ], + [ + 52.4979833, + 13.2732849 + ], + [ + 52.4981122, + 13.2725148 + ], + [ + 52.4981314, + 13.2723987 + ] + ] + }, + { + "osmId": "438533061", + "name": null, + "lengthMeters": 116.96091490159047, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4981011, + 13.2723546 + ], + [ + 52.4980677, + 13.2725448 + ], + [ + 52.4979447, + 13.273269 + ], + [ + 52.4978876, + 13.2736048 + ], + [ + 52.4978364, + 13.2740258 + ] + ] + }, + { + "osmId": "438533062", + "name": null, + "lengthMeters": 262.71627387884456, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4990749, + 13.2685052 + ], + [ + 52.4992719, + 13.2680927 + ], + [ + 52.4995845, + 13.2675335 + ], + [ + 52.4997682, + 13.2672539 + ], + [ + 52.4999181, + 13.2670507 + ], + [ + 52.5001858, + 13.2667248 + ], + [ + 52.5004397, + 13.2664644 + ], + [ + 52.5006337, + 13.2662885 + ], + [ + 52.5008901, + 13.266094 + ] + ] + }, + { + "osmId": "438533063", + "name": null, + "lengthMeters": 270.7108091439661, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.500913, + 13.2659913 + ], + [ + 52.5006147, + 13.2662399 + ], + [ + 52.5004217, + 13.2664175 + ], + [ + 52.5001722, + 13.2666737 + ], + [ + 52.4999005, + 13.266997 + ], + [ + 52.4997421, + 13.2672094 + ], + [ + 52.4995494, + 13.2675 + ], + [ + 52.4992384, + 13.2680646 + ], + [ + 52.4990409, + 13.2684772 + ] + ] + }, + { + "osmId": "438629215", + "name": null, + "lengthMeters": 509.4016263440992, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4424052, + 10.009272 + ], + [ + 53.4428712, + 10.0086932 + ], + [ + 53.4430717, + 10.0084365 + ], + [ + 53.443389, + 10.0080304 + ], + [ + 53.444104, + 10.007061 + ], + [ + 53.4449806, + 10.00577 + ], + [ + 53.4459171, + 10.0043414 + ] + ] + }, + { + "osmId": "438768575", + "name": null, + "lengthMeters": 202.64752350848033, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5164002, + 13.2851278 + ], + [ + 52.5173497, + 13.2847892 + ], + [ + 52.5174288, + 13.2847614 + ], + [ + 52.5177544, + 13.2846463 + ], + [ + 52.5180294, + 13.2845527 + ], + [ + 52.518085, + 13.2845338 + ], + [ + 52.5181815, + 13.2844953 + ] + ] + }, + { + "osmId": "438768578", + "name": null, + "lengthMeters": 163.16378645810124, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5180074, + 13.2843027 + ], + [ + 52.517939, + 13.2843233 + ], + [ + 52.5177353, + 13.2843932 + ], + [ + 52.5174196, + 13.2845056 + ], + [ + 52.5173164, + 13.2845424 + ], + [ + 52.5165724, + 13.2848061 + ] + ] + }, + { + "osmId": "438860768", + "name": "U8", + "lengthMeters": 446.2324031480819, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494667, + 13.387195 + ], + [ + 52.5498068, + 13.3862461 + ], + [ + 52.5498749, + 13.3860933 + ], + [ + 52.5499867, + 13.3858563 + ], + [ + 52.5507809, + 13.3845028 + ], + [ + 52.551377, + 13.3835033 + ], + [ + 52.5516551, + 13.3829666 + ], + [ + 52.5518767, + 13.3825179 + ], + [ + 52.5520438, + 13.3821682 + ] + ] + }, + { + "osmId": "438860770", + "name": null, + "lengthMeters": 394.4238980873644, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5211712, + 13.4200448 + ], + [ + 52.5219258, + 13.4175437 + ], + [ + 52.5219824, + 13.4173584 + ], + [ + 52.52203, + 13.4171923 + ], + [ + 52.5220573, + 13.417084 + ], + [ + 52.5220798, + 13.4169801 + ], + [ + 52.5221991, + 13.416458 + ], + [ + 52.5222321, + 13.4163011 + ], + [ + 52.5222515, + 13.4161675 + ], + [ + 52.5222699, + 13.4159604 + ], + [ + 52.5222715, + 13.4157989 + ], + [ + 52.5222616, + 13.4156074 + ], + [ + 52.5222454, + 13.4154637 + ], + [ + 52.5222184, + 13.4153177 + ], + [ + 52.5221773, + 13.4151499 + ], + [ + 52.5220993, + 13.4149322 + ], + [ + 52.521998, + 13.4147283 + ] + ] + }, + { + "osmId": "438860771", + "name": "U8", + "lengthMeters": 356.47704562457443, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5635192, + 13.3647759 + ], + [ + 52.5610359, + 13.3681112 + ] + ] + }, + { + "osmId": "438860772", + "name": null, + "lengthMeters": 393.8198488045635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5003676, + 13.3499658 + ], + [ + 52.5015218, + 13.3444654 + ] + ] + }, + { + "osmId": "438860773", + "name": null, + "lengthMeters": 90.37500672392439, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5389089, + 13.4121705 + ], + [ + 52.5380962, + 13.412187 + ] + ] + }, + { + "osmId": "438860774", + "name": null, + "lengthMeters": 90.08074454645275, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5380959, + 13.4122459 + ], + [ + 52.5389059, + 13.4122234 + ] + ] + }, + { + "osmId": "438860775", + "name": "U7", + "lengthMeters": 657.9542480941087, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363054, + 13.2925475 + ], + [ + 52.5364313, + 13.2914922 + ], + [ + 52.5364879, + 13.2909697 + ], + [ + 52.5365201, + 13.2906492 + ], + [ + 52.5365383, + 13.2904454 + ], + [ + 52.5365534, + 13.2902556 + ], + [ + 52.5365725, + 13.2899905 + ], + [ + 52.5365899, + 13.2896955 + ], + [ + 52.5366105, + 13.2891967 + ], + [ + 52.5366179, + 13.2889304 + ], + [ + 52.5366205, + 13.2885163 + ], + [ + 52.5366173, + 13.2881906 + ], + [ + 52.5365781, + 13.2870361 + ], + [ + 52.5365733, + 13.2864407 + ], + [ + 52.5365667, + 13.2859941 + ], + [ + 52.5365682, + 13.2856951 + ], + [ + 52.5365709, + 13.2854248 + ], + [ + 52.5365745, + 13.2852186 + ], + [ + 52.536582, + 13.2849853 + ], + [ + 52.5366074, + 13.284426 + ], + [ + 52.5366636, + 13.2828674 + ] + ] + }, + { + "osmId": "438860777", + "name": null, + "lengthMeters": 241.41991966572172, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038023, + 13.3315005 + ], + [ + 52.5046695, + 13.3316276 + ], + [ + 52.5050859, + 13.3317296 + ], + [ + 52.5052655, + 13.3318046 + ], + [ + 52.5054345, + 13.3318919 + ], + [ + 52.5055569, + 13.3319628 + ], + [ + 52.5056932, + 13.3320622 + ], + [ + 52.5059098, + 13.3322247 + ] + ] + }, + { + "osmId": "438860778", + "name": null, + "lengthMeters": 349.12111649505727, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5059098, + 13.3322247 + ], + [ + 52.5060248, + 13.3323243 + ], + [ + 52.5063366, + 13.33266 + ], + [ + 52.5065654, + 13.3328337 + ], + [ + 52.5071093, + 13.3332466 + ], + [ + 52.507923, + 13.3338549 + ], + [ + 52.5087674, + 13.334326 + ] + ] + }, + { + "osmId": "438860779", + "name": "U8", + "lengthMeters": 243.54554037927946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205811, + 13.4133491 + ], + [ + 52.5207475, + 13.4131789 + ], + [ + 52.5209146, + 13.4129887 + ], + [ + 52.5211413, + 13.4126747 + ], + [ + 52.5213277, + 13.4124036 + ], + [ + 52.5214344, + 13.4122393 + ], + [ + 52.521714, + 13.4117805 + ], + [ + 52.521832, + 13.4115931 + ], + [ + 52.5219569, + 13.41142 + ], + [ + 52.5220444, + 13.4112696 + ], + [ + 52.5221254, + 13.4110793 + ], + [ + 52.522183, + 13.4109274 + ] + ] + }, + { + "osmId": "438860780", + "name": null, + "lengthMeters": 772.5186178734197, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210837, + 13.4199691 + ], + [ + 52.5209772, + 13.4202814 + ], + [ + 52.5208871, + 13.4205703 + ], + [ + 52.5206939, + 13.4212287 + ], + [ + 52.5205947, + 13.4215669 + ], + [ + 52.5204785, + 13.4219574 + ], + [ + 52.5204189, + 13.422135 + ], + [ + 52.5191138, + 13.4264555 + ], + [ + 52.5184451, + 13.4290465 + ], + [ + 52.5183937, + 13.4292649 + ], + [ + 52.5183412, + 13.4295162 + ], + [ + 52.5183046, + 13.4297116 + ], + [ + 52.5182623, + 13.4299671 + ], + [ + 52.518207, + 13.43034 + ] + ] + }, + { + "osmId": "438957586", + "name": null, + "lengthMeters": 429.9644303658694, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.498897, + 13.5434593 + ], + [ + 52.498976, + 13.5438455 + ], + [ + 52.4990188, + 13.5440791 + ], + [ + 52.4990546, + 13.5442824 + ], + [ + 52.4991806, + 13.5450306 + ], + [ + 52.4992118, + 13.5451992 + ], + [ + 52.4992423, + 13.5453563 + ], + [ + 52.4992793, + 13.5455299 + ], + [ + 52.4993206, + 13.545711 + ], + [ + 52.4995098, + 13.5464812 + ], + [ + 52.4997484, + 13.5474633 + ], + [ + 52.4997904, + 13.5476274 + ], + [ + 52.4998418, + 13.5478183 + ], + [ + 52.4998983, + 13.5480162 + ], + [ + 52.4999504, + 13.54819 + ], + [ + 52.5003087, + 13.549357 + ] + ] + }, + { + "osmId": "438957590", + "name": null, + "lengthMeters": 310.3332083926989, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5000542, + 13.5479135 + ], + [ + 52.499991, + 13.5476762 + ], + [ + 52.4999288, + 13.5474353 + ], + [ + 52.4996732, + 13.5463978 + ], + [ + 52.4995068, + 13.5457158 + ], + [ + 52.4991776, + 13.5443661 + ], + [ + 52.4990027, + 13.543667 + ] + ] + }, + { + "osmId": "438957592", + "name": null, + "lengthMeters": 179.64093354185815, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5574733, + 13.4140606 + ], + [ + 52.5574074, + 13.4140982 + ], + [ + 52.5573017, + 13.4141535 + ], + [ + 52.5572056, + 13.414199 + ], + [ + 52.5570803, + 13.4142508 + ], + [ + 52.5569865, + 13.4142805 + ], + [ + 52.5568846, + 13.4143016 + ], + [ + 52.5558812, + 13.4144501 + ] + ] + }, + { + "osmId": "438957593", + "name": null, + "lengthMeters": 1117.0155193471533, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4990027, + 13.543667 + ], + [ + 52.4987457, + 13.5426307 + ], + [ + 52.4985746, + 13.541935 + ], + [ + 52.4983958, + 13.5412448 + ], + [ + 52.4981047, + 13.5401668 + ], + [ + 52.4978278, + 13.539107 + ], + [ + 52.4971753, + 13.5364732 + ], + [ + 52.4951777, + 13.5284102 + ] + ] + }, + { + "osmId": "438957595", + "name": null, + "lengthMeters": 180.81663110563963, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5558836, + 13.4145062 + ], + [ + 52.5569004, + 13.4143511 + ], + [ + 52.5569887, + 13.4143318 + ], + [ + 52.5570675, + 13.4143075 + ], + [ + 52.5571378, + 13.4142809 + ], + [ + 52.5572159, + 13.4142479 + ], + [ + 52.5573122, + 13.4142033 + ], + [ + 52.5574177, + 13.4141501 + ], + [ + 52.5574862, + 13.4141108 + ] + ] + }, + { + "osmId": "438957596", + "name": null, + "lengthMeters": 1099.6726539548613, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4951437, + 13.5284318 + ], + [ + 52.4963415, + 13.5332632 + ], + [ + 52.4977957, + 13.5391287 + ], + [ + 52.4980707, + 13.5401929 + ], + [ + 52.4983633, + 13.5412729 + ], + [ + 52.4985409, + 13.5419622 + ], + [ + 52.4987128, + 13.5426518 + ], + [ + 52.4988246, + 13.5431138 + ], + [ + 52.4988657, + 13.5433002 + ], + [ + 52.498897, + 13.5434593 + ] + ] + }, + { + "osmId": "439127075", + "name": null, + "lengthMeters": 129.03489547405172, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628483, + 9.9700688 + ], + [ + 53.5629735, + 9.9700345 + ], + [ + 53.5630338, + 9.9700132 + ], + [ + 53.5630939, + 9.9699902 + ], + [ + 53.563214, + 9.9699268 + ], + [ + 53.5632978, + 9.9698722 + ], + [ + 53.5633615, + 9.9698279 + ], + [ + 53.56342, + 9.9697812 + ], + [ + 53.563625, + 9.9696021 + ], + [ + 53.5638076, + 9.9694564 + ], + [ + 53.5638369, + 9.9694366 + ], + [ + 53.563859, + 9.9694256 + ], + [ + 53.563889, + 9.9694132 + ], + [ + 53.5639305, + 9.9693983 + ] + ] + }, + { + "osmId": "439127076", + "name": null, + "lengthMeters": 130.64214201382364, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628509, + 9.9700243 + ], + [ + 53.5629699, + 9.9699884 + ], + [ + 53.5630324, + 9.9699642 + ], + [ + 53.5630998, + 9.9699327 + ], + [ + 53.5631906, + 9.969883 + ], + [ + 53.5632803, + 9.9698239 + ], + [ + 53.5633496, + 9.9697716 + ], + [ + 53.5633963, + 9.9697345 + ], + [ + 53.5636162, + 9.9695274 + ], + [ + 53.5638379, + 9.9693029 + ], + [ + 53.5638733, + 9.969276 + ], + [ + 53.5639221, + 9.9692509 + ] + ] + }, + { + "osmId": "440027186", + "name": null, + "lengthMeters": 160.48563140625055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027443, + 13.4752633 + ], + [ + 52.5027397, + 13.475281 + ], + [ + 52.5027283, + 13.4753244 + ], + [ + 52.5027177, + 13.4753558 + ], + [ + 52.5027047, + 13.4753868 + ], + [ + 52.5026951, + 13.4754058 + ], + [ + 52.5026807, + 13.4754294 + ], + [ + 52.5026747, + 13.4754392 + ], + [ + 52.5026621, + 13.4754569 + ], + [ + 52.5026485, + 13.4754745 + ], + [ + 52.5026224, + 13.4755023 + ], + [ + 52.5025948, + 13.4755231 + ], + [ + 52.5025612, + 13.4755375 + ], + [ + 52.5025285, + 13.475545 + ], + [ + 52.502517, + 13.4755458 + ], + [ + 52.502495, + 13.4755461 + ], + [ + 52.5024869, + 13.4755453 + ], + [ + 52.502462, + 13.4755427 + ], + [ + 52.502453, + 13.4755417 + ], + [ + 52.5023632, + 13.4755285 + ], + [ + 52.5023283, + 13.4755234 + ], + [ + 52.5022677, + 13.4755147 + ], + [ + 52.5022388, + 13.4755087 + ], + [ + 52.5021949, + 13.4754959 + ], + [ + 52.5021424, + 13.475473 + ], + [ + 52.5020425, + 13.4754281 + ], + [ + 52.5020208, + 13.4754184 + ], + [ + 52.5019794, + 13.4754 + ], + [ + 52.5018726, + 13.4753479 + ], + [ + 52.501729, + 13.4752797 + ], + [ + 52.5016995, + 13.4752709 + ], + [ + 52.5016779, + 13.4752663 + ], + [ + 52.5016552, + 13.4752629 + ], + [ + 52.5016308, + 13.4752617 + ], + [ + 52.501605, + 13.4752639 + ], + [ + 52.5015962, + 13.475266 + ], + [ + 52.5015835, + 13.475269 + ], + [ + 52.5015636, + 13.4752771 + ], + [ + 52.5015486, + 13.4752862 + ], + [ + 52.5015318, + 13.475298 + ], + [ + 52.5015175, + 13.4753099 + ], + [ + 52.5014939, + 13.4753388 + ], + [ + 52.5014777, + 13.4753585 + ], + [ + 52.5014588, + 13.4753914 + ], + [ + 52.5014358, + 13.4754393 + ] + ] + }, + { + "osmId": "440027189", + "name": null, + "lengthMeters": 99.50351105354642, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014358, + 13.4754393 + ], + [ + 52.5014034, + 13.4755086 + ], + [ + 52.5012609, + 13.4758138 + ], + [ + 52.501064, + 13.47625 + ], + [ + 52.5009949, + 13.4764021 + ], + [ + 52.5008986, + 13.4766149 + ] + ] + }, + { + "osmId": "440392305", + "name": null, + "lengthMeters": 163.50837177097827, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4610264, + 13.5707917 + ], + [ + 52.4608747, + 13.5711708 + ], + [ + 52.4607405, + 13.5715205 + ], + [ + 52.4605888, + 13.5719296 + ], + [ + 52.4604263, + 13.572383 + ], + [ + 52.4604181, + 13.5724069 + ], + [ + 52.4604156, + 13.5724144 + ], + [ + 52.4602648, + 13.5728553 + ] + ] + }, + { + "osmId": "440392308", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 272.94191262863586, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4575463, + 13.5051763 + ], + [ + 52.4557063, + 13.5078425 + ] + ] + }, + { + "osmId": "440392326", + "name": null, + "lengthMeters": 235.97073575313365, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4631938, + 13.5655814 + ], + [ + 52.4630503, + 13.5659584 + ], + [ + 52.4629035, + 13.5663451 + ], + [ + 52.4627728, + 13.5666933 + ], + [ + 52.4626452, + 13.5670298 + ], + [ + 52.4625935, + 13.5671658 + ], + [ + 52.4623931, + 13.5676931 + ], + [ + 52.4622994, + 13.5679385 + ], + [ + 52.4622199, + 13.5681441 + ], + [ + 52.4621889, + 13.5682218 + ], + [ + 52.4621563, + 13.5683024 + ], + [ + 52.4621272, + 13.5683709 + ], + [ + 52.4620925, + 13.5684476 + ], + [ + 52.4620578, + 13.5685224 + ] + ] + }, + { + "osmId": "440405446", + "name": null, + "lengthMeters": 829.7082732002042, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5091721, + 13.4384736 + ], + [ + 52.5089765, + 13.4389769 + ], + [ + 52.508794, + 13.4394829 + ], + [ + 52.5086154, + 13.4400118 + ], + [ + 52.5082225, + 13.441196 + ], + [ + 52.5081706, + 13.4413524 + ], + [ + 52.507993, + 13.4418874 + ], + [ + 52.5079075, + 13.4421614 + ], + [ + 52.5078513, + 13.4423547 + ], + [ + 52.5077682, + 13.4426648 + ], + [ + 52.50766, + 13.4431362 + ], + [ + 52.5076362, + 13.4432562 + ], + [ + 52.5075692, + 13.4435941 + ], + [ + 52.5075015, + 13.4439645 + ], + [ + 52.5072772, + 13.4451577 + ], + [ + 52.5071569, + 13.4458357 + ], + [ + 52.5071494, + 13.4458779 + ], + [ + 52.5071268, + 13.4459993 + ], + [ + 52.5068383, + 13.4475457 + ], + [ + 52.5067186, + 13.4481874 + ], + [ + 52.5067078, + 13.448231 + ], + [ + 52.5066416, + 13.4484974 + ], + [ + 52.5064412, + 13.4492555 + ], + [ + 52.5063711, + 13.4495217 + ], + [ + 52.506325, + 13.4496966 + ], + [ + 52.5063145, + 13.4497364 + ] + ] + }, + { + "osmId": "441112826", + "name": null, + "lengthMeters": 102.95088742851094, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6366967, + 13.2066063 + ], + [ + 52.636608, + 13.2066693 + ], + [ + 52.6365079, + 13.2067425 + ], + [ + 52.6363957, + 13.2068331 + ], + [ + 52.6362448, + 13.2069645 + ], + [ + 52.6360704, + 13.2071323 + ], + [ + 52.6358849, + 13.2073338 + ] + ] + }, + { + "osmId": "441113607", + "name": "Berliner Ringbahn", + "lengthMeters": 430.1582699427804, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5090099, + 13.2842507 + ], + [ + 52.5093709, + 13.2845281 + ], + [ + 52.5095584, + 13.2846673 + ], + [ + 52.5097056, + 13.2847765 + ], + [ + 52.5097951, + 13.284841 + ], + [ + 52.510205, + 13.2851284 + ], + [ + 52.5105584, + 13.2853193 + ], + [ + 52.5107065, + 13.2853994 + ], + [ + 52.5107745, + 13.2854286 + ], + [ + 52.5110899, + 13.2855643 + ], + [ + 52.5114903, + 13.2856925 + ], + [ + 52.5119012, + 13.2857869 + ], + [ + 52.5123034, + 13.2858339 + ], + [ + 52.5127124, + 13.2858427 + ] + ] + }, + { + "osmId": "441113610", + "name": "Berliner Ringbahn", + "lengthMeters": 344.7047240932067, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.509039, + 13.2841521 + ], + [ + 52.5086341, + 13.2838001 + ], + [ + 52.508246, + 13.2834735 + ], + [ + 52.5078552, + 13.2831607 + ], + [ + 52.5074538, + 13.2828707 + ], + [ + 52.5072708, + 13.2827615 + ], + [ + 52.5067413, + 13.2824779 + ], + [ + 52.5064085, + 13.2823492 + ], + [ + 52.5061745, + 13.2822681 + ] + ] + }, + { + "osmId": "441142101", + "name": "U7", + "lengthMeters": 533.5941991745638, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.531575, + 13.3005486 + ], + [ + 52.5319045, + 13.3005314 + ], + [ + 52.5333206, + 13.3003649 + ], + [ + 52.5336015, + 13.300285 + ], + [ + 52.5338142, + 13.3001887 + ], + [ + 52.5340778, + 13.3000351 + ], + [ + 52.5341448, + 13.2999887 + ], + [ + 52.5342279, + 13.299927 + ], + [ + 52.5342928, + 13.299874 + ], + [ + 52.5343563, + 13.2998181 + ], + [ + 52.5344519, + 13.2997274 + ], + [ + 52.5345573, + 13.299614 + ], + [ + 52.5346163, + 13.2995461 + ], + [ + 52.5347189, + 13.2994219 + ], + [ + 52.5348084, + 13.2993046 + ], + [ + 52.5349266, + 13.2991376 + ], + [ + 52.5350201, + 13.2989932 + ], + [ + 52.5351044, + 13.2988532 + ], + [ + 52.5352059, + 13.2986689 + ], + [ + 52.5353195, + 13.2984473 + ], + [ + 52.5353983, + 13.2982761 + ], + [ + 52.5354512, + 13.2981551 + ], + [ + 52.535492, + 13.2980563 + ], + [ + 52.5355503, + 13.2979059 + ], + [ + 52.5355877, + 13.2978037 + ], + [ + 52.5356404, + 13.2976475 + ], + [ + 52.5356817, + 13.2975154 + ] + ] + }, + { + "osmId": "441142104", + "name": "U7", + "lengthMeters": 1711.878713851692, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5220681, + 13.3062747 + ], + [ + 52.5223123, + 13.3061706 + ], + [ + 52.5224355, + 13.3061265 + ], + [ + 52.5225423, + 13.3060962 + ], + [ + 52.5226666, + 13.3060661 + ], + [ + 52.5228109, + 13.3060428 + ], + [ + 52.5228835, + 13.3060331 + ], + [ + 52.5230086, + 13.3060202 + ], + [ + 52.5231714, + 13.3060158 + ], + [ + 52.5232791, + 13.3060186 + ], + [ + 52.5239443, + 13.3060709 + ], + [ + 52.5241226, + 13.3060828 + ], + [ + 52.5243031, + 13.3060841 + ], + [ + 52.5244135, + 13.3060766 + ], + [ + 52.524539, + 13.306061 + ], + [ + 52.5246281, + 13.3060466 + ], + [ + 52.524788, + 13.30601 + ], + [ + 52.5249117, + 13.3059735 + ], + [ + 52.5250515, + 13.3059248 + ], + [ + 52.5251557, + 13.3058839 + ], + [ + 52.5252762, + 13.3058266 + ], + [ + 52.5254119, + 13.305749 + ], + [ + 52.5255613, + 13.3056567 + ], + [ + 52.5256959, + 13.3055661 + ], + [ + 52.5258479, + 13.3054362 + ], + [ + 52.5260158, + 13.3052801 + ], + [ + 52.526156, + 13.3051361 + ], + [ + 52.5262729, + 13.305005 + ], + [ + 52.5263638, + 13.3048917 + ], + [ + 52.5264591, + 13.3047686 + ], + [ + 52.5265818, + 13.3045933 + ], + [ + 52.5266767, + 13.3044473 + ], + [ + 52.526854, + 13.3041427 + ], + [ + 52.5270423, + 13.3037845 + ], + [ + 52.5271632, + 13.3035663 + ], + [ + 52.5272637, + 13.3033947 + ], + [ + 52.5274724, + 13.3030693 + ], + [ + 52.5276096, + 13.3028795 + ], + [ + 52.5277509, + 13.3026956 + ], + [ + 52.5278803, + 13.3025355 + ], + [ + 52.5280271, + 13.3023633 + ], + [ + 52.5281316, + 13.3022483 + ], + [ + 52.5282692, + 13.3021067 + ], + [ + 52.5283783, + 13.302003 + ], + [ + 52.5284582, + 13.301931 + ], + [ + 52.5286028, + 13.30181 + ], + [ + 52.5287657, + 13.3016894 + ], + [ + 52.5288667, + 13.3016216 + ], + [ + 52.5290692, + 13.3014948 + ], + [ + 52.5296316, + 13.3010771 + ], + [ + 52.5298919, + 13.3009376 + ], + [ + 52.5302835, + 13.3007912 + ], + [ + 52.5304169, + 13.300746 + ], + [ + 52.5305306, + 13.3007044 + ], + [ + 52.53066, + 13.3006598 + ], + [ + 52.5307879, + 13.3006301 + ], + [ + 52.530877, + 13.3006092 + ], + [ + 52.5309911, + 13.3005894 + ], + [ + 52.5312832, + 13.3005538 + ], + [ + 52.5315759, + 13.3005863 + ], + [ + 52.5318272, + 13.3006001 + ], + [ + 52.5333264, + 13.3004038 + ], + [ + 52.533647, + 13.3003165 + ], + [ + 52.5338158, + 13.3002401 + ], + [ + 52.5338836, + 13.3002054 + ], + [ + 52.534018, + 13.3001272 + ], + [ + 52.5340883, + 13.3000864 + ], + [ + 52.5341576, + 13.3000385 + ], + [ + 52.5342549, + 13.2999666 + ], + [ + 52.5343023, + 13.2999281 + ], + [ + 52.5343655, + 13.2998732 + ], + [ + 52.5344583, + 13.2997853 + ], + [ + 52.5345473, + 13.2996915 + ], + [ + 52.5346361, + 13.2995916 + ], + [ + 52.5347511, + 13.2994542 + ], + [ + 52.5348318, + 13.2993494 + ], + [ + 52.53495, + 13.2991824 + ], + [ + 52.5350456, + 13.2990348 + ], + [ + 52.5351311, + 13.2988929 + ], + [ + 52.5352334, + 13.298707 + ], + [ + 52.535347, + 13.2984854 + ], + [ + 52.5354202, + 13.298302 + ], + [ + 52.5354731, + 13.298181 + ], + [ + 52.5355143, + 13.2980813 + ], + [ + 52.5355734, + 13.2979288 + ], + [ + 52.535613, + 13.2978264 + ], + [ + 52.5356633, + 13.297676 + ], + [ + 52.5357263, + 13.2974666 + ] + ] + }, + { + "osmId": "441142107", + "name": "U7", + "lengthMeters": 6026.53944399001, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367108, + 13.2828793 + ], + [ + 52.5367634, + 13.2815045 + ], + [ + 52.5369433, + 13.2769304 + ], + [ + 52.5369484, + 13.2768019 + ], + [ + 52.5369583, + 13.2765072 + ], + [ + 52.5369659, + 13.2760966 + ], + [ + 52.5369649, + 13.2757144 + ], + [ + 52.5369579, + 13.2755322 + ], + [ + 52.5369362, + 13.2750922 + ], + [ + 52.5369199, + 13.2747985 + ], + [ + 52.5368906, + 13.2741812 + ], + [ + 52.5368526, + 13.2734763 + ], + [ + 52.5368161, + 13.2727557 + ], + [ + 52.5367714, + 13.2718656 + ], + [ + 52.5367587, + 13.2714453 + ], + [ + 52.536749, + 13.2710335 + ], + [ + 52.5367472, + 13.2706202 + ], + [ + 52.5367459, + 13.2702361 + ], + [ + 52.536844, + 13.2659343 + ], + [ + 52.5368732, + 13.2651986 + ], + [ + 52.5369084, + 13.2644631 + ], + [ + 52.5369627, + 13.2636576 + ], + [ + 52.5370337, + 13.2626304 + ], + [ + 52.5371326, + 13.2611572 + ], + [ + 52.5375354, + 13.2553594 + ], + [ + 52.5375588, + 13.254949 + ], + [ + 52.5375769, + 13.2545087 + ], + [ + 52.5376126, + 13.2533606 + ], + [ + 52.5376372, + 13.2528026 + ], + [ + 52.5376475, + 13.2526532 + ], + [ + 52.5379058, + 13.2493144 + ], + [ + 52.5380032, + 13.2483656 + ], + [ + 52.5380626, + 13.2476544 + ], + [ + 52.5380863, + 13.2473119 + ], + [ + 52.5381137, + 13.2467601 + ], + [ + 52.5381362, + 13.2461865 + ], + [ + 52.5381742, + 13.2454797 + ], + [ + 52.5382228, + 13.2447478 + ], + [ + 52.5382623, + 13.244221 + ], + [ + 52.5382963, + 13.2439003 + ], + [ + 52.5387136, + 13.2406207 + ], + [ + 52.5388442, + 13.2396303 + ], + [ + 52.5388928, + 13.2391959 + ], + [ + 52.5389333, + 13.2387588 + ], + [ + 52.5389711, + 13.2382908 + ], + [ + 52.539, + 13.237854 + ], + [ + 52.5390185, + 13.2374719 + ], + [ + 52.5390304, + 13.2370883 + ], + [ + 52.5390359, + 13.2367346 + ], + [ + 52.5390363, + 13.2363836 + ], + [ + 52.539028, + 13.2360303 + ], + [ + 52.5390073, + 13.2355006 + ], + [ + 52.5389889, + 13.235119 + ], + [ + 52.5389528, + 13.2345321 + ], + [ + 52.5389415, + 13.2343464 + ], + [ + 52.5389155, + 13.2340343 + ], + [ + 52.5388803, + 13.2337125 + ], + [ + 52.5388471, + 13.2334318 + ], + [ + 52.5388167, + 13.2331907 + ], + [ + 52.538766, + 13.2328804 + ], + [ + 52.5386596, + 13.232297 + ], + [ + 52.5385593, + 13.23177 + ], + [ + 52.5380318, + 13.2289951 + ], + [ + 52.5379187, + 13.22834 + ], + [ + 52.5378544, + 13.2279425 + ], + [ + 52.5377706, + 13.2273976 + ], + [ + 52.5375932, + 13.226165 + ], + [ + 52.5373588, + 13.2245588 + ], + [ + 52.5373089, + 13.2243076 + ], + [ + 52.5372179, + 13.2237979 + ], + [ + 52.537165, + 13.2234546 + ], + [ + 52.5371247, + 13.2231658 + ], + [ + 52.5370921, + 13.2229055 + ], + [ + 52.5370535, + 13.2225571 + ], + [ + 52.537015, + 13.2221487 + ], + [ + 52.5369887, + 13.2217956 + ], + [ + 52.5369823, + 13.2215885 + ], + [ + 52.5369802, + 13.2213521 + ], + [ + 52.5369818, + 13.2211755 + ], + [ + 52.5369877, + 13.2209684 + ], + [ + 52.5369977, + 13.2207617 + ], + [ + 52.5370111, + 13.2205562 + ], + [ + 52.5370264, + 13.2203796 + ], + [ + 52.5370545, + 13.2201172 + ], + [ + 52.5370888, + 13.2198585 + ], + [ + 52.5371279, + 13.2196001 + ], + [ + 52.5371691, + 13.219372 + ], + [ + 52.537215, + 13.2191481 + ], + [ + 52.5372512, + 13.2189689 + ], + [ + 52.5373163, + 13.2187042 + ], + [ + 52.5374197, + 13.2183373 + ], + [ + 52.5376748, + 13.2175554 + ], + [ + 52.5379306, + 13.2167712 + ], + [ + 52.5380152, + 13.2165145 + ], + [ + 52.5381002, + 13.2162549 + ], + [ + 52.5381841, + 13.2159713 + ], + [ + 52.5382426, + 13.2157564 + ], + [ + 52.538292, + 13.2155351 + ], + [ + 52.5383367, + 13.2153116 + ], + [ + 52.5383863, + 13.2150297 + ], + [ + 52.5384154, + 13.2148293 + ], + [ + 52.5384448, + 13.2145701 + ], + [ + 52.5384609, + 13.2143671 + ], + [ + 52.5384765, + 13.2141021 + ], + [ + 52.5384832, + 13.2138679 + ], + [ + 52.5384843, + 13.2136922 + ], + [ + 52.5384824, + 13.2135164 + ], + [ + 52.5384729, + 13.2132516 + ], + [ + 52.5384573, + 13.2130187 + ], + [ + 52.5384336, + 13.2127595 + ], + [ + 52.5383844, + 13.2125075 + ], + [ + 52.5383291, + 13.2121936 + ], + [ + 52.5382861, + 13.2119088 + ], + [ + 52.5382449, + 13.2115907 + ], + [ + 52.5382193, + 13.2113575 + ], + [ + 52.5381862, + 13.2109778 + ], + [ + 52.5381682, + 13.2106818 + ], + [ + 52.5381614, + 13.2105346 + ], + [ + 52.5381535, + 13.2102989 + ], + [ + 52.5381472, + 13.2100034 + ], + [ + 52.5381466, + 13.2096993 + ], + [ + 52.5381573, + 13.209466 + ], + [ + 52.5382018, + 13.2089991 + ], + [ + 52.5382279, + 13.2087876 + ], + [ + 52.5382647, + 13.208561 + ], + [ + 52.5383181, + 13.208281 + ], + [ + 52.5383697, + 13.2080628 + ], + [ + 52.5384133, + 13.2079018 + ], + [ + 52.5384763, + 13.2076876 + ], + [ + 52.538595, + 13.207332 + ], + [ + 52.5388991, + 13.2064266 + ], + [ + 52.5391065, + 13.2056046 + ], + [ + 52.5391761, + 13.2052561 + ], + [ + 52.539223, + 13.2049634 + ], + [ + 52.5392408, + 13.2048209 + ], + [ + 52.5392601, + 13.2046174 + ], + [ + 52.5392729, + 13.2044144 + ], + [ + 52.5392792, + 13.2042394 + ], + [ + 52.5392794, + 13.2039796 + ], + [ + 52.5392715, + 13.203773 + ], + [ + 52.5392601, + 13.2036008 + ], + [ + 52.539244, + 13.2034258 + ], + [ + 52.5392232, + 13.2032554 + ], + [ + 52.539198, + 13.203085 + ], + [ + 52.5391626, + 13.2028872 + ], + [ + 52.5391273, + 13.202722 + ], + [ + 52.5390796, + 13.2025336 + ], + [ + 52.5390267, + 13.2023498 + ], + [ + 52.5389853, + 13.2022206 + ], + [ + 52.5389228, + 13.2020432 + ], + [ + 52.5388649, + 13.2018939 + ], + [ + 52.5387933, + 13.2017286 + ], + [ + 52.5387169, + 13.2015678 + ], + [ + 52.5386464, + 13.2014338 + ], + [ + 52.5385612, + 13.2012836 + ], + [ + 52.5384591, + 13.2011231 + ], + [ + 52.5383499, + 13.2009691 + ], + [ + 52.5382503, + 13.2008505 + ], + [ + 52.5381302, + 13.2007214 + ], + [ + 52.5379922, + 13.2005921 + ], + [ + 52.5378646, + 13.2004878 + ], + [ + 52.5377488, + 13.2004059 + ], + [ + 52.5375994, + 13.2003153 + ], + [ + 52.5374498, + 13.2002468 + ], + [ + 52.5373583, + 13.2002083 + ], + [ + 52.537254, + 13.2001745 + ], + [ + 52.537112, + 13.2001422 + ], + [ + 52.5361274, + 13.2000128 + ], + [ + 52.535567, + 13.1998381 + ], + [ + 52.5353827, + 13.1997806 + ] + ] + }, + { + "osmId": "441142108", + "name": null, + "lengthMeters": 190.07936064619312, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5298881, + 13.3009418 + ], + [ + 52.5302822, + 13.300792 + ], + [ + 52.5305336, + 13.3007041 + ], + [ + 52.5306598, + 13.30066 + ], + [ + 52.5307879, + 13.3006301 + ], + [ + 52.5308435, + 13.3006171 + ], + [ + 52.530988, + 13.3005891 + ], + [ + 52.5312844, + 13.3005527 + ], + [ + 52.531575, + 13.3005486 + ] + ] + }, + { + "osmId": "441160916", + "name": "U6", + "lengthMeters": 109.4389200534071, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5467355, + 13.3585071 + ], + [ + 52.5463824, + 13.3591318 + ], + [ + 52.546066, + 13.3596934 + ] + ] + }, + { + "osmId": "441464364", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 435.44227876430415, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535273, + 13.1927583 + ], + [ + 52.5349433, + 13.1947149 + ], + [ + 52.5349267, + 13.194817 + ], + [ + 52.5348012, + 13.1955887 + ], + [ + 52.5347239, + 13.1960616 + ], + [ + 52.5345602, + 13.1970622 + ], + [ + 52.5344873, + 13.1975082 + ], + [ + 52.5343258, + 13.1985448 + ], + [ + 52.5342805, + 13.1987984 + ], + [ + 52.534245, + 13.1989698 + ] + ] + }, + { + "osmId": "441464368", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 235.54807068746544, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353989, + 13.1928125 + ], + [ + 52.5354002, + 13.192802 + ], + [ + 52.5354152, + 13.1926743 + ], + [ + 52.5354176, + 13.1926543 + ], + [ + 52.5354979, + 13.1920176 + ], + [ + 52.5356653, + 13.1908263 + ], + [ + 52.5357809, + 13.1900782 + ], + [ + 52.5358757, + 13.1894956 + ], + [ + 52.5358869, + 13.1894244 + ] + ] + }, + { + "osmId": "441932166", + "name": null, + "lengthMeters": 1290.0868961474469, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3603565, + 13.6210417 + ], + [ + 52.3593753, + 13.6215182 + ], + [ + 52.3590845, + 13.6216694 + ], + [ + 52.3588262, + 13.6218 + ], + [ + 52.3582468, + 13.6220772 + ], + [ + 52.3578741, + 13.622248 + ], + [ + 52.3577385, + 13.6223107 + ], + [ + 52.3569769, + 13.6226629 + ], + [ + 52.3569252, + 13.6226868 + ], + [ + 52.3569213, + 13.6226886 + ], + [ + 52.356899, + 13.6226989 + ], + [ + 52.3568329, + 13.6227301 + ], + [ + 52.3567635, + 13.6227608 + ], + [ + 52.3567044, + 13.6227875 + ], + [ + 52.3557652, + 13.623212 + ], + [ + 52.3552574, + 13.6234488 + ], + [ + 52.3535977, + 13.6242228 + ], + [ + 52.3528044, + 13.6245927 + ], + [ + 52.3524293, + 13.6247946 + ], + [ + 52.3521049, + 13.6249917 + ], + [ + 52.3514409, + 13.6254317 + ], + [ + 52.3513923, + 13.6254622 + ], + [ + 52.3505976, + 13.625979 + ], + [ + 52.3497497, + 13.6265235 + ], + [ + 52.3494157, + 13.6267594 + ], + [ + 52.3493193, + 13.6268295 + ] + ] + }, + { + "osmId": "441932169", + "name": null, + "lengthMeters": 1288.068740890074, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3493754, + 13.6269989 + ], + [ + 52.3495951, + 13.6268142 + ], + [ + 52.3499347, + 13.6265343 + ], + [ + 52.3503816, + 13.6262077 + ], + [ + 52.3507536, + 13.6259504 + ], + [ + 52.3510481, + 13.625758 + ], + [ + 52.3510719, + 13.6257426 + ], + [ + 52.3513643, + 13.6255527 + ], + [ + 52.3514058, + 13.6255279 + ], + [ + 52.3520921, + 13.6250848 + ], + [ + 52.3524414, + 13.6248577 + ], + [ + 52.3526594, + 13.6247401 + ], + [ + 52.352668, + 13.6247355 + ], + [ + 52.3528768, + 13.6246236 + ], + [ + 52.3532822, + 13.6244323 + ], + [ + 52.3534642, + 13.6243464 + ], + [ + 52.3536107, + 13.6242773 + ], + [ + 52.3545014, + 13.6238724 + ], + [ + 52.3545884, + 13.6238313 + ], + [ + 52.354747, + 13.6237564 + ], + [ + 52.3549075, + 13.6236806 + ], + [ + 52.3552642, + 13.6235192 + ], + [ + 52.3554344, + 13.623441 + ], + [ + 52.3559754, + 13.6231924 + ], + [ + 52.3561308, + 13.6231191 + ], + [ + 52.3563657, + 13.6230082 + ], + [ + 52.3567135, + 13.6228536 + ], + [ + 52.3567439, + 13.62284 + ], + [ + 52.3567725, + 13.6228273 + ], + [ + 52.3568406, + 13.6227919 + ], + [ + 52.3569055, + 13.6227623 + ], + [ + 52.3569343, + 13.6227478 + ], + [ + 52.3569863, + 13.6227247 + ], + [ + 52.3570268, + 13.6227051 + ], + [ + 52.3575486, + 13.6224671 + ], + [ + 52.3581811, + 13.62217 + ], + [ + 52.3583801, + 13.6220829 + ], + [ + 52.3588358, + 13.6218624 + ], + [ + 52.3593182, + 13.6216139 + ], + [ + 52.3603635, + 13.6211008 + ] + ] + }, + { + "osmId": "441932172", + "name": null, + "lengthMeters": 3108.213222989094, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3604286, + 13.6208542 + ], + [ + 52.3609553, + 13.6206173 + ], + [ + 52.3611619, + 13.6205239 + ], + [ + 52.3621044, + 13.6200979 + ], + [ + 52.3626278, + 13.6198596 + ], + [ + 52.3635208, + 13.6194553 + ], + [ + 52.3646402, + 13.6189425 + ], + [ + 52.3655119, + 13.6185433 + ], + [ + 52.366795, + 13.6179297 + ], + [ + 52.3668587, + 13.6178992 + ], + [ + 52.3668708, + 13.6178934 + ], + [ + 52.3669524, + 13.6178544 + ], + [ + 52.3670655, + 13.6177993 + ], + [ + 52.3671381, + 13.6177606 + ], + [ + 52.3672789, + 13.6176765 + ], + [ + 52.3682124, + 13.6171189 + ], + [ + 52.3695646, + 13.6162561 + ], + [ + 52.3710928, + 13.6152809 + ], + [ + 52.3718403, + 13.6147925 + ], + [ + 52.3720918, + 13.6146282 + ], + [ + 52.373496, + 13.6137289 + ], + [ + 52.373996, + 13.6134075 + ], + [ + 52.3751381, + 13.6126734 + ], + [ + 52.3754918, + 13.612446 + ], + [ + 52.3756152, + 13.6123669 + ], + [ + 52.3756727, + 13.6123299 + ], + [ + 52.3757294, + 13.6122939 + ], + [ + 52.3758338, + 13.6122267 + ], + [ + 52.376434, + 13.6118405 + ], + [ + 52.3767116, + 13.6116619 + ], + [ + 52.3783981, + 13.6105721 + ], + [ + 52.3795694, + 13.609837 + ], + [ + 52.3838931, + 13.6070385 + ], + [ + 52.3846479, + 13.6065527 + ], + [ + 52.3846656, + 13.6065413 + ], + [ + 52.3866205, + 13.6052832 + ], + [ + 52.3866795, + 13.6052452 + ] + ] + }, + { + "osmId": "441932173", + "name": null, + "lengthMeters": 3246.5889411734975, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3878289, + 13.6044449 + ], + [ + 52.3869092, + 13.6050373 + ], + [ + 52.3867338, + 13.6051486 + ], + [ + 52.3860325, + 13.605595 + ], + [ + 52.3857668, + 13.6057785 + ], + [ + 52.3849494, + 13.6062971 + ], + [ + 52.3846551, + 13.6064838 + ], + [ + 52.3846385, + 13.6064945 + ], + [ + 52.3838809, + 13.6069827 + ], + [ + 52.3831951, + 13.607411 + ], + [ + 52.3823445, + 13.6079422 + ], + [ + 52.3813497, + 13.6086109 + ], + [ + 52.3801251, + 13.6093946 + ], + [ + 52.3799838, + 13.6094874 + ], + [ + 52.3795558, + 13.6097687 + ], + [ + 52.3787614, + 13.6102534 + ], + [ + 52.3783837, + 13.6105156 + ], + [ + 52.3777503, + 13.6109057 + ], + [ + 52.3768082, + 13.6115318 + ], + [ + 52.3766976, + 13.6116053 + ], + [ + 52.3764226, + 13.6117843 + ], + [ + 52.3758229, + 13.6121725 + ], + [ + 52.3757116, + 13.6122415 + ], + [ + 52.3756547, + 13.612279 + ], + [ + 52.3755968, + 13.6123169 + ], + [ + 52.3754812, + 13.6123902 + ], + [ + 52.375123, + 13.6126179 + ], + [ + 52.3749753, + 13.6127117 + ], + [ + 52.3739822, + 13.6133507 + ], + [ + 52.373071, + 13.6139374 + ], + [ + 52.3718281, + 13.6147386 + ], + [ + 52.3710878, + 13.615206 + ], + [ + 52.3705092, + 13.615599 + ], + [ + 52.3699641, + 13.6159424 + ], + [ + 52.369552, + 13.616202 + ], + [ + 52.368376, + 13.6169427 + ], + [ + 52.3679595, + 13.617205 + ], + [ + 52.3672688, + 13.6176072 + ], + [ + 52.3670854, + 13.617714 + ], + [ + 52.3669401, + 13.6177861 + ], + [ + 52.3668621, + 13.6178278 + ], + [ + 52.3668465, + 13.6178361 + ], + [ + 52.3667836, + 13.6178697 + ], + [ + 52.3667342, + 13.6178961 + ], + [ + 52.3664759, + 13.618034 + ], + [ + 52.3657179, + 13.6183951 + ], + [ + 52.3648035, + 13.6188052 + ], + [ + 52.3639098, + 13.6192167 + ], + [ + 52.3628664, + 13.6196872 + ], + [ + 52.3622136, + 13.6199816 + ], + [ + 52.3611545, + 13.6204623 + ], + [ + 52.3604196, + 13.6207959 + ] + ] + }, + { + "osmId": "441976356", + "name": null, + "lengthMeters": 76.0621994545055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4912975, + 10.2088983 + ], + [ + 53.4911249, + 10.2085498 + ], + [ + 53.4910595, + 10.2084145 + ], + [ + 53.490993, + 10.2082824 + ], + [ + 53.4908597, + 10.2080149 + ] + ] + }, + { + "osmId": "441985835", + "name": null, + "lengthMeters": 106.14948162317609, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4140589, + 13.5714871 + ], + [ + 52.4138365, + 13.5718006 + ], + [ + 52.4133182, + 13.572474 + ] + ] + }, + { + "osmId": "442125282", + "name": null, + "lengthMeters": 84.55856467313244, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5447614, + 10.0251882 + ], + [ + 53.5440567, + 10.0256692 + ] + ] + }, + { + "osmId": "442125283", + "name": "Niederelbebahn", + "lengthMeters": 1157.375029516213, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4703038, + 9.9625801 + ], + [ + 53.4699356, + 9.9650371 + ], + [ + 53.4696259, + 9.9670313 + ], + [ + 53.4695081, + 9.9676628 + ], + [ + 53.4694356, + 9.9679773 + ], + [ + 53.4693788, + 9.9682439 + ], + [ + 53.4692011, + 9.9689494 + ], + [ + 53.4690781, + 9.9693778 + ], + [ + 53.4689465, + 9.9697999 + ], + [ + 53.4688083, + 9.9702106 + ], + [ + 53.4686994, + 9.9705179 + ], + [ + 53.4684342, + 9.9711941 + ], + [ + 53.4684116, + 9.9712473 + ], + [ + 53.467543, + 9.9731343 + ], + [ + 53.4671217, + 9.9740283 + ], + [ + 53.4666911, + 9.9749458 + ], + [ + 53.4661387, + 9.976121 + ], + [ + 53.4660663, + 9.9762739 + ], + [ + 53.4654059, + 9.9776904 + ] + ] + }, + { + "osmId": "442125284", + "name": "Niederelbebahn", + "lengthMeters": 92.38410546837392, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4592649, + 9.9872983 + ], + [ + 53.4594918, + 9.9870635 + ], + [ + 53.4597289, + 9.9868741 + ], + [ + 53.4600177, + 9.9867271 + ] + ] + }, + { + "osmId": "442160295", + "name": null, + "lengthMeters": 358.426083915409, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5635498, + 9.9656538 + ], + [ + 53.5635769, + 9.9664316 + ], + [ + 53.5636028, + 9.9672042 + ], + [ + 53.5636314, + 9.9679161 + ], + [ + 53.563674, + 9.9691796 + ], + [ + 53.5637396, + 9.9710716 + ] + ] + }, + { + "osmId": "442160296", + "name": null, + "lengthMeters": 358.3903253687203, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637745, + 9.9710682 + ], + [ + 53.5637591, + 9.9706272 + ], + [ + 53.5637491, + 9.9701487 + ], + [ + 53.5637591, + 9.9694711 + ], + [ + 53.5637663, + 9.9691567 + ], + [ + 53.5637667, + 9.9686481 + ], + [ + 53.5637411, + 9.9678693 + ], + [ + 53.5636904, + 9.9664238 + ], + [ + 53.5636512, + 9.9656495 + ] + ] + }, + { + "osmId": "442160297", + "name": "Verbindungsbahn", + "lengthMeters": 90.51647243702595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5638162, + 9.971064 + ], + [ + 53.5638615, + 9.9723847 + ], + [ + 53.5638633, + 9.9724323 + ] + ] + }, + { + "osmId": "442343873", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 76.51712639637897, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3958586, + 13.5221946 + ], + [ + 52.3962759, + 13.5230913 + ] + ] + }, + { + "osmId": "442343876", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 339.1559480637183, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3962759, + 13.5230913 + ], + [ + 52.39631, + 13.5231653 + ], + [ + 52.3963376, + 13.5232251 + ], + [ + 52.3965734, + 13.5237365 + ], + [ + 52.3967265, + 13.5240686 + ], + [ + 52.3970135, + 13.5248078 + ], + [ + 52.397379, + 13.5256052 + ], + [ + 52.3979432, + 13.5269417 + ], + [ + 52.3980476, + 13.5271571 + ] + ] + }, + { + "osmId": "442752814", + "name": null, + "lengthMeters": 848.5220480918475, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.465102, + 9.9943535 + ], + [ + 53.4637231, + 9.9936548 + ], + [ + 53.4634987, + 9.9935459 + ], + [ + 53.4628543, + 9.9932231 + ], + [ + 53.4627076, + 9.9931466 + ], + [ + 53.4625459, + 9.9930623 + ], + [ + 53.4623169, + 9.992943 + ], + [ + 53.4622338, + 9.9929008 + ], + [ + 53.4617776, + 9.9926689 + ], + [ + 53.4609659, + 9.9922562 + ], + [ + 53.4608284, + 9.9921839 + ], + [ + 53.4604805, + 9.9920011 + ], + [ + 53.460268, + 9.991878 + ], + [ + 53.4599381, + 9.9916601 + ], + [ + 53.4599241, + 9.9916506 + ], + [ + 53.4595492, + 9.9913973 + ], + [ + 53.4589979, + 9.9910299 + ], + [ + 53.4587441, + 9.9908911 + ], + [ + 53.4584854, + 9.990787 + ], + [ + 53.4580433, + 9.9906756 + ], + [ + 53.4578132, + 9.9906607 + ] + ] + }, + { + "osmId": "442752817", + "name": null, + "lengthMeters": 1321.0946356147497, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4428248, + 10.0082773 + ], + [ + 53.4436784, + 10.0071921 + ], + [ + 53.4437468, + 10.0071012 + ], + [ + 53.4445165, + 10.006021 + ], + [ + 53.4455453, + 10.004481 + ], + [ + 53.4458495, + 10.0040135 + ], + [ + 53.4461851, + 10.0034977 + ], + [ + 53.4463547, + 10.0032433 + ], + [ + 53.4465225, + 10.0029915 + ], + [ + 53.4469023, + 10.0024184 + ], + [ + 53.4472487, + 10.0018957 + ], + [ + 53.4480151, + 10.0007738 + ], + [ + 53.4482753, + 10.000393 + ], + [ + 53.4486629, + 9.9998168 + ], + [ + 53.4488808, + 9.9994964 + ], + [ + 53.4490537, + 9.9992332 + ], + [ + 53.4498033, + 9.9980922 + ], + [ + 53.4499228, + 9.9978979 + ], + [ + 53.4501332, + 9.9975794 + ], + [ + 53.4504705, + 9.9970767 + ], + [ + 53.4505653, + 9.9969341 + ], + [ + 53.45088, + 9.99645 + ], + [ + 53.4509557, + 9.996347 + ], + [ + 53.4513638, + 9.9957349 + ], + [ + 53.4514124, + 9.9956633 + ], + [ + 53.4517629, + 9.9951451 + ] + ] + }, + { + "osmId": "442752818", + "name": null, + "lengthMeters": 172.43259775314783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4533656, + 9.9928258 + ], + [ + 53.4530297, + 9.9932778 + ], + [ + 53.4528708, + 9.9934903 + ], + [ + 53.4525344, + 9.9939401 + ], + [ + 53.4521669, + 9.9944771 + ] + ] + }, + { + "osmId": "442752819", + "name": null, + "lengthMeters": 79.19911426465367, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4565917, + 9.9907673 + ], + [ + 53.4567384, + 9.9907413 + ], + [ + 53.4569025, + 9.990706 + ], + [ + 53.4570496, + 9.9906744 + ], + [ + 53.457184, + 9.9906541 + ], + [ + 53.4572159, + 9.9906507 + ], + [ + 53.4572998, + 9.9906411 + ] + ] + }, + { + "osmId": "442752836", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 171.6321674105287, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.453578, + 9.9932778 + ], + [ + 53.4532207, + 9.9936104 + ], + [ + 53.4526763, + 9.9942326 + ], + [ + 53.4523017, + 9.9947271 + ] + ] + }, + { + "osmId": "442752843", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 150.46388151691076, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4523339, + 9.9947895 + ], + [ + 53.4523593, + 9.9947547 + ], + [ + 53.4527968, + 9.9941977 + ], + [ + 53.4531588, + 9.993776 + ], + [ + 53.4532498, + 9.9936841 + ], + [ + 53.4534423, + 9.9934898 + ] + ] + }, + { + "osmId": "442752874", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 98.8952554638499, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4573466, + 9.9896295 + ], + [ + 53.4573764, + 9.9895431 + ], + [ + 53.4574107, + 9.9894533 + ], + [ + 53.4574646, + 9.9893232 + ], + [ + 53.4575145, + 9.9892132 + ], + [ + 53.4575605, + 9.9891247 + ], + [ + 53.4578997, + 9.9884633 + ] + ] + }, + { + "osmId": "442752879", + "name": null, + "lengthMeters": 236.664806425758, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4566283, + 9.9934498 + ], + [ + 53.4566206, + 9.9936101 + ], + [ + 53.4566238, + 9.993714 + ], + [ + 53.4566315, + 9.9938504 + ], + [ + 53.456655, + 9.9941461 + ], + [ + 53.4566776, + 9.9943364 + ], + [ + 53.4567027, + 9.9945067 + ], + [ + 53.4567265, + 9.9946519 + ], + [ + 53.4567626, + 9.994826 + ], + [ + 53.4568275, + 9.9950949 + ], + [ + 53.4568841, + 9.9952804 + ], + [ + 53.4569177, + 9.9954015 + ], + [ + 53.456976, + 9.9955838 + ], + [ + 53.4570551, + 9.9958082 + ], + [ + 53.4571382, + 9.9960441 + ], + [ + 53.4572327, + 9.9963123 + ], + [ + 53.4574058, + 9.9966996 + ] + ] + }, + { + "osmId": "442752882", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 371.8056348477157, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4578588, + 9.988397 + ], + [ + 53.4577574, + 9.9885908 + ], + [ + 53.457462, + 9.9891299 + ], + [ + 53.4574179, + 9.9892079 + ], + [ + 53.4573688, + 9.9893084 + ], + [ + 53.4572887, + 9.9894892 + ], + [ + 53.4571353, + 9.989861 + ], + [ + 53.4570969, + 9.9899602 + ], + [ + 53.457057, + 9.9900729 + ], + [ + 53.4570279, + 9.9901641 + ], + [ + 53.4570035, + 9.9902486 + ], + [ + 53.456984, + 9.9903701 + ], + [ + 53.4569415, + 9.990714 + ], + [ + 53.4568986, + 9.9911016 + ], + [ + 53.4568423, + 9.9915906 + ], + [ + 53.4566283, + 9.9934498 + ] + ] + }, + { + "osmId": "442752886", + "name": null, + "lengthMeters": 224.16403165406788, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4574451, + 9.9966425 + ], + [ + 53.4572804, + 9.9962658 + ], + [ + 53.4571938, + 9.9959867 + ], + [ + 53.4571259, + 9.9957676 + ], + [ + 53.4570534, + 9.9955337 + ], + [ + 53.4569865, + 9.9952879 + ], + [ + 53.45694, + 9.9950926 + ], + [ + 53.4569117, + 9.9949572 + ], + [ + 53.4568777, + 9.9947804 + ], + [ + 53.456849, + 9.9945991 + ], + [ + 53.4568258, + 9.9943927 + ], + [ + 53.456817, + 9.9942692 + ], + [ + 53.4568083, + 9.9941112 + ], + [ + 53.4567979, + 9.9938907 + ], + [ + 53.4567961, + 9.9936817 + ], + [ + 53.4568028, + 9.9935099 + ] + ] + }, + { + "osmId": "442827834", + "name": null, + "lengthMeters": 172.52981068550906, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3707809, + 13.4668815 + ], + [ + 52.3707859, + 13.4668928 + ], + [ + 52.3712979, + 13.4680512 + ], + [ + 52.3716891, + 13.468942 + ] + ] + }, + { + "osmId": "442827835", + "name": null, + "lengthMeters": 126.49258797450281, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3708081, + 13.4668525 + ], + [ + 52.3708019, + 13.4668386 + ], + [ + 52.3706897, + 13.4665878 + ], + [ + 52.3702271, + 13.4655587 + ], + [ + 52.370126, + 13.465362 + ] + ] + }, + { + "osmId": "442827836", + "name": null, + "lengthMeters": 171.31014838131964, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3717141, + 13.4688934 + ], + [ + 52.3713266, + 13.4680111 + ], + [ + 52.3709312, + 13.4671275 + ], + [ + 52.3709222, + 13.4671074 + ], + [ + 52.3708134, + 13.4668643 + ], + [ + 52.3708081, + 13.4668525 + ] + ] + }, + { + "osmId": "442898230", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 734.384074542882, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3525744, + 13.4200052 + ], + [ + 52.3528427, + 13.4210665 + ], + [ + 52.3532646, + 13.4227234 + ], + [ + 52.3537454, + 13.4246036 + ], + [ + 52.353931, + 13.4253472 + ], + [ + 52.3544831, + 13.4275247 + ], + [ + 52.3545903, + 13.427964 + ], + [ + 52.3549398, + 13.4293054 + ], + [ + 52.3551247, + 13.4299792 + ] + ] + }, + { + "osmId": "442898231", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 373.8743599430604, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3545166, + 13.4275042 + ], + [ + 52.3539345, + 13.4252014 + ], + [ + 52.353779, + 13.4245839 + ], + [ + 52.3532284, + 13.4224193 + ] + ] + }, + { + "osmId": "442898234", + "name": null, + "lengthMeters": 133.90872852450107, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.353284, + 13.4223924 + ], + [ + 52.3533489, + 13.4226362 + ], + [ + 52.3535226, + 13.4233256 + ], + [ + 52.3535324, + 13.4233624 + ], + [ + 52.3537474, + 13.4242122 + ] + ] + }, + { + "osmId": "442921386", + "name": "Berliner Stadtbahn", + "lengthMeters": 93.68440283303568, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209285, + 13.384605 + ], + [ + 52.5211243, + 13.3838123 + ], + [ + 52.5212403, + 13.3833187 + ] + ] + }, + { + "osmId": "442921387", + "name": "Berliner Stadtbahn", + "lengthMeters": 79.98395058037636, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5211405, + 13.38356 + ], + [ + 52.5209991, + 13.3840108 + ], + [ + 52.5209058, + 13.3843056 + ], + [ + 52.5207945, + 13.3845954 + ] + ] + }, + { + "osmId": "442933426", + "name": null, + "lengthMeters": 1126.4888778984325, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3936994, + 13.1205354 + ], + [ + 52.3933607, + 13.1166592 + ], + [ + 52.393094, + 13.1136411 + ], + [ + 52.3928622, + 13.1109804 + ], + [ + 52.3922652, + 13.1041014 + ] + ] + }, + { + "osmId": "442933430", + "name": null, + "lengthMeters": 111.98187406615806, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4140589, + 13.5714871 + ], + [ + 52.413767, + 13.571928 + ], + [ + 52.4135641, + 13.5722277 + ], + [ + 52.4133081, + 13.5725872 + ] + ] + }, + { + "osmId": "443011435", + "name": null, + "lengthMeters": 150.4666743553967, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.345823, + 13.282442 + ], + [ + 52.3458571, + 13.2824666 + ], + [ + 52.3459575, + 13.2825342 + ], + [ + 52.346073, + 13.2826071 + ], + [ + 52.3461599, + 13.2826611 + ], + [ + 52.346243, + 13.2827081 + ], + [ + 52.3463851, + 13.2827894 + ], + [ + 52.3464846, + 13.2828419 + ], + [ + 52.3471078, + 13.2831303 + ] + ] + }, + { + "osmId": "443062796", + "name": "Anhalter Bahn", + "lengthMeters": 105.04861167623301, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4201756, + 13.3156696 + ], + [ + 52.4198621, + 13.315365 + ], + [ + 52.4195459, + 13.315069 + ], + [ + 52.4193568, + 13.3148971 + ] + ] + }, + { + "osmId": "443256280", + "name": "Anhalter Bahn", + "lengthMeters": 108.3548794429713, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4193467, + 13.3149569 + ], + [ + 52.4195282, + 13.3151205 + ], + [ + 52.4198435, + 13.3154163 + ], + [ + 52.4201705, + 13.3157355 + ], + [ + 52.4201909, + 13.3157547 + ] + ] + }, + { + "osmId": "443259881", + "name": null, + "lengthMeters": 440.08283414852644, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.57542, + 9.9513349 + ], + [ + 53.5753489, + 9.9512918 + ], + [ + 53.5752827, + 9.9512374 + ], + [ + 53.5751549, + 9.9511319 + ], + [ + 53.5750783, + 9.9510562 + ], + [ + 53.575011, + 9.9509874 + ], + [ + 53.574819, + 9.9507622 + ], + [ + 53.5747025, + 9.9506032 + ], + [ + 53.5745535, + 9.9503564 + ], + [ + 53.5744299, + 9.9501246 + ], + [ + 53.5742882, + 9.9498647 + ], + [ + 53.5742113, + 9.9497519 + ], + [ + 53.5741423, + 9.9496683 + ], + [ + 53.5740697, + 9.9495931 + ], + [ + 53.5739804, + 9.9495249 + ], + [ + 53.5739251, + 9.94949 + ], + [ + 53.5738533, + 9.9494496 + ], + [ + 53.5737304, + 9.9494026 + ], + [ + 53.5736145, + 9.9493838 + ], + [ + 53.5734729, + 9.9493955 + ], + [ + 53.573338, + 9.9494355 + ], + [ + 53.5732767, + 9.9494579 + ], + [ + 53.5731928, + 9.9495037 + ], + [ + 53.5731091, + 9.949568 + ], + [ + 53.5730194, + 9.9496447 + ], + [ + 53.572939, + 9.9497338 + ], + [ + 53.5728565, + 9.9498423 + ], + [ + 53.5727627, + 9.9499909 + ], + [ + 53.5722526, + 9.9510544 + ] + ] + }, + { + "osmId": "445329429", + "name": null, + "lengthMeters": 80.59282210087527, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3507044, + 13.2849642 + ], + [ + 52.3505816, + 13.2848611 + ], + [ + 52.3505317, + 13.2848229 + ], + [ + 52.350481, + 13.2847866 + ], + [ + 52.3503803, + 13.2847184 + ], + [ + 52.3502769, + 13.2846537 + ], + [ + 52.3501715, + 13.2845975 + ], + [ + 52.3500306, + 13.2845359 + ] + ] + }, + { + "osmId": "445741414", + "name": null, + "lengthMeters": 81.96929379383526, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4699708, + 9.9716267 + ], + [ + 53.4700728, + 9.9714111 + ], + [ + 53.4701925, + 9.9711198 + ], + [ + 53.4702628, + 9.97088 + ], + [ + 53.4703474, + 9.9705692 + ] + ] + }, + { + "osmId": "445741415", + "name": null, + "lengthMeters": 680.3547814252069, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4697543, + 9.9716567 + ], + [ + 53.4699261, + 9.9713165 + ], + [ + 53.4700671, + 9.9709705 + ], + [ + 53.4702221, + 9.970411 + ], + [ + 53.4703108, + 9.9700357 + ], + [ + 53.4704434, + 9.9693389 + ], + [ + 53.4707506, + 9.9676745 + ], + [ + 53.4716827, + 9.9627041 + ], + [ + 53.4718536, + 9.9620574 + ] + ] + }, + { + "osmId": "445741420", + "name": null, + "lengthMeters": 166.87667752682407, + "maxSpeedKph": 20.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.472307, + 9.9610611 + ], + [ + 53.4724521, + 9.9604289 + ], + [ + 53.4725882, + 9.9597259 + ], + [ + 53.4726319, + 9.9595002 + ], + [ + 53.4726856, + 9.959211 + ], + [ + 53.4727358, + 9.9588594 + ], + [ + 53.472764, + 9.9586623 + ] + ] + }, + { + "osmId": "445741421", + "name": null, + "lengthMeters": 151.43492699698106, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4703132, + 9.9698388 + ], + [ + 53.4704501, + 9.9690653 + ], + [ + 53.4707136, + 9.967652 + ] + ] + }, + { + "osmId": "445741422", + "name": null, + "lengthMeters": 344.96067821618703, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4716827, + 9.9627041 + ], + [ + 53.471577, + 9.9630876 + ], + [ + 53.4713162, + 9.9644528 + ], + [ + 53.4707136, + 9.967652 + ] + ] + }, + { + "osmId": "445741424", + "name": null, + "lengthMeters": 410.20159728003324, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4704501, + 9.968706 + ], + [ + 53.470544, + 9.967847 + ], + [ + 53.4709053, + 9.9659406 + ], + [ + 53.4713984, + 9.9633944 + ], + [ + 53.4715614, + 9.9628093 + ] + ] + }, + { + "osmId": "445741425", + "name": null, + "lengthMeters": 431.2214266179946, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4703807, + 9.9692804 + ], + [ + 53.4704801, + 9.9686928 + ], + [ + 53.4706771, + 9.9676344 + ], + [ + 53.4714127, + 9.9637055 + ], + [ + 53.471577, + 9.9630876 + ] + ] + }, + { + "osmId": "445741426", + "name": null, + "lengthMeters": 607.9690798652041, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4719184, + 9.9617052 + ], + [ + 53.4715783, + 9.9629101 + ], + [ + 53.4713762, + 9.9636683 + ], + [ + 53.4708975, + 9.9662211 + ], + [ + 53.4705466, + 9.9680858 + ], + [ + 53.4704501, + 9.968706 + ], + [ + 53.4703807, + 9.9692804 + ], + [ + 53.4703132, + 9.9698388 + ], + [ + 53.4702221, + 9.970411 + ] + ] + }, + { + "osmId": "445741427", + "name": "Niederelbebahn", + "lengthMeters": 2106.0026118258133, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4715294, + 9.9484526 + ], + [ + 53.4715486, + 9.9479638 + ], + [ + 53.4716147, + 9.9462786 + ], + [ + 53.4716339, + 9.9453018 + ], + [ + 53.4716449, + 9.9447458 + ], + [ + 53.4716211, + 9.9414632 + ], + [ + 53.4715847, + 9.9391468 + ], + [ + 53.4715796, + 9.9388195 + ], + [ + 53.4715836, + 9.9383176 + ], + [ + 53.4716077, + 9.9352713 + ], + [ + 53.4716586, + 9.9289466 + ], + [ + 53.4716984, + 9.9234228 + ], + [ + 53.4717052, + 9.922479 + ], + [ + 53.4717122, + 9.9215105 + ], + [ + 53.4717362, + 9.9191878 + ], + [ + 53.4717365, + 9.9188078 + ], + [ + 53.4717441, + 9.9172008 + ], + [ + 53.4717479, + 9.9166683 + ], + [ + 53.4717477, + 9.9166415 + ] + ] + }, + { + "osmId": "445741428", + "name": "Niederelbebahn", + "lengthMeters": 88.50878749725838, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4657765, + 9.9770589 + ], + [ + 53.4654433, + 9.9777954 + ], + [ + 53.4652913, + 9.9781188 + ] + ] + }, + { + "osmId": "445741429", + "name": "Niederelbebahn", + "lengthMeters": 147.95306336839366, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4654059, + 9.9776904 + ], + [ + 53.4653031, + 9.9778997 + ], + [ + 53.4646791, + 9.9792469 + ], + [ + 53.4646712, + 9.9792669 + ], + [ + 53.4645863, + 9.9794509 + ] + ] + }, + { + "osmId": "445992426", + "name": null, + "lengthMeters": 290.43096515543317, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5105951, + 10.0080296 + ], + [ + 53.5106317, + 10.0080325 + ], + [ + 53.510896, + 10.0080558 + ], + [ + 53.5111756, + 10.0080916 + ], + [ + 53.5113622, + 10.0081198 + ], + [ + 53.511475, + 10.0081407 + ], + [ + 53.5117032, + 10.0082 + ], + [ + 53.5119355, + 10.0082554 + ], + [ + 53.5120119, + 10.0082716 + ], + [ + 53.5126025, + 10.0084657 + ], + [ + 53.5131326, + 10.0086672 + ], + [ + 53.5131574, + 10.0086763 + ], + [ + 53.5131734, + 10.0086805 + ] + ] + }, + { + "osmId": "445992428", + "name": null, + "lengthMeters": 425.3893542644743, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5022922, + 10.0072285 + ], + [ + 53.5025207, + 10.0072915 + ], + [ + 53.5032014, + 10.0074667 + ], + [ + 53.5038909, + 10.0076291 + ], + [ + 53.5048364, + 10.0077654 + ], + [ + 53.5053939, + 10.0078302 + ], + [ + 53.5056645, + 10.0078596 + ], + [ + 53.506094, + 10.007902 + ] + ] + }, + { + "osmId": "446547795", + "name": null, + "lengthMeters": 87.33473882191973, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078427, + 13.492193 + ], + [ + 52.5074747, + 13.4915082 + ], + [ + 52.5073323, + 13.4912127 + ] + ] + }, + { + "osmId": "446633269", + "name": null, + "lengthMeters": 609.1944273227504, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5349495, + 13.3343433 + ], + [ + 52.5354457, + 13.3383814 + ], + [ + 52.5355143, + 13.3389432 + ], + [ + 52.5355186, + 13.3389789 + ], + [ + 52.5359911, + 13.3426694 + ], + [ + 52.5360049, + 13.3427779 + ], + [ + 52.5360548, + 13.3431649 + ] + ] + }, + { + "osmId": "446633270", + "name": null, + "lengthMeters": 557.2399835963066, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362035, + 13.3433069 + ], + [ + 52.5361762, + 13.3430941 + ], + [ + 52.5361559, + 13.3429318 + ], + [ + 52.5358515, + 13.3405972 + ], + [ + 52.5356543, + 13.3390468 + ], + [ + 52.5356215, + 13.3387801 + ], + [ + 52.5351867, + 13.3352396 + ] + ] + }, + { + "osmId": "446633273", + "name": null, + "lengthMeters": 111.20006743741345, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4701387, + 13.3873277 + ], + [ + 52.4700639, + 13.3876442 + ], + [ + 52.4700267, + 13.3877976 + ], + [ + 52.4699779, + 13.3880257 + ], + [ + 52.4699374, + 13.3882486 + ], + [ + 52.4699038, + 13.3884709 + ], + [ + 52.4698695, + 13.3886647 + ], + [ + 52.469823, + 13.3888836 + ] + ] + }, + { + "osmId": "446633278", + "name": "Berliner Ringbahn", + "lengthMeters": 556.4454355607568, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5357747, + 13.3432196 + ], + [ + 52.535571, + 13.3410621 + ], + [ + 52.5354593, + 13.3401264 + ], + [ + 52.5353591, + 13.339301 + ], + [ + 52.5348532, + 13.3351348 + ] + ] + }, + { + "osmId": "446633279", + "name": "Berliner Ringbahn", + "lengthMeters": 578.3464536680739, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5337391, + 13.3267822 + ], + [ + 52.5340203, + 13.328864 + ], + [ + 52.5341069, + 13.3294944 + ], + [ + 52.534358, + 13.3315417 + ], + [ + 52.5345904, + 13.3333843 + ], + [ + 52.5346939, + 13.3342051 + ], + [ + 52.5347326, + 13.3345123 + ], + [ + 52.5348104, + 13.3351491 + ] + ] + }, + { + "osmId": "446633280", + "name": "Verbindungsbahn Baumschulenweg\u2013Neuk\u00f6lln", + "lengthMeters": 260.5638640442129, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694654, + 13.4862529 + ], + [ + 52.4697541, + 13.4857748 + ], + [ + 52.4700888, + 13.4851852 + ], + [ + 52.4701395, + 13.4850947 + ], + [ + 52.4703997, + 13.4846389 + ], + [ + 52.4706401, + 13.484204 + ], + [ + 52.4707557, + 13.483972 + ], + [ + 52.4708651, + 13.4837214 + ], + [ + 52.470927, + 13.4835578 + ], + [ + 52.4709975, + 13.4833566 + ] + ] + }, + { + "osmId": "446682248", + "name": null, + "lengthMeters": 85.93635219525582, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5048584, + 13.4591279 + ], + [ + 52.5048255, + 13.4593143 + ], + [ + 52.5046435, + 13.4603475 + ] + ] + }, + { + "osmId": "446682249", + "name": null, + "lengthMeters": 146.2523775003468, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5033253, + 13.4670866 + ], + [ + 52.5035981, + 13.4655491 + ], + [ + 52.5036975, + 13.4650142 + ] + ] + }, + { + "osmId": "446682250", + "name": null, + "lengthMeters": 118.46902667567976, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5034509, + 13.4678126 + ], + [ + 52.5031648, + 13.4693324 + ], + [ + 52.5031349, + 13.4694841 + ] + ] + }, + { + "osmId": "446682252", + "name": null, + "lengthMeters": 167.41781418095917, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5030756, + 13.4701994 + ], + [ + 52.5030874, + 13.4701318 + ], + [ + 52.5030975, + 13.4700738 + ], + [ + 52.5031095, + 13.4700071 + ], + [ + 52.5033244, + 13.468873 + ], + [ + 52.5035042, + 13.4678285 + ] + ] + }, + { + "osmId": "446682255", + "name": null, + "lengthMeters": 342.8298877521956, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027975, + 13.470314 + ], + [ + 52.5022595, + 13.4731491 + ], + [ + 52.5022337, + 13.473289 + ], + [ + 52.5019003, + 13.4750594 + ], + [ + 52.5018833, + 13.4751511 + ] + ] + }, + { + "osmId": "446682260", + "name": null, + "lengthMeters": 211.57093834325875, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5033445, + 13.4673203 + ], + [ + 52.5032767, + 13.467715 + ], + [ + 52.5032476, + 13.4678721 + ], + [ + 52.5031149, + 13.468588 + ], + [ + 52.5028485, + 13.4700253 + ], + [ + 52.5028422, + 13.4700592 + ], + [ + 52.5028203, + 13.4701851 + ], + [ + 52.5027975, + 13.470314 + ] + ] + }, + { + "osmId": "446682261", + "name": null, + "lengthMeters": 632.4860497882795, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5035042, + 13.4678285 + ], + [ + 52.5035332, + 13.4676436 + ], + [ + 52.5036234, + 13.4670622 + ], + [ + 52.503781, + 13.466084 + ], + [ + 52.5039101, + 13.4652635 + ], + [ + 52.5042285, + 13.4632648 + ], + [ + 52.5043597, + 13.4624638 + ], + [ + 52.5046333, + 13.4609132 + ], + [ + 52.5047488, + 13.4602629 + ], + [ + 52.5050054, + 13.4588161 + ] + ] + }, + { + "osmId": "446682262", + "name": null, + "lengthMeters": 189.91560329526473, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5025664, + 13.4728857 + ], + [ + 52.5026939, + 13.4724795 + ], + [ + 52.502814, + 13.4720954 + ], + [ + 52.5028987, + 13.4717783 + ], + [ + 52.5029642, + 13.4714987 + ], + [ + 52.5030199, + 13.4712453 + ], + [ + 52.5032289, + 13.4703043 + ] + ] + }, + { + "osmId": "446682263", + "name": null, + "lengthMeters": 363.49296527136437, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023057, + 13.4753697 + ], + [ + 52.5023727, + 13.4739391 + ], + [ + 52.5023752, + 13.4738838 + ], + [ + 52.5023894, + 13.4735743 + ], + [ + 52.5024213, + 13.4732225 + ], + [ + 52.5024634, + 13.4729389 + ], + [ + 52.5025328, + 13.4725126 + ], + [ + 52.5026277, + 13.4720359 + ], + [ + 52.5027771, + 13.4714719 + ], + [ + 52.5028999, + 13.470984 + ], + [ + 52.5030117, + 13.4704979 + ], + [ + 52.5030756, + 13.4701994 + ] + ] + }, + { + "osmId": "446700168", + "name": null, + "lengthMeters": 376.64695528955133, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026229, + 13.481154 + ], + [ + 52.5024863, + 13.4803554 + ], + [ + 52.502433, + 13.4800178 + ], + [ + 52.5023722, + 13.4794566 + ], + [ + 52.5023618, + 13.4793483 + ], + [ + 52.5022998, + 13.4787053 + ], + [ + 52.5022543, + 13.4780156 + ], + [ + 52.5022431, + 13.4774075 + ], + [ + 52.5022417, + 13.4770512 + ], + [ + 52.5022412, + 13.4768459 + ], + [ + 52.5022458, + 13.4767197 + ], + [ + 52.5022925, + 13.4756571 + ] + ] + }, + { + "osmId": "446700170", + "name": "Ostbahn", + "lengthMeters": 220.32536175443906, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.503778, + 13.4679916 + ], + [ + 52.5037039, + 13.4683493 + ], + [ + 52.503605, + 13.468875 + ], + [ + 52.5034063, + 13.469934 + ], + [ + 52.503186, + 13.4710979 + ] + ] + }, + { + "osmId": "446912891", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 76.26415346051687, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.462806, + 9.9932608 + ], + [ + 53.4629481, + 9.9933335 + ], + [ + 53.4630248, + 9.993372 + ], + [ + 53.4634643, + 9.993584 + ] + ] + }, + { + "osmId": "446918539", + "name": "U4", + "lengthMeters": 607.5323670687624, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4965154, + 13.344365 + ], + [ + 52.4978197, + 13.3483378 + ], + [ + 52.498505, + 13.350457 + ], + [ + 52.4986381, + 13.350941 + ], + [ + 52.4987095, + 13.3512105 + ], + [ + 52.4990639, + 13.3523012 + ] + ] + }, + { + "osmId": "446918541", + "name": "U4", + "lengthMeters": 78.59727008302187, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997447, + 13.3541023 + ], + [ + 52.4996972, + 13.3538134 + ], + [ + 52.4996433, + 13.3535586 + ], + [ + 52.499578, + 13.3532971 + ], + [ + 52.4994838, + 13.3530291 + ] + ] + }, + { + "osmId": "446918542", + "name": "U4", + "lengthMeters": 78.28699075727235, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997327, + 13.3541971 + ], + [ + 52.4996265, + 13.353693 + ], + [ + 52.4995902, + 13.3535295 + ], + [ + 52.4995682, + 13.3534466 + ], + [ + 52.4995437, + 13.3533672 + ], + [ + 52.499507, + 13.3532623 + ], + [ + 52.4994556, + 13.35314 + ] + ] + }, + { + "osmId": "446918543", + "name": "U4", + "lengthMeters": 2129.29848041842, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987984, + 13.3511885 + ], + [ + 52.4978598, + 13.3483047 + ], + [ + 52.4966287, + 13.3445108 + ], + [ + 52.4964748, + 13.3439783 + ], + [ + 52.4963967, + 13.3437187 + ], + [ + 52.4961053, + 13.3427839 + ], + [ + 52.4960346, + 13.3426034 + ], + [ + 52.4960019, + 13.3425241 + ], + [ + 52.4959001, + 13.3423297 + ], + [ + 52.4958137, + 13.3422022 + ], + [ + 52.4957352, + 13.3421069 + ], + [ + 52.4956145, + 13.3419942 + ], + [ + 52.4955637, + 13.341952 + ], + [ + 52.4954979, + 13.3419069 + ], + [ + 52.4953958, + 13.341851 + ], + [ + 52.4953859, + 13.3418471 + ], + [ + 52.4953457, + 13.3418314 + ], + [ + 52.4952762, + 13.3418103 + ], + [ + 52.4952046, + 13.3417964 + ], + [ + 52.4944508, + 13.3417639 + ], + [ + 52.4942356, + 13.3417616 + ], + [ + 52.4924024, + 13.3418449 + ], + [ + 52.4914184, + 13.3419113 + ], + [ + 52.4913455, + 13.341912 + ], + [ + 52.4912564, + 13.341904 + ], + [ + 52.4911664, + 13.3418855 + ], + [ + 52.4911116, + 13.3418696 + ], + [ + 52.4910589, + 13.3418509 + ], + [ + 52.4909886, + 13.34182 + ], + [ + 52.4909198, + 13.3417829 + ], + [ + 52.4908349, + 13.3417271 + ], + [ + 52.4907525, + 13.3416626 + ], + [ + 52.4905678, + 13.3414734 + ], + [ + 52.4904849, + 13.3413617 + ], + [ + 52.4900193, + 13.3406232 + ], + [ + 52.4899638, + 13.3405546 + ], + [ + 52.4899035, + 13.3404901 + ], + [ + 52.4898425, + 13.3404352 + ], + [ + 52.4897774, + 13.3403841 + ], + [ + 52.4897119, + 13.3403431 + ], + [ + 52.4896445, + 13.3403092 + ], + [ + 52.48955, + 13.3402763 + ], + [ + 52.4894899, + 13.3402632 + ], + [ + 52.4889727, + 13.3401928 + ], + [ + 52.4887375, + 13.340161 + ], + [ + 52.4886133, + 13.3401469 + ], + [ + 52.4884703, + 13.3401433 + ], + [ + 52.4882822, + 13.3401578 + ], + [ + 52.4881213, + 13.340181 + ], + [ + 52.4879788, + 13.3402108 + ], + [ + 52.4878199, + 13.3402541 + ], + [ + 52.4839079, + 13.3416654 + ], + [ + 52.4835142, + 13.3417869 + ], + [ + 52.4833909, + 13.341814 + ] + ] + }, + { + "osmId": "447019473", + "name": null, + "lengthMeters": 269.2883697577675, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.474919, + 9.8224867 + ], + [ + 53.4748522, + 9.8212443 + ], + [ + 53.4748191, + 9.8206299 + ], + [ + 53.4747407, + 9.8192403 + ], + [ + 53.4746973, + 9.8184348 + ] + ] + }, + { + "osmId": "447019482", + "name": "Niederelbebahn", + "lengthMeters": 268.8996925233602, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4749576, + 9.8224896 + ], + [ + 53.4748988, + 9.8214141 + ], + [ + 53.4748543, + 9.820625 + ], + [ + 53.4747772, + 9.8192422 + ], + [ + 53.4747339, + 9.8184439 + ] + ] + }, + { + "osmId": "447526430", + "name": null, + "lengthMeters": 434.5770344381343, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6118457, + 13.4525768 + ], + [ + 52.6115659, + 13.4528869 + ], + [ + 52.6112889, + 13.4532116 + ], + [ + 52.6109576, + 13.4536392 + ], + [ + 52.6106374, + 13.4541043 + ], + [ + 52.6103888, + 13.4545197 + ], + [ + 52.6100816, + 13.4550519 + ], + [ + 52.6097967, + 13.4555454 + ], + [ + 52.6093768, + 13.4562322 + ], + [ + 52.6093341, + 13.456289 + ], + [ + 52.609151, + 13.4565327 + ], + [ + 52.6089215, + 13.4568177 + ] + ] + }, + { + "osmId": "447776666", + "name": null, + "lengthMeters": 1405.5962942247957, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5640052, + 13.514974 + ], + [ + 52.5637995, + 13.5152341 + ], + [ + 52.5635938, + 13.51548 + ], + [ + 52.5632172, + 13.5159062 + ], + [ + 52.5632092, + 13.5159154 + ], + [ + 52.562982, + 13.5161783 + ], + [ + 52.5619448, + 13.5174899 + ], + [ + 52.5614702, + 13.5180972 + ], + [ + 52.5609567, + 13.5187542 + ], + [ + 52.5609029, + 13.5188231 + ], + [ + 52.5582188, + 13.5222317 + ], + [ + 52.5580933, + 13.5223797 + ], + [ + 52.5577149, + 13.5228109 + ], + [ + 52.5573099, + 13.5232489 + ], + [ + 52.556835, + 13.5237253 + ], + [ + 52.5567219, + 13.5238361 + ], + [ + 52.556318, + 13.5242142 + ], + [ + 52.55622, + 13.5243022 + ], + [ + 52.5562004, + 13.5243198 + ], + [ + 52.556086, + 13.5244217 + ], + [ + 52.5558562, + 13.5246154 + ], + [ + 52.5558117, + 13.5246512 + ], + [ + 52.5557261, + 13.5247201 + ], + [ + 52.5556003, + 13.5248122 + ], + [ + 52.5554565, + 13.5249105 + ], + [ + 52.5552946, + 13.5250155 + ], + [ + 52.5551609, + 13.5250947 + ], + [ + 52.5550185, + 13.5251657 + ], + [ + 52.5548931, + 13.525224 + ], + [ + 52.5547601, + 13.5252741 + ], + [ + 52.5546229, + 13.5253187 + ], + [ + 52.5544765, + 13.5253615 + ], + [ + 52.5543804, + 13.5253861 + ], + [ + 52.5542643, + 13.5254089 + ], + [ + 52.5541546, + 13.5254242 + ], + [ + 52.5541336, + 13.5254271 + ], + [ + 52.5540354, + 13.5254373 + ], + [ + 52.5539856, + 13.5254424 + ], + [ + 52.5538694, + 13.5254498 + ], + [ + 52.5537522, + 13.5254519 + ], + [ + 52.5536522, + 13.5254493 + ], + [ + 52.5535392, + 13.5254428 + ], + [ + 52.5534429, + 13.5254319 + ], + [ + 52.5533495, + 13.525421 + ] + ] + }, + { + "osmId": "447946090", + "name": null, + "lengthMeters": 362.6771316106378, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4812473, + 13.5182091 + ], + [ + 52.4806813, + 13.5194951 + ], + [ + 52.4806396, + 13.5195899 + ], + [ + 52.480351, + 13.5202457 + ], + [ + 52.4802419, + 13.5204937 + ], + [ + 52.4802031, + 13.5205819 + ], + [ + 52.479885, + 13.5213049 + ], + [ + 52.4798503, + 13.5213839 + ], + [ + 52.4798098, + 13.5214761 + ], + [ + 52.4794167, + 13.5223693 + ], + [ + 52.4793746, + 13.522465 + ], + [ + 52.4793372, + 13.5225501 + ] + ] + }, + { + "osmId": "448201369", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1866.6762209562348, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.527956, + 13.5359666 + ], + [ + 52.5290073, + 13.5355802 + ], + [ + 52.5290469, + 13.5355657 + ], + [ + 52.5307524, + 13.5349389 + ], + [ + 52.5312362, + 13.5347618 + ], + [ + 52.5317373, + 13.53457 + ], + [ + 52.5356652, + 13.5331368 + ], + [ + 52.5377822, + 13.5323643 + ], + [ + 52.5378145, + 13.5323525 + ], + [ + 52.5378223, + 13.5323497 + ], + [ + 52.5382679, + 13.5321873 + ], + [ + 52.540388, + 13.5314145 + ], + [ + 52.5408817, + 13.5312321 + ], + [ + 52.5437284, + 13.5301803 + ], + [ + 52.5443402, + 13.5299542 + ] + ] + }, + { + "osmId": "448201370", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1969.9655580434924, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5443213, + 13.5299086 + ], + [ + 52.5437192, + 13.5301289 + ], + [ + 52.5408758, + 13.5311691 + ], + [ + 52.5401622, + 13.5314301 + ], + [ + 52.5382279, + 13.5321355 + ], + [ + 52.5378207, + 13.5322839 + ], + [ + 52.536992, + 13.5325861 + ], + [ + 52.536945, + 13.5326011 + ], + [ + 52.5356598, + 13.5330722 + ], + [ + 52.5317292, + 13.534513 + ], + [ + 52.5312272, + 13.534696 + ], + [ + 52.5307405, + 13.5348735 + ], + [ + 52.5289952, + 13.5355154 + ], + [ + 52.5287278, + 13.5356112 + ], + [ + 52.5270286, + 13.5362396 + ] + ] + }, + { + "osmId": "448363422", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 259.59002670707514, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4022738, + 10.0677155 + ], + [ + 53.4028722, + 10.0666985 + ], + [ + 53.4034361, + 10.0658011 + ], + [ + 53.4037446, + 10.0653101 + ], + [ + 53.4039478, + 10.0649868 + ] + ] + }, + { + "osmId": "448363425", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 258.7947416855684, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4023087, + 10.0677698 + ], + [ + 53.4027758, + 10.0669858 + ], + [ + 53.4039818, + 10.0650564 + ] + ] + }, + { + "osmId": "448363426", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 260.2281318045043, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4024491, + 10.0680095 + ], + [ + 53.4028804, + 10.0672837 + ], + [ + 53.4036675, + 10.0660391 + ], + [ + 53.4038565, + 10.0657403 + ], + [ + 53.4040874, + 10.0653645 + ], + [ + 53.4041349, + 10.0652872 + ] + ] + }, + { + "osmId": "448647162", + "name": null, + "lengthMeters": 288.4170564254062, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5117313, + 13.2454623 + ], + [ + 52.5116792, + 13.2451355 + ], + [ + 52.5116709, + 13.2450852 + ], + [ + 52.5116053, + 13.244678 + ], + [ + 52.5115475, + 13.2442964 + ], + [ + 52.5114707, + 13.2437849 + ], + [ + 52.5114659, + 13.2437548 + ], + [ + 52.5114213, + 13.2434713 + ], + [ + 52.5113614, + 13.2430801 + ], + [ + 52.5113572, + 13.2430524 + ], + [ + 52.5112963, + 13.2426553 + ], + [ + 52.5112475, + 13.2423363 + ], + [ + 52.5111299, + 13.2415947 + ], + [ + 52.5111223, + 13.2415487 + ], + [ + 52.5111125, + 13.2414879 + ], + [ + 52.5110879, + 13.2413337 + ] + ] + }, + { + "osmId": "448975412", + "name": null, + "lengthMeters": 291.0436770265274, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4923753, + 13.2948941 + ], + [ + 52.4911685, + 13.2965103 + ], + [ + 52.4910412, + 13.2966876 + ], + [ + 52.4903599, + 13.2976217 + ], + [ + 52.4903552, + 13.2976274 + ] + ] + }, + { + "osmId": "449664343", + "name": null, + "lengthMeters": 163.32511841976125, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6308038, + 10.0072085 + ], + [ + 53.6307168, + 10.0072689 + ], + [ + 53.6305603, + 10.0074205 + ], + [ + 53.6303776, + 10.0076198 + ], + [ + 53.6302039, + 10.0078187 + ], + [ + 53.6300228, + 10.0080314 + ], + [ + 53.62995, + 10.0081389 + ], + [ + 53.6298945, + 10.0082408 + ], + [ + 53.629745, + 10.0085058 + ], + [ + 53.629652, + 10.0087049 + ] + ] + }, + { + "osmId": "449765018", + "name": null, + "lengthMeters": 394.9554959641061, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1458869, + 11.4949631 + ], + [ + 48.1460056, + 11.494265 + ], + [ + 48.146106, + 11.4937074 + ], + [ + 48.1462873, + 11.4927119 + ], + [ + 48.1463075, + 11.4926012 + ], + [ + 48.1463198, + 11.4925383 + ], + [ + 48.1464036, + 11.4921093 + ], + [ + 48.1464793, + 11.4917632 + ], + [ + 48.1465747, + 11.4914024 + ], + [ + 48.1466851, + 11.4910293 + ], + [ + 48.1467498, + 11.4908378 + ], + [ + 48.1469252, + 11.4903494 + ], + [ + 48.1470766, + 11.4899766 + ] + ] + }, + { + "osmId": "450504477", + "name": "Industriebahn Tegel\u2013Friedrichsfelde", + "lengthMeters": 448.24607254322774, + "maxSpeedKph": 40.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6072694, + 13.3510013 + ], + [ + 52.6073056, + 13.3512296 + ], + [ + 52.6073421, + 13.35149 + ], + [ + 52.6073714, + 13.3517225 + ], + [ + 52.6073934, + 13.3519891 + ], + [ + 52.6073962, + 13.3524339 + ], + [ + 52.6073934, + 13.3528375 + ], + [ + 52.6073781, + 13.3532804 + ], + [ + 52.6073617, + 13.3537116 + ], + [ + 52.6072126, + 13.3576082 + ] + ] + }, + { + "osmId": "450504478", + "name": "ehemalige Industriebahn Tegel\u2013Friedrichsfelde", + "lengthMeters": 223.19971471597745, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6074146, + 13.3531948 + ], + [ + 52.6074117, + 13.353361 + ], + [ + 52.6073757, + 13.3544403 + ], + [ + 52.6073565, + 13.354962 + ], + [ + 52.6073028, + 13.356495 + ] + ] + }, + { + "osmId": "451100078", + "name": null, + "lengthMeters": 158.20895479768555, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5361236, + 10.0242049 + ], + [ + 53.5361893, + 10.0242173 + ], + [ + 53.5362284, + 10.0242247 + ], + [ + 53.5362532, + 10.0242278 + ], + [ + 53.5362878, + 10.0242312 + ], + [ + 53.5363521, + 10.0242284 + ], + [ + 53.5363908, + 10.024227 + ], + [ + 53.5364269, + 10.0242228 + ], + [ + 53.5364805, + 10.024221 + ], + [ + 53.5365304, + 10.024213 + ], + [ + 53.5365847, + 10.0241996 + ], + [ + 53.536632, + 10.0241876 + ], + [ + 53.5366749, + 10.0241752 + ], + [ + 53.5367078, + 10.0241641 + ], + [ + 53.5367629, + 10.0241404 + ], + [ + 53.5368094, + 10.0241192 + ], + [ + 53.5368583, + 10.0240967 + ], + [ + 53.5368963, + 10.0240749 + ], + [ + 53.5369815, + 10.0240243 + ], + [ + 53.53704, + 10.0239857 + ], + [ + 53.5370983, + 10.0239408 + ], + [ + 53.5371504, + 10.0238946 + ], + [ + 53.5372069, + 10.0238432 + ], + [ + 53.5372788, + 10.0237725 + ], + [ + 53.5373527, + 10.0236926 + ], + [ + 53.53746, + 10.0235763 + ] + ] + }, + { + "osmId": "452951625", + "name": null, + "lengthMeters": 111.2111350793564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1285432, + 11.6060929 + ], + [ + 48.1278335, + 11.6050371 + ] + ] + }, + { + "osmId": "452951626", + "name": null, + "lengthMeters": 111.10356110881503, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1284638, + 11.6062122 + ], + [ + 48.1277586, + 11.6051517 + ] + ] + }, + { + "osmId": "452951627", + "name": null, + "lengthMeters": 111.32628525741357, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1276364, + 11.6053359 + ], + [ + 48.1283443, + 11.6063966 + ] + ] + }, + { + "osmId": "453082173", + "name": "Berliner Ringbahn", + "lengthMeters": 203.47825178082644, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5435543, + 13.3690035 + ], + [ + 52.5425062, + 13.3666463 + ], + [ + 52.5424743, + 13.3665745 + ] + ] + }, + { + "osmId": "453732009", + "name": null, + "lengthMeters": 116.1669302667851, + "maxSpeedKph": 40.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6126218, + 13.3137524 + ], + [ + 52.612525, + 13.3138598 + ], + [ + 52.612189, + 13.314225 + ], + [ + 52.611871, + 13.3145586 + ], + [ + 52.6117466, + 13.3146918 + ] + ] + }, + { + "osmId": "453841552", + "name": "Berliner Ringbahn", + "lengthMeters": 113.62461081583365, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5369835, + 13.3510382 + ], + [ + 52.5369148, + 13.3505735 + ], + [ + 52.5368711, + 13.350302 + ], + [ + 52.5367852, + 13.3498392 + ], + [ + 52.5366979, + 13.3494264 + ] + ] + }, + { + "osmId": "453841556", + "name": "Berliner Ringbahn", + "lengthMeters": 215.41119420945844, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371958, + 13.3538185 + ], + [ + 52.5372328, + 13.3541207 + ], + [ + 52.5372735, + 13.3543761 + ], + [ + 52.5373416, + 13.3547459 + ], + [ + 52.537384, + 13.3549361 + ], + [ + 52.537431, + 13.3551219 + ], + [ + 52.5375087, + 13.3553928 + ], + [ + 52.5375629, + 13.3555514 + ], + [ + 52.5375958, + 13.3556529 + ], + [ + 52.5376397, + 13.3557727 + ], + [ + 52.5377454, + 13.3560463 + ], + [ + 52.5378827, + 13.3563539 + ], + [ + 52.5378991, + 13.3563894 + ], + [ + 52.5380183, + 13.3566623 + ] + ] + }, + { + "osmId": "454292955", + "name": null, + "lengthMeters": 166.29426631385596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7105723, + 9.9921371 + ], + [ + 53.7101926, + 9.9921713 + ], + [ + 53.7092747, + 9.992254 + ], + [ + 53.7090789, + 9.9922716 + ] + ] + }, + { + "osmId": "455506242", + "name": "ehem. Stettiner Bahn", + "lengthMeters": 96.81088111733904, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406638, + 13.3796806 + ], + [ + 52.5398, + 13.3798597 + ] + ] + }, + { + "osmId": "456111456", + "name": null, + "lengthMeters": 121.62174187910745, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.559578, + 9.9283662 + ], + [ + 53.5595774, + 9.9285241 + ], + [ + 53.5595786, + 9.9286988 + ], + [ + 53.5595827, + 9.9288465 + ], + [ + 53.5595889, + 9.9289654 + ], + [ + 53.5596026, + 9.9291516 + ], + [ + 53.5596209, + 9.9293275 + ], + [ + 53.5596456, + 9.92952 + ], + [ + 53.5596739, + 9.9296983 + ], + [ + 53.559704, + 9.9298628 + ], + [ + 53.5597379, + 9.9300183 + ], + [ + 53.5597724, + 9.9301632 + ] + ] + }, + { + "osmId": "456114516", + "name": null, + "lengthMeters": 785.6697599534531, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6080353, + 9.8824486 + ], + [ + 53.6078677, + 9.8828581 + ], + [ + 53.6077601, + 9.8830872 + ], + [ + 53.6076359, + 9.8833323 + ], + [ + 53.6076291, + 9.8833457 + ], + [ + 53.6068339, + 9.8848938 + ], + [ + 53.6055356, + 9.8874137 + ], + [ + 53.6046832, + 9.8890927 + ], + [ + 53.6040322, + 9.890364 + ], + [ + 53.603967, + 9.8904913 + ], + [ + 53.6034455, + 9.8914983 + ] + ] + }, + { + "osmId": "456587966", + "name": null, + "lengthMeters": 131.29975785716456, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5523226, + 10.010616 + ], + [ + 53.5523192, + 10.0104961 + ], + [ + 53.5523219, + 10.0103906 + ], + [ + 53.5523301, + 10.0102565 + ], + [ + 53.5523391, + 10.0101465 + ], + [ + 53.5523423, + 10.0100656 + ], + [ + 53.5523412, + 10.0099615 + ], + [ + 53.5523384, + 10.0098324 + ], + [ + 53.5523329, + 10.0096912 + ], + [ + 53.5523259, + 10.009546 + ], + [ + 53.5523146, + 10.0094165 + ], + [ + 53.5523021, + 10.0093004 + ], + [ + 53.5522857, + 10.0091496 + ], + [ + 53.5522743, + 10.0090487 + ], + [ + 53.5522579, + 10.008952 + ], + [ + 53.5522367, + 10.0088543 + ], + [ + 53.552206, + 10.0087631 + ], + [ + 53.5521764, + 10.0086761 + ] + ] + }, + { + "osmId": "456979634", + "name": null, + "lengthMeters": 187.13325564534077, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4309696, + 13.2590748 + ], + [ + 52.4308635, + 13.2587547 + ], + [ + 52.4307073, + 13.2582402 + ], + [ + 52.4305199, + 13.2575448 + ], + [ + 52.4304246, + 13.2571276 + ], + [ + 52.4302872, + 13.2565551 + ] + ] + }, + { + "osmId": "457001644", + "name": "Anhalter Bahn", + "lengthMeters": 192.98898681400757, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3870528, + 13.2993254 + ], + [ + 52.3886709, + 13.2999954 + ], + [ + 52.3887355, + 13.3000221 + ] + ] + }, + { + "osmId": "457001645", + "name": "Anhalter Bahn", + "lengthMeters": 205.6851686218995, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3870708, + 13.299211 + ], + [ + 52.3863579, + 13.2989154 + ], + [ + 52.3852776, + 13.2984672 + ] + ] + }, + { + "osmId": "457638571", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 116.56738466295977, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5482659, + 10.0320301 + ], + [ + 53.5473116, + 10.0327604 + ] + ] + }, + { + "osmId": "457638573", + "name": "Bergedorfer S-Bahn", + "lengthMeters": 273.1753998022506, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5519263, + 10.028618 + ], + [ + 53.5519098, + 10.0286521 + ], + [ + 53.5517975, + 10.0288824 + ], + [ + 53.5517333, + 10.0290029 + ], + [ + 53.551573, + 10.0292786 + ], + [ + 53.5514786, + 10.0294257 + ], + [ + 53.5513521, + 10.0296037 + ], + [ + 53.5512192, + 10.0297652 + ], + [ + 53.5511406, + 10.0298536 + ], + [ + 53.550967, + 10.0300154 + ], + [ + 53.5507601, + 10.0301667 + ], + [ + 53.5504164, + 10.0303962 + ], + [ + 53.5500492, + 10.0306453 + ], + [ + 53.5498774, + 10.0307679 + ] + ] + }, + { + "osmId": "457758757", + "name": null, + "lengthMeters": 84.326943211513, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1513779, + 11.4585836 + ], + [ + 48.1514662, + 11.458207 + ], + [ + 48.1516003, + 11.4576715 + ], + [ + 48.1516398, + 11.4575169 + ] + ] + }, + { + "osmId": "457758947", + "name": null, + "lengthMeters": 215.225185049352, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15398, + 11.4457095 + ], + [ + 48.1539244, + 11.4458882 + ], + [ + 48.153803, + 11.4463454 + ], + [ + 48.1537456, + 11.4466024 + ], + [ + 48.1536721, + 11.4469317 + ], + [ + 48.153577, + 11.4474545 + ], + [ + 48.1535537, + 11.4476177 + ], + [ + 48.1535166, + 11.447875 + ], + [ + 48.1534792, + 11.4481373 + ], + [ + 48.1534407, + 11.4484861 + ] + ] + }, + { + "osmId": "457758948", + "name": null, + "lengthMeters": 283.46036363245673, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1534891, + 11.4489357 + ], + [ + 48.1536325, + 11.4478871 + ], + [ + 48.153695, + 11.4474656 + ], + [ + 48.1537822, + 11.4469768 + ], + [ + 48.1538753, + 11.4465751 + ], + [ + 48.153919, + 11.4464087 + ], + [ + 48.1539588, + 11.4462573 + ], + [ + 48.1540597, + 11.445927 + ], + [ + 48.1541554, + 11.445658 + ], + [ + 48.1542601, + 11.4453957 + ], + [ + 48.1542849, + 11.4453336 + ] + ] + }, + { + "osmId": "457758949", + "name": null, + "lengthMeters": 94.06293693495095, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1548218, + 11.4441063 + ], + [ + 48.154938, + 11.4438806 + ], + [ + 48.1549913, + 11.4437771 + ], + [ + 48.1552062, + 11.4433639 + ], + [ + 48.1553277, + 11.4430908 + ] + ] + }, + { + "osmId": "457892912", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 275.18973959409175, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4277823, + 13.7519816 + ], + [ + 52.4282321, + 13.7515501 + ], + [ + 52.428308, + 13.7514773 + ], + [ + 52.4283312, + 13.7514547 + ], + [ + 52.4286837, + 13.7510925 + ], + [ + 52.4289374, + 13.7508001 + ], + [ + 52.4291826, + 13.7505111 + ], + [ + 52.4294074, + 13.750234 + ], + [ + 52.4296339, + 13.7499247 + ], + [ + 52.4296574, + 13.749892 + ], + [ + 52.429813, + 13.7496755 + ] + ] + }, + { + "osmId": "457892913", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 280.26908985563045, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4298144, + 13.7495828 + ], + [ + 52.4296302, + 13.749843 + ], + [ + 52.4296107, + 13.7498706 + ], + [ + 52.4293805, + 13.7501823 + ], + [ + 52.4291583, + 13.750463 + ], + [ + 52.4289179, + 13.7507494 + ], + [ + 52.4286176, + 13.7510817 + ], + [ + 52.4283215, + 13.7513909 + ], + [ + 52.4282214, + 13.7514943 + ], + [ + 52.4282152, + 13.7514997 + ], + [ + 52.4282037, + 13.7515105 + ], + [ + 52.4281287, + 13.7515813 + ], + [ + 52.4277481, + 13.7519339 + ] + ] + }, + { + "osmId": "457982334", + "name": null, + "lengthMeters": 377.7330829659379, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0944457, + 11.609635 + ], + [ + 48.0944145, + 11.6104502 + ], + [ + 48.0943332, + 11.612494 + ], + [ + 48.094292, + 11.6135379 + ], + [ + 48.0942427, + 11.614712 + ] + ] + }, + { + "osmId": "458074583", + "name": null, + "lengthMeters": 105.29586985149439, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6102957, + 9.9013618 + ], + [ + 53.6103442, + 9.9013885 + ], + [ + 53.6109369, + 9.9017158 + ], + [ + 53.6109864, + 9.9017418 + ], + [ + 53.6111971, + 9.9018507 + ] + ] + }, + { + "osmId": "458074584", + "name": null, + "lengthMeters": 103.34540633759458, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6102837, + 9.9014233 + ], + [ + 53.6103343, + 9.9014513 + ], + [ + 53.6109255, + 9.9017787 + ], + [ + 53.6109748, + 9.9018026 + ], + [ + 53.6111695, + 9.9018968 + ] + ] + }, + { + "osmId": "458254213", + "name": "U7", + "lengthMeters": 871.7238808520469, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4426309, + 13.4478135 + ], + [ + 52.4428405, + 13.4480538 + ], + [ + 52.4432253, + 13.448497 + ], + [ + 52.4436075, + 13.4489108 + ], + [ + 52.4441294, + 13.4493057 + ], + [ + 52.4444858, + 13.4495136 + ], + [ + 52.4447638, + 13.4496504 + ], + [ + 52.4451594, + 13.449761 + ], + [ + 52.44536, + 13.4498061 + ], + [ + 52.4475892, + 13.4500657 + ], + [ + 52.4487543, + 13.4500554 + ], + [ + 52.4501541, + 13.4497935 + ] + ] + }, + { + "osmId": "458418087", + "name": null, + "lengthMeters": 778.6159236604859, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5138342, + 13.5426683 + ], + [ + 52.5139177, + 13.5432049 + ], + [ + 52.5139379, + 13.5434879 + ], + [ + 52.5139498, + 13.5438096 + ], + [ + 52.5139369, + 13.5444011 + ], + [ + 52.5139317, + 13.5445011 + ], + [ + 52.5139197, + 13.5447074 + ], + [ + 52.5138576, + 13.5452395 + ], + [ + 52.5133567, + 13.5489267 + ], + [ + 52.513265, + 13.5497444 + ], + [ + 52.5131996, + 13.5506191 + ], + [ + 52.513115, + 13.5528647 + ], + [ + 52.5130674, + 13.5540251 + ] + ] + }, + { + "osmId": "458521151", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 180.30046143504515, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6057113, + 10.0096154 + ], + [ + 53.6060333, + 10.0107926 + ], + [ + 53.6063994, + 10.0120899 + ] + ] + }, + { + "osmId": "458521152", + "name": null, + "lengthMeters": 190.6775101716396, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6058712, + 10.0095208 + ], + [ + 53.6054464, + 10.0079477 + ], + [ + 53.6051795, + 10.0068766 + ] + ] + }, + { + "osmId": "459200144", + "name": null, + "lengthMeters": 126.58675343025386, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5442554, + 9.9801354 + ], + [ + 53.5442492, + 9.980379 + ], + [ + 53.5442275, + 9.9806332 + ], + [ + 53.5441996, + 9.9809403 + ], + [ + 53.5441894, + 9.9811726 + ], + [ + 53.5441865, + 9.9813001 + ], + [ + 53.5441869, + 9.9814097 + ], + [ + 53.5441957, + 9.9816327 + ], + [ + 53.5441977, + 9.9816605 + ], + [ + 53.5442295, + 9.9820397 + ] + ] + }, + { + "osmId": "459344269", + "name": null, + "lengthMeters": 234.4213660294537, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5162742, + 13.3800282 + ], + [ + 52.5162891, + 13.3805031 + ], + [ + 52.5163491, + 13.381627 + ], + [ + 52.5163661, + 13.3819088 + ], + [ + 52.5163898, + 13.3821882 + ], + [ + 52.5164463, + 13.3827482 + ], + [ + 52.5164579, + 13.3828666 + ], + [ + 52.5164819, + 13.3831105 + ], + [ + 52.5165029, + 13.3833477 + ], + [ + 52.5165203, + 13.3834653 + ] + ] + }, + { + "osmId": "459344270", + "name": null, + "lengthMeters": 232.96503366641065, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165865, + 13.3834281 + ], + [ + 52.5165588, + 13.3828513 + ], + [ + 52.5164966, + 13.381875 + ], + [ + 52.5164367, + 13.3809354 + ], + [ + 52.5164058, + 13.3804821 + ], + [ + 52.516378, + 13.3800025 + ] + ] + }, + { + "osmId": "459344271", + "name": null, + "lengthMeters": 648.2948079625362, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114894, + 13.3770033 + ], + [ + 52.512591, + 13.3771798 + ], + [ + 52.513017, + 13.3772308 + ], + [ + 52.5145336, + 13.3773954 + ], + [ + 52.5146602, + 13.3774047 + ], + [ + 52.5148389, + 13.3774051 + ], + [ + 52.5150207, + 13.3774198 + ], + [ + 52.5151575, + 13.3774163 + ], + [ + 52.5152878, + 13.3774407 + ], + [ + 52.5153921, + 13.3774712 + ], + [ + 52.5154419, + 13.377502 + ], + [ + 52.5154863, + 13.3775377 + ], + [ + 52.5155672, + 13.3776093 + ], + [ + 52.5156458, + 13.3776892 + ], + [ + 52.5157112, + 13.3777649 + ], + [ + 52.5157724, + 13.3778465 + ], + [ + 52.5158406, + 13.377948 + ], + [ + 52.5159003, + 13.3780514 + ], + [ + 52.515958, + 13.3781626 + ], + [ + 52.5160146, + 13.3782826 + ], + [ + 52.5160668, + 13.378424 + ], + [ + 52.5161144, + 13.3785692 + ], + [ + 52.5161486, + 13.3786983 + ], + [ + 52.5161781, + 13.3788289 + ], + [ + 52.5161996, + 13.3789484 + ], + [ + 52.5162156, + 13.3790684 + ], + [ + 52.5162266, + 13.3791831 + ], + [ + 52.5162345, + 13.3792975 + ], + [ + 52.5162495, + 13.3795401 + ], + [ + 52.5162742, + 13.3800282 + ] + ] + }, + { + "osmId": "459344272", + "name": null, + "lengthMeters": 420.9510791464506, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5196669, + 13.3853781 + ], + [ + 52.5196088, + 13.3853492 + ], + [ + 52.5195498, + 13.3853245 + ], + [ + 52.5194879, + 13.3853051 + ], + [ + 52.5194563, + 13.3852964 + ], + [ + 52.5194005, + 13.3852875 + ], + [ + 52.5193734, + 13.3852831 + ], + [ + 52.5193155, + 13.3852811 + ], + [ + 52.5192296, + 13.3852925 + ], + [ + 52.5191422, + 13.3853156 + ], + [ + 52.5190776, + 13.3853304 + ], + [ + 52.5189694, + 13.3853552 + ], + [ + 52.5185683, + 13.3854313 + ], + [ + 52.5181682, + 13.3854999 + ], + [ + 52.5180235, + 13.38552 + ], + [ + 52.5179183, + 13.3855235 + ], + [ + 52.5178439, + 13.3855212 + ], + [ + 52.5177708, + 13.3855152 + ], + [ + 52.5177108, + 13.3855021 + ], + [ + 52.5176522, + 13.3854857 + ], + [ + 52.5175703, + 13.3854514 + ], + [ + 52.5174908, + 13.3854094 + ], + [ + 52.5173677, + 13.3853095 + ], + [ + 52.5172467, + 13.3851979 + ], + [ + 52.5171067, + 13.3850467 + ], + [ + 52.5170171, + 13.3849244 + ], + [ + 52.5169654, + 13.3848458 + ], + [ + 52.516902, + 13.3847306 + ], + [ + 52.5168194, + 13.3845413 + ], + [ + 52.5167554, + 13.3843458 + ], + [ + 52.5166916, + 13.3840912 + ], + [ + 52.5166568, + 13.3838937 + ], + [ + 52.5166281, + 13.3837241 + ], + [ + 52.5166017, + 13.3835558 + ], + [ + 52.5165932, + 13.3834921 + ], + [ + 52.5165865, + 13.3834281 + ] + ] + }, + { + "osmId": "459553420", + "name": null, + "lengthMeters": 145.89015141215532, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5485466, + 9.9870645 + ], + [ + 53.5482791, + 9.9868917 + ], + [ + 53.5481611, + 9.9868175 + ], + [ + 53.5479912, + 9.9867107 + ], + [ + 53.5478279, + 9.9866004 + ], + [ + 53.5476859, + 9.98648 + ], + [ + 53.5475018, + 9.9862884 + ], + [ + 53.5473622, + 9.9861349 + ] + ] + }, + { + "osmId": "459553426", + "name": null, + "lengthMeters": 207.98073555195913, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5456914, + 9.9847205 + ], + [ + 53.5458183, + 9.9848208 + ], + [ + 53.5464284, + 9.9852956 + ], + [ + 53.5467067, + 9.9855346 + ], + [ + 53.5469981, + 9.9858098 + ], + [ + 53.5473473, + 9.9861761 + ] + ] + }, + { + "osmId": "459553431", + "name": null, + "lengthMeters": 238.66922043501617, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5473622, + 9.9861349 + ], + [ + 53.5472473, + 9.9860054 + ], + [ + 53.5470145, + 9.9857695 + ], + [ + 53.5467177, + 9.9854852 + ], + [ + 53.5464408, + 9.9852497 + ], + [ + 53.5461818, + 9.9850452 + ], + [ + 53.5459043, + 9.9848315 + ], + [ + 53.5458281, + 9.9847745 + ], + [ + 53.5454568, + 9.9844819 + ] + ] + }, + { + "osmId": "459553437", + "name": null, + "lengthMeters": 106.4079484360077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5499733, + 9.9877649 + ], + [ + 53.549884, + 9.9874104 + ], + [ + 53.5498125, + 9.9870894 + ], + [ + 53.5497554, + 9.9866906 + ], + [ + 53.5497072, + 9.9862881 + ], + [ + 53.5497009, + 9.986227 + ] + ] + }, + { + "osmId": "459553445", + "name": null, + "lengthMeters": 107.40091753611406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5495868, + 9.9862752 + ], + [ + 53.5496625, + 9.986716 + ], + [ + 53.549746, + 9.987114 + ], + [ + 53.5498278, + 9.9874578 + ], + [ + 53.549921, + 9.9877978 + ] + ] + }, + { + "osmId": "459557124", + "name": "Mahlower Kurve", + "lengthMeters": 767.441826280179, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3524117, + 13.4188027 + ], + [ + 52.3522677, + 13.4181531 + ], + [ + 52.3521775, + 13.4176142 + ], + [ + 52.352106, + 13.4170534 + ], + [ + 52.3520639, + 13.4164823 + ], + [ + 52.352052, + 13.4162016 + ], + [ + 52.3520458, + 13.4155831 + ], + [ + 52.3520561, + 13.415199 + ], + [ + 52.3520706, + 13.4149417 + ], + [ + 52.3521208, + 13.4145885 + ], + [ + 52.3521823, + 13.4142123 + ], + [ + 52.3522668, + 13.4138332 + ], + [ + 52.3523466, + 13.4135312 + ], + [ + 52.352458, + 13.4131899 + ], + [ + 52.3525783, + 13.4128649 + ], + [ + 52.3526487, + 13.4126802 + ], + [ + 52.3527147, + 13.4125108 + ], + [ + 52.3528402, + 13.4122613 + ], + [ + 52.3529659, + 13.4119734 + ], + [ + 52.3531229, + 13.4117256 + ], + [ + 52.3531842, + 13.4116398 + ], + [ + 52.3532774, + 13.4114959 + ], + [ + 52.3534569, + 13.4112484 + ], + [ + 52.3537199, + 13.4109397 + ], + [ + 52.3539845, + 13.4106723 + ], + [ + 52.3542213, + 13.4104734 + ], + [ + 52.3544304, + 13.4103164 + ], + [ + 52.354624, + 13.4102115 + ], + [ + 52.3550641, + 13.4100294 + ] + ] + }, + { + "osmId": "459557125", + "name": "Teltower Kreisbahn", + "lengthMeters": 134.15020077633497, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4017641, + 13.2710319 + ], + [ + 52.4011982, + 13.2697626 + ], + [ + 52.4011397, + 13.2696712 + ], + [ + 52.4010193, + 13.2694828 + ] + ] + }, + { + "osmId": "459557128", + "name": null, + "lengthMeters": 133.76580304059706, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4009992, + 13.2695145 + ], + [ + 52.4011767, + 13.2697847 + ], + [ + 52.401394, + 13.2702733 + ], + [ + 52.4017426, + 13.2710572 + ] + ] + }, + { + "osmId": "459579786", + "name": null, + "lengthMeters": 591.2954745457405, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4668001, + 13.3607636 + ], + [ + 52.4664748, + 13.3605806 + ], + [ + 52.4620938, + 13.3582986 + ], + [ + 52.4617344, + 13.3581093 + ] + ] + }, + { + "osmId": "460100365", + "name": null, + "lengthMeters": 133.12547378524374, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419709, + 11.5470984 + ], + [ + 48.1420303, + 11.5464538 + ], + [ + 48.1420874, + 11.5457905 + ], + [ + 48.1421277, + 11.5453197 + ] + ] + }, + { + "osmId": "460100366", + "name": null, + "lengthMeters": 186.7197707621613, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420813, + 11.5453125 + ], + [ + 48.1420791, + 11.545339 + ], + [ + 48.1420447, + 11.5457851 + ], + [ + 48.1420003, + 11.5463727 + ], + [ + 48.1419415, + 11.5470043 + ], + [ + 48.1418679, + 11.5478084 + ] + ] + }, + { + "osmId": "460100368", + "name": null, + "lengthMeters": 81.62440895396024, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416926, + 11.5495412 + ], + [ + 48.1417453, + 11.5488924 + ], + [ + 48.1417768, + 11.5484632 + ], + [ + 48.1417775, + 11.548454 + ], + [ + 48.1417779, + 11.5484486 + ] + ] + }, + { + "osmId": "460100369", + "name": null, + "lengthMeters": 109.1039596679901, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417779, + 11.5484486 + ], + [ + 48.1418567, + 11.5473699 + ], + [ + 48.1418715, + 11.5471821 + ], + [ + 48.1418875, + 11.5469874 + ] + ] + }, + { + "osmId": "460100370", + "name": null, + "lengthMeters": 108.60300673051154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418473, + 11.5469881 + ], + [ + 48.1418157, + 11.5473409 + ], + [ + 48.1417339, + 11.5484418 + ] + ] + }, + { + "osmId": "460222152", + "name": "U9", + "lengthMeters": 810.1612285503495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5572181, + 13.373135 + ], + [ + 52.5569526, + 13.3729301 + ], + [ + 52.5567577, + 13.3727958 + ], + [ + 52.5566613, + 13.3727294 + ], + [ + 52.5543982, + 13.3711678 + ], + [ + 52.5539541, + 13.3707963 + ], + [ + 52.5537176, + 13.3705615 + ], + [ + 52.5535204, + 13.3703465 + ], + [ + 52.5532388, + 13.3699748 + ], + [ + 52.551925, + 13.3678332 + ], + [ + 52.5517418, + 13.3675215 + ], + [ + 52.5515379, + 13.3671823 + ], + [ + 52.5514647, + 13.367071 + ], + [ + 52.5512069, + 13.366688 + ] + ] + }, + { + "osmId": "460222153", + "name": "U9", + "lengthMeters": 698.8281976784862, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5518496, + 13.3679623 + ], + [ + 52.5523566, + 13.3687678 + ], + [ + 52.5531768, + 13.3700708 + ], + [ + 52.5534758, + 13.3704703 + ], + [ + 52.5536817, + 13.370702 + ], + [ + 52.5539, + 13.3709215 + ], + [ + 52.5543707, + 13.371293 + ], + [ + 52.5554684, + 13.3720554 + ], + [ + 52.5565582, + 13.372861 + ], + [ + 52.5567042, + 13.372978 + ], + [ + 52.557134, + 13.373322 + ] + ] + }, + { + "osmId": "460364209", + "name": null, + "lengthMeters": 113.93116692599628, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519499, + 13.3728182 + ], + [ + 52.5193278, + 13.3728929 + ], + [ + 52.5191555, + 13.3729612 + ], + [ + 52.5190899, + 13.372987 + ], + [ + 52.5188413, + 13.3730757 + ], + [ + 52.5185883, + 13.3731564 + ], + [ + 52.5184992, + 13.373184 + ] + ] + }, + { + "osmId": "460364211", + "name": null, + "lengthMeters": 500.8466583698419, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5222378, + 13.3710666 + ], + [ + 52.5220044, + 13.3712709 + ], + [ + 52.5218174, + 13.3714255 + ], + [ + 52.521653, + 13.3715522 + ], + [ + 52.5214812, + 13.3716756 + ], + [ + 52.5212776, + 13.3718088 + ], + [ + 52.520921, + 13.3720236 + ], + [ + 52.5204283, + 13.3722915 + ], + [ + 52.520169, + 13.3724293 + ], + [ + 52.5199147, + 13.3725584 + ], + [ + 52.5196874, + 13.3726645 + ], + [ + 52.5195056, + 13.3727398 + ], + [ + 52.5193212, + 13.3728062 + ], + [ + 52.5191339, + 13.3728645 + ], + [ + 52.518949, + 13.3729161 + ], + [ + 52.5187593, + 13.3729577 + ], + [ + 52.5185737, + 13.3729912 + ], + [ + 52.5181919, + 13.3730533 + ], + [ + 52.5179414, + 13.373103 + ] + ] + }, + { + "osmId": "460364212", + "name": null, + "lengthMeters": 476.5373712115137, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5183707, + 13.3735614 + ], + [ + 52.5184696, + 13.373516 + ], + [ + 52.5201647, + 13.3726843 + ], + [ + 52.5204287, + 13.3725468 + ], + [ + 52.5213571, + 13.3720833 + ], + [ + 52.5214181, + 13.3720534 + ], + [ + 52.5217754, + 13.3718768 + ], + [ + 52.5221259, + 13.3717064 + ], + [ + 52.5224739, + 13.3715289 + ] + ] + }, + { + "osmId": "460364213", + "name": null, + "lengthMeters": 449.0650953043257, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5171021, + 13.3738958 + ], + [ + 52.517505, + 13.3737154 + ], + [ + 52.5176349, + 13.3736652 + ], + [ + 52.5179332, + 13.3735605 + ], + [ + 52.5182335, + 13.3734609 + ], + [ + 52.518316, + 13.3734331 + ], + [ + 52.5185094, + 13.3733637 + ], + [ + 52.5186043, + 13.3733292 + ], + [ + 52.5191049, + 13.373125 + ], + [ + 52.5192105, + 13.3730771 + ], + [ + 52.5194093, + 13.3729843 + ], + [ + 52.5195796, + 13.3729021 + ], + [ + 52.5204478, + 13.3724728 + ], + [ + 52.5205097, + 13.3724416 + ], + [ + 52.5210017, + 13.3721867 + ] + ] + }, + { + "osmId": "460736568", + "name": null, + "lengthMeters": 166.33765160037967, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5514655, + 10.0031511 + ], + [ + 53.5514296, + 10.0028792 + ], + [ + 53.5512869, + 10.0019006 + ], + [ + 53.5512276, + 10.0014922 + ], + [ + 53.5510777, + 10.0007211 + ] + ] + }, + { + "osmId": "460736569", + "name": null, + "lengthMeters": 165.95579646986073, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5510614, + 10.0007287 + ], + [ + 53.5512012, + 10.0015017 + ], + [ + 53.5512618, + 10.001913 + ], + [ + 53.5514019, + 10.0028877 + ], + [ + 53.5514375, + 10.0031587 + ] + ] + }, + { + "osmId": "460740234", + "name": null, + "lengthMeters": 141.7783172370638, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5281032, + 10.1501167 + ], + [ + 53.5287501, + 10.1501294 + ], + [ + 53.5293779, + 10.1500968 + ] + ] + }, + { + "osmId": "460740235", + "name": null, + "lengthMeters": 141.82783175413508, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5293783, + 10.1500101 + ], + [ + 53.5290864, + 10.1499883 + ], + [ + 53.5287529, + 10.1499443 + ], + [ + 53.5281042, + 10.1499275 + ] + ] + }, + { + "osmId": "460998538", + "name": null, + "lengthMeters": 560.8230146384332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.135629, + 11.6001004 + ], + [ + 48.1356311, + 11.6001512 + ], + [ + 48.1356324, + 11.6001791 + ], + [ + 48.1356634, + 11.6008364 + ], + [ + 48.1356996, + 11.6013815 + ], + [ + 48.1357163, + 11.601923 + ], + [ + 48.1357196, + 11.6022994 + ], + [ + 48.1357213, + 11.6024885 + ], + [ + 48.1357184, + 11.6026144 + ], + [ + 48.1357091, + 11.603062 + ], + [ + 48.1356631, + 11.6038551 + ], + [ + 48.1356334, + 11.6042557 + ], + [ + 48.1355974, + 11.6049328 + ], + [ + 48.1355944, + 11.6050534 + ], + [ + 48.1355924, + 11.6051307 + ], + [ + 48.1355971, + 11.6053312 + ], + [ + 48.1356143, + 11.6055081 + ], + [ + 48.1356627, + 11.6060043 + ], + [ + 48.1357036, + 11.6063908 + ], + [ + 48.1357573, + 11.6068729 + ], + [ + 48.1357988, + 11.6071684 + ], + [ + 48.13584, + 11.6073896 + ], + [ + 48.1358864, + 11.6075998 + ] + ] + }, + { + "osmId": "460999977", + "name": null, + "lengthMeters": 201.2385558251915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1371208, + 11.6174723 + ], + [ + 48.1369268, + 11.6156825 + ], + [ + 48.1369008, + 11.6154224 + ], + [ + 48.1368859, + 11.6151671 + ], + [ + 48.1368885, + 11.6150232 + ], + [ + 48.1368891, + 11.6147878 + ] + ] + }, + { + "osmId": "461000269", + "name": null, + "lengthMeters": 1279.8586240342727, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1360676, + 11.6341169 + ], + [ + 48.1360632, + 11.6339456 + ], + [ + 48.1360598, + 11.6338691 + ], + [ + 48.1360502, + 11.6336689 + ], + [ + 48.1360417, + 11.6334284 + ], + [ + 48.1360352, + 11.6333292 + ], + [ + 48.1360125, + 11.6320237 + ], + [ + 48.1359685, + 11.6306691 + ], + [ + 48.1359536, + 11.630384 + ], + [ + 48.1359396, + 11.6299603 + ], + [ + 48.1359071, + 11.6294311 + ], + [ + 48.1358696, + 11.6289044 + ], + [ + 48.1356966, + 11.6254822 + ], + [ + 48.1356894, + 11.6253121 + ], + [ + 48.1356826, + 11.6251413 + ], + [ + 48.1356822, + 11.6250024 + ], + [ + 48.1356871, + 11.6248632 + ], + [ + 48.1356959, + 11.6247625 + ], + [ + 48.1357082, + 11.6246608 + ], + [ + 48.1357366, + 11.6245061 + ], + [ + 48.1358073, + 11.6241685 + ], + [ + 48.1358548, + 11.6239916 + ], + [ + 48.1359125, + 11.6237948 + ], + [ + 48.136028, + 11.6234906 + ], + [ + 48.1363202, + 11.622783 + ], + [ + 48.1365302, + 11.6222809 + ], + [ + 48.1366351, + 11.6220333 + ], + [ + 48.136663, + 11.6219604 + ], + [ + 48.1367336, + 11.6217758 + ], + [ + 48.1368662, + 11.6214109 + ], + [ + 48.1369555, + 11.6211182 + ], + [ + 48.1370895, + 11.6206792 + ], + [ + 48.1371371, + 11.6205233 + ], + [ + 48.1371667, + 11.6204073 + ], + [ + 48.1371848, + 11.6203312 + ], + [ + 48.1372024, + 11.6202535 + ], + [ + 48.1372182, + 11.6201723 + ], + [ + 48.1372319, + 11.6200912 + ], + [ + 48.1372405, + 11.6200271 + ], + [ + 48.1372472, + 11.6199622 + ], + [ + 48.1372527, + 11.6198966 + ], + [ + 48.1372565, + 11.619831 + ], + [ + 48.1372601, + 11.6196804 + ], + [ + 48.1372595, + 11.6195342 + ], + [ + 48.1372536, + 11.6194069 + ], + [ + 48.1372506, + 11.6193439 + ], + [ + 48.1372466, + 11.6192809 + ], + [ + 48.1372081, + 11.6188445 + ], + [ + 48.1372014, + 11.6187407 + ], + [ + 48.1371986, + 11.6186465 + ], + [ + 48.1371999, + 11.6185058 + ], + [ + 48.1372027, + 11.6184146 + ], + [ + 48.1372028, + 11.6184015 + ], + [ + 48.1372029, + 11.6183746 + ], + [ + 48.1372016, + 11.618312 + ], + [ + 48.1372, + 11.6182629 + ], + [ + 48.137196, + 11.6182017 + ], + [ + 48.1371913, + 11.6181509 + ], + [ + 48.1371839, + 11.6180742 + ], + [ + 48.137145, + 11.6177171 + ], + [ + 48.1371208, + 11.6174723 + ] + ] + }, + { + "osmId": "461374085", + "name": null, + "lengthMeters": 282.27748314461275, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415497, + 11.5438778 + ], + [ + 48.1414749, + 11.5448464 + ], + [ + 48.1413672, + 11.5462826 + ], + [ + 48.1413077, + 11.5470951 + ], + [ + 48.1412651, + 11.5476581 + ] + ] + }, + { + "osmId": "461452916", + "name": null, + "lengthMeters": 1198.3867818511078, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4180501, + 13.5799991 + ], + [ + 52.4182646, + 13.5798133 + ], + [ + 52.4184426, + 13.579659 + ], + [ + 52.4186242, + 13.5795018 + ], + [ + 52.4187852, + 13.5793623 + ], + [ + 52.4188186, + 13.579333 + ], + [ + 52.4189298, + 13.5792357 + ], + [ + 52.418973, + 13.5791979 + ], + [ + 52.4191734, + 13.5790224 + ], + [ + 52.4195347, + 13.5787061 + ], + [ + 52.4195987, + 13.57865 + ], + [ + 52.4196299, + 13.5786227 + ], + [ + 52.4196618, + 13.5785947 + ], + [ + 52.4199728, + 13.5783435 + ], + [ + 52.420124, + 13.5782214 + ], + [ + 52.4202623, + 13.5781167 + ], + [ + 52.4205549, + 13.577895 + ], + [ + 52.4206112, + 13.5778544 + ], + [ + 52.4207679, + 13.5777416 + ], + [ + 52.4208481, + 13.5776838 + ], + [ + 52.421008, + 13.5775686 + ], + [ + 52.4211678, + 13.5774535 + ], + [ + 52.4212326, + 13.5774068 + ], + [ + 52.4214, + 13.5772863 + ], + [ + 52.4215897, + 13.5771546 + ], + [ + 52.422611, + 13.5764456 + ], + [ + 52.4226428, + 13.5764241 + ], + [ + 52.4226955, + 13.5763882 + ], + [ + 52.4229748, + 13.5761987 + ], + [ + 52.4233793, + 13.5759241 + ], + [ + 52.4238194, + 13.5756263 + ], + [ + 52.4243331, + 13.5752786 + ], + [ + 52.4246225, + 13.5750827 + ], + [ + 52.4251937, + 13.574707 + ], + [ + 52.4254087, + 13.5745652 + ], + [ + 52.4262477, + 13.574013 + ], + [ + 52.4269434, + 13.5735552 + ], + [ + 52.4277345, + 13.5730345 + ], + [ + 52.4278433, + 13.5729629 + ], + [ + 52.427915, + 13.5729157 + ] + ] + }, + { + "osmId": "461452920", + "name": null, + "lengthMeters": 1006.4848329205911, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4279083, + 13.5728636 + ], + [ + 52.4278321, + 13.5729141 + ], + [ + 52.4277248, + 13.5729853 + ], + [ + 52.4275394, + 13.5731083 + ], + [ + 52.4269896, + 13.5734729 + ], + [ + 52.426447, + 13.5738337 + ], + [ + 52.4261702, + 13.5740178 + ], + [ + 52.4251902, + 13.5746635 + ], + [ + 52.4251844, + 13.5746673 + ], + [ + 52.4249308, + 13.574839 + ], + [ + 52.4242962, + 13.5752688 + ], + [ + 52.4237439, + 13.5756337 + ], + [ + 52.4235562, + 13.5757577 + ], + [ + 52.4230726, + 13.5760792 + ], + [ + 52.4228981, + 13.5762008 + ], + [ + 52.4226846, + 13.5763495 + ], + [ + 52.4226297, + 13.5763878 + ], + [ + 52.4223204, + 13.5766033 + ], + [ + 52.4221208, + 13.5767424 + ], + [ + 52.4219821, + 13.5768391 + ], + [ + 52.421588, + 13.5771137 + ], + [ + 52.4213907, + 13.5772535 + ], + [ + 52.4210882, + 13.577468 + ], + [ + 52.4208045, + 13.577669 + ], + [ + 52.4203842, + 13.577967 + ], + [ + 52.4201811, + 13.5781304 + ], + [ + 52.4201128, + 13.5781853 + ], + [ + 52.4196675, + 13.5785473 + ], + [ + 52.4196199, + 13.578586 + ], + [ + 52.4195699, + 13.5786287 + ] + ] + }, + { + "osmId": "461514284", + "name": null, + "lengthMeters": 227.9765688161559, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4415841, + 13.5699909 + ], + [ + 52.4417192, + 13.569915 + ], + [ + 52.4424554, + 13.5695012 + ], + [ + 52.4425804, + 13.569431 + ], + [ + 52.4426578, + 13.5693875 + ], + [ + 52.4427494, + 13.5693672 + ], + [ + 52.442867, + 13.5693468 + ], + [ + 52.4432196, + 13.5692857 + ], + [ + 52.4435677, + 13.5692253 + ] + ] + }, + { + "osmId": "461514285", + "name": null, + "lengthMeters": 229.0679759898377, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4435654, + 13.5691842 + ], + [ + 52.4434522, + 13.5692018 + ], + [ + 52.4427449, + 13.5693182 + ], + [ + 52.4426235, + 13.5693598 + ], + [ + 52.441572, + 13.5699507 + ] + ] + }, + { + "osmId": "461514286", + "name": null, + "lengthMeters": 562.1006066803419, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4366931, + 13.5716044 + ], + [ + 52.4371994, + 13.5716555 + ], + [ + 52.4379029, + 13.5717472 + ], + [ + 52.4381154, + 13.5717215 + ], + [ + 52.4384659, + 13.5716202 + ], + [ + 52.4385019, + 13.5716035 + ], + [ + 52.43886, + 13.5714377 + ], + [ + 52.4398169, + 13.5709649 + ], + [ + 52.4402235, + 13.570741 + ], + [ + 52.4415594, + 13.5700051 + ], + [ + 52.4415841, + 13.5699909 + ] + ] + }, + { + "osmId": "461514287", + "name": null, + "lengthMeters": 560.8906862954951, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.441572, + 13.5699507 + ], + [ + 52.4409519, + 13.5702991 + ], + [ + 52.4408436, + 13.57036 + ], + [ + 52.4406289, + 13.5704807 + ], + [ + 52.4402177, + 13.5707076 + ], + [ + 52.4401175, + 13.5707597 + ], + [ + 52.4399223, + 13.570862 + ], + [ + 52.4398055, + 13.5709232 + ], + [ + 52.439691, + 13.57098 + ], + [ + 52.4395282, + 13.5710609 + ], + [ + 52.4393935, + 13.5711278 + ], + [ + 52.4392009, + 13.5712235 + ], + [ + 52.4390865, + 13.5712803 + ], + [ + 52.438931, + 13.5713576 + ], + [ + 52.4387567, + 13.5714441 + ], + [ + 52.4386665, + 13.5714889 + ], + [ + 52.438457, + 13.5715742 + ], + [ + 52.4383428, + 13.5716168 + ], + [ + 52.4381184, + 13.5716697 + ], + [ + 52.4379613, + 13.5716845 + ], + [ + 52.4379013, + 13.5716902 + ], + [ + 52.4377702, + 13.5716728 + ], + [ + 52.4375579, + 13.5716446 + ], + [ + 52.4374862, + 13.5716351 + ], + [ + 52.4372906, + 13.5716091 + ], + [ + 52.4372255, + 13.5716005 + ], + [ + 52.4369677, + 13.571586 + ], + [ + 52.4366902, + 13.5715703 + ] + ] + }, + { + "osmId": "461514288", + "name": null, + "lengthMeters": 841.0271564183344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4291769, + 13.5722293 + ], + [ + 52.4292315, + 13.5722078 + ], + [ + 52.4295487, + 13.572083 + ], + [ + 52.4295673, + 13.5720772 + ], + [ + 52.4297868, + 13.5720089 + ], + [ + 52.4300162, + 13.5719375 + ], + [ + 52.4302303, + 13.5718782 + ], + [ + 52.4304013, + 13.571831 + ], + [ + 52.4309071, + 13.5716912 + ], + [ + 52.431005, + 13.5716651 + ], + [ + 52.4313112, + 13.5715835 + ], + [ + 52.4316167, + 13.571502 + ], + [ + 52.4319158, + 13.5714435 + ], + [ + 52.4320188, + 13.5714318 + ], + [ + 52.4324863, + 13.5713788 + ], + [ + 52.4325837, + 13.5713749 + ], + [ + 52.4328757, + 13.5713631 + ], + [ + 52.4329002, + 13.5713621 + ], + [ + 52.4337685, + 13.5714184 + ], + [ + 52.4344752, + 13.5714569 + ], + [ + 52.4346326, + 13.5714649 + ], + [ + 52.4347925, + 13.5714731 + ], + [ + 52.4349601, + 13.5714816 + ], + [ + 52.434971, + 13.5714823 + ], + [ + 52.4350559, + 13.5714878 + ], + [ + 52.4352945, + 13.5715034 + ], + [ + 52.4354403, + 13.5715129 + ], + [ + 52.435989, + 13.5715487 + ], + [ + 52.4361098, + 13.5715565 + ], + [ + 52.4362997, + 13.5715689 + ], + [ + 52.4364381, + 13.5715814 + ], + [ + 52.4366899, + 13.5716041 + ], + [ + 52.4366931, + 13.5716044 + ] + ] + }, + { + "osmId": "461514289", + "name": null, + "lengthMeters": 841.7566668340154, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4366902, + 13.5715703 + ], + [ + 52.4366485, + 13.571567 + ], + [ + 52.4365341, + 13.5715579 + ], + [ + 52.4363456, + 13.571543 + ], + [ + 52.4361517, + 13.5715276 + ], + [ + 52.4356871, + 13.5714907 + ], + [ + 52.4355712, + 13.5714837 + ], + [ + 52.4352031, + 13.5714613 + ], + [ + 52.4351346, + 13.5714571 + ], + [ + 52.4347036, + 13.5714309 + ], + [ + 52.4344751, + 13.5714211 + ], + [ + 52.4328215, + 13.5713261 + ], + [ + 52.4323728, + 13.5713488 + ], + [ + 52.4319072, + 13.571402 + ], + [ + 52.4313952, + 13.5715156 + ], + [ + 52.4309026, + 13.5716523 + ], + [ + 52.4306271, + 13.5717287 + ], + [ + 52.430012, + 13.5718987 + ], + [ + 52.4299906, + 13.5719051 + ], + [ + 52.4295435, + 13.5720447 + ], + [ + 52.4291678, + 13.5721934 + ] + ] + }, + { + "osmId": "461758551", + "name": null, + "lengthMeters": 606.7318734842383, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5858096, + 9.9211443 + ], + [ + 53.5872153, + 9.9200633 + ], + [ + 53.5872385, + 9.9200455 + ], + [ + 53.5876687, + 9.9196793 + ], + [ + 53.5881043, + 9.9192778 + ], + [ + 53.588193, + 9.9191894 + ], + [ + 53.5885479, + 9.9188356 + ], + [ + 53.5890151, + 9.918341 + ], + [ + 53.5898717, + 9.917413 + ], + [ + 53.5901239, + 9.9171054 + ], + [ + 53.5905254, + 9.916575 + ] + ] + }, + { + "osmId": "462192700", + "name": null, + "lengthMeters": 180.68233039404356, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1643736, + 11.5033217 + ], + [ + 48.1642359, + 11.5046258 + ], + [ + 48.1641897, + 11.505059 + ], + [ + 48.1641626, + 11.5052811 + ], + [ + 48.1641356, + 11.505487 + ], + [ + 48.164107, + 11.505673 + ], + [ + 48.1640978, + 11.5057217 + ] + ] + }, + { + "osmId": "462192701", + "name": null, + "lengthMeters": 181.21831854714083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1641305, + 11.5057369 + ], + [ + 48.1641412, + 11.505678 + ], + [ + 48.1641657, + 11.5054989 + ], + [ + 48.1641889, + 11.5052918 + ], + [ + 48.1642128, + 11.5050744 + ], + [ + 48.1643928, + 11.5033926 + ], + [ + 48.1643995, + 11.5033275 + ] + ] + }, + { + "osmId": "462192702", + "name": null, + "lengthMeters": 103.94714290081514, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1645184, + 11.5019371 + ], + [ + 48.1644964, + 11.5021551 + ], + [ + 48.1644789, + 11.5023278 + ], + [ + 48.1644605, + 11.5025066 + ], + [ + 48.1644477, + 11.5026317 + ], + [ + 48.1644337, + 11.5027529 + ], + [ + 48.1643736, + 11.5033217 + ] + ] + }, + { + "osmId": "462192703", + "name": null, + "lengthMeters": 104.05916518308285, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1643995, + 11.5033275 + ], + [ + 48.1644361, + 11.5029734 + ], + [ + 48.1644421, + 11.5029162 + ], + [ + 48.1644588, + 11.5027588 + ], + [ + 48.1644722, + 11.5026387 + ], + [ + 48.1644844, + 11.5025122 + ], + [ + 48.1645436, + 11.5019412 + ] + ] + }, + { + "osmId": "462192704", + "name": null, + "lengthMeters": 519.223792501044, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1653336, + 11.4950447 + ], + [ + 48.1653087, + 11.4952581 + ], + [ + 48.1652809, + 11.4954913 + ], + [ + 48.1651787, + 11.4963064 + ], + [ + 48.1647858, + 11.4993819 + ], + [ + 48.1647002, + 11.5001415 + ], + [ + 48.1645184, + 11.5019371 + ] + ] + }, + { + "osmId": "462192705", + "name": null, + "lengthMeters": 525.895209147405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1645436, + 11.5019412 + ], + [ + 48.1647081, + 11.5003527 + ], + [ + 48.1647294, + 11.5001471 + ], + [ + 48.1648132, + 11.4993867 + ], + [ + 48.1652058, + 11.4963137 + ], + [ + 48.1652462, + 11.49601 + ], + [ + 48.1652847, + 11.4957498 + ], + [ + 48.1653277, + 11.4955281 + ], + [ + 48.1654634, + 11.4949972 + ] + ] + }, + { + "osmId": "462572439", + "name": "U7", + "lengthMeters": 603.7173436875356, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4872233, + 13.3300771 + ], + [ + 52.4869306, + 13.3285365 + ], + [ + 52.4866089, + 13.3268868 + ], + [ + 52.4865824, + 13.3266824 + ], + [ + 52.4865722, + 13.3265642 + ], + [ + 52.4865507, + 13.3261245 + ], + [ + 52.4865232, + 13.3256272 + ], + [ + 52.4865102, + 13.3251545 + ], + [ + 52.4865072, + 13.3247418 + ], + [ + 52.4865003, + 13.3243898 + ], + [ + 52.4864706, + 13.3232444 + ], + [ + 52.4864553, + 13.322724 + ], + [ + 52.4864484, + 13.3223555 + ], + [ + 52.486453, + 13.3219785 + ], + [ + 52.4864661, + 13.3216144 + ], + [ + 52.486486, + 13.3213312 + ] + ] + }, + { + "osmId": "462572440", + "name": "U7", + "lengthMeters": 162.8063234394515, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4875685, + 13.3324128 + ], + [ + 52.4875164, + 13.3319492 + ], + [ + 52.4872916, + 13.3304957 + ], + [ + 52.4872233, + 13.3300771 + ] + ] + }, + { + "osmId": "463418761", + "name": "Linie G", + "lengthMeters": 178.90596700108492, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.518606, + 13.3418486 + ], + [ + 52.5183994, + 13.341886 + ], + [ + 52.5177461, + 13.342012 + ], + [ + 52.5173653, + 13.342086 + ], + [ + 52.5173599, + 13.3420871 + ], + [ + 52.5172709, + 13.3421059 + ], + [ + 52.5171669, + 13.3421279 + ], + [ + 52.5171473, + 13.342132 + ], + [ + 52.5171183, + 13.3421382 + ], + [ + 52.5170083, + 13.3421603 + ] + ] + }, + { + "osmId": "463431362", + "name": "Berliner Ringbahn", + "lengthMeters": 181.13836291911198, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5403055, + 13.438361 + ], + [ + 52.5402964, + 13.4383804 + ], + [ + 52.5402877, + 13.4383997 + ], + [ + 52.5393226, + 13.4404969 + ] + ] + }, + { + "osmId": "463431363", + "name": "Berliner Ringbahn", + "lengthMeters": 181.04636266595082, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5393555, + 13.4405329 + ], + [ + 52.5403213, + 13.4384372 + ], + [ + 52.5403284, + 13.4384217 + ], + [ + 52.5403388, + 13.4383992 + ] + ] + }, + { + "osmId": "463431365", + "name": null, + "lengthMeters": 174.3313114479913, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5404123, + 13.4384656 + ], + [ + 52.5404039, + 13.4384835 + ], + [ + 52.5399384, + 13.4394918 + ], + [ + 52.5398615, + 13.4396585 + ], + [ + 52.539783, + 13.4398295 + ], + [ + 52.5397, + 13.4400104 + ], + [ + 52.5395358, + 13.4403648 + ], + [ + 52.5395236, + 13.4403913 + ], + [ + 52.5394647, + 13.4405192 + ] + ] + }, + { + "osmId": "463435052", + "name": null, + "lengthMeters": 168.1150585582381, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4708291, + 13.3853557 + ], + [ + 52.4708373, + 13.3853265 + ], + [ + 52.4709319, + 13.3849618 + ], + [ + 52.4709547, + 13.3848638 + ], + [ + 52.4710365, + 13.3844825 + ], + [ + 52.4711184, + 13.3841255 + ], + [ + 52.4711773, + 13.3838337 + ], + [ + 52.4711993, + 13.3837007 + ], + [ + 52.4712316, + 13.3835184 + ], + [ + 52.4712517, + 13.383392 + ], + [ + 52.4712787, + 13.383227 + ], + [ + 52.4712964, + 13.3831188 + ], + [ + 52.471315, + 13.3830088 + ] + ] + }, + { + "osmId": "463435053", + "name": null, + "lengthMeters": 171.46529086265298, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712184, + 13.3829725 + ], + [ + 52.4712012, + 13.3830714 + ], + [ + 52.4711679, + 13.3832503 + ], + [ + 52.4711248, + 13.3834643 + ], + [ + 52.4710864, + 13.3836422 + ], + [ + 52.4710348, + 13.3838685 + ], + [ + 52.4709169, + 13.3843854 + ], + [ + 52.4708272, + 13.3847758 + ], + [ + 52.4708027, + 13.3848824 + ], + [ + 52.4707393, + 13.3851561 + ], + [ + 52.470738, + 13.3851619 + ], + [ + 52.4707097, + 13.3852881 + ], + [ + 52.4707085, + 13.3852936 + ], + [ + 52.4707052, + 13.3853082 + ], + [ + 52.4706985, + 13.3853378 + ], + [ + 52.4706951, + 13.3853529 + ] + ] + }, + { + "osmId": "463435954", + "name": null, + "lengthMeters": 211.50796166693894, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4722299, + 13.4548186 + ], + [ + 52.4718451, + 13.4543126 + ], + [ + 52.4716913, + 13.4540813 + ], + [ + 52.4715011, + 13.4537356 + ], + [ + 52.4713829, + 13.4534921 + ], + [ + 52.4712667, + 13.4532158 + ], + [ + 52.4711581, + 13.452911 + ], + [ + 52.4711037, + 13.45274 + ], + [ + 52.4710512, + 13.4525609 + ], + [ + 52.4710236, + 13.4524573 + ] + ] + }, + { + "osmId": "463435955", + "name": null, + "lengthMeters": 215.37228388544224, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4708512, + 13.4525905 + ], + [ + 52.4709596, + 13.4528915 + ], + [ + 52.4711102, + 13.4532267 + ], + [ + 52.4713928, + 13.4537866 + ], + [ + 52.4715869, + 13.4541197 + ], + [ + 52.4717929, + 13.4544533 + ], + [ + 52.4720843, + 13.4548626 + ], + [ + 52.4721402, + 13.4549411 + ] + ] + }, + { + "osmId": "463437334", + "name": null, + "lengthMeters": 236.68153435173315, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5160412, + 13.4739715 + ], + [ + 52.5160656, + 13.4739541 + ], + [ + 52.5170975, + 13.4732263 + ], + [ + 52.5179908, + 13.4725965 + ], + [ + 52.5179972, + 13.472592 + ] + ] + }, + { + "osmId": "463438495", + "name": null, + "lengthMeters": 81.2752368092093, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5764918, + 13.3720895 + ], + [ + 52.5770501, + 13.3713132 + ] + ] + }, + { + "osmId": "463873973", + "name": "U1", + "lengthMeters": 182.87071266084894, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995785, + 13.3731862 + ], + [ + 52.4996299, + 13.370486 + ] + ] + }, + { + "osmId": "463873974", + "name": "U1", + "lengthMeters": 194.8077908527347, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995722, + 13.3704105 + ], + [ + 52.499527, + 13.3728106 + ], + [ + 52.4995247, + 13.3729346 + ], + [ + 52.4995178, + 13.3730698 + ], + [ + 52.4995024, + 13.3732852 + ] + ] + }, + { + "osmId": "463896642", + "name": null, + "lengthMeters": 173.6175159311709, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5543182, + 10.005378 + ], + [ + 53.5542906, + 10.0054029 + ], + [ + 53.5540214, + 10.0056493 + ], + [ + 53.5539113, + 10.005748 + ], + [ + 53.5539051, + 10.005753 + ], + [ + 53.5539001, + 10.0057571 + ], + [ + 53.5538932, + 10.0057628 + ], + [ + 53.5537379, + 10.0058933 + ], + [ + 53.553695, + 10.0059293 + ], + [ + 53.5536146, + 10.0059838 + ], + [ + 53.5535002, + 10.0060614 + ], + [ + 53.553191, + 10.0062796 + ], + [ + 53.5531736, + 10.0062922 + ], + [ + 53.5528963, + 10.0064517 + ] + ] + }, + { + "osmId": "464700826", + "name": null, + "lengthMeters": 304.5722234494606, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5488809, + 13.3866632 + ], + [ + 52.5487841, + 13.3861496 + ], + [ + 52.5486581, + 13.3854821 + ], + [ + 52.5485668, + 13.3849508 + ], + [ + 52.5485009, + 13.3845164 + ], + [ + 52.5484699, + 13.3842619 + ], + [ + 52.5484673, + 13.3842334 + ], + [ + 52.5484464, + 13.3840088 + ], + [ + 52.5484175, + 13.3835903 + ], + [ + 52.5483658, + 13.3826315 + ], + [ + 52.5483391, + 13.3822655 + ] + ] + }, + { + "osmId": "464700827", + "name": null, + "lengthMeters": 471.172818157642, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5466121, + 13.3759524 + ], + [ + 52.5469687, + 13.3767993 + ], + [ + 52.5470574, + 13.37701 + ], + [ + 52.547083, + 13.3770774 + ], + [ + 52.5471892, + 13.3773566 + ], + [ + 52.5472959, + 13.3776625 + ], + [ + 52.5473785, + 13.3779141 + ], + [ + 52.5474864, + 13.3782771 + ], + [ + 52.5476982, + 13.3790316 + ], + [ + 52.5479453, + 13.3800331 + ], + [ + 52.5479795, + 13.3801786 + ], + [ + 52.5479891, + 13.3802209 + ], + [ + 52.5480844, + 13.3806731 + ], + [ + 52.5481711, + 13.3811625 + ], + [ + 52.5482731, + 13.3819177 + ], + [ + 52.5483002, + 13.3822115 + ], + [ + 52.5483055, + 13.3822692 + ] + ] + }, + { + "osmId": "464700828", + "name": null, + "lengthMeters": 209.35024839718153, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5351248, + 13.3834568 + ], + [ + 52.5355024, + 13.3828329 + ], + [ + 52.5357922, + 13.3823542 + ], + [ + 52.5360132, + 13.3820022 + ], + [ + 52.5362551, + 13.3816682 + ], + [ + 52.5365116, + 13.3813734 + ] + ] + }, + { + "osmId": "464700829", + "name": null, + "lengthMeters": 205.48411154679135, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5436905, + 13.3788593 + ], + [ + 52.5435513, + 13.378856 + ], + [ + 52.5434072, + 13.3788641 + ], + [ + 52.5432825, + 13.3788821 + ], + [ + 52.5429935, + 13.3789368 + ], + [ + 52.5429137, + 13.3789537 + ], + [ + 52.5418538, + 13.3791698 + ] + ] + }, + { + "osmId": "464757323", + "name": null, + "lengthMeters": 508.66657405784736, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4995661, + 13.52176 + ], + [ + 52.4990927, + 13.5220431 + ], + [ + 52.4984099, + 13.5224046 + ], + [ + 52.4972665, + 13.5231233 + ], + [ + 52.4971497, + 13.5231967 + ], + [ + 52.4970193, + 13.5232885 + ], + [ + 52.4960364, + 13.5240042 + ], + [ + 52.4959391, + 13.5240864 + ], + [ + 52.4958566, + 13.5241736 + ], + [ + 52.4958137, + 13.524226 + ], + [ + 52.4957461, + 13.5243046 + ], + [ + 52.4956473, + 13.5244098 + ], + [ + 52.4955712, + 13.5245017 + ], + [ + 52.4954696, + 13.5246413 + ], + [ + 52.4953982, + 13.5247529 + ] + ] + }, + { + "osmId": "464757330", + "name": null, + "lengthMeters": 1978.0369821109357, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4996445, + 13.5217965 + ], + [ + 52.4999764, + 13.5215733 + ], + [ + 52.5001396, + 13.5214513 + ], + [ + 52.5002503, + 13.5213556 + ], + [ + 52.5003887, + 13.521223 + ], + [ + 52.5004921, + 13.5211061 + ], + [ + 52.5006068, + 13.520965 + ], + [ + 52.5007442, + 13.5207793 + ], + [ + 52.5009038, + 13.5205407 + ], + [ + 52.5010162, + 13.520351 + ], + [ + 52.5010999, + 13.5201991 + ], + [ + 52.5011911, + 13.5200192 + ], + [ + 52.5020835, + 13.5181187 + ], + [ + 52.5022298, + 13.5178314 + ], + [ + 52.5023456, + 13.5175954 + ], + [ + 52.5024662, + 13.5173757 + ], + [ + 52.5027044, + 13.5169703 + ], + [ + 52.5028334, + 13.5167653 + ], + [ + 52.502954, + 13.5165861 + ], + [ + 52.5034671, + 13.515898 + ], + [ + 52.5052583, + 13.5139266 + ], + [ + 52.5057154, + 13.5134244 + ], + [ + 52.5066504, + 13.5124038 + ], + [ + 52.5067806, + 13.5122617 + ], + [ + 52.5068438, + 13.5121843 + ], + [ + 52.5069752, + 13.5120081 + ], + [ + 52.5070274, + 13.5119282 + ], + [ + 52.5070764, + 13.5118444 + ], + [ + 52.5070999, + 13.5118003 + ], + [ + 52.5071347, + 13.5117317 + ], + [ + 52.5071968, + 13.5115907 + ], + [ + 52.5072542, + 13.5114425 + ], + [ + 52.5073445, + 13.5111904 + ], + [ + 52.5073835, + 13.5110584 + ], + [ + 52.507427, + 13.5108965 + ], + [ + 52.5074664, + 13.5107331 + ], + [ + 52.5074967, + 13.510595 + ], + [ + 52.5075287, + 13.510455 + ], + [ + 52.5075586, + 13.5103478 + ], + [ + 52.5108022, + 13.5000425 + ] + ] + }, + { + "osmId": "464757334", + "name": null, + "lengthMeters": 269.93858412265917, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953982, + 13.5247529 + ], + [ + 52.4952626, + 13.5250038 + ], + [ + 52.495134, + 13.5253079 + ], + [ + 52.4950415, + 13.525593 + ], + [ + 52.4949737, + 13.5258672 + ], + [ + 52.4949325, + 13.5260889 + ], + [ + 52.4949, + 13.5263327 + ], + [ + 52.4948845, + 13.5265091 + ], + [ + 52.4948771, + 13.5266443 + ], + [ + 52.494873, + 13.5268442 + ], + [ + 52.4948772, + 13.5270445 + ], + [ + 52.4948887, + 13.5272341 + ], + [ + 52.4949034, + 13.5273851 + ], + [ + 52.4949412, + 13.527651 + ], + [ + 52.4949756, + 13.5278289 + ], + [ + 52.4950117, + 13.5279835 + ], + [ + 52.4950614, + 13.5281624 + ], + [ + 52.4951437, + 13.5284318 + ] + ] + }, + { + "osmId": "464757339", + "name": null, + "lengthMeters": 197.27729638589454, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4951777, + 13.5284102 + ], + [ + 52.4950941, + 13.5281377 + ], + [ + 52.4950449, + 13.5279606 + ], + [ + 52.4950095, + 13.5278094 + ], + [ + 52.4949759, + 13.5276354 + ], + [ + 52.4949386, + 13.5273737 + ], + [ + 52.4949244, + 13.5272265 + ], + [ + 52.494913, + 13.5270406 + ], + [ + 52.494909, + 13.5268442 + ], + [ + 52.494913, + 13.5266479 + ], + [ + 52.4949202, + 13.526516 + ], + [ + 52.4949354, + 13.5263432 + ], + [ + 52.4949673, + 13.5261039 + ], + [ + 52.4950076, + 13.525887 + ], + [ + 52.4950748, + 13.5256152 + ] + ] + }, + { + "osmId": "464813779", + "name": null, + "lengthMeters": 558.8188049656479, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4603119, + 9.9918416 + ], + [ + 53.4605219, + 9.99196 + ], + [ + 53.4609754, + 9.9921955 + ], + [ + 53.4628265, + 9.9931382 + ], + [ + 53.4634767, + 9.9934693 + ], + [ + 53.4637199, + 9.9935888 + ], + [ + 53.4650151, + 9.9942553 + ], + [ + 53.4651194, + 9.9943 + ] + ] + }, + { + "osmId": "465161746", + "name": null, + "lengthMeters": 89.68411019156363, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.510596, + 13.376957 + ], + [ + 52.5109417, + 13.3769521 + ], + [ + 52.511402, + 13.3769886 + ] + ] + }, + { + "osmId": "465270175", + "name": null, + "lengthMeters": 90.27954921589931, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4964403, + 13.3742496 + ], + [ + 52.4956613, + 13.3738738 + ] + ] + }, + { + "osmId": "465270176", + "name": null, + "lengthMeters": 101.69086033499592, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4965246, + 13.3743531 + ], + [ + 52.4956466, + 13.3739328 + ] + ] + }, + { + "osmId": "465270178", + "name": null, + "lengthMeters": 104.6143630532193, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4965396, + 13.3744283 + ], + [ + 52.4956352, + 13.3740025 + ] + ] + }, + { + "osmId": "465270180", + "name": null, + "lengthMeters": 99.88390954737902, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4964743, + 13.3744997 + ], + [ + 52.4956107, + 13.3740937 + ] + ] + }, + { + "osmId": "465270190", + "name": null, + "lengthMeters": 91.93707881520697, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4963516, + 13.374778 + ], + [ + 52.495762, + 13.374459 + ], + [ + 52.4955663, + 13.3743531 + ] + ] + }, + { + "osmId": "465376248", + "name": null, + "lengthMeters": 161.00347689819486, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5243954, + 13.3924786 + ], + [ + 52.5241805, + 13.3923699 + ], + [ + 52.5239649, + 13.3922663 + ], + [ + 52.523748, + 13.392166 + ], + [ + 52.5235323, + 13.3920659 + ], + [ + 52.5232716, + 13.3919476 + ], + [ + 52.5230033, + 13.3918245 + ] + ] + }, + { + "osmId": "465376249", + "name": null, + "lengthMeters": 160.7752930212032, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229831, + 13.3919189 + ], + [ + 52.5232571, + 13.3920434 + ], + [ + 52.5235197, + 13.3921643 + ], + [ + 52.5237335, + 13.3922626 + ], + [ + 52.5238388, + 13.3923165 + ], + [ + 52.5239445, + 13.3923752 + ], + [ + 52.5240477, + 13.3924396 + ], + [ + 52.5241523, + 13.3925006 + ], + [ + 52.5243633, + 13.3926225 + ] + ] + }, + { + "osmId": "465450656", + "name": "U1", + "lengthMeters": 381.7952214901107, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5040118, + 13.3368682 + ], + [ + 52.5030171, + 13.3394227 + ], + [ + 52.5028586, + 13.339721 + ], + [ + 52.5026439, + 13.3401669 + ], + [ + 52.5020853, + 13.3415306 + ] + ] + }, + { + "osmId": "465637630", + "name": "U6", + "lengthMeters": 80.5208163036003, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5124956, + 13.389489 + ], + [ + 52.5117738, + 13.3895846 + ] + ] + }, + { + "osmId": "465669921", + "name": "U7", + "lengthMeters": 546.7692452049785, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4821325, + 13.4335425 + ], + [ + 52.4821821, + 13.4334411 + ], + [ + 52.4823176, + 13.4331273 + ], + [ + 52.4831581, + 13.4314214 + ], + [ + 52.4842925, + 13.4288921 + ], + [ + 52.4848842, + 13.4276923 + ], + [ + 52.4851427, + 13.4271607 + ] + ] + }, + { + "osmId": "465669922", + "name": "U7", + "lengthMeters": 543.5183330006935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4821034, + 13.433477 + ], + [ + 52.4822645, + 13.433166 + ], + [ + 52.4831417, + 13.4313959 + ], + [ + 52.4842753, + 13.42888 + ], + [ + 52.4850479, + 13.4270749 + ] + ] + }, + { + "osmId": "465669923", + "name": "U7", + "lengthMeters": 423.2633400840844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4850479, + 13.4270749 + ], + [ + 52.4857592, + 13.4255353 + ], + [ + 52.4860494, + 13.4249408 + ], + [ + 52.4861376, + 13.4247551 + ], + [ + 52.4861779, + 13.4246685 + ], + [ + 52.4862142, + 13.4245869 + ], + [ + 52.4862931, + 13.4243854 + ], + [ + 52.4863348, + 13.4242685 + ], + [ + 52.4864717, + 13.4238271 + ], + [ + 52.4865888, + 13.4234231 + ], + [ + 52.4866931, + 13.4230216 + ], + [ + 52.4868891, + 13.4223264 + ], + [ + 52.4870379, + 13.4217889 + ] + ] + }, + { + "osmId": "465669924", + "name": "U7", + "lengthMeters": 347.3841865081541, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4851427, + 13.4271607 + ], + [ + 52.4858475, + 13.4255983 + ], + [ + 52.4861194, + 13.4250257 + ], + [ + 52.4862127, + 13.424817 + ], + [ + 52.486257, + 13.4247201 + ], + [ + 52.4862958, + 13.4246314 + ], + [ + 52.4863576, + 13.4244754 + ], + [ + 52.4864115, + 13.4243346 + ], + [ + 52.4864412, + 13.4242445 + ], + [ + 52.486524, + 13.4239661 + ], + [ + 52.4866629, + 13.4234828 + ], + [ + 52.4868212, + 13.4228638 + ] + ] + }, + { + "osmId": "465683488", + "name": "U7", + "lengthMeters": 205.64604232684704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4952011, + 13.3895018 + ], + [ + 52.4953742, + 13.389626 + ], + [ + 52.4955838, + 13.3897217 + ], + [ + 52.4957558, + 13.3897218 + ], + [ + 52.4958995, + 13.3897083 + ], + [ + 52.4960238, + 13.3896857 + ], + [ + 52.4961657, + 13.3896477 + ], + [ + 52.4962871, + 13.389605 + ], + [ + 52.4964431, + 13.3895348 + ], + [ + 52.4965773, + 13.3894598 + ], + [ + 52.4967268, + 13.3893608 + ], + [ + 52.4968399, + 13.3892729 + ], + [ + 52.4969672, + 13.3891615 + ] + ] + }, + { + "osmId": "465683489", + "name": "U7", + "lengthMeters": 191.01885595531138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.495213, + 13.3894608 + ], + [ + 52.4952602, + 13.3894861 + ], + [ + 52.4953206, + 13.3895136 + ], + [ + 52.4953768, + 13.389536 + ], + [ + 52.4956171, + 13.3896231 + ], + [ + 52.4957079, + 13.3896268 + ], + [ + 52.4957984, + 13.3896262 + ], + [ + 52.4958884, + 13.3896193 + ], + [ + 52.4959975, + 13.3896053 + ], + [ + 52.4961222, + 13.3895778 + ], + [ + 52.4962281, + 13.3895463 + ], + [ + 52.4963525, + 13.3894988 + ], + [ + 52.496474, + 13.3894419 + ], + [ + 52.4965768, + 13.3893851 + ], + [ + 52.4966775, + 13.3893203 + ], + [ + 52.4967767, + 13.3892495 + ], + [ + 52.4968739, + 13.3891703 + ] + ] + }, + { + "osmId": "465683490", + "name": "U6", + "lengthMeters": 285.409335153665, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4933854, + 13.3881788 + ], + [ + 52.4935471, + 13.3882772 + ], + [ + 52.4944342, + 13.3890222 + ], + [ + 52.495174, + 13.3896055 + ], + [ + 52.4956687, + 13.3900944 + ] + ] + }, + { + "osmId": "465683491", + "name": "U6", + "lengthMeters": 284.8899977907265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4957505, + 13.3897411 + ], + [ + 52.4954039, + 13.3894494 + ], + [ + 52.4950083, + 13.389153 + ], + [ + 52.494366, + 13.388632 + ], + [ + 52.4940931, + 13.3884 + ], + [ + 52.4938704, + 13.3881937 + ], + [ + 52.4937016, + 13.3880373 + ], + [ + 52.4934455, + 13.3879275 + ] + ] + }, + { + "osmId": "465683492", + "name": "U6", + "lengthMeters": 276.44531670529045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4904229, + 13.3865002 + ], + [ + 52.4908551, + 13.3866627 + ], + [ + 52.4912988, + 13.3868593 + ], + [ + 52.4919813, + 13.3871233 + ], + [ + 52.4924529, + 13.3874319 + ], + [ + 52.4927931, + 13.3876885 + ] + ] + }, + { + "osmId": "465683493", + "name": "U6", + "lengthMeters": 350.8441627319977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4934455, + 13.3879275 + ], + [ + 52.4930761, + 13.3877541 + ], + [ + 52.4926003, + 13.3873927 + ], + [ + 52.4920032, + 13.3870454 + ], + [ + 52.4916421, + 13.3868947 + ], + [ + 52.4912933, + 13.3867555 + ], + [ + 52.4904369, + 13.3864101 + ] + ] + }, + { + "osmId": "466720637", + "name": null, + "lengthMeters": 155.24205119867406, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4522412, + 13.5089843 + ], + [ + 52.4520647, + 13.5091603 + ], + [ + 52.4519253, + 13.5092626 + ], + [ + 52.4517919, + 13.5093453 + ], + [ + 52.4514551, + 13.5095033 + ], + [ + 52.4513593, + 13.509563 + ], + [ + 52.4512501, + 13.5096464 + ], + [ + 52.4511732, + 13.5097134 + ], + [ + 52.4509687, + 13.5099 + ] + ] + }, + { + "osmId": "466720638", + "name": null, + "lengthMeters": 947.9514023450969, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4440249, + 13.517912 + ], + [ + 52.4444193, + 13.5173307 + ], + [ + 52.444636, + 13.5170157 + ], + [ + 52.4447201, + 13.5168941 + ], + [ + 52.4457413, + 13.515439 + ], + [ + 52.4458522, + 13.5152817 + ], + [ + 52.4462919, + 13.514656 + ], + [ + 52.4463731, + 13.5145403 + ], + [ + 52.4464675, + 13.5144069 + ], + [ + 52.4464981, + 13.5143638 + ], + [ + 52.4466258, + 13.5141829 + ], + [ + 52.4468551, + 13.5138626 + ], + [ + 52.4469764, + 13.5137053 + ], + [ + 52.4470894, + 13.5135661 + ], + [ + 52.4473018, + 13.5133224 + ], + [ + 52.4475042, + 13.5131189 + ], + [ + 52.4477161, + 13.512922 + ], + [ + 52.4480144, + 13.5126479 + ], + [ + 52.4486516, + 13.5120677 + ], + [ + 52.4487671, + 13.5119633 + ], + [ + 52.4488901, + 13.5118499 + ], + [ + 52.4489396, + 13.5118048 + ], + [ + 52.449322, + 13.5114567 + ], + [ + 52.4495003, + 13.5112944 + ], + [ + 52.4498907, + 13.510949 + ], + [ + 52.4499817, + 13.5108653 + ], + [ + 52.4503226, + 13.5105437 + ], + [ + 52.4505417, + 13.5103423 + ], + [ + 52.4508652, + 13.5100452 + ], + [ + 52.4509777, + 13.5099403 + ] + ] + }, + { + "osmId": "466940242", + "name": "City-S-Bahn", + "lengthMeters": 161.3001238991501, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5479105, + 9.9364019 + ], + [ + 53.5480965, + 9.9361833 + ], + [ + 53.5481683, + 9.9361087 + ], + [ + 53.5483354, + 9.9359542 + ], + [ + 53.5485631, + 9.9357821 + ], + [ + 53.5487572, + 9.9356668 + ], + [ + 53.5489771, + 9.9355678 + ], + [ + 53.5491434, + 9.9355007 + ], + [ + 53.5492358, + 9.9354663 + ] + ] + }, + { + "osmId": "466961630", + "name": null, + "lengthMeters": 203.6058140155431, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5679935, + 9.9693433 + ], + [ + 53.5680073, + 9.969312 + ], + [ + 53.5685923, + 9.9679888 + ], + [ + 53.5688566, + 9.9673755 + ], + [ + 53.5690078, + 9.9670232 + ], + [ + 53.5690749, + 9.9668554 + ] + ] + }, + { + "osmId": "466961631", + "name": null, + "lengthMeters": 197.6909928829654, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5689324, + 9.9667637 + ], + [ + 53.5687731, + 9.9671766 + ], + [ + 53.5685702, + 9.9676598 + ], + [ + 53.567891, + 9.969189 + ] + ] + }, + { + "osmId": "467218265", + "name": null, + "lengthMeters": 289.29698451572534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1370773, + 11.6047305 + ], + [ + 48.1367951, + 11.6043723 + ], + [ + 48.1364913, + 11.6038884 + ], + [ + 48.1362127, + 11.6033353 + ], + [ + 48.1360195, + 11.6027863 + ], + [ + 48.1358884, + 11.6022808 + ], + [ + 48.1357553, + 11.6014813 + ] + ] + }, + { + "osmId": "467533739", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 113.96357377667665, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4559188, + 13.5574559 + ], + [ + 52.4562531, + 13.5573507 + ], + [ + 52.4565954, + 13.5572266 + ], + [ + 52.4568226, + 13.5571267 + ], + [ + 52.4569179, + 13.5570843 + ] + ] + }, + { + "osmId": "467533740", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 113.49188732314867, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4569048, + 13.5570001 + ], + [ + 52.4568089, + 13.5570447 + ], + [ + 52.4565816, + 13.5571471 + ], + [ + 52.4563081, + 13.5572478 + ], + [ + 52.4560561, + 13.557335 + ], + [ + 52.4559113, + 13.5573805 + ] + ] + }, + { + "osmId": "467533743", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 432.4089276205853, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6037173, + 13.4641746 + ], + [ + 52.6037945, + 13.4640702 + ], + [ + 52.6038419, + 13.4640062 + ], + [ + 52.6067225, + 13.4601107 + ] + ] + }, + { + "osmId": "467533744", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 431.62346986631246, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6066887, + 13.4600709 + ], + [ + 52.6037663, + 13.4640246 + ], + [ + 52.6036895, + 13.4641285 + ] + ] + }, + { + "osmId": "468392696", + "name": null, + "lengthMeters": 96.57955386811497, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1767251, + 11.5884746 + ], + [ + 48.1763988, + 11.5883766 + ], + [ + 48.176048, + 11.5882447 + ], + [ + 48.1758786, + 11.5881843 + ] + ] + }, + { + "osmId": "468392700", + "name": null, + "lengthMeters": 97.06945381905243, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1758723, + 11.5882248 + ], + [ + 48.1762202, + 11.5883531 + ], + [ + 48.1763885, + 11.5884131 + ], + [ + 48.1767212, + 11.58853 + ] + ] + }, + { + "osmId": "469074799", + "name": null, + "lengthMeters": 188.72908277077502, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557391, + 10.0420093 + ], + [ + 53.5557359, + 10.0427606 + ], + [ + 53.5557389, + 10.0429864 + ], + [ + 53.5557482, + 10.0436779 + ], + [ + 53.5557455, + 10.0443187 + ], + [ + 53.5557477, + 10.0448662 + ] + ] + }, + { + "osmId": "470728102", + "name": null, + "lengthMeters": 372.6516751598256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6537451, + 13.203332 + ], + [ + 52.6530023, + 13.203379 + ], + [ + 52.6526948, + 13.2033984 + ], + [ + 52.6503959, + 13.203529 + ] + ] + }, + { + "osmId": "471187895", + "name": null, + "lengthMeters": 83.7048635682037, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.248186, + 11.6316859 + ], + [ + 48.2483052, + 11.631775 + ], + [ + 48.248488, + 11.6319294 + ], + [ + 48.2486498, + 11.6320832 + ], + [ + 48.2488274, + 11.6322741 + ] + ] + }, + { + "osmId": "472647302", + "name": "Feuerwehr\u00fcbungsanlage bei der U-Bahn", + "lengthMeters": 337.75842993102697, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5303147, + 13.3010049 + ], + [ + 52.5308858, + 13.3008093 + ], + [ + 52.531289, + 13.300773 + ], + [ + 52.5315799, + 13.3007477 + ], + [ + 52.5317362, + 13.300701 + ], + [ + 52.5319044, + 13.3006846 + ], + [ + 52.5333336, + 13.3005455 + ] + ] + }, + { + "osmId": "473309675", + "name": null, + "lengthMeters": 342.90112810445083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5705143, + 10.059601 + ], + [ + 53.5707886, + 10.0594554 + ], + [ + 53.5708664, + 10.0594162 + ], + [ + 53.5717016, + 10.0590025 + ], + [ + 53.5725193, + 10.0586076 + ], + [ + 53.5728437, + 10.0584509 + ], + [ + 53.5734745, + 10.0581461 + ] + ] + }, + { + "osmId": "473309676", + "name": null, + "lengthMeters": 379.75664409500934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5737402, + 10.0579524 + ], + [ + 53.5735727, + 10.0580336 + ], + [ + 53.5717912, + 10.0589011 + ], + [ + 53.5716549, + 10.0589675 + ], + [ + 53.5706833, + 10.0594362 + ], + [ + 53.5705699, + 10.0594917 + ], + [ + 53.5704585, + 10.0595449 + ] + ] + }, + { + "osmId": "473309677", + "name": null, + "lengthMeters": 276.6196950745647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5681509, + 10.0608884 + ], + [ + 53.5685236, + 10.0607596 + ], + [ + 53.5685463, + 10.0607518 + ], + [ + 53.5686916, + 10.0606838 + ], + [ + 53.5689722, + 10.0605434 + ], + [ + 53.5696737, + 10.060116 + ], + [ + 53.569828, + 10.0600202 + ], + [ + 53.5700034, + 10.0599087 + ], + [ + 53.5700127, + 10.0599031 + ], + [ + 53.5705143, + 10.059601 + ] + ] + }, + { + "osmId": "473309678", + "name": null, + "lengthMeters": 221.62878127863286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5699837, + 10.059739 + ], + [ + 53.5699557, + 10.0597504 + ], + [ + 53.569646, + 10.0599288 + ], + [ + 53.5689558, + 10.0603448 + ], + [ + 53.5685316, + 10.0606108 + ], + [ + 53.5684169, + 10.0606587 + ], + [ + 53.5682437, + 10.0607198 + ], + [ + 53.5681985, + 10.06073 + ], + [ + 53.5681753, + 10.0607352 + ], + [ + 53.5681464, + 10.0607416 + ], + [ + 53.5680889, + 10.0607544 + ] + ] + }, + { + "osmId": "473321212", + "name": null, + "lengthMeters": 147.04569275304686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.561083, + 10.0285566 + ], + [ + 53.5617139, + 10.0283271 + ], + [ + 53.5623756, + 10.0280865 + ] + ] + }, + { + "osmId": "473326498", + "name": null, + "lengthMeters": 441.81710312196753, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6118366, + 9.8754889 + ], + [ + 53.6112847, + 9.876562 + ], + [ + 53.6098122, + 9.8794315 + ], + [ + 53.6092549, + 9.8805793 + ] + ] + }, + { + "osmId": "473326499", + "name": null, + "lengthMeters": 440.44726295036764, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6118121, + 9.8754492 + ], + [ + 53.6111859, + 9.8766429 + ], + [ + 53.6097861, + 9.879398 + ], + [ + 53.6092206, + 9.8804984 + ] + ] + }, + { + "osmId": "473326500", + "name": null, + "lengthMeters": 751.1937047563674, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6117688, + 9.8754094 + ], + [ + 53.6133461, + 9.8723316 + ], + [ + 53.6142192, + 9.8706223 + ], + [ + 53.6146445, + 9.869791 + ], + [ + 53.6161828, + 9.8667883 + ] + ] + }, + { + "osmId": "473333588", + "name": null, + "lengthMeters": 130.27863226913627, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5562723, + 9.9781575 + ], + [ + 53.5561855, + 9.9783152 + ], + [ + 53.5560826, + 9.9785272 + ], + [ + 53.5559628, + 9.9787884 + ], + [ + 53.5559053, + 9.9789322 + ], + [ + 53.5558123, + 9.9792099 + ], + [ + 53.555696, + 9.9796108 + ], + [ + 53.555651, + 9.9798123 + ] + ] + }, + { + "osmId": "473333589", + "name": null, + "lengthMeters": 202.74197563092787, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5556428, + 9.9829324 + ], + [ + 53.5556339, + 9.9827549 + ], + [ + 53.5555904, + 9.9820225 + ], + [ + 53.5555788, + 9.9817025 + ], + [ + 53.5555757, + 9.9814724 + ], + [ + 53.5555834, + 9.9811568 + ], + [ + 53.5555941, + 9.980963 + ], + [ + 53.55562, + 9.9806849 + ], + [ + 53.5556602, + 9.9803734 + ], + [ + 53.5557017, + 9.9801459 + ], + [ + 53.555753, + 9.9799053 + ] + ] + }, + { + "osmId": "473333590", + "name": null, + "lengthMeters": 192.45567409678884, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5593316, + 9.9761168 + ], + [ + 53.5600013, + 9.9757393 + ], + [ + 53.5602987, + 9.9756297 + ], + [ + 53.5604962, + 9.9755731 + ], + [ + 53.5606901, + 9.9755393 + ], + [ + 53.5610134, + 9.9754862 + ] + ] + }, + { + "osmId": "473333591", + "name": null, + "lengthMeters": 453.7012506226645, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5610988, + 9.9753104 + ], + [ + 53.5606244, + 9.9753906 + ], + [ + 53.5604233, + 9.9754389 + ], + [ + 53.5602426, + 9.9755032 + ], + [ + 53.5600069, + 9.9756071 + ], + [ + 53.5595104, + 9.9758508 + ], + [ + 53.5593061, + 9.9759476 + ], + [ + 53.5589486, + 9.976129 + ], + [ + 53.5588515, + 9.9761789 + ], + [ + 53.5580199, + 9.9766601 + ], + [ + 53.5571789, + 9.9771416 + ] + ] + }, + { + "osmId": "473336126", + "name": null, + "lengthMeters": 505.10623249004567, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4898827, + 10.163225 + ], + [ + 53.4899951, + 10.1623346 + ], + [ + 53.4901139, + 10.1614467 + ], + [ + 53.4901914, + 10.1608452 + ], + [ + 53.4902647, + 10.1602427 + ], + [ + 53.4904083, + 10.1590036 + ], + [ + 53.4904304, + 10.1588126 + ], + [ + 53.4905225, + 10.1579581 + ], + [ + 53.4906049, + 10.1570691 + ], + [ + 53.4907486, + 10.1557315 + ] + ] + }, + { + "osmId": "473336127", + "name": null, + "lengthMeters": 505.74060989539066, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.490662, + 10.1556835 + ], + [ + 53.4904061, + 10.1578784 + ], + [ + 53.4902977, + 10.1589657 + ], + [ + 53.4901485, + 10.1603688 + ], + [ + 53.4900395, + 10.1613955 + ], + [ + 53.4898472, + 10.1632041 + ] + ] + }, + { + "osmId": "473336128", + "name": null, + "lengthMeters": 1492.9330412016611, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4898472, + 10.1632041 + ], + [ + 53.4892033, + 10.1692073 + ], + [ + 53.4888356, + 10.172618 + ], + [ + 53.4885651, + 10.1751268 + ], + [ + 53.4880755, + 10.1795812 + ], + [ + 53.4880469, + 10.1798419 + ], + [ + 53.4880246, + 10.1800394 + ], + [ + 53.4879095, + 10.1810583 + ], + [ + 53.4877962, + 10.1820526 + ], + [ + 53.4877782, + 10.1822102 + ], + [ + 53.487759, + 10.1823791 + ], + [ + 53.4877358, + 10.1825824 + ], + [ + 53.4875347, + 10.1843645 + ], + [ + 53.4874188, + 10.1853976 + ] + ] + }, + { + "osmId": "473336129", + "name": null, + "lengthMeters": 1739.8114540188321, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4907486, + 10.1557315 + ], + [ + 53.4909627, + 10.1541111 + ], + [ + 53.4915219, + 10.1501675 + ], + [ + 53.4917616, + 10.1488527 + ], + [ + 53.4920389, + 10.1474997 + ], + [ + 53.4922496, + 10.1465741 + ], + [ + 53.492463, + 10.1456367 + ], + [ + 53.4929314, + 10.1437471 + ], + [ + 53.4934617, + 10.1418957 + ], + [ + 53.4937544, + 10.1409816 + ], + [ + 53.4942169, + 10.139668 + ], + [ + 53.4947208, + 10.1383902 + ], + [ + 53.4951468, + 10.1373949 + ], + [ + 53.4954527, + 10.1366803 + ], + [ + 53.4959651, + 10.135567 + ], + [ + 53.4966376, + 10.134204 + ], + [ + 53.4975261, + 10.1324534 + ] + ] + }, + { + "osmId": "473340825", + "name": null, + "lengthMeters": 273.57475533989, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5748983, + 9.9725159 + ], + [ + 53.5757313, + 9.9736825 + ], + [ + 53.5767895, + 9.9751663 + ] + ] + }, + { + "osmId": "473340827", + "name": null, + "lengthMeters": 272.93852862647884, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5768071, + 9.9751234 + ], + [ + 53.5753129, + 9.9730353 + ], + [ + 53.5749188, + 9.9724822 + ] + ] + }, + { + "osmId": "473928728", + "name": null, + "lengthMeters": 448.0422691606908, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7386402, + 9.8657804 + ], + [ + 53.7389409, + 9.8664995 + ], + [ + 53.7390012, + 9.8666068 + ], + [ + 53.7400229, + 9.8674436 + ], + [ + 53.7400662, + 9.8675265 + ], + [ + 53.7412216, + 9.8697634 + ], + [ + 53.7412664, + 9.8698924 + ], + [ + 53.7413008, + 9.8699914 + ], + [ + 53.7414468, + 9.8703533 + ], + [ + 53.7414589, + 9.8704323 + ] + ] + }, + { + "osmId": "473928729", + "name": null, + "lengthMeters": 162.61375172970432, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7414468, + 9.8703533 + ], + [ + 53.7414754, + 9.8704284 + ], + [ + 53.7414904, + 9.8704659 + ], + [ + 53.7415071, + 9.8705436 + ], + [ + 53.7415071, + 9.8706415 + ], + [ + 53.7414648, + 9.8708257 + ], + [ + 53.7410337, + 9.8725641 + ], + [ + 53.741013, + 9.8726303 + ] + ] + }, + { + "osmId": "473928737", + "name": "Westdamm", + "lengthMeters": 101.21631374325182, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7312382, + 9.8460769 + ], + [ + 53.7312446, + 9.8458797 + ], + [ + 53.7313204, + 9.8457028 + ], + [ + 53.7316, + 9.8453164 + ], + [ + 53.7318474, + 9.8450205 + ] + ] + }, + { + "osmId": "474454143", + "name": null, + "lengthMeters": 305.7009482976489, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3909054, + 13.5918378 + ], + [ + 52.3905263, + 13.5900484 + ], + [ + 52.3903944, + 13.5894504 + ], + [ + 52.3899952, + 13.587587 + ] + ] + }, + { + "osmId": "474454144", + "name": null, + "lengthMeters": 1214.237420875004, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3904377, + 13.5898517 + ], + [ + 52.3908511, + 13.5917892 + ], + [ + 52.3909711, + 13.5923477 + ], + [ + 52.3912493, + 13.5936406 + ], + [ + 52.3914301, + 13.5944868 + ], + [ + 52.3915269, + 13.5949868 + ], + [ + 52.3916057, + 13.595425 + ], + [ + 52.3916691, + 13.5958392 + ], + [ + 52.3917079, + 13.5961631 + ], + [ + 52.3917359, + 13.5964799 + ], + [ + 52.3917525, + 13.5967685 + ], + [ + 52.3917621, + 13.597117 + ], + [ + 52.3917657, + 13.5974047 + ], + [ + 52.3917581, + 13.5977125 + ], + [ + 52.3917375, + 13.5980786 + ], + [ + 52.3917051, + 13.5984186 + ], + [ + 52.3916664, + 13.5987117 + ], + [ + 52.3916277, + 13.5989836 + ], + [ + 52.391564, + 13.5993501 + ], + [ + 52.3914954, + 13.5996626 + ], + [ + 52.3913463, + 13.6002107 + ], + [ + 52.391194, + 13.6006539 + ], + [ + 52.3910338, + 13.6010559 + ], + [ + 52.3907985, + 13.601567 + ], + [ + 52.3906491, + 13.6018277 + ], + [ + 52.3905659, + 13.601973 + ], + [ + 52.3902961, + 13.6023664 + ], + [ + 52.3901064, + 13.6026008 + ], + [ + 52.3898734, + 13.6028604 + ], + [ + 52.3893496, + 13.6033422 + ], + [ + 52.389044, + 13.6035793 + ], + [ + 52.3888999, + 13.6036794 + ], + [ + 52.388763, + 13.6037821 + ], + [ + 52.388404, + 13.6040425 + ], + [ + 52.3879724, + 13.6043489 + ] + ] + }, + { + "osmId": "474626730", + "name": null, + "lengthMeters": 373.81745033665385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6476198, + 10.0171642 + ], + [ + 53.6465589, + 10.0170994 + ], + [ + 53.6453, + 10.0170329 + ], + [ + 53.6442598, + 10.016978 + ] + ] + }, + { + "osmId": "474631271", + "name": null, + "lengthMeters": 243.01330835797677, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5972895, + 10.0356485 + ], + [ + 53.5978958, + 10.0355051 + ], + [ + 53.598205, + 10.0354094 + ], + [ + 53.5989537, + 10.0351711 + ], + [ + 53.5994353, + 10.0349648 + ] + ] + }, + { + "osmId": "474631272", + "name": null, + "lengthMeters": 296.93452500018986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6045906, + 10.0334908 + ], + [ + 53.6051188, + 10.0334287 + ], + [ + 53.6054692, + 10.0333479 + ], + [ + 53.6058517, + 10.0332384 + ], + [ + 53.6060308, + 10.0331883 + ], + [ + 53.606506, + 10.0330283 + ], + [ + 53.606771, + 10.0329012 + ], + [ + 53.6072158, + 10.03272 + ] + ] + }, + { + "osmId": "474631274", + "name": null, + "lengthMeters": 179.34438965791648, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6308862, + 10.0070869 + ], + [ + 53.6307891, + 10.0071408 + ], + [ + 53.6306996, + 10.0071983 + ], + [ + 53.6306045, + 10.0072764 + ], + [ + 53.630529, + 10.0073401 + ], + [ + 53.6302371, + 10.0076625 + ], + [ + 53.6300841, + 10.0078459 + ], + [ + 53.6299789, + 10.0079759 + ], + [ + 53.6298714, + 10.0081335 + ], + [ + 53.6297366, + 10.0083539 + ], + [ + 53.6295896, + 10.0086465 + ] + ] + }, + { + "osmId": "474631276", + "name": null, + "lengthMeters": 256.169241294057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6317552, + 10.0286533 + ], + [ + 53.631902, + 10.0282911 + ], + [ + 53.6326028, + 10.0265388 + ], + [ + 53.6326512, + 10.0264177 + ], + [ + 53.6328438, + 10.0259639 + ], + [ + 53.6330487, + 10.0254386 + ] + ] + }, + { + "osmId": "474853111", + "name": null, + "lengthMeters": 326.544843879012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5606958, + 9.9883807 + ], + [ + 53.560455, + 9.9883903 + ], + [ + 53.5603025, + 9.9883987 + ], + [ + 53.5601699, + 9.9884313 + ], + [ + 53.559984, + 9.9884843 + ], + [ + 53.5597048, + 9.9886195 + ], + [ + 53.5594395, + 9.9887822 + ], + [ + 53.5593388, + 9.9888391 + ], + [ + 53.5590631, + 9.9890096 + ], + [ + 53.5587317, + 9.9892181 + ], + [ + 53.5584499, + 9.9893985 + ], + [ + 53.5580183, + 9.9897054 + ], + [ + 53.5579059, + 9.9897939 + ] + ] + }, + { + "osmId": "474853112", + "name": null, + "lengthMeters": 319.6850959412669, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5606941, + 9.9885186 + ], + [ + 53.5608527, + 9.9885264 + ], + [ + 53.5609694, + 9.988539 + ], + [ + 53.5610919, + 9.9885615 + ], + [ + 53.561187, + 9.9885826 + ], + [ + 53.561295, + 9.9886209 + ], + [ + 53.5619514, + 9.988925 + ], + [ + 53.5628597, + 9.9893566 + ], + [ + 53.5630392, + 9.9894148 + ], + [ + 53.5632284, + 9.9894541 + ], + [ + 53.5634998, + 9.9894807 + ] + ] + }, + { + "osmId": "474853113", + "name": null, + "lengthMeters": 556.010379436616, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5579059, + 9.9897939 + ], + [ + 53.5577694, + 9.9898779 + ], + [ + 53.5574776, + 9.98999 + ], + [ + 53.5571926, + 9.9900893 + ], + [ + 53.5568779, + 9.9901902 + ], + [ + 53.5566352, + 9.9902506 + ], + [ + 53.5559652, + 9.9904541 + ], + [ + 53.5556886, + 9.9905367 + ], + [ + 53.5552317, + 9.990675 + ], + [ + 53.5549725, + 9.9907495 + ], + [ + 53.5548706, + 9.9907803 + ], + [ + 53.5548202, + 9.9908001 + ], + [ + 53.5547774, + 9.9908195 + ], + [ + 53.5546808, + 9.9908694 + ], + [ + 53.554586, + 9.9909249 + ], + [ + 53.5544913, + 9.9909871 + ], + [ + 53.5543873, + 9.9910715 + ], + [ + 53.5542965, + 9.9911528 + ], + [ + 53.5542282, + 9.9912301 + ], + [ + 53.5537781, + 9.9917256 + ], + [ + 53.5534876, + 9.9920782 + ], + [ + 53.5532386, + 9.9923913 + ] + ] + }, + { + "osmId": "474853114", + "name": null, + "lengthMeters": 555.7608636019353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5532477, + 9.9924636 + ], + [ + 53.5533698, + 9.9922885 + ], + [ + 53.5535536, + 9.9920793 + ], + [ + 53.5538847, + 9.9916923 + ], + [ + 53.5541678, + 9.9913717 + ], + [ + 53.5542503, + 9.991281 + ], + [ + 53.5543173, + 9.9912188 + ], + [ + 53.5544134, + 9.9911307 + ], + [ + 53.5545135, + 9.9910494 + ], + [ + 53.5546103, + 9.9909854 + ], + [ + 53.5546967, + 9.9909336 + ], + [ + 53.5547927, + 9.9908834 + ], + [ + 53.5548337, + 9.9908645 + ], + [ + 53.5548833, + 9.990846 + ], + [ + 53.5549855, + 9.9908169 + ], + [ + 53.5552523, + 9.990735 + ], + [ + 53.5557696, + 9.9905719 + ], + [ + 53.5561811, + 9.9904533 + ], + [ + 53.5566209, + 9.990331 + ], + [ + 53.5567536, + 9.9902989 + ], + [ + 53.556885, + 9.9902648 + ], + [ + 53.5571479, + 9.9901769 + ], + [ + 53.5577978, + 9.9899457 + ], + [ + 53.5579168, + 9.9898958 + ] + ] + }, + { + "osmId": "474922014", + "name": null, + "lengthMeters": 78.50493001820658, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4938175, + 13.3746173 + ], + [ + 52.4935429, + 13.3745611 + ], + [ + 52.4931169, + 13.374474 + ] + ] + }, + { + "osmId": "475245693", + "name": null, + "lengthMeters": 217.3311340500403, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5928898, + 9.9437894 + ], + [ + 53.5925475, + 9.9439268 + ], + [ + 53.5921558, + 9.9440922 + ], + [ + 53.5917623, + 9.9442836 + ], + [ + 53.5916477, + 9.9443422 + ], + [ + 53.5913775, + 9.9444895 + ], + [ + 53.591098, + 9.9446346 + ], + [ + 53.5910093, + 9.9446818 + ] + ] + }, + { + "osmId": "475255125", + "name": null, + "lengthMeters": 1251.1668276245316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.540758, + 10.1366443 + ], + [ + 53.5406075, + 10.136118 + ], + [ + 53.5403714, + 10.1353082 + ], + [ + 53.5402361, + 10.1348511 + ], + [ + 53.5401434, + 10.134506 + ], + [ + 53.5400853, + 10.1343015 + ], + [ + 53.5400491, + 10.1341745 + ], + [ + 53.539965, + 10.1338876 + ], + [ + 53.5398524, + 10.133513 + ], + [ + 53.5397543, + 10.133178 + ], + [ + 53.5396249, + 10.1327381 + ], + [ + 53.5395261, + 10.1323929 + ], + [ + 53.5393982, + 10.1319115 + ], + [ + 53.5393369, + 10.13165 + ], + [ + 53.5392842, + 10.131382 + ], + [ + 53.5392136, + 10.1310085 + ], + [ + 53.5391736, + 10.1307018 + ], + [ + 53.539126, + 10.1303062 + ], + [ + 53.5390904, + 10.1298667 + ], + [ + 53.539041, + 10.1293043 + ], + [ + 53.5389575, + 10.1282606 + ], + [ + 53.5387605, + 10.1259337 + ], + [ + 53.538697, + 10.1250737 + ], + [ + 53.5385643, + 10.123374 + ], + [ + 53.5385066, + 10.1229294 + ], + [ + 53.5384407, + 10.122376 + ], + [ + 53.5383844, + 10.1217577 + ], + [ + 53.5383281, + 10.1209844 + ], + [ + 53.5383182, + 10.120787 + ], + [ + 53.538306, + 10.1204057 + ], + [ + 53.5383109, + 10.1200347 + ], + [ + 53.5383159, + 10.1199204 + ], + [ + 53.5383338, + 10.119727 + ], + [ + 53.5383649, + 10.1194718 + ], + [ + 53.5384383, + 10.1189877 + ], + [ + 53.5385004, + 10.1187097 + ], + [ + 53.538562, + 10.1184663 + ] + ] + }, + { + "osmId": "475255136", + "name": null, + "lengthMeters": 1255.479166440756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5385282, + 10.1184293 + ], + [ + 53.5384715, + 10.1186324 + ], + [ + 53.538419, + 10.118872 + ], + [ + 53.5383647, + 10.119177 + ], + [ + 53.5383156, + 10.1195131 + ], + [ + 53.5382867, + 10.1198243 + ], + [ + 53.5382707, + 10.1201062 + ], + [ + 53.5382675, + 10.1203848 + ], + [ + 53.5382729, + 10.1206867 + ], + [ + 53.5382887, + 10.1210179 + ], + [ + 53.5383685, + 10.1220556 + ], + [ + 53.5384288, + 10.1227499 + ], + [ + 53.5384572, + 10.1230636 + ], + [ + 53.5384828, + 10.12339 + ], + [ + 53.5386087, + 10.1250897 + ], + [ + 53.5386461, + 10.1256133 + ], + [ + 53.5386796, + 10.1261672 + ], + [ + 53.5387968, + 10.1268066 + ], + [ + 53.5388338, + 10.1271803 + ], + [ + 53.538912, + 10.1281633 + ], + [ + 53.5389736, + 10.1289087 + ], + [ + 53.5390616, + 10.1299487 + ], + [ + 53.5391064, + 10.1304239 + ], + [ + 53.5391442, + 10.1307731 + ], + [ + 53.5392134, + 10.13121 + ], + [ + 53.5392748, + 10.1315522 + ], + [ + 53.5393663, + 10.1319596 + ], + [ + 53.5394651, + 10.1323475 + ], + [ + 53.5397063, + 10.1331766 + ], + [ + 53.540088, + 10.1344944 + ], + [ + 53.5402134, + 10.13493 + ], + [ + 53.5403569, + 10.1354187 + ], + [ + 53.5405775, + 10.136179 + ], + [ + 53.5407165, + 10.1366679 + ] + ] + }, + { + "osmId": "475255156", + "name": null, + "lengthMeters": 159.29800250108693, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.538562, + 10.1184663 + ], + [ + 53.5386439, + 10.1181917 + ], + [ + 53.5387108, + 10.1179962 + ], + [ + 53.5387931, + 10.1177748 + ], + [ + 53.5390718, + 10.1170777 + ], + [ + 53.5393333, + 10.1164379 + ] + ] + }, + { + "osmId": "475255162", + "name": null, + "lengthMeters": 159.52276278423713, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5393077, + 10.1164065 + ], + [ + 53.5390323, + 10.1170544 + ], + [ + 53.5386801, + 10.1179444 + ], + [ + 53.5386136, + 10.1181471 + ], + [ + 53.5385282, + 10.1184293 + ] + ] + }, + { + "osmId": "475255165", + "name": null, + "lengthMeters": 295.3798666298166, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5410119, + 10.1122647 + ], + [ + 53.5416097, + 10.1102717 + ], + [ + 53.5416657, + 10.1100684 + ], + [ + 53.5418169, + 10.1095421 + ], + [ + 53.541869, + 10.1093679 + ], + [ + 53.5419135, + 10.1092442 + ], + [ + 53.542102, + 10.1086723 + ], + [ + 53.542233, + 10.1082967 + ] + ] + }, + { + "osmId": "475261588", + "name": null, + "lengthMeters": 126.5122624125138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6779691, + 10.0013211 + ], + [ + 53.6780107, + 10.0018178 + ], + [ + 53.6781194, + 10.0031921 + ], + [ + 53.6781224, + 10.0032244 + ] + ] + }, + { + "osmId": "475261590", + "name": null, + "lengthMeters": 132.07152424534462, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6782802, + 10.0032613 + ], + [ + 53.6782776, + 10.0032306 + ], + [ + 53.6781601, + 10.0018068 + ], + [ + 53.6781182, + 10.0012748 + ] + ] + }, + { + "osmId": "475261592", + "name": null, + "lengthMeters": 527.1698884821277, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6781224, + 10.0032244 + ], + [ + 53.6781611, + 10.003862 + ], + [ + 53.6781633, + 10.0042739 + ], + [ + 53.6781481, + 10.0046146 + ], + [ + 53.678126, + 10.0049117 + ], + [ + 53.6779567, + 10.0064236 + ], + [ + 53.6777379, + 10.0084392 + ], + [ + 53.6776359, + 10.0093376 + ], + [ + 53.6775082, + 10.0102626 + ], + [ + 53.6773749, + 10.0109144 + ], + [ + 53.6773383, + 10.0110707 + ] + ] + }, + { + "osmId": "475261593", + "name": null, + "lengthMeters": 578.0611840262169, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6772266, + 10.0116127 + ], + [ + 53.677366, + 10.011107 + ], + [ + 53.6780538, + 10.0085593 + ], + [ + 53.6781747, + 10.0080165 + ], + [ + 53.6782814, + 10.0075209 + ], + [ + 53.6783572, + 10.0071088 + ], + [ + 53.6784225, + 10.0065516 + ], + [ + 53.6784545, + 10.0059683 + ], + [ + 53.6784501, + 10.0053632 + ], + [ + 53.6783676, + 10.0043199 + ], + [ + 53.6782802, + 10.0032613 + ] + ] + }, + { + "osmId": "475266816", + "name": null, + "lengthMeters": 317.5512401489513, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5993934, + 9.9438185 + ], + [ + 53.5988857, + 9.9436649 + ], + [ + 53.5982494, + 9.9434588 + ], + [ + 53.5976652, + 9.9432815 + ], + [ + 53.5970933, + 9.9431164 + ], + [ + 53.596576, + 9.9430647 + ] + ] + }, + { + "osmId": "475266817", + "name": null, + "lengthMeters": 624.1780225509738, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6412409, + 9.949836 + ], + [ + 53.6406446, + 9.9501398 + ], + [ + 53.6403925, + 9.9502883 + ], + [ + 53.6399211, + 9.9505143 + ], + [ + 53.6395465, + 9.9506939 + ], + [ + 53.6375915, + 9.9515838 + ], + [ + 53.6358184, + 9.9522685 + ] + ] + }, + { + "osmId": "475267931", + "name": null, + "lengthMeters": 383.69059054338584, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5554289, + 9.9886655 + ], + [ + 53.5554938, + 9.9884333 + ], + [ + 53.5555557, + 9.988172 + ], + [ + 53.5556094, + 9.9878904 + ], + [ + 53.5556464, + 9.9876523 + ], + [ + 53.5556681, + 9.9874399 + ], + [ + 53.555672, + 9.987252 + ], + [ + 53.5556915, + 9.9867314 + ], + [ + 53.5557067, + 9.986045 + ], + [ + 53.5557097, + 9.9844253 + ], + [ + 53.5556817, + 9.9838461 + ], + [ + 53.555654, + 9.9832074 + ], + [ + 53.5556428, + 9.9829324 + ] + ] + }, + { + "osmId": "475272569", + "name": null, + "lengthMeters": 311.1687174931146, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5804759, + 10.0689475 + ], + [ + 53.5806718, + 10.0688078 + ], + [ + 53.5809656, + 10.0685791 + ], + [ + 53.5810587, + 10.0685161 + ], + [ + 53.5817465, + 10.0681315 + ], + [ + 53.5819673, + 10.068008 + ], + [ + 53.5823677, + 10.0677813 + ], + [ + 53.5824374, + 10.067745 + ], + [ + 53.5828419, + 10.0674748 + ], + [ + 53.5830965, + 10.0673051 + ] + ] + }, + { + "osmId": "475272576", + "name": null, + "lengthMeters": 128.503551946693, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5920332, + 10.0728486 + ], + [ + 53.5919419, + 10.072277 + ], + [ + 53.5918923, + 10.0718628 + ], + [ + 53.5918633, + 10.0715554 + ], + [ + 53.5918424, + 10.0712523 + ], + [ + 53.5918267, + 10.0709372 + ] + ] + }, + { + "osmId": "475276733", + "name": null, + "lengthMeters": 1381.680854886005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6375984, + 10.1545192 + ], + [ + 53.6374613, + 10.1543354 + ], + [ + 53.6351263, + 10.1509915 + ], + [ + 53.631736, + 10.1461368 + ], + [ + 53.6288054, + 10.1419405 + ], + [ + 53.6284771, + 10.1415121 + ], + [ + 53.6282914, + 10.1412915 + ], + [ + 53.6280845, + 10.1410456 + ] + ] + }, + { + "osmId": "475276739", + "name": null, + "lengthMeters": 336.98433477406047, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6280845, + 10.1410456 + ], + [ + 53.6276023, + 10.1404785 + ], + [ + 53.6270556, + 10.1398375 + ], + [ + 53.6261663, + 10.1387984 + ], + [ + 53.6255944, + 10.1381329 + ] + ] + }, + { + "osmId": "475286382", + "name": null, + "lengthMeters": 217.6242162184012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5942204, + 9.9962267 + ], + [ + 53.594329, + 9.9962216 + ], + [ + 53.594419, + 9.9962103 + ], + [ + 53.5945013, + 9.9961944 + ], + [ + 53.5947485, + 9.9961175 + ], + [ + 53.5948898, + 9.996069 + ], + [ + 53.5949206, + 9.9960546 + ], + [ + 53.5955909, + 9.995742 + ], + [ + 53.5956541, + 9.9957134 + ], + [ + 53.595833, + 9.9956378 + ], + [ + 53.5961295, + 9.9955369 + ] + ] + }, + { + "osmId": "475286383", + "name": null, + "lengthMeters": 165.12096720316288, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6767119, + 10.1487408 + ], + [ + 53.6754202, + 10.1499775 + ] + ] + }, + { + "osmId": "475611944", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 330.5118456883199, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6728687, + 13.2740264 + ], + [ + 52.672886, + 13.274112 + ], + [ + 52.6732704, + 13.2761112 + ], + [ + 52.6734731, + 13.2771259 + ], + [ + 52.6737698, + 13.2786976 + ] + ] + }, + { + "osmId": "475897407", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 78.20205429127685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4603371, + 9.9824101 + ], + [ + 53.4602185, + 9.9829377 + ], + [ + 53.460078, + 9.9835081 + ] + ] + }, + { + "osmId": "476084346", + "name": null, + "lengthMeters": 278.346535079553, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1211433, + 11.5964635 + ], + [ + 48.1207953, + 11.5963155 + ], + [ + 48.1205917, + 11.596251 + ], + [ + 48.1202191, + 11.5961616 + ], + [ + 48.1199537, + 11.5961163 + ], + [ + 48.1197375, + 11.5960867 + ], + [ + 48.1194529, + 11.596034 + ], + [ + 48.1190786, + 11.5959764 + ], + [ + 48.1188602, + 11.5959282 + ], + [ + 48.1186743, + 11.5958861 + ] + ] + }, + { + "osmId": "476714726", + "name": null, + "lengthMeters": 185.8277375638428, + "maxSpeedKph": 100.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445907, + 11.5014561 + ], + [ + 48.1446336, + 11.5009818 + ], + [ + 48.1447028, + 11.5003166 + ], + [ + 48.1448455, + 11.4989809 + ] + ] + }, + { + "osmId": "476917937", + "name": null, + "lengthMeters": 184.7547334719315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336814, + 11.6364457 + ], + [ + 48.1334466, + 11.6389103 + ] + ] + }, + { + "osmId": "478207463", + "name": null, + "lengthMeters": 182.5533536190334, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4954489, + 13.374535 + ], + [ + 52.4949653, + 13.374258 + ], + [ + 52.4947093, + 13.3741098 + ], + [ + 52.4945346, + 13.3740334 + ], + [ + 52.4943001, + 13.3739298 + ], + [ + 52.4942023, + 13.3738912 + ], + [ + 52.4940959, + 13.3738708 + ], + [ + 52.4938706, + 13.3738278 + ] + ] + }, + { + "osmId": "478207464", + "name": null, + "lengthMeters": 196.21234465014, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4954342, + 13.3746048 + ], + [ + 52.4949489, + 13.3743317 + ], + [ + 52.4946938, + 13.3741876 + ], + [ + 52.4942911, + 13.3739928 + ], + [ + 52.4941212, + 13.3739472 + ], + [ + 52.4939179, + 13.3738949 + ], + [ + 52.4937343, + 13.3738729 + ] + ] + }, + { + "osmId": "478207465", + "name": null, + "lengthMeters": 199.88406407901806, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4954179, + 13.3746745 + ], + [ + 52.4949478, + 13.3744175 + ], + [ + 52.4944236, + 13.3741286 + ], + [ + 52.4942813, + 13.3740706 + ], + [ + 52.4940199, + 13.3739846 + ], + [ + 52.4937458, + 13.3739359 + ], + [ + 52.4936861, + 13.3739218 + ] + ] + }, + { + "osmId": "478207466", + "name": null, + "lengthMeters": 192.80285286678554, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4954081, + 13.3747335 + ], + [ + 52.4949404, + 13.3744678 + ], + [ + 52.4942706, + 13.3741215 + ], + [ + 52.4940706, + 13.3740491 + ], + [ + 52.4937458, + 13.3739359 + ] + ] + }, + { + "osmId": "478210635", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 120.30159355756678, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5619218, + 10.0651806 + ], + [ + 53.5622029, + 10.0649871 + ], + [ + 53.5625329, + 10.0647374 + ], + [ + 53.5629196, + 10.0644773 + ] + ] + }, + { + "osmId": "478893561", + "name": null, + "lengthMeters": 248.64979230456396, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4976313, + 10.1322426 + ], + [ + 53.4981726, + 10.1311592 + ], + [ + 53.4990784, + 10.1293767 + ] + ] + }, + { + "osmId": "478893562", + "name": null, + "lengthMeters": 251.72771655603844, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4990066, + 10.1292083 + ], + [ + 53.498467, + 10.1302853 + ], + [ + 53.4981088, + 10.1309888 + ], + [ + 53.4975951, + 10.1320008 + ], + [ + 53.4975506, + 10.132095 + ], + [ + 53.4975425, + 10.1321109 + ] + ] + }, + { + "osmId": "478893564", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 269.72762650688975, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4975001, + 10.132048 + ], + [ + 53.4977792, + 10.1315002 + ], + [ + 53.4984501, + 10.1301701 + ], + [ + 53.4990739, + 10.1289449 + ] + ] + }, + { + "osmId": "478893565", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 269.6488691350408, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.499042, + 10.1288994 + ], + [ + 53.4974718, + 10.1320061 + ] + ] + }, + { + "osmId": "479260863", + "name": null, + "lengthMeters": 145.59693289369545, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5875813, + 10.0639691 + ], + [ + 53.5877161, + 10.0639442 + ], + [ + 53.587882, + 10.063927 + ], + [ + 53.5880512, + 10.0639352 + ], + [ + 53.5882743, + 10.0639697 + ], + [ + 53.5884053, + 10.064008 + ], + [ + 53.588527, + 10.0640518 + ], + [ + 53.5887147, + 10.0641506 + ], + [ + 53.5888659, + 10.0642398 + ] + ] + }, + { + "osmId": "479260864", + "name": null, + "lengthMeters": 147.11854220698652, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5888792, + 10.0642003 + ], + [ + 53.5888023, + 10.0641585 + ], + [ + 53.5887218, + 10.0641101 + ], + [ + 53.5885352, + 10.0640108 + ], + [ + 53.5884103, + 10.0639645 + ], + [ + 53.5882759, + 10.0639238 + ], + [ + 53.5880494, + 10.0638844 + ], + [ + 53.5878828, + 10.0638768 + ], + [ + 53.5877143, + 10.06389 + ], + [ + 53.5875816, + 10.0639163 + ] + ] + }, + { + "osmId": "479603069", + "name": null, + "lengthMeters": 487.9941259178409, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4405904, + 13.2012053 + ], + [ + 52.4386338, + 13.1987248 + ], + [ + 52.4381932, + 13.1981735 + ], + [ + 52.4381878, + 13.1981666 + ], + [ + 52.4381256, + 13.1980876 + ], + [ + 52.4379995, + 13.1979282 + ], + [ + 52.4371147, + 13.1968099 + ] + ] + }, + { + "osmId": "479975139", + "name": null, + "lengthMeters": 86.75682461553959, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6006253, + 9.9946921 + ], + [ + 53.6008463, + 9.9947556 + ], + [ + 53.6011225, + 9.9949056 + ], + [ + 53.6013566, + 9.9951179 + ] + ] + }, + { + "osmId": "480276554", + "name": null, + "lengthMeters": 149.20025602502312, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4953202, + 13.3748434 + ], + [ + 52.4945567, + 13.3744303 + ], + [ + 52.4942472, + 13.3743082 + ], + [ + 52.49403, + 13.3742547 + ] + ] + }, + { + "osmId": "480775272", + "name": "Ostbahn", + "lengthMeters": 251.35270596762217, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142493, + 13.5211456 + ], + [ + 52.5141995, + 13.5235151 + ], + [ + 52.5141824, + 13.5242839 + ], + [ + 52.5141678, + 13.5248576 + ] + ] + }, + { + "osmId": "480775273", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 218.07600614417817, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5040233, + 13.4631699 + ], + [ + 52.5041663, + 13.4623586 + ], + [ + 52.5042203, + 13.4620579 + ], + [ + 52.5043037, + 13.4615845 + ], + [ + 52.5044143, + 13.4609599 + ], + [ + 52.5045709, + 13.4600761 + ] + ] + }, + { + "osmId": "480775274", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 293.8996533687757, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042146, + 13.461876 + ], + [ + 52.503947, + 13.4633905 + ], + [ + 52.5039272, + 13.4635004 + ], + [ + 52.5037073, + 13.4647228 + ], + [ + 52.5034479, + 13.466031 + ] + ] + }, + { + "osmId": "480803099", + "name": null, + "lengthMeters": 158.11504562962082, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518394, + 10.0063388 + ], + [ + 53.5521021, + 10.0086911 + ] + ] + }, + { + "osmId": "480884484", + "name": null, + "lengthMeters": 82.17542504788949, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4910541, + 13.3739509 + ], + [ + 52.4916343, + 13.3739998 + ], + [ + 52.4917922, + 13.3740114 + ] + ] + }, + { + "osmId": "481116917", + "name": null, + "lengthMeters": 206.48461726454062, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119135, + 13.5005906 + ], + [ + 52.5121193, + 13.5009748 + ], + [ + 52.512336, + 13.5014052 + ], + [ + 52.5125152, + 13.5018406 + ], + [ + 52.5126729, + 13.5022488 + ], + [ + 52.5128976, + 13.5029301 + ], + [ + 52.5129538, + 13.5031039 + ] + ] + }, + { + "osmId": "481116918", + "name": null, + "lengthMeters": 174.86551254078967, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115119, + 13.499762 + ], + [ + 52.5118626, + 13.5003923 + ], + [ + 52.5121789, + 13.5009702 + ], + [ + 52.5123083, + 13.501229 + ], + [ + 52.5125273, + 13.5017312 + ] + ] + }, + { + "osmId": "481273134", + "name": null, + "lengthMeters": 118.21899878595353, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4502442, + 9.9975982 + ], + [ + 53.4494445, + 9.9987746 + ] + ] + }, + { + "osmId": "481482747", + "name": null, + "lengthMeters": 197.46305938954913, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142789, + 13.5242462 + ], + [ + 52.5143045, + 13.5230851 + ], + [ + 52.5143424, + 13.52133 + ] + ] + }, + { + "osmId": "481482749", + "name": "Ostbahn", + "lengthMeters": 85.33073303933746, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142943, + 13.5190913 + ], + [ + 52.5142738, + 13.5200333 + ], + [ + 52.514267, + 13.5203515 + ] + ] + }, + { + "osmId": "481482751", + "name": null, + "lengthMeters": 318.2784784358255, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142815, + 13.5178557 + ], + [ + 52.5142412, + 13.5196834 + ], + [ + 52.5142334, + 13.5200322 + ], + [ + 52.5141769, + 13.522556 + ] + ] + }, + { + "osmId": "481482758", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 179.41583354204988, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4999575, + 13.4819703 + ], + [ + 52.5002179, + 13.481247 + ], + [ + 52.5003004, + 13.4810093 + ], + [ + 52.5004581, + 13.4805659 + ], + [ + 52.5006038, + 13.4801334 + ], + [ + 52.5007536, + 13.4796654 + ] + ] + }, + { + "osmId": "481695072", + "name": null, + "lengthMeters": 108.23453806230164, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102219, + 13.4346606 + ], + [ + 52.5098882, + 13.435459 + ], + [ + 52.5097441, + 13.4358038 + ], + [ + 52.5096709, + 13.435979 + ] + ] + }, + { + "osmId": "481695073", + "name": null, + "lengthMeters": 97.0398161436353, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5105704, + 13.4350587 + ], + [ + 52.5108616, + 13.4343676 + ], + [ + 52.5110055, + 13.4340262 + ], + [ + 52.5110672, + 13.4338798 + ] + ] + }, + { + "osmId": "481857262", + "name": null, + "lengthMeters": 160.75802194464242, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893831, + 13.3729433 + ], + [ + 52.4908286, + 13.3729008 + ] + ] + }, + { + "osmId": "481857263", + "name": null, + "lengthMeters": 160.73659665719748, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893876, + 13.373009 + ], + [ + 52.4908327, + 13.3729505 + ] + ] + }, + { + "osmId": "482129449", + "name": "Tempelhofer Kurve", + "lengthMeters": 156.2037981522657, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4711706, + 13.3703925 + ], + [ + 52.4711766, + 13.3705809 + ], + [ + 52.4711833, + 13.3708519 + ], + [ + 52.4711876, + 13.3710787 + ], + [ + 52.4711897, + 13.3712972 + ], + [ + 52.4711904, + 13.3714944 + ], + [ + 52.4711896, + 13.371688 + ], + [ + 52.471183, + 13.3726979 + ] + ] + }, + { + "osmId": "482129452", + "name": null, + "lengthMeters": 174.69884073433565, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.533145, + 13.3620905 + ], + [ + 52.5331489, + 13.3620863 + ], + [ + 52.5333297, + 13.3618938 + ], + [ + 52.5337545, + 13.3614376 + ], + [ + 52.5339481, + 13.3612377 + ], + [ + 52.5344616, + 13.3606813 + ] + ] + }, + { + "osmId": "482129453", + "name": null, + "lengthMeters": 210.46535166065644, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5343764, + 13.3604778 + ], + [ + 52.5336394, + 13.3612644 + ], + [ + 52.5335323, + 13.3613824 + ], + [ + 52.5329872, + 13.3619621 + ], + [ + 52.5327891, + 13.3621727 + ] + ] + }, + { + "osmId": "484899018", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 544.7734268668554, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0812311, + 11.5273637 + ], + [ + 48.0815503, + 11.5274953 + ], + [ + 48.0836444, + 11.5283609 + ], + [ + 48.0837517, + 11.5284018 + ], + [ + 48.0848743, + 11.528866 + ], + [ + 48.0859542, + 11.5293125 + ] + ] + }, + { + "osmId": "484899019", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 544.7633083701485, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0859644, + 11.5292585 + ], + [ + 48.0845161, + 11.5286568 + ], + [ + 48.0839525, + 11.5284263 + ], + [ + 48.0828969, + 11.5279945 + ], + [ + 48.0815675, + 11.5274029 + ], + [ + 48.0812538, + 11.5272464 + ] + ] + }, + { + "osmId": "485163012", + "name": "U8", + "lengthMeters": 685.7269188694075, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5100455, + 13.415644 + ], + [ + 52.5096047, + 13.4153042 + ], + [ + 52.5081321, + 13.4141658 + ], + [ + 52.5044744, + 13.4112993 + ] + ] + }, + { + "osmId": "485203540", + "name": null, + "lengthMeters": 1032.6129090528534, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1452937, + 11.4716988 + ], + [ + 48.1453209, + 11.4716843 + ], + [ + 48.1453505, + 11.4716604 + ], + [ + 48.1453664, + 11.4716441 + ], + [ + 48.1453783, + 11.4716302 + ], + [ + 48.145397, + 11.4716037 + ], + [ + 48.1454138, + 11.471575 + ], + [ + 48.1454268, + 11.4715455 + ], + [ + 48.1454368, + 11.4715167 + ], + [ + 48.1454472, + 11.4714792 + ], + [ + 48.1454542, + 11.4714365 + ], + [ + 48.1454591, + 11.4713999 + ], + [ + 48.1454615, + 11.4713497 + ], + [ + 48.1454711, + 11.4709595 + ], + [ + 48.1454799, + 11.4707286 + ], + [ + 48.145485, + 11.47051 + ], + [ + 48.145507, + 11.4699173 + ], + [ + 48.1455297, + 11.4696146 + ], + [ + 48.1455562, + 11.4693545 + ], + [ + 48.1460442, + 11.4663308 + ], + [ + 48.1461427, + 11.4657247 + ], + [ + 48.1461803, + 11.4654854 + ], + [ + 48.1462115, + 11.4652627 + ], + [ + 48.1462447, + 11.4650691 + ], + [ + 48.1464896, + 11.4636109 + ], + [ + 48.1465166, + 11.4634367 + ], + [ + 48.1465581, + 11.4631277 + ], + [ + 48.1465746, + 11.4629795 + ], + [ + 48.146578, + 11.4629489 + ], + [ + 48.1465903, + 11.4628392 + ], + [ + 48.1466225, + 11.4625317 + ], + [ + 48.1466386, + 11.4623413 + ], + [ + 48.1466568, + 11.4621213 + ], + [ + 48.1466733, + 11.4618989 + ], + [ + 48.1466846, + 11.4617054 + ], + [ + 48.146691, + 11.4616203 + ], + [ + 48.1466942, + 11.4615924 + ], + [ + 48.1466975, + 11.4615682 + ], + [ + 48.1467047, + 11.4615314 + ], + [ + 48.1467125, + 11.4615041 + ], + [ + 48.14672, + 11.4614829 + ], + [ + 48.1467273, + 11.4614658 + ], + [ + 48.1467443, + 11.4614359 + ], + [ + 48.1467556, + 11.4614187 + ], + [ + 48.1467692, + 11.4614009 + ], + [ + 48.1467791, + 11.4613893 + ], + [ + 48.1467867, + 11.4613815 + ], + [ + 48.1467982, + 11.4613728 + ], + [ + 48.1468142, + 11.4613631 + ], + [ + 48.1468312, + 11.4613537 + ], + [ + 48.1468482, + 11.4613473 + ], + [ + 48.1468694, + 11.4613409 + ], + [ + 48.1468935, + 11.4613371 + ], + [ + 48.1469282, + 11.4613361 + ], + [ + 48.1469299, + 11.4613362 + ], + [ + 48.1469963, + 11.4613398 + ], + [ + 48.1470948, + 11.4613474 + ], + [ + 48.1471552, + 11.4613514 + ], + [ + 48.14727, + 11.4613568 + ], + [ + 48.1474328, + 11.4613657 + ], + [ + 48.1476078, + 11.461375 + ], + [ + 48.1477105, + 11.4613823 + ], + [ + 48.1478037, + 11.4613888 + ], + [ + 48.1478397, + 11.4613938 + ], + [ + 48.1478566, + 11.4613968 + ], + [ + 48.1478962, + 11.4614039 + ], + [ + 48.147933, + 11.4614114 + ], + [ + 48.1479459, + 11.4614141 + ], + [ + 48.1481798, + 11.461475 + ], + [ + 48.1482286, + 11.4614883 + ], + [ + 48.1483458, + 11.4615194 + ], + [ + 48.1484385, + 11.4615445 + ], + [ + 48.1484686, + 11.4615567 + ], + [ + 48.1484899, + 11.4615627 + ], + [ + 48.1485158, + 11.4615699 + ], + [ + 48.1485311, + 11.4615725 + ], + [ + 48.1485431, + 11.4615745 + ], + [ + 48.148562, + 11.4615746 + ], + [ + 48.1485778, + 11.461572 + ], + [ + 48.1485982, + 11.461565 + ], + [ + 48.1486151, + 11.4615577 + ], + [ + 48.1486302, + 11.4615495 + ], + [ + 48.1486437, + 11.4615401 + ], + [ + 48.1486589, + 11.4615257 + ], + [ + 48.1486738, + 11.4615096 + ], + [ + 48.1486868, + 11.4614912 + ], + [ + 48.1486982, + 11.4614727 + ], + [ + 48.1487105, + 11.4614473 + ], + [ + 48.1487212, + 11.4614203 + ], + [ + 48.1487288, + 11.4613965 + ], + [ + 48.148747, + 11.461334 + ], + [ + 48.1487927, + 11.4611871 + ] + ] + }, + { + "osmId": "485487971", + "name": null, + "lengthMeters": 127.02523212208897, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6530578, + 10.0944566 + ], + [ + 53.6530463, + 10.094449 + ], + [ + 53.6526292, + 10.0941725 + ], + [ + 53.6522049, + 10.0939077 + ], + [ + 53.6519883, + 10.0937798 + ] + ] + }, + { + "osmId": "485487972", + "name": null, + "lengthMeters": 99.8420202995848, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6506886, + 10.0932594 + ], + [ + 53.6510632, + 10.0934702 + ], + [ + 53.6515397, + 10.0937421 + ] + ] + }, + { + "osmId": "485489628", + "name": null, + "lengthMeters": 222.80200464764224, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6458668, + 10.0900569 + ], + [ + 53.6458854, + 10.0900769 + ], + [ + 53.6462627, + 10.0903644 + ], + [ + 53.6466761, + 10.0906957 + ], + [ + 53.6472193, + 10.0910809 + ], + [ + 53.6477095, + 10.0913773 + ] + ] + }, + { + "osmId": "485522417", + "name": null, + "lengthMeters": 523.6326182025823, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6309177, + 10.0468202 + ], + [ + 53.6296694, + 10.0408517 + ], + [ + 53.6293515, + 10.039331 + ] + ] + }, + { + "osmId": "485587367", + "name": null, + "lengthMeters": 385.7818391373214, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6491022, + 10.0921855 + ], + [ + 53.6490126, + 10.0921354 + ], + [ + 53.6483088, + 10.0916879 + ], + [ + 53.6477175, + 10.0913173 + ], + [ + 53.6472218, + 10.0910067 + ], + [ + 53.6466978, + 10.0906582 + ], + [ + 53.6462903, + 10.090315 + ], + [ + 53.6459249, + 10.0899766 + ], + [ + 53.6459014, + 10.0899516 + ] + ] + }, + { + "osmId": "486128847", + "name": null, + "lengthMeters": 1153.2702829643647, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5392772, + 13.6202099 + ], + [ + 52.5389949, + 13.6179844 + ], + [ + 52.5388531, + 13.6168669 + ], + [ + 52.5387497, + 13.616213 + ], + [ + 52.5387039, + 13.6159634 + ], + [ + 52.5386526, + 13.6157044 + ], + [ + 52.538162, + 13.6133783 + ], + [ + 52.5378625, + 13.6119578 + ], + [ + 52.5377185, + 13.61124 + ], + [ + 52.5375876, + 13.6105311 + ], + [ + 52.5372119, + 13.6085093 + ], + [ + 52.5370875, + 13.6079226 + ], + [ + 52.5366202, + 13.6061204 + ], + [ + 52.5361664, + 13.6043957 + ], + [ + 52.536066, + 13.6040396 + ] + ] + }, + { + "osmId": "488111164", + "name": null, + "lengthMeters": 75.32527857507458, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4685405, + 9.9822159 + ], + [ + 53.4685605, + 9.9821331 + ], + [ + 53.4685867, + 9.982014 + ], + [ + 53.4686605, + 9.9816926 + ], + [ + 53.4687212, + 9.9814115 + ], + [ + 53.4687837, + 9.9811539 + ] + ] + }, + { + "osmId": "488200388", + "name": null, + "lengthMeters": 99.1767039052017, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4725289, + 9.9599206 + ], + [ + 53.4726136, + 9.9594675 + ], + [ + 53.472764, + 9.9586623 + ], + [ + 53.4727947, + 9.9584902 + ] + ] + }, + { + "osmId": "488200390", + "name": null, + "lengthMeters": 767.8485790627086, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4727947, + 9.9584902 + ], + [ + 53.4732785, + 9.9558845 + ], + [ + 53.4744478, + 9.9496356 + ], + [ + 53.4745363, + 9.9491071 + ], + [ + 53.4746191, + 9.9484433 + ], + [ + 53.4746798, + 9.9478373 + ], + [ + 53.4747412, + 9.9473682 + ] + ] + }, + { + "osmId": "490580871", + "name": null, + "lengthMeters": 196.66165862564523, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1519398, + 11.4561311 + ], + [ + 48.1519774, + 11.455967 + ], + [ + 48.1520171, + 11.4557935 + ], + [ + 48.1521316, + 11.4552428 + ], + [ + 48.1522427, + 11.4547086 + ], + [ + 48.1522565, + 11.4546264 + ], + [ + 48.152356, + 11.4541014 + ], + [ + 48.1524156, + 11.4537264 + ], + [ + 48.1524375, + 11.4535886 + ] + ] + }, + { + "osmId": "490759234", + "name": null, + "lengthMeters": 1317.6257578957402, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6697215, + 13.3215944 + ], + [ + 52.6696979, + 13.3216762 + ], + [ + 52.6695606, + 13.3221533 + ], + [ + 52.6694925, + 13.3223806 + ], + [ + 52.6694381, + 13.3225635 + ], + [ + 52.6693893, + 13.3227186 + ], + [ + 52.6693257, + 13.3229105 + ], + [ + 52.6692525, + 13.3231226 + ], + [ + 52.669178, + 13.3233293 + ], + [ + 52.6691032, + 13.3235248 + ], + [ + 52.6690228, + 13.3237279 + ], + [ + 52.6688972, + 13.3240295 + ], + [ + 52.6687669, + 13.3243342 + ], + [ + 52.6685287, + 13.3248736 + ], + [ + 52.6683643, + 13.3252506 + ], + [ + 52.6682831, + 13.3254431 + ], + [ + 52.6682012, + 13.3256387 + ], + [ + 52.6681216, + 13.3258368 + ], + [ + 52.6680452, + 13.326033 + ], + [ + 52.667965, + 13.3262491 + ], + [ + 52.6678883, + 13.3264632 + ], + [ + 52.6677998, + 13.3267237 + ], + [ + 52.6677131, + 13.3269923 + ], + [ + 52.6676474, + 13.3272035 + ], + [ + 52.6675845, + 13.3274184 + ], + [ + 52.6675252, + 13.3276315 + ], + [ + 52.6674677, + 13.3278444 + ], + [ + 52.667411, + 13.3280652 + ], + [ + 52.6673568, + 13.3282881 + ], + [ + 52.6673031, + 13.3285116 + ], + [ + 52.6671503, + 13.3291962 + ], + [ + 52.6669137, + 13.330282 + ], + [ + 52.6668247, + 13.3306841 + ], + [ + 52.6667299, + 13.3311115 + ], + [ + 52.6664333, + 13.3324865 + ], + [ + 52.6664151, + 13.3325715 + ], + [ + 52.6663609, + 13.3328243 + ], + [ + 52.6662815, + 13.3331948 + ], + [ + 52.6661171, + 13.3339495 + ], + [ + 52.6660453, + 13.3342751 + ], + [ + 52.6659721, + 13.3345977 + ], + [ + 52.6658959, + 13.3349212 + ], + [ + 52.6658674, + 13.335036 + ], + [ + 52.6658368, + 13.3351587 + ], + [ + 52.6657754, + 13.3353957 + ], + [ + 52.6657117, + 13.335633 + ], + [ + 52.6656216, + 13.3359642 + ], + [ + 52.6656075, + 13.3360159 + ], + [ + 52.6654561, + 13.3365596 + ], + [ + 52.665344, + 13.3369615 + ], + [ + 52.6652361, + 13.3373718 + ], + [ + 52.6651786, + 13.3376019 + ], + [ + 52.6651226, + 13.3378326 + ], + [ + 52.6650653, + 13.3380756 + ], + [ + 52.6649939, + 13.3383917 + ], + [ + 52.6649147, + 13.338755 + ], + [ + 52.6648024, + 13.3392731 + ] + ] + }, + { + "osmId": "490759236", + "name": null, + "lengthMeters": 1327.2794366464188, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.664934, + 13.3392076 + ], + [ + 52.6650986, + 13.3384508 + ], + [ + 52.6651724, + 13.3381196 + ], + [ + 52.6652262, + 13.3378906 + ], + [ + 52.6652817, + 13.3376644 + ], + [ + 52.6653389, + 13.3374409 + ], + [ + 52.6656348, + 13.3362993 + ], + [ + 52.6657071, + 13.3360178 + ], + [ + 52.6657875, + 13.3356803 + ], + [ + 52.6659018, + 13.3351749 + ], + [ + 52.6659283, + 13.3350493 + ], + [ + 52.6659536, + 13.3349294 + ], + [ + 52.6661605, + 13.3339766 + ], + [ + 52.6661637, + 13.3339618 + ], + [ + 52.6662454, + 13.3335816 + ], + [ + 52.6662962, + 13.3333455 + ], + [ + 52.6664114, + 13.3328098 + ], + [ + 52.6667729, + 13.331133 + ], + [ + 52.6668653, + 13.3307052 + ], + [ + 52.6671851, + 13.3292164 + ], + [ + 52.6673391, + 13.3285324 + ], + [ + 52.6673914, + 13.3283108 + ], + [ + 52.6674458, + 13.3280892 + ], + [ + 52.6675022, + 13.3278676 + ], + [ + 52.6675605, + 13.3276543 + ], + [ + 52.6676197, + 13.327441 + ], + [ + 52.6676821, + 13.3272308 + ], + [ + 52.6677463, + 13.3270205 + ], + [ + 52.6678318, + 13.3267565 + ], + [ + 52.6679202, + 13.326494 + ], + [ + 52.6679975, + 13.3262794 + ], + [ + 52.668077, + 13.3260666 + ], + [ + 52.6681538, + 13.3258683 + ], + [ + 52.6682326, + 13.3256737 + ], + [ + 52.6683132, + 13.3254801 + ], + [ + 52.6683953, + 13.3252894 + ], + [ + 52.6684784, + 13.3251001 + ], + [ + 52.6685632, + 13.3249128 + ], + [ + 52.6688065, + 13.32438 + ], + [ + 52.6689411, + 13.3240813 + ], + [ + 52.6690717, + 13.3237811 + ], + [ + 52.6691553, + 13.3235821 + ], + [ + 52.6692354, + 13.3233875 + ], + [ + 52.6693157, + 13.3231827 + ], + [ + 52.6693922, + 13.3229756 + ], + [ + 52.6694545, + 13.3227987 + ], + [ + 52.6695148, + 13.3226211 + ], + [ + 52.6695734, + 13.3224425 + ], + [ + 52.6696434, + 13.3222171 + ], + [ + 52.6697117, + 13.3219898 + ], + [ + 52.669779, + 13.3217614 + ], + [ + 52.6698799, + 13.321411 + ] + ] + }, + { + "osmId": "490816059", + "name": null, + "lengthMeters": 182.66025843333455, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6873948, + 10.2514699 + ], + [ + 53.6866102, + 10.2511534 + ], + [ + 53.6860431, + 10.2511159 + ], + [ + 53.6857778, + 10.2511856 + ] + ] + }, + { + "osmId": "490816060", + "name": null, + "lengthMeters": 212.7617864898766, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6904145, + 10.2526033 + ], + [ + 53.6901485, + 10.2525768 + ], + [ + 53.6885444, + 10.2519465 + ] + ] + }, + { + "osmId": "491175816", + "name": null, + "lengthMeters": 420.35611738160776, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5246761, + 9.928518 + ], + [ + 53.524855, + 9.9287114 + ], + [ + 53.5248741, + 9.9287321 + ], + [ + 53.5251124, + 9.9289867 + ], + [ + 53.5252617, + 9.9291462 + ], + [ + 53.5256343, + 9.9295798 + ], + [ + 53.5258768, + 9.9298704 + ], + [ + 53.5260943, + 9.9301266 + ], + [ + 53.5268919, + 9.931052 + ], + [ + 53.527012, + 9.9311839 + ], + [ + 53.5271286, + 9.9313009 + ], + [ + 53.5273555, + 9.9315055 + ], + [ + 53.5277786, + 9.9318602 + ], + [ + 53.5278163, + 9.9318945 + ], + [ + 53.5278598, + 9.93193 + ] + ] + }, + { + "osmId": "491176897", + "name": null, + "lengthMeters": 79.7281869843587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5127887, + 9.9100717 + ], + [ + 53.512379, + 9.91012 + ], + [ + 53.5120743, + 9.9101727 + ] + ] + }, + { + "osmId": "491176898", + "name": null, + "lengthMeters": 185.06071246583164, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5139073, + 9.9132538 + ], + [ + 53.513916, + 9.9133533 + ], + [ + 53.5139461, + 9.9136974 + ], + [ + 53.5139517, + 9.9143466 + ], + [ + 53.5138948, + 9.9149887 + ], + [ + 53.5138503, + 9.9155187 + ], + [ + 53.513797, + 9.9157821 + ], + [ + 53.5137433, + 9.9160029 + ] + ] + }, + { + "osmId": "493153260", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 308.68862468620955, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.602176, + 9.9798782 + ], + [ + 53.6021696, + 9.9799382 + ], + [ + 53.6020383, + 9.9811736 + ], + [ + 53.6019316, + 9.9818807 + ], + [ + 53.6018527, + 9.9823207 + ], + [ + 53.6017827, + 9.9827115 + ], + [ + 53.601477, + 9.9843995 + ] + ] + }, + { + "osmId": "493153261", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 357.49962101092194, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5629196, + 10.0644773 + ], + [ + 53.5618334, + 10.065152 + ], + [ + 53.5616711, + 10.0652528 + ], + [ + 53.5611152, + 10.0656153 + ], + [ + 53.5599105, + 10.0663833 + ] + ] + }, + { + "osmId": "493503933", + "name": null, + "lengthMeters": 154.00846544180158, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4180333, + 13.1739396 + ], + [ + 52.4181757, + 13.1742317 + ], + [ + 52.4182802, + 13.174439 + ], + [ + 52.4184286, + 13.1747465 + ], + [ + 52.4185885, + 13.175069 + ], + [ + 52.4189038, + 13.1757059 + ] + ] + }, + { + "osmId": "494022014", + "name": "Anhalter Vorortbahn", + "lengthMeters": 345.50198740501276, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992211, + 13.3779448 + ], + [ + 52.4993963, + 13.3782824 + ], + [ + 52.4996339, + 13.3786615 + ], + [ + 52.4999259, + 13.3790585 + ], + [ + 52.5004137, + 13.3795409 + ], + [ + 52.5013596, + 13.3801538 + ], + [ + 52.5018639, + 13.3804739 + ] + ] + }, + { + "osmId": "494022018", + "name": null, + "lengthMeters": 342.66694363995106, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4992483, + 13.3779182 + ], + [ + 52.4994169, + 13.3782421 + ], + [ + 52.4996586, + 13.3786177 + ], + [ + 52.4999499, + 13.3789916 + ], + [ + 52.5004362, + 13.3794763 + ], + [ + 52.5017375, + 13.3803152 + ], + [ + 52.50188, + 13.3804072 + ] + ] + }, + { + "osmId": "494022020", + "name": "Anhalter Vorortbahn", + "lengthMeters": 107.15724398641656, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5018639, + 13.3804739 + ], + [ + 52.5022302, + 13.3807165 + ], + [ + 52.5024639, + 13.3808781 + ], + [ + 52.502604, + 13.3809897 + ], + [ + 52.5027475, + 13.381104 + ] + ] + }, + { + "osmId": "494022024", + "name": null, + "lengthMeters": 111.28969707426754, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.50188, + 13.3804072 + ], + [ + 52.5022462, + 13.3806472 + ], + [ + 52.5024877, + 13.380792 + ], + [ + 52.5028202, + 13.3809689 + ] + ] + }, + { + "osmId": "494470512", + "name": "Kremmener Bahn", + "lengthMeters": 514.1626464042818, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5762951, + 13.3685637 + ], + [ + 52.5762957, + 13.3685483 + ], + [ + 52.5763224, + 13.3678304 + ], + [ + 52.5763434, + 13.3672368 + ], + [ + 52.5764232, + 13.3648989 + ], + [ + 52.5764437, + 13.3643873 + ], + [ + 52.5764587, + 13.3641305 + ], + [ + 52.5764669, + 13.3639919 + ], + [ + 52.5764822, + 13.3637298 + ], + [ + 52.5765306, + 13.3630803 + ], + [ + 52.5765606, + 13.3627055 + ], + [ + 52.5766207, + 13.3620829 + ], + [ + 52.5767298, + 13.3609956 + ] + ] + }, + { + "osmId": "494874847", + "name": null, + "lengthMeters": 103.81973599499673, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1534607, + 11.6220687 + ], + [ + 48.1536763, + 11.6234304 + ] + ] + }, + { + "osmId": "494891742", + "name": null, + "lengthMeters": 277.34459934488314, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1758786, + 11.5881843 + ], + [ + 48.1746949, + 11.5877094 + ], + [ + 48.1734805, + 11.5871578 + ] + ] + }, + { + "osmId": "494891743", + "name": null, + "lengthMeters": 281.0820423031338, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1734401, + 11.5871936 + ], + [ + 48.1746887, + 11.5877526 + ], + [ + 48.1758723, + 11.5882248 + ] + ] + }, + { + "osmId": "496387204", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 97.9882644405011, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6621633, + 13.2145718 + ], + [ + 52.6619186, + 13.213176 + ] + ] + }, + { + "osmId": "496500389", + "name": null, + "lengthMeters": 502.7866433610725, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4857672, + 13.257652 + ], + [ + 52.4860921, + 13.2581636 + ], + [ + 52.4862103, + 13.2583504 + ], + [ + 52.4863819, + 13.2586279 + ], + [ + 52.4865967, + 13.2589822 + ], + [ + 52.4868015, + 13.2593405 + ], + [ + 52.4870035, + 13.2597193 + ], + [ + 52.4872033, + 13.2601044 + ], + [ + 52.4874818, + 13.2606355 + ], + [ + 52.4877464, + 13.2611492 + ], + [ + 52.4885479, + 13.2627256 + ], + [ + 52.4887797, + 13.2631806 + ] + ] + }, + { + "osmId": "496500390", + "name": null, + "lengthMeters": 140.7810136843318, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4894476, + 13.2642579 + ], + [ + 52.4892178, + 13.2638103 + ], + [ + 52.4892046, + 13.2637846 + ], + [ + 52.4889277, + 13.2632454 + ], + [ + 52.488917, + 13.2632245 + ], + [ + 52.4886322, + 13.2626673 + ] + ] + }, + { + "osmId": "496500391", + "name": null, + "lengthMeters": 452.71964132771075, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5062076, + 13.4882259 + ], + [ + 52.5062054, + 13.4882181 + ], + [ + 52.5060825, + 13.487789 + ], + [ + 52.5059329, + 13.4871628 + ], + [ + 52.5057824, + 13.4865612 + ], + [ + 52.5057139, + 13.4862179 + ], + [ + 52.5056623, + 13.4858781 + ], + [ + 52.5056222, + 13.4854702 + ], + [ + 52.5056012, + 13.4850497 + ], + [ + 52.5055889, + 13.4846194 + ], + [ + 52.5055852, + 13.4841909 + ], + [ + 52.5055884, + 13.4838201 + ], + [ + 52.5056088, + 13.4834204 + ], + [ + 52.5056473, + 13.483033 + ], + [ + 52.5057044, + 13.4826626 + ], + [ + 52.5058936, + 13.4817856 + ] + ] + }, + { + "osmId": "496500392", + "name": null, + "lengthMeters": 250.26217660255452, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4873104, + 13.5112558 + ], + [ + 52.4872659, + 13.5113571 + ], + [ + 52.4861224, + 13.5139604 + ], + [ + 52.4859937, + 13.5142533 + ] + ] + }, + { + "osmId": "496624828", + "name": null, + "lengthMeters": 100.2313173270584, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4444192, + 13.2971787 + ], + [ + 52.4439737, + 13.2958931 + ] + ] + }, + { + "osmId": "498557622", + "name": null, + "lengthMeters": 156.19710923079367, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0971291, + 11.5791654 + ], + [ + 48.0963702, + 11.5773955 + ] + ] + }, + { + "osmId": "498557623", + "name": null, + "lengthMeters": 157.743453465521, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0962741, + 11.5774792 + ], + [ + 48.0970313, + 11.5792754 + ] + ] + }, + { + "osmId": "498864136", + "name": null, + "lengthMeters": 91.44485362909215, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1535895, + 11.6220545 + ], + [ + 48.1534068, + 11.6208526 + ] + ] + }, + { + "osmId": "499881203", + "name": null, + "lengthMeters": 77.8289178088686, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2138819, + 11.5410178 + ], + [ + 48.2138821, + 11.5403787 + ], + [ + 48.2138941, + 11.5399678 + ] + ] + }, + { + "osmId": "499881204", + "name": null, + "lengthMeters": 126.86593743239897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334319, + 11.7034595 + ], + [ + 48.1334182, + 11.7017501 + ] + ] + }, + { + "osmId": "499881205", + "name": null, + "lengthMeters": 139.62957854639603, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1333168, + 11.7034564 + ], + [ + 48.1333239, + 11.705101 + ], + [ + 48.1333501, + 11.7053346 + ] + ] + }, + { + "osmId": "499881206", + "name": null, + "lengthMeters": 77.0204392462766, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2137975, + 11.5399522 + ], + [ + 48.2137652, + 11.5403442 + ], + [ + 48.2137267, + 11.5409861 + ] + ] + }, + { + "osmId": "500100529", + "name": null, + "lengthMeters": 140.7858522345461, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0882863, + 11.480886 + ], + [ + 48.088059, + 11.4817141 + ], + [ + 48.0878134, + 11.4826442 + ] + ] + }, + { + "osmId": "500100530", + "name": null, + "lengthMeters": 122.67798762149525, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0884063, + 11.4809555 + ], + [ + 48.0886168, + 11.4801889 + ], + [ + 48.0887507, + 11.4796752 + ], + [ + 48.0888044, + 11.479416 + ] + ] + }, + { + "osmId": "500193941", + "name": null, + "lengthMeters": 100.44918630086923, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1793087, + 11.5561508 + ], + [ + 48.1799923, + 11.5556857 + ], + [ + 48.180131, + 11.5555899 + ] + ] + }, + { + "osmId": "500193942", + "name": null, + "lengthMeters": 209.3394953602371, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1322715, + 11.5693903 + ], + [ + 48.1325911, + 11.5688508 + ], + [ + 48.132858, + 11.5684172 + ], + [ + 48.1335785, + 11.567362 + ] + ] + }, + { + "osmId": "500193943", + "name": null, + "lengthMeters": 101.56066192083992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1333704, + 11.5666437 + ], + [ + 48.1326977, + 11.5675694 + ] + ] + }, + { + "osmId": "500193944", + "name": null, + "lengthMeters": 98.67846776439342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1800179, + 11.5552211 + ], + [ + 48.1798799, + 11.5553089 + ], + [ + 48.1792073, + 11.5557627 + ] + ] + }, + { + "osmId": "500195105", + "name": null, + "lengthMeters": 113.50603635343558, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1711874, + 11.5282844 + ], + [ + 48.1707022, + 11.5283554 + ], + [ + 48.1701698, + 11.5284013 + ] + ] + }, + { + "osmId": "500195106", + "name": null, + "lengthMeters": 114.74215207833558, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1701716, + 11.5285935 + ], + [ + 48.1707034, + 11.5285516 + ], + [ + 48.1711977, + 11.5284452 + ] + ] + }, + { + "osmId": "500196766", + "name": null, + "lengthMeters": 109.30377622555457, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.108665, + 11.472253 + ], + [ + 48.108781, + 11.4728811 + ], + [ + 48.1089975, + 11.4736348 + ] + ] + }, + { + "osmId": "500196767", + "name": null, + "lengthMeters": 106.6517418418007, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1091369, + 11.4735324 + ], + [ + 48.1089151, + 11.4727996 + ], + [ + 48.1087714, + 11.4722055 + ] + ] + }, + { + "osmId": "501453152", + "name": null, + "lengthMeters": 2406.8997988149513, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0153056, + 11.719555 + ], + [ + 48.0152663, + 11.7195597 + ], + [ + 48.01524, + 11.7195629 + ], + [ + 48.0150576, + 11.719585 + ], + [ + 48.0149703, + 11.7195948 + ], + [ + 48.0145292, + 11.7196448 + ], + [ + 48.0140307, + 11.7197189 + ], + [ + 48.0136852, + 11.7197789 + ], + [ + 48.0130933, + 11.7199343 + ], + [ + 48.0124778, + 11.7201645 + ], + [ + 48.012176, + 11.720313 + ], + [ + 48.0119031, + 11.7204474 + ], + [ + 48.0115758, + 11.7206374 + ], + [ + 48.0113285, + 11.7207964 + ], + [ + 48.0106391, + 11.7212952 + ], + [ + 48.0097579, + 11.7219365 + ], + [ + 48.0087516, + 11.7226746 + ], + [ + 48.0081869, + 11.7230888 + ], + [ + 48.0078074, + 11.7233622 + ], + [ + 48.0074944, + 11.7235873 + ], + [ + 48.0070736, + 11.7238988 + ], + [ + 48.0066782, + 11.7241952 + ], + [ + 48.0062505, + 11.7245229 + ], + [ + 48.0059351, + 11.7247698 + ], + [ + 48.0054976, + 11.7251398 + ], + [ + 48.0050779, + 11.725505 + ], + [ + 48.0041172, + 11.7264461 + ], + [ + 48.0039741, + 11.726588 + ], + [ + 48.0028096, + 11.7277427 + ], + [ + 48.0026105, + 11.7279335 + ], + [ + 48.0023496, + 11.7281819 + ], + [ + 48.0020109, + 11.7285182 + ], + [ + 48.0015536, + 11.7289823 + ], + [ + 48.0013749, + 11.7291793 + ], + [ + 48.0013008, + 11.7292599 + ], + [ + 48.0011075, + 11.7295173 + ], + [ + 48.0009492, + 11.7297522 + ], + [ + 48.0007152, + 11.7301279 + ], + [ + 48.0003782, + 11.7307537 + ], + [ + 48.000196, + 11.731092 + ], + [ + 47.9997623, + 11.7319212 + ], + [ + 47.9994363, + 11.7324663 + ], + [ + 47.9992259, + 11.7327745 + ], + [ + 47.9990388, + 11.7330185 + ], + [ + 47.9989077, + 11.733182 + ], + [ + 47.9987324, + 11.7333605 + ], + [ + 47.9985263, + 11.733554 + ], + [ + 47.9982975, + 11.7337492 + ], + [ + 47.9981579, + 11.7338493 + ], + [ + 47.9967109, + 11.7348039 + ], + [ + 47.9967082, + 11.7348057 + ] + ] + }, + { + "osmId": "501841703", + "name": null, + "lengthMeters": 413.33122549716444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0241904, + 11.7184619 + ], + [ + 48.0241855, + 11.7184627 + ], + [ + 48.023802, + 11.718539 + ], + [ + 48.0233518, + 11.7186169 + ], + [ + 48.0229517, + 11.7186684 + ], + [ + 48.0226036, + 11.7187101 + ], + [ + 48.0217426, + 11.7188064 + ], + [ + 48.0206913, + 11.7189226 + ], + [ + 48.0204879, + 11.7189415 + ] + ] + }, + { + "osmId": "501841704", + "name": null, + "lengthMeters": 224.89019755629886, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0173199, + 11.7192839 + ], + [ + 48.0171309, + 11.7193048 + ], + [ + 48.0169854, + 11.7193233 + ], + [ + 48.0169276, + 11.7193328 + ], + [ + 48.0166931, + 11.719365 + ], + [ + 48.0160116, + 11.719459 + ], + [ + 48.0154793, + 11.7195314 + ], + [ + 48.0153056, + 11.719555 + ] + ] + }, + { + "osmId": "502469569", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 761.2263806039862, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4899808, + 10.1610537 + ], + [ + 53.4899168, + 10.1616423 + ], + [ + 53.4897861, + 10.1628439 + ], + [ + 53.4890702, + 10.1692179 + ], + [ + 53.4887216, + 10.1722271 + ], + [ + 53.4887064, + 10.1723587 + ] + ] + }, + { + "osmId": "502469574", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 767.6948084038122, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4887934, + 10.1724835 + ], + [ + 53.4888064, + 10.1723628 + ], + [ + 53.489143, + 10.1692377 + ], + [ + 53.4891431, + 10.1692367 + ], + [ + 53.4897925, + 10.1631913 + ], + [ + 53.4899563, + 10.161655 + ], + [ + 53.4900193, + 10.1610639 + ] + ] + }, + { + "osmId": "503440162", + "name": "Stettiner Bahn", + "lengthMeters": 132.62199049972548, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5876101, + 13.4395326 + ], + [ + 52.587286, + 13.4391932 + ], + [ + 52.5866125, + 13.4384568 + ] + ] + }, + { + "osmId": "503475927", + "name": null, + "lengthMeters": 138.9122583691062, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535957, + 13.3818854 + ], + [ + 52.5357196, + 13.3822583 + ], + [ + 52.5354267, + 13.3827166 + ], + [ + 52.5350538, + 13.3833043 + ] + ] + }, + { + "osmId": "504159585", + "name": null, + "lengthMeters": 197.99955578412016, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4909338, + 9.9771708 + ], + [ + 53.4910318, + 9.9771524 + ], + [ + 53.4911723, + 9.9771337 + ], + [ + 53.4912364, + 9.9771289 + ], + [ + 53.4917885, + 9.9770401 + ], + [ + 53.4918798, + 9.9770254 + ], + [ + 53.4922258, + 9.9769833 + ], + [ + 53.4922404, + 9.9769807 + ], + [ + 53.4927068, + 9.9768976 + ] + ] + }, + { + "osmId": "504273419", + "name": null, + "lengthMeters": 149.90539051157333, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4830506, + 13.5209595 + ], + [ + 52.482846, + 13.5214254 + ], + [ + 52.4826532, + 13.5218646 + ], + [ + 52.4822664, + 13.5227601 + ] + ] + }, + { + "osmId": "504503831", + "name": null, + "lengthMeters": 162.21639281156234, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6603824, + 13.5350633 + ], + [ + 52.6604124, + 13.5351209 + ], + [ + 52.6604772, + 13.535253 + ], + [ + 52.660541, + 13.5353818 + ], + [ + 52.6606597, + 13.5356273 + ], + [ + 52.6609261, + 13.53617 + ], + [ + 52.6613009, + 13.5369319 + ] + ] + }, + { + "osmId": "504503833", + "name": null, + "lengthMeters": 186.3146003412064, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6579992, + 13.5308736 + ], + [ + 52.6585802, + 13.5318709 + ], + [ + 52.6591434, + 13.53278 + ], + [ + 52.6591783, + 13.5328358 + ] + ] + }, + { + "osmId": "504626789", + "name": null, + "lengthMeters": 360.2397854218693, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4194854, + 13.1761234 + ], + [ + 52.4193944, + 13.1759427 + ], + [ + 52.4192949, + 13.1757431 + ], + [ + 52.4186457, + 13.1743808 + ], + [ + 52.417966, + 13.1729223 + ], + [ + 52.4175006, + 13.1719254 + ] + ] + }, + { + "osmId": "505142860", + "name": "Niederelbebahn", + "lengthMeters": 279.6159503928591, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4717256, + 9.914993 + ], + [ + 53.4717006, + 9.9185468 + ], + [ + 53.471687, + 9.9192171 + ] + ] + }, + { + "osmId": "505142864", + "name": "Niederelbebahn", + "lengthMeters": 832.9086529333281, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4705006, + 9.9609152 + ], + [ + 53.470504, + 9.9608691 + ], + [ + 53.4706555, + 9.9588334 + ], + [ + 53.47092, + 9.9553375 + ], + [ + 53.4712665, + 9.9517882 + ], + [ + 53.4713904, + 9.9504551 + ], + [ + 53.4714706, + 9.949412 + ], + [ + 53.4714758, + 9.9493442 + ], + [ + 53.4715294, + 9.9484526 + ] + ] + }, + { + "osmId": "505142865", + "name": "Niederelbebahn", + "lengthMeters": 112.59755604869, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4704648, + 9.9609007 + ], + [ + 53.4704499, + 9.9611021 + ], + [ + 53.4703038, + 9.9625801 + ] + ] + }, + { + "osmId": "505167439", + "name": null, + "lengthMeters": 438.54255468095096, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.405063, + 13.3063295 + ], + [ + 52.4053488, + 13.3065005 + ], + [ + 52.4056356, + 13.3066554 + ], + [ + 52.4060892, + 13.3068797 + ], + [ + 52.40768, + 13.3075955 + ], + [ + 52.4088491, + 13.3081333 + ] + ] + }, + { + "osmId": "505167440", + "name": null, + "lengthMeters": 116.53136177241744, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4099655, + 13.3084508 + ], + [ + 52.4093306, + 13.3081465 + ], + [ + 52.4089596, + 13.3079688 + ] + ] + }, + { + "osmId": "505167441", + "name": null, + "lengthMeters": 374.60796321106943, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4835854, + 13.3573048 + ], + [ + 52.4815755, + 13.3548041 + ], + [ + 52.4809101, + 13.353943 + ] + ] + }, + { + "osmId": "505167442", + "name": null, + "lengthMeters": 295.7542118402768, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4814467, + 13.354705 + ], + [ + 52.4814956, + 13.3547684 + ], + [ + 52.4835596, + 13.3573578 + ] + ] + }, + { + "osmId": "505246575", + "name": "Hafenbahn", + "lengthMeters": 537.6965513135133, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4718856, + 9.912308 + ], + [ + 53.4718871, + 9.9122572 + ], + [ + 53.4718998, + 9.9118382 + ], + [ + 53.471911, + 9.9114687 + ], + [ + 53.4720738, + 9.907378 + ], + [ + 53.4721362, + 9.9058086 + ], + [ + 53.4721381, + 9.9057608 + ], + [ + 53.4721635, + 9.9050726 + ], + [ + 53.4721853, + 9.9047972 + ], + [ + 53.472249, + 9.9042111 + ] + ] + }, + { + "osmId": "505340747", + "name": null, + "lengthMeters": 463.69936455550834, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4494445, + 9.9987746 + ], + [ + 53.4492456, + 9.999071 + ], + [ + 53.4488408, + 9.9996742 + ], + [ + 53.4483637, + 10.0003852 + ], + [ + 53.4480749, + 10.0008156 + ], + [ + 53.4477756, + 10.0012616 + ], + [ + 53.4473422, + 10.0018991 + ], + [ + 53.4471881, + 10.002132 + ], + [ + 53.4467858, + 10.0027278 + ], + [ + 53.4463708, + 10.0033423 + ], + [ + 53.4463223, + 10.0034163 + ] + ] + }, + { + "osmId": "505343580", + "name": null, + "lengthMeters": 86.23124286600121, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4423707, + 10.0087332 + ], + [ + 53.4417243, + 10.0094525 + ] + ] + }, + { + "osmId": "505508846", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 1216.1838937255086, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4250651, + 10.0283508 + ], + [ + 53.4255862, + 10.0276252 + ], + [ + 53.4259406, + 10.0271665 + ], + [ + 53.4270221, + 10.0259122 + ], + [ + 53.4275837, + 10.0252616 + ], + [ + 53.4287588, + 10.0239016 + ], + [ + 53.4314814, + 10.020746 + ], + [ + 53.432912, + 10.0191108 + ], + [ + 53.4336103, + 10.0182735 + ], + [ + 53.4340284, + 10.0178425 + ] + ] + }, + { + "osmId": "505508847", + "name": null, + "lengthMeters": 154.59023271859058, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4258046, + 10.0276614 + ], + [ + 53.425832, + 10.0276283 + ], + [ + 53.4261957, + 10.027188 + ], + [ + 53.426219, + 10.0271598 + ], + [ + 53.4262496, + 10.0271244 + ], + [ + 53.4265722, + 10.0267509 + ], + [ + 53.426595, + 10.0267245 + ], + [ + 53.4269428, + 10.0263218 + ] + ] + }, + { + "osmId": "505508848", + "name": null, + "lengthMeters": 447.28616121539403, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4227206, + 10.0319897 + ], + [ + 53.4229298, + 10.0316753 + ], + [ + 53.4229385, + 10.0316622 + ], + [ + 53.4230011, + 10.0315682 + ], + [ + 53.42311, + 10.0314045 + ], + [ + 53.4235476, + 10.0307468 + ], + [ + 53.4245658, + 10.0292866 + ], + [ + 53.4251101, + 10.0285258 + ], + [ + 53.4252124, + 10.0283981 + ], + [ + 53.425631, + 10.0278753 + ], + [ + 53.4257221, + 10.0277615 + ], + [ + 53.4258046, + 10.0276614 + ] + ] + }, + { + "osmId": "505704895", + "name": null, + "lengthMeters": 164.6130342792029, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4133944, + 13.5732077 + ], + [ + 52.4136347, + 13.5728337 + ], + [ + 52.4141147, + 13.5720341 + ], + [ + 52.4142815, + 13.5717777 + ], + [ + 52.4144552, + 13.5715155 + ] + ] + }, + { + "osmId": "505939991", + "name": null, + "lengthMeters": 96.20147279083139, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.511104, + 13.4339313 + ], + [ + 52.5110686, + 13.4340137 + ], + [ + 52.5110663, + 13.4340192 + ], + [ + 52.5106059, + 13.4350936 + ] + ] + }, + { + "osmId": "506139281", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 129.9824768044001, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5036975, + 13.4650142 + ], + [ + 52.5038648, + 13.4640715 + ], + [ + 52.5039633, + 13.463511 + ], + [ + 52.5040233, + 13.4631699 + ] + ] + }, + { + "osmId": "507294978", + "name": null, + "lengthMeters": 276.3911491482105, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5163603, + 13.2574522 + ], + [ + 52.5163561, + 13.2571578 + ], + [ + 52.5163412, + 13.2567773 + ], + [ + 52.5163241, + 13.2564842 + ], + [ + 52.5163047, + 13.2562215 + ], + [ + 52.5162702, + 13.255874 + ], + [ + 52.5162298, + 13.2555568 + ], + [ + 52.5161157, + 13.2548461 + ], + [ + 52.5160794, + 13.2546491 + ], + [ + 52.5160615, + 13.2545312 + ], + [ + 52.5160492, + 13.2544158 + ], + [ + 52.516042, + 13.2542966 + ], + [ + 52.5160403, + 13.2540295 + ], + [ + 52.5160395, + 13.2539103 + ], + [ + 52.5160427, + 13.2537907 + ], + [ + 52.5160516, + 13.2536756 + ], + [ + 52.5160633, + 13.2535572 + ], + [ + 52.5160822, + 13.2534286 + ] + ] + }, + { + "osmId": "507294983", + "name": null, + "lengthMeters": 280.15638323230013, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.515922, + 13.2614915 + ], + [ + 52.5159968, + 13.2612569 + ], + [ + 52.5160623, + 13.2610167 + ], + [ + 52.5161134, + 13.2607966 + ], + [ + 52.5161521, + 13.2606007 + ], + [ + 52.5161746, + 13.2604168 + ], + [ + 52.5161942, + 13.2602451 + ], + [ + 52.5162138, + 13.2600432 + ], + [ + 52.5162247, + 13.2598995 + ], + [ + 52.5163126, + 13.2586714 + ], + [ + 52.5163361, + 13.2583407 + ], + [ + 52.5163552, + 13.2578635 + ], + [ + 52.5163603, + 13.2574522 + ] + ] + }, + { + "osmId": "507294988", + "name": null, + "lengthMeters": 271.43728252020077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5162791, + 13.25732 + ], + [ + 52.5162836, + 13.2575575 + ], + [ + 52.5162838, + 13.257764 + ], + [ + 52.516281, + 13.2579114 + ], + [ + 52.5162734, + 13.2581176 + ], + [ + 52.5162611, + 13.2583323 + ], + [ + 52.516136, + 13.2599035 + ], + [ + 52.5161105, + 13.260229 + ], + [ + 52.5160797, + 13.2603956 + ], + [ + 52.5160656, + 13.260564 + ], + [ + 52.5160351, + 13.2607345 + ], + [ + 52.5159998, + 13.2609028 + ], + [ + 52.5159606, + 13.2610674 + ], + [ + 52.5159093, + 13.2612578 + ] + ] + }, + { + "osmId": "507874091", + "name": "City-S-Bahn", + "lengthMeters": 195.90873123667427, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552546, + 10.0077688 + ], + [ + 53.5521112, + 10.0079217 + ], + [ + 53.5518566, + 10.0080212 + ], + [ + 53.5517075, + 10.0080788 + ], + [ + 53.5516329, + 10.0081183 + ], + [ + 53.5515076, + 10.0081917 + ], + [ + 53.5514161, + 10.0082552 + ], + [ + 53.5512935, + 10.0083439 + ], + [ + 53.5512742, + 10.0083596 + ], + [ + 53.5511411, + 10.0084752 + ], + [ + 53.5510218, + 10.008611 + ], + [ + 53.5509056, + 10.0087564 + ] + ] + }, + { + "osmId": "507874092", + "name": "Verbindungsbahn", + "lengthMeters": 159.54966530497217, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5522111, + 10.0081243 + ], + [ + 53.5522611, + 10.008108 + ], + [ + 53.5524765, + 10.0080396 + ], + [ + 53.5526461, + 10.0079795 + ], + [ + 53.5529896, + 10.0078331 + ], + [ + 53.5531354, + 10.0077582 + ], + [ + 53.5531507, + 10.0077482 + ], + [ + 53.5531852, + 10.0077272 + ], + [ + 53.5533006, + 10.0076651 + ], + [ + 53.5534188, + 10.0075876 + ], + [ + 53.5535877, + 10.0074667 + ] + ] + }, + { + "osmId": "507874093", + "name": null, + "lengthMeters": 125.97534163291976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5533279, + 10.0078475 + ], + [ + 53.5531844, + 10.0079362 + ], + [ + 53.5531562, + 10.0079532 + ], + [ + 53.5530052, + 10.0080329 + ], + [ + 53.5526565, + 10.0081985 + ], + [ + 53.5524904, + 10.0082499 + ], + [ + 53.5522863, + 10.0083018 + ], + [ + 53.5522329, + 10.0083178 + ] + ] + }, + { + "osmId": "509085724", + "name": null, + "lengthMeters": 312.3533400933278, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5910456, + 9.9162996 + ], + [ + 53.5912618, + 9.9159105 + ], + [ + 53.5915769, + 9.9153113 + ], + [ + 53.5919194, + 9.9146582 + ], + [ + 53.592196, + 9.9141353 + ], + [ + 53.5925802, + 9.9134326 + ], + [ + 53.5929326, + 9.9127941 + ] + ] + }, + { + "osmId": "509085725", + "name": null, + "lengthMeters": 223.36437623332796, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5923568, + 9.9137304 + ], + [ + 53.5921653, + 9.9140983 + ], + [ + 53.5915517, + 9.9152667 + ], + [ + 53.5912192, + 9.9159004 + ], + [ + 53.5910189, + 9.9162545 + ] + ] + }, + { + "osmId": "510109656", + "name": null, + "lengthMeters": 166.40442988107446, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.590714, + 10.0173853 + ], + [ + 53.5904469, + 10.0198661 + ] + ] + }, + { + "osmId": "514528363", + "name": "Vogelfluglinie", + "lengthMeters": 80.72761226816459, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5665725, + 10.0635878 + ], + [ + 53.5662832, + 10.0624666 + ] + ] + }, + { + "osmId": "514528365", + "name": "Vogelfluglinie", + "lengthMeters": 794.0501799822995, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5683609, + 10.0708382 + ], + [ + 53.5685379, + 10.0715437 + ], + [ + 53.5685584, + 10.0716304 + ], + [ + 53.5687038, + 10.0722423 + ], + [ + 53.5689975, + 10.0734774 + ], + [ + 53.5693629, + 10.075154 + ], + [ + 53.5695553, + 10.075998 + ], + [ + 53.5698686, + 10.0772812 + ], + [ + 53.5699351, + 10.0775403 + ], + [ + 53.5701999, + 10.078534 + ], + [ + 53.5702346, + 10.0786642 + ], + [ + 53.5702389, + 10.07868 + ], + [ + 53.5703322, + 10.0789537 + ], + [ + 53.5704701, + 10.079362 + ], + [ + 53.5704868, + 10.0794113 + ], + [ + 53.5707112, + 10.0801101 + ], + [ + 53.5709044, + 10.0807032 + ], + [ + 53.5712748, + 10.0817917 + ] + ] + }, + { + "osmId": "514528367", + "name": null, + "lengthMeters": 1096.2805677755775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5672897, + 10.0666602 + ], + [ + 53.5674498, + 10.0673182 + ], + [ + 53.5675988, + 10.0678378 + ], + [ + 53.5677598, + 10.0684154 + ], + [ + 53.5678124, + 10.0686317 + ], + [ + 53.5678571, + 10.0688151 + ], + [ + 53.5679921, + 10.0693716 + ], + [ + 53.5680665, + 10.0697235 + ], + [ + 53.5681433, + 10.0700762 + ], + [ + 53.5682248, + 10.0704422 + ], + [ + 53.5683654, + 10.0710089 + ], + [ + 53.5686126, + 10.0720292 + ], + [ + 53.5689506, + 10.0735017 + ], + [ + 53.5694751, + 10.0758823 + ], + [ + 53.5698593, + 10.0773951 + ], + [ + 53.5701694, + 10.0786109 + ], + [ + 53.5702957, + 10.0790275 + ], + [ + 53.5704166, + 10.0793883 + ], + [ + 53.5705032, + 10.0796323 + ], + [ + 53.5705568, + 10.0797965 + ], + [ + 53.5705927, + 10.0798993 + ], + [ + 53.5707238, + 10.0802741 + ], + [ + 53.570732, + 10.0802976 + ], + [ + 53.5708848, + 10.0807348 + ], + [ + 53.5710439, + 10.0812447 + ], + [ + 53.5712414, + 10.0818397 + ] + ] + }, + { + "osmId": "515266131", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 135.38612849223793, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4885578, + 10.1744912 + ], + [ + 53.4887934, + 10.1724835 + ] + ] + }, + { + "osmId": "515305756", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 355.2937605486841, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4227206, + 10.0319897 + ], + [ + 53.4231851, + 10.0311768 + ], + [ + 53.4235073, + 10.0306877 + ], + [ + 53.4236836, + 10.0304282 + ], + [ + 53.4241008, + 10.029787 + ], + [ + 53.4245339, + 10.0291296 + ], + [ + 53.4249364, + 10.02853 + ], + [ + 53.4250651, + 10.0283508 + ] + ] + }, + { + "osmId": "515305761", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 1570.9167814518432, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4215846, + 10.0332859 + ], + [ + 53.4215367, + 10.0333456 + ], + [ + 53.4213016, + 10.033639 + ], + [ + 53.4212656, + 10.0336832 + ], + [ + 53.4207158, + 10.0343581 + ], + [ + 53.4204863, + 10.0346255 + ], + [ + 53.4201975, + 10.0349619 + ], + [ + 53.419865, + 10.0353135 + ], + [ + 53.4190881, + 10.0361349 + ], + [ + 53.4186303, + 10.036594 + ], + [ + 53.4185657, + 10.0366588 + ], + [ + 53.4169766, + 10.0382527 + ], + [ + 53.4117132, + 10.0435225 + ], + [ + 53.4107382, + 10.0445032 + ], + [ + 53.4102321, + 10.0450122 + ], + [ + 53.4095526, + 10.0456905 + ] + ] + }, + { + "osmId": "516176875", + "name": null, + "lengthMeters": 120.58244786107747, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6694676, + 10.2376063 + ], + [ + 53.6696767, + 10.2380694 + ], + [ + 53.6697705, + 10.2382575 + ], + [ + 53.6701714, + 10.2389969 + ] + ] + }, + { + "osmId": "516176876", + "name": null, + "lengthMeters": 257.4564661367585, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6684174, + 10.2344027 + ], + [ + 53.6684496, + 10.2344839 + ], + [ + 53.6687047, + 10.2351272 + ], + [ + 53.6689739, + 10.2357947 + ], + [ + 53.6690914, + 10.2360883 + ], + [ + 53.6694047, + 10.2368714 + ], + [ + 53.6695456, + 10.2372234 + ], + [ + 53.6696825, + 10.2375758 + ], + [ + 53.6697096, + 10.2376455 + ] + ] + }, + { + "osmId": "516176877", + "name": null, + "lengthMeters": 141.626847378143, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6696753, + 10.2376834 + ], + [ + 53.669814, + 10.2380242 + ], + [ + 53.6699783, + 10.2384196 + ], + [ + 53.6701468, + 10.2388419 + ], + [ + 53.6703916, + 10.239461 + ] + ] + }, + { + "osmId": "516432768", + "name": null, + "lengthMeters": 228.12362831010552, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5397417, + 10.0180805 + ], + [ + 53.5393459, + 10.0208788 + ], + [ + 53.5392651, + 10.0214383 + ] + ] + }, + { + "osmId": "516432771", + "name": null, + "lengthMeters": 162.1147407842385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5444271, + 10.0067259 + ], + [ + 53.544348, + 10.0067151 + ], + [ + 53.5442557, + 10.0067059 + ], + [ + 53.5442415, + 10.0067027 + ], + [ + 53.5441464, + 10.0066989 + ], + [ + 53.5440299, + 10.006696 + ], + [ + 53.54394, + 10.0066972 + ], + [ + 53.5438468, + 10.0067065 + ], + [ + 53.5437557, + 10.00672 + ], + [ + 53.5436599, + 10.0067367 + ], + [ + 53.5435329, + 10.0067589 + ], + [ + 53.5434533, + 10.0067804 + ], + [ + 53.5433458, + 10.0068157 + ], + [ + 53.5432374, + 10.0068591 + ], + [ + 53.5430796, + 10.0069326 + ], + [ + 53.5429888, + 10.0069857 + ] + ] + }, + { + "osmId": "517034394", + "name": null, + "lengthMeters": 179.0481627998433, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008839, + 13.4793677 + ], + [ + 52.5009374, + 13.4791668 + ], + [ + 52.5010637, + 13.4787365 + ], + [ + 52.5012407, + 13.4780293 + ], + [ + 52.5013378, + 13.4776221 + ], + [ + 52.5014229, + 13.4772262 + ], + [ + 52.5014759, + 13.4769697 + ], + [ + 52.5014866, + 13.4769171 + ] + ] + }, + { + "osmId": "517034395", + "name": "Ostbahn", + "lengthMeters": 158.3510732971069, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023677, + 13.4753794 + ], + [ + 52.5024042, + 13.4749692 + ], + [ + 52.5024252, + 13.4747861 + ], + [ + 52.5024824, + 13.4743712 + ], + [ + 52.5025248, + 13.474134 + ], + [ + 52.5025729, + 13.4738872 + ], + [ + 52.5026071, + 13.4737296 + ], + [ + 52.5026745, + 13.4734535 + ], + [ + 52.5027506, + 13.4731576 + ], + [ + 52.5027556, + 13.4731385 + ] + ] + }, + { + "osmId": "517040802", + "name": null, + "lengthMeters": 128.98705717392093, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5056072, + 13.4544662 + ], + [ + 52.5055132, + 13.4550959 + ], + [ + 52.505494, + 13.4552355 + ], + [ + 52.5054053, + 13.4558757 + ], + [ + 52.5053454, + 13.4563227 + ] + ] + }, + { + "osmId": "517041117", + "name": null, + "lengthMeters": 719.3706955024546, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5087042, + 13.4398868 + ], + [ + 52.5085609, + 13.4403187 + ], + [ + 52.5084984, + 13.4405053 + ], + [ + 52.5083004, + 13.4410963 + ], + [ + 52.5082058, + 13.4413838 + ], + [ + 52.5079633, + 13.442121 + ], + [ + 52.5079033, + 13.4423263 + ], + [ + 52.5077574, + 13.4428781 + ], + [ + 52.507642, + 13.4434199 + ], + [ + 52.5076409, + 13.4434249 + ], + [ + 52.5074559, + 13.4443896 + ], + [ + 52.5071979, + 13.4458152 + ], + [ + 52.5071912, + 13.4458524 + ], + [ + 52.5071838, + 13.4458932 + ], + [ + 52.506882, + 13.4475332 + ], + [ + 52.5067734, + 13.4481188 + ], + [ + 52.5067246, + 13.4483761 + ], + [ + 52.5065737, + 13.449137 + ], + [ + 52.5064811, + 13.4495866 + ], + [ + 52.506451, + 13.449736 + ], + [ + 52.5064379, + 13.4498012 + ] + ] + }, + { + "osmId": "518326502", + "name": null, + "lengthMeters": 849.5999216041325, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5324398, + 13.593085 + ], + [ + 52.5327198, + 13.5935177 + ], + [ + 52.5328578, + 13.5937659 + ], + [ + 52.5329841, + 13.5940183 + ], + [ + 52.5331119, + 13.5943063 + ], + [ + 52.5332284, + 13.5946078 + ], + [ + 52.5333412, + 13.5949333 + ], + [ + 52.5334549, + 13.5953095 + ], + [ + 52.533561, + 13.5956877 + ], + [ + 52.5339777, + 13.5971793 + ], + [ + 52.5340607, + 13.5974673 + ], + [ + 52.534456, + 13.5987256 + ], + [ + 52.5346778, + 13.5993973 + ], + [ + 52.534931, + 13.6003129 + ], + [ + 52.5353468, + 13.6018955 + ], + [ + 52.5359427, + 13.604164 + ] + ] + }, + { + "osmId": "518326503", + "name": null, + "lengthMeters": 851.3701822564095, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.536066, + 13.6040396 + ], + [ + 52.5359611, + 13.6037006 + ], + [ + 52.5358192, + 13.6032475 + ], + [ + 52.5356414, + 13.6026767 + ], + [ + 52.5353838, + 13.601855 + ], + [ + 52.534965, + 13.6002876 + ], + [ + 52.5347247, + 13.5993677 + ], + [ + 52.5345386, + 13.5986653 + ], + [ + 52.5341854, + 13.5973855 + ], + [ + 52.5337588, + 13.595855 + ], + [ + 52.5336845, + 13.5955883 + ], + [ + 52.5335677, + 13.5952253 + ], + [ + 52.5334325, + 13.5948649 + ], + [ + 52.5332823, + 13.5945169 + ], + [ + 52.5331601, + 13.5942607 + ], + [ + 52.5330204, + 13.5939687 + ], + [ + 52.5328864, + 13.5937156 + ], + [ + 52.5327466, + 13.5934717 + ], + [ + 52.5324607, + 13.5930351 + ] + ] + }, + { + "osmId": "520764261", + "name": null, + "lengthMeters": 365.3034662577197, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5046237, + 13.4627829 + ], + [ + 52.5045071, + 13.4639359 + ], + [ + 52.5044123, + 13.4648422 + ], + [ + 52.5043741, + 13.4651522 + ], + [ + 52.5043225, + 13.4654852 + ], + [ + 52.504271, + 13.4657655 + ], + [ + 52.5042039, + 13.4660921 + ], + [ + 52.5041277, + 13.4664012 + ], + [ + 52.5040416, + 13.466723 + ], + [ + 52.5039536, + 13.4670311 + ], + [ + 52.503863, + 13.4673341 + ], + [ + 52.5037733, + 13.4676569 + ], + [ + 52.5037034, + 13.4679271 + ] + ] + }, + { + "osmId": "520764265", + "name": null, + "lengthMeters": 224.42718822356977, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050054, + 13.4588161 + ], + [ + 52.5050108, + 13.4587796 + ], + [ + 52.5050637, + 13.4584223 + ], + [ + 52.5050648, + 13.4584105 + ], + [ + 52.5050704, + 13.4583784 + ], + [ + 52.5051542, + 13.4578652 + ], + [ + 52.5052905, + 13.4569962 + ], + [ + 52.5053841, + 13.4562651 + ], + [ + 52.5054794, + 13.4555937 + ] + ] + }, + { + "osmId": "520764266", + "name": null, + "lengthMeters": 134.43177031869314, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5050054, + 13.4588161 + ], + [ + 52.5047881, + 13.4603805 + ], + [ + 52.5047346, + 13.4607518 + ] + ] + }, + { + "osmId": "521792360", + "name": null, + "lengthMeters": 1086.5587470664238, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3733498, + 13.1011966 + ], + [ + 52.3733578, + 13.10111 + ], + [ + 52.373364, + 13.1010434 + ], + [ + 52.3733697, + 13.1009829 + ], + [ + 52.3734356, + 13.100273 + ], + [ + 52.3735486, + 13.0990437 + ], + [ + 52.3736633, + 13.0978479 + ], + [ + 52.3736823, + 13.0976769 + ], + [ + 52.3737097, + 13.0974515 + ], + [ + 52.3737622, + 13.0970451 + ], + [ + 52.3738132, + 13.0966975 + ], + [ + 52.373848, + 13.0964732 + ], + [ + 52.3739539, + 13.0958817 + ], + [ + 52.3740435, + 13.0954472 + ], + [ + 52.3741356, + 13.0950343 + ], + [ + 52.3742389, + 13.0946248 + ], + [ + 52.3744135, + 13.0939931 + ], + [ + 52.3748417, + 13.0924327 + ], + [ + 52.3749494, + 13.09204 + ], + [ + 52.3751684, + 13.0912547 + ], + [ + 52.3751808, + 13.0912102 + ], + [ + 52.3751953, + 13.0911569 + ], + [ + 52.3752217, + 13.0910617 + ], + [ + 52.3752428, + 13.09098 + ], + [ + 52.3758056, + 13.0889485 + ], + [ + 52.3760004, + 13.0882255 + ], + [ + 52.3760713, + 13.0878992 + ], + [ + 52.3761192, + 13.0876093 + ], + [ + 52.3761545, + 13.0872927 + ], + [ + 52.37618, + 13.0868333 + ], + [ + 52.3761859, + 13.0865438 + ], + [ + 52.3761951, + 13.0860307 + ] + ] + }, + { + "osmId": "522503383", + "name": "Harburger S-Bahn", + "lengthMeters": 265.5502407656079, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5499286, + 10.0162061 + ], + [ + 53.5502483, + 10.0175176 + ], + [ + 53.5503428, + 10.0180466 + ], + [ + 53.5503707, + 10.0184387 + ], + [ + 53.5503775, + 10.018795 + ], + [ + 53.5503638, + 10.0191001 + ], + [ + 53.5503326, + 10.019401 + ], + [ + 53.550281, + 10.019697 + ], + [ + 53.5501966, + 10.0200477 + ] + ] + }, + { + "osmId": "523653742", + "name": "U7", + "lengthMeters": 160.04029385987042, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4868212, + 13.4228638 + ], + [ + 52.487205, + 13.4215356 + ], + [ + 52.4872615, + 13.4213176 + ], + [ + 52.4873269, + 13.421016 + ], + [ + 52.487381, + 13.4206916 + ] + ] + }, + { + "osmId": "523653747", + "name": "U7", + "lengthMeters": 102.21531387879335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4870379, + 13.4217889 + ], + [ + 52.4871882, + 13.4212237 + ], + [ + 52.4872361, + 13.4210234 + ], + [ + 52.4872879, + 13.4207453 + ], + [ + 52.4873476, + 13.4203711 + ] + ] + }, + { + "osmId": "523653759", + "name": "U7", + "lengthMeters": 319.188450760412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4926147, + 13.3886381 + ], + [ + 52.4926767, + 13.3885291 + ], + [ + 52.4927328, + 13.3884481 + ], + [ + 52.4928214, + 13.3883434 + ], + [ + 52.492915, + 13.3882578 + ], + [ + 52.4930178, + 13.3881893 + ], + [ + 52.4930872, + 13.3881561 + ], + [ + 52.4931412, + 13.3881366 + ], + [ + 52.4932119, + 13.3881206 + ], + [ + 52.4933237, + 13.3881114 + ], + [ + 52.4933815, + 13.3881158 + ], + [ + 52.4934279, + 13.3881276 + ], + [ + 52.4934631, + 13.3881413 + ], + [ + 52.4935193, + 13.3881718 + ], + [ + 52.4935823, + 13.388215 + ], + [ + 52.4937752, + 13.3883741 + ], + [ + 52.4944635, + 13.3889251 + ], + [ + 52.4952011, + 13.3895018 + ] + ] + }, + { + "osmId": "525356393", + "name": null, + "lengthMeters": 231.5270883942049, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342804, + 11.6202228 + ], + [ + 48.1343317, + 11.6206073 + ], + [ + 48.1343658, + 11.6208957 + ], + [ + 48.134372, + 11.6209479 + ], + [ + 48.1343863, + 11.6212738 + ], + [ + 48.1344033, + 11.6217472 + ], + [ + 48.1343944, + 11.6219967 + ], + [ + 48.1343711, + 11.6222099 + ], + [ + 48.1342664, + 11.6228791 + ], + [ + 48.1341815, + 11.6232877 + ] + ] + }, + { + "osmId": "525356395", + "name": null, + "lengthMeters": 183.54985983502058, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342989, + 11.6208175 + ], + [ + 48.1343281, + 11.6211665 + ], + [ + 48.1343425, + 11.6214642 + ], + [ + 48.134355, + 11.6216976 + ], + [ + 48.1343523, + 11.6219283 + ], + [ + 48.1343299, + 11.6221804 + ], + [ + 48.1342512, + 11.6226739 + ], + [ + 48.1341388, + 11.6232462 + ] + ] + }, + { + "osmId": "525356397", + "name": null, + "lengthMeters": 152.16122568518858, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342845, + 11.6211762 + ], + [ + 48.1342834, + 11.621479 + ], + [ + 48.1342771, + 11.6218625 + ], + [ + 48.1342574, + 11.6221053 + ], + [ + 48.1342172, + 11.6224231 + ], + [ + 48.1341661, + 11.6227329 + ], + [ + 48.1340753, + 11.6231899 + ] + ] + }, + { + "osmId": "525356399", + "name": null, + "lengthMeters": 184.4320141607704, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343658, + 11.6208957 + ], + [ + 48.1344096, + 11.621129 + ], + [ + 48.1344382, + 11.6213422 + ], + [ + 48.1344499, + 11.6215688 + ], + [ + 48.1344516, + 11.6218089 + ], + [ + 48.1344472, + 11.6220141 + ], + [ + 48.1344248, + 11.6221965 + ], + [ + 48.1343872, + 11.6224406 + ], + [ + 48.1343075, + 11.6229019 + ], + [ + 48.1342213, + 11.6233228 + ] + ] + }, + { + "osmId": "525356406", + "name": null, + "lengthMeters": 94.68465085156527, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133422, + 11.6254912 + ], + [ + 48.1333105, + 11.6258483 + ], + [ + 48.1332138, + 11.6261809 + ], + [ + 48.1331315, + 11.6264719 + ], + [ + 48.1330782, + 11.6266583 + ] + ] + }, + { + "osmId": "525356408", + "name": null, + "lengthMeters": 140.53620097450008, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336274, + 11.6249828 + ], + [ + 48.1335136, + 11.6253293 + ], + [ + 48.133504, + 11.6253598 + ], + [ + 48.1334062, + 11.6256699 + ], + [ + 48.1333744, + 11.6257866 + ], + [ + 48.1333239, + 11.6259717 + ], + [ + 48.1332407, + 11.6262734 + ], + [ + 48.1332002, + 11.6264145 + ], + [ + 48.1331288, + 11.6266637 + ], + [ + 48.1331161, + 11.6267138 + ] + ] + }, + { + "osmId": "525356412", + "name": null, + "lengthMeters": 92.90326366285606, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1333744, + 11.6257866 + ], + [ + 48.1333006, + 11.626146 + ], + [ + 48.133238, + 11.6264733 + ], + [ + 48.1331995, + 11.6267321 + ], + [ + 48.1331663, + 11.6269977 + ] + ] + }, + { + "osmId": "525356414", + "name": null, + "lengthMeters": 149.63630978134285, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.133504, + 11.6253598 + ], + [ + 48.1334251, + 11.6257209 + ], + [ + 48.1334125, + 11.6257786 + ], + [ + 48.1333454, + 11.6260964 + ], + [ + 48.1332908, + 11.626425 + ], + [ + 48.1331857, + 11.6273149 + ] + ] + }, + { + "osmId": "525356416", + "name": null, + "lengthMeters": 122.09860794378338, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334251, + 11.6257209 + ], + [ + 48.1333624, + 11.6261943 + ], + [ + 48.1333158, + 11.626661 + ], + [ + 48.1332386, + 11.627342 + ] + ] + }, + { + "osmId": "525356418", + "name": null, + "lengthMeters": 249.11285077179764, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339496, + 11.6241869 + ], + [ + 48.1338278, + 11.6245743 + ], + [ + 48.133673, + 11.6251214 + ], + [ + 48.1335557, + 11.6255372 + ], + [ + 48.1334931, + 11.6257745 + ], + [ + 48.1334429, + 11.626024 + ], + [ + 48.133408, + 11.6262587 + ], + [ + 48.1333373, + 11.6268608 + ], + [ + 48.1332786, + 11.6273686 + ] + ] + }, + { + "osmId": "525356420", + "name": null, + "lengthMeters": 283.8858043626975, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340995, + 11.6237747 + ], + [ + 48.1339674, + 11.6242497 + ], + [ + 48.1338609, + 11.6246239 + ], + [ + 48.1337866, + 11.6248639 + ], + [ + 48.1336828, + 11.6252381 + ], + [ + 48.1335584, + 11.6257048 + ], + [ + 48.1335128, + 11.6259073 + ], + [ + 48.133485, + 11.6260763 + ], + [ + 48.1334564, + 11.6262801 + ], + [ + 48.1333624, + 11.6270955 + ], + [ + 48.13336, + 11.6271182 + ], + [ + 48.133328, + 11.6273993 + ] + ] + }, + { + "osmId": "525356422", + "name": null, + "lengthMeters": 287.2430697089797, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.134193, + 11.6234611 + ], + [ + 48.1341328, + 11.6237794 + ], + [ + 48.1341187, + 11.6238541 + ], + [ + 48.1340193, + 11.6243127 + ], + [ + 48.133954, + 11.6246614 + ], + [ + 48.133886, + 11.6250034 + ], + [ + 48.1337866, + 11.6254728 + ], + [ + 48.1337222, + 11.6257303 + ], + [ + 48.1336646, + 11.6259338 + ], + [ + 48.1336425, + 11.6260119 + ], + [ + 48.1335468, + 11.6263512 + ], + [ + 48.1335218, + 11.6264312 + ], + [ + 48.1334564, + 11.6266409 + ], + [ + 48.1334197, + 11.6267777 + ], + [ + 48.13336, + 11.6271182 + ] + ] + }, + { + "osmId": "525356425", + "name": null, + "lengthMeters": 76.2763022205495, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335218, + 11.6264312 + ], + [ + 48.1334653, + 11.6267562 + ], + [ + 48.133417, + 11.6270553 + ], + [ + 48.1333713, + 11.6274334 + ] + ] + }, + { + "osmId": "525356427", + "name": null, + "lengthMeters": 117.14803232888974, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336646, + 11.6259338 + ], + [ + 48.1335879, + 11.6263552 + ], + [ + 48.1335235, + 11.6267241 + ], + [ + 48.1334689, + 11.6270513 + ], + [ + 48.1334322, + 11.6273584 + ], + [ + 48.1334192, + 11.6274679 + ] + ] + }, + { + "osmId": "525356429", + "name": null, + "lengthMeters": 86.0153811197416, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335879, + 11.6263552 + ], + [ + 48.1335405, + 11.6268152 + ], + [ + 48.1334637, + 11.6274992 + ] + ] + }, + { + "osmId": "525356431", + "name": null, + "lengthMeters": 139.13765722327554, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338028, + 11.6257199 + ], + [ + 48.1337685, + 11.6258677 + ], + [ + 48.1337016, + 11.626142 + ], + [ + 48.1336452, + 11.6264277 + ], + [ + 48.1336139, + 11.6266677 + ], + [ + 48.1335745, + 11.627011 + ], + [ + 48.1335105, + 11.6275379 + ] + ] + }, + { + "osmId": "525356433", + "name": null, + "lengthMeters": 125.11531593166163, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337685, + 11.6258677 + ], + [ + 48.1337204, + 11.6261822 + ], + [ + 48.1336649, + 11.626665 + ], + [ + 48.1336049, + 11.6271961 + ], + [ + 48.1335675, + 11.6275261 + ] + ] + }, + { + "osmId": "525356435", + "name": null, + "lengthMeters": 111.10573408828857, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337857, + 11.6260884 + ], + [ + 48.1337691, + 11.6262178 + ], + [ + 48.1337204, + 11.6265966 + ], + [ + 48.1336828, + 11.6269078 + ], + [ + 48.1336354, + 11.6273544 + ], + [ + 48.13361, + 11.6275621 + ] + ] + }, + { + "osmId": "525356437", + "name": null, + "lengthMeters": 101.53432967837114, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337691, + 11.6262178 + ], + [ + 48.133741, + 11.6267589 + ], + [ + 48.1337168, + 11.6271371 + ], + [ + 48.133671, + 11.6275773 + ] + ] + }, + { + "osmId": "525356439", + "name": null, + "lengthMeters": 77.5577927541911, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337974, + 11.6265162 + ], + [ + 48.1337875, + 11.6268407 + ], + [ + 48.133775, + 11.6270164 + ], + [ + 48.1337251, + 11.6275548 + ] + ] + }, + { + "osmId": "525356445", + "name": null, + "lengthMeters": 137.85138967005355, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336274, + 11.6249828 + ], + [ + 48.1336901, + 11.6247501 + ], + [ + 48.1337367, + 11.6245449 + ], + [ + 48.1338038, + 11.6241667 + ], + [ + 48.1338826, + 11.6236598 + ], + [ + 48.1338896, + 11.6236182 + ], + [ + 48.1339542, + 11.623236 + ], + [ + 48.133961, + 11.6231964 + ] + ] + }, + { + "osmId": "525356447", + "name": null, + "lengthMeters": 218.72185237705364, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1338896, + 11.6236182 + ], + [ + 48.1337859, + 11.624005 + ], + [ + 48.133776, + 11.624042 + ], + [ + 48.1336839, + 11.624396 + ], + [ + 48.1336757, + 11.6244285 + ], + [ + 48.1335747, + 11.6248279 + ], + [ + 48.1335039, + 11.6250451 + ], + [ + 48.1330493, + 11.6262763 + ] + ] + }, + { + "osmId": "525356449", + "name": null, + "lengthMeters": 142.49957877845614, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1336757, + 11.6244285 + ], + [ + 48.1335174, + 11.6248721 + ], + [ + 48.1330618, + 11.626114 + ] + ] + }, + { + "osmId": "525356451", + "name": null, + "lengthMeters": 153.19167124881398, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1337859, + 11.624005 + ], + [ + 48.1335899, + 11.6245422 + ], + [ + 48.1331218, + 11.6258136 + ] + ] + }, + { + "osmId": "525356455", + "name": null, + "lengthMeters": 188.14193055403854, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332041, + 11.6254676 + ], + [ + 48.1334458, + 11.6247863 + ], + [ + 48.1336131, + 11.6242995 + ], + [ + 48.1336937, + 11.6240527 + ], + [ + 48.1337578, + 11.6238346 + ], + [ + 48.1338324, + 11.6235807 + ], + [ + 48.13393, + 11.623181 + ] + ] + }, + { + "osmId": "525356457", + "name": null, + "lengthMeters": 115.27087198174044, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332524, + 11.62519 + ], + [ + 48.1334583, + 11.6245932 + ], + [ + 48.1336955, + 11.6239843 + ], + [ + 48.1337578, + 11.6238346 + ] + ] + }, + { + "osmId": "525356478", + "name": null, + "lengthMeters": 465.03707389663134, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340255, + 11.6430697 + ], + [ + 48.1341211, + 11.6421925 + ], + [ + 48.1342267, + 11.641152 + ], + [ + 48.1343216, + 11.6402454 + ], + [ + 48.1343896, + 11.6395453 + ], + [ + 48.1345458, + 11.6381236 + ], + [ + 48.1346115, + 11.6374344 + ], + [ + 48.1346353, + 11.6371662 + ], + [ + 48.134642, + 11.6368739 + ] + ] + }, + { + "osmId": "525449130", + "name": null, + "lengthMeters": 97.2468408452717, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1379364, + 11.6599856 + ], + [ + 48.1384608, + 11.6610344 + ] + ] + }, + { + "osmId": "528139677", + "name": "U3", + "lengthMeters": 2422.58223885664, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4987332, + 13.334571 + ], + [ + 52.4985964, + 13.3344304 + ], + [ + 52.4984438, + 13.3342743 + ], + [ + 52.4983107, + 13.3341215 + ], + [ + 52.4981945, + 13.3339812 + ], + [ + 52.4981236, + 13.3338894 + ], + [ + 52.4980123, + 13.3337382 + ], + [ + 52.4978652, + 13.333522 + ], + [ + 52.4977732, + 13.3333788 + ], + [ + 52.4976226, + 13.3331251 + ], + [ + 52.4973704, + 13.3327064 + ], + [ + 52.4967561, + 13.3316082 + ], + [ + 52.4967017, + 13.3315109 + ], + [ + 52.4965865, + 13.3313224 + ], + [ + 52.4964861, + 13.3312145 + ], + [ + 52.4963993, + 13.3311318 + ], + [ + 52.4963377, + 13.3310794 + ], + [ + 52.4962553, + 13.3310236 + ], + [ + 52.4961546, + 13.3309638 + ], + [ + 52.4958858, + 13.3308465 + ], + [ + 52.4957851, + 13.3307825 + ], + [ + 52.495702, + 13.3307123 + ], + [ + 52.495613, + 13.3306082 + ], + [ + 52.495546, + 13.3305045 + ], + [ + 52.4954674, + 13.3303445 + ], + [ + 52.4954211, + 13.3302151 + ], + [ + 52.4953935, + 13.3301029 + ], + [ + 52.4953688, + 13.3299277 + ], + [ + 52.4951719, + 13.3279498 + ], + [ + 52.4951378, + 13.3276916 + ], + [ + 52.495108, + 13.3275239 + ], + [ + 52.4950717, + 13.3273573 + ], + [ + 52.4950301, + 13.3271963 + ], + [ + 52.4949829, + 13.3270384 + ], + [ + 52.4949385, + 13.3269124 + ], + [ + 52.494501, + 13.3257292 + ], + [ + 52.4943797, + 13.3253877 + ], + [ + 52.4939935, + 13.3243336 + ], + [ + 52.493878, + 13.3240186 + ], + [ + 52.4937573, + 13.3237112 + ], + [ + 52.493596, + 13.3233223 + ], + [ + 52.4931185, + 13.3221108 + ], + [ + 52.4930072, + 13.3218415 + ], + [ + 52.492893, + 13.32154 + ], + [ + 52.4927774, + 13.3212077 + ], + [ + 52.4925592, + 13.3205642 + ], + [ + 52.4918855, + 13.3185471 + ], + [ + 52.4918018, + 13.3182866 + ], + [ + 52.4916906, + 13.3178823 + ], + [ + 52.4916323, + 13.3177023 + ], + [ + 52.4911026, + 13.3161633 + ], + [ + 52.4910274, + 13.3159634 + ], + [ + 52.4909411, + 13.3157534 + ], + [ + 52.4908421, + 13.3155374 + ], + [ + 52.4907679, + 13.3153896 + ], + [ + 52.4906823, + 13.3152317 + ], + [ + 52.4905895, + 13.3150848 + ], + [ + 52.4905219, + 13.3149837 + ], + [ + 52.490467, + 13.3149033 + ], + [ + 52.4903723, + 13.3147716 + ], + [ + 52.4902943, + 13.3146688 + ], + [ + 52.490209, + 13.3145807 + ], + [ + 52.4901197, + 13.3144902 + ], + [ + 52.4900244, + 13.314408 + ], + [ + 52.4899464, + 13.314349 + ], + [ + 52.4897483, + 13.3142152 + ], + [ + 52.4895784, + 13.3141176 + ], + [ + 52.4894417, + 13.3140471 + ], + [ + 52.4893385, + 13.3139969 + ], + [ + 52.4892345, + 13.3139554 + ], + [ + 52.4891297, + 13.3139213 + ], + [ + 52.4890583, + 13.313904 + ], + [ + 52.4889873, + 13.3138898 + ], + [ + 52.4888811, + 13.3138755 + ], + [ + 52.4885754, + 13.3138597 + ], + [ + 52.4883595, + 13.3138571 + ], + [ + 52.4880909, + 13.3138697 + ], + [ + 52.4879103, + 13.3138661 + ], + [ + 52.4874258, + 13.3138316 + ], + [ + 52.4870486, + 13.3138057 + ], + [ + 52.4862753, + 13.313774 + ], + [ + 52.4838181, + 13.3136088 + ] + ] + }, + { + "osmId": "528398380", + "name": null, + "lengthMeters": 94.86811560454873, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4465563, + 13.3523665 + ], + [ + 52.4470059, + 13.3527902 + ], + [ + 52.4472975, + 13.3530597 + ] + ] + }, + { + "osmId": "528398381", + "name": null, + "lengthMeters": 93.8622619109276, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4473453, + 13.3528993 + ], + [ + 52.4469202, + 13.3525839 + ], + [ + 52.4465825, + 13.3523068 + ] + ] + }, + { + "osmId": "528663685", + "name": null, + "lengthMeters": 193.1323858727458, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4195699, + 13.5786287 + ], + [ + 52.4194078, + 13.5787672 + ], + [ + 52.4192268, + 13.5789218 + ], + [ + 52.4189771, + 13.579141 + ], + [ + 52.418777, + 13.5793166 + ], + [ + 52.4184002, + 13.5796482 + ], + [ + 52.4180642, + 13.5799434 + ], + [ + 52.4180369, + 13.5799674 + ] + ] + }, + { + "osmId": "530212718", + "name": "U3", + "lengthMeters": 1322.64155418577, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4787764, + 13.3124328 + ], + [ + 52.4786713, + 13.3124644 + ], + [ + 52.4785833, + 13.3124973 + ], + [ + 52.4784992, + 13.3125387 + ], + [ + 52.4771325, + 13.3133618 + ], + [ + 52.476509, + 13.3136974 + ], + [ + 52.4762824, + 13.3138099 + ], + [ + 52.4760589, + 13.3139135 + ], + [ + 52.4757945, + 13.3140217 + ], + [ + 52.4756191, + 13.3140879 + ], + [ + 52.4754272, + 13.314157 + ], + [ + 52.4751754, + 13.3142391 + ], + [ + 52.4748725, + 13.3143169 + ], + [ + 52.4746586, + 13.3143685 + ], + [ + 52.4745683, + 13.3143852 + ], + [ + 52.4744788, + 13.314397 + ], + [ + 52.4744064, + 13.3144013 + ], + [ + 52.4742267, + 13.3143999 + ], + [ + 52.4739467, + 13.3143913 + ], + [ + 52.4729514, + 13.314328 + ], + [ + 52.4728092, + 13.3143192 + ], + [ + 52.4726021, + 13.3143056 + ], + [ + 52.4724212, + 13.3142883 + ], + [ + 52.4722774, + 13.3142607 + ], + [ + 52.4721541, + 13.3142231 + ], + [ + 52.472014, + 13.3141681 + ], + [ + 52.471874, + 13.3141001 + ], + [ + 52.4717048, + 13.3140016 + ], + [ + 52.4708016, + 13.3133438 + ], + [ + 52.4704133, + 13.313033 + ], + [ + 52.4698052, + 13.3124611 + ], + [ + 52.4696525, + 13.3123009 + ], + [ + 52.4685438, + 13.311043 + ], + [ + 52.4682881, + 13.3107156 + ], + [ + 52.4681058, + 13.3104796 + ], + [ + 52.4680217, + 13.3103633 + ], + [ + 52.4677838, + 13.3100504 + ] + ] + }, + { + "osmId": "531237631", + "name": null, + "lengthMeters": 100.68457314814083, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4918112, + 13.2958287 + ], + [ + 52.4918052, + 13.2958364 + ], + [ + 52.4912713, + 13.2965545 + ], + [ + 52.491116, + 13.2967632 + ], + [ + 52.4911105, + 13.2967706 + ] + ] + }, + { + "osmId": "531237639", + "name": null, + "lengthMeters": 118.8050901162411, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.499382, + 13.285685 + ], + [ + 52.4993847, + 13.2856801 + ], + [ + 52.4994249, + 13.2856103 + ], + [ + 52.4995882, + 13.2853353 + ], + [ + 52.499759, + 13.2850701 + ], + [ + 52.4998659, + 13.2849251 + ], + [ + 52.5000315, + 13.2847244 + ], + [ + 52.5001944, + 13.2845556 + ] + ] + }, + { + "osmId": "531237649", + "name": null, + "lengthMeters": 289.9018702381567, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4903815, + 13.2976597 + ], + [ + 52.490385, + 13.2976553 + ], + [ + 52.4910856, + 13.2967018 + ], + [ + 52.4911904, + 13.2965574 + ], + [ + 52.4923979, + 13.2949455 + ] + ] + }, + { + "osmId": "531237654", + "name": null, + "lengthMeters": 111.75483373480422, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5241295, + 13.2825461 + ], + [ + 52.5232171, + 13.2826953 + ], + [ + 52.5231294, + 13.2827096 + ] + ] + }, + { + "osmId": "532685292", + "name": null, + "lengthMeters": 134.7639607826571, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4795745, + 13.3536167 + ], + [ + 52.4795809, + 13.3536507 + ], + [ + 52.4795823, + 13.3536592 + ], + [ + 52.4796251, + 13.3539131 + ], + [ + 52.4796639, + 13.3541623 + ], + [ + 52.4796949, + 13.3543986 + ], + [ + 52.4797263, + 13.3546875 + ], + [ + 52.4797454, + 13.3549095 + ], + [ + 52.4797606, + 13.355123 + ], + [ + 52.4797886, + 13.3555712 + ] + ] + }, + { + "osmId": "532811866", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 153.7743438889955, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4048188, + 9.975517 + ], + [ + 53.4046248, + 9.9753204 + ], + [ + 53.4045235, + 9.9752137 + ], + [ + 53.4045167, + 9.9752089 + ], + [ + 53.4043115, + 9.9750071 + ], + [ + 53.403626, + 9.9743437 + ] + ] + }, + { + "osmId": "532828018", + "name": null, + "lengthMeters": 803.962516974422, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1513347, + 11.4578242 + ], + [ + 48.1510051, + 11.4589259 + ], + [ + 48.1507519, + 11.4597637 + ], + [ + 48.1503376, + 11.4611322 + ], + [ + 48.150152, + 11.4617502 + ], + [ + 48.1499122, + 11.4625487 + ], + [ + 48.1498248, + 11.4628388 + ], + [ + 48.1497528, + 11.4630583 + ], + [ + 48.1495045, + 11.4638146 + ], + [ + 48.1491161, + 11.4648969 + ], + [ + 48.149108, + 11.4649195 + ], + [ + 48.1490608, + 11.4650514 + ], + [ + 48.1485623, + 11.4664599 + ], + [ + 48.1481717, + 11.4675633 + ] + ] + }, + { + "osmId": "532916602", + "name": "U7", + "lengthMeters": 255.40729146928976, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4489704, + 13.4499468 + ], + [ + 52.4501426, + 13.4497146 + ], + [ + 52.4512369, + 13.4493534 + ] + ] + }, + { + "osmId": "532916603", + "name": "U7", + "lengthMeters": 439.0211896631267, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4426682, + 13.4477042 + ], + [ + 52.4422624, + 13.4473316 + ], + [ + 52.4418524, + 13.4469909 + ], + [ + 52.4415794, + 13.4469128 + ], + [ + 52.4410675, + 13.4469073 + ], + [ + 52.4407146, + 13.4469337 + ], + [ + 52.4403126, + 13.4469931 + ], + [ + 52.4388853, + 13.4476205 + ] + ] + }, + { + "osmId": "533114137", + "name": null, + "lengthMeters": 92.26763197870632, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6935526, + 10.257831 + ], + [ + 53.6936764, + 10.2585552 + ], + [ + 53.6937336, + 10.2588207 + ], + [ + 53.6938336, + 10.2591444 + ] + ] + }, + { + "osmId": "533114139", + "name": null, + "lengthMeters": 139.5246210710637, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6879683, + 10.2635548 + ], + [ + 53.6880699, + 10.2635334 + ], + [ + 53.6883368, + 10.2635226 + ], + [ + 53.688934, + 10.263587 + ], + [ + 53.6892195, + 10.2636364 + ] + ] + }, + { + "osmId": "534133285", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 236.91569296148674, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.530882, + 10.06563 + ], + [ + 53.5305964, + 10.066312 + ], + [ + 53.5305905, + 10.0663261 + ], + [ + 53.5304441, + 10.066656 + ], + [ + 53.5300831, + 10.0674628 + ], + [ + 53.5298273, + 10.0680026 + ], + [ + 53.5297711, + 10.068114 + ], + [ + 53.5295897, + 10.068478 + ] + ] + }, + { + "osmId": "536259488", + "name": null, + "lengthMeters": 238.7339893105453, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104627, + 13.4979904 + ], + [ + 52.5105214, + 13.4980978 + ], + [ + 52.5106294, + 13.4982901 + ], + [ + 52.5107456, + 13.4985039 + ], + [ + 52.5109221, + 13.4988052 + ], + [ + 52.5118573, + 13.5004895 + ], + [ + 52.5119135, + 13.5005906 + ] + ] + }, + { + "osmId": "536259492", + "name": null, + "lengthMeters": 217.26768681454195, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115879, + 13.4992563 + ], + [ + 52.5113927, + 13.4988294 + ], + [ + 52.5111592, + 13.4983389 + ], + [ + 52.5109929, + 13.4980242 + ], + [ + 52.5109816, + 13.4980028 + ], + [ + 52.5109435, + 13.4979307 + ], + [ + 52.5103309, + 13.4968008 + ] + ] + }, + { + "osmId": "536272032", + "name": null, + "lengthMeters": 397.8271451100287, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5418368, + 13.5288692 + ], + [ + 52.5413418, + 13.5290488 + ], + [ + 52.5408742, + 13.5292184 + ], + [ + 52.5403959, + 13.5293957 + ], + [ + 52.5402342, + 13.5294658 + ], + [ + 52.5401116, + 13.5295291 + ], + [ + 52.5398662, + 13.5296742 + ], + [ + 52.5396611, + 13.5298071 + ], + [ + 52.5394764, + 13.5299482 + ], + [ + 52.5392787, + 13.5301125 + ], + [ + 52.5385006, + 13.5308546 + ] + ] + }, + { + "osmId": "536272043", + "name": null, + "lengthMeters": 213.92677388028102, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5533495, + 13.525421 + ], + [ + 52.5529138, + 13.5253381 + ], + [ + 52.5528113, + 13.5253201 + ], + [ + 52.552643, + 13.5252987 + ], + [ + 52.5525035, + 13.525288 + ], + [ + 52.5523795, + 13.5252883 + ], + [ + 52.552247, + 13.5252925 + ], + [ + 52.5519797, + 13.5253181 + ], + [ + 52.5518623, + 13.5253369 + ], + [ + 52.5514333, + 13.5254134 + ] + ] + }, + { + "osmId": "536717047", + "name": null, + "lengthMeters": 270.67500079199056, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5695866, + 13.410202 + ], + [ + 52.5689557, + 13.4105193 + ], + [ + 52.5686896, + 13.4106586 + ], + [ + 52.5681657, + 13.4109261 + ], + [ + 52.5678026, + 13.4111116 + ], + [ + 52.5674509, + 13.4112761 + ], + [ + 52.567257, + 13.4113625 + ] + ] + }, + { + "osmId": "536717052", + "name": null, + "lengthMeters": 79.79197216313077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5661263, + 13.412254 + ], + [ + 52.5662954, + 13.4121546 + ], + [ + 52.5668006, + 13.4118502 + ] + ] + }, + { + "osmId": "536742472", + "name": null, + "lengthMeters": 177.63210894775366, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5896222, + 13.2834902 + ], + [ + 52.589028, + 13.2841068 + ], + [ + 52.5887554, + 13.2843899 + ], + [ + 52.5883792, + 13.2848635 + ], + [ + 52.5882984, + 13.284958 + ] + ] + }, + { + "osmId": "538597520", + "name": "Ostbahn", + "lengthMeters": 7464.352256800809, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5222624, + 13.719559 + ], + [ + 52.5240447, + 13.7385812 + ], + [ + 52.5253158, + 13.7520673 + ], + [ + 52.5255075, + 13.7542348 + ], + [ + 52.5255166, + 13.7543323 + ], + [ + 52.5255262, + 13.75443 + ], + [ + 52.5260903, + 13.760197 + ], + [ + 52.5262448, + 13.7618176 + ], + [ + 52.5263027, + 13.7624454 + ], + [ + 52.5268989, + 13.7690461 + ], + [ + 52.5269801, + 13.7699162 + ], + [ + 52.5270445, + 13.7706079 + ], + [ + 52.5270818, + 13.7709946 + ], + [ + 52.5271126, + 13.7713003 + ], + [ + 52.5271642, + 13.7718019 + ], + [ + 52.5272019, + 13.7721548 + ], + [ + 52.5272106, + 13.7722357 + ], + [ + 52.5272205, + 13.7723284 + ], + [ + 52.527279, + 13.7728757 + ], + [ + 52.5273217, + 13.7732777 + ], + [ + 52.5273793, + 13.7738497 + ], + [ + 52.5274317, + 13.7743899 + ], + [ + 52.5275152, + 13.775278 + ], + [ + 52.5277597, + 13.7778971 + ], + [ + 52.5280285, + 13.7807939 + ], + [ + 52.5282482, + 13.7831477 + ], + [ + 52.528382, + 13.7845959 + ], + [ + 52.5283917, + 13.7846935 + ], + [ + 52.5284847, + 13.785689 + ], + [ + 52.5285781, + 13.786696 + ], + [ + 52.5287121, + 13.7881106 + ], + [ + 52.5289158, + 13.7903043 + ], + [ + 52.5289661, + 13.7908722 + ], + [ + 52.528977, + 13.7909853 + ], + [ + 52.5291586, + 13.7929232 + ], + [ + 52.5295457, + 13.7970608 + ], + [ + 52.5299443, + 13.8013307 + ], + [ + 52.5303768, + 13.8059924 + ], + [ + 52.5306174, + 13.8086195 + ], + [ + 52.5307715, + 13.8102944 + ], + [ + 52.5307808, + 13.8103925 + ], + [ + 52.5317852, + 13.8211961 + ], + [ + 52.5318549, + 13.8219523 + ], + [ + 52.531951, + 13.8229978 + ], + [ + 52.5319629, + 13.8231225 + ], + [ + 52.5321685, + 13.8253092 + ], + [ + 52.5322565, + 13.8263081 + ], + [ + 52.5322912, + 13.8268721 + ], + [ + 52.5323091, + 13.8273799 + ], + [ + 52.5323102, + 13.8277483 + ], + [ + 52.5323056, + 13.8281777 + ], + [ + 52.5322934, + 13.8286367 + ] + ] + }, + { + "osmId": "539213050", + "name": null, + "lengthMeters": 156.37737052187978, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6312155, + 13.2917618 + ], + [ + 52.6314627, + 13.2914604 + ], + [ + 52.6315596, + 13.2913442 + ], + [ + 52.6316157, + 13.291284 + ], + [ + 52.6316214, + 13.2912773 + ], + [ + 52.6319859, + 13.2908684 + ], + [ + 52.6320565, + 13.2907848 + ], + [ + 52.6322363, + 13.2905718 + ], + [ + 52.6323629, + 13.2904226 + ] + ] + }, + { + "osmId": "541552412", + "name": null, + "lengthMeters": 83.91509704244277, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6315343, + 10.0068994 + ], + [ + 53.6313736, + 10.0069403 + ], + [ + 53.6312337, + 10.0069953 + ], + [ + 53.6311267, + 10.0070422 + ], + [ + 53.6309303, + 10.0071307 + ], + [ + 53.6308038, + 10.0072085 + ] + ] + }, + { + "osmId": "541552414", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 112.10662625087782, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557833, + 9.9346544 + ], + [ + 53.55563, + 9.9346695 + ], + [ + 53.5554541, + 9.9346768 + ], + [ + 53.5550024, + 9.9346583 + ], + [ + 53.5547756, + 9.9346503 + ] + ] + }, + { + "osmId": "542154286", + "name": "Hafenbahn", + "lengthMeters": 107.74459269822489, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4722635, + 9.9034634 + ], + [ + 53.4722405, + 9.9037922 + ], + [ + 53.4722117, + 9.9040855 + ], + [ + 53.472179, + 9.9043753 + ], + [ + 53.4721473, + 9.9046873 + ], + [ + 53.4721261, + 9.9050738 + ] + ] + }, + { + "osmId": "542863907", + "name": null, + "lengthMeters": 120.55725292447102, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4573023, + 9.9907186 + ], + [ + 53.4571864, + 9.9907335 + ], + [ + 53.4570943, + 9.9907467 + ], + [ + 53.456915, + 9.99078 + ], + [ + 53.4562243, + 9.9909116 + ] + ] + }, + { + "osmId": "542863908", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 156.2020854707347, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4478257, + 10.0012793 + ], + [ + 53.4483513, + 10.0005022 + ], + [ + 53.4484195, + 10.0004038 + ], + [ + 53.448423, + 10.0003987 + ], + [ + 53.4484269, + 10.0003927 + ], + [ + 53.4484384, + 10.000375 + ], + [ + 53.448874, + 9.9997093 + ] + ] + }, + { + "osmId": "542863910", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 561.0020588249055, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4430432, + 10.0083671 + ], + [ + 53.4437027, + 10.007508 + ], + [ + 53.4442433, + 10.0067564 + ], + [ + 53.4449559, + 10.005721 + ], + [ + 53.4455619, + 10.0048057 + ], + [ + 53.4461359, + 10.0039135 + ], + [ + 53.4466262, + 10.0031849 + ], + [ + 53.4468601, + 10.0028328 + ] + ] + }, + { + "osmId": "543740653", + "name": null, + "lengthMeters": 228.70437891867294, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.141582, + 11.5404933 + ], + [ + 48.1418088, + 11.5374298 + ] + ] + }, + { + "osmId": "543740654", + "name": null, + "lengthMeters": 510.16624769477204, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409981, + 11.5473109 + ], + [ + 48.1410051, + 11.5472396 + ], + [ + 48.1410156, + 11.547132 + ], + [ + 48.1410357, + 11.5469612 + ], + [ + 48.1410759, + 11.5466804 + ], + [ + 48.1410887, + 11.5465759 + ], + [ + 48.1410932, + 11.546539 + ], + [ + 48.1411176, + 11.5462331 + ], + [ + 48.1411373, + 11.5459602 + ], + [ + 48.1412224, + 11.5448064 + ], + [ + 48.1413438, + 11.5431595 + ], + [ + 48.1415509, + 11.5408914 + ], + [ + 48.141582, + 11.5404933 + ] + ] + }, + { + "osmId": "545190929", + "name": null, + "lengthMeters": 170.29502271793973, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5053454, + 13.4563227 + ], + [ + 52.5052944, + 13.456676 + ], + [ + 52.5052091, + 13.4572661 + ], + [ + 52.5051274, + 13.4577854 + ], + [ + 52.5049725, + 13.4587629 + ] + ] + }, + { + "osmId": "545840422", + "name": null, + "lengthMeters": 1299.3852428311905, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6625492, + 13.540175 + ], + [ + 52.6626074, + 13.5403638 + ], + [ + 52.662862, + 13.5413649 + ], + [ + 52.6629055, + 13.5415479 + ], + [ + 52.6634432, + 13.5438127 + ], + [ + 52.6644252, + 13.5480525 + ], + [ + 52.664546, + 13.5485739 + ], + [ + 52.6656881, + 13.5533443 + ], + [ + 52.6662558, + 13.5557234 + ], + [ + 52.6665502, + 13.5568929 + ], + [ + 52.6668409, + 13.5580947 + ] + ] + }, + { + "osmId": "545840424", + "name": "Stettiner Bahn", + "lengthMeters": 1099.9721207499986, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6624395, + 13.5402923 + ], + [ + 52.662487, + 13.5404501 + ], + [ + 52.6627382, + 13.5414338 + ], + [ + 52.6633267, + 13.5438823 + ], + [ + 52.6644654, + 13.5486345 + ], + [ + 52.666096, + 13.5554471 + ] + ] + }, + { + "osmId": "545840426", + "name": "Stettiner Bahn", + "lengthMeters": 566.4455396225266, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6623162, + 13.5397294 + ], + [ + 52.6622316, + 13.5394675 + ], + [ + 52.6620931, + 13.5390501 + ], + [ + 52.6619358, + 13.5386249 + ], + [ + 52.6618306, + 13.5383517 + ], + [ + 52.6617779, + 13.5382148 + ], + [ + 52.6616087, + 13.5378155 + ], + [ + 52.6614647, + 13.5374922 + ], + [ + 52.6613011, + 13.5371448 + ], + [ + 52.6610983, + 13.5367429 + ], + [ + 52.6609115, + 13.5363893 + ], + [ + 52.6603938, + 13.5354446 + ], + [ + 52.6599312, + 13.5346043 + ], + [ + 52.6592466, + 13.5333422 + ], + [ + 52.659157, + 13.533177 + ] + ] + }, + { + "osmId": "546628318", + "name": null, + "lengthMeters": 205.6998181573227, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6105609, + 9.8777711 + ], + [ + 53.6105991, + 9.8776945 + ], + [ + 53.6117688, + 9.8754094 + ] + ] + }, + { + "osmId": "546628319", + "name": null, + "lengthMeters": 137.68579208066942, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6211458, + 9.8569123 + ], + [ + 53.6206146, + 9.857811 + ], + [ + 53.6202619, + 9.858374 + ] + ] + }, + { + "osmId": "550300789", + "name": "Westtangente", + "lengthMeters": 1192.9227466406992, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1456287, + 11.5036727 + ], + [ + 48.1459371, + 11.5036818 + ], + [ + 48.1460851, + 11.5036808 + ], + [ + 48.1462718, + 11.5036003 + ], + [ + 48.1466538, + 11.5035056 + ], + [ + 48.1468192, + 11.5035032 + ], + [ + 48.1468384, + 11.5035029 + ], + [ + 48.147023, + 11.5035002 + ], + [ + 48.1474195, + 11.5033289 + ], + [ + 48.1492496, + 11.5034268 + ], + [ + 48.1494354, + 11.5034337 + ], + [ + 48.1496788, + 11.5034761 + ], + [ + 48.149877, + 11.5035358 + ], + [ + 48.1500859, + 11.5035994 + ], + [ + 48.1502551, + 11.5036805 + ], + [ + 48.1508185, + 11.5039593 + ], + [ + 48.1514414, + 11.5043157 + ], + [ + 48.1516829, + 11.5044813 + ], + [ + 48.151802, + 11.5046076 + ], + [ + 48.1518843, + 11.5047466 + ], + [ + 48.1519485, + 11.5049053 + ], + [ + 48.1524691, + 11.506926 + ], + [ + 48.1526072, + 11.5073838 + ], + [ + 48.1528836, + 11.5081697 + ], + [ + 48.1530902, + 11.508629 + ], + [ + 48.153743, + 11.509239 + ], + [ + 48.154154, + 11.5095767 + ], + [ + 48.1542729, + 11.509722 + ] + ] + }, + { + "osmId": "550340843", + "name": null, + "lengthMeters": 169.58755025232438, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122244, + 13.6117035 + ], + [ + 52.5120793, + 13.610071 + ], + [ + 52.5120294, + 13.6094152 + ], + [ + 52.5120148, + 13.6092214 + ] + ] + }, + { + "osmId": "550340846", + "name": null, + "lengthMeters": 166.89039628722006, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5119544, + 13.6092187 + ], + [ + 52.511974, + 13.6094299 + ], + [ + 52.5120326, + 13.6100682 + ], + [ + 52.5121797, + 13.6116569 + ] + ] + }, + { + "osmId": "550340850", + "name": "Ostbahn", + "lengthMeters": 135.6664132459006, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118099, + 13.6096037 + ], + [ + 52.5118261, + 13.60983 + ], + [ + 52.5118838, + 13.6104204 + ], + [ + 52.51195, + 13.6110087 + ], + [ + 52.5120189, + 13.6115782 + ] + ] + }, + { + "osmId": "550965669", + "name": null, + "lengthMeters": 178.1398194003162, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5124544, + 13.5739556 + ], + [ + 52.5124541, + 13.5756945 + ], + [ + 52.512454, + 13.576126 + ], + [ + 52.5124538, + 13.5762906 + ], + [ + 52.5124539, + 13.576588 + ] + ] + }, + { + "osmId": "550965670", + "name": null, + "lengthMeters": 154.79937891908233, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126173, + 13.57636 + ], + [ + 52.5126493, + 13.5740731 + ] + ] + }, + { + "osmId": "550965673", + "name": null, + "lengthMeters": 181.78135923838227, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127407, + 13.5765642 + ], + [ + 52.5127794, + 13.5740798 + ], + [ + 52.512781, + 13.5738788 + ] + ] + }, + { + "osmId": "551235400", + "name": null, + "lengthMeters": 85.05399027740442, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356914, + 11.6353162 + ], + [ + 48.1356599, + 11.6351852 + ], + [ + 48.1356179, + 11.6350407 + ], + [ + 48.1355813, + 11.6349264 + ], + [ + 48.1354748, + 11.6346264 + ], + [ + 48.1354573, + 11.6345779 + ], + [ + 48.1354139, + 11.6344365 + ], + [ + 48.1353712, + 11.6342769 + ] + ] + }, + { + "osmId": "553024298", + "name": null, + "lengthMeters": 125.16054037496508, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5310065, + 13.2163414 + ], + [ + 52.5308937, + 13.2175063 + ], + [ + 52.5308501, + 13.2179448 + ], + [ + 52.5308302, + 13.2181254 + ], + [ + 52.5308256, + 13.2181676 + ] + ] + }, + { + "osmId": "553324652", + "name": null, + "lengthMeters": 146.7954743212975, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1486533, + 11.4863987 + ], + [ + 48.1483894, + 11.4866977 + ], + [ + 48.1478944, + 11.4872566 + ], + [ + 48.1476047, + 11.4876006 + ] + ] + }, + { + "osmId": "553324682", + "name": null, + "lengthMeters": 273.81677512302934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1476337, + 11.4876514 + ], + [ + 48.1479329, + 11.4873004 + ], + [ + 48.1486775, + 11.4864525 + ], + [ + 48.1495367, + 11.485475 + ], + [ + 48.1495907, + 11.4854113 + ] + ] + }, + { + "osmId": "553324687", + "name": null, + "lengthMeters": 306.2430879864497, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1450265, + 11.5019431 + ], + [ + 48.1454639, + 11.4978679 + ] + ] + }, + { + "osmId": "554568294", + "name": "City-S-Bahn", + "lengthMeters": 118.35746347496226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.55356, + 10.0072297 + ], + [ + 53.5534163, + 10.0073274 + ], + [ + 53.5533926, + 10.00734 + ], + [ + 53.5533811, + 10.0073476 + ], + [ + 53.5533623, + 10.0073579 + ], + [ + 53.5532577, + 10.0074241 + ], + [ + 53.5529942, + 10.0075633 + ], + [ + 53.5527821, + 10.0076626 + ], + [ + 53.552546, + 10.0077688 + ] + ] + }, + { + "osmId": "560991294", + "name": null, + "lengthMeters": 132.0572025423305, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.516796, + 10.0480635 + ], + [ + 53.5162872, + 10.0495916 + ], + [ + 53.5162408, + 10.0497567 + ], + [ + 53.5162247, + 10.049814 + ] + ] + }, + { + "osmId": "560991296", + "name": null, + "lengthMeters": 95.02259427470646, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5181296, + 10.0440916 + ], + [ + 53.5177257, + 10.0453582 + ] + ] + }, + { + "osmId": "560994441", + "name": null, + "lengthMeters": 154.66337161542253, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5108109, + 10.0008507 + ], + [ + 53.5107582, + 10.0008437 + ], + [ + 53.509974, + 10.0007247 + ], + [ + 53.5094256, + 10.0006407 + ] + ] + }, + { + "osmId": "561282452", + "name": null, + "lengthMeters": 79.74616681089731, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5224777, + 10.0715863 + ], + [ + 53.522785, + 10.0712032 + ], + [ + 53.523057, + 10.0708752 + ] + ] + }, + { + "osmId": "561282455", + "name": null, + "lengthMeters": 86.18080023723638, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5183177, + 10.0875001 + ], + [ + 53.5181913, + 10.0876371 + ], + [ + 53.5180328, + 10.087787 + ], + [ + 53.5178108, + 10.0880049 + ], + [ + 53.5176562, + 10.0881782 + ] + ] + }, + { + "osmId": "561295578", + "name": null, + "lengthMeters": 132.4195333582495, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5353643, + 10.0864321 + ], + [ + 53.5351717, + 10.0875286 + ], + [ + 53.5351334, + 10.0877526 + ], + [ + 53.5350303, + 10.0883554 + ] + ] + }, + { + "osmId": "561295581", + "name": null, + "lengthMeters": 656.739108157311, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5297523, + 10.0948851 + ], + [ + 53.5294602, + 10.0964575 + ], + [ + 53.5294158, + 10.0966966 + ], + [ + 53.5288924, + 10.099494 + ], + [ + 53.5286921, + 10.1005647 + ], + [ + 53.5285484, + 10.1013537 + ], + [ + 53.5284817, + 10.1017203 + ], + [ + 53.5283968, + 10.1021775 + ], + [ + 53.5282633, + 10.1028965 + ], + [ + 53.5282534, + 10.1029502 + ], + [ + 53.5280766, + 10.1039053 + ], + [ + 53.5279922, + 10.1043697 + ] + ] + }, + { + "osmId": "566390005", + "name": null, + "lengthMeters": 141.59576245990118, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5435793, + 10.1038365 + ], + [ + 53.5435215, + 10.1040377 + ], + [ + 53.5433698, + 10.1045137 + ], + [ + 53.5432042, + 10.105081 + ], + [ + 53.5431201, + 10.1053416 + ], + [ + 53.5429939, + 10.1057392 + ] + ] + }, + { + "osmId": "570647226", + "name": null, + "lengthMeters": 452.7389717669193, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0263018, + 11.582904 + ], + [ + 48.0260054, + 11.5825947 + ], + [ + 48.0257084, + 11.5823502 + ], + [ + 48.025493, + 11.5822076 + ], + [ + 48.0252899, + 11.5820903 + ], + [ + 48.0251567, + 11.5820162 + ], + [ + 48.0249735, + 11.5819331 + ], + [ + 48.0248374, + 11.5818779 + ], + [ + 48.0246741, + 11.5818198 + ], + [ + 48.0245004, + 11.5817822 + ], + [ + 48.0242999, + 11.5817444 + ], + [ + 48.0241343, + 11.581732 + ], + [ + 48.0239355, + 11.5817295 + ], + [ + 48.0237654, + 11.5817467 + ], + [ + 48.0236071, + 11.5817713 + ], + [ + 48.0234738, + 11.5818006 + ], + [ + 48.0233319, + 11.5818398 + ], + [ + 48.0231975, + 11.5818857 + ], + [ + 48.023009, + 11.5819676 + ], + [ + 48.022755, + 11.5820925 + ], + [ + 48.0224473, + 11.582239 + ] + ] + }, + { + "osmId": "570647227", + "name": null, + "lengthMeters": 255.6158383011565, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.02628, + 11.5829457 + ], + [ + 48.0273126, + 11.5840826 + ], + [ + 48.0276887, + 11.584505 + ], + [ + 48.0281219, + 11.5850022 + ] + ] + }, + { + "osmId": "570730716", + "name": null, + "lengthMeters": 156.8822367120968, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4889149, + 9.9765955 + ], + [ + 53.4891261, + 9.9765646 + ], + [ + 53.4892292, + 9.9765535 + ], + [ + 53.4894193, + 9.9765497 + ], + [ + 53.4895179, + 9.9765581 + ], + [ + 53.4896452, + 9.9765764 + ], + [ + 53.4898482, + 9.9766122 + ], + [ + 53.4900605, + 9.9766429 + ], + [ + 53.4901732, + 9.9766472 + ], + [ + 53.4903222, + 9.9766525 + ] + ] + }, + { + "osmId": "570736745", + "name": null, + "lengthMeters": 878.5295453250461, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5164326, + 9.9171596 + ], + [ + 53.5165629, + 9.9176931 + ], + [ + 53.5166358, + 9.9179573 + ], + [ + 53.5167044, + 9.9181853 + ], + [ + 53.5167961, + 9.9184455 + ], + [ + 53.5168854, + 9.9186654 + ], + [ + 53.5169947, + 9.9189042 + ], + [ + 53.5170927, + 9.9190892 + ], + [ + 53.5171898, + 9.9192598 + ], + [ + 53.5172624, + 9.9193745 + ], + [ + 53.5173118, + 9.919447 + ], + [ + 53.517361, + 9.9195158 + ], + [ + 53.5174005, + 9.9195724 + ], + [ + 53.5176266, + 9.9198718 + ], + [ + 53.5177741, + 9.9200441 + ], + [ + 53.5178722, + 9.9201541 + ], + [ + 53.5179766, + 9.920266 + ], + [ + 53.5182005, + 9.9205056 + ], + [ + 53.5182649, + 9.9205745 + ], + [ + 53.5189626, + 9.9213141 + ], + [ + 53.5194988, + 9.9218975 + ], + [ + 53.5197914, + 9.9222697 + ], + [ + 53.5201092, + 9.9226673 + ], + [ + 53.5204201, + 9.9230596 + ], + [ + 53.5211409, + 9.9239816 + ], + [ + 53.5214236, + 9.9243289 + ], + [ + 53.5215715, + 9.9244912 + ], + [ + 53.5217612, + 9.9246857 + ], + [ + 53.5218816, + 9.9248171 + ], + [ + 53.5220108, + 9.924976 + ], + [ + 53.5221288, + 9.9251376 + ], + [ + 53.5222516, + 9.925328 + ], + [ + 53.5223975, + 9.9255673 + ] + ] + }, + { + "osmId": "572887263", + "name": "Berliner Parkeisenbahn", + "lengthMeters": 112.39867797897946, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4686412, + 13.5533819 + ], + [ + 52.4686239, + 13.553416 + ], + [ + 52.468608, + 13.5534499 + ], + [ + 52.4685931, + 13.5534831 + ], + [ + 52.4683051, + 13.554151 + ], + [ + 52.4681014, + 13.5546276 + ], + [ + 52.4680849, + 13.5546658 + ], + [ + 52.4680716, + 13.5546982 + ], + [ + 52.4680572, + 13.5547359 + ] + ] + }, + { + "osmId": "579614830", + "name": null, + "lengthMeters": 405.8330884226845, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5910839, + 13.3849885 + ], + [ + 52.5911055, + 13.3849401 + ], + [ + 52.5911231, + 13.3848971 + ], + [ + 52.591152, + 13.3848133 + ], + [ + 52.5911785, + 13.3847308 + ], + [ + 52.5911829, + 13.3847183 + ], + [ + 52.5911937, + 13.3846874 + ], + [ + 52.5912535, + 13.3845356 + ], + [ + 52.5912899, + 13.3844607 + ], + [ + 52.5913275, + 13.3843964 + ], + [ + 52.5913707, + 13.3843298 + ], + [ + 52.591413, + 13.3842775 + ], + [ + 52.5914636, + 13.3842232 + ], + [ + 52.5915214, + 13.3841677 + ], + [ + 52.5915653, + 13.384124 + ], + [ + 52.591702, + 13.3839889 + ], + [ + 52.5918355, + 13.3838582 + ], + [ + 52.591974, + 13.3837136 + ], + [ + 52.5920243, + 13.3836726 + ], + [ + 52.5922755, + 13.3834414 + ], + [ + 52.5927065, + 13.3830219 + ], + [ + 52.5933819, + 13.3823576 + ], + [ + 52.59343, + 13.3823037 + ], + [ + 52.5934764, + 13.3822489 + ], + [ + 52.5935351, + 13.3821762 + ], + [ + 52.5936292, + 13.3820557 + ], + [ + 52.5940258, + 13.3815415 + ] + ] + }, + { + "osmId": "579614831", + "name": null, + "lengthMeters": 232.4705053190594, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5808191, + 13.3954845 + ], + [ + 52.5810697, + 13.394931 + ], + [ + 52.5812536, + 13.3945288 + ], + [ + 52.581555, + 13.393868 + ], + [ + 52.5818607, + 13.3931959 + ], + [ + 52.5819934, + 13.3929012 + ], + [ + 52.582079, + 13.3927395 + ] + ] + }, + { + "osmId": "579614832", + "name": null, + "lengthMeters": 755.5673817232461, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5724003, + 13.3987614 + ], + [ + 52.5731034, + 13.3989952 + ], + [ + 52.5733663, + 13.3990738 + ], + [ + 52.5737378, + 13.3991992 + ], + [ + 52.5739761, + 13.3992785 + ], + [ + 52.5740952, + 13.3993146 + ], + [ + 52.5741551, + 13.39933 + ], + [ + 52.57422, + 13.3993416 + ], + [ + 52.5743067, + 13.3993351 + ], + [ + 52.574402, + 13.399314 + ], + [ + 52.5746159, + 13.3992369 + ], + [ + 52.5750512, + 13.3990624 + ], + [ + 52.5752475, + 13.3989856 + ], + [ + 52.5754459, + 13.3989027 + ], + [ + 52.5756602, + 13.3988199 + ], + [ + 52.5758597, + 13.3987371 + ], + [ + 52.5761465, + 13.3986247 + ], + [ + 52.5762972, + 13.3985673 + ], + [ + 52.576511, + 13.3984881 + ], + [ + 52.5766545, + 13.3984381 + ], + [ + 52.5767509, + 13.3984103 + ], + [ + 52.5767578, + 13.398409 + ], + [ + 52.5768376, + 13.3983938 + ], + [ + 52.5768517, + 13.3983914 + ], + [ + 52.5769512, + 13.3983884 + ], + [ + 52.5771613, + 13.3983822 + ], + [ + 52.5774896, + 13.3983688 + ], + [ + 52.5782762, + 13.3983468 + ], + [ + 52.579025, + 13.3983499 + ], + [ + 52.5790955, + 13.398345 + ] + ] + }, + { + "osmId": "579614833", + "name": null, + "lengthMeters": 145.75589860620528, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5724033, + 13.3987041 + ], + [ + 52.5716731, + 13.398459 + ], + [ + 52.5714352, + 13.3983546 + ], + [ + 52.5713805, + 13.3983316 + ], + [ + 52.5712851, + 13.3982931 + ], + [ + 52.5711987, + 13.398254 + ], + [ + 52.5711617, + 13.3982389 + ], + [ + 52.5711463, + 13.3982329 + ], + [ + 52.5711255, + 13.3982269 + ] + ] + }, + { + "osmId": "579639620", + "name": null, + "lengthMeters": 87.94268762995605, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5963118, + 9.905978 + ], + [ + 53.5962373, + 9.9061248 + ], + [ + 53.5957998, + 9.9069937 + ] + ] + }, + { + "osmId": "581541252", + "name": "U4", + "lengthMeters": 345.8387235110405, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4797969, + 13.3433077 + ], + [ + 52.4799965, + 13.3432136 + ], + [ + 52.4806097, + 13.3429293 + ], + [ + 52.4809051, + 13.3427991 + ], + [ + 52.4820812, + 13.3423729 + ], + [ + 52.4825623, + 13.3422569 + ], + [ + 52.4828266, + 13.3421761 + ] + ] + }, + { + "osmId": "583054235", + "name": "S\u00fcddamm", + "lengthMeters": 1535.3790623410332, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7386402, + 9.8657804 + ], + [ + 53.7380876, + 9.8643587 + ], + [ + 53.7380582, + 9.8642944 + ], + [ + 53.7379943, + 9.8641542 + ], + [ + 53.7356139, + 9.8576831 + ], + [ + 53.7345872, + 9.8548919 + ], + [ + 53.7345505, + 9.8547953 + ], + [ + 53.7344859, + 9.8546253 + ], + [ + 53.734443, + 9.8545123 + ], + [ + 53.7320749, + 9.8482793 + ], + [ + 53.7312382, + 9.8460769 + ] + ] + }, + { + "osmId": "583644450", + "name": null, + "lengthMeters": 259.38197609950174, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3921569, + 13.5157665 + ], + [ + 52.3923256, + 13.5160795 + ], + [ + 52.3937379, + 13.518577 + ] + ] + }, + { + "osmId": "583644451", + "name": null, + "lengthMeters": 130.81984202911394, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.391402, + 13.5142885 + ], + [ + 52.3916728, + 13.5148471 + ], + [ + 52.3919227, + 13.5153344 + ], + [ + 52.3921536, + 13.5157612 + ], + [ + 52.3921569, + 13.5157665 + ] + ] + }, + { + "osmId": "584225682", + "name": null, + "lengthMeters": 162.24011412300084, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5404883, + 10.0092398 + ], + [ + 53.5405219, + 10.0088496 + ], + [ + 53.5406164, + 10.0078278 + ], + [ + 53.5406995, + 10.0069454 + ], + [ + 53.540703, + 10.0069022 + ], + [ + 53.5407101, + 10.0068131 + ] + ] + }, + { + "osmId": "584225685", + "name": null, + "lengthMeters": 209.27339312668005, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5406654, + 10.0060866 + ], + [ + 53.5406553, + 10.0061978 + ], + [ + 53.5405905, + 10.0067885 + ], + [ + 53.5405787, + 10.0068958 + ], + [ + 53.5404944, + 10.0077989 + ], + [ + 53.5403941, + 10.0088231 + ], + [ + 53.5403641, + 10.0091434 + ], + [ + 53.5403578, + 10.0092109 + ] + ] + }, + { + "osmId": "587282804", + "name": null, + "lengthMeters": 1184.6971687780697, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1934313, + 11.3770391 + ], + [ + 48.1927266, + 11.3783342 + ], + [ + 48.1926712, + 11.3784356 + ], + [ + 48.1914636, + 11.3806491 + ], + [ + 48.1901805, + 11.3830038 + ], + [ + 48.1893317, + 11.3845632 + ], + [ + 48.1881148, + 11.3867926 + ], + [ + 48.1869536, + 11.3889255 + ], + [ + 48.1868364, + 11.3891332 + ], + [ + 48.1866874, + 11.3894114 + ] + ] + }, + { + "osmId": "588080171", + "name": null, + "lengthMeters": 110.6868024113389, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102547, + 13.4366546 + ], + [ + 52.5104067, + 13.4362981 + ], + [ + 52.5104602, + 13.4361724 + ], + [ + 52.5108252, + 13.4353143 + ] + ] + }, + { + "osmId": "589401421", + "name": null, + "lengthMeters": 3455.39852261484, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1647731, + 11.528457 + ], + [ + 48.1647144, + 11.5284867 + ], + [ + 48.1642204, + 11.5287364 + ], + [ + 48.1640647, + 11.5288058 + ], + [ + 48.1639214, + 11.5288447 + ], + [ + 48.1633645, + 11.5289763 + ], + [ + 48.1629279, + 11.5290447 + ], + [ + 48.1622003, + 11.5291676 + ], + [ + 48.1619464, + 11.5292247 + ], + [ + 48.1596883, + 11.5298291 + ], + [ + 48.1585945, + 11.5301251 + ], + [ + 48.1583468, + 11.5302147 + ], + [ + 48.1580253, + 11.5303805 + ], + [ + 48.1567167, + 11.5313346 + ], + [ + 48.1554823, + 11.5322259 + ], + [ + 48.1546764, + 11.5326101 + ], + [ + 48.1541081, + 11.5328815 + ], + [ + 48.1535771, + 11.5331519 + ], + [ + 48.1533889, + 11.5332597 + ], + [ + 48.1531139, + 11.533459 + ], + [ + 48.1529626, + 11.5335943 + ], + [ + 48.1528633, + 11.5337076 + ], + [ + 48.152737, + 11.5338954 + ], + [ + 48.1526241, + 11.5340983 + ], + [ + 48.1525135, + 11.5343453 + ], + [ + 48.1522517, + 11.5349745 + ], + [ + 48.1521694, + 11.5351825 + ], + [ + 48.1520046, + 11.5356274 + ], + [ + 48.1518906, + 11.5359792 + ], + [ + 48.1518128, + 11.5362836 + ], + [ + 48.151516, + 11.5377112 + ], + [ + 48.1513084, + 11.538836 + ], + [ + 48.1507662, + 11.541603 + ], + [ + 48.1506531, + 11.5421799 + ], + [ + 48.1506279, + 11.5423085 + ], + [ + 48.1502431, + 11.5439796 + ], + [ + 48.1500835, + 11.5447746 + ], + [ + 48.1499372, + 11.5455834 + ], + [ + 48.1497848, + 11.5464182 + ], + [ + 48.1496842, + 11.5469665 + ], + [ + 48.1495399, + 11.5477947 + ], + [ + 48.1493753, + 11.5486242 + ], + [ + 48.1483942, + 11.5537777 + ], + [ + 48.1483545, + 11.5539872 + ], + [ + 48.1482497, + 11.5545379 + ], + [ + 48.1480161, + 11.5557794 + ], + [ + 48.1478262, + 11.5570151 + ], + [ + 48.1477323, + 11.5576264 + ], + [ + 48.1476392, + 11.5580594 + ], + [ + 48.1475184, + 11.5585246 + ], + [ + 48.1473898, + 11.5589694 + ], + [ + 48.1472758, + 11.5592925 + ], + [ + 48.1471393, + 11.5596443 + ], + [ + 48.1470104, + 11.5599423 + ] + ] + }, + { + "osmId": "593503487", + "name": "Ostbahn", + "lengthMeters": 3527.1543110854436, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5129922, + 13.6204052 + ], + [ + 52.5129982, + 13.6204691 + ], + [ + 52.5156993, + 13.6492792 + ], + [ + 52.5157477, + 13.6497685 + ], + [ + 52.5157556, + 13.6498835 + ], + [ + 52.5166695, + 13.6595517 + ], + [ + 52.5168349, + 13.6614328 + ], + [ + 52.5176913, + 13.6704181 + ], + [ + 52.5178292, + 13.6719202 + ] + ] + }, + { + "osmId": "595857645", + "name": "Vogelfluglinie", + "lengthMeters": 1143.6764876061377, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6058535, + 10.1559981 + ], + [ + 53.6062544, + 10.1565341 + ], + [ + 53.6068548, + 10.157295 + ], + [ + 53.6069051, + 10.1573588 + ], + [ + 53.607394, + 10.1579904 + ], + [ + 53.6092202, + 10.1601872 + ], + [ + 53.6098006, + 10.1608368 + ], + [ + 53.6106375, + 10.1617341 + ], + [ + 53.6121645, + 10.1633712 + ], + [ + 53.6126522, + 10.1638906 + ], + [ + 53.6143605, + 10.1657226 + ] + ] + }, + { + "osmId": "595857647", + "name": "Vogelfluglinie", + "lengthMeters": 469.6189519021585, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6027867, + 10.1511128 + ], + [ + 53.6033591, + 10.1520969 + ], + [ + 53.6035709, + 10.1524842 + ], + [ + 53.6037746, + 10.1528289 + ], + [ + 53.6040207, + 10.1532359 + ], + [ + 53.6042691, + 10.1536479 + ], + [ + 53.604277, + 10.1536608 + ], + [ + 53.6047756, + 10.1544339 + ], + [ + 53.6049255, + 10.1546663 + ], + [ + 53.605001, + 10.1547826 + ], + [ + 53.6051126, + 10.1549496 + ], + [ + 53.6055519, + 10.1555732 + ], + [ + 53.6058535, + 10.1559981 + ] + ] + }, + { + "osmId": "595857649", + "name": "Vogelfluglinie", + "lengthMeters": 764.6597199775131, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6125553, + 10.1637039 + ], + [ + 53.6106584, + 10.1616764 + ], + [ + 53.6098162, + 10.1607763 + ], + [ + 53.6092422, + 10.1601407 + ], + [ + 53.6074257, + 10.1579445 + ], + [ + 53.6072455, + 10.1577094 + ], + [ + 53.6068634, + 10.1572108 + ] + ] + }, + { + "osmId": "596792376", + "name": null, + "lengthMeters": 345.0948870817132, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4518421, + 9.9956778 + ], + [ + 53.4513841, + 9.9963383 + ], + [ + 53.4498681, + 9.9986542 + ], + [ + 53.4495429, + 9.9991408 + ], + [ + 53.4495319, + 9.9991573 + ] + ] + }, + { + "osmId": "598541435", + "name": "U1", + "lengthMeters": 130.57966737281274, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984069, + 13.4063641 + ], + [ + 52.4984002, + 13.4050918 + ], + [ + 52.4983966, + 13.4045239 + ], + [ + 52.4983963, + 13.4044352 + ] + ] + }, + { + "osmId": "598541436", + "name": "U3", + "lengthMeters": 121.72041260533632, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4806268, + 13.313257 + ], + [ + 52.4804963, + 13.3132066 + ], + [ + 52.480398, + 13.313163 + ], + [ + 52.4803267, + 13.3131254 + ], + [ + 52.4802044, + 13.3130561 + ], + [ + 52.4800449, + 13.3129539 + ], + [ + 52.4795953, + 13.3126628 + ] + ] + }, + { + "osmId": "598541437", + "name": "U3", + "lengthMeters": 356.0769741480706, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4838181, + 13.3136088 + ], + [ + 52.4834833, + 13.3135865 + ], + [ + 52.4823776, + 13.3135129 + ], + [ + 52.4813989, + 13.3134216 + ], + [ + 52.4812017, + 13.3134129 + ], + [ + 52.4810632, + 13.3133898 + ], + [ + 52.4808509, + 13.3133248 + ], + [ + 52.4806268, + 13.313257 + ] + ] + }, + { + "osmId": "600876298", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 158.91563105249557, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4035779, + 9.9744845 + ], + [ + 53.4041828, + 9.9750769 + ], + [ + 53.4042647, + 9.9751571 + ], + [ + 53.4044674, + 9.9753557 + ], + [ + 53.4044751, + 9.9753632 + ], + [ + 53.4045783, + 9.9754568 + ], + [ + 53.404812, + 9.9756932 + ] + ] + }, + { + "osmId": "600885969", + "name": null, + "lengthMeters": 487.0509125938068, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1462053, + 11.4813964 + ], + [ + 48.1462527, + 11.4807265 + ], + [ + 48.1463834, + 11.4789339 + ], + [ + 48.1464268, + 11.4783385 + ], + [ + 48.1464672, + 11.47778 + ], + [ + 48.1465839, + 11.4761678 + ], + [ + 48.1466434, + 11.4753461 + ], + [ + 48.1466777, + 11.47487 + ] + ] + }, + { + "osmId": "600885970", + "name": null, + "lengthMeters": 533.3151660049028, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1478572, + 11.4679689 + ], + [ + 48.1475664, + 11.4688604 + ], + [ + 48.1475248, + 11.4690036 + ], + [ + 48.1474592, + 11.4692292 + ], + [ + 48.1473533, + 11.4695975 + ], + [ + 48.1472931, + 11.4698485 + ], + [ + 48.1471399, + 11.4704874 + ], + [ + 48.1470191, + 11.471155 + ], + [ + 48.1469533, + 11.471556 + ], + [ + 48.1468867, + 11.472011 + ], + [ + 48.1468341, + 11.472477 + ], + [ + 48.1467523, + 11.4734215 + ], + [ + 48.1467269, + 11.4737593 + ], + [ + 48.1467111, + 11.4739664 + ], + [ + 48.1466438, + 11.4748639 + ] + ] + }, + { + "osmId": "600885974", + "name": null, + "lengthMeters": 113.67759347342552, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1445325, + 11.5054244 + ], + [ + 48.1443882, + 11.5069412 + ] + ] + }, + { + "osmId": "604729527", + "name": null, + "lengthMeters": 516.1685126851628, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3744487, + 13.1224933 + ], + [ + 52.3745208, + 13.1227263 + ], + [ + 52.3746899, + 13.1232704 + ], + [ + 52.3751258, + 13.1246782 + ], + [ + 52.3754889, + 13.1258465 + ], + [ + 52.3755203, + 13.1259491 + ], + [ + 52.37555, + 13.1260549 + ], + [ + 52.3755853, + 13.1261945 + ], + [ + 52.375593, + 13.1262283 + ], + [ + 52.3756033, + 13.1262775 + ], + [ + 52.3756214, + 13.1263701 + ], + [ + 52.3756337, + 13.1264487 + ], + [ + 52.3756373, + 13.1264735 + ], + [ + 52.3756483, + 13.1265571 + ], + [ + 52.3756647, + 13.1267326 + ], + [ + 52.3756701, + 13.1268346 + ], + [ + 52.375672, + 13.1269137 + ], + [ + 52.3756725, + 13.126983 + ], + [ + 52.3756708, + 13.1270759 + ], + [ + 52.3756696, + 13.1271068 + ], + [ + 52.3756681, + 13.1271395 + ], + [ + 52.3756658, + 13.1271798 + ], + [ + 52.3756596, + 13.1272643 + ], + [ + 52.3756496, + 13.1273621 + ], + [ + 52.3756393, + 13.1274419 + ], + [ + 52.3756306, + 13.1275006 + ], + [ + 52.3756186, + 13.12757 + ], + [ + 52.3756102, + 13.1276157 + ], + [ + 52.3756057, + 13.1276378 + ], + [ + 52.3755914, + 13.127706 + ], + [ + 52.3755821, + 13.127749 + ], + [ + 52.3755718, + 13.1277942 + ], + [ + 52.3755393, + 13.1279374 + ], + [ + 52.3755336, + 13.1279641 + ], + [ + 52.3755276, + 13.1279925 + ], + [ + 52.3755213, + 13.1280242 + ], + [ + 52.3755204, + 13.1280351 + ], + [ + 52.3755062, + 13.1281087 + ], + [ + 52.3754995, + 13.1281516 + ], + [ + 52.3754793, + 13.1282951 + ], + [ + 52.3754711, + 13.1283966 + ], + [ + 52.3754678, + 13.1284402 + ], + [ + 52.3754644, + 13.1284932 + ], + [ + 52.3754621, + 13.1285357 + ], + [ + 52.3754597, + 13.1286137 + ], + [ + 52.3754582, + 13.128729 + ], + [ + 52.3754585, + 13.128818 + ], + [ + 52.3754658, + 13.1295158 + ], + [ + 52.3754657, + 13.1295908 + ] + ] + }, + { + "osmId": "604729528", + "name": null, + "lengthMeters": 272.1624492428369, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3744766, + 13.1224773 + ], + [ + 52.3739417, + 13.1207519 + ], + [ + 52.3738796, + 13.1205584 + ], + [ + 52.3738583, + 13.1204926 + ], + [ + 52.3738316, + 13.1204154 + ], + [ + 52.3738053, + 13.1203434 + ], + [ + 52.3737667, + 13.1202402 + ], + [ + 52.3737344, + 13.1201614 + ], + [ + 52.3736537, + 13.1199811 + ], + [ + 52.3735767, + 13.1198349 + ], + [ + 52.3735558, + 13.119799 + ], + [ + 52.3735262, + 13.1197481 + ], + [ + 52.3734647, + 13.1196483 + ], + [ + 52.3734358, + 13.1196059 + ], + [ + 52.3733965, + 13.1195491 + ], + [ + 52.3732961, + 13.1194061 + ], + [ + 52.3731258, + 13.1192002 + ] + ] + }, + { + "osmId": "606118218", + "name": null, + "lengthMeters": 84.20069622407445, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5141769, + 13.522556 + ], + [ + 52.5141628, + 13.5230766 + ], + [ + 52.5141203, + 13.5237964 + ] + ] + }, + { + "osmId": "606118219", + "name": null, + "lengthMeters": 114.21429346711844, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5142681, + 13.5329439 + ], + [ + 52.5142689, + 13.5329491 + ], + [ + 52.5143843, + 13.5335467 + ], + [ + 52.5146529, + 13.5345055 + ] + ] + }, + { + "osmId": "607900540", + "name": null, + "lengthMeters": 241.1429902377128, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5084392, + 9.9276969 + ], + [ + 53.5082509, + 9.9280876 + ], + [ + 53.5081999, + 9.9281789 + ], + [ + 53.5081616, + 9.9282475 + ], + [ + 53.5080632, + 9.9284121 + ], + [ + 53.5079631, + 9.9285421 + ], + [ + 53.5078262, + 9.9286945 + ], + [ + 53.507715, + 9.9288086 + ], + [ + 53.5076054, + 9.9288919 + ], + [ + 53.5074736, + 9.9289779 + ], + [ + 53.5073779, + 9.929021 + ], + [ + 53.5072672, + 9.929063 + ], + [ + 53.5071576, + 9.9290958 + ], + [ + 53.5070453, + 9.9291126 + ], + [ + 53.5069686, + 9.9291207 + ], + [ + 53.5069396, + 9.9291238 + ], + [ + 53.5068506, + 9.9291276 + ], + [ + 53.5065647, + 9.9291491 + ] + ] + }, + { + "osmId": "612587024", + "name": null, + "lengthMeters": 97.88484302607174, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5419375, + 13.2301137 + ], + [ + 52.5420116, + 13.2297113 + ], + [ + 52.5420388, + 13.2293494 + ], + [ + 52.5420438, + 13.2289713 + ], + [ + 52.5420252, + 13.2286888 + ] + ] + }, + { + "osmId": "614039685", + "name": null, + "lengthMeters": 88.46338472124503, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.607867, + 10.1183724 + ], + [ + 53.6071703, + 10.117725 + ] + ] + }, + { + "osmId": "618580311", + "name": null, + "lengthMeters": 474.3006861683443, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5180549, + 13.4991903 + ], + [ + 52.5178145, + 13.4991322 + ], + [ + 52.5177171, + 13.4991083 + ], + [ + 52.5172299, + 13.4989889 + ], + [ + 52.5168719, + 13.4988964 + ], + [ + 52.516434, + 13.4987817 + ], + [ + 52.5163271, + 13.4987556 + ], + [ + 52.5158024, + 13.498615 + ], + [ + 52.5157063, + 13.4985901 + ], + [ + 52.5156916, + 13.4985863 + ], + [ + 52.5156016, + 13.4985616 + ], + [ + 52.5149458, + 13.4983879 + ], + [ + 52.5144549, + 13.4982579 + ], + [ + 52.514408, + 13.4982455 + ], + [ + 52.5143097, + 13.4982207 + ], + [ + 52.5142146, + 13.4981923 + ], + [ + 52.5141926, + 13.498189 + ], + [ + 52.514166, + 13.498189 + ], + [ + 52.5141378, + 13.4981909 + ], + [ + 52.5141168, + 13.4981953 + ], + [ + 52.5140951, + 13.4982046 + ], + [ + 52.5140772, + 13.4982148 + ], + [ + 52.5140584, + 13.4982279 + ], + [ + 52.5140499, + 13.4982346 + ], + [ + 52.5140452, + 13.4982383 + ], + [ + 52.5140281, + 13.4982564 + ], + [ + 52.514014, + 13.498274 + ], + [ + 52.5139987, + 13.4982986 + ], + [ + 52.5139849, + 13.4983275 + ], + [ + 52.5139731, + 13.4983577 + ], + [ + 52.5139638, + 13.4983848 + ], + [ + 52.5139551, + 13.4984155 + ], + [ + 52.5139495, + 13.498443 + ], + [ + 52.5139437, + 13.4984795 + ], + [ + 52.5139399, + 13.4985102 + ] + ] + }, + { + "osmId": "624231766", + "name": "U2", + "lengthMeters": 1037.2540568333272, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5036196, + 13.3747921 + ], + [ + 52.5035479, + 13.3747685 + ], + [ + 52.5033316, + 13.3747026 + ], + [ + 52.5024389, + 13.3744298 + ], + [ + 52.501829, + 13.3742598 + ], + [ + 52.5011968, + 13.3741054 + ], + [ + 52.5009205, + 13.3740414 + ], + [ + 52.5007725, + 13.3740286 + ], + [ + 52.5006212, + 13.3740307 + ], + [ + 52.5004446, + 13.3740476 + ], + [ + 52.5002753, + 13.3740825 + ], + [ + 52.5002073, + 13.3740968 + ], + [ + 52.5001413, + 13.3741136 + ], + [ + 52.5000808, + 13.3741236 + ], + [ + 52.5000311, + 13.3741239 + ], + [ + 52.4999834, + 13.3741275 + ], + [ + 52.4998965, + 13.3741271 + ], + [ + 52.4997968, + 13.3741172 + ], + [ + 52.4995998, + 13.3740892 + ], + [ + 52.4992141, + 13.3740005 + ], + [ + 52.4991541, + 13.3739868 + ], + [ + 52.4990547, + 13.373966 + ], + [ + 52.4988499, + 13.3739246 + ], + [ + 52.4986225, + 13.3738766 + ], + [ + 52.4983741, + 13.3738245 + ], + [ + 52.4982761, + 13.3737918 + ], + [ + 52.4979553, + 13.3736396 + ], + [ + 52.4977854, + 13.3735579 + ], + [ + 52.4976396, + 13.3734832 + ], + [ + 52.4975153, + 13.3733809 + ], + [ + 52.4974155, + 13.3732638 + ], + [ + 52.4973377, + 13.3731477 + ], + [ + 52.4972659, + 13.3730248 + ], + [ + 52.4971787, + 13.3728235 + ], + [ + 52.4971115, + 13.3726187 + ], + [ + 52.4970696, + 13.372405 + ], + [ + 52.4970388, + 13.3721587 + ], + [ + 52.4970249, + 13.3719076 + ], + [ + 52.4969762, + 13.3685258 + ] + ] + }, + { + "osmId": "625014977", + "name": "Berliner Ringbahn", + "lengthMeters": 98.45484505302699, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.54833, + 13.3836132 + ], + [ + 52.54832, + 13.3834034 + ], + [ + 52.5482854, + 13.3827501 + ], + [ + 52.5482424, + 13.3821645 + ] + ] + }, + { + "osmId": "625014978", + "name": "Berliner Ringbahn", + "lengthMeters": 133.11950356858964, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5481166, + 13.3813818 + ], + [ + 52.5481686, + 13.3818083 + ], + [ + 52.5482064, + 13.382163 + ], + [ + 52.548251, + 13.3827701 + ], + [ + 52.5482846, + 13.3833295 + ] + ] + }, + { + "osmId": "628028609", + "name": null, + "lengthMeters": 864.3028395190095, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5176353, + 13.3731713 + ], + [ + 52.5174107, + 13.3732326 + ], + [ + 52.5170523, + 13.3733189 + ], + [ + 52.5166101, + 13.3734579 + ], + [ + 52.5162295, + 13.3735942 + ], + [ + 52.5156745, + 13.3738561 + ], + [ + 52.5149818, + 13.3742365 + ], + [ + 52.5144355, + 13.3745127 + ], + [ + 52.513493, + 13.374926 + ], + [ + 52.5129866, + 13.3751862 + ], + [ + 52.5125576, + 13.3753091 + ], + [ + 52.5121246, + 13.3754187 + ], + [ + 52.5117436, + 13.3754945 + ], + [ + 52.5113621, + 13.3755586 + ], + [ + 52.5111913, + 13.3755794 + ], + [ + 52.5109559, + 13.375608 + ], + [ + 52.510499, + 13.3756381 + ], + [ + 52.5102587, + 13.3756442 + ], + [ + 52.5100467, + 13.3756495 + ] + ] + }, + { + "osmId": "628028610", + "name": null, + "lengthMeters": 95.85785715502095, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5184992, + 13.373184 + ], + [ + 52.5182103, + 13.3732647 + ], + [ + 52.5179444, + 13.3733338 + ], + [ + 52.5176488, + 13.3734162 + ] + ] + }, + { + "osmId": "628870294", + "name": null, + "lengthMeters": 137.98035027201655, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342774, + 11.6445799 + ], + [ + 48.1342208, + 11.6447099 + ], + [ + 48.1340781, + 11.6451698 + ], + [ + 48.1339437, + 11.6456274 + ], + [ + 48.1337628, + 11.6462695 + ] + ] + }, + { + "osmId": "628874725", + "name": null, + "lengthMeters": 679.91061963506, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350201, + 11.6381814 + ], + [ + 48.1350214, + 11.6384281 + ], + [ + 48.1350178, + 11.6386785 + ], + [ + 48.1350091, + 11.6389886 + ], + [ + 48.134996, + 11.6393129 + ], + [ + 48.134982, + 11.6395481 + ], + [ + 48.1349698, + 11.6397518 + ], + [ + 48.1349337, + 11.6401874 + ], + [ + 48.1348527, + 11.6409164 + ], + [ + 48.1348315, + 11.6411076 + ], + [ + 48.1346353, + 11.6427669 + ], + [ + 48.1345491, + 11.6435428 + ], + [ + 48.1344968, + 11.6442216 + ], + [ + 48.1344738, + 11.6447481 + ], + [ + 48.1344654, + 11.6453563 + ], + [ + 48.1344733, + 11.6458449 + ], + [ + 48.1345153, + 11.6466944 + ], + [ + 48.1345725, + 11.6472737 + ] + ] + }, + { + "osmId": "628877568", + "name": null, + "lengthMeters": 679.2494577310041, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1346113, + 11.6472646 + ], + [ + 48.1345555, + 11.6466876 + ], + [ + 48.1345126, + 11.6458443 + ], + [ + 48.1345047, + 11.6453563 + ], + [ + 48.1345129, + 11.6447494 + ], + [ + 48.1345359, + 11.6442255 + ], + [ + 48.1345895, + 11.6435449 + ], + [ + 48.1346741, + 11.6427745 + ], + [ + 48.1348725, + 11.6411184 + ], + [ + 48.1348938, + 11.640929 + ], + [ + 48.1349681, + 11.6401996 + ], + [ + 48.1350053, + 11.6397606 + ], + [ + 48.1350186, + 11.6395438 + ], + [ + 48.1350326, + 11.6393157 + ], + [ + 48.1350458, + 11.6389934 + ], + [ + 48.1350543, + 11.6386809 + ], + [ + 48.1350583, + 11.6381803 + ] + ] + }, + { + "osmId": "631062232", + "name": "Ostbahn", + "lengthMeters": 213.27854221243854, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5047003, + 13.4625009 + ], + [ + 52.5048324, + 13.4611786 + ], + [ + 52.5049202, + 13.4603041 + ], + [ + 52.5049636, + 13.4599173 + ], + [ + 52.5049848, + 13.4597466 + ], + [ + 52.505011, + 13.4595394 + ], + [ + 52.5050183, + 13.4594828 + ], + [ + 52.5050267, + 13.4594192 + ], + [ + 52.5050296, + 13.459397 + ] + ] + }, + { + "osmId": "633101883", + "name": null, + "lengthMeters": 139.60107218118546, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.394112, + 13.1253341 + ], + [ + 52.394111, + 13.1253214 + ], + [ + 52.3940766, + 13.1249325 + ], + [ + 52.394075, + 13.1249136 + ], + [ + 52.3939371, + 13.1232968 + ] + ] + }, + { + "osmId": "634124817", + "name": "Stettiner Bahn", + "lengthMeters": 126.72025271809761, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6056168, + 13.4590942 + ], + [ + 52.6063331, + 13.459862 + ], + [ + 52.6064508, + 13.4599884 + ], + [ + 52.6065716, + 13.4601187 + ] + ] + }, + { + "osmId": "634124823", + "name": "Stettiner Bahn", + "lengthMeters": 470.6812322253613, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6066812, + 13.4602359 + ], + [ + 52.6070278, + 13.4606083 + ], + [ + 52.6074095, + 13.4610056 + ], + [ + 52.6078072, + 13.4613985 + ], + [ + 52.6081782, + 13.4617623 + ], + [ + 52.6087381, + 13.4623329 + ], + [ + 52.609011, + 13.4626288 + ], + [ + 52.6091673, + 13.4628051 + ], + [ + 52.6093452, + 13.4630097 + ], + [ + 52.6096438, + 13.463359 + ], + [ + 52.6102223, + 13.4640483 + ] + ] + }, + { + "osmId": "634124825", + "name": "Stettiner Bahn", + "lengthMeters": 943.4806690913505, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5983622, + 13.4512494 + ], + [ + 52.5989172, + 13.4518511 + ], + [ + 52.5991491, + 13.4521025 + ], + [ + 52.5997129, + 13.4527138 + ], + [ + 52.6002734, + 13.4533214 + ], + [ + 52.6003113, + 13.4533625 + ], + [ + 52.6010132, + 13.4541235 + ], + [ + 52.6010287, + 13.4541381 + ], + [ + 52.601325, + 13.4544606 + ], + [ + 52.6027437, + 13.4559976 + ], + [ + 52.6030107, + 13.456287 + ], + [ + 52.6033647, + 13.4566706 + ], + [ + 52.604145, + 13.4575099 + ], + [ + 52.6043701, + 13.4577522 + ], + [ + 52.6054541, + 13.458919 + ] + ] + }, + { + "osmId": "635807491", + "name": "Ostbahn", + "lengthMeters": 146.5657756058709, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027556, + 13.4731385 + ], + [ + 52.5029464, + 13.4723915 + ], + [ + 52.5030224, + 13.4720928 + ], + [ + 52.5030944, + 13.4717758 + ], + [ + 52.5031411, + 13.4715561 + ], + [ + 52.5032272, + 13.4711179 + ] + ] + }, + { + "osmId": "635807492", + "name": "Ostbahn", + "lengthMeters": 146.20415715891968, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.503186, + 13.4710979 + ], + [ + 52.503098, + 13.4715324 + ], + [ + 52.5030424, + 13.4717988 + ], + [ + 52.5029913, + 13.4720469 + ], + [ + 52.502924, + 13.4723741 + ], + [ + 52.5028528, + 13.4727275 + ], + [ + 52.5027556, + 13.4731385 + ] + ] + }, + { + "osmId": "636366612", + "name": null, + "lengthMeters": 168.8645733487643, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4511615, + 13.6941178 + ], + [ + 52.4512683, + 13.6930633 + ], + [ + 52.4513037, + 13.6927522 + ], + [ + 52.4513221, + 13.6925979 + ], + [ + 52.4513421, + 13.6924448 + ], + [ + 52.4513939, + 13.6921041 + ], + [ + 52.4514155, + 13.6919673 + ], + [ + 52.4514364, + 13.6918424 + ], + [ + 52.4514478, + 13.6917748 + ], + [ + 52.4514645, + 13.6916781 + ] + ] + }, + { + "osmId": "636366615", + "name": null, + "lengthMeters": 169.32906135496643, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4513762, + 13.691643 + ], + [ + 52.4513664, + 13.6917425 + ], + [ + 52.4513654, + 13.6917528 + ], + [ + 52.4512545, + 13.6928554 + ], + [ + 52.4511265, + 13.6941079 + ] + ] + }, + { + "osmId": "636366616", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 169.4603083241436, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4510746, + 13.6940932 + ], + [ + 52.4513249, + 13.6916265 + ] + ] + }, + { + "osmId": "636366634", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 169.53700959888297, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4512888, + 13.691615 + ], + [ + 52.4510387, + 13.6940829 + ] + ] + }, + { + "osmId": "640055199", + "name": null, + "lengthMeters": 115.74546732962975, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1412912, + 11.5608442 + ], + [ + 48.1413062, + 11.5608318 + ], + [ + 48.1413376, + 11.5608072 + ], + [ + 48.1413639, + 11.5607875 + ], + [ + 48.1413973, + 11.5607637 + ], + [ + 48.1414289, + 11.5607445 + ], + [ + 48.1417704, + 11.5605711 + ], + [ + 48.1418166, + 11.5605486 + ], + [ + 48.1420142, + 11.5604526 + ], + [ + 48.1422123, + 11.5603744 + ], + [ + 48.1422771, + 11.5603545 + ] + ] + }, + { + "osmId": "640884669", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 374.4902788050263, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5275369, + 10.1285347 + ], + [ + 53.5275145, + 10.1286232 + ], + [ + 53.527109, + 10.130209 + ], + [ + 53.5268681, + 10.1310687 + ], + [ + 53.5266633, + 10.1317995 + ], + [ + 53.5262523, + 10.1331392 + ], + [ + 53.5260949, + 10.133652 + ] + ] + }, + { + "osmId": "641671871", + "name": null, + "lengthMeters": 108.90995820802885, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1359818, + 11.5962192 + ], + [ + 48.1359368, + 11.596388 + ], + [ + 48.1359184, + 11.5964767 + ], + [ + 48.1359126, + 11.5965064 + ], + [ + 48.1356942, + 11.5976214 + ] + ] + }, + { + "osmId": "641940800", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 109.4449203249709, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5534436, + 10.0069802 + ], + [ + 53.5533124, + 10.0070494 + ], + [ + 53.5527414, + 10.0073444 + ], + [ + 53.5526702, + 10.0073744 + ], + [ + 53.552623, + 10.0073944 + ], + [ + 53.5524993, + 10.0074458 + ] + ] + }, + { + "osmId": "641969541", + "name": null, + "lengthMeters": 390.85055004438215, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3587359, + 13.1372498 + ], + [ + 52.3587928, + 13.1372479 + ], + [ + 52.3596665, + 13.1372156 + ], + [ + 52.3597098, + 13.1372149 + ], + [ + 52.3606152, + 13.1371816 + ], + [ + 52.3615432, + 13.137152 + ], + [ + 52.3616022, + 13.1371501 + ], + [ + 52.3619712, + 13.1371367 + ], + [ + 52.3622501, + 13.1371272 + ] + ] + }, + { + "osmId": "642004547", + "name": null, + "lengthMeters": 213.91361777145696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5300458, + 10.3177184 + ], + [ + 53.5300198, + 10.3166852 + ], + [ + 53.5300204, + 10.3166509 + ], + [ + 53.5300209, + 10.3164486 + ], + [ + 53.5300276, + 10.3157261 + ], + [ + 53.5300326, + 10.314963 + ], + [ + 53.5300171, + 10.3144837 + ] + ] + }, + { + "osmId": "642005259", + "name": null, + "lengthMeters": 172.8169130780489, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4896574, + 10.2059271 + ], + [ + 53.4902782, + 10.2071679 + ], + [ + 53.4904281, + 10.2074677 + ], + [ + 53.4906546, + 10.2079307 + ] + ] + }, + { + "osmId": "642006944", + "name": null, + "lengthMeters": 154.98469468826892, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5640319, + 9.8133257 + ], + [ + 53.5640391, + 9.8133559 + ], + [ + 53.5640528, + 9.8134131 + ], + [ + 53.5641105, + 9.8136391 + ], + [ + 53.5641343, + 9.813723 + ], + [ + 53.5641638, + 9.8138204 + ], + [ + 53.5641971, + 9.8139212 + ], + [ + 53.5642241, + 9.8139959 + ], + [ + 53.5642732, + 9.8141219 + ], + [ + 53.5643098, + 9.8142257 + ], + [ + 53.5643479, + 9.8143484 + ], + [ + 53.5643732, + 9.8144346 + ], + [ + 53.5644055, + 9.8145474 + ], + [ + 53.5646456, + 9.8154294 + ] + ] + }, + { + "osmId": "642006949", + "name": null, + "lengthMeters": 81.70487148375332, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5645471, + 9.8154977 + ], + [ + 53.5643043, + 9.8146185 + ], + [ + 53.5642854, + 9.8145432 + ], + [ + 53.5642677, + 9.8144691 + ], + [ + 53.5642462, + 9.8143695 + ] + ] + }, + { + "osmId": "642006953", + "name": null, + "lengthMeters": 81.94143880271099, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5642013, + 9.8144075 + ], + [ + 53.5642412, + 9.8145537 + ], + [ + 53.5644145, + 9.8151794 + ], + [ + 53.5645125, + 9.8155322 + ] + ] + }, + { + "osmId": "642010988", + "name": null, + "lengthMeters": 124.11096895134988, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6519586, + 10.0939917 + ], + [ + 53.6530041, + 10.0946511 + ] + ] + }, + { + "osmId": "642013981", + "name": null, + "lengthMeters": 119.38727684441335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6336795, + 10.0066447 + ], + [ + 53.6326095, + 10.0067944 + ] + ] + }, + { + "osmId": "642013982", + "name": null, + "lengthMeters": 118.75456638414536, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6336697, + 10.0064532 + ], + [ + 53.6326045, + 10.0065832 + ] + ] + }, + { + "osmId": "642266328", + "name": null, + "lengthMeters": 305.7521176030232, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3926055, + 13.0892558 + ], + [ + 52.3926588, + 13.0890065 + ], + [ + 52.3927379, + 13.0886695 + ], + [ + 52.3928342, + 13.0881711 + ], + [ + 52.3928903, + 13.0878951 + ], + [ + 52.3930756, + 13.0871117 + ], + [ + 52.3933052, + 13.0861292 + ], + [ + 52.393334, + 13.0858633 + ], + [ + 52.3933367, + 13.0857942 + ], + [ + 52.3933446, + 13.0855883 + ], + [ + 52.3933509, + 13.085427 + ], + [ + 52.393358, + 13.0852881 + ], + [ + 52.3934033, + 13.0849685 + ] + ] + }, + { + "osmId": "643685484", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 145.16670240616025, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518692, + 10.0072351 + ], + [ + 53.5519158, + 10.0072136 + ], + [ + 53.5519574, + 10.0071944 + ], + [ + 53.5520089, + 10.0071706 + ], + [ + 53.5521637, + 10.0070958 + ], + [ + 53.5526618, + 10.0068902 + ], + [ + 53.5531252, + 10.0066395 + ] + ] + }, + { + "osmId": "643739286", + "name": "Berliner Stadtbahn", + "lengthMeters": 151.44006858143447, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.524742, + 13.3695626 + ], + [ + 52.5247831, + 13.3699793 + ], + [ + 52.5248165, + 13.3703488 + ], + [ + 52.5248198, + 13.3703848 + ], + [ + 52.5248283, + 13.3704891 + ], + [ + 52.5248569, + 13.3708985 + ], + [ + 52.5248701, + 13.371088 + ], + [ + 52.5248784, + 13.3713425 + ], + [ + 52.5248832, + 13.3715735 + ], + [ + 52.5248843, + 13.3716287 + ], + [ + 52.5248876, + 13.3717857 + ] + ] + }, + { + "osmId": "645744708", + "name": "Vogelfluglinie", + "lengthMeters": 980.0771332662558, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5718155, + 10.0833834 + ], + [ + 53.5721234, + 10.0843013 + ], + [ + 53.5724402, + 10.0852646 + ], + [ + 53.5727077, + 10.0860968 + ], + [ + 53.5728887, + 10.0867594 + ], + [ + 53.5730788, + 10.0874875 + ], + [ + 53.5731663, + 10.0879418 + ], + [ + 53.5732693, + 10.0884767 + ], + [ + 53.5734492, + 10.0896024 + ], + [ + 53.5735962, + 10.0905588 + ], + [ + 53.5737315, + 10.0914397 + ], + [ + 53.5740764, + 10.0936748 + ], + [ + 53.5741355, + 10.0940573 + ], + [ + 53.5743876, + 10.0956912 + ], + [ + 53.574635, + 10.097361 + ] + ] + }, + { + "osmId": "645744710", + "name": null, + "lengthMeters": 168.64639864164903, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5371603, + 10.0418871 + ], + [ + 53.5373605, + 10.0410567 + ], + [ + 53.5375114, + 10.0404329 + ], + [ + 53.5377333, + 10.0395242 + ] + ] + }, + { + "osmId": "645744711", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 119.0356234015931, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5375125, + 10.0402438 + ], + [ + 53.5371743, + 10.0416518 + ], + [ + 53.5371104, + 10.0419132 + ] + ] + }, + { + "osmId": "645744712", + "name": null, + "lengthMeters": 79.25893204851917, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5292649, + 10.0194417 + ], + [ + 53.5298906, + 10.0200161 + ] + ] + }, + { + "osmId": "645744715", + "name": null, + "lengthMeters": 102.90311510688832, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5274252, + 10.0175559 + ], + [ + 53.5275204, + 10.0176462 + ], + [ + 53.5277278, + 10.0178445 + ], + [ + 53.52786, + 10.0179741 + ], + [ + 53.5282267, + 10.0183341 + ] + ] + }, + { + "osmId": "645744716", + "name": null, + "lengthMeters": 259.23626780916607, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5287623, + 10.0187627 + ], + [ + 53.5283836, + 10.0184087 + ], + [ + 53.5280263, + 10.0180643 + ], + [ + 53.527462, + 10.017519 + ], + [ + 53.5267402, + 10.0168109 + ] + ] + }, + { + "osmId": "645744721", + "name": "Vogelfluglinie", + "lengthMeters": 134.55365157549733, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5720492, + 10.0839837 + ], + [ + 53.5717221, + 10.0829851 + ], + [ + 53.571457, + 10.0822067 + ] + ] + }, + { + "osmId": "647380857", + "name": null, + "lengthMeters": 93.65031334408124, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5923122, + 10.0741874 + ], + [ + 53.5921941, + 10.0736305 + ], + [ + 53.5921645, + 10.0734932 + ], + [ + 53.59208, + 10.0730893 + ], + [ + 53.5920332, + 10.0728486 + ] + ] + }, + { + "osmId": "647380860", + "name": null, + "lengthMeters": 298.0540824990878, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.591691, + 10.071042 + ], + [ + 53.5917539, + 10.0717213 + ], + [ + 53.5918315, + 10.0723764 + ], + [ + 53.5918797, + 10.0727001 + ], + [ + 53.5919636, + 10.0731615 + ], + [ + 53.5920444, + 10.0735641 + ], + [ + 53.5921946, + 10.0742667 + ], + [ + 53.5922667, + 10.0746037 + ], + [ + 53.5924149, + 10.0752973 + ], + [ + 53.5924305, + 10.0753698 + ] + ] + }, + { + "osmId": "647380861", + "name": null, + "lengthMeters": 75.84661153155939, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5922801, + 10.0742132 + ], + [ + 53.5924935, + 10.0752346 + ], + [ + 53.5925088, + 10.0752958 + ] + ] + }, + { + "osmId": "647380865", + "name": null, + "lengthMeters": 86.34612582239514, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5872324, + 10.044343 + ], + [ + 53.5873981, + 10.0434316 + ], + [ + 53.5874143, + 10.0433417 + ], + [ + 53.5874639, + 10.0430944 + ] + ] + }, + { + "osmId": "647380868", + "name": null, + "lengthMeters": 85.27701222596002, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5872078, + 10.0443282 + ], + [ + 53.586993, + 10.0455014 + ], + [ + 53.5869818, + 10.0455628 + ] + ] + }, + { + "osmId": "647676496", + "name": null, + "lengthMeters": 162.29375271476403, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5517716, + 10.0055532 + ], + [ + 53.5516654, + 10.0047178 + ], + [ + 53.5514655, + 10.0031511 + ] + ] + }, + { + "osmId": "650590432", + "name": null, + "lengthMeters": 500.1185783130516, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3881447, + 13.5059458 + ], + [ + 52.3882054, + 13.5060743 + ], + [ + 52.3883718, + 13.5064253 + ], + [ + 52.3886053, + 13.5069274 + ], + [ + 52.3887679, + 13.5072922 + ], + [ + 52.3888439, + 13.5074731 + ], + [ + 52.3889662, + 13.5077679 + ], + [ + 52.3890884, + 13.5080885 + ], + [ + 52.3892175, + 13.5084497 + ], + [ + 52.3893455, + 13.5088288 + ], + [ + 52.3894326, + 13.5091055 + ], + [ + 52.3895151, + 13.5093908 + ], + [ + 52.3897282, + 13.5101377 + ], + [ + 52.3899442, + 13.5108809 + ], + [ + 52.390071, + 13.5112595 + ], + [ + 52.3901874, + 13.5115793 + ], + [ + 52.3903708, + 13.5120392 + ], + [ + 52.390378, + 13.5120568 + ], + [ + 52.3903834, + 13.5120701 + ], + [ + 52.3904132, + 13.5121428 + ], + [ + 52.3904543, + 13.5122431 + ] + ] + }, + { + "osmId": "650590440", + "name": null, + "lengthMeters": 92.69950262848862, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3881703, + 13.5059044 + ], + [ + 52.3876628, + 13.5048207 + ] + ] + }, + { + "osmId": "650590450", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 195.64428449361108, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3882133, + 13.5058538 + ], + [ + 52.3885538, + 13.5065785 + ], + [ + 52.3891692, + 13.5078947 + ], + [ + 52.3892844, + 13.508141 + ] + ] + }, + { + "osmId": "650590472", + "name": null, + "lengthMeters": 93.17929370957344, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3876369, + 13.5048536 + ], + [ + 52.3878651, + 13.5053386 + ], + [ + 52.387868, + 13.5053449 + ], + [ + 52.3881447, + 13.5059458 + ] + ] + }, + { + "osmId": "650590479", + "name": null, + "lengthMeters": 1800.8165106341914, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3876628, + 13.5048207 + ], + [ + 52.387055, + 13.5035217 + ], + [ + 52.3864421, + 13.5021847 + ], + [ + 52.3859625, + 13.5011026 + ], + [ + 52.3857952, + 13.5007333 + ], + [ + 52.3855142, + 13.5001208 + ], + [ + 52.3849882, + 13.4989329 + ], + [ + 52.3839412, + 13.4965594 + ], + [ + 52.3830062, + 13.4944421 + ], + [ + 52.3829125, + 13.4942305 + ], + [ + 52.3818595, + 13.4918376 + ], + [ + 52.3808207, + 13.4894819 + ], + [ + 52.3798912, + 13.4873792 + ], + [ + 52.3797415, + 13.4870402 + ], + [ + 52.3786948, + 13.484669 + ], + [ + 52.3781232, + 13.4833806 + ] + ] + }, + { + "osmId": "650590485", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 92.84251886753601, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3877048, + 13.5047687 + ], + [ + 52.3879599, + 13.5053132 + ], + [ + 52.3882133, + 13.5058538 + ] + ] + }, + { + "osmId": "650590490", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 2986.940411372586, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3877404, + 13.5047264 + ], + [ + 52.3875403, + 13.5042965 + ], + [ + 52.3872318, + 13.5036337 + ], + [ + 52.3868224, + 13.5027543 + ], + [ + 52.3863258, + 13.5016529 + ], + [ + 52.3857165, + 13.5003014 + ], + [ + 52.3856712, + 13.5001989 + ], + [ + 52.384914, + 13.4984869 + ], + [ + 52.384155, + 13.4967706 + ], + [ + 52.3841171, + 13.4966852 + ], + [ + 52.383006, + 13.4941738 + ], + [ + 52.3799697, + 13.4872997 + ], + [ + 52.3778767, + 13.4825601 + ], + [ + 52.3777695, + 13.4823173 + ], + [ + 52.3747188, + 13.4754111 + ], + [ + 52.3738968, + 13.473545 + ], + [ + 52.3735091, + 13.472674 + ], + [ + 52.3725657, + 13.4705518 + ], + [ + 52.3719396, + 13.4691398 + ] + ] + }, + { + "osmId": "651193390", + "name": "Hafenbahn", + "lengthMeters": 1099.4295593618347, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4741253, + 9.9170412 + ], + [ + 53.4742045, + 9.9170923 + ], + [ + 53.4745696, + 9.9173142 + ], + [ + 53.4747016, + 9.9173994 + ], + [ + 53.4748353, + 9.9174858 + ], + [ + 53.4750883, + 9.9176474 + ], + [ + 53.4757592, + 9.9180758 + ], + [ + 53.4760228, + 9.9182846 + ], + [ + 53.476203, + 9.9184455 + ], + [ + 53.4762862, + 9.9185266 + ], + [ + 53.4764374, + 9.9186856 + ], + [ + 53.4765822, + 9.9188522 + ], + [ + 53.4766466, + 9.9189366 + ], + [ + 53.4767371, + 9.9190444 + ], + [ + 53.4768733, + 9.9192331 + ], + [ + 53.4770361, + 9.9194681 + ], + [ + 53.477218, + 9.9197658 + ], + [ + 53.4772717, + 9.9198684 + ], + [ + 53.4773936, + 9.920101 + ], + [ + 53.4775746, + 9.9204839 + ], + [ + 53.4777512, + 9.9209084 + ], + [ + 53.4778693, + 9.9212249 + ], + [ + 53.4779132, + 9.9213557 + ], + [ + 53.4779994, + 9.9216299 + ], + [ + 53.4780732, + 9.9219028 + ], + [ + 53.4781642, + 9.9222516 + ], + [ + 53.4782384, + 9.9226017 + ], + [ + 53.4783279, + 9.9231005 + ], + [ + 53.4783845, + 9.9235216 + ], + [ + 53.4784112, + 9.9237939 + ], + [ + 53.4784365, + 9.9240888 + ], + [ + 53.4784551, + 9.924386 + ], + [ + 53.4784708, + 9.9245799 + ], + [ + 53.4784901, + 9.9248045 + ], + [ + 53.4785214, + 9.9250827 + ], + [ + 53.4785502, + 9.925288 + ], + [ + 53.4785763, + 9.9254565 + ], + [ + 53.4786047, + 9.9256332 + ], + [ + 53.4786293, + 9.9257732 + ], + [ + 53.4786593, + 9.9259333 + ], + [ + 53.4786872, + 9.9260685 + ], + [ + 53.4787293, + 9.9262576 + ], + [ + 53.478764, + 9.926412 + ], + [ + 53.4788136, + 9.9266151 + ], + [ + 53.4788749, + 9.9268468 + ], + [ + 53.4789439, + 9.9270823 + ], + [ + 53.4790123, + 9.9273013 + ], + [ + 53.4790841, + 9.9275228 + ], + [ + 53.4791708, + 9.9277624 + ], + [ + 53.4792791, + 9.928048 + ], + [ + 53.479353, + 9.9282314 + ], + [ + 53.4794457, + 9.9284441 + ], + [ + 53.4795331, + 9.9286394 + ], + [ + 53.4796655, + 9.92891 + ], + [ + 53.4798235, + 9.9292101 + ], + [ + 53.4798587, + 9.9292728 + ] + ] + }, + { + "osmId": "651217504", + "name": null, + "lengthMeters": 129.84130567599829, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350157, + 11.6348478 + ], + [ + 48.1350408, + 11.6345173 + ], + [ + 48.135113, + 11.6336777 + ], + [ + 48.135158, + 11.6331112 + ] + ] + }, + { + "osmId": "651217505", + "name": null, + "lengthMeters": 338.8355746800231, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1345725, + 11.6472737 + ], + [ + 48.1346198, + 11.6476452 + ], + [ + 48.134691, + 11.6480537 + ], + [ + 48.1347824, + 11.6484638 + ], + [ + 48.1348107, + 11.6485733 + ], + [ + 48.134884, + 11.6488085 + ], + [ + 48.1349864, + 11.6490998 + ], + [ + 48.135108, + 11.6493865 + ], + [ + 48.1352455, + 11.6496579 + ], + [ + 48.1352716, + 11.6497102 + ], + [ + 48.1353656, + 11.649862 + ], + [ + 48.1354895, + 11.650062 + ], + [ + 48.1357019, + 11.6503514 + ], + [ + 48.1359018, + 11.6505779 + ], + [ + 48.1360105, + 11.6506861 + ], + [ + 48.1360544, + 11.650728 + ], + [ + 48.1361178, + 11.6507885 + ], + [ + 48.1362409, + 11.6508876 + ] + ] + }, + { + "osmId": "653547644", + "name": null, + "lengthMeters": 128.4128998878997, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7078909, + 9.992487 + ], + [ + 53.7082568, + 9.9924626 + ], + [ + 53.7089482, + 9.9923881 + ], + [ + 53.709044, + 9.9923826 + ] + ] + }, + { + "osmId": "653547645", + "name": null, + "lengthMeters": 129.96393006769003, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7090509, + 9.9921605 + ], + [ + 53.7089403, + 9.9921704 + ], + [ + 53.7087899, + 9.9921771 + ], + [ + 53.7078834, + 9.9922521 + ] + ] + }, + { + "osmId": "653547651", + "name": null, + "lengthMeters": 150.3729395514079, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6514877, + 10.1634259 + ], + [ + 53.6511944, + 10.1633407 + ], + [ + 53.6506645, + 10.1630637 + ], + [ + 53.6501846, + 10.1628271 + ] + ] + }, + { + "osmId": "653874274", + "name": null, + "lengthMeters": 89.43923522310845, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096326, + 13.4373901 + ], + [ + 52.5095936, + 13.4374814 + ], + [ + 52.5095903, + 13.4374889 + ], + [ + 52.5093128, + 13.4381347 + ], + [ + 52.5091721, + 13.4384736 + ] + ] + }, + { + "osmId": "653881643", + "name": null, + "lengthMeters": 169.41135504091622, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5037034, + 13.4679271 + ], + [ + 52.5036237, + 13.4682487 + ], + [ + 52.5035036, + 13.4688324 + ], + [ + 52.5032701, + 13.4700806 + ], + [ + 52.5032509, + 13.4701858 + ], + [ + 52.5032463, + 13.4702113 + ], + [ + 52.5032289, + 13.4703043 + ] + ] + }, + { + "osmId": "653947834", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 105.7699769144527, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5524993, + 10.0074458 + ], + [ + 53.5522307, + 10.0075573 + ], + [ + 53.5518023, + 10.0077615 + ], + [ + 53.5516683, + 10.0078358 + ], + [ + 53.5515845, + 10.0078823 + ] + ] + }, + { + "osmId": "653947839", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 97.97365826892802, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5517746, + 10.007497 + ], + [ + 53.5515885, + 10.0076049 + ], + [ + 53.5513948, + 10.0077525 + ], + [ + 53.5512638, + 10.0078644 + ], + [ + 53.5511983, + 10.0079306 + ], + [ + 53.5511259, + 10.0080037 + ], + [ + 53.5509903, + 10.0081587 + ] + ] + }, + { + "osmId": "653947840", + "name": "L\u00fcbeck-Hamburger Bahn", + "lengthMeters": 107.92728425423833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5524798, + 10.0072738 + ], + [ + 53.5525843, + 10.007229 + ], + [ + 53.5526065, + 10.0072195 + ], + [ + 53.552711, + 10.0071747 + ], + [ + 53.5532748, + 10.0068867 + ], + [ + 53.5534105, + 10.0068116 + ] + ] + }, + { + "osmId": "653947841", + "name": null, + "lengthMeters": 119.8658579566493, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5528963, + 10.0064517 + ], + [ + 53.5526149, + 10.0066136 + ], + [ + 53.5521335, + 10.0068213 + ], + [ + 53.5518596, + 10.0069453 + ] + ] + }, + { + "osmId": "653947842", + "name": null, + "lengthMeters": 118.40925178056123, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.551833, + 10.0067252 + ], + [ + 53.5521146, + 10.0066109 + ], + [ + 53.5521415, + 10.0066 + ], + [ + 53.5525891, + 10.0064085 + ], + [ + 53.552861, + 10.0062608 + ] + ] + }, + { + "osmId": "653947843", + "name": null, + "lengthMeters": 103.58645866332023, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530638, + 10.0060313 + ], + [ + 53.552578, + 10.0062798 + ], + [ + 53.5521682, + 10.0064619 + ] + ] + }, + { + "osmId": "653947844", + "name": null, + "lengthMeters": 102.39200721714691, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5530362, + 10.0058828 + ], + [ + 53.5525599, + 10.0061187 + ], + [ + 53.5521495, + 10.0063003 + ] + ] + }, + { + "osmId": "653947845", + "name": null, + "lengthMeters": 125.7081318266487, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.552861, + 10.0062608 + ], + [ + 53.553087, + 10.0061381 + ], + [ + 53.5531525, + 10.0060995 + ], + [ + 53.5535714, + 10.0058553 + ], + [ + 53.5536861, + 10.0057885 + ], + [ + 53.5537747, + 10.0057278 + ], + [ + 53.5538102, + 10.0057035 + ], + [ + 53.5538215, + 10.0056946 + ], + [ + 53.553866, + 10.0056579 + ], + [ + 53.5539227, + 10.0056118 + ] + ] + }, + { + "osmId": "654481297", + "name": null, + "lengthMeters": 131.62927718542912, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061279, + 13.4516334 + ], + [ + 52.5061812, + 13.4513497 + ], + [ + 52.5062731, + 13.4508607 + ], + [ + 52.5064228, + 13.450064 + ], + [ + 52.5064825, + 13.449778 + ] + ] + }, + { + "osmId": "654481298", + "name": null, + "lengthMeters": 277.68710449001884, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054794, + 13.4555937 + ], + [ + 52.5055254, + 13.4552602 + ], + [ + 52.5055637, + 13.4549831 + ], + [ + 52.5057107, + 13.4539742 + ], + [ + 52.5057284, + 13.4538655 + ], + [ + 52.505794, + 13.4534614 + ], + [ + 52.506062, + 13.4519861 + ], + [ + 52.5060922, + 13.4518245 + ], + [ + 52.5061279, + 13.4516334 + ] + ] + }, + { + "osmId": "654481299", + "name": null, + "lengthMeters": 139.4853385370517, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5063145, + 13.4497364 + ], + [ + 52.5061019, + 13.4506957 + ], + [ + 52.5060858, + 13.4507779 + ], + [ + 52.5059872, + 13.4512815 + ], + [ + 52.5059175, + 13.4516374 + ], + [ + 52.505908, + 13.4516857 + ] + ] + }, + { + "osmId": "654481300", + "name": null, + "lengthMeters": 100.87065640551585, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.505908, + 13.4516857 + ], + [ + 52.5058961, + 13.4517614 + ], + [ + 52.5058727, + 13.4519108 + ], + [ + 52.5057551, + 13.4527369 + ], + [ + 52.5057115, + 13.4531401 + ] + ] + }, + { + "osmId": "654481301", + "name": null, + "lengthMeters": 136.49599834309612, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5060522, + 13.4517158 + ], + [ + 52.5061309, + 13.4513253 + ], + [ + 52.5062288, + 13.4508392 + ], + [ + 52.5064379, + 13.4498012 + ] + ] + }, + { + "osmId": "654481302", + "name": null, + "lengthMeters": 192.72554673232287, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5060522, + 13.4517158 + ], + [ + 52.5060376, + 13.4517894 + ], + [ + 52.5060047, + 13.4519546 + ], + [ + 52.5058706, + 13.452673 + ], + [ + 52.5058072, + 13.4530795 + ], + [ + 52.5057328, + 13.4535566 + ], + [ + 52.5056923, + 13.453854 + ], + [ + 52.5056446, + 13.4541972 + ], + [ + 52.5056072, + 13.4544662 + ] + ] + }, + { + "osmId": "654481303", + "name": null, + "lengthMeters": 142.2389597401611, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5062115, + 13.4519009 + ], + [ + 52.5063044, + 13.4514314 + ], + [ + 52.5063997, + 13.450947 + ], + [ + 52.5065111, + 13.4503564 + ], + [ + 52.5065998, + 13.4498985 + ] + ] + }, + { + "osmId": "656092302", + "name": null, + "lengthMeters": 110.94638442282343, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5518596, + 10.0069453 + ], + [ + 53.5518286, + 10.0069591 + ], + [ + 53.5518188, + 10.0069634 + ], + [ + 53.5517402, + 10.0069983 + ], + [ + 53.5517121, + 10.0070108 + ], + [ + 53.5516231, + 10.0070246 + ], + [ + 53.5515026, + 10.0070433 + ], + [ + 53.5513603, + 10.0070654 + ], + [ + 53.5510574, + 10.0071156 + ], + [ + 53.5510289, + 10.0071193 + ], + [ + 53.5508704, + 10.00714 + ] + ] + }, + { + "osmId": "656092304", + "name": null, + "lengthMeters": 117.99956216114879, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5521682, + 10.0064619 + ], + [ + 53.5520993, + 10.0064925 + ], + [ + 53.552062, + 10.0065085 + ], + [ + 53.5520343, + 10.0065204 + ], + [ + 53.5520241, + 10.0065247 + ], + [ + 53.5516969, + 10.0066649 + ], + [ + 53.5516674, + 10.0066776 + ], + [ + 53.5516506, + 10.0066812 + ], + [ + 53.5514442, + 10.0067262 + ], + [ + 53.5513506, + 10.0067466 + ], + [ + 53.5511274, + 10.0067919 + ] + ] + }, + { + "osmId": "656316110", + "name": null, + "lengthMeters": 490.92086702269535, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5198524, + 13.4634375 + ], + [ + 52.5198738, + 13.4636959 + ], + [ + 52.5200613, + 13.465826 + ], + [ + 52.5201438, + 13.4668784 + ], + [ + 52.5201792, + 13.4673016 + ], + [ + 52.5202222, + 13.4678152 + ], + [ + 52.5202355, + 13.4679742 + ], + [ + 52.5202771, + 13.4684721 + ], + [ + 52.5202819, + 13.4685267 + ], + [ + 52.5203585, + 13.4693941 + ], + [ + 52.5203712, + 13.4695476 + ], + [ + 52.5203884, + 13.4697705 + ], + [ + 52.5204546, + 13.4706252 + ] + ] + }, + { + "osmId": "658913264", + "name": null, + "lengthMeters": 116.39480655529502, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.7259701, + 10.2684583 + ], + [ + 53.7258153, + 10.2685797 + ], + [ + 53.7257192, + 10.2686669 + ], + [ + 53.725605, + 10.2687997 + ], + [ + 53.7255098, + 10.2690142 + ], + [ + 53.7253313, + 10.2695024 + ], + [ + 53.7252392, + 10.269658 + ] + ] + }, + { + "osmId": "659305039", + "name": null, + "lengthMeters": 87.33357495845729, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102959, + 13.4362832 + ], + [ + 52.5103092, + 13.4362521 + ], + [ + 52.510328, + 13.436208 + ], + [ + 52.5103756, + 13.4360951 + ], + [ + 52.5104522, + 13.4359137 + ], + [ + 52.5105683, + 13.4356383 + ], + [ + 52.5107436, + 13.4352229 + ] + ] + }, + { + "osmId": "659417223", + "name": "Czerwonka-Schleife", + "lengthMeters": 336.6160536186518, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7453427, + 9.8544644 + ], + [ + 53.7452554, + 9.8542857 + ], + [ + 53.7452118, + 9.8542388 + ], + [ + 53.7451658, + 9.8542066 + ], + [ + 53.7451103, + 9.8542052 + ], + [ + 53.7450532, + 9.8542374 + ], + [ + 53.744149, + 9.8552084 + ], + [ + 53.7440935, + 9.855305 + ], + [ + 53.7440776, + 9.8554149 + ], + [ + 53.7440761, + 9.8555437 + ], + [ + 53.744103, + 9.8556563 + ], + [ + 53.7445949, + 9.8569763 + ], + [ + 53.7446679, + 9.8573227 + ], + [ + 53.7446664, + 9.8573999 + ], + [ + 53.7446506, + 9.857477 + ], + [ + 53.7446103, + 9.8575804 + ] + ] + }, + { + "osmId": "660510104", + "name": null, + "lengthMeters": 190.62328341721275, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4739097, + 13.3444601 + ], + [ + 52.4740221, + 13.3444646 + ], + [ + 52.4742248, + 13.3444422 + ], + [ + 52.4756191, + 13.3442597 + ] + ] + }, + { + "osmId": "663951384", + "name": "Harburger S-Bahn", + "lengthMeters": 109.41216273664656, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5496482, + 10.0146236 + ], + [ + 53.5497003, + 10.0150911 + ], + [ + 53.5498295, + 10.0157995 + ], + [ + 53.5499286, + 10.0162061 + ] + ] + }, + { + "osmId": "663951385", + "name": "Harburger S-Bahn", + "lengthMeters": 121.3978802373978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5501251, + 10.0161988 + ], + [ + 53.5500999, + 10.0160905 + ], + [ + 53.5499034, + 10.0151702 + ], + [ + 53.5498377, + 10.0148097 + ], + [ + 53.5497906, + 10.0144521 + ] + ] + }, + { + "osmId": "664146037", + "name": null, + "lengthMeters": 208.68499126757382, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4517913, + 9.995321 + ], + [ + 53.4509696, + 9.9965269 + ], + [ + 53.4503786, + 9.9973957 + ] + ] + }, + { + "osmId": "664829490", + "name": null, + "lengthMeters": 490.7709069971379, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712395, + 13.3818525 + ], + [ + 52.4712426, + 13.3817691 + ], + [ + 52.4712477, + 13.3815652 + ], + [ + 52.4712791, + 13.3768155 + ], + [ + 52.4712922, + 13.3746078 + ] + ] + }, + { + "osmId": "669909817", + "name": null, + "lengthMeters": 119.41851032787613, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": false, + "coordinates": [ + [ + 48.1708473, + 11.5728576 + ], + [ + 48.1708592, + 11.5728449 + ], + [ + 48.170867, + 11.5728364 + ], + [ + 48.1708906, + 11.5728163 + ], + [ + 48.1709034, + 11.5728063 + ], + [ + 48.1709265, + 11.5727901 + ], + [ + 48.1709418, + 11.57278 + ], + [ + 48.170962, + 11.5727692 + ], + [ + 48.1709913, + 11.5727549 + ], + [ + 48.1710158, + 11.5727451 + ], + [ + 48.1710311, + 11.5727406 + ], + [ + 48.1710629, + 11.5727328 + ], + [ + 48.1711044, + 11.5727258 + ], + [ + 48.1711926, + 11.572719 + ], + [ + 48.171698, + 11.5726376 + ], + [ + 48.1718991, + 11.5726075 + ] + ] + }, + { + "osmId": "672021456", + "name": "Norderstedter Industriebahn", + "lengthMeters": 336.36476864713154, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.7231062, + 10.020375 + ], + [ + 53.7230056, + 10.020392 + ], + [ + 53.7226197, + 10.0204572 + ], + [ + 53.7200962, + 10.0208835 + ] + ] + }, + { + "osmId": "672282329", + "name": null, + "lengthMeters": 373.7104264313741, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4709993, + 9.9519707 + ], + [ + 53.4710974, + 9.9515508 + ], + [ + 53.4711746, + 9.951162 + ], + [ + 53.4712603, + 9.9505722 + ], + [ + 53.4712881, + 9.9503572 + ], + [ + 53.4713197, + 9.9501116 + ], + [ + 53.4713855, + 9.9493257 + ], + [ + 53.4714436, + 9.9484274 + ], + [ + 53.4714961, + 9.947416 + ], + [ + 53.4715258, + 9.9464227 + ] + ] + }, + { + "osmId": "672282330", + "name": null, + "lengthMeters": 371.121300416429, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.471487, + 9.9464256 + ], + [ + 53.4714379, + 9.9474442 + ], + [ + 53.4713914, + 9.9484172 + ], + [ + 53.4713337, + 9.9493253 + ], + [ + 53.4712822, + 9.9499521 + ], + [ + 53.4712161, + 9.9505403 + ], + [ + 53.4711232, + 9.951129 + ], + [ + 53.4710407, + 9.9515292 + ], + [ + 53.470957, + 9.9519377 + ] + ] + }, + { + "osmId": "675604737", + "name": null, + "lengthMeters": 3545.8520464089056, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1537861, + 11.5130259 + ], + [ + 48.1537655, + 11.513061 + ], + [ + 48.15369, + 11.5131781 + ], + [ + 48.1530382, + 11.5141187 + ], + [ + 48.1526261, + 11.5147222 + ], + [ + 48.1523386, + 11.5151384 + ], + [ + 48.1521554, + 11.5154036 + ], + [ + 48.1518647, + 11.5158278 + ], + [ + 48.1516305, + 11.5161672 + ], + [ + 48.1514343, + 11.5164672 + ], + [ + 48.1512389, + 11.5167947 + ], + [ + 48.1510926, + 11.5170705 + ], + [ + 48.1509287, + 11.5174087 + ], + [ + 48.1507857, + 11.5177401 + ], + [ + 48.1506579, + 11.5180706 + ], + [ + 48.1505531, + 11.5183664 + ], + [ + 48.1504419, + 11.5187287 + ], + [ + 48.1503641, + 11.5190094 + ], + [ + 48.150288, + 11.5193182 + ], + [ + 48.1502646, + 11.5194247 + ], + [ + 48.1502427, + 11.5195246 + ], + [ + 48.1502014, + 11.5197284 + ], + [ + 48.1501368, + 11.5200873 + ], + [ + 48.1501174, + 11.5202008 + ], + [ + 48.1501048, + 11.5202743 + ], + [ + 48.1500875, + 11.5203715 + ], + [ + 48.1500687, + 11.5204777 + ], + [ + 48.1499802, + 11.5209796 + ], + [ + 48.1498891, + 11.5215009 + ], + [ + 48.1498342, + 11.521773 + ], + [ + 48.1497826, + 11.5220092 + ], + [ + 48.1496406, + 11.5225756 + ], + [ + 48.1494533, + 11.5232087 + ], + [ + 48.1491261, + 11.5241533 + ], + [ + 48.1489885, + 11.5245382 + ], + [ + 48.1488328, + 11.5249677 + ], + [ + 48.1487318, + 11.5252366 + ], + [ + 48.1486787, + 11.5253763 + ], + [ + 48.1484171, + 11.5260496 + ], + [ + 48.147835, + 11.5274919 + ], + [ + 48.1478005, + 11.5275884 + ], + [ + 48.1477521, + 11.5277238 + ], + [ + 48.1477122, + 11.5278441 + ], + [ + 48.1476912, + 11.5279072 + ], + [ + 48.1475912, + 11.5282209 + ], + [ + 48.147498, + 11.5285445 + ], + [ + 48.1473572, + 11.5290948 + ], + [ + 48.1473275, + 11.529225 + ], + [ + 48.1472953, + 11.5293635 + ], + [ + 48.147201, + 11.5297933 + ], + [ + 48.1471009, + 11.5302817 + ], + [ + 48.147028, + 11.5306228 + ], + [ + 48.1469669, + 11.5309157 + ], + [ + 48.1468879, + 11.5313458 + ], + [ + 48.1468441, + 11.5315742 + ], + [ + 48.1467593, + 11.5320369 + ], + [ + 48.1466804, + 11.532505 + ], + [ + 48.1465915, + 11.5330592 + ], + [ + 48.1465485, + 11.5333378 + ], + [ + 48.1465085, + 11.5336247 + ], + [ + 48.1463772, + 11.5345582 + ], + [ + 48.1463471, + 11.534792 + ], + [ + 48.1463232, + 11.5350264 + ], + [ + 48.1462891, + 11.5354522 + ], + [ + 48.1462847, + 11.5355076 + ], + [ + 48.1462741, + 11.5356119 + ], + [ + 48.1462311, + 11.5361687 + ], + [ + 48.1462227, + 11.536268 + ], + [ + 48.1462163, + 11.5363254 + ], + [ + 48.1461733, + 11.5367127 + ], + [ + 48.1461482, + 11.5369316 + ], + [ + 48.1460979, + 11.5372769 + ], + [ + 48.1460436, + 11.5375999 + ], + [ + 48.145939, + 11.5381476 + ], + [ + 48.1458254, + 11.538637 + ], + [ + 48.145655, + 11.5393157 + ], + [ + 48.1454328, + 11.5401713 + ], + [ + 48.1453211, + 11.5406291 + ], + [ + 48.1451968, + 11.5411526 + ], + [ + 48.1451858, + 11.5411957 + ], + [ + 48.1451761, + 11.5412364 + ], + [ + 48.1451654, + 11.5412814 + ], + [ + 48.1451326, + 11.5414399 + ], + [ + 48.1450948, + 11.5415938 + ], + [ + 48.1449892, + 11.5420314 + ], + [ + 48.1448903, + 11.5424706 + ], + [ + 48.1447933, + 11.5429178 + ], + [ + 48.1446163, + 11.5437418 + ], + [ + 48.1443283, + 11.5450839 + ], + [ + 48.1442884, + 11.5452754 + ], + [ + 48.1442563, + 11.5454292 + ], + [ + 48.1442182, + 11.5456072 + ], + [ + 48.1438944, + 11.5471238 + ], + [ + 48.1436233, + 11.5484115 + ], + [ + 48.1435789, + 11.5486188 + ], + [ + 48.1435469, + 11.5487816 + ], + [ + 48.143493, + 11.549014 + ], + [ + 48.1432679, + 11.5500408 + ], + [ + 48.1431865, + 11.5503894 + ], + [ + 48.1431573, + 11.5505227 + ], + [ + 48.1431073, + 11.550762 + ], + [ + 48.1430796, + 11.5509062 + ], + [ + 48.1430165, + 11.5511885 + ], + [ + 48.1426936, + 11.5526334 + ], + [ + 48.1426514, + 11.552843 + ], + [ + 48.1424178, + 11.5540043 + ], + [ + 48.1424075, + 11.5540551 + ], + [ + 48.142382, + 11.5541725 + ], + [ + 48.1422953, + 11.5546107 + ], + [ + 48.1422197, + 11.5549935 + ], + [ + 48.142113, + 11.5556015 + ], + [ + 48.1420537, + 11.5559519 + ], + [ + 48.14205, + 11.5559894 + ], + [ + 48.142043, + 11.5560616 + ], + [ + 48.1420276, + 11.5562039 + ], + [ + 48.1420242, + 11.5562519 + ], + [ + 48.1420198, + 11.5563155 + ], + [ + 48.1420126, + 11.5564451 + ], + [ + 48.1420067, + 11.5565359 + ], + [ + 48.142, + 11.5566287 + ] + ] + }, + { + "osmId": "675604741", + "name": null, + "lengthMeters": 154.89811810403938, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1536666, + 11.5132673 + ], + [ + 48.1537078, + 11.5132035 + ], + [ + 48.1537837, + 11.5130886 + ], + [ + 48.15386, + 11.5129659 + ], + [ + 48.1538833, + 11.512923 + ], + [ + 48.1539735, + 11.5127567 + ], + [ + 48.1540316, + 11.5126294 + ], + [ + 48.154087, + 11.5124921 + ], + [ + 48.1541472, + 11.5123076 + ], + [ + 48.1542102, + 11.5121013 + ], + [ + 48.1542955, + 11.5118275 + ], + [ + 48.1543147, + 11.5117639 + ], + [ + 48.1543327, + 11.5117119 + ], + [ + 48.154344, + 11.5116806 + ], + [ + 48.1543609, + 11.5116432 + ], + [ + 48.1543718, + 11.5116211 + ], + [ + 48.1544294, + 11.511546 + ] + ] + }, + { + "osmId": "676864952", + "name": null, + "lengthMeters": 115.28398173953575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5385756, + 13.3596529 + ], + [ + 52.5387938, + 13.3597738 + ], + [ + 52.5390222, + 13.3599123 + ], + [ + 52.5391852, + 13.3600246 + ], + [ + 52.5393546, + 13.3601611 + ], + [ + 52.5395228, + 13.3603319 + ] + ] + }, + { + "osmId": "677093079", + "name": null, + "lengthMeters": 88.80795383985979, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5341308, + 13.3004659 + ], + [ + 52.5333336, + 13.3005455 + ] + ] + }, + { + "osmId": "677259830", + "name": null, + "lengthMeters": 154.05397912080724, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4897705, + 10.2057411 + ], + [ + 53.4894648, + 10.2051085 + ], + [ + 53.4891618, + 10.2044637 + ], + [ + 53.4889887, + 10.2040866 + ], + [ + 53.4889109, + 10.2039151 + ] + ] + }, + { + "osmId": "678512509", + "name": null, + "lengthMeters": 226.99186959739228, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5227074, + 9.9259974 + ], + [ + 53.5228013, + 9.9261153 + ], + [ + 53.5228739, + 9.9262092 + ], + [ + 53.5229875, + 9.926356 + ], + [ + 53.5231735, + 9.9265961 + ], + [ + 53.5233439, + 9.926816 + ], + [ + 53.5235001, + 9.9270205 + ], + [ + 53.5236225, + 9.927211 + ], + [ + 53.5237529, + 9.9273907 + ], + [ + 53.5239028, + 9.9275851 + ], + [ + 53.5240317, + 9.9277522 + ], + [ + 53.524065, + 9.927792 + ], + [ + 53.5241676, + 9.9279147 + ], + [ + 53.5243192, + 9.9281021 + ] + ] + }, + { + "osmId": "678923985", + "name": null, + "lengthMeters": 856.9363382292893, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5812302, + 13.2911677 + ], + [ + 52.5812977, + 13.2910986 + ], + [ + 52.581378, + 13.2910244 + ], + [ + 52.5815966, + 13.2908435 + ], + [ + 52.5823763, + 13.2901999 + ], + [ + 52.5826218, + 13.289953 + ], + [ + 52.5862718, + 13.2869462 + ], + [ + 52.5872942, + 13.2860392 + ], + [ + 52.5878489, + 13.285525 + ], + [ + 52.5880633, + 13.2853114 + ] + ] + }, + { + "osmId": "678992905", + "name": null, + "lengthMeters": 179.29065514285853, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.502449, + 13.4727349 + ], + [ + 52.5024223, + 13.4729438 + ], + [ + 52.5023946, + 13.4731852 + ], + [ + 52.5023603, + 13.4735151 + ], + [ + 52.5023454, + 13.4737705 + ], + [ + 52.5023308, + 13.4740672 + ], + [ + 52.5023197, + 13.4743308 + ], + [ + 52.5022683, + 13.4753639 + ] + ] + }, + { + "osmId": "678992906", + "name": null, + "lengthMeters": 276.9813834400799, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5057115, + 13.4531401 + ], + [ + 52.5055775, + 13.4542645 + ], + [ + 52.5054851, + 13.4550142 + ], + [ + 52.5053179, + 13.456078 + ], + [ + 52.5052593, + 13.4564669 + ], + [ + 52.5052185, + 13.4567118 + ], + [ + 52.50515, + 13.4571252 + ] + ] + }, + { + "osmId": "678992908", + "name": null, + "lengthMeters": 94.62155207852888, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5111934, + 13.4340391 + ], + [ + 52.5111575, + 13.4341223 + ], + [ + 52.5110959, + 13.4342652 + ], + [ + 52.5110351, + 13.4344062 + ], + [ + 52.5107014, + 13.4351799 + ] + ] + }, + { + "osmId": "679404412", + "name": null, + "lengthMeters": 183.41733312501597, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5038856, + 13.465199 + ], + [ + 52.5037687, + 13.4659301 + ], + [ + 52.5037532, + 13.4660377 + ], + [ + 52.5036349, + 13.466783 + ], + [ + 52.5035492, + 13.4672877 + ], + [ + 52.5034509, + 13.4678126 + ] + ] + }, + { + "osmId": "680099989", + "name": "U7", + "lengthMeters": 433.1084436015692, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4389105, + 13.4478094 + ], + [ + 52.4403273, + 13.4471167 + ], + [ + 52.4407198, + 13.4470587 + ], + [ + 52.441069, + 13.4470326 + ], + [ + 52.4415725, + 13.447038 + ], + [ + 52.4418281, + 13.4471111 + ], + [ + 52.4422265, + 13.4474422 + ], + [ + 52.4426309, + 13.4478135 + ] + ] + }, + { + "osmId": "683100314", + "name": null, + "lengthMeters": 154.19294451894476, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1589198, + 11.5863699 + ], + [ + 48.1589113, + 11.5863919 + ], + [ + 48.1589003, + 11.5864138 + ], + [ + 48.1588843, + 11.586433 + ], + [ + 48.1588679, + 11.5864419 + ], + [ + 48.1588525, + 11.586443 + ], + [ + 48.1588371, + 11.5864405 + ], + [ + 48.1586067, + 11.5863257 + ], + [ + 48.1585882, + 11.5863189 + ], + [ + 48.158569, + 11.5863151 + ], + [ + 48.1585467, + 11.5863162 + ], + [ + 48.1585232, + 11.5863236 + ], + [ + 48.158501, + 11.5863366 + ], + [ + 48.1584774, + 11.5863565 + ], + [ + 48.1584558, + 11.5863804 + ], + [ + 48.158442, + 11.5864092 + ], + [ + 48.1584301, + 11.5864404 + ], + [ + 48.1584261, + 11.5864762 + ], + [ + 48.1584253, + 11.586512 + ], + [ + 48.1584347, + 11.5865777 + ], + [ + 48.1584524, + 11.5866314 + ], + [ + 48.1584701, + 11.5866612 + ], + [ + 48.1584973, + 11.5866836 + ], + [ + 48.1585251, + 11.5867013 + ], + [ + 48.1586248, + 11.5867437 + ], + [ + 48.1587445, + 11.5867946 + ], + [ + 48.1587618, + 11.5867958 + ], + [ + 48.1587792, + 11.5867937 + ], + [ + 48.1587958, + 11.5867893 + ], + [ + 48.1588124, + 11.5867824 + ], + [ + 48.1588272, + 11.5867721 + ], + [ + 48.158842, + 11.5867592 + ], + [ + 48.1588545, + 11.5867422 + ], + [ + 48.158864, + 11.5867208 + ], + [ + 48.1588804, + 11.5866734 + ], + [ + 48.1589587, + 11.586383 + ] + ] + }, + { + "osmId": "685968153", + "name": null, + "lengthMeters": 10557.598681067575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4791924, + 10.2304217 + ], + [ + 53.4791921, + 10.2306869 + ], + [ + 53.4791796, + 10.2309487 + ], + [ + 53.4791499, + 10.2313468 + ], + [ + 53.4791205, + 10.2316832 + ], + [ + 53.4790854, + 10.2319816 + ], + [ + 53.4790384, + 10.2322947 + ], + [ + 53.4789892, + 10.2325595 + ], + [ + 53.4789378, + 10.232804 + ], + [ + 53.4788637, + 10.2331303 + ], + [ + 53.4782064, + 10.2359235 + ], + [ + 53.4781339, + 10.2362418 + ], + [ + 53.4780644, + 10.2365847 + ], + [ + 53.477999, + 10.2369379 + ], + [ + 53.4779439, + 10.2372855 + ], + [ + 53.4778915, + 10.2376591 + ], + [ + 53.4776147, + 10.2396977 + ], + [ + 53.477578, + 10.2399773 + ], + [ + 53.4775347, + 10.2402639 + ], + [ + 53.4774803, + 10.2405467 + ], + [ + 53.4774224, + 10.2407962 + ], + [ + 53.4774007, + 10.240895 + ], + [ + 53.4773342, + 10.2411662 + ], + [ + 53.4772373, + 10.2415168 + ], + [ + 53.477139, + 10.2418511 + ], + [ + 53.4759195, + 10.2459664 + ], + [ + 53.4750778, + 10.2488008 + ], + [ + 53.4749872, + 10.2491014 + ], + [ + 53.4748851, + 10.2493905 + ], + [ + 53.4747765, + 10.2496661 + ], + [ + 53.4746677, + 10.2499111 + ], + [ + 53.4745378, + 10.2501737 + ], + [ + 53.4735321, + 10.2521585 + ], + [ + 53.4733326, + 10.2525503 + ], + [ + 53.4731953, + 10.2528268 + ], + [ + 53.4730942, + 10.2530486 + ], + [ + 53.4729891, + 10.2532986 + ], + [ + 53.4729049, + 10.2535197 + ], + [ + 53.4728249, + 10.2537462 + ], + [ + 53.4727288, + 10.2540425 + ], + [ + 53.4726396, + 10.2543581 + ], + [ + 53.4725661, + 10.2546515 + ], + [ + 53.4724921, + 10.2549814 + ], + [ + 53.4723033, + 10.2559392 + ], + [ + 53.4716963, + 10.2590345 + ], + [ + 53.4716091, + 10.2595269 + ], + [ + 53.4715367, + 10.2600176 + ], + [ + 53.4714732, + 10.2605092 + ], + [ + 53.471421, + 10.260994 + ], + [ + 53.4713504, + 10.2616356 + ], + [ + 53.4713055, + 10.2620694 + ], + [ + 53.4710439, + 10.2645145 + ], + [ + 53.4709198, + 10.2656661 + ], + [ + 53.4707709, + 10.2670661 + ], + [ + 53.4704595, + 10.2699761 + ], + [ + 53.4704373, + 10.2701638 + ], + [ + 53.4704349, + 10.2701847 + ], + [ + 53.47041, + 10.2703962 + ], + [ + 53.470353, + 10.2708099 + ], + [ + 53.4702842, + 10.2712272 + ], + [ + 53.4701486, + 10.2719164 + ], + [ + 53.4697598, + 10.2738745 + ], + [ + 53.4693648, + 10.2758327 + ], + [ + 53.469056, + 10.2772652 + ], + [ + 53.4690026, + 10.277513 + ], + [ + 53.4687242, + 10.2787907 + ], + [ + 53.4685907, + 10.2794022 + ], + [ + 53.4684953, + 10.279811 + ], + [ + 53.4683929, + 10.2801957 + ], + [ + 53.4682828, + 10.2805579 + ], + [ + 53.4681659, + 10.2809065 + ], + [ + 53.4680592, + 10.2811975 + ], + [ + 53.4679303, + 10.2815245 + ], + [ + 53.4678098, + 10.281809 + ], + [ + 53.4675208, + 10.2824757 + ], + [ + 53.4671395, + 10.2833703 + ], + [ + 53.4669907, + 10.2837194 + ], + [ + 53.4668858, + 10.2840062 + ], + [ + 53.466777, + 10.2843331 + ], + [ + 53.4666733, + 10.2847108 + ], + [ + 53.4663807, + 10.2859313 + ], + [ + 53.4662616, + 10.2864711 + ], + [ + 53.4661609, + 10.2869708 + ], + [ + 53.4660602, + 10.2875463 + ], + [ + 53.4659679, + 10.2881513 + ], + [ + 53.4658898, + 10.2887884 + ], + [ + 53.465825, + 10.2894283 + ], + [ + 53.4657777, + 10.2900086 + ], + [ + 53.4657412, + 10.2905648 + ], + [ + 53.4657126, + 10.2910385 + ], + [ + 53.4656893, + 10.2914989 + ], + [ + 53.4656063, + 10.2941016 + ], + [ + 53.4655853, + 10.2945559 + ], + [ + 53.46555, + 10.2950387 + ], + [ + 53.4655018, + 10.2954816 + ], + [ + 53.4654502, + 10.2958609 + ], + [ + 53.4653839, + 10.2962675 + ], + [ + 53.4653001, + 10.2966934 + ], + [ + 53.4652068, + 10.2971173 + ], + [ + 53.4650367, + 10.2979104 + ], + [ + 53.4641334, + 10.3020654 + ], + [ + 53.4630794, + 10.3069108 + ], + [ + 53.4626803, + 10.3087718 + ], + [ + 53.4626302, + 10.3090616 + ], + [ + 53.4625875, + 10.3093479 + ], + [ + 53.4625515, + 10.309632 + ], + [ + 53.4624147, + 10.3109344 + ], + [ + 53.4622181, + 10.3128267 + ], + [ + 53.4620904, + 10.3140524 + ], + [ + 53.461903, + 10.315835 + ], + [ + 53.4618557, + 10.3162897 + ], + [ + 53.4618001, + 10.3167 + ], + [ + 53.4617265, + 10.317158 + ], + [ + 53.4616404, + 10.3176071 + ], + [ + 53.4615378, + 10.3180643 + ], + [ + 53.4614024, + 10.3185615 + ], + [ + 53.4612691, + 10.3190057 + ], + [ + 53.4607104, + 10.3208575 + ], + [ + 53.4606263, + 10.3211342 + ], + [ + 53.4605448, + 10.3214339 + ], + [ + 53.4604579, + 10.3217799 + ], + [ + 53.4603709, + 10.3221752 + ], + [ + 53.4602881, + 10.3225761 + ], + [ + 53.4599337, + 10.3243209 + ], + [ + 53.4598544, + 10.3247287 + ], + [ + 53.4597905, + 10.3251022 + ], + [ + 53.4597371, + 10.3254755 + ], + [ + 53.4596939, + 10.3258283 + ], + [ + 53.4596569, + 10.3261989 + ], + [ + 53.45963, + 10.3265554 + ], + [ + 53.4593768, + 10.3301352 + ], + [ + 53.4593644, + 10.3302835 + ], + [ + 53.4593386, + 10.3306555 + ], + [ + 53.4593093, + 10.3310393 + ], + [ + 53.4592713, + 10.3314139 + ], + [ + 53.4592282, + 10.331768 + ], + [ + 53.4591709, + 10.332141 + ], + [ + 53.4591061, + 10.3325077 + ], + [ + 53.4590286, + 10.3328757 + ], + [ + 53.4583824, + 10.335723 + ], + [ + 53.4582696, + 10.3362006 + ], + [ + 53.4581662, + 10.336622 + ], + [ + 53.4580427, + 10.3370728 + ], + [ + 53.4579142, + 10.3374745 + ], + [ + 53.4577699, + 10.337875 + ], + [ + 53.4576027, + 10.3382896 + ], + [ + 53.4567898, + 10.3401882 + ], + [ + 53.4558039, + 10.3424946 + ], + [ + 53.4552174, + 10.343856 + ], + [ + 53.4550834, + 10.3441761 + ], + [ + 53.4549494, + 10.3445062 + ], + [ + 53.4547987, + 10.3448982 + ], + [ + 53.4546514, + 10.3453128 + ], + [ + 53.4540124, + 10.3471513 + ], + [ + 53.4538964, + 10.347484 + ], + [ + 53.4537939, + 10.3477578 + ], + [ + 53.4536694, + 10.3480547 + ], + [ + 53.4535569, + 10.3482962 + ], + [ + 53.4534612, + 10.3484874 + ], + [ + 53.4533317, + 10.3487227 + ], + [ + 53.4531436, + 10.3490473 + ], + [ + 53.4521738, + 10.3507226 + ], + [ + 53.4519724, + 10.3510652 + ], + [ + 53.4517468, + 10.3514245 + ], + [ + 53.4515088, + 10.3517873 + ], + [ + 53.4510384, + 10.3525025 + ], + [ + 53.4508094, + 10.3528576 + ], + [ + 53.4506194, + 10.3531419 + ], + [ + 53.4504619, + 10.3533611 + ], + [ + 53.4502737, + 10.3536124 + ], + [ + 53.4499118, + 10.3540833 + ], + [ + 53.449768, + 10.3542885 + ], + [ + 53.4496134, + 10.3545123 + ], + [ + 53.4492505, + 10.3550688 + ], + [ + 53.4485927, + 10.3560839 + ], + [ + 53.4475846, + 10.3576413 + ], + [ + 53.447424, + 10.3578855 + ], + [ + 53.4473064, + 10.3580441 + ], + [ + 53.4471808, + 10.3581982 + ], + [ + 53.4470611, + 10.3583282 + ], + [ + 53.4469204, + 10.3584622 + ], + [ + 53.4467646, + 10.3585916 + ], + [ + 53.4466028, + 10.3587065 + ], + [ + 53.4464301, + 10.3588061 + ], + [ + 53.4462795, + 10.3588777 + ], + [ + 53.4461265, + 10.3589349 + ], + [ + 53.4459678, + 10.3589781 + ], + [ + 53.4458131, + 10.3590054 + ], + [ + 53.4456762, + 10.3590157 + ], + [ + 53.4452488, + 10.3590189 + ], + [ + 53.4450362, + 10.3590208 + ], + [ + 53.4445155, + 10.3590153 + ], + [ + 53.4439946, + 10.3590135 + ], + [ + 53.4423434, + 10.3590573 + ], + [ + 53.4420507, + 10.3590547 + ], + [ + 53.4418578, + 10.3590561 + ], + [ + 53.4414422, + 10.359059 + ], + [ + 53.4408585, + 10.3590506 + ], + [ + 53.4407946, + 10.359048 + ], + [ + 53.440753, + 10.3590497 + ], + [ + 53.4406376, + 10.3590512 + ], + [ + 53.4405191, + 10.3590594 + ], + [ + 53.4404097, + 10.3590717 + ], + [ + 53.4403392, + 10.3590855 + ], + [ + 53.4402818, + 10.3590962 + ], + [ + 53.4401665, + 10.3591322 + ], + [ + 53.4400334, + 10.3591829 + ], + [ + 53.4398914, + 10.3592465 + ], + [ + 53.4396975, + 10.3593582 + ], + [ + 53.4395363, + 10.3594749 + ], + [ + 53.4390139, + 10.3599485 + ], + [ + 53.4384005, + 10.3605249 + ], + [ + 53.4382844, + 10.3606429 + ], + [ + 53.438013, + 10.3609017 + ], + [ + 53.4371209, + 10.3617454 + ] + ] + }, + { + "osmId": "686462038", + "name": null, + "lengthMeters": 198.69321154344416, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1228003, + 11.5822263 + ], + [ + 48.1228673, + 11.5821946 + ], + [ + 48.1229231, + 11.5821632 + ], + [ + 48.1229677, + 11.5821356 + ], + [ + 48.1230271, + 11.5820973 + ], + [ + 48.1234411, + 11.5818143 + ], + [ + 48.1234885, + 11.5817825 + ], + [ + 48.1235327, + 11.5817512 + ], + [ + 48.1235725, + 11.5817225 + ], + [ + 48.1236206, + 11.5816901 + ], + [ + 48.1236669, + 11.5816536 + ], + [ + 48.1237304, + 11.5816015 + ], + [ + 48.1240391, + 11.5813444 + ], + [ + 48.1240964, + 11.5812967 + ], + [ + 48.1242312, + 11.5811829 + ], + [ + 48.1243094, + 11.5811133 + ], + [ + 48.1243806, + 11.5810444 + ], + [ + 48.1243948, + 11.5810294 + ] + ] + }, + { + "osmId": "686462039", + "name": null, + "lengthMeters": 357.4651337105117, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1267427, + 11.5777107 + ], + [ + 48.126562, + 11.5779509 + ], + [ + 48.126429, + 11.5781353 + ], + [ + 48.1264165, + 11.5781527 + ], + [ + 48.1264096, + 11.5781626 + ], + [ + 48.1263527, + 11.5782411 + ], + [ + 48.1262247, + 11.5784186 + ], + [ + 48.1262115, + 11.5784369 + ], + [ + 48.1260593, + 11.5786502 + ], + [ + 48.1257196, + 11.5791075 + ], + [ + 48.1254433, + 11.5794853 + ], + [ + 48.1251638, + 11.5798762 + ], + [ + 48.1251382, + 11.5799143 + ], + [ + 48.1250929, + 11.5799913 + ], + [ + 48.1250172, + 11.5801191 + ], + [ + 48.1249712, + 11.5801949 + ], + [ + 48.1249196, + 11.5802781 + ], + [ + 48.1248716, + 11.5803485 + ], + [ + 48.1248208, + 11.5804229 + ], + [ + 48.1244658, + 11.5809049 + ], + [ + 48.1244166, + 11.5809608 + ], + [ + 48.1243907, + 11.5809893 + ] + ] + }, + { + "osmId": "686462040", + "name": null, + "lengthMeters": 83.79576911234986, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1276943, + 11.5764719 + ], + [ + 48.1277811, + 11.5763627 + ], + [ + 48.127871, + 11.5762455 + ], + [ + 48.1279547, + 11.5761332 + ], + [ + 48.1279701, + 11.5761125 + ], + [ + 48.1281971, + 11.5758089 + ], + [ + 48.1282596, + 11.5757254 + ] + ] + }, + { + "osmId": "686462041", + "name": null, + "lengthMeters": 83.93638573608672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1282425, + 11.5756933 + ], + [ + 48.1279507, + 11.5760862 + ], + [ + 48.1279378, + 11.5761034 + ], + [ + 48.1278548, + 11.5762139 + ], + [ + 48.1277647, + 11.5763315 + ], + [ + 48.1276779, + 11.5764439 + ] + ] + }, + { + "osmId": "688149980", + "name": null, + "lengthMeters": 163.743765451451, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257322, + 13.4421106 + ], + [ + 52.5257491, + 13.4421501 + ], + [ + 52.5257893, + 13.442276 + ], + [ + 52.5258233, + 13.4424284 + ], + [ + 52.5259138, + 13.4428211 + ], + [ + 52.5261149, + 13.4436752 + ], + [ + 52.5261405, + 13.4438153 + ], + [ + 52.5261456, + 13.4438861 + ], + [ + 52.526145, + 13.4439564 + ], + [ + 52.5261427, + 13.4440208 + ], + [ + 52.5261339, + 13.4440697 + ], + [ + 52.5261058, + 13.44418 + ], + [ + 52.5260674, + 13.4442736 + ], + [ + 52.5260294, + 13.4443465 + ] + ] + }, + { + "osmId": "688155130", + "name": null, + "lengthMeters": 78.93720097541261, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5329604, + 13.4428048 + ], + [ + 52.5324497, + 13.4419942 + ] + ] + }, + { + "osmId": "689350184", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 186.1914692539129, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4555321, + 13.5083866 + ], + [ + 52.4557808, + 13.5080019 + ], + [ + 52.4561475, + 13.5074412 + ], + [ + 52.4567524, + 13.506505 + ] + ] + }, + { + "osmId": "689350185", + "name": "Bahnstrecke Berlin\u2013G\u00f6rlitz", + "lengthMeters": 2759.763932383102, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4530741, + 13.5118914 + ], + [ + 52.4530095, + 13.5119915 + ], + [ + 52.452806, + 13.5123021 + ], + [ + 52.4515527, + 13.5142356 + ], + [ + 52.4515296, + 13.5142697 + ], + [ + 52.4511525, + 13.5148292 + ], + [ + 52.450896, + 13.5152254 + ], + [ + 52.4505719, + 13.5157665 + ], + [ + 52.4502453, + 13.5163866 + ], + [ + 52.450067, + 13.5167691 + ], + [ + 52.4499033, + 13.5171322 + ], + [ + 52.4498134, + 13.5173326 + ], + [ + 52.4496863, + 13.5176226 + ], + [ + 52.4495975, + 13.5178212 + ], + [ + 52.4493548, + 13.5183612 + ], + [ + 52.4491405, + 13.5188229 + ], + [ + 52.4487776, + 13.5196051 + ], + [ + 52.4483933, + 13.5204207 + ], + [ + 52.4480613, + 13.5211305 + ], + [ + 52.4476902, + 13.5219147 + ], + [ + 52.4474784, + 13.522332 + ], + [ + 52.4471516, + 13.5229166 + ], + [ + 52.4466203, + 13.5238207 + ], + [ + 52.4459153, + 13.5250155 + ], + [ + 52.4458609, + 13.525108 + ], + [ + 52.4456332, + 13.5254736 + ], + [ + 52.4453746, + 13.5258626 + ], + [ + 52.4452384, + 13.5260603 + ], + [ + 52.4448722, + 13.5266005 + ], + [ + 52.4443478, + 13.5273704 + ], + [ + 52.4442031, + 13.5275834 + ], + [ + 52.4438177, + 13.5281501 + ], + [ + 52.4433288, + 13.5288689 + ], + [ + 52.4428269, + 13.5296014 + ], + [ + 52.4426078, + 13.5299221 + ], + [ + 52.442464, + 13.5301326 + ], + [ + 52.4422346, + 13.5304689 + ], + [ + 52.4416896, + 13.531263 + ], + [ + 52.4415372, + 13.531485 + ], + [ + 52.4406918, + 13.5327348 + ], + [ + 52.4405317, + 13.532974 + ], + [ + 52.4402858, + 13.5333349 + ], + [ + 52.4401096, + 13.5335935 + ], + [ + 52.4396707, + 13.5342381 + ], + [ + 52.4393852, + 13.5346588 + ], + [ + 52.4386505, + 13.5357226 + ], + [ + 52.4383481, + 13.5361098 + ], + [ + 52.4381571, + 13.5363494 + ], + [ + 52.4376761, + 13.5369142 + ], + [ + 52.4374204, + 13.5372333 + ], + [ + 52.4372153, + 13.5374961 + ], + [ + 52.4369197, + 13.5379053 + ], + [ + 52.4367963, + 13.5380799 + ], + [ + 52.4367066, + 13.5382265 + ], + [ + 52.4365124, + 13.5385191 + ], + [ + 52.4363641, + 13.5387618 + ], + [ + 52.436216, + 13.5390042 + ], + [ + 52.4362008, + 13.539029 + ], + [ + 52.4359157, + 13.5394955 + ], + [ + 52.4353892, + 13.5402761 + ] + ] + }, + { + "osmId": "693946788", + "name": null, + "lengthMeters": 125.93092168021872, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4757832, + 9.9999344 + ], + [ + 53.4747003, + 9.9993773 + ] + ] + }, + { + "osmId": "697552386", + "name": null, + "lengthMeters": 275.0616097374343, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1495389, + 11.4630949 + ], + [ + 48.1491096, + 11.4644466 + ], + [ + 48.1489214, + 11.46497 + ], + [ + 48.1483986, + 11.4663833 + ] + ] + }, + { + "osmId": "699621663", + "name": "Tram 1926 - 1980", + "lengthMeters": 233.59226134250824, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1190526, + 11.6086885 + ], + [ + 48.1190844, + 11.6086418 + ], + [ + 48.1192941, + 11.6083408 + ], + [ + 48.1194904, + 11.6080423 + ], + [ + 48.1198262, + 11.6075347 + ], + [ + 48.1200724, + 11.6071596 + ], + [ + 48.1202927, + 11.6068278 + ], + [ + 48.120436, + 11.606615 + ], + [ + 48.1205431, + 11.6064716 + ] + ] + }, + { + "osmId": "699621665", + "name": "Tram 1926 - 1980", + "lengthMeters": 280.1526331205931, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1160881, + 11.6127716 + ], + [ + 48.1163138, + 11.6125173 + ], + [ + 48.116477, + 11.6123235 + ], + [ + 48.116728, + 11.6120142 + ], + [ + 48.1171686, + 11.6114155 + ], + [ + 48.1179897, + 11.6102992 + ] + ] + }, + { + "osmId": "699621667", + "name": "Tram 1926 - 1980", + "lengthMeters": 248.65424605263695, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1177667, + 11.6105332 + ], + [ + 48.1177056, + 11.6106166 + ], + [ + 48.117513, + 11.6108682 + ], + [ + 48.1172457, + 11.6112387 + ], + [ + 48.1169453, + 11.611658 + ], + [ + 48.1166822, + 11.6120034 + ], + [ + 48.1164366, + 11.6123072 + ], + [ + 48.1163108, + 11.6124488 + ], + [ + 48.1160749, + 11.6127202 + ] + ] + }, + { + "osmId": "699621669", + "name": "Tram 1926 - 1980", + "lengthMeters": 235.53684215979968, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1205361, + 11.6064319 + ], + [ + 48.1203054, + 11.6067449 + ], + [ + 48.1197522, + 11.6075699 + ], + [ + 48.1194175, + 11.6080766 + ], + [ + 48.1191043, + 11.6085532 + ], + [ + 48.1190312, + 11.6086641 + ] + ] + }, + { + "osmId": "700816922", + "name": "Vogelfluglinie", + "lengthMeters": 483.30766195406704, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5847528, + 10.1201554 + ], + [ + 53.584538, + 10.1198021 + ], + [ + 53.5837552, + 10.1184899 + ], + [ + 53.5829717, + 10.1171663 + ], + [ + 53.5824893, + 10.1163441 + ], + [ + 53.5821396, + 10.115748 + ], + [ + 53.5817821, + 10.1151388 + ], + [ + 53.5816837, + 10.1149711 + ] + ] + }, + { + "osmId": "700816923", + "name": "Vogelfluglinie", + "lengthMeters": 483.91136303628116, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5816586, + 10.1150128 + ], + [ + 53.5817575, + 10.1151818 + ], + [ + 53.5821156, + 10.1157937 + ], + [ + 53.5824644, + 10.1163895 + ], + [ + 53.582948, + 10.1172026 + ], + [ + 53.5835585, + 10.1182569 + ], + [ + 53.5837234, + 10.1185417 + ], + [ + 53.5845, + 10.119876 + ], + [ + 53.5847023, + 10.1202517 + ] + ] + }, + { + "osmId": "703053287", + "name": null, + "lengthMeters": 479.84395429086106, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5295868, + 13.2937099 + ], + [ + 52.5295422, + 13.2932635 + ], + [ + 52.5295081, + 13.2929014 + ], + [ + 52.5294975, + 13.2927713 + ], + [ + 52.5294677, + 13.2924096 + ], + [ + 52.5294376, + 13.2920116 + ], + [ + 52.5294157, + 13.2916617 + ], + [ + 52.5293881, + 13.2911742 + ], + [ + 52.5293658, + 13.2906589 + ], + [ + 52.5293447, + 13.2900441 + ], + [ + 52.5293357, + 13.2897489 + ], + [ + 52.5293246, + 13.2894108 + ], + [ + 52.5293114, + 13.28902 + ], + [ + 52.5292953, + 13.2885936 + ], + [ + 52.5292805, + 13.2883444 + ], + [ + 52.52927, + 13.2881817 + ], + [ + 52.5292577, + 13.2880257 + ], + [ + 52.5292393, + 13.2878382 + ], + [ + 52.5292185, + 13.2876648 + ], + [ + 52.5291825, + 13.2874051 + ], + [ + 52.5291533, + 13.2872301 + ], + [ + 52.529123, + 13.2870751 + ], + [ + 52.5290808, + 13.2868799 + ], + [ + 52.5290355, + 13.2866996 + ] + ] + }, + { + "osmId": "705181367", + "name": null, + "lengthMeters": 293.94302375897576, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5288116, + 13.5358768 + ], + [ + 52.5287892, + 13.5358832 + ], + [ + 52.528564, + 13.5359406 + ], + [ + 52.528308, + 13.5360108 + ], + [ + 52.5282904, + 13.5360156 + ], + [ + 52.5280527, + 13.5360907 + ], + [ + 52.5277538, + 13.5362004 + ], + [ + 52.5276954, + 13.5362218 + ], + [ + 52.5274639, + 13.5363067 + ], + [ + 52.5272112, + 13.5363993 + ], + [ + 52.5264147, + 13.5366914 + ], + [ + 52.5263954, + 13.5366985 + ], + [ + 52.5262305, + 13.5367588 + ], + [ + 52.5262242, + 13.5367611 + ] + ] + }, + { + "osmId": "705288682", + "name": null, + "lengthMeters": 418.4337588811479, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292448, + 13.3668667 + ], + [ + 52.528772, + 13.3675445 + ], + [ + 52.5284033, + 13.3679361 + ], + [ + 52.5276453, + 13.3686309 + ], + [ + 52.5267652, + 13.3693236 + ], + [ + 52.5259914, + 13.3699138 + ] + ] + }, + { + "osmId": "706240242", + "name": null, + "lengthMeters": 217.6003008725711, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354891, + 13.1892787 + ], + [ + 52.5354373, + 13.1902458 + ], + [ + 52.5353825, + 13.190956 + ], + [ + 52.5353461, + 13.1913922 + ], + [ + 52.5352864, + 13.1919273 + ], + [ + 52.5352082, + 13.1924581 + ] + ] + }, + { + "osmId": "707056911", + "name": "Siemensbahn", + "lengthMeters": 502.73849281665645, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5440915, + 13.2545148 + ], + [ + 52.5446299, + 13.2534958 + ], + [ + 52.5451183, + 13.2523734 + ], + [ + 52.54541, + 13.2518266 + ], + [ + 52.5458429, + 13.2510324 + ], + [ + 52.5462374, + 13.2503069 + ], + [ + 52.5470208, + 13.2488597 + ] + ] + }, + { + "osmId": "707063353", + "name": "Siemensbahn", + "lengthMeters": 151.31848660806418, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289221, + 13.2849138 + ], + [ + 52.5288987, + 13.2844413 + ], + [ + 52.5288622, + 13.2837517 + ], + [ + 52.528848, + 13.2833643 + ], + [ + 52.5288451, + 13.2830232 + ], + [ + 52.5288609, + 13.2826828 + ] + ] + }, + { + "osmId": "708473925", + "name": null, + "lengthMeters": 188.07041751025486, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5256609, + 13.5251905 + ], + [ + 52.5257945, + 13.5224192 + ] + ] + }, + { + "osmId": "710669972", + "name": null, + "lengthMeters": 607.1663453510122, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5992602, + 13.4523341 + ], + [ + 52.5993874, + 13.4524772 + ], + [ + 52.5995112, + 13.4526119 + ], + [ + 52.5997515, + 13.4528618 + ], + [ + 52.5998189, + 13.4529311 + ], + [ + 52.5998336, + 13.452947 + ], + [ + 52.5998802, + 13.4529975 + ], + [ + 52.6005943, + 13.4537717 + ], + [ + 52.601295, + 13.4545342 + ], + [ + 52.6013368, + 13.4545797 + ], + [ + 52.6020046, + 13.4553101 + ], + [ + 52.6024485, + 13.4557859 + ], + [ + 52.6025794, + 13.4559422 + ], + [ + 52.6027178, + 13.4561212 + ], + [ + 52.6028505, + 13.4563204 + ], + [ + 52.6029653, + 13.4565166 + ], + [ + 52.6030718, + 13.45672 + ], + [ + 52.6031746, + 13.4569377 + ], + [ + 52.6032737, + 13.4571864 + ], + [ + 52.6033807, + 13.457505 + ], + [ + 52.6034732, + 13.4578506 + ] + ] + }, + { + "osmId": "711114629", + "name": null, + "lengthMeters": 75.96170352799844, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5054031, + 13.4708608 + ], + [ + 52.5050412, + 13.470422 + ], + [ + 52.5048532, + 13.4701949 + ] + ] + }, + { + "osmId": "711134506", + "name": null, + "lengthMeters": 141.8246704012887, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1543327, + 11.5117119 + ], + [ + 48.1543431, + 11.5116798 + ], + [ + 48.1543588, + 11.5116412 + ], + [ + 48.1543684, + 11.5116197 + ], + [ + 48.1543962, + 11.5115699 + ], + [ + 48.1544156, + 11.5115388 + ], + [ + 48.1544214, + 11.5115311 + ], + [ + 48.1544353, + 11.5115093 + ], + [ + 48.1544599, + 11.5114801 + ], + [ + 48.1544963, + 11.5114442 + ], + [ + 48.1545514, + 11.5114103 + ], + [ + 48.1545977, + 11.5113995 + ], + [ + 48.1546548, + 11.5113962 + ], + [ + 48.1546942, + 11.5113965 + ], + [ + 48.1552972, + 11.5114005 + ], + [ + 48.1553234, + 11.5114033 + ], + [ + 48.1553447, + 11.5114093 + ], + [ + 48.1553626, + 11.5114174 + ], + [ + 48.1553794, + 11.5114288 + ], + [ + 48.1553844, + 11.5114332 + ], + [ + 48.1553945, + 11.5114422 + ], + [ + 48.1554065, + 11.5114543 + ], + [ + 48.1554147, + 11.5114643 + ], + [ + 48.1554313, + 11.5114863 + ], + [ + 48.1554485, + 11.5115098 + ], + [ + 48.1554572, + 11.5115224 + ], + [ + 48.1554667, + 11.5115369 + ], + [ + 48.1554838, + 11.5115642 + ] + ] + }, + { + "osmId": "713891631", + "name": null, + "lengthMeters": 89.94970857739467, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5125924, + 13.6152334 + ], + [ + 52.5126147, + 13.6154505 + ], + [ + 52.5126262, + 13.6156081 + ], + [ + 52.5126359, + 13.6157902 + ], + [ + 52.512645, + 13.6159519 + ], + [ + 52.5126598, + 13.6161647 + ], + [ + 52.512679, + 13.616369 + ], + [ + 52.5126992, + 13.6165502 + ] + ] + }, + { + "osmId": "713891632", + "name": null, + "lengthMeters": 89.28711000386734, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5124059, + 13.6139501 + ], + [ + 52.5124765, + 13.6144269 + ], + [ + 52.5124974, + 13.6145726 + ], + [ + 52.5125675, + 13.6150495 + ], + [ + 52.5125924, + 13.6152334 + ] + ] + }, + { + "osmId": "713891633", + "name": null, + "lengthMeters": 321.10646541938667, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5129565, + 13.6171486 + ], + [ + 52.5129359, + 13.6169488 + ], + [ + 52.512876, + 13.6164406 + ], + [ + 52.5127971, + 13.615932 + ], + [ + 52.5127135, + 13.6154193 + ], + [ + 52.5125452, + 13.6143962 + ], + [ + 52.5124551, + 13.6138278 + ], + [ + 52.5124095, + 13.6135193 + ], + [ + 52.51237, + 13.6132052 + ], + [ + 52.5123386, + 13.6129156 + ], + [ + 52.5123012, + 13.6125309 + ] + ] + }, + { + "osmId": "717853029", + "name": "Stettiner Bahn", + "lengthMeters": 350.76553355469053, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5621116, + 13.403539 + ], + [ + 52.5621152, + 13.4035452 + ], + [ + 52.5640054, + 13.406819 + ], + [ + 52.5642911, + 13.4072903 + ] + ] + }, + { + "osmId": "718471239", + "name": null, + "lengthMeters": 170.93517216119966, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4463002, + 13.5247685 + ], + [ + 52.4464528, + 13.5245326 + ], + [ + 52.4469464, + 13.5237621 + ], + [ + 52.4470876, + 13.5235399 + ], + [ + 52.4471563, + 13.52343 + ], + [ + 52.4472414, + 13.5232989 + ], + [ + 52.4474135, + 13.5230293 + ] + ] + }, + { + "osmId": "718471240", + "name": null, + "lengthMeters": 652.2205368567587, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4474135, + 13.5230293 + ], + [ + 52.4474572, + 13.5229557 + ], + [ + 52.4475355, + 13.522824 + ], + [ + 52.4476346, + 13.5226661 + ], + [ + 52.4484067, + 13.521435 + ], + [ + 52.448725, + 13.5209703 + ], + [ + 52.4488121, + 13.5208431 + ], + [ + 52.4491652, + 13.5203277 + ], + [ + 52.4495085, + 13.5197923 + ], + [ + 52.4498666, + 13.519258 + ], + [ + 52.449908, + 13.5191948 + ], + [ + 52.4505409, + 13.5181906 + ], + [ + 52.4507418, + 13.517841 + ], + [ + 52.4509416, + 13.5174806 + ], + [ + 52.4513043, + 13.5167689 + ], + [ + 52.4515668, + 13.51625 + ] + ] + }, + { + "osmId": "718471241", + "name": null, + "lengthMeters": 174.07774328971428, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4472949, + 13.522866 + ], + [ + 52.4469882, + 13.5233906 + ], + [ + 52.446382, + 13.5244274 + ], + [ + 52.4463261, + 13.5245197 + ], + [ + 52.446211, + 13.5247193 + ] + ] + }, + { + "osmId": "718471242", + "name": null, + "lengthMeters": 653.0118759357066, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4510455, + 13.5154589 + ], + [ + 52.4510296, + 13.5154881 + ], + [ + 52.4503738, + 13.5166944 + ], + [ + 52.4496989, + 13.5179517 + ], + [ + 52.4491851, + 13.5189698 + ], + [ + 52.4490892, + 13.5191749 + ], + [ + 52.4489327, + 13.5195153 + ], + [ + 52.4487034, + 13.5199969 + ], + [ + 52.4486936, + 13.520018 + ], + [ + 52.4481576, + 13.5211649 + ], + [ + 52.4480325, + 13.5214339 + ], + [ + 52.44797, + 13.5215683 + ], + [ + 52.4478649, + 13.5217943 + ], + [ + 52.4475481, + 13.522429 + ], + [ + 52.4472949, + 13.522866 + ] + ] + }, + { + "osmId": "719295150", + "name": null, + "lengthMeters": 127.72303571710643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4305654, + 13.7495902 + ], + [ + 52.4307391, + 13.7492622 + ], + [ + 52.4308143, + 13.7491085 + ], + [ + 52.4309047, + 13.7488911 + ], + [ + 52.4311524, + 13.7482191 + ], + [ + 52.4312169, + 13.7480447 + ] + ] + }, + { + "osmId": "719295151", + "name": null, + "lengthMeters": 396.28884593752196, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4329462, + 13.7401293 + ], + [ + 52.4329098, + 13.7404793 + ], + [ + 52.4328729, + 13.7408071 + ], + [ + 52.4327884, + 13.741557 + ], + [ + 52.4327755, + 13.7416713 + ], + [ + 52.4326946, + 13.7423674 + ], + [ + 52.4326214, + 13.7429403 + ], + [ + 52.4325457, + 13.7434095 + ], + [ + 52.4324743, + 13.7438039 + ], + [ + 52.4323848, + 13.7442379 + ], + [ + 52.4322854, + 13.744669 + ], + [ + 52.4321731, + 13.7451092 + ], + [ + 52.4319892, + 13.7457311 + ] + ] + }, + { + "osmId": "719295152", + "name": null, + "lengthMeters": 1337.1037826928896, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4572266, + 13.6258566 + ], + [ + 52.457176, + 13.6276303 + ], + [ + 52.457118, + 13.6292834 + ], + [ + 52.4569474, + 13.633715 + ], + [ + 52.4568665, + 13.6358639 + ], + [ + 52.4568426, + 13.6362623 + ], + [ + 52.4567511, + 13.637786 + ], + [ + 52.4566454, + 13.6392967 + ], + [ + 52.456529, + 13.6408021 + ], + [ + 52.4564073, + 13.6421786 + ], + [ + 52.4562736, + 13.6435481 + ], + [ + 52.4562407, + 13.6438519 + ], + [ + 52.4560695, + 13.6454806 + ] + ] + }, + { + "osmId": "719295153", + "name": null, + "lengthMeters": 1340.9678007490993, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.456108, + 13.6455021 + ], + [ + 52.4561091, + 13.6454913 + ], + [ + 52.4562754, + 13.6438645 + ], + [ + 52.4563103, + 13.6435226 + ], + [ + 52.4564446, + 13.6421546 + ], + [ + 52.456567, + 13.6407744 + ], + [ + 52.4567983, + 13.637755 + ], + [ + 52.4569108, + 13.6362703 + ], + [ + 52.4569773, + 13.635313 + ], + [ + 52.4570661, + 13.6338983 + ], + [ + 52.4571449, + 13.6324458 + ], + [ + 52.4572135, + 13.6309619 + ], + [ + 52.4572708, + 13.6294325 + ], + [ + 52.4572744, + 13.6293157 + ], + [ + 52.457325, + 13.6276965 + ], + [ + 52.45738, + 13.6258375 + ] + ] + }, + { + "osmId": "719295155", + "name": null, + "lengthMeters": 391.7698862061716, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4575088, + 13.6176017 + ], + [ + 52.4575649, + 13.6155382 + ], + [ + 52.4576341, + 13.6125032 + ], + [ + 52.4576346, + 13.6124796 + ], + [ + 52.4576492, + 13.6118243 + ] + ] + }, + { + "osmId": "719295156", + "name": null, + "lengthMeters": 481.3754154247545, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4578018, + 13.604524 + ], + [ + 52.4578016, + 13.6045323 + ], + [ + 52.4578013, + 13.6045443 + ], + [ + 52.4577722, + 13.6054741 + ], + [ + 52.4577426, + 13.606518 + ], + [ + 52.4577235, + 13.6071391 + ], + [ + 52.4576163, + 13.6116219 + ] + ] + }, + { + "osmId": "719295164", + "name": null, + "lengthMeters": 163.34191816164284, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4914269, + 13.5047936 + ], + [ + 52.4915605, + 13.5042691 + ], + [ + 52.4916823, + 13.5037316 + ], + [ + 52.4918877, + 13.5027586 + ], + [ + 52.4919354, + 13.502531 + ] + ] + }, + { + "osmId": "719295165", + "name": null, + "lengthMeters": 125.79066222452366, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4932916, + 13.4984804 + ], + [ + 52.4932603, + 13.4985371 + ], + [ + 52.4931743, + 13.4986927 + ], + [ + 52.492967, + 13.4990501 + ], + [ + 52.4928124, + 13.4993605 + ], + [ + 52.4926674, + 13.499685 + ], + [ + 52.4925811, + 13.499906 + ], + [ + 52.4925775, + 13.499916 + ] + ] + }, + { + "osmId": "719295167", + "name": null, + "lengthMeters": 126.76719163288352, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.495051, + 13.4949665 + ], + [ + 52.4950374, + 13.4950055 + ], + [ + 52.4950256, + 13.4950391 + ], + [ + 52.494749, + 13.4958308 + ], + [ + 52.494619, + 13.4961454 + ], + [ + 52.4945123, + 13.4963893 + ], + [ + 52.4944412, + 13.496546 + ] + ] + }, + { + "osmId": "719295168", + "name": null, + "lengthMeters": 109.3373995303265, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5007367, + 13.4800018 + ], + [ + 52.5007351, + 13.480007 + ], + [ + 52.5007339, + 13.4800114 + ], + [ + 52.5003127, + 13.4813067 + ], + [ + 52.5002725, + 13.4814257 + ] + ] + }, + { + "osmId": "719344618", + "name": "Berliner Ringbahn", + "lengthMeters": 377.0479337953889, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165812, + 13.4739978 + ], + [ + 52.5165859, + 13.4739951 + ], + [ + 52.5179497, + 13.4732268 + ], + [ + 52.5187531, + 13.4727835 + ], + [ + 52.5191211, + 13.4725652 + ], + [ + 52.5194869, + 13.4723378 + ], + [ + 52.5197741, + 13.4721277 + ] + ] + }, + { + "osmId": "721927888", + "name": null, + "lengthMeters": 449.8823346969292, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4616548, + 13.3585322 + ], + [ + 52.4619713, + 13.3587029 + ], + [ + 52.4654985, + 13.3606052 + ] + ] + }, + { + "osmId": "722153503", + "name": null, + "lengthMeters": 185.48399595394832, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4593628, + 13.3582838 + ], + [ + 52.4594298, + 13.3583096 + ], + [ + 52.4597348, + 13.3584336 + ], + [ + 52.4600805, + 13.3585632 + ], + [ + 52.4603019, + 13.3586543 + ], + [ + 52.4603654, + 13.3586787 + ], + [ + 52.46045, + 13.3587151 + ], + [ + 52.4604762, + 13.3587325 + ], + [ + 52.4608714, + 13.359145 + ], + [ + 52.4609151, + 13.3591568 + ], + [ + 52.4609219, + 13.3591655 + ] + ] + }, + { + "osmId": "722214970", + "name": null, + "lengthMeters": 115.76133536673458, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4904541, + 13.4592381 + ], + [ + 52.4902994, + 13.4591445 + ], + [ + 52.490158, + 13.4590688 + ], + [ + 52.4900064, + 13.4590011 + ], + [ + 52.4898794, + 13.4589506 + ], + [ + 52.48974, + 13.4589098 + ], + [ + 52.489596, + 13.4588756 + ], + [ + 52.4894442, + 13.4588498 + ] + ] + }, + { + "osmId": "724073382", + "name": null, + "lengthMeters": 177.1584077789555, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3898428, + 13.5870766 + ], + [ + 52.3899553, + 13.5876083 + ], + [ + 52.3903708, + 13.5895397 + ] + ] + }, + { + "osmId": "724073383", + "name": null, + "lengthMeters": 258.8454579213345, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3653961, + 13.5148039 + ], + [ + 52.3654017, + 13.5148246 + ], + [ + 52.3659444, + 13.5168423 + ], + [ + 52.3663096, + 13.51831 + ] + ] + }, + { + "osmId": "724073384", + "name": null, + "lengthMeters": 256.55030342837523, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3663482, + 13.5182939 + ], + [ + 52.3659992, + 13.5168143 + ], + [ + 52.3655896, + 13.5147271 + ] + ] + }, + { + "osmId": "724073385", + "name": null, + "lengthMeters": 236.42607783325948, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.361358, + 13.4977144 + ], + [ + 52.3621246, + 13.500962 + ] + ] + }, + { + "osmId": "724073386", + "name": null, + "lengthMeters": 313.5316646896201, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3614449, + 13.4976551 + ], + [ + 52.3606654, + 13.4943808 + ], + [ + 52.3604208, + 13.4933532 + ] + ] + }, + { + "osmId": "724167912", + "name": null, + "lengthMeters": 174.1230995771238, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4017449, + 13.5900073 + ], + [ + 52.4022325, + 13.5892726 + ], + [ + 52.4024008, + 13.5890189 + ], + [ + 52.4025674, + 13.5887678 + ], + [ + 52.4028979, + 13.5882706 + ] + ] + }, + { + "osmId": "724167913", + "name": null, + "lengthMeters": 192.42291153066049, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4029578, + 13.5880906 + ], + [ + 52.4025448, + 13.5887185 + ], + [ + 52.4023852, + 13.5889611 + ], + [ + 52.4022082, + 13.5892228 + ], + [ + 52.4016802, + 13.5900036 + ] + ] + }, + { + "osmId": "724229920", + "name": null, + "lengthMeters": 271.6980296182212, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3639019, + 13.5062091 + ], + [ + 52.3637535, + 13.505693 + ], + [ + 52.363426, + 13.5045546 + ], + [ + 52.3629495, + 13.5028978 + ], + [ + 52.3628607, + 13.5025892 + ] + ] + }, + { + "osmId": "724229921", + "name": null, + "lengthMeters": 761.1162668872912, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3603064, + 13.4922015 + ], + [ + 52.3604956, + 13.4933 + ], + [ + 52.3620951, + 13.4998468 + ], + [ + 52.3621246, + 13.4999678 + ], + [ + 52.3624505, + 13.5013164 + ], + [ + 52.3625251, + 13.5016249 + ], + [ + 52.3626893, + 13.5023047 + ], + [ + 52.3627766, + 13.5026415 + ], + [ + 52.3627782, + 13.5026476 + ] + ] + }, + { + "osmId": "724229922", + "name": null, + "lengthMeters": 758.9424530237508, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3628607, + 13.5025892 + ], + [ + 52.3628595, + 13.502585 + ], + [ + 52.3627613, + 13.5022261 + ], + [ + 52.3625562, + 13.5014167 + ], + [ + 52.362521, + 13.5012743 + ], + [ + 52.3618106, + 13.4984016 + ], + [ + 52.3605619, + 13.4932636 + ], + [ + 52.3603732, + 13.4921875 + ] + ] + }, + { + "osmId": "725772908", + "name": null, + "lengthMeters": 196.36469980215492, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.2107745, + 11.6714761 + ], + [ + 48.2111272, + 11.6718586 + ], + [ + 48.2118929, + 11.6727637 + ], + [ + 48.2119555, + 11.6728601 + ], + [ + 48.2119966, + 11.6729356 + ], + [ + 48.2120115, + 11.6729611 + ], + [ + 48.2120683, + 11.6730675 + ], + [ + 48.2121267, + 11.6731662 + ] + ] + }, + { + "osmId": "730112351", + "name": "U9", + "lengthMeters": 139.62289066027995, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5347629, + 13.3415944 + ], + [ + 52.5353317, + 13.3418776 + ], + [ + 52.5359568, + 13.3422326 + ] + ] + }, + { + "osmId": "737159638", + "name": null, + "lengthMeters": 272.17960969982886, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3627782, + 13.5026476 + ], + [ + 52.3628612, + 13.5029664 + ], + [ + 52.3637382, + 13.5063349 + ] + ] + }, + { + "osmId": "739860375", + "name": null, + "lengthMeters": 179.09125403059446, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210357, + 13.3720269 + ], + [ + 52.5208935, + 13.3721074 + ], + [ + 52.5204973, + 13.3723211 + ], + [ + 52.5204272, + 13.3723605 + ], + [ + 52.5199924, + 13.3725825 + ], + [ + 52.5195603, + 13.3727903 + ], + [ + 52.519499, + 13.3728182 + ] + ] + }, + { + "osmId": "739860382", + "name": null, + "lengthMeters": 110.74354386844169, + "maxSpeedKph": 60.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5288441, + 13.3663621 + ], + [ + 52.5286176, + 13.3665587 + ], + [ + 52.5282952, + 13.3668409 + ], + [ + 52.5281333, + 13.3669737 + ], + [ + 52.5279567, + 13.3671041 + ] + ] + }, + { + "osmId": "739860383", + "name": null, + "lengthMeters": 99.24106344567538, + "maxSpeedKph": 60.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289001, + 13.3666067 + ], + [ + 52.5281474, + 13.367395 + ] + ] + }, + { + "osmId": "744828052", + "name": null, + "lengthMeters": 307.5318620290688, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4932071, + 13.2944743 + ], + [ + 52.4933766, + 13.2942854 + ], + [ + 52.4935993, + 13.2940071 + ], + [ + 52.4939755, + 13.2935038 + ], + [ + 52.4941427, + 13.2932739 + ], + [ + 52.4944217, + 13.2928458 + ], + [ + 52.4947821, + 13.2923357 + ], + [ + 52.495338, + 13.2915836 + ] + ] + }, + { + "osmId": "751306837", + "name": null, + "lengthMeters": 110.30051990133137, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4617694, + 13.3586505 + ], + [ + 52.4619468, + 13.3587504 + ], + [ + 52.4627077, + 13.3591787 + ] + ] + }, + { + "osmId": "751306838", + "name": null, + "lengthMeters": 92.6350753143737, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4619161, + 13.3588165 + ], + [ + 52.462704, + 13.3592607 + ] + ] + }, + { + "osmId": "751713444", + "name": null, + "lengthMeters": 131.61159749997617, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4697747, + 13.3624781 + ], + [ + 52.4686446, + 13.3619005 + ] + ] + }, + { + "osmId": "751713445", + "name": null, + "lengthMeters": 244.2072262191339, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.468974, + 13.3619863 + ], + [ + 52.4680762, + 13.3615052 + ], + [ + 52.4673648, + 13.361143 + ], + [ + 52.4668784, + 13.3609085 + ] + ] + }, + { + "osmId": "751713446", + "name": null, + "lengthMeters": 95.41890825998053, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4689403, + 13.3621146 + ], + [ + 52.468394, + 13.361853 + ], + [ + 52.4681165, + 13.3617202 + ] + ] + }, + { + "osmId": "751713447", + "name": null, + "lengthMeters": 88.86336425253619, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.467832, + 13.3616711 + ], + [ + 52.4670608, + 13.3613271 + ] + ] + }, + { + "osmId": "751713448", + "name": null, + "lengthMeters": 88.86336527988729, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4678246, + 13.3617197 + ], + [ + 52.4670534, + 13.3613757 + ] + ] + }, + { + "osmId": "751713450", + "name": null, + "lengthMeters": 90.97736490467005, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.466156, + 13.3605382 + ], + [ + 52.465377, + 13.3601276 + ] + ] + }, + { + "osmId": "751713451", + "name": null, + "lengthMeters": 140.55145845556228, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4661192, + 13.3605838 + ], + [ + 52.4649163, + 13.3599465 + ] + ] + }, + { + "osmId": "751713452", + "name": null, + "lengthMeters": 90.63885884273716, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4661116, + 13.3606382 + ], + [ + 52.4653349, + 13.3602322 + ] + ] + }, + { + "osmId": "751713453", + "name": null, + "lengthMeters": 90.51907011560914, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4660976, + 13.3607072 + ], + [ + 52.4653242, + 13.3602902 + ] + ] + }, + { + "osmId": "751713454", + "name": null, + "lengthMeters": 228.981656803073, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4646688, + 13.3602099 + ], + [ + 52.4627077, + 13.3591787 + ] + ] + }, + { + "osmId": "751713455", + "name": null, + "lengthMeters": 309.97015479206743, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.465358, + 13.3606602 + ], + [ + 52.4650974, + 13.3605169 + ], + [ + 52.462704, + 13.3592607 + ] + ] + }, + { + "osmId": "751713456", + "name": null, + "lengthMeters": 399.26828948679815, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4658134, + 13.3608588 + ], + [ + 52.4655518, + 13.3607454 + ], + [ + 52.46548, + 13.3607143 + ], + [ + 52.465358, + 13.3606602 + ], + [ + 52.4650551, + 13.3605259 + ], + [ + 52.46238, + 13.359137 + ] + ] + }, + { + "osmId": "751713457", + "name": null, + "lengthMeters": 334.19205349080414, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4655518, + 13.3607454 + ], + [ + 52.4652751, + 13.3606788 + ], + [ + 52.4649517, + 13.360543 + ], + [ + 52.4626722, + 13.3593532 + ] + ] + }, + { + "osmId": "751713458", + "name": null, + "lengthMeters": 256.64583913901504, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.464868, + 13.3605564 + ], + [ + 52.4626632, + 13.3594359 + ] + ] + }, + { + "osmId": "751713459", + "name": null, + "lengthMeters": 252.5812049645326, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4648227, + 13.3605857 + ], + [ + 52.46265, + 13.359498 + ] + ] + }, + { + "osmId": "751713460", + "name": null, + "lengthMeters": 242.54442030691843, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4647258, + 13.36059 + ], + [ + 52.4626375, + 13.359556 + ] + ] + }, + { + "osmId": "751713461", + "name": null, + "lengthMeters": 217.60002472721317, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.464451, + 13.3605186 + ], + [ + 52.4625797, + 13.3595789 + ] + ] + }, + { + "osmId": "751713462", + "name": null, + "lengthMeters": 749.7962152844538, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4696855, + 13.3620148 + ], + [ + 52.4633139, + 13.3583918 + ] + ] + }, + { + "osmId": "751713463", + "name": null, + "lengthMeters": 90.63955705354465, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4624321, + 13.3584135 + ], + [ + 52.46211, + 13.3582452 + ], + [ + 52.4618009, + 13.3580836 + ], + [ + 52.4616554, + 13.3580075 + ] + ] + }, + { + "osmId": "751713464", + "name": null, + "lengthMeters": 90.65033055816814, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4614885, + 13.3583318 + ], + [ + 52.4607117, + 13.3579258 + ] + ] + }, + { + "osmId": "751714919", + "name": null, + "lengthMeters": 257.4037289913433, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4624567, + 13.3599153 + ], + [ + 52.4619517, + 13.3596836 + ], + [ + 52.4618162, + 13.3595921 + ], + [ + 52.4617451, + 13.3595441 + ], + [ + 52.4611355, + 13.3590498 + ], + [ + 52.460708, + 13.3586983 + ], + [ + 52.4603449, + 13.3583892 + ] + ] + }, + { + "osmId": "754050700", + "name": null, + "lengthMeters": 1340.594884007497, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6255944, + 10.1381329 + ], + [ + 53.6240343, + 10.1362857 + ], + [ + 53.6224223, + 10.1344038 + ], + [ + 53.6218173, + 10.1336899 + ], + [ + 53.6206542, + 10.132347 + ], + [ + 53.618972, + 10.1303851 + ], + [ + 53.618467, + 10.1297935 + ], + [ + 53.6177333, + 10.1289388 + ], + [ + 53.6172778, + 10.1284039 + ], + [ + 53.6170689, + 10.1281493 + ], + [ + 53.6168717, + 10.1278958 + ], + [ + 53.6165867, + 10.1275095 + ], + [ + 53.6157852, + 10.1263342 + ] + ] + }, + { + "osmId": "754050701", + "name": null, + "lengthMeters": 1249.5131884640796, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6163491, + 10.1273788 + ], + [ + 53.6166634, + 10.1277477 + ], + [ + 53.6168364, + 10.1279876 + ], + [ + 53.6171057, + 10.1283719 + ], + [ + 53.6172915, + 10.1286227 + ], + [ + 53.6176834, + 10.1290906 + ], + [ + 53.6184092, + 10.1299383 + ], + [ + 53.6194438, + 10.1310508 + ], + [ + 53.6206142, + 10.1324111 + ], + [ + 53.6209744, + 10.1328375 + ], + [ + 53.62177, + 10.1337771 + ], + [ + 53.6225048, + 10.134627 + ], + [ + 53.6240352, + 10.1364165 + ], + [ + 53.6255656, + 10.1382062 + ] + ] + }, + { + "osmId": "756243326", + "name": null, + "lengthMeters": 200.34685307219314, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5157745, + 13.2536781 + ], + [ + 52.5147226, + 13.2540377 + ], + [ + 52.5140103, + 13.2542795 + ] + ] + }, + { + "osmId": "756243328", + "name": null, + "lengthMeters": 1071.585815365764, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5160873, + 13.2536277 + ], + [ + 52.5162945, + 13.2535611 + ], + [ + 52.5167545, + 13.2534083 + ], + [ + 52.5172707, + 13.253237 + ], + [ + 52.5183732, + 13.2528458 + ], + [ + 52.518769, + 13.2526957 + ], + [ + 52.5191052, + 13.2525496 + ], + [ + 52.5194565, + 13.252376 + ], + [ + 52.5197102, + 13.2522359 + ], + [ + 52.5198906, + 13.2521238 + ], + [ + 52.5200276, + 13.2520347 + ], + [ + 52.5200895, + 13.2519922 + ], + [ + 52.5202885, + 13.2518553 + ], + [ + 52.5206226, + 13.2516003 + ], + [ + 52.5210099, + 13.2512657 + ], + [ + 52.5212554, + 13.2510393 + ], + [ + 52.5216427, + 13.2506202 + ], + [ + 52.5219022, + 13.2503292 + ], + [ + 52.5220862, + 13.2501085 + ], + [ + 52.5220945, + 13.2500974 + ], + [ + 52.5224659, + 13.249607 + ], + [ + 52.5227679, + 13.2491708 + ], + [ + 52.5229162, + 13.2489494 + ], + [ + 52.5230595, + 13.2487181 + ], + [ + 52.5231997, + 13.248495 + ], + [ + 52.5238148, + 13.2475158 + ], + [ + 52.5243896, + 13.2465979 + ], + [ + 52.5244285, + 13.2465358 + ] + ] + }, + { + "osmId": "756366259", + "name": null, + "lengthMeters": 84.44108722299423, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409437, + 11.4885564 + ], + [ + 48.1409483, + 11.4884923 + ], + [ + 48.1409485, + 11.4884582 + ], + [ + 48.1409444, + 11.4884072 + ], + [ + 48.140928, + 11.4883499 + ], + [ + 48.1409062, + 11.4883067 + ], + [ + 48.1408706, + 11.4882655 + ], + [ + 48.1408217, + 11.4882413 + ], + [ + 48.1407787, + 11.4882406 + ], + [ + 48.1407609, + 11.4882403 + ], + [ + 48.1407322, + 11.4882495 + ], + [ + 48.1407099, + 11.4882599 + ], + [ + 48.1406863, + 11.4882741 + ], + [ + 48.1406591, + 11.4883002 + ], + [ + 48.1406379, + 11.4883264 + ], + [ + 48.1406359, + 11.4883298 + ], + [ + 48.1406209, + 11.488355 + ], + [ + 48.1406063, + 11.4883862 + ], + [ + 48.1405933, + 11.4884211 + ], + [ + 48.1405536, + 11.4886391 + ], + [ + 48.1405384, + 11.4887229 + ] + ] + }, + { + "osmId": "756366260", + "name": null, + "lengthMeters": 619.7477868600782, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1416452, + 11.4814286 + ], + [ + 48.1416336, + 11.4815858 + ], + [ + 48.1416249, + 11.4817277 + ], + [ + 48.1416146, + 11.4818968 + ], + [ + 48.1416012, + 11.4821809 + ], + [ + 48.1415906, + 11.4824435 + ], + [ + 48.141539, + 11.4843101 + ], + [ + 48.1415296, + 11.4845547 + ], + [ + 48.1415147, + 11.4848008 + ], + [ + 48.1414982, + 11.4850474 + ], + [ + 48.1414709, + 11.4852911 + ], + [ + 48.1414056, + 11.48577 + ], + [ + 48.1413477, + 11.4861556 + ], + [ + 48.1411724, + 11.4871575 + ], + [ + 48.1410154, + 11.4880191 + ], + [ + 48.1409852, + 11.4881855 + ], + [ + 48.1409588, + 11.4883289 + ], + [ + 48.1409444, + 11.4884072 + ], + [ + 48.1409373, + 11.4884536 + ], + [ + 48.1408471, + 11.4889418 + ], + [ + 48.1408053, + 11.4891705 + ], + [ + 48.1407964, + 11.4892174 + ], + [ + 48.1407645, + 11.4893894 + ], + [ + 48.1407217, + 11.4896257 + ] + ] + }, + { + "osmId": "757341154", + "name": null, + "lengthMeters": 350.4934113512624, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1351491, + 11.6211186 + ], + [ + 48.1351014, + 11.6207365 + ], + [ + 48.1350358, + 11.6203229 + ], + [ + 48.1349316, + 11.6197187 + ], + [ + 48.1348042, + 11.618955 + ], + [ + 48.134669, + 11.6181161 + ], + [ + 48.1346484, + 11.617988 + ], + [ + 48.1344046, + 11.6165299 + ] + ] + }, + { + "osmId": "757341155", + "name": null, + "lengthMeters": 440.58321442667346, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1341151, + 11.6153909 + ], + [ + 48.1342002, + 11.615739 + ], + [ + 48.1342583, + 11.6159969 + ], + [ + 48.1343176, + 11.6162905 + ], + [ + 48.1343563, + 11.6165045 + ], + [ + 48.134408, + 11.6168147 + ], + [ + 48.1344681, + 11.6171877 + ], + [ + 48.134616, + 11.6180955 + ], + [ + 48.1346224, + 11.6181336 + ], + [ + 48.1348922, + 11.6197322 + ], + [ + 48.135036, + 11.6205814 + ], + [ + 48.135061, + 11.6207496 + ], + [ + 48.1351138, + 11.6211326 + ] + ] + }, + { + "osmId": "759077641", + "name": "Moorrandtrasse Ost", + "lengthMeters": 751.8738854414565, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7389434, + 9.8633403 + ], + [ + 53.7389616, + 9.8632804 + ], + [ + 53.7389785, + 9.8632245 + ], + [ + 53.7389606, + 9.8631405 + ], + [ + 53.7363633, + 9.8563864 + ], + [ + 53.7354243, + 9.8539446 + ], + [ + 53.7353843, + 9.8538839 + ], + [ + 53.7353456, + 9.8538606 + ], + [ + 53.7352965, + 9.8538516 + ] + ] + }, + { + "osmId": "759077642", + "name": "Mitteldamm", + "lengthMeters": 131.11140291988966, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7345505, + 9.8547953 + ], + [ + 53.7345612, + 9.8546991 + ], + [ + 53.7345904, + 9.8546047 + ], + [ + 53.7351995, + 9.8539623 + ], + [ + 53.7352965, + 9.8538516 + ], + [ + 53.735388, + 9.8537484 + ], + [ + 53.7354822, + 9.8536421 + ] + ] + }, + { + "osmId": "759077644", + "name": "Moorrandtrasse West", + "lengthMeters": 692.2049254154362, + "maxSpeedKph": 7.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7319803, + 9.8451239 + ], + [ + 53.7328805, + 9.8473684 + ], + [ + 53.7335651, + 9.8490755 + ], + [ + 53.7343553, + 9.8511355 + ], + [ + 53.7347471, + 9.8521976 + ], + [ + 53.7349605, + 9.8527274 + ], + [ + 53.7351283, + 9.8531433 + ], + [ + 53.7351747, + 9.8532584 + ], + [ + 53.7352629, + 9.8535294 + ], + [ + 53.7352566, + 9.8536849 + ], + [ + 53.7351995, + 9.8539623 + ] + ] + }, + { + "osmId": "762504568", + "name": null, + "lengthMeters": 83.98800627363019, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2484203, + 11.445813 + ], + [ + 48.2476721, + 11.4459684 + ] + ] + }, + { + "osmId": "762504578", + "name": null, + "lengthMeters": 90.3060520722004, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411875, + 11.554495 + ], + [ + 48.1412003, + 11.5540914 + ], + [ + 48.1411982, + 11.5532784 + ] + ] + }, + { + "osmId": "764851281", + "name": null, + "lengthMeters": 281.1109805264542, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4928447, + 9.9459249 + ], + [ + 53.4930316, + 9.9462278 + ], + [ + 53.4931842, + 9.946504 + ], + [ + 53.4932775, + 9.9466831 + ], + [ + 53.4933701, + 9.946871 + ], + [ + 53.4934756, + 9.9471005 + ], + [ + 53.493571, + 9.9473269 + ], + [ + 53.4937162, + 9.9476834 + ], + [ + 53.4938452, + 9.9480398 + ], + [ + 53.493967, + 9.9484145 + ], + [ + 53.4940289, + 9.9486201 + ], + [ + 53.4940868, + 9.9488297 + ], + [ + 53.4941935, + 9.9492164 + ], + [ + 53.4942511, + 9.9494169 + ] + ] + }, + { + "osmId": "764851286", + "name": null, + "lengthMeters": 282.6159130175948, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4942808, + 9.949394 + ], + [ + 53.494227, + 9.9491948 + ], + [ + 53.4941207, + 9.948801 + ], + [ + 53.4940652, + 9.9485953 + ], + [ + 53.4940021, + 9.9483894 + ], + [ + 53.4938863, + 9.9480241 + ], + [ + 53.4937481, + 9.9476427 + ], + [ + 53.4935943, + 9.9472606 + ], + [ + 53.4934675, + 9.9469665 + ], + [ + 53.4933266, + 9.9466934 + ], + [ + 53.4932374, + 9.9465359 + ], + [ + 53.4931401, + 9.9463776 + ], + [ + 53.4929951, + 9.9461601 + ], + [ + 53.4928447, + 9.9459249 + ] + ] + }, + { + "osmId": "764851289", + "name": null, + "lengthMeters": 194.98936262833232, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4914044, + 9.944258 + ], + [ + 53.4916906, + 9.9445705 + ], + [ + 53.4919642, + 9.9448301 + ], + [ + 53.4921051, + 9.9449576 + ], + [ + 53.4922536, + 9.9451231 + ], + [ + 53.4924452, + 9.9453668 + ], + [ + 53.4925668, + 9.9455299 + ], + [ + 53.4927013, + 9.9457102 + ], + [ + 53.4928447, + 9.9459249 + ] + ] + }, + { + "osmId": "772560854", + "name": null, + "lengthMeters": 145.29236722644225, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4532066, + 13.5124392 + ], + [ + 52.4532287, + 13.5124053 + ], + [ + 52.4535802, + 13.5118487 + ], + [ + 52.4538542, + 13.511436 + ], + [ + 52.4538626, + 13.5114222 + ], + [ + 52.454156, + 13.5109662 + ] + ] + }, + { + "osmId": "772560855", + "name": null, + "lengthMeters": 106.0701619775864, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4515668, + 13.51625 + ], + [ + 52.452174, + 13.5150428 + ] + ] + }, + { + "osmId": "772751755", + "name": null, + "lengthMeters": 98.35532921808363, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495291, + 13.401891 + ], + [ + 52.5494634, + 13.4023405 + ], + [ + 52.549442, + 13.4026243 + ], + [ + 52.5494303, + 13.4029209 + ], + [ + 52.5494404, + 13.4033297 + ] + ] + }, + { + "osmId": "772751756", + "name": null, + "lengthMeters": 190.37972216363832, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5522935, + 13.3983203 + ], + [ + 52.5520091, + 13.3983927 + ], + [ + 52.5515721, + 13.3985882 + ], + [ + 52.5513331, + 13.3987126 + ], + [ + 52.5511058, + 13.3988621 + ], + [ + 52.5507508, + 13.3991696 + ], + [ + 52.5506871, + 13.3992339 + ] + ] + }, + { + "osmId": "773576651", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 2350.994387074445, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.090743, + 11.3976269 + ], + [ + 48.08765, + 11.3937458 + ], + [ + 48.0855037, + 11.3910518 + ], + [ + 48.0833501, + 11.3883666 + ], + [ + 48.0825601, + 11.387368 + ], + [ + 48.0819786, + 11.3866701 + ], + [ + 48.0816496, + 11.3862958 + ], + [ + 48.0811899, + 11.3858087 + ], + [ + 48.0805861, + 11.3852122 + ], + [ + 48.0783635, + 11.3831277 + ], + [ + 48.0773836, + 11.3822078 + ], + [ + 48.0763995, + 11.3812914 + ], + [ + 48.0754446, + 11.380394 + ], + [ + 48.0747395, + 11.3797449 + ], + [ + 48.0741171, + 11.3791522 + ], + [ + 48.0737836, + 11.3788422 + ] + ] + }, + { + "osmId": "776821032", + "name": null, + "lengthMeters": 75.01982323378404, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5041211, + 13.3023985 + ], + [ + 52.5042474, + 13.3029684 + ], + [ + 52.504256, + 13.3030072 + ], + [ + 52.5043519, + 13.30344 + ] + ] + }, + { + "osmId": "777688873", + "name": null, + "lengthMeters": 132.93844276634155, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5418538, + 13.3791698 + ], + [ + 52.5418475, + 13.3791709 + ], + [ + 52.5418425, + 13.379172 + ], + [ + 52.541026, + 13.3793468 + ], + [ + 52.5406687, + 13.3794289 + ] + ] + }, + { + "osmId": "781644792", + "name": "S\u00fcdring", + "lengthMeters": 96.05508939071512, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412588, + 11.5287164 + ], + [ + 48.1414532, + 11.5291494 + ], + [ + 48.1417398, + 11.5297917 + ] + ] + }, + { + "osmId": "783422509", + "name": null, + "lengthMeters": 95.70083866534164, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.425598, + 10.1249932 + ], + [ + 53.4261739, + 10.1254721 + ], + [ + 53.4261993, + 10.125475 + ], + [ + 53.4262194, + 10.1254603 + ], + [ + 53.4262466, + 10.1254618 + ], + [ + 53.4262807, + 10.1254868 + ], + [ + 53.4263796, + 10.1255514 + ] + ] + }, + { + "osmId": "785708238", + "name": null, + "lengthMeters": 815.4724516058305, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4954985, + 9.954483 + ], + [ + 53.4955107, + 9.9546533 + ], + [ + 53.4955183, + 9.9548351 + ], + [ + 53.4955211, + 9.9549759 + ], + [ + 53.4955203, + 9.9550992 + ], + [ + 53.4955192, + 9.9552235 + ], + [ + 53.4955177, + 9.955415 + ], + [ + 53.4955159, + 9.955465 + ], + [ + 53.4955095, + 9.9555794 + ], + [ + 53.4954983, + 9.9557479 + ], + [ + 53.4954839, + 9.9558964 + ], + [ + 53.495471, + 9.9560274 + ], + [ + 53.4954475, + 9.9562145 + ], + [ + 53.4954209, + 9.9563736 + ], + [ + 53.4953908, + 9.9565511 + ], + [ + 53.4953554, + 9.9567254 + ], + [ + 53.4953292, + 9.9568572 + ], + [ + 53.4952977, + 9.9569849 + ], + [ + 53.4952567, + 9.957144 + ], + [ + 53.4951834, + 9.9573903 + ], + [ + 53.4951013, + 9.9576247 + ], + [ + 53.4950229, + 9.9578328 + ], + [ + 53.4949468, + 9.9580162 + ], + [ + 53.4948463, + 9.9582305 + ], + [ + 53.4947248, + 9.9584617 + ], + [ + 53.4945139, + 9.9588633 + ], + [ + 53.4943506, + 9.9591724 + ], + [ + 53.4942098, + 9.959474 + ], + [ + 53.4941072, + 9.9597197 + ], + [ + 53.4940755, + 9.9598019 + ], + [ + 53.4940173, + 9.9599725 + ], + [ + 53.4939153, + 9.9602634 + ], + [ + 53.4938722, + 9.9604177 + ], + [ + 53.4938242, + 9.9605897 + ], + [ + 53.4938178, + 9.9606161 + ], + [ + 53.4937458, + 9.9608998 + ], + [ + 53.4936766, + 9.961239 + ], + [ + 53.4933556, + 9.9631124 + ], + [ + 53.4931501, + 9.9644501 + ], + [ + 53.4930213, + 9.9652849 + ], + [ + 53.4929459, + 9.9657551 + ] + ] + }, + { + "osmId": "786359057", + "name": null, + "lengthMeters": 189.50486429637147, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0320885, + 11.7141868 + ], + [ + 48.0310385, + 11.7153116 + ], + [ + 48.0310123, + 11.7153396 + ], + [ + 48.0307016, + 11.7156679 + ] + ] + }, + { + "osmId": "786953359", + "name": null, + "lengthMeters": 207.32988406834582, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1393403, + 11.5615341 + ], + [ + 48.1393423, + 11.5614879 + ], + [ + 48.1393452, + 11.5614424 + ], + [ + 48.1393497, + 11.5613961 + ], + [ + 48.1393521, + 11.5613735 + ], + [ + 48.1393548, + 11.561351 + ], + [ + 48.1393632, + 11.561308 + ], + [ + 48.1393668, + 11.5612897 + ], + [ + 48.1393706, + 11.5612748 + ], + [ + 48.1393748, + 11.56126 + ], + [ + 48.1393803, + 11.5612465 + ], + [ + 48.1393865, + 11.5612337 + ], + [ + 48.139393, + 11.561225 + ], + [ + 48.1394007, + 11.5612155 + ], + [ + 48.139411, + 11.561204 + ], + [ + 48.1394309, + 11.5611852 + ], + [ + 48.1394466, + 11.5611729 + ], + [ + 48.1394673, + 11.5611598 + ], + [ + 48.1394817, + 11.5611551 + ], + [ + 48.1394891, + 11.5611533 + ], + [ + 48.1394964, + 11.5611518 + ], + [ + 48.1395021, + 11.5611511 + ], + [ + 48.1395114, + 11.56115 + ], + [ + 48.1395192, + 11.56115 + ], + [ + 48.1395354, + 11.5611508 + ], + [ + 48.1396881, + 11.5611712 + ], + [ + 48.1398771, + 11.561197 + ], + [ + 48.1399762, + 11.5612095 + ], + [ + 48.1401543, + 11.5612298 + ], + [ + 48.1404244, + 11.5612581 + ], + [ + 48.1404492, + 11.561258 + ], + [ + 48.1404738, + 11.5612563 + ], + [ + 48.1405268, + 11.5612514 + ], + [ + 48.1405665, + 11.5612446 + ], + [ + 48.1406074, + 11.5612367 + ], + [ + 48.1407526, + 11.5611965 + ], + [ + 48.1408513, + 11.5611617 + ], + [ + 48.1408645, + 11.5611571 + ], + [ + 48.1409545, + 11.5611134 + ], + [ + 48.1410098, + 11.5610803 + ] + ] + }, + { + "osmId": "786993964", + "name": null, + "lengthMeters": 187.97135573523047, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4488532, + 13.3541517 + ], + [ + 52.4486859, + 13.3539934 + ], + [ + 52.4482973, + 13.3536687 + ], + [ + 52.448042, + 13.3534642 + ], + [ + 52.4478907, + 13.3533402 + ], + [ + 52.4476185, + 13.3531156 + ], + [ + 52.4473453, + 13.3528993 + ] + ] + }, + { + "osmId": "791166317", + "name": "U3", + "lengthMeters": 216.80295871043566, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4430844, + 13.2409997 + ], + [ + 52.4435417, + 13.2416292 + ], + [ + 52.4437793, + 13.2419747 + ], + [ + 52.4439241, + 13.242193 + ], + [ + 52.4443813, + 13.2429403 + ], + [ + 52.4445163, + 13.2431672 + ] + ] + }, + { + "osmId": "791166318", + "name": "U3", + "lengthMeters": 279.39329084054236, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.444927, + 13.2437709 + ], + [ + 52.4441708, + 13.2425044 + ], + [ + 52.4439815, + 13.2421161 + ], + [ + 52.4438433, + 13.2418614 + ], + [ + 52.4437225, + 13.2416718 + ], + [ + 52.4435996, + 13.2415063 + ], + [ + 52.4431439, + 13.2408789 + ] + ] + }, + { + "osmId": "793214304", + "name": null, + "lengthMeters": 360.2220545184672, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1352371, + 11.6474666 + ], + [ + 48.1351154, + 11.647215 + ], + [ + 48.1350601, + 11.6470903 + ], + [ + 48.1348505, + 11.6465485 + ], + [ + 48.1347994, + 11.6463943 + ], + [ + 48.1347435, + 11.6461904 + ], + [ + 48.1346885, + 11.6459309 + ], + [ + 48.1346455, + 11.6456392 + ], + [ + 48.134624, + 11.6453643 + ], + [ + 48.1346182, + 11.6451719 + ], + [ + 48.1346379, + 11.6442103 + ], + [ + 48.1346536, + 11.6436578 + ], + [ + 48.134681, + 11.6432648 + ], + [ + 48.1347246, + 11.6428456 + ] + ] + }, + { + "osmId": "797136349", + "name": null, + "lengthMeters": 103.61755745873816, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1074094, + 11.5978537 + ], + [ + 48.1079102, + 11.5976252 + ], + [ + 48.108292, + 11.5974585 + ], + [ + 48.1083022, + 11.597454 + ] + ] + }, + { + "osmId": "797136350", + "name": null, + "lengthMeters": 139.9646125024819, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1086303, + 11.5973767 + ], + [ + 48.1078773, + 11.5976995 + ], + [ + 48.1074472, + 11.5978909 + ], + [ + 48.1074294, + 11.5978988 + ], + [ + 48.1074215, + 11.5979023 + ] + ] + }, + { + "osmId": "798888963", + "name": null, + "lengthMeters": 99.47554808682727, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1184485, + 11.5958282 + ], + [ + 48.1179885, + 11.5957044 + ], + [ + 48.1175692, + 11.5955816 + ] + ] + }, + { + "osmId": "798888964", + "name": null, + "lengthMeters": 93.93885906564792, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1175804, + 11.5954698 + ], + [ + 48.1179924, + 11.5955672 + ], + [ + 48.1184151, + 11.595665 + ] + ] + }, + { + "osmId": "799419956", + "name": null, + "lengthMeters": 602.7192987828927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6382414, + 13.7428038 + ], + [ + 52.6383632, + 13.7434949 + ], + [ + 52.6394577, + 13.749706 + ], + [ + 52.6396114, + 13.7505546 + ], + [ + 52.6396941, + 13.7509509 + ], + [ + 52.6397874, + 13.7513634 + ] + ] + }, + { + "osmId": "802024927", + "name": null, + "lengthMeters": 93.9615578792554, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3968181, + 13.2764196 + ], + [ + 52.3969466, + 13.27709 + ], + [ + 52.3970488, + 13.2776199 + ], + [ + 52.3970715, + 13.2777362 + ], + [ + 52.3970723, + 13.2777403 + ] + ] + }, + { + "osmId": "802024929", + "name": null, + "lengthMeters": 103.05708551069726, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6063129, + 13.3212837 + ], + [ + 52.6064989, + 13.3210618 + ], + [ + 52.6067522, + 13.3207386 + ], + [ + 52.6067583, + 13.3207308 + ], + [ + 52.6068291, + 13.32064 + ], + [ + 52.6068516, + 13.3206112 + ], + [ + 52.6069016, + 13.3205466 + ], + [ + 52.6070508, + 13.3203605 + ] + ] + }, + { + "osmId": "802024930", + "name": null, + "lengthMeters": 105.07992844038269, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.60701, + 13.3201723 + ], + [ + 52.6068858, + 13.3203212 + ], + [ + 52.6067643, + 13.3204599 + ], + [ + 52.6067443, + 13.3204827 + ], + [ + 52.6066729, + 13.3205638 + ], + [ + 52.6064917, + 13.3207698 + ], + [ + 52.6062369, + 13.3210671 + ] + ] + }, + { + "osmId": "802024936", + "name": null, + "lengthMeters": 85.34602421670164, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5666121, + 13.4110594 + ], + [ + 52.566615, + 13.4110634 + ], + [ + 52.5666251, + 13.4110827 + ], + [ + 52.56675, + 13.4113214 + ], + [ + 52.5670816, + 13.4118753 + ], + [ + 52.5671399, + 13.4119754 + ] + ] + }, + { + "osmId": "802024942", + "name": null, + "lengthMeters": 83.21243429988822, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5346326, + 13.1978993 + ], + [ + 52.5344947, + 13.1987492 + ], + [ + 52.5344479, + 13.1989789 + ], + [ + 52.5344425, + 13.1990105 + ], + [ + 52.5344276, + 13.199082 + ] + ] + }, + { + "osmId": "802024943", + "name": null, + "lengthMeters": 150.51864621538593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5345367, + 13.1990831 + ], + [ + 52.5345392, + 13.1990689 + ], + [ + 52.5345474, + 13.1990176 + ], + [ + 52.5345854, + 13.1987988 + ], + [ + 52.5346053, + 13.1986846 + ], + [ + 52.5348499, + 13.1972776 + ], + [ + 52.5348915, + 13.1970377 + ], + [ + 52.534908, + 13.1969431 + ] + ] + }, + { + "osmId": "802024946", + "name": null, + "lengthMeters": 86.66172888668007, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3483596, + 13.6278445 + ], + [ + 52.3485415, + 13.6276937 + ], + [ + 52.3490549, + 13.6272681 + ] + ] + }, + { + "osmId": "802024949", + "name": null, + "lengthMeters": 149.6551191834526, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4750693, + 13.3660826 + ], + [ + 52.4751318, + 13.3660538 + ], + [ + 52.475385, + 13.3659413 + ], + [ + 52.4758161, + 13.3656724 + ], + [ + 52.4763351, + 13.3653382 + ] + ] + }, + { + "osmId": "802255082", + "name": null, + "lengthMeters": 134.7976907256006, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5231079, + 13.3617622 + ], + [ + 52.5230088, + 13.3625451 + ], + [ + 52.5230032, + 13.3626509 + ], + [ + 52.5230017, + 13.3628601 + ], + [ + 52.5230081, + 13.3629638 + ], + [ + 52.5230194, + 13.3630828 + ], + [ + 52.5230381, + 13.3632015 + ], + [ + 52.5230683, + 13.3632964 + ], + [ + 52.5230937, + 13.3633536 + ], + [ + 52.5230988, + 13.3633652 + ], + [ + 52.5232414, + 13.3636085 + ] + ] + }, + { + "osmId": "802255083", + "name": null, + "lengthMeters": 639.0287163749426, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5693773, + 13.4982228 + ], + [ + 52.568944, + 13.4987237 + ], + [ + 52.5686821, + 13.4990232 + ], + [ + 52.5675255, + 13.5003577 + ], + [ + 52.5668241, + 13.5011555 + ], + [ + 52.566363, + 13.5016719 + ], + [ + 52.5662523, + 13.5018045 + ], + [ + 52.5662139, + 13.501849 + ], + [ + 52.566176, + 13.5018953 + ], + [ + 52.5660409, + 13.5020465 + ], + [ + 52.5656527, + 13.5024999 + ], + [ + 52.5646633, + 13.5036304 + ] + ] + }, + { + "osmId": "802255084", + "name": null, + "lengthMeters": 82.59426852702224, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5261346, + 13.4467977 + ], + [ + 52.5257994, + 13.4457082 + ] + ] + }, + { + "osmId": "802255085", + "name": null, + "lengthMeters": 84.92948896751513, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5726002, + 13.5741703 + ], + [ + 52.5721819, + 13.5745331 + ], + [ + 52.572081, + 13.5746122 + ], + [ + 52.5719141, + 13.5747194 + ] + ] + }, + { + "osmId": "802255092", + "name": null, + "lengthMeters": 147.24008860707855, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4210941, + 13.1792705 + ], + [ + 52.421928, + 13.1808474 + ], + [ + 52.4219607, + 13.1809122 + ] + ] + }, + { + "osmId": "802255094", + "name": null, + "lengthMeters": 95.79848838569737, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5002897, + 13.2831278 + ], + [ + 52.5003244, + 13.2832415 + ], + [ + 52.5003557, + 13.2833474 + ], + [ + 52.5003625, + 13.2833696 + ], + [ + 52.5004564, + 13.2836653 + ], + [ + 52.5006713, + 13.2843424 + ], + [ + 52.5006849, + 13.2843853 + ] + ] + }, + { + "osmId": "802255100", + "name": null, + "lengthMeters": 94.45902311001704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5730239, + 13.5039068 + ], + [ + 52.573245, + 13.5036235 + ], + [ + 52.5733583, + 13.5034796 + ], + [ + 52.5736114, + 13.5031565 + ], + [ + 52.5736948, + 13.5030494 + ] + ] + }, + { + "osmId": "802255101", + "name": null, + "lengthMeters": 119.12160585942927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5729805, + 13.5036989 + ], + [ + 52.5724309, + 13.5044044 + ], + [ + 52.5723571, + 13.5044982 + ], + [ + 52.5721355, + 13.5047824 + ] + ] + }, + { + "osmId": "802255106", + "name": null, + "lengthMeters": 92.2730415192388, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6374536, + 13.2059265 + ], + [ + 52.6376997, + 13.2058153 + ], + [ + 52.6381867, + 13.2055999 + ], + [ + 52.6382546, + 13.2055692 + ] + ] + }, + { + "osmId": "802255107", + "name": null, + "lengthMeters": 89.59284349589376, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6383137, + 13.2058254 + ], + [ + 52.6382214, + 13.2058664 + ], + [ + 52.6381936, + 13.2058785 + ], + [ + 52.6381286, + 13.205907 + ], + [ + 52.637535, + 13.2061664 + ] + ] + }, + { + "osmId": "803649615", + "name": null, + "lengthMeters": 264.30507181582925, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.359294, + 13.0974061 + ], + [ + 52.3592573, + 13.097397 + ], + [ + 52.3591989, + 13.0973751 + ], + [ + 52.3591083, + 13.0973532 + ], + [ + 52.3589896, + 13.0973591 + ], + [ + 52.3589255, + 13.0974134 + ], + [ + 52.3588602, + 13.0975064 + ], + [ + 52.3588384, + 13.0976256 + ], + [ + 52.3588295, + 13.0977467 + ], + [ + 52.3588342, + 13.0978572 + ], + [ + 52.3588556, + 13.0979668 + ], + [ + 52.3588951, + 13.0980639 + ], + [ + 52.3589431, + 13.0981555 + ], + [ + 52.3590061, + 13.0982226 + ], + [ + 52.3590822, + 13.0982813 + ], + [ + 52.3591433, + 13.0982985 + ], + [ + 52.3592032, + 13.0983062 + ], + [ + 52.3592841, + 13.0982895 + ], + [ + 52.3593507, + 13.0982383 + ], + [ + 52.3594512, + 13.0981467 + ], + [ + 52.3595671, + 13.0979998 + ], + [ + 52.3597278, + 13.097879 + ], + [ + 52.3597533, + 13.0978599 + ], + [ + 52.360269, + 13.097445 + ] + ] + }, + { + "osmId": "803941107", + "name": null, + "lengthMeters": 228.28792454967578, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5296427, + 13.6240653 + ], + [ + 52.5296823, + 13.6240712 + ], + [ + 52.5297683, + 13.6240756 + ], + [ + 52.5298158, + 13.6240731 + ], + [ + 52.5298342, + 13.6240687 + ], + [ + 52.5298665, + 13.6240586 + ], + [ + 52.5298938, + 13.6240457 + ], + [ + 52.5299135, + 13.6240329 + ], + [ + 52.5299346, + 13.6240188 + ], + [ + 52.5299566, + 13.6239994 + ], + [ + 52.5299772, + 13.6239796 + ], + [ + 52.5300035, + 13.6239476 + ], + [ + 52.530024, + 13.6239209 + ], + [ + 52.530043, + 13.6238912 + ], + [ + 52.5300628, + 13.6238587 + ], + [ + 52.5301035, + 13.6237757 + ], + [ + 52.5301401, + 13.623687 + ], + [ + 52.5301686, + 13.6236109 + ], + [ + 52.5301954, + 13.6235329 + ], + [ + 52.5302562, + 13.6233367 + ], + [ + 52.5302855, + 13.6232377 + ], + [ + 52.5303141, + 13.6231361 + ], + [ + 52.530341, + 13.6230344 + ], + [ + 52.5303679, + 13.6229314 + ], + [ + 52.5304162, + 13.6227239 + ], + [ + 52.5305635, + 13.622027 + ], + [ + 52.5306826, + 13.6214574 + ] + ] + }, + { + "osmId": "803941119", + "name": null, + "lengthMeters": 173.18551514678697, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.543917, + 13.3395713 + ], + [ + 52.5441543, + 13.3400313 + ], + [ + 52.5445825, + 13.340835 + ], + [ + 52.5449355, + 13.3415088 + ] + ] + }, + { + "osmId": "803941120", + "name": null, + "lengthMeters": 223.76568344312537, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5449577, + 13.3414734 + ], + [ + 52.544605, + 13.3408006 + ], + [ + 52.5436415, + 13.3389703 + ] + ] + }, + { + "osmId": "803941121", + "name": null, + "lengthMeters": 104.27437225966159, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6050605, + 13.4153148 + ], + [ + 52.6051651, + 13.4157751 + ], + [ + 52.6051784, + 13.4158333 + ], + [ + 52.6053946, + 13.4167576 + ] + ] + }, + { + "osmId": "803941129", + "name": null, + "lengthMeters": 560.8585659315783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4390415, + 13.5916396 + ], + [ + 52.4395522, + 13.5903336 + ], + [ + 52.44021, + 13.5886229 + ], + [ + 52.4403023, + 13.5883804 + ], + [ + 52.4403263, + 13.5883147 + ], + [ + 52.4403554, + 13.5882193 + ], + [ + 52.440378, + 13.5881221 + ], + [ + 52.4403933, + 13.5880117 + ], + [ + 52.4403972, + 13.5879012 + ], + [ + 52.4403993, + 13.5877181 + ], + [ + 52.4404017, + 13.5876277 + ], + [ + 52.4404128, + 13.5875516 + ], + [ + 52.4404313, + 13.5874354 + ], + [ + 52.4404579, + 13.5873358 + ], + [ + 52.4404887, + 13.5872403 + ], + [ + 52.440525, + 13.5871531 + ], + [ + 52.440604, + 13.586986 + ], + [ + 52.4406668, + 13.5868636 + ], + [ + 52.4406699, + 13.5868576 + ], + [ + 52.440821, + 13.586616 + ], + [ + 52.4409239, + 13.5864515 + ], + [ + 52.4410694, + 13.5862171 + ], + [ + 52.4411455, + 13.5860864 + ], + [ + 52.4412336, + 13.585919 + ], + [ + 52.4412906, + 13.5857963 + ], + [ + 52.4413263, + 13.5857139 + ], + [ + 52.4413674, + 13.5856106 + ], + [ + 52.4417003, + 13.5847345 + ] + ] + }, + { + "osmId": "805420859", + "name": null, + "lengthMeters": 84.84828093643728, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4722853, + 13.4824717 + ], + [ + 52.4723435, + 13.4823748 + ], + [ + 52.4728232, + 13.4815832 + ] + ] + }, + { + "osmId": "805982873", + "name": "Zweigbahn Sch\u00f6neweide\u2013Spindlersfeld", + "lengthMeters": 169.8007275328345, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4462054, + 13.5620916 + ], + [ + 52.4462857, + 13.5620236 + ], + [ + 52.4469147, + 13.5614712 + ], + [ + 52.4472719, + 13.5611581 + ], + [ + 52.4475528, + 13.5609126 + ] + ] + }, + { + "osmId": "806903747", + "name": null, + "lengthMeters": 112.48926994514275, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121217, + 13.4730921 + ], + [ + 52.5121421, + 13.47287 + ], + [ + 52.5121906, + 13.4723144 + ], + [ + 52.5122762, + 13.4714494 + ] + ] + }, + { + "osmId": "806903748", + "name": null, + "lengthMeters": 105.85087839344932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5916351, + 13.4096626 + ], + [ + 52.5916511, + 13.4097124 + ], + [ + 52.5916616, + 13.4097478 + ], + [ + 52.5916703, + 13.4097795 + ], + [ + 52.5916936, + 13.4098676 + ], + [ + 52.5917214, + 13.4099732 + ], + [ + 52.5917308, + 13.4100054 + ], + [ + 52.5917346, + 13.4100178 + ], + [ + 52.5917405, + 13.4100369 + ], + [ + 52.5917509, + 13.4100678 + ], + [ + 52.5917619, + 13.4100998 + ], + [ + 52.5917941, + 13.4101848 + ], + [ + 52.5918548, + 13.4103467 + ], + [ + 52.5919892, + 13.4107141 + ], + [ + 52.592103, + 13.4110249 + ] + ] + }, + { + "osmId": "806903751", + "name": null, + "lengthMeters": 80.0035528780885, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.374753, + 13.6491663 + ], + [ + 52.3746531, + 13.6491232 + ], + [ + 52.3746342, + 13.6491156 + ], + [ + 52.37462, + 13.6491098 + ], + [ + 52.3746055, + 13.6491054 + ], + [ + 52.3745949, + 13.6491032 + ], + [ + 52.3745828, + 13.6491011 + ], + [ + 52.3745736, + 13.6491006 + ], + [ + 52.3745641, + 13.6491007 + ], + [ + 52.3745535, + 13.6491019 + ], + [ + 52.3745394, + 13.6491054 + ], + [ + 52.3745267, + 13.6491107 + ], + [ + 52.3745135, + 13.6491176 + ], + [ + 52.3744998, + 13.6491271 + ], + [ + 52.3744882, + 13.6491363 + ], + [ + 52.3744737, + 13.6491503 + ], + [ + 52.3744615, + 13.6491659 + ], + [ + 52.3744474, + 13.6491882 + ], + [ + 52.3744319, + 13.6492194 + ], + [ + 52.3744225, + 13.6492406 + ], + [ + 52.3744113, + 13.649276 + ], + [ + 52.3744044, + 13.6493123 + ], + [ + 52.3743978, + 13.6493499 + ], + [ + 52.3743962, + 13.6493836 + ], + [ + 52.3743972, + 13.6494204 + ], + [ + 52.3744004, + 13.6494544 + ], + [ + 52.3744051, + 13.6494811 + ], + [ + 52.3744105, + 13.6495027 + ], + [ + 52.3744168, + 13.6495233 + ], + [ + 52.3744234, + 13.6495406 + ], + [ + 52.3744316, + 13.649557 + ], + [ + 52.374436, + 13.6495655 + ], + [ + 52.374446, + 13.6495879 + ], + [ + 52.374456, + 13.6496052 + ], + [ + 52.3744722, + 13.6496259 + ], + [ + 52.3744961, + 13.6496543 + ], + [ + 52.3745458, + 13.6497067 + ] + ] + }, + { + "osmId": "806903755", + "name": "U6", + "lengthMeters": 89.50542088073014, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4396554, + 13.387414 + ], + [ + 52.4388611, + 13.387628 + ] + ] + }, + { + "osmId": "806903756", + "name": "U6", + "lengthMeters": 87.62081841855115, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4388643, + 13.387685 + ], + [ + 52.4392038, + 13.3876932 + ], + [ + 52.43965, + 13.3876195 + ] + ] + }, + { + "osmId": "806903757", + "name": null, + "lengthMeters": 294.1129195753889, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5896752, + 13.283644 + ], + [ + 52.5897431, + 13.2835733 + ], + [ + 52.5903479, + 13.2830114 + ], + [ + 52.5909684, + 13.2824581 + ], + [ + 52.5910389, + 13.2824032 + ], + [ + 52.5913186, + 13.2821908 + ], + [ + 52.5920489, + 13.281747 + ] + ] + }, + { + "osmId": "806903758", + "name": null, + "lengthMeters": 300.8692097775968, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5920516, + 13.2815515 + ], + [ + 52.5916529, + 13.281784 + ], + [ + 52.5913578, + 13.281964 + ], + [ + 52.5909359, + 13.2823312 + ], + [ + 52.5902219, + 13.2829374 + ], + [ + 52.5896862, + 13.283423 + ], + [ + 52.5896222, + 13.2834902 + ] + ] + }, + { + "osmId": "807043962", + "name": null, + "lengthMeters": 81.14676607363587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.525868, + 13.2401167 + ], + [ + 52.525813, + 13.2403383 + ], + [ + 52.5257021, + 13.2407768 + ], + [ + 52.5255866, + 13.2412234 + ] + ] + }, + { + "osmId": "807043966", + "name": null, + "lengthMeters": 124.18673694222974, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5386341, + 13.6318926 + ], + [ + 52.5382584, + 13.6336218 + ] + ] + }, + { + "osmId": "807043967", + "name": null, + "lengthMeters": 103.74021819905553, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.521072, + 13.4128769 + ], + [ + 52.5216433, + 13.4140891 + ] + ] + }, + { + "osmId": "807043971", + "name": "U7", + "lengthMeters": 518.6895487654409, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353827, + 13.1997806 + ], + [ + 52.5352717, + 13.1997423 + ], + [ + 52.5350411, + 13.1996593 + ], + [ + 52.5349608, + 13.1996215 + ], + [ + 52.5348171, + 13.1995547 + ], + [ + 52.5346877, + 13.1994754 + ], + [ + 52.5339574, + 13.1989319 + ], + [ + 52.5338647, + 13.1988777 + ], + [ + 52.5332794, + 13.1984967 + ], + [ + 52.5327763, + 13.1981728 + ], + [ + 52.5325522, + 13.1979773 + ], + [ + 52.5323404, + 13.1977867 + ], + [ + 52.5311109, + 13.1967593 + ] + ] + }, + { + "osmId": "807043972", + "name": "U7", + "lengthMeters": 530.6554917729683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354269, + 13.1999509 + ], + [ + 52.5346551, + 13.1996692 + ], + [ + 52.534454, + 13.1995398 + ], + [ + 52.5338821, + 13.1990571 + ], + [ + 52.533523, + 13.1988813 + ], + [ + 52.5333618, + 13.1987878 + ], + [ + 52.5327181, + 13.1983673 + ], + [ + 52.5320068, + 13.1976436 + ], + [ + 52.5310758, + 13.1968523 + ] + ] + }, + { + "osmId": "807043973", + "name": "U7", + "lengthMeters": 147.1556881684431, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4157827, + 13.4962907 + ], + [ + 52.4159269, + 13.4958383 + ], + [ + 52.4161853, + 13.4952835 + ], + [ + 52.4162962, + 13.4950639 + ], + [ + 52.4164861, + 13.4947146 + ], + [ + 52.4165722, + 13.4945615 + ] + ] + }, + { + "osmId": "807043974", + "name": "U7", + "lengthMeters": 148.25741375786143, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4157827, + 13.4962907 + ], + [ + 52.4159803, + 13.4958723 + ], + [ + 52.4160858, + 13.4956455 + ], + [ + 52.4162588, + 13.4952991 + ], + [ + 52.4163714, + 13.4950799 + ], + [ + 52.4164648, + 13.4949168 + ], + [ + 52.416635, + 13.4946115 + ] + ] + }, + { + "osmId": "807043977", + "name": "U8", + "lengthMeters": 79.19434089998396, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4671052, + 13.4316018 + ], + [ + 52.467777, + 13.4312136 + ] + ] + }, + { + "osmId": "807043978", + "name": null, + "lengthMeters": 153.2656943818732, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4568134, + 13.3208049 + ], + [ + 52.455496, + 13.3201397 + ] + ] + }, + { + "osmId": "807043979", + "name": "U9", + "lengthMeters": 152.7685803000817, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4554674, + 13.3203345 + ], + [ + 52.4562626, + 13.3207566 + ], + [ + 52.4567758, + 13.3210222 + ] + ] + }, + { + "osmId": "808549028", + "name": null, + "lengthMeters": 193.50169990469362, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5445705, + 9.9304222 + ], + [ + 53.5445643, + 9.9305986 + ], + [ + 53.5445636, + 9.9306563 + ], + [ + 53.5445792, + 9.9320109 + ], + [ + 53.544582, + 9.9322933 + ], + [ + 53.5445863, + 9.9327282 + ], + [ + 53.5445874, + 9.9328403 + ], + [ + 53.5445925, + 9.9333501 + ] + ] + }, + { + "osmId": "810410272", + "name": null, + "lengthMeters": 810.7460644790661, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3835619, + 13.3984574 + ], + [ + 52.3835519, + 13.3984632 + ], + [ + 52.382304, + 13.3991957 + ], + [ + 52.3802078, + 13.4004254 + ], + [ + 52.3791216, + 13.4010571 + ], + [ + 52.3785335, + 13.401384 + ], + [ + 52.3781881, + 13.4015705 + ], + [ + 52.3779824, + 13.4016743 + ], + [ + 52.3766601, + 13.4022974 + ] + ] + }, + { + "osmId": "810508437", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 531.6572895185856, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5391133, + 13.1235205 + ], + [ + 52.5392644, + 13.1213712 + ], + [ + 52.5394288, + 13.1190292 + ], + [ + 52.5396227, + 13.1162903 + ], + [ + 52.5396634, + 13.1157115 + ] + ] + }, + { + "osmId": "810508438", + "name": "Schnellfahrstrecke Oebisfelde\u2013Spandau", + "lengthMeters": 1296.4804385203329, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5377268, + 13.1425684 + ], + [ + 52.537776, + 13.141866 + ], + [ + 52.5379637, + 13.1391937 + ], + [ + 52.5381805, + 13.136132 + ], + [ + 52.538398, + 13.133049 + ], + [ + 52.5384897, + 13.1317098 + ], + [ + 52.5386051, + 13.1301157 + ], + [ + 52.5387184, + 13.1285122 + ], + [ + 52.5388054, + 13.1272822 + ], + [ + 52.539007, + 13.1244307 + ], + [ + 52.5390709, + 13.1235266 + ] + ] + }, + { + "osmId": "810538183", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 469.8725208698021, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5389672, + 13.1698992 + ], + [ + 52.5389016, + 13.1702456 + ], + [ + 52.5387816, + 13.1708569 + ], + [ + 52.5383828, + 13.1732466 + ], + [ + 52.5380463, + 13.1753825 + ], + [ + 52.5379221, + 13.1761699 + ], + [ + 52.5378546, + 13.1766003 + ] + ] + }, + { + "osmId": "810538184", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 80.37186863765702, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5392126, + 13.1687814 + ], + [ + 52.5389672, + 13.1698992 + ] + ] + }, + { + "osmId": "810776579", + "name": null, + "lengthMeters": 81.75879197292252, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4983108, + 13.271197 + ], + [ + 52.4981359, + 13.2721561 + ], + [ + 52.4981011, + 13.2723546 + ] + ] + }, + { + "osmId": "810776580", + "name": null, + "lengthMeters": 83.03172470415029, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4981314, + 13.2723987 + ], + [ + 52.4981831, + 13.272098 + ], + [ + 52.4983413, + 13.2712216 + ] + ] + }, + { + "osmId": "812898092", + "name": null, + "lengthMeters": 107.51374432672665, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5270621, + 13.2404545 + ], + [ + 52.5270593, + 13.240467 + ], + [ + 52.5269983, + 13.2407139 + ], + [ + 52.5269895, + 13.2407505 + ], + [ + 52.5269049, + 13.2411223 + ], + [ + 52.5268062, + 13.2416217 + ], + [ + 52.5267485, + 13.2419566 + ] + ] + }, + { + "osmId": "813273300", + "name": null, + "lengthMeters": 473.68995500512864, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1388376, + 11.651246 + ], + [ + 48.1401451, + 11.6507124 + ], + [ + 48.1403008, + 11.6506482 + ], + [ + 48.140686, + 11.6504916 + ], + [ + 48.1410535, + 11.6503638 + ], + [ + 48.1413196, + 11.6502951 + ], + [ + 48.1415728, + 11.6502386 + ], + [ + 48.1416988, + 11.6502165 + ], + [ + 48.1419155, + 11.6501785 + ], + [ + 48.1421957, + 11.650144 + ], + [ + 48.1427501, + 11.6500898 + ], + [ + 48.1429924, + 11.6500625 + ], + [ + 48.1430011, + 11.6500615 + ], + [ + 48.1430086, + 11.6500607 + ] + ] + }, + { + "osmId": "813273301", + "name": null, + "lengthMeters": 458.82089948755953, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1430056, + 11.6499888 + ], + [ + 48.1429981, + 11.6499899 + ], + [ + 48.1429907, + 11.6499909 + ], + [ + 48.1427467, + 11.6500177 + ], + [ + 48.1421962, + 11.6500713 + ], + [ + 48.1419156, + 11.6501072 + ], + [ + 48.1417379, + 11.6501386 + ], + [ + 48.1415707, + 11.6501681 + ], + [ + 48.141315, + 11.6502272 + ], + [ + 48.1410445, + 11.6503026 + ], + [ + 48.1406782, + 11.6504301 + ], + [ + 48.1401371, + 11.6506519 + ], + [ + 48.1391007, + 11.651069 + ], + [ + 48.1389652, + 11.651133 + ] + ] + }, + { + "osmId": "813283678", + "name": "Lehrter Bahn", + "lengthMeters": 273.6756466516977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5373761, + 13.1470268 + ], + [ + 52.5373867, + 13.1467607 + ], + [ + 52.5373947, + 13.1465837 + ], + [ + 52.5374015, + 13.1464443 + ], + [ + 52.5374242, + 13.1460815 + ], + [ + 52.5374528, + 13.1456405 + ], + [ + 52.5375005, + 13.1449413 + ], + [ + 52.5375533, + 13.1441794 + ], + [ + 52.5376375, + 13.1430037 + ] + ] + }, + { + "osmId": "813283679", + "name": "Lehrter Bahn", + "lengthMeters": 116.95242863626135, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.537313, + 13.1487528 + ], + [ + 52.5373319, + 13.1483368 + ], + [ + 52.5373402, + 13.1481291 + ], + [ + 52.5373484, + 13.1479228 + ], + [ + 52.5373595, + 13.1475504 + ], + [ + 52.5373761, + 13.1470268 + ] + ] + }, + { + "osmId": "813347270", + "name": null, + "lengthMeters": 458.07710872198965, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347246, + 11.6428456 + ], + [ + 48.1347605, + 11.6425445 + ], + [ + 48.1348071, + 11.6421252 + ], + [ + 48.1348433, + 11.641835 + ], + [ + 48.1348831, + 11.641489 + ], + [ + 48.1349243, + 11.6411305 + ], + [ + 48.1350257, + 11.6402242 + ], + [ + 48.1350617, + 11.6397883 + ], + [ + 48.1350915, + 11.6393216 + ], + [ + 48.1351048, + 11.6390014 + ], + [ + 48.1351136, + 11.638685 + ], + [ + 48.1351159, + 11.6382331 + ], + [ + 48.1351093, + 11.637806 + ], + [ + 48.1350763, + 11.636719 + ] + ] + }, + { + "osmId": "813438605", + "name": null, + "lengthMeters": 308.86637163625, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5264891, + 13.2465944 + ], + [ + 52.5264932, + 13.2473724 + ], + [ + 52.5264989, + 13.2480053 + ], + [ + 52.526508, + 13.2486137 + ], + [ + 52.5265359, + 13.249442 + ], + [ + 52.5265637, + 13.2500274 + ], + [ + 52.5266001, + 13.2506425 + ], + [ + 52.5266062, + 13.2507458 + ], + [ + 52.5266314, + 13.2511512 + ] + ] + }, + { + "osmId": "816397840", + "name": null, + "lengthMeters": 527.6477205978588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.542649, + 13.511905 + ], + [ + 52.5417057, + 13.5125906 + ], + [ + 52.5408733, + 13.5132037 + ], + [ + 52.5403292, + 13.5135947 + ], + [ + 52.5401971, + 13.5137047 + ], + [ + 52.5397044, + 13.5140616 + ], + [ + 52.5396291, + 13.5141193 + ], + [ + 52.5395127, + 13.5142087 + ], + [ + 52.5394193, + 13.5142808 + ], + [ + 52.539004, + 13.5146099 + ], + [ + 52.5383237, + 13.5151123 + ] + ] + }, + { + "osmId": "816397841", + "name": null, + "lengthMeters": 356.60074576536124, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5427586, + 13.5118788 + ], + [ + 52.5433719, + 13.5114173 + ], + [ + 52.5439317, + 13.5110175 + ], + [ + 52.5446695, + 13.5105087 + ], + [ + 52.5454239, + 13.5100465 + ], + [ + 52.5456226, + 13.5099286 + ], + [ + 52.5457227, + 13.5098721 + ] + ] + }, + { + "osmId": "824348878", + "name": null, + "lengthMeters": 572.3996332970446, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.493561, + 9.9621643 + ], + [ + 53.4936912, + 9.9614024 + ], + [ + 53.4937527, + 9.9610796 + ], + [ + 53.4938008, + 9.9608613 + ], + [ + 53.4938614, + 9.9606218 + ], + [ + 53.4939086, + 9.960455 + ], + [ + 53.4939407, + 9.9603417 + ], + [ + 53.494015, + 9.9601182 + ], + [ + 53.4940885, + 9.9599023 + ], + [ + 53.494192, + 9.9596449 + ], + [ + 53.4942901, + 9.9594229 + ], + [ + 53.4944137, + 9.9591652 + ], + [ + 53.4945713, + 9.9588648 + ], + [ + 53.4947774, + 9.9584725 + ], + [ + 53.494884, + 9.9582661 + ], + [ + 53.4949656, + 9.9580883 + ], + [ + 53.4950233, + 9.9579569 + ], + [ + 53.4950889, + 9.9577965 + ], + [ + 53.4951632, + 9.9576014 + ], + [ + 53.4952274, + 9.9574042 + ], + [ + 53.4952875, + 9.9571945 + ], + [ + 53.4953385, + 9.9569976 + ], + [ + 53.495396, + 9.9567458 + ], + [ + 53.495431, + 9.9565764 + ], + [ + 53.4954759, + 9.9563097 + ], + [ + 53.4955016, + 9.9561277 + ], + [ + 53.4955297, + 9.9558804 + ], + [ + 53.4955484, + 9.95565 + ], + [ + 53.4955604, + 9.9554179 + ], + [ + 53.4955631, + 9.9552775 + ], + [ + 53.4955645, + 9.9551939 + ], + [ + 53.4955646, + 9.955089 + ], + [ + 53.4955618, + 9.9548248 + ], + [ + 53.4955516, + 9.954604 + ], + [ + 53.4955394, + 9.9544391 + ] + ] + }, + { + "osmId": "825031191", + "name": "Stettiner Bahn", + "lengthMeters": 148.68433447267716, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6202428, + 13.4752413 + ], + [ + 52.6211876, + 13.4762622 + ], + [ + 52.6213601, + 13.4764513 + ] + ] + }, + { + "osmId": "827884817", + "name": null, + "lengthMeters": 311.0214082418268, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4824482, + 9.9971127 + ], + [ + 53.4822597, + 9.9957352 + ], + [ + 53.4821861, + 9.9951789 + ], + [ + 53.4821618, + 9.9949957 + ], + [ + 53.4821379, + 9.9948093 + ], + [ + 53.4818706, + 9.9927644 + ], + [ + 53.4818409, + 9.9925245 + ] + ] + }, + { + "osmId": "827884819", + "name": null, + "lengthMeters": 283.6046536682067, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4824406, + 9.9966997 + ], + [ + 53.4822856, + 9.9955744 + ], + [ + 53.4822779, + 9.9955184 + ], + [ + 53.4822296, + 9.9951683 + ], + [ + 53.4822045, + 9.9949862 + ], + [ + 53.4821604, + 9.9946456 + ], + [ + 53.4819137, + 9.9927832 + ], + [ + 53.4818779, + 9.9925193 + ] + ] + }, + { + "osmId": "828713123", + "name": "Berliner Ringbahn", + "lengthMeters": 341.86333076451433, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5194693, + 13.4722692 + ], + [ + 52.5192587, + 13.4724103 + ], + [ + 52.5191197, + 13.4724962 + ], + [ + 52.5190394, + 13.4725415 + ], + [ + 52.5165721, + 13.473932 + ], + [ + 52.5165671, + 13.4739347 + ] + ] + }, + { + "osmId": "833274480", + "name": null, + "lengthMeters": 602.0485599298604, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.396117, + 13.1380554 + ], + [ + 52.3959344, + 13.1376279 + ], + [ + 52.3956645, + 13.1368793 + ], + [ + 52.3955314, + 13.1364753 + ], + [ + 52.395354, + 13.1358303 + ], + [ + 52.3952073, + 13.1351457 + ], + [ + 52.3950851, + 13.1344501 + ], + [ + 52.3949903, + 13.1336911 + ], + [ + 52.3947111, + 13.131384 + ], + [ + 52.3946876, + 13.1311898 + ], + [ + 52.3945707, + 13.1302293 + ], + [ + 52.3945037, + 13.1296788 + ] + ] + }, + { + "osmId": "833274482", + "name": null, + "lengthMeters": 99.93968381602362, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.396114, + 13.138178 + ], + [ + 52.3962871, + 13.1385508 + ], + [ + 52.3966815, + 13.1393197 + ] + ] + }, + { + "osmId": "833274485", + "name": null, + "lengthMeters": 3188.3999723161205, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3947066, + 13.1355765 + ], + [ + 52.3946778, + 13.135525 + ], + [ + 52.3944059, + 13.1350539 + ], + [ + 52.3943218, + 13.1349095 + ], + [ + 52.3941326, + 13.1345958 + ], + [ + 52.3939365, + 13.1342825 + ], + [ + 52.393514, + 13.133613 + ], + [ + 52.3934446, + 13.1335109 + ], + [ + 52.3930593, + 13.1329445 + ], + [ + 52.3926425, + 13.1323691 + ], + [ + 52.3922222, + 13.1318087 + ], + [ + 52.3918764, + 13.1313787 + ], + [ + 52.3915812, + 13.1310117 + ], + [ + 52.391506, + 13.1309283 + ], + [ + 52.3912097, + 13.1305997 + ], + [ + 52.3907626, + 13.1301263 + ], + [ + 52.3893749, + 13.128752 + ], + [ + 52.3877832, + 13.1271909 + ], + [ + 52.3876995, + 13.1271071 + ], + [ + 52.3863237, + 13.1257519 + ], + [ + 52.3861511, + 13.1255813 + ], + [ + 52.3855223, + 13.1249599 + ], + [ + 52.3846191, + 13.1240673 + ], + [ + 52.383349, + 13.1228098 + ], + [ + 52.3832245, + 13.122683 + ], + [ + 52.3831392, + 13.1226 + ], + [ + 52.3830809, + 13.1225428 + ], + [ + 52.3828179, + 13.1222844 + ], + [ + 52.3825766, + 13.1220474 + ], + [ + 52.3824825, + 13.1219538 + ], + [ + 52.3817265, + 13.1212047 + ], + [ + 52.3814331, + 13.1209172 + ], + [ + 52.3813261, + 13.1208124 + ], + [ + 52.3797355, + 13.1192559 + ], + [ + 52.3796091, + 13.1191323 + ], + [ + 52.3792463, + 13.1187726 + ], + [ + 52.3750405, + 13.1146245 + ], + [ + 52.374508, + 13.1141094 + ], + [ + 52.3742111, + 13.1137885 + ], + [ + 52.3740357, + 13.1136351 + ], + [ + 52.3738364, + 13.1134351 + ], + [ + 52.3736221, + 13.1132247 + ], + [ + 52.3734963, + 13.1131012 + ], + [ + 52.3731125, + 13.1127233 + ], + [ + 52.3730419, + 13.1126503 + ], + [ + 52.371982, + 13.1116047 + ], + [ + 52.3719265, + 13.1115499 + ], + [ + 52.3706615, + 13.110302 + ], + [ + 52.3706303, + 13.1102704 + ] + ] + }, + { + "osmId": "833274486", + "name": null, + "lengthMeters": 268.4812532878074, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3961093, + 13.1383783 + ], + [ + 52.3964216, + 13.1389677 + ], + [ + 52.3969219, + 13.1398477 + ], + [ + 52.3969718, + 13.1399355 + ], + [ + 52.3972736, + 13.1404418 + ], + [ + 52.3977787, + 13.1412341 + ] + ] + }, + { + "osmId": "840643030", + "name": null, + "lengthMeters": 362.5816178941455, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1409023, + 11.5611161 + ], + [ + 48.140935, + 11.5611036 + ], + [ + 48.1409552, + 11.5610936 + ], + [ + 48.1409759, + 11.5610824 + ], + [ + 48.140998, + 11.5610669 + ], + [ + 48.1410091, + 11.5610582 + ], + [ + 48.1410326, + 11.5610365 + ], + [ + 48.1410406, + 11.5610275 + ], + [ + 48.1410563, + 11.5610085 + ], + [ + 48.1410738, + 11.5609827 + ], + [ + 48.1410936, + 11.5609513 + ], + [ + 48.1411098, + 11.5609189 + ], + [ + 48.1411366, + 11.5608593 + ], + [ + 48.1411607, + 11.5608011 + ], + [ + 48.141166, + 11.5607828 + ], + [ + 48.1411797, + 11.5607228 + ], + [ + 48.1412172, + 11.5605603 + ], + [ + 48.1413615, + 11.5598813 + ], + [ + 48.1413891, + 11.5597512 + ], + [ + 48.1414294, + 11.5595559 + ], + [ + 48.1415535, + 11.5589762 + ], + [ + 48.1416129, + 11.5587011 + ], + [ + 48.141616, + 11.5586863 + ], + [ + 48.1416708, + 11.558424 + ], + [ + 48.1417374, + 11.5581065 + ], + [ + 48.1417706, + 11.5579475 + ], + [ + 48.1418057, + 11.5577902 + ], + [ + 48.1418464, + 11.5575997 + ], + [ + 48.141911, + 11.5572813 + ], + [ + 48.1419655, + 11.5570287 + ], + [ + 48.141986, + 11.5569134 + ], + [ + 48.1420011, + 11.5568167 + ], + [ + 48.1420162, + 11.556717 + ], + [ + 48.1420243, + 11.5566311 + ] + ] + }, + { + "osmId": "840643031", + "name": null, + "lengthMeters": 321.7971751388352, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.142, + 11.5566287 + ], + [ + 48.1419929, + 11.5566944 + ], + [ + 48.1419828, + 11.5567718 + ], + [ + 48.1419732, + 11.5568435 + ], + [ + 48.1419607, + 11.556913 + ], + [ + 48.1419489, + 11.5569794 + ], + [ + 48.1419012, + 11.5572081 + ], + [ + 48.1417886, + 11.5577637 + ], + [ + 48.1416958, + 11.5581841 + ], + [ + 48.1416015, + 11.558626 + ], + [ + 48.1415919, + 11.558671 + ], + [ + 48.1414065, + 11.5595449 + ], + [ + 48.141313, + 11.5599858 + ], + [ + 48.1411933, + 11.5605436 + ], + [ + 48.141148, + 11.5607259 + ], + [ + 48.141136, + 11.5607653 + ] + ] + }, + { + "osmId": "842481502", + "name": null, + "lengthMeters": 146.77819323819546, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5669166, + 9.9342076 + ], + [ + 53.5676059, + 9.9340064 + ], + [ + 53.5680539, + 9.9338733 + ], + [ + 53.5682183, + 9.9338411 + ] + ] + }, + { + "osmId": "842481505", + "name": null, + "lengthMeters": 192.48733767450204, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5573833, + 9.9347351 + ], + [ + 53.5575204, + 9.9346183 + ], + [ + 53.5576519, + 9.9345009 + ], + [ + 53.5577427, + 9.9344232 + ], + [ + 53.5581339, + 9.9339946 + ], + [ + 53.5585183, + 9.9335841 + ], + [ + 53.5587043, + 9.9333782 + ], + [ + 53.5588603, + 9.9332199 + ] + ] + }, + { + "osmId": "842769216", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 254.07168095209664, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4478257, + 10.0012793 + ], + [ + 53.4472681, + 10.0021043 + ], + [ + 53.4470529, + 10.0024227 + ], + [ + 53.4464092, + 10.0033935 + ], + [ + 53.4461213, + 10.0038344 + ] + ] + }, + { + "osmId": "842769217", + "name": null, + "lengthMeters": 136.1468259441134, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4749929, + 9.9996616 + ], + [ + 53.4761659, + 10.0002514 + ] + ] + }, + { + "osmId": "842769218", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 235.11888739619187, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4082396, + 9.9937728 + ], + [ + 53.4082831, + 9.9934915 + ], + [ + 53.4087064, + 9.9905556 + ], + [ + 53.4087392, + 9.9903403 + ], + [ + 53.4087413, + 9.990327 + ] + ] + }, + { + "osmId": "842769219", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 234.47611992129103, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4087135, + 9.9903164 + ], + [ + 53.4087122, + 9.9903283 + ], + [ + 53.4084903, + 9.9917821 + ], + [ + 53.4082073, + 9.9937503 + ] + ] + }, + { + "osmId": "842769220", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 137.70257400063707, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4750274, + 9.999472 + ], + [ + 53.4761669, + 10.0000546 + ], + [ + 53.4762117, + 10.0000801 + ] + ] + }, + { + "osmId": "842769222", + "name": null, + "lengthMeters": 345.11353288321004, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.449493, + 9.9990085 + ], + [ + 53.4507398, + 9.997152 + ], + [ + 53.4510613, + 9.9966868 + ], + [ + 53.4511825, + 9.9965114 + ], + [ + 53.4518273, + 9.9955739 + ] + ] + }, + { + "osmId": "842769226", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 158.18555287844598, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4200694, + 10.0362037 + ], + [ + 53.4202831, + 10.0358497 + ], + [ + 53.4204244, + 10.0356156 + ], + [ + 53.4205632, + 10.0353856 + ], + [ + 53.4210877, + 10.0345368 + ] + ] + }, + { + "osmId": "842769227", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 93.3988584116963, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4210877, + 10.0345368 + ], + [ + 53.4211728, + 10.0343991 + ], + [ + 53.4214255, + 10.0339774 + ], + [ + 53.4215272, + 10.0338077 + ], + [ + 53.4216975, + 10.0335689 + ] + ] + }, + { + "osmId": "844958076", + "name": null, + "lengthMeters": 233.89034209993494, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5660044, + 10.064449 + ], + [ + 53.5661232, + 10.0645734 + ], + [ + 53.5662536, + 10.0647114 + ], + [ + 53.5663825, + 10.0648767 + ], + [ + 53.5665599, + 10.0651471 + ], + [ + 53.5666702, + 10.0653219 + ], + [ + 53.5667661, + 10.0654912 + ], + [ + 53.5668736, + 10.0657044 + ], + [ + 53.5669615, + 10.0659207 + ], + [ + 53.5670576, + 10.0661694 + ], + [ + 53.5671677, + 10.0665144 + ], + [ + 53.5673319, + 10.0671049 + ] + ] + }, + { + "osmId": "844958077", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 186.34720980752198, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5983005, + 9.9035821 + ], + [ + 53.5983172, + 9.9041521 + ], + [ + 53.5983333, + 9.9044359 + ], + [ + 53.598406, + 9.9057197 + ], + [ + 53.5984477, + 9.9063946 + ] + ] + }, + { + "osmId": "844958078", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 95.11340162632624, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5991579, + 9.8993281 + ], + [ + 53.5990254, + 9.8996809 + ], + [ + 53.5989163, + 9.9000299 + ], + [ + 53.5987906, + 9.9004921 + ], + [ + 53.5987654, + 9.9006054 + ] + ] + }, + { + "osmId": "844979845", + "name": null, + "lengthMeters": 271.1772933324241, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4909162, + 10.1527944 + ], + [ + 53.4910559, + 10.1515084 + ], + [ + 53.4912525, + 10.1500496 + ], + [ + 53.4913715, + 10.1492416 + ], + [ + 53.4914438, + 10.1487941 + ] + ] + }, + { + "osmId": "844979846", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 306.36293726242997, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4900193, + 10.1610639 + ], + [ + 53.4901524, + 10.159815 + ], + [ + 53.4905052, + 10.1565056 + ] + ] + }, + { + "osmId": "844979847", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 306.60027322340704, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4904767, + 10.1564948 + ], + [ + 53.4901167, + 10.1598046 + ], + [ + 53.4899808, + 10.1610537 + ] + ] + }, + { + "osmId": "846012126", + "name": null, + "lengthMeters": 256.12189761720145, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4201803, + 13.5628821 + ], + [ + 52.4202543, + 13.5627837 + ], + [ + 52.4204334, + 13.5625512 + ], + [ + 52.4214276, + 13.5612439 + ], + [ + 52.4218753, + 13.5605954 + ], + [ + 52.4219336, + 13.5605116 + ], + [ + 52.4219564, + 13.5604787 + ] + ] + }, + { + "osmId": "846012127", + "name": null, + "lengthMeters": 120.4441835997268, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4209989, + 13.5617183 + ], + [ + 52.4204512, + 13.5624437 + ], + [ + 52.4201563, + 13.5628344 + ] + ] + }, + { + "osmId": "846012128", + "name": null, + "lengthMeters": 195.6484590705491, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4273324, + 13.5522793 + ], + [ + 52.4273236, + 13.5522963 + ], + [ + 52.4272495, + 13.5524389 + ], + [ + 52.4268907, + 13.5530924 + ], + [ + 52.4264371, + 13.5538505 + ], + [ + 52.4261085, + 13.5543494 + ] + ] + }, + { + "osmId": "846012129", + "name": null, + "lengthMeters": 104.79656943361152, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4517135, + 13.514368 + ], + [ + 52.4517096, + 13.5143743 + ], + [ + 52.4515189, + 13.5146871 + ], + [ + 52.4510455, + 13.5154589 + ] + ] + }, + { + "osmId": "846913024", + "name": null, + "lengthMeters": 174.82539477068494, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4929148, + 9.9662228 + ], + [ + 53.492862, + 9.9665279 + ], + [ + 53.4928592, + 9.9665428 + ], + [ + 53.4927643, + 9.9671071 + ], + [ + 53.4926608, + 9.9677111 + ], + [ + 53.4926445, + 9.9678053 + ], + [ + 53.4925697, + 9.9682484 + ], + [ + 53.4925226, + 9.968527 + ], + [ + 53.4924913, + 9.9687674 + ] + ] + }, + { + "osmId": "850055688", + "name": null, + "lengthMeters": 1440.592803434833, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1409437, + 11.4885564 + ], + [ + 48.1409615, + 11.4884635 + ], + [ + 48.1409837, + 11.4883394 + ], + [ + 48.1410108, + 11.4881952 + ], + [ + 48.1410283, + 11.4880787 + ], + [ + 48.1411932, + 11.4871746 + ], + [ + 48.1413727, + 11.4861648 + ], + [ + 48.1414336, + 11.4857848 + ], + [ + 48.1414987, + 11.4853026 + ], + [ + 48.141526, + 11.4850578 + ], + [ + 48.1415434, + 11.484807 + ], + [ + 48.1415582, + 11.4845615 + ], + [ + 48.1415677, + 11.4843226 + ], + [ + 48.1416165, + 11.4824472 + ], + [ + 48.1416267, + 11.4821417 + ], + [ + 48.1416386, + 11.4819082 + ], + [ + 48.1416495, + 11.4817305 + ], + [ + 48.1416599, + 11.4815864 + ], + [ + 48.1416721, + 11.4814322 + ], + [ + 48.1416829, + 11.4812841 + ], + [ + 48.1416959, + 11.4811366 + ], + [ + 48.1417089, + 11.4809979 + ], + [ + 48.1418369, + 11.4797541 + ], + [ + 48.1420166, + 11.4780294 + ], + [ + 48.1421912, + 11.4762849 + ], + [ + 48.1422601, + 11.4756728 + ], + [ + 48.14229, + 11.4753894 + ], + [ + 48.1423198, + 11.4751354 + ], + [ + 48.1423306, + 11.4750511 + ], + [ + 48.1423414, + 11.4749764 + ], + [ + 48.1423529, + 11.4749132 + ], + [ + 48.1423661, + 11.4748622 + ], + [ + 48.1423801, + 11.4748075 + ], + [ + 48.1424039, + 11.4747373 + ], + [ + 48.1424276, + 11.4746801 + ], + [ + 48.1424423, + 11.4746489 + ], + [ + 48.142466, + 11.4746022 + ], + [ + 48.1425006, + 11.4745441 + ], + [ + 48.1425243, + 11.4745093 + ], + [ + 48.1425477, + 11.4744768 + ], + [ + 48.1426639, + 11.4743216 + ], + [ + 48.1443851, + 11.4723353 + ], + [ + 48.1448194, + 11.471848 + ], + [ + 48.1448465, + 11.4718219 + ], + [ + 48.1448782, + 11.4717936 + ], + [ + 48.144922, + 11.4717612 + ], + [ + 48.1449529, + 11.4717437 + ], + [ + 48.1449869, + 11.4717292 + ], + [ + 48.1450225, + 11.4717187 + ], + [ + 48.1450392, + 11.4717162 + ], + [ + 48.1450723, + 11.471713 + ], + [ + 48.1451097, + 11.4717116 + ], + [ + 48.1451782, + 11.4717126 + ], + [ + 48.1452155, + 11.4717124 + ], + [ + 48.145241, + 11.4717105 + ], + [ + 48.1452687, + 11.4717065 + ], + [ + 48.1452937, + 11.4716988 + ] + ] + }, + { + "osmId": "850450867", + "name": null, + "lengthMeters": 92.22522062518424, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3920585, + 13.5152788 + ], + [ + 52.3920508, + 13.5152616 + ], + [ + 52.3915538, + 13.5142003 + ] + ] + }, + { + "osmId": "850450868", + "name": null, + "lengthMeters": 116.48811769890239, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4048348, + 13.5531049 + ], + [ + 52.404788, + 13.5530248 + ], + [ + 52.4047257, + 13.5529244 + ], + [ + 52.4045306, + 13.5526358 + ], + [ + 52.4044371, + 13.5525079 + ], + [ + 52.4042162, + 13.5522269 + ], + [ + 52.4041195, + 13.5521161 + ], + [ + 52.4041005, + 13.5520943 + ], + [ + 52.404028, + 13.5520149 + ] + ] + }, + { + "osmId": "850450869", + "name": null, + "lengthMeters": 469.44666232133335, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4040084, + 13.552067 + ], + [ + 52.4040799, + 13.5521424 + ], + [ + 52.4040968, + 13.5521617 + ], + [ + 52.4041863, + 13.552264 + ], + [ + 52.4044038, + 13.5525322 + ], + [ + 52.4045234, + 13.552701 + ], + [ + 52.4046914, + 13.5529556 + ], + [ + 52.4047591, + 13.553066 + ], + [ + 52.404852, + 13.5532289 + ], + [ + 52.4049392, + 13.5533829 + ], + [ + 52.4050731, + 13.5536566 + ], + [ + 52.4051464, + 13.5538153 + ], + [ + 52.4052223, + 13.5539924 + ], + [ + 52.4053055, + 13.5542164 + ], + [ + 52.4054046, + 13.5545198 + ], + [ + 52.4054569, + 13.554706 + ], + [ + 52.4055888, + 13.5552044 + ], + [ + 52.4056714, + 13.555542 + ], + [ + 52.4057543, + 13.5558786 + ], + [ + 52.4058712, + 13.5562753 + ], + [ + 52.4060008, + 13.556641 + ], + [ + 52.406149, + 13.5569908 + ], + [ + 52.4064207, + 13.557518 + ], + [ + 52.4064507, + 13.55757 + ] + ] + }, + { + "osmId": "850450870", + "name": null, + "lengthMeters": 351.3581761536773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4065337, + 13.5574259 + ], + [ + 52.4064947, + 13.5573646 + ], + [ + 52.4063691, + 13.5571537 + ], + [ + 52.40623, + 13.5568922 + ], + [ + 52.4060762, + 13.5565673 + ], + [ + 52.4059346, + 13.5562143 + ], + [ + 52.4058093, + 13.5558422 + ], + [ + 52.4057141, + 13.5555129 + ], + [ + 52.4056266, + 13.555179 + ], + [ + 52.405495, + 13.5546762 + ], + [ + 52.4054136, + 13.5544154 + ], + [ + 52.4053185, + 13.5541411 + ], + [ + 52.4052441, + 13.5539518 + ], + [ + 52.4051678, + 13.5537681 + ], + [ + 52.4050231, + 13.5534531 + ], + [ + 52.4049467, + 13.5533041 + ], + [ + 52.4048348, + 13.5531049 + ] + ] + }, + { + "osmId": "850450871", + "name": null, + "lengthMeters": 163.82795523380656, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4088705, + 13.5611427 + ], + [ + 52.4087114, + 13.5609343 + ], + [ + 52.4086089, + 13.5607906 + ], + [ + 52.4085085, + 13.5606453 + ], + [ + 52.4083956, + 13.5604662 + ], + [ + 52.4082049, + 13.5601546 + ], + [ + 52.4078148, + 13.5594632 + ] + ] + }, + { + "osmId": "850450872", + "name": null, + "lengthMeters": 510.4884118139645, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4088486, + 13.5611896 + ], + [ + 52.4088523, + 13.5611943 + ], + [ + 52.4090376, + 13.5614235 + ], + [ + 52.4093894, + 13.5618462 + ], + [ + 52.4103427, + 13.5629885 + ], + [ + 52.4105067, + 13.5631849 + ], + [ + 52.4108308, + 13.5635756 + ], + [ + 52.4110507, + 13.5638361 + ], + [ + 52.4115882, + 13.5644778 + ], + [ + 52.4117708, + 13.5646909 + ], + [ + 52.4120293, + 13.564977 + ], + [ + 52.4121612, + 13.5651142 + ], + [ + 52.4123075, + 13.5652582 + ], + [ + 52.4123182, + 13.5652683 + ], + [ + 52.412451, + 13.5653904 + ], + [ + 52.4126004, + 13.5655164 + ] + ] + }, + { + "osmId": "850450873", + "name": null, + "lengthMeters": 510.2088775663949, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4126232, + 13.5654594 + ], + [ + 52.4124663, + 13.5653297 + ], + [ + 52.4123253, + 13.5652012 + ], + [ + 52.4120512, + 13.5649247 + ], + [ + 52.4117912, + 13.5646396 + ], + [ + 52.4108512, + 13.5635233 + ], + [ + 52.4103656, + 13.5629433 + ], + [ + 52.409409, + 13.5617943 + ], + [ + 52.4090372, + 13.561347 + ], + [ + 52.4088744, + 13.5611477 + ], + [ + 52.4088705, + 13.5611427 + ] + ] + }, + { + "osmId": "851850515", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 229.28882211897303, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1450254, + 11.4950372 + ], + [ + 48.1449862, + 11.4953921 + ], + [ + 48.1448443, + 11.4967477 + ], + [ + 48.1447028, + 11.4980895 + ] + ] + }, + { + "osmId": "851850519", + "name": null, + "lengthMeters": 103.35099715983637, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1410241, + 11.5531466 + ], + [ + 48.1410532, + 11.5528206 + ], + [ + 48.1410956, + 11.5522902 + ], + [ + 48.1411377, + 11.5517642 + ] + ] + }, + { + "osmId": "851850524", + "name": null, + "lengthMeters": 98.7179145344825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1334884, + 11.6423271 + ], + [ + 48.1334957, + 11.6422683 + ], + [ + 48.1335505, + 11.6418247 + ], + [ + 48.1336168, + 11.6412884 + ], + [ + 48.1336493, + 11.6410189 + ] + ] + }, + { + "osmId": "851850529", + "name": null, + "lengthMeters": 208.3408333116832, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1169836, + 11.5709848 + ], + [ + 48.1176933, + 11.5735822 + ] + ] + }, + { + "osmId": "851850531", + "name": null, + "lengthMeters": 88.21522929523336, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1176054, + 11.56311 + ], + [ + 48.1174102, + 11.5635373 + ], + [ + 48.1172523, + 11.5639345 + ], + [ + 48.1172334, + 11.5639821 + ], + [ + 48.1171812, + 11.5641135 + ] + ] + }, + { + "osmId": "851850532", + "name": null, + "lengthMeters": 116.32894025682934, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356326, + 11.5273874 + ], + [ + 48.1357599, + 11.5272273 + ], + [ + 48.1364171, + 11.5264329 + ], + [ + 48.1364448, + 11.5263994 + ] + ] + }, + { + "osmId": "851850533", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 170.82713714966962, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.128754, + 11.5396395 + ], + [ + 48.1291645, + 11.5385 + ], + [ + 48.1294837, + 11.537614 + ] + ] + }, + { + "osmId": "851850534", + "name": "S\u00fcdring", + "lengthMeters": 96.77506641066003, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417756, + 11.52976 + ], + [ + 48.1416311, + 11.529435 + ], + [ + 48.1414877, + 11.5291127 + ], + [ + 48.1412884, + 11.5286793 + ] + ] + }, + { + "osmId": "851850535", + "name": null, + "lengthMeters": 130.33519688983654, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1267961, + 11.6040689 + ], + [ + 48.1266758, + 11.6038479 + ], + [ + 48.1265632, + 11.6036323 + ], + [ + 48.1264207, + 11.6033279 + ], + [ + 48.1260982, + 11.6026588 + ] + ] + }, + { + "osmId": "851850537", + "name": null, + "lengthMeters": 714.1242967145381, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1466438, + 11.4748639 + ], + [ + 48.1466063, + 11.4753409 + ], + [ + 48.1463825, + 11.4783309 + ], + [ + 48.1463656, + 11.4785699 + ], + [ + 48.1462271, + 11.4805225 + ], + [ + 48.1461648, + 11.4813905 + ], + [ + 48.1459464, + 11.4844322 + ] + ] + }, + { + "osmId": "851850538", + "name": null, + "lengthMeters": 77.84520093125143, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416338, + 11.5427273 + ], + [ + 48.1416332, + 11.5427357 + ], + [ + 48.1416176, + 11.5429446 + ], + [ + 48.1415576, + 11.5437702 + ] + ] + }, + { + "osmId": "851850539", + "name": null, + "lengthMeters": 122.34837943201998, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419235, + 11.5500465 + ], + [ + 48.1419265, + 11.5499876 + ], + [ + 48.141937, + 11.5498195 + ], + [ + 48.1419634, + 11.5494412 + ], + [ + 48.1420273, + 11.5485943 + ], + [ + 48.1420418, + 11.5484072 + ] + ] + }, + { + "osmId": "851850540", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 324.97163579808466, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1411509, + 11.5464601 + ], + [ + 48.1412322, + 11.5452312 + ], + [ + 48.1412643, + 11.5448133 + ], + [ + 48.1413074, + 11.5442514 + ], + [ + 48.1414835, + 11.5421091 + ] + ] + }, + { + "osmId": "851850541", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 176.05004569197735, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416828, + 11.5293295 + ], + [ + 48.1416259, + 11.5291831 + ], + [ + 48.1415244, + 11.5289397 + ], + [ + 48.1414272, + 11.5287298 + ], + [ + 48.1413082, + 11.5284956 + ], + [ + 48.1411811, + 11.5282673 + ], + [ + 48.1410814, + 11.5281096 + ], + [ + 48.1410132, + 11.5280038 + ], + [ + 48.1409038, + 11.5278475 + ], + [ + 48.1407802, + 11.5276835 + ], + [ + 48.1406995, + 11.5275802 + ], + [ + 48.140663, + 11.5275338 + ] + ] + }, + { + "osmId": "851850542", + "name": null, + "lengthMeters": 105.73442111844682, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1412392, + 11.5457104 + ], + [ + 48.1412775, + 11.5451608 + ], + [ + 48.141278, + 11.5451542 + ], + [ + 48.1413006, + 11.5448489 + ], + [ + 48.1413028, + 11.5448196 + ], + [ + 48.1413416, + 11.5442937 + ] + ] + }, + { + "osmId": "851850543", + "name": "Fernbahn", + "lengthMeters": 500.9780815696698, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1424677, + 11.5351607 + ], + [ + 48.1424562, + 11.5355032 + ], + [ + 48.1424484, + 11.5359174 + ], + [ + 48.1424544, + 11.5365037 + ], + [ + 48.142472, + 11.5372294 + ], + [ + 48.1424761, + 11.5375712 + ], + [ + 48.1424728, + 11.5377896 + ], + [ + 48.1424677, + 11.5380123 + ], + [ + 48.1424576, + 11.538312 + ], + [ + 48.1424434, + 11.538619 + ], + [ + 48.1423992, + 11.5395107 + ], + [ + 48.1423713, + 11.5400769 + ], + [ + 48.1423461, + 11.5405578 + ], + [ + 48.1423299, + 11.5408367 + ], + [ + 48.1423116, + 11.5411099 + ], + [ + 48.1422533, + 11.5418942 + ], + [ + 48.1422531, + 11.5418973 + ] + ] + }, + { + "osmId": "851851029", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 1756.5265746026191, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1573141, + 11.4810712 + ], + [ + 48.157062, + 11.4811106 + ], + [ + 48.156685, + 11.4812001 + ], + [ + 48.1563733, + 11.4812982 + ], + [ + 48.155923, + 11.4814387 + ], + [ + 48.1551014, + 11.4817364 + ], + [ + 48.1548762, + 11.4818206 + ], + [ + 48.1546371, + 11.48191 + ], + [ + 48.1542945, + 11.4820491 + ], + [ + 48.1540408, + 11.4821605 + ], + [ + 48.1538154, + 11.482267 + ], + [ + 48.1534951, + 11.4824247 + ], + [ + 48.1532675, + 11.4825438 + ], + [ + 48.1531448, + 11.4826081 + ], + [ + 48.152824, + 11.4827895 + ], + [ + 48.1524979, + 11.4829872 + ], + [ + 48.1523513, + 11.4830853 + ], + [ + 48.1521817, + 11.4831873 + ], + [ + 48.151864, + 11.4834273 + ], + [ + 48.1515118, + 11.4837031 + ], + [ + 48.151168, + 11.4839935 + ], + [ + 48.1508074, + 11.4843409 + ], + [ + 48.1504898, + 11.4846544 + ], + [ + 48.1497705, + 11.4854186 + ], + [ + 48.1492009, + 11.4860035 + ], + [ + 48.1484089, + 11.4868367 + ], + [ + 48.1481794, + 11.4870928 + ], + [ + 48.1479297, + 11.4873925 + ], + [ + 48.1477224, + 11.4876316 + ], + [ + 48.1474589, + 11.48797 + ], + [ + 48.147334, + 11.4881308 + ], + [ + 48.1471376, + 11.4883946 + ], + [ + 48.1468852, + 11.4887599 + ], + [ + 48.1468676, + 11.4887865 + ], + [ + 48.1465957, + 11.4892017 + ], + [ + 48.1464928, + 11.4893681 + ], + [ + 48.1461908, + 11.4899227 + ], + [ + 48.1460136, + 11.4903058 + ], + [ + 48.1458446, + 11.4907179 + ], + [ + 48.1457712, + 11.490917 + ], + [ + 48.1456688, + 11.4912198 + ], + [ + 48.1455785, + 11.4915089 + ], + [ + 48.1454985, + 11.4918152 + ], + [ + 48.1454187, + 11.4921403 + ], + [ + 48.1453036, + 11.4927265 + ], + [ + 48.1451383, + 11.4939635 + ] + ] + }, + { + "osmId": "851851030", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 162.78310898490975, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1594814, + 11.4811802 + ], + [ + 48.1591543, + 11.4811045 + ], + [ + 48.1588905, + 11.4810649 + ], + [ + 48.1586183, + 11.4810352 + ], + [ + 48.1583852, + 11.4810179 + ], + [ + 48.1581263, + 11.4810146 + ], + [ + 48.1580237, + 11.4810186 + ] + ] + }, + { + "osmId": "851851031", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 835.6001022428029, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2476669, + 11.5522207 + ], + [ + 48.2465353, + 11.551691 + ], + [ + 48.2453997, + 11.5511656 + ], + [ + 48.2451911, + 11.5510682 + ], + [ + 48.2431315, + 11.5501063 + ], + [ + 48.2421297, + 11.549638 + ], + [ + 48.2404893, + 11.5488788 + ] + ] + }, + { + "osmId": "851864613", + "name": null, + "lengthMeters": 92.75084105651734, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.180295, + 11.6442578 + ], + [ + 48.1807868, + 11.6440829 + ], + [ + 48.181106, + 11.6439653 + ] + ] + }, + { + "osmId": "851864614", + "name": null, + "lengthMeters": 92.94088410726414, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1810974, + 11.6439116 + ], + [ + 48.1807801, + 11.6440319 + ], + [ + 48.1802848, + 11.6442049 + ] + ] + }, + { + "osmId": "851864615", + "name": null, + "lengthMeters": 118.39470327659461, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1835997, + 11.631345 + ], + [ + 48.1830754, + 11.6327349 + ] + ] + }, + { + "osmId": "851864617", + "name": null, + "lengthMeters": 86.46152101354494, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1349853, + 11.6205752 + ], + [ + 48.1350578, + 11.6211279 + ], + [ + 48.135115, + 11.6217236 + ] + ] + }, + { + "osmId": "851864618", + "name": null, + "lengthMeters": 144.60466643767046, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1355067, + 11.6229563 + ], + [ + 48.1354846, + 11.6227334 + ], + [ + 48.1353795, + 11.6218655 + ], + [ + 48.1352662, + 11.6210416 + ] + ] + }, + { + "osmId": "852068213", + "name": "Isartalbahn", + "lengthMeters": 720.1043264406647, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 47.996651, + 11.4614537 + ], + [ + 47.9965471, + 11.461423 + ], + [ + 47.9964163, + 11.4613914 + ], + [ + 47.9963056, + 11.4613486 + ], + [ + 47.9961297, + 11.4612787 + ], + [ + 47.9959703, + 11.4611915 + ], + [ + 47.9956624, + 11.461011 + ], + [ + 47.9950394, + 11.4606061 + ], + [ + 47.9946777, + 11.4603718 + ], + [ + 47.9943406, + 11.4601465 + ], + [ + 47.9940373, + 11.459944 + ], + [ + 47.9936206, + 11.4596453 + ], + [ + 47.9932953, + 11.459382 + ], + [ + 47.9922595, + 11.4584191 + ], + [ + 47.9920977, + 11.4582555 + ], + [ + 47.9915147, + 11.4576905 + ], + [ + 47.9913952, + 11.4575747 + ], + [ + 47.9912355, + 11.4574189 + ], + [ + 47.9910562, + 11.4572481 + ], + [ + 47.9909065, + 11.4571051 + ] + ] + }, + { + "osmId": "852068215", + "name": "Isartalbahn", + "lengthMeters": 1209.350095207243, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0147139, + 11.4756587 + ], + [ + 48.0144277, + 11.4748562 + ], + [ + 48.0140199, + 11.4737128 + ], + [ + 48.013875, + 11.473329 + ], + [ + 48.0137658, + 11.4730673 + ], + [ + 48.0136777, + 11.4728759 + ], + [ + 48.0135523, + 11.4726368 + ], + [ + 48.0134946, + 11.4725299 + ], + [ + 48.0132497, + 11.4721395 + ], + [ + 48.0131116, + 11.4719184 + ], + [ + 48.0129686, + 11.4717145 + ], + [ + 48.0128254, + 11.4715308 + ], + [ + 48.0126834, + 11.4713702 + ], + [ + 48.0125329, + 11.4712143 + ], + [ + 48.0123816, + 11.4710692 + ], + [ + 48.0122127, + 11.4709206 + ], + [ + 48.0120403, + 11.4707892 + ], + [ + 48.0118668, + 11.4706571 + ], + [ + 48.0116863, + 11.4705398 + ], + [ + 48.0112686, + 11.4703174 + ], + [ + 48.0106763, + 11.4700288 + ], + [ + 48.010086, + 11.4697472 + ], + [ + 48.009588, + 11.4695116 + ], + [ + 48.0088882, + 11.4691807 + ], + [ + 48.0086605, + 11.4690826 + ], + [ + 48.0084635, + 11.4689954 + ], + [ + 48.008276, + 11.468923 + ], + [ + 48.0080967, + 11.4688574 + ], + [ + 48.0078804, + 11.4687808 + ], + [ + 48.0077219, + 11.4687386 + ], + [ + 48.0075416, + 11.4686957 + ], + [ + 48.0073509, + 11.4686549 + ], + [ + 48.0070523, + 11.4685956 + ], + [ + 48.0061612, + 11.468461 + ], + [ + 48.0057054, + 11.4684047 + ], + [ + 48.0057007, + 11.468404 + ] + ] + }, + { + "osmId": "852068216", + "name": "Isartalbahn", + "lengthMeters": 143.4350851703925, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0154672, + 11.4772167 + ], + [ + 48.0151658, + 11.4766928 + ], + [ + 48.0150225, + 11.4764104 + ], + [ + 48.0149101, + 11.4761705 + ], + [ + 48.0148179, + 11.4759417 + ], + [ + 48.0147139, + 11.4756587 + ] + ] + }, + { + "osmId": "852068218", + "name": "Isartalbahn", + "lengthMeters": 982.2739849362251, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0302487, + 11.4960951 + ], + [ + 48.0299725, + 11.4957111 + ], + [ + 48.0299511, + 11.4956814 + ], + [ + 48.0295026, + 11.495058 + ], + [ + 48.0290813, + 11.4944723 + ], + [ + 48.0286792, + 11.4939151 + ], + [ + 48.0284768, + 11.4936412 + ], + [ + 48.0282749, + 11.4933739 + ], + [ + 48.0278637, + 11.4928855 + ], + [ + 48.0274484, + 11.4924555 + ], + [ + 48.0274059, + 11.49241 + ], + [ + 48.0273439, + 11.4923512 + ], + [ + 48.0271269, + 11.4921452 + ], + [ + 48.0270416, + 11.4920716 + ], + [ + 48.0268412, + 11.4918985 + ], + [ + 48.026336, + 11.4915151 + ], + [ + 48.0258262, + 11.4911526 + ], + [ + 48.0252177, + 11.4907292 + ], + [ + 48.024627, + 11.4903144 + ], + [ + 48.0236363, + 11.4896076 + ], + [ + 48.023234, + 11.4893235 + ], + [ + 48.0228679, + 11.489052 + ] + ] + }, + { + "osmId": "852068221", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 118.96422566889262, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1284233, + 11.5375392 + ], + [ + 48.1287292, + 11.5374488 + ], + [ + 48.1290309, + 11.5373372 + ], + [ + 48.1292348, + 11.537242 + ], + [ + 48.1294542, + 11.5371212 + ] + ] + }, + { + "osmId": "852068222", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 119.92853339078286, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1294608, + 11.53706 + ], + [ + 48.1292212, + 11.5371922 + ], + [ + 48.1290184, + 11.5372861 + ], + [ + 48.1287211, + 11.5373948 + ], + [ + 48.1284219, + 11.5374829 + ] + ] + }, + { + "osmId": "852169282", + "name": null, + "lengthMeters": 100.76029122911724, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347441, + 11.6222819 + ], + [ + 48.1349338, + 11.6236096 + ] + ] + }, + { + "osmId": "852169283", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 80.33114214148061, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347967, + 11.6222593 + ], + [ + 48.1349489, + 11.6233175 + ] + ] + }, + { + "osmId": "852169285", + "name": null, + "lengthMeters": 151.80235252474833, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1353146, + 11.6268235 + ], + [ + 48.1353528, + 11.6278722 + ], + [ + 48.135377, + 11.6285335 + ], + [ + 48.1353874, + 11.6288662 + ] + ] + }, + { + "osmId": "852169287", + "name": null, + "lengthMeters": 88.7301814364719, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1352735, + 11.6329385 + ], + [ + 48.1352909, + 11.6327404 + ], + [ + 48.1353132, + 11.6325138 + ], + [ + 48.1353692, + 11.6320693 + ], + [ + 48.1353991, + 11.6318322 + ], + [ + 48.1354082, + 11.6317603 + ] + ] + }, + { + "osmId": "852169288", + "name": null, + "lengthMeters": 172.82166471518156, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1546432, + 11.4449163 + ], + [ + 48.1547416, + 11.4446382 + ], + [ + 48.1548639, + 11.4443309 + ], + [ + 48.1549913, + 11.4440422 + ], + [ + 48.1550055, + 11.44401 + ], + [ + 48.1551375, + 11.4437351 + ], + [ + 48.1552365, + 11.4435424 + ], + [ + 48.1555175, + 11.4429953 + ] + ] + }, + { + "osmId": "852169289", + "name": null, + "lengthMeters": 240.9336777607117, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.154355, + 11.4466833 + ], + [ + 48.1544345, + 11.4465506 + ], + [ + 48.1547594, + 11.4460339 + ], + [ + 48.1551963, + 11.4454319 + ], + [ + 48.155822, + 11.4445726 + ], + [ + 48.15592, + 11.4444399 + ] + ] + }, + { + "osmId": "852169290", + "name": null, + "lengthMeters": 126.30406534587874, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1536673, + 11.4480364 + ], + [ + 48.1537473, + 11.4478563 + ], + [ + 48.1538534, + 11.4476273 + ], + [ + 48.1540148, + 11.4472973 + ], + [ + 48.154171, + 11.4470044 + ], + [ + 48.1543002, + 11.4467789 + ], + [ + 48.1543374, + 11.4467139 + ], + [ + 48.154355, + 11.4466833 + ] + ] + }, + { + "osmId": "852169295", + "name": null, + "lengthMeters": 166.03446233293752, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1398669, + 11.5219258 + ], + [ + 48.1398749, + 11.521913 + ], + [ + 48.1403554, + 11.5212714 + ], + [ + 48.1409701, + 11.5204181 + ] + ] + }, + { + "osmId": "852169300", + "name": null, + "lengthMeters": 148.542264427104, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1463082, + 11.4900685 + ], + [ + 48.1462569, + 11.4911911 + ], + [ + 48.146244, + 11.4913786 + ], + [ + 48.1462288, + 11.4915994 + ], + [ + 48.1462107, + 11.4918627 + ], + [ + 48.1461899, + 11.492062 + ] + ] + }, + { + "osmId": "852169301", + "name": null, + "lengthMeters": 160.62021092354615, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1462288, + 11.4920714 + ], + [ + 48.1462355, + 11.4920024 + ], + [ + 48.1462492, + 11.4918624 + ], + [ + 48.1462989, + 11.4911885 + ], + [ + 48.1463502, + 11.4899948 + ], + [ + 48.146354, + 11.4899155 + ] + ] + }, + { + "osmId": "853041436", + "name": "Ostbahn", + "lengthMeters": 850.2196293694782, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5117755, + 13.5970678 + ], + [ + 52.5116004, + 13.6013521 + ], + [ + 52.5115624, + 13.6024532 + ], + [ + 52.511553, + 13.6030912 + ], + [ + 52.5115561, + 13.6038096 + ], + [ + 52.5115724, + 13.6045095 + ], + [ + 52.5116047, + 13.6052524 + ], + [ + 52.5116696, + 13.6065057 + ], + [ + 52.511684, + 13.6068393 + ], + [ + 52.511719, + 13.6077777 + ], + [ + 52.5117392, + 13.6083326 + ], + [ + 52.5117607, + 13.6088365 + ], + [ + 52.5117818, + 13.6092154 + ], + [ + 52.5118099, + 13.6096037 + ] + ] + }, + { + "osmId": "853326968", + "name": null, + "lengthMeters": 261.7189712775704, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1497025, + 11.4614502 + ], + [ + 48.1494151, + 11.4624107 + ], + [ + 48.1490837, + 11.4635907 + ], + [ + 48.1489616, + 11.4640056 + ], + [ + 48.1487748, + 11.4646369 + ], + [ + 48.1487611, + 11.4646833 + ] + ] + }, + { + "osmId": "853326972", + "name": null, + "lengthMeters": 152.3512712491174, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1501148, + 11.4617216 + ], + [ + 48.1502995, + 11.4611064 + ], + [ + 48.1506805, + 11.4598512 + ] + ] + }, + { + "osmId": "853326974", + "name": null, + "lengthMeters": 218.67733904707222, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.131354, + 11.4326916 + ], + [ + 48.1304144, + 11.4321182 + ], + [ + 48.1299846, + 11.4318366 + ], + [ + 48.1295498, + 11.4315216 + ] + ] + }, + { + "osmId": "853326978", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 501.9993706885897, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0982007, + 11.4067529 + ], + [ + 48.0976689, + 11.4061703 + ], + [ + 48.0971218, + 11.4055541 + ], + [ + 48.0965857, + 11.4049292 + ], + [ + 48.095593, + 11.4037117 + ], + [ + 48.0948739, + 11.4027939 + ], + [ + 48.0946766, + 11.4025324 + ] + ] + }, + { + "osmId": "853326979", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 792.8414024014768, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0926405, + 11.4000729 + ], + [ + 48.0927935, + 11.4002629 + ], + [ + 48.0933472, + 11.4009591 + ], + [ + 48.0935038, + 11.4011627 + ], + [ + 48.0942685, + 11.4021196 + ], + [ + 48.0946048, + 11.4025423 + ], + [ + 48.0948531, + 11.402854 + ], + [ + 48.09557, + 11.4037527 + ], + [ + 48.0965591, + 11.4049697 + ], + [ + 48.0970976, + 11.4055957 + ], + [ + 48.0976422, + 11.4062141 + ], + [ + 48.0981768, + 11.4067955 + ] + ] + }, + { + "osmId": "853326980", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 285.5780041887615, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0927426, + 11.400038 + ], + [ + 48.0926365, + 11.3999159 + ], + [ + 48.0919439, + 11.3991338 + ], + [ + 48.090743, + 11.3976269 + ] + ] + }, + { + "osmId": "853326981", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 741.8255304755752, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0737836, + 11.3788422 + ], + [ + 48.0733471, + 11.37843 + ], + [ + 48.073085, + 11.3781816 + ], + [ + 48.0727216, + 11.3778395 + ], + [ + 48.0722339, + 11.3774205 + ], + [ + 48.0716832, + 11.3769359 + ], + [ + 48.0714199, + 11.3766865 + ], + [ + 48.0711518, + 11.3764523 + ], + [ + 48.0709753, + 11.3763062 + ], + [ + 48.0706597, + 11.3760638 + ], + [ + 48.0701688, + 11.3756798 + ], + [ + 48.0699844, + 11.3755371 + ], + [ + 48.0697739, + 11.3754027 + ], + [ + 48.0691993, + 11.3750145 + ], + [ + 48.0686508, + 11.3746326 + ], + [ + 48.0685017, + 11.3745357 + ], + [ + 48.067916, + 11.3741218 + ] + ] + }, + { + "osmId": "853326982", + "name": "M\u00fcnchen\u2013Garmisch-Partenkirchen", + "lengthMeters": 472.7572460214831, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0690748, + 11.3750622 + ], + [ + 48.0694045, + 11.3752882 + ], + [ + 48.0695542, + 11.3753799 + ], + [ + 48.0697327, + 11.3755114 + ], + [ + 48.0699375, + 11.3756689 + ], + [ + 48.0706116, + 11.3761823 + ], + [ + 48.0710602, + 11.3765299 + ], + [ + 48.071382, + 11.376784 + ], + [ + 48.0717769, + 11.3771059 + ], + [ + 48.0722184, + 11.3774775 + ], + [ + 48.0725809, + 11.3777785 + ], + [ + 48.0728356, + 11.3780209 + ] + ] + }, + { + "osmId": "853326985", + "name": null, + "lengthMeters": 260.78386695060226, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1449031, + 11.4981243 + ], + [ + 48.144541, + 11.501597 + ] + ] + }, + { + "osmId": "853504471", + "name": null, + "lengthMeters": 364.67133985750064, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15306, + 11.4438954 + ], + [ + 48.1530831, + 11.4436462 + ], + [ + 48.1531802, + 11.4425975 + ], + [ + 48.1533401, + 11.4409542 + ], + [ + 48.1533749, + 11.4405972 + ], + [ + 48.1534276, + 11.4400465 + ], + [ + 48.1535242, + 11.4390369 + ], + [ + 48.1535249, + 11.4390292 + ] + ] + }, + { + "osmId": "853504472", + "name": null, + "lengthMeters": 252.5115470380588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.153241, + 11.4423993 + ], + [ + 48.1533765, + 11.4409646 + ], + [ + 48.1534239, + 11.4404622 + ], + [ + 48.1534448, + 11.4402342 + ], + [ + 48.1535241, + 11.4394013 + ], + [ + 48.1535594, + 11.439029 + ] + ] + }, + { + "osmId": "853504473", + "name": null, + "lengthMeters": 1150.4126716589897, + "maxSpeedKph": 150.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1670374, + 11.3708551 + ], + [ + 48.1676078, + 11.3688802 + ], + [ + 48.1690347, + 11.3639405 + ], + [ + 48.169254, + 11.3631807 + ], + [ + 48.1704714, + 11.3589641 + ], + [ + 48.171153, + 11.3566227 + ] + ] + }, + { + "osmId": "853536689", + "name": null, + "lengthMeters": 352.5603251145685, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1387177, + 11.4024736 + ], + [ + 48.1385457, + 11.4018887 + ], + [ + 48.1384015, + 11.4013986 + ], + [ + 48.1383177, + 11.4011116 + ], + [ + 48.1382677, + 11.4009414 + ], + [ + 48.1379013, + 11.3996932 + ], + [ + 48.1378819, + 11.3996274 + ], + [ + 48.1376947, + 11.3990128 + ], + [ + 48.137427, + 11.398134 + ] + ] + }, + { + "osmId": "853536690", + "name": null, + "lengthMeters": 280.3399220218279, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1373509, + 11.3981857 + ], + [ + 48.1376175, + 11.3990571 + ], + [ + 48.1378063, + 11.3996742 + ], + [ + 48.1380051, + 11.4003252 + ], + [ + 48.1382052, + 11.4009816 + ], + [ + 48.1382644, + 11.4011757 + ], + [ + 48.1382801, + 11.4012272 + ], + [ + 48.1383391, + 11.4014237 + ], + [ + 48.1383434, + 11.401438 + ], + [ + 48.1383997, + 11.4016212 + ] + ] + }, + { + "osmId": "853536692", + "name": null, + "lengthMeters": 654.9653732501422, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1415347, + 11.4208133 + ], + [ + 48.1414081, + 11.4199119 + ], + [ + 48.1413284, + 11.4193553 + ], + [ + 48.1410315, + 11.4172413 + ], + [ + 48.1405882, + 11.414085 + ], + [ + 48.1403767, + 11.4125688 + ], + [ + 48.1403218, + 11.4121755 + ] + ] + }, + { + "osmId": "853536693", + "name": null, + "lengthMeters": 315.4456523898583, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1426646, + 11.4322105 + ], + [ + 48.1426761, + 11.4323148 + ], + [ + 48.142887, + 11.4342151 + ], + [ + 48.1429877, + 11.4351227 + ], + [ + 48.1430265, + 11.4355045 + ], + [ + 48.1430821, + 11.4360525 + ], + [ + 48.1431255, + 11.4364053 + ] + ] + }, + { + "osmId": "853536694", + "name": null, + "lengthMeters": 315.25350359193806, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1431644, + 11.4363924 + ], + [ + 48.1431199, + 11.436043 + ], + [ + 48.1430237, + 11.4351086 + ], + [ + 48.1429239, + 11.4342108 + ], + [ + 48.1427156, + 11.4323051 + ], + [ + 48.1427041, + 11.4322001 + ] + ] + }, + { + "osmId": "854659039", + "name": null, + "lengthMeters": 93.0229890110254, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5016304, + 13.4764963 + ], + [ + 52.5014699, + 13.4773253 + ], + [ + 52.5013635, + 13.4777984 + ] + ] + }, + { + "osmId": "854659041", + "name": null, + "lengthMeters": 119.05731909081001, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.500389, + 13.4809271 + ], + [ + 52.5007083, + 13.4799527 + ], + [ + 52.5008839, + 13.4793677 + ] + ] + }, + { + "osmId": "855240260", + "name": null, + "lengthMeters": 388.67229353562897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4561372, + 13.5600972 + ], + [ + 52.4560538, + 13.5595236 + ], + [ + 52.456039, + 13.5594247 + ], + [ + 52.455916, + 13.5586012 + ], + [ + 52.4558926, + 13.5584601 + ], + [ + 52.4558718, + 13.5583347 + ], + [ + 52.4558574, + 13.5582271 + ], + [ + 52.4558327, + 13.5580581 + ], + [ + 52.4558017, + 13.5577944 + ], + [ + 52.4557705, + 13.5574753 + ], + [ + 52.4557457, + 13.5572269 + ], + [ + 52.4557229, + 13.5569446 + ], + [ + 52.455717, + 13.5568524 + ], + [ + 52.4557023, + 13.5564766 + ], + [ + 52.4556956, + 13.5560836 + ], + [ + 52.4557008, + 13.5556469 + ], + [ + 52.4557263, + 13.5552244 + ], + [ + 52.4557392, + 13.555027 + ], + [ + 52.4557599, + 13.5548233 + ], + [ + 52.4557791, + 13.5546737 + ], + [ + 52.4558076, + 13.554452 + ] + ] + }, + { + "osmId": "856139546", + "name": null, + "lengthMeters": 189.4282371162205, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.132932, + 11.6265874 + ], + [ + 48.1329812, + 11.6263393 + ], + [ + 48.1330761, + 11.6258002 + ], + [ + 48.1333598, + 11.6245623 + ], + [ + 48.1334655, + 11.6241654 + ] + ] + }, + { + "osmId": "856142426", + "name": null, + "lengthMeters": 103.74805069760698, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1339933, + 11.623009 + ], + [ + 48.1340481, + 11.6226909 + ], + [ + 48.1340741, + 11.62254 + ], + [ + 48.1341699, + 11.6220451 + ], + [ + 48.1342332, + 11.6216582 + ] + ] + }, + { + "osmId": "856142432", + "name": null, + "lengthMeters": 154.59150197538693, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1341085, + 11.6232118 + ], + [ + 48.1341913, + 11.6227988 + ], + [ + 48.1342746, + 11.6222945 + ], + [ + 48.1343113, + 11.6219137 + ], + [ + 48.134322, + 11.6215489 + ], + [ + 48.1343281, + 11.6211665 + ] + ] + }, + { + "osmId": "856142437", + "name": null, + "lengthMeters": 278.89466518637727, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1342039, + 11.6234079 + ], + [ + 48.134193, + 11.6234611 + ], + [ + 48.134116, + 11.6237267 + ], + [ + 48.1340995, + 11.6237747 + ], + [ + 48.1340328, + 11.6239694 + ], + [ + 48.133937, + 11.6242162 + ], + [ + 48.1339496, + 11.6241869 + ], + [ + 48.1338189, + 11.6245005 + ], + [ + 48.1337374, + 11.6247097 + ], + [ + 48.1336407, + 11.6249498 + ], + [ + 48.1336274, + 11.6249828 + ], + [ + 48.1334966, + 11.6253052 + ], + [ + 48.133422, + 11.6254912 + ], + [ + 48.1334062, + 11.6255305 + ], + [ + 48.1333051, + 11.6257839 + ], + [ + 48.1332712, + 11.6258679 + ], + [ + 48.1331198, + 11.6262426 + ], + [ + 48.1330241, + 11.6264719 + ], + [ + 48.132976, + 11.6265997 + ] + ] + }, + { + "osmId": "862218786", + "name": null, + "lengthMeters": 100.0790832992289, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1006203, + 11.6024763 + ], + [ + 48.0997628, + 11.6028857 + ] + ] + }, + { + "osmId": "862218787", + "name": null, + "lengthMeters": 110.1016240935937, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1010656, + 11.6036254 + ], + [ + 48.1008959, + 11.6037144 + ], + [ + 48.1005301, + 11.6039027 + ], + [ + 48.1003535, + 11.6039939 + ], + [ + 48.1003435, + 11.6039991 + ], + [ + 48.1001963, + 11.6040751 + ], + [ + 48.1001297, + 11.6041095 + ] + ] + }, + { + "osmId": "863972055", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 435.2043702042084, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4011419, + 10.0695652 + ], + [ + 53.4015123, + 10.0688879 + ], + [ + 53.4022085, + 10.0676152 + ], + [ + 53.4032447, + 10.0659817 + ], + [ + 53.4038192, + 10.0650811 + ], + [ + 53.4039126, + 10.0649348 + ] + ] + }, + { + "osmId": "863972060", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 1058.9556754658156, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4127308, + 10.051476 + ], + [ + 53.4130044, + 10.051007 + ], + [ + 53.4141714, + 10.0488317 + ], + [ + 53.4149052, + 10.0473109 + ], + [ + 53.4156182, + 10.0457767 + ], + [ + 53.4164143, + 10.0438321 + ], + [ + 53.4165025, + 10.0436098 + ], + [ + 53.4169914, + 10.0423783 + ], + [ + 53.4170393, + 10.0422683 + ], + [ + 53.4175496, + 10.0410971 + ], + [ + 53.4175909, + 10.0410023 + ], + [ + 53.4185466, + 10.0388509 + ] + ] + }, + { + "osmId": "863972061", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 174.48483539903663, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4012109, + 10.0696513 + ], + [ + 53.4015634, + 10.0689901 + ], + [ + 53.4015749, + 10.0689686 + ], + [ + 53.4017512, + 10.0686379 + ], + [ + 53.4022738, + 10.0677155 + ] + ] + }, + { + "osmId": "864165974", + "name": null, + "lengthMeters": 304.80873846775745, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4016802, + 13.5900036 + ], + [ + 52.4008499, + 13.5912537 + ], + [ + 52.4003645, + 13.5919854 + ], + [ + 52.3996657, + 13.5930505 + ] + ] + }, + { + "osmId": "864165975", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 1234.4737620807527, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3559818, + 13.4327846 + ], + [ + 52.3561116, + 13.4331741 + ], + [ + 52.3561302, + 13.4332263 + ], + [ + 52.3563351, + 13.4338215 + ], + [ + 52.356566, + 13.434455 + ], + [ + 52.3567848, + 13.4350375 + ], + [ + 52.3570083, + 13.4356161 + ], + [ + 52.3573365, + 13.4364318 + ], + [ + 52.3577033, + 13.4372924 + ], + [ + 52.3580766, + 13.4381407 + ], + [ + 52.3592938, + 13.4408911 + ], + [ + 52.360101, + 13.442716 + ], + [ + 52.3601423, + 13.4428101 + ], + [ + 52.3607005, + 13.4440721 + ], + [ + 52.3611144, + 13.4449874 + ], + [ + 52.3619464, + 13.4468207 + ], + [ + 52.3623014, + 13.4476114 + ], + [ + 52.3623312, + 13.4476807 + ] + ] + }, + { + "osmId": "864173676", + "name": null, + "lengthMeters": 170.3223923473387, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4006162, + 13.5917045 + ], + [ + 52.4008831, + 13.5913031 + ], + [ + 52.4017449, + 13.5900073 + ] + ] + }, + { + "osmId": "864543112", + "name": null, + "lengthMeters": 159.96481069524748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3547342, + 13.4279346 + ], + [ + 52.3545975, + 13.4273877 + ], + [ + 52.3545842, + 13.4273355 + ], + [ + 52.3544998, + 13.4270189 + ], + [ + 52.3541794, + 13.4257615 + ] + ] + }, + { + "osmId": "864547281", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 222.5536623552497, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4439126, + 13.5587497 + ], + [ + 52.4433165, + 13.5588024 + ], + [ + 52.4428889, + 13.5588442 + ], + [ + 52.4422747, + 13.5589371 + ], + [ + 52.4419189, + 13.5590197 + ] + ] + }, + { + "osmId": "864547283", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 193.05292885817303, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4448779, + 13.5587329 + ], + [ + 52.4449218, + 13.5587303 + ], + [ + 52.4452423, + 13.5586816 + ], + [ + 52.445784, + 13.558606 + ], + [ + 52.4461895, + 13.5585601 + ], + [ + 52.4463552, + 13.5585444 + ], + [ + 52.4466091, + 13.5585219 + ] + ] + }, + { + "osmId": "864600264", + "name": null, + "lengthMeters": 1511.0929085767002, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3995551, + 13.593225 + ], + [ + 52.3982836, + 13.5951375 + ], + [ + 52.3977366, + 13.595952 + ], + [ + 52.3974956, + 13.5963107 + ], + [ + 52.3974232, + 13.5964243 + ], + [ + 52.3972476, + 13.5966996 + ], + [ + 52.3971769, + 13.5968011 + ], + [ + 52.3970806, + 13.596942 + ], + [ + 52.3966674, + 13.5975391 + ], + [ + 52.396456, + 13.597824 + ], + [ + 52.396184, + 13.5981611 + ], + [ + 52.3960585, + 13.5983165 + ], + [ + 52.3957857, + 13.5986387 + ], + [ + 52.3950528, + 13.5993988 + ], + [ + 52.3946328, + 13.599798 + ], + [ + 52.3940235, + 13.6003235 + ], + [ + 52.3934946, + 13.600732 + ], + [ + 52.3933519, + 13.6008337 + ], + [ + 52.3925653, + 13.6013944 + ], + [ + 52.3919359, + 13.6017954 + ], + [ + 52.3917503, + 13.6019146 + ], + [ + 52.3911734, + 13.602285 + ], + [ + 52.3908192, + 13.6025135 + ], + [ + 52.3899473, + 13.603076 + ], + [ + 52.3896556, + 13.6032642 + ], + [ + 52.3893952, + 13.6034322 + ], + [ + 52.3884412, + 13.6040466 + ], + [ + 52.3879724, + 13.6043489 + ] + ] + }, + { + "osmId": "864605494", + "name": null, + "lengthMeters": 1825.4270250563134, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3866795, + 13.6052452 + ], + [ + 52.3885102, + 13.6040633 + ], + [ + 52.3894032, + 13.6034915 + ], + [ + 52.3896716, + 13.6033179 + ], + [ + 52.3896796, + 13.6033127 + ], + [ + 52.3911864, + 13.6023382 + ], + [ + 52.3919282, + 13.6018641 + ], + [ + 52.3925599, + 13.6014655 + ], + [ + 52.3932138, + 13.6010202 + ], + [ + 52.3933695, + 13.6009048 + ], + [ + 52.3936082, + 13.600728 + ], + [ + 52.3944259, + 13.6000513 + ], + [ + 52.3949131, + 13.5996079 + ], + [ + 52.3953027, + 13.5992211 + ], + [ + 52.3957809, + 13.5987202 + ], + [ + 52.3958472, + 13.5986508 + ], + [ + 52.3963708, + 13.5980163 + ], + [ + 52.3967526, + 13.5974899 + ], + [ + 52.3971587, + 13.5969031 + ], + [ + 52.3974486, + 13.5964728 + ], + [ + 52.3974585, + 13.5964581 + ], + [ + 52.3977458, + 13.5960317 + ], + [ + 52.3980574, + 13.5955437 + ], + [ + 52.3992532, + 13.5937615 + ], + [ + 52.4006162, + 13.5917045 + ] + ] + }, + { + "osmId": "865257785", + "name": null, + "lengthMeters": 110.07031146588189, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3618047, + 13.4991652 + ], + [ + 52.3614449, + 13.4976551 + ] + ] + }, + { + "osmId": "868021681", + "name": null, + "lengthMeters": 622.8869942933383, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4172873, + 13.1723101 + ], + [ + 52.4172432, + 13.1722185 + ], + [ + 52.4172271, + 13.1721893 + ], + [ + 52.4171309, + 13.1719928 + ], + [ + 52.4164972, + 13.1706985 + ], + [ + 52.4162602, + 13.1702068 + ], + [ + 52.4160279, + 13.1696993 + ], + [ + 52.4158472, + 13.1692909 + ], + [ + 52.4156665, + 13.1688719 + ], + [ + 52.4154919, + 13.1684547 + ], + [ + 52.4153478, + 13.1680939 + ], + [ + 52.4152542, + 13.1678584 + ], + [ + 52.4152005, + 13.1677231 + ], + [ + 52.4150823, + 13.1674194 + ], + [ + 52.4149551, + 13.1670866 + ], + [ + 52.4148128, + 13.1667106 + ], + [ + 52.4146754, + 13.1663324 + ], + [ + 52.4145335, + 13.1659314 + ], + [ + 52.4143981, + 13.1655364 + ], + [ + 52.4143167, + 13.1652968 + ], + [ + 52.4142484, + 13.1650832 + ], + [ + 52.4141652, + 13.1648176 + ], + [ + 52.4141407, + 13.1647355 + ] + ] + }, + { + "osmId": "868021683", + "name": null, + "lengthMeters": 1556.497032638055, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4141407, + 13.1647355 + ], + [ + 52.4140153, + 13.1642899 + ], + [ + 52.4139223, + 13.1639448 + ], + [ + 52.4138133, + 13.1634942 + ], + [ + 52.413729, + 13.1631392 + ], + [ + 52.4136316, + 13.1627242 + ], + [ + 52.4135392, + 13.1623124 + ], + [ + 52.413347, + 13.1614792 + ], + [ + 52.4132455, + 13.1610619 + ], + [ + 52.4131444, + 13.160665 + ], + [ + 52.4130439, + 13.1603001 + ], + [ + 52.412932, + 13.1599286 + ], + [ + 52.4128128, + 13.1595652 + ], + [ + 52.4126885, + 13.1592158 + ], + [ + 52.4125506, + 13.1588571 + ], + [ + 52.4124125, + 13.1585233 + ], + [ + 52.4122886, + 13.1582425 + ], + [ + 52.4121149, + 13.1578826 + ], + [ + 52.4119346, + 13.1575327 + ], + [ + 52.4117559, + 13.1572133 + ], + [ + 52.4113627, + 13.1565789 + ], + [ + 52.4109639, + 13.1560313 + ], + [ + 52.4105466, + 13.1555181 + ], + [ + 52.4090132, + 13.1538509 + ], + [ + 52.4088911, + 13.1537177 + ], + [ + 52.4085672, + 13.1533647 + ], + [ + 52.4085581, + 13.1533549 + ], + [ + 52.4075813, + 13.1522836 + ], + [ + 52.4074176, + 13.152105 + ], + [ + 52.404554, + 13.148996 + ] + ] + }, + { + "osmId": "868021684", + "name": null, + "lengthMeters": 240.24489622769988, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3961147, + 13.1382617 + ], + [ + 52.3958556, + 13.1377739 + ], + [ + 52.395087, + 13.13628 + ], + [ + 52.3947066, + 13.1355765 + ] + ] + }, + { + "osmId": "868021685", + "name": null, + "lengthMeters": 245.44817232011533, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3946741, + 13.13563 + ], + [ + 52.3949061, + 13.136062 + ], + [ + 52.3956846, + 13.1375531 + ], + [ + 52.3961093, + 13.1383783 + ] + ] + }, + { + "osmId": "868033451", + "name": null, + "lengthMeters": 276.9620531627156, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4970698, + 13.2728509 + ], + [ + 52.4968908, + 13.2723906 + ], + [ + 52.4967539, + 13.2720931 + ], + [ + 52.4965951, + 13.2717837 + ], + [ + 52.4962711, + 13.2712739 + ], + [ + 52.4958438, + 13.2706754 + ], + [ + 52.4953211, + 13.2699749 + ] + ] + }, + { + "osmId": "868033452", + "name": null, + "lengthMeters": 275.1114193719143, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4952989, + 13.2700218 + ], + [ + 52.4958179, + 13.2707065 + ], + [ + 52.4962384, + 13.2712968 + ], + [ + 52.4965705, + 13.2718335 + ], + [ + 52.4967255, + 13.2721414 + ], + [ + 52.4968531, + 13.2724312 + ], + [ + 52.4970286, + 13.2728872 + ] + ] + }, + { + "osmId": "868033453", + "name": null, + "lengthMeters": 106.06927925166025, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4297777, + 13.1927729 + ], + [ + 52.4298, + 13.1927795 + ], + [ + 52.4307158, + 13.1930565 + ] + ] + }, + { + "osmId": "868033454", + "name": null, + "lengthMeters": 95.08487495341426, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4306268, + 13.1929468 + ], + [ + 52.4298056, + 13.192699 + ], + [ + 52.4297858, + 13.192693 + ] + ] + }, + { + "osmId": "868036081", + "name": null, + "lengthMeters": 123.28301842875051, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4722497, + 13.3682474 + ], + [ + 52.4723695, + 13.3680369 + ], + [ + 52.4725339, + 13.36776 + ], + [ + 52.4726522, + 13.3675723 + ], + [ + 52.4728139, + 13.3673328 + ], + [ + 52.4729525, + 13.3671471 + ], + [ + 52.4730612, + 13.3670116 + ] + ] + }, + { + "osmId": "868036082", + "name": null, + "lengthMeters": 121.0704374607389, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4730178, + 13.366988 + ], + [ + 52.4729304, + 13.3670967 + ], + [ + 52.4727886, + 13.3672881 + ], + [ + 52.4726318, + 13.3675218 + ], + [ + 52.4725092, + 13.3677148 + ], + [ + 52.472341, + 13.3679897 + ], + [ + 52.4722206, + 13.3682018 + ] + ] + }, + { + "osmId": "868080570", + "name": null, + "lengthMeters": 207.5626397113876, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5071357, + 13.4453313 + ], + [ + 52.5069268, + 13.4464687 + ], + [ + 52.5067836, + 13.4472616 + ], + [ + 52.5066214, + 13.4480598 + ], + [ + 52.506577, + 13.4482569 + ] + ] + }, + { + "osmId": "868080571", + "name": null, + "lengthMeters": 89.86895856483908, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5084159, + 13.5381213 + ], + [ + 52.5078633, + 13.5384319 + ], + [ + 52.5078071, + 13.5384599 + ], + [ + 52.5076488, + 13.5385389 + ] + ] + }, + { + "osmId": "868080572", + "name": null, + "lengthMeters": 153.76013283291576, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4967313, + 13.4888054 + ], + [ + 52.4963077, + 13.4902394 + ], + [ + 52.4961224, + 13.4908446 + ] + ] + }, + { + "osmId": "868081839", + "name": null, + "lengthMeters": 282.17969041531495, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4196175, + 13.5566588 + ], + [ + 52.4190767, + 13.5566115 + ], + [ + 52.4186773, + 13.5565095 + ], + [ + 52.4183501, + 13.5563847 + ], + [ + 52.4183175, + 13.5563723 + ], + [ + 52.4179149, + 13.556151 + ], + [ + 52.4171813, + 13.5556365 + ] + ] + }, + { + "osmId": "869142802", + "name": null, + "lengthMeters": 144.16239364928077, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5108267, + 13.2260447 + ], + [ + 52.5106665, + 13.2263638 + ], + [ + 52.5106445, + 13.2264063 + ], + [ + 52.510528, + 13.2266314 + ], + [ + 52.5104557, + 13.2267711 + ], + [ + 52.5104002, + 13.2268858 + ], + [ + 52.5103239, + 13.2270432 + ], + [ + 52.5102684, + 13.2271578 + ], + [ + 52.5101283, + 13.2274733 + ], + [ + 52.5100318, + 13.2277246 + ] + ] + }, + { + "osmId": "869142803", + "name": null, + "lengthMeters": 125.50435112232957, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5308565, + 13.2181859 + ], + [ + 52.530858, + 13.2181708 + ], + [ + 52.530862, + 13.2181319 + ], + [ + 52.5309229, + 13.2175514 + ], + [ + 52.5310425, + 13.2163559 + ] + ] + }, + { + "osmId": "869142804", + "name": null, + "lengthMeters": 290.22964194547194, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5284677, + 13.2226663 + ], + [ + 52.5283885, + 13.2227046 + ], + [ + 52.5283076, + 13.2227364 + ], + [ + 52.5281804, + 13.2227801 + ], + [ + 52.5280599, + 13.2228108 + ], + [ + 52.5279369, + 13.2228374 + ], + [ + 52.5278303, + 13.2228523 + ], + [ + 52.5276921, + 13.2228647 + ], + [ + 52.5275316, + 13.2228697 + ], + [ + 52.5274201, + 13.222861 + ], + [ + 52.5272919, + 13.2228449 + ], + [ + 52.5271982, + 13.222825 + ], + [ + 52.5270579, + 13.2227936 + ], + [ + 52.5269567, + 13.2227634 + ], + [ + 52.5268279, + 13.222714 + ], + [ + 52.5267306, + 13.2226745 + ], + [ + 52.5265994, + 13.2226178 + ], + [ + 52.5264346, + 13.2225243 + ], + [ + 52.5263627, + 13.222481 + ], + [ + 52.5259267, + 13.2222186 + ] + ] + }, + { + "osmId": "869142805", + "name": null, + "lengthMeters": 277.9816417892716, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260386, + 13.222343 + ], + [ + 52.5260588, + 13.2223546 + ], + [ + 52.5264125, + 13.222573 + ], + [ + 52.5265568, + 13.2226535 + ], + [ + 52.5267101, + 13.2227266 + ], + [ + 52.5268873, + 13.2227986 + ], + [ + 52.5270148, + 13.2228382 + ], + [ + 52.5271586, + 13.2228761 + ], + [ + 52.5272624, + 13.2228981 + ], + [ + 52.5273712, + 13.2229108 + ], + [ + 52.5275056, + 13.2229219 + ], + [ + 52.5276046, + 13.2229239 + ], + [ + 52.527728, + 13.2229213 + ], + [ + 52.5278533, + 13.2229085 + ], + [ + 52.5279568, + 13.2228898 + ], + [ + 52.5281106, + 13.2228568 + ], + [ + 52.5282389, + 13.2228205 + ], + [ + 52.5283666, + 13.2227747 + ], + [ + 52.5284768, + 13.2227242 + ] + ] + }, + { + "osmId": "871484700", + "name": null, + "lengthMeters": 1776.6970926030879, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536262, + 10.0870504 + ], + [ + 53.5536447, + 10.0878626 + ], + [ + 53.5537161, + 10.0884433 + ], + [ + 53.5537884, + 10.0888983 + ], + [ + 53.5539004, + 10.0893366 + ], + [ + 53.5539285, + 10.0894303 + ], + [ + 53.5540309, + 10.089771 + ], + [ + 53.5543364, + 10.0906746 + ], + [ + 53.5581979, + 10.1025972 + ], + [ + 53.5585419, + 10.1039152 + ], + [ + 53.5587732, + 10.1051634 + ], + [ + 53.5589126, + 10.1063666 + ], + [ + 53.5589986, + 10.1076597 + ], + [ + 53.5589779, + 10.1118236 + ] + ] + }, + { + "osmId": "871573424", + "name": null, + "lengthMeters": 235.272892032042, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536262, + 10.0870504 + ], + [ + 53.5535922, + 10.087337 + ], + [ + 53.5535166, + 10.0877291 + ], + [ + 53.5534402, + 10.0880528 + ], + [ + 53.5533671, + 10.0883403 + ], + [ + 53.5532865, + 10.0886262 + ], + [ + 53.5531788, + 10.0889053 + ], + [ + 53.5530591, + 10.0891559 + ], + [ + 53.5528642, + 10.0895058 + ], + [ + 53.5525361, + 10.0900067 + ] + ] + }, + { + "osmId": "871573425", + "name": null, + "lengthMeters": 1326.0178817900223, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5588418, + 10.1051838 + ], + [ + 53.5586067, + 10.1039189 + ], + [ + 53.5583508, + 10.1029041 + ], + [ + 53.5583005, + 10.1027138 + ], + [ + 53.5579512, + 10.1016159 + ], + [ + 53.5579007, + 10.1014604 + ], + [ + 53.556389, + 10.0968073 + ], + [ + 53.5554574, + 10.0939515 + ], + [ + 53.5552478, + 10.0932949 + ], + [ + 53.5544266, + 10.0907676 + ], + [ + 53.5542743, + 10.0902731 + ], + [ + 53.5541929, + 10.0899719 + ], + [ + 53.5541288, + 10.0896707 + ], + [ + 53.5541169, + 10.0895988 + ], + [ + 53.55407, + 10.0893156 + ], + [ + 53.5540246, + 10.088929 + ], + [ + 53.5539886, + 10.0885423 + ], + [ + 53.5539605, + 10.0881984 + ], + [ + 53.5539472, + 10.0878276 + ], + [ + 53.5539392, + 10.0874207 + ], + [ + 53.5539685, + 10.0870836 + ] + ] + }, + { + "osmId": "871921009", + "name": null, + "lengthMeters": 94.35606054355128, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5721648, + 13.5658931 + ], + [ + 52.5722167, + 13.5659385 + ], + [ + 52.5725115, + 13.5661896 + ], + [ + 52.5729178, + 13.5665368 + ] + ] + }, + { + "osmId": "871921011", + "name": "Wriezener Bahn", + "lengthMeters": 463.36215061131304, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6361862, + 13.7311062 + ], + [ + 52.6362003, + 13.7311925 + ], + [ + 52.6365035, + 13.7329201 + ], + [ + 52.6365154, + 13.732988 + ], + [ + 52.6366194, + 13.7335762 + ], + [ + 52.6373445, + 13.7377022 + ] + ] + }, + { + "osmId": "874914082", + "name": null, + "lengthMeters": 211.96986133408677, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1253702, + 11.6021983 + ], + [ + 48.1256283, + 11.602616 + ], + [ + 48.1258723, + 11.6029967 + ], + [ + 48.1262681, + 11.603617 + ], + [ + 48.1266836, + 11.6042681 + ] + ] + }, + { + "osmId": "874914085", + "name": null, + "lengthMeters": 146.99197257723532, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1262739, + 11.6044832 + ], + [ + 48.126051, + 11.6041007 + ], + [ + 48.1260194, + 11.6040419 + ], + [ + 48.1259024, + 11.6038244 + ], + [ + 48.1258238, + 11.6036755 + ], + [ + 48.125756, + 11.6035489 + ], + [ + 48.1256681, + 11.6033848 + ], + [ + 48.1254513, + 11.6029344 + ] + ] + }, + { + "osmId": "877853640", + "name": null, + "lengthMeters": 125.40133951716496, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4910233, + 13.2651618 + ], + [ + 52.4910027, + 13.265143 + ], + [ + 52.4908497, + 13.2650036 + ], + [ + 52.4905075, + 13.2646435 + ], + [ + 52.4903999, + 13.2645303 + ], + [ + 52.4902846, + 13.2643822 + ], + [ + 52.4900888, + 13.2641305 + ] + ] + }, + { + "osmId": "880121548", + "name": "Dresdner Bahn", + "lengthMeters": 243.35783261818176, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4469806, + 13.3615504 + ], + [ + 52.4459253, + 13.3621178 + ], + [ + 52.4449006, + 13.3626673 + ] + ] + }, + { + "osmId": "880121550", + "name": "Dresdner Bahn", + "lengthMeters": 242.87401078917142, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4449217, + 13.3627177 + ], + [ + 52.4459355, + 13.362175 + ], + [ + 52.4469976, + 13.3616032 + ] + ] + }, + { + "osmId": "880121552", + "name": "Dresdner Bahn", + "lengthMeters": 1375.1485772800013, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3868617, + 13.3967516 + ], + [ + 52.3895072, + 13.39535 + ], + [ + 52.3898475, + 13.3951476 + ], + [ + 52.3901756, + 13.3949439 + ], + [ + 52.3933169, + 13.3929548 + ], + [ + 52.3947624, + 13.3920814 + ], + [ + 52.3969283, + 13.3908011 + ], + [ + 52.398493, + 13.3898781 + ] + ] + }, + { + "osmId": "880121553", + "name": "Dresdner Bahn", + "lengthMeters": 1310.7590498785119, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4254804, + 13.3740888 + ], + [ + 52.4246383, + 13.3746612 + ], + [ + 52.4242229, + 13.3749023 + ], + [ + 52.4239208, + 13.3750889 + ], + [ + 52.4212055, + 13.3766733 + ], + [ + 52.4193932, + 13.377696 + ], + [ + 52.418777, + 13.3780143 + ], + [ + 52.4181415, + 13.3783714 + ], + [ + 52.4173296, + 13.3788391 + ], + [ + 52.4160354, + 13.3796193 + ], + [ + 52.415877, + 13.3797122 + ], + [ + 52.41539, + 13.3800016 + ], + [ + 52.4153462, + 13.3800281 + ], + [ + 52.4143854, + 13.3806086 + ] + ] + }, + { + "osmId": "880121554", + "name": "Dresdner Bahn", + "lengthMeters": 2159.0027610242028, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4441638, + 13.3630623 + ], + [ + 52.4431241, + 13.3636383 + ], + [ + 52.4420689, + 13.3642485 + ], + [ + 52.4404644, + 13.3651957 + ], + [ + 52.4400325, + 13.3654515 + ], + [ + 52.439525, + 13.3657468 + ], + [ + 52.4390053, + 13.3660497 + ], + [ + 52.438899, + 13.3661089 + ], + [ + 52.4374362, + 13.3669245 + ], + [ + 52.4369085, + 13.3672153 + ], + [ + 52.4359085, + 13.3677926 + ], + [ + 52.435224, + 13.368201 + ], + [ + 52.4346425, + 13.3685418 + ], + [ + 52.4337959, + 13.3690367 + ], + [ + 52.4314666, + 13.3704058 + ], + [ + 52.4287528, + 13.3720147 + ], + [ + 52.4267525, + 13.3732491 + ], + [ + 52.4265187, + 13.3734054 + ], + [ + 52.425891, + 13.3738227 + ] + ] + }, + { + "osmId": "880121555", + "name": "Dresdner Bahn", + "lengthMeters": 2159.1377200617003, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4259054, + 13.3738924 + ], + [ + 52.4261357, + 13.3737375 + ], + [ + 52.4265217, + 13.3734794 + ], + [ + 52.4267617, + 13.3733164 + ], + [ + 52.4287662, + 13.3720828 + ], + [ + 52.4314808, + 13.3704758 + ], + [ + 52.4323618, + 13.3699429 + ], + [ + 52.4338543, + 13.3690776 + ], + [ + 52.4346523, + 13.3685983 + ], + [ + 52.4352376, + 13.3682576 + ], + [ + 52.4359647, + 13.3678238 + ], + [ + 52.4361523, + 13.3677109 + ], + [ + 52.436332, + 13.3676078 + ], + [ + 52.4374447, + 13.3669839 + ], + [ + 52.4389075, + 13.3661641 + ], + [ + 52.4390171, + 13.3661026 + ], + [ + 52.4395353, + 13.3658061 + ], + [ + 52.440046, + 13.3654972 + ], + [ + 52.4404779, + 13.3652444 + ], + [ + 52.442081, + 13.36431 + ], + [ + 52.4431368, + 13.3636904 + ], + [ + 52.4441763, + 13.3631185 + ] + ] + }, + { + "osmId": "883834129", + "name": "Siemensbahn", + "lengthMeters": 184.81515542596895, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5440546, + 13.2544602 + ], + [ + 52.5446058, + 13.2534331 + ], + [ + 52.5449011, + 13.2527679 + ], + [ + 52.5450863, + 13.2523224 + ] + ] + }, + { + "osmId": "883834132", + "name": "Siemensbahn", + "lengthMeters": 398.08130524049204, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5415189, + 13.2587143 + ], + [ + 52.5419518, + 13.2580346 + ], + [ + 52.5421575, + 13.2577282 + ], + [ + 52.542575, + 13.2571184 + ], + [ + 52.5440251, + 13.2545184 + ] + ] + }, + { + "osmId": "883834133", + "name": "Siemensbahn", + "lengthMeters": 482.94389962780053, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5448636, + 13.2527393 + ], + [ + 52.5446197, + 13.2531059 + ], + [ + 52.5419518, + 13.2580346 + ] + ] + }, + { + "osmId": "883834134", + "name": "Siemensbahn", + "lengthMeters": 136.4099241505013, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5451183, + 13.2523734 + ], + [ + 52.5453478, + 13.2518352 + ], + [ + 52.5454508, + 13.2515958 + ], + [ + 52.5458263, + 13.250726 + ] + ] + }, + { + "osmId": "883834137", + "name": "Siemensbahn", + "lengthMeters": 916.8109370276005, + "maxSpeedKph": 80.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5469222, + 13.2487138 + ], + [ + 52.5458263, + 13.250726 + ], + [ + 52.5449544, + 13.2523463 + ], + [ + 52.5448489, + 13.2525058 + ], + [ + 52.5447431, + 13.252676 + ], + [ + 52.5445782, + 13.252908 + ], + [ + 52.5444326, + 13.2531399 + ], + [ + 52.5437467, + 13.2544043 + ], + [ + 52.5432712, + 13.2552833 + ], + [ + 52.5426945, + 13.2563289 + ], + [ + 52.5424863, + 13.2567273 + ], + [ + 52.542095, + 13.2575259 + ], + [ + 52.5415189, + 13.2587143 + ], + [ + 52.5414554, + 13.2588495 + ] + ] + }, + { + "osmId": "898204981", + "name": null, + "lengthMeters": 97.70417409845624, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5113775, + 13.4327028 + ], + [ + 52.5113869, + 13.4326487 + ], + [ + 52.5113954, + 13.4325994 + ], + [ + 52.5115325, + 13.4315656 + ], + [ + 52.5115686, + 13.4312938 + ] + ] + }, + { + "osmId": "898204994", + "name": null, + "lengthMeters": 124.07925699318076, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5115291, + 13.4308188 + ], + [ + 52.5114604, + 13.4313778 + ], + [ + 52.5114455, + 13.4314931 + ], + [ + 52.5112952, + 13.4326115 + ] + ] + }, + { + "osmId": "898204997", + "name": null, + "lengthMeters": 121.09446765981306, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5117549, + 13.4287876 + ], + [ + 52.511576, + 13.4294701 + ], + [ + 52.511395, + 13.4304376 + ], + [ + 52.5113889, + 13.4304702 + ] + ] + }, + { + "osmId": "898205009", + "name": null, + "lengthMeters": 225.13658672904504, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5116643, + 13.4305584 + ], + [ + 52.5117811, + 13.4296116 + ], + [ + 52.5118875, + 13.428795 + ], + [ + 52.511946, + 13.4283042 + ], + [ + 52.511988, + 13.4278166 + ], + [ + 52.5120153, + 13.4272854 + ] + ] + }, + { + "osmId": "898205017", + "name": null, + "lengthMeters": 89.32585697614451, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.511647, + 13.4322078 + ], + [ + 52.5116537, + 13.4321592 + ], + [ + 52.5117996, + 13.4309119 + ] + ] + }, + { + "osmId": "899117258", + "name": "Anhalter Bahn", + "lengthMeters": 342.86570441355207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4572867, + 13.3586498 + ], + [ + 52.458148, + 13.3589541 + ], + [ + 52.4590054, + 13.3592608 + ], + [ + 52.4601787, + 13.3596777 + ], + [ + 52.4602599, + 13.3597069 + ], + [ + 52.4603004, + 13.3597201 + ] + ] + }, + { + "osmId": "908346262", + "name": null, + "lengthMeters": 94.31615953054593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4499548, + 13.3596787 + ], + [ + 52.4500694, + 13.3595856 + ], + [ + 52.4501633, + 13.3595048 + ], + [ + 52.4502318, + 13.3594397 + ], + [ + 52.4503027, + 13.3593765 + ], + [ + 52.4504025, + 13.3592916 + ], + [ + 52.4504939, + 13.3592126 + ], + [ + 52.4505039, + 13.359204 + ], + [ + 52.4507106, + 13.3590483 + ] + ] + }, + { + "osmId": "909192329", + "name": null, + "lengthMeters": 277.9499039933284, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4929148, + 9.9662228 + ], + [ + 53.4930647, + 9.9653143 + ], + [ + 53.4931065, + 9.9650327 + ], + [ + 53.4933276, + 9.9635722 + ], + [ + 53.4933962, + 9.9631313 + ], + [ + 53.4935283, + 9.9623545 + ], + [ + 53.493561, + 9.9621643 + ] + ] + }, + { + "osmId": "909756344", + "name": "Mahlower Kurve", + "lengthMeters": 474.0555711437533, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3528052, + 13.4119896 + ], + [ + 52.3527013, + 13.4122144 + ], + [ + 52.3525473, + 13.4125887 + ], + [ + 52.3524628, + 13.4128142 + ], + [ + 52.3523721, + 13.4130645 + ], + [ + 52.3523002, + 13.4132877 + ], + [ + 52.3522275, + 13.4135508 + ], + [ + 52.3521454, + 13.4138819 + ], + [ + 52.3520868, + 13.4141759 + ], + [ + 52.3520271, + 13.4145486 + ], + [ + 52.3519825, + 13.4149175 + ], + [ + 52.3519613, + 13.4152521 + ], + [ + 52.3519476, + 13.4156292 + ], + [ + 52.3519538, + 13.4162028 + ], + [ + 52.3519747, + 13.4166086 + ], + [ + 52.3520134, + 13.4170242 + ], + [ + 52.3520589, + 13.4173739 + ], + [ + 52.3521098, + 13.4176804 + ], + [ + 52.3522081, + 13.4181267 + ], + [ + 52.3523038, + 13.4185558 + ] + ] + }, + { + "osmId": "911022183", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 127.8043562340547, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4217547, + 10.0336725 + ], + [ + 53.4219157, + 10.0334285 + ], + [ + 53.4226013, + 10.032368 + ] + ] + }, + { + "osmId": "911022185", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 154.5749389430193, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4216975, + 10.0335689 + ], + [ + 53.4219288, + 10.0332099 + ], + [ + 53.4220842, + 10.032964 + ], + [ + 53.4223608, + 10.0325349 + ], + [ + 53.4227206, + 10.0319897 + ] + ] + }, + { + "osmId": "911022186", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 107.11432295296656, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4186668, + 10.0390623 + ], + [ + 53.4193045, + 10.0378508 + ] + ] + }, + { + "osmId": "911022187", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 243.50399883260025, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.418619, + 10.0389567 + ], + [ + 53.4186756, + 10.0388485 + ], + [ + 53.4194407, + 10.0373857 + ], + [ + 53.4196658, + 10.0369553 + ], + [ + 53.4198673, + 10.03658 + ], + [ + 53.4200694, + 10.0362037 + ] + ] + }, + { + "osmId": "911022188", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 173.5522060126487, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4047146, + 10.063694 + ], + [ + 53.4049329, + 10.0633633 + ], + [ + 53.4053043, + 10.0628006 + ], + [ + 53.4058757, + 10.0619444 + ] + ] + }, + { + "osmId": "911022189", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 175.64464286942118, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4047303, + 10.0638003 + ], + [ + 53.4059004, + 10.0620203 + ] + ] + }, + { + "osmId": "911022190", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 116.48777739716611, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4049806, + 10.063555 + ], + [ + 53.4057641, + 10.0623885 + ] + ] + }, + { + "osmId": "911022191", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 153.46259259541253, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.405113, + 10.0637675 + ], + [ + 53.4061224, + 10.0621887 + ] + ] + }, + { + "osmId": "911022192", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 87.47404009808687, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.404135, + 10.0645862 + ], + [ + 53.4041738, + 10.0645253 + ], + [ + 53.4042222, + 10.0644508 + ], + [ + 53.4047146, + 10.063694 + ] + ] + }, + { + "osmId": "911022193", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 81.97465587340308, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4007837, + 10.070646 + ], + [ + 53.4012677, + 10.0697133 + ] + ] + }, + { + "osmId": "911022194", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 345.0079142898107, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3991426, + 10.0735304 + ], + [ + 53.4012109, + 10.0696513 + ] + ] + }, + { + "osmId": "911022195", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 344.8677316435746, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.399101, + 10.0734821 + ], + [ + 53.4011419, + 10.0695652 + ] + ] + }, + { + "osmId": "911022196", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 324.5888907710772, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4007837, + 10.070646 + ], + [ + 53.4002763, + 10.0716357 + ], + [ + 53.3994069, + 10.0735424 + ], + [ + 53.398982, + 10.0744958 + ] + ] + }, + { + "osmId": "911022197", + "name": "Hannover\u2013Hamburg", + "lengthMeters": 383.3880187492356, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3990501, + 10.07468 + ], + [ + 53.3991339, + 10.0745014 + ], + [ + 53.4004089, + 10.071785 + ], + [ + 53.4012164, + 10.0701821 + ] + ] + }, + { + "osmId": "911022198", + "name": null, + "lengthMeters": 599.0970894446825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3955885, + 10.0803208 + ], + [ + 53.3960163, + 10.0794652 + ], + [ + 53.3978603, + 10.0759193 + ], + [ + 53.3991426, + 10.0735304 + ] + ] + }, + { + "osmId": "911022199", + "name": "Buchholz \u2013 Hamburg-Allerm\u00f6he", + "lengthMeters": 598.5310379817265, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.3955503, + 10.0802665 + ], + [ + 53.3959937, + 10.079424 + ], + [ + 53.3978264, + 10.0758693 + ], + [ + 53.399101, + 10.0734821 + ] + ] + }, + { + "osmId": "911257057", + "name": null, + "lengthMeters": 76.83704705306265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5237635, + 13.3605923 + ], + [ + 52.5237039, + 13.3603902 + ], + [ + 52.5235704, + 13.3599758 + ], + [ + 52.523547, + 13.3598845 + ], + [ + 52.5235241, + 13.3597995 + ], + [ + 52.5235135, + 13.3597426 + ], + [ + 52.5235091, + 13.359719 + ], + [ + 52.5234986, + 13.3596449 + ], + [ + 52.5234884, + 13.359575 + ], + [ + 52.5234866, + 13.3595572 + ] + ] + }, + { + "osmId": "911257058", + "name": null, + "lengthMeters": 623.4720072929243, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5264651, + 13.3382643 + ], + [ + 52.5264203, + 13.3388427 + ], + [ + 52.5263917, + 13.3393858 + ], + [ + 52.5263571, + 13.3400066 + ], + [ + 52.5263542, + 13.340061 + ], + [ + 52.5263322, + 13.3405352 + ], + [ + 52.5263202, + 13.34097 + ], + [ + 52.5263138, + 13.3412016 + ], + [ + 52.5263061, + 13.3414625 + ], + [ + 52.5262922, + 13.3417368 + ], + [ + 52.5262787, + 13.3420815 + ], + [ + 52.5262644, + 13.3425884 + ], + [ + 52.5262599, + 13.3428314 + ], + [ + 52.526253, + 13.343042 + ], + [ + 52.5262464, + 13.3432436 + ], + [ + 52.5262427, + 13.3433543 + ], + [ + 52.5262396, + 13.343491 + ], + [ + 52.5262265, + 13.3442875 + ], + [ + 52.5262104, + 13.3451711 + ], + [ + 52.5262101, + 13.3453639 + ], + [ + 52.5262112, + 13.3455389 + ], + [ + 52.526213, + 13.3457125 + ], + [ + 52.526211, + 13.3460451 + ], + [ + 52.5262093, + 13.3465026 + ], + [ + 52.5262102, + 13.3467505 + ], + [ + 52.5262109, + 13.3469493 + ], + [ + 52.5262112, + 13.3470209 + ], + [ + 52.5262145, + 13.3474645 + ] + ] + }, + { + "osmId": "911843586", + "name": null, + "lengthMeters": 150.8218437310509, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4742461, + 9.844765 + ], + [ + 53.474243, + 9.8449288 + ], + [ + 53.4742278, + 9.8457376 + ], + [ + 53.4742135, + 9.8461639 + ], + [ + 53.4741873, + 9.8469443 + ], + [ + 53.4741835, + 9.8470413 + ] + ] + }, + { + "osmId": "911843587", + "name": null, + "lengthMeters": 102.51626040381066, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4743733, + 9.8457394 + ], + [ + 53.4743737, + 9.8457254 + ], + [ + 53.474406, + 9.8447758 + ], + [ + 53.4744259, + 9.8441929 + ] + ] + }, + { + "osmId": "911843589", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 379.129732264088, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4602118, + 9.9833693 + ], + [ + 53.4604579, + 9.9824384 + ], + [ + 53.4604796, + 9.9823436 + ], + [ + 53.4604996, + 9.9822363 + ], + [ + 53.4605076, + 9.9821871 + ], + [ + 53.4605391, + 9.9819945 + ], + [ + 53.4605556, + 9.9818791 + ], + [ + 53.4607391, + 9.9804762 + ], + [ + 53.4608553, + 9.978911 + ], + [ + 53.4608704, + 9.9787662 + ], + [ + 53.4608802, + 9.9786639 + ], + [ + 53.4609024, + 9.9785047 + ], + [ + 53.4609271, + 9.9783236 + ], + [ + 53.4609455, + 9.9782083 + ], + [ + 53.4609671, + 9.9780956 + ], + [ + 53.4609998, + 9.9779562 + ], + [ + 53.461034, + 9.9778467 + ] + ] + }, + { + "osmId": "911843590", + "name": "Harburger S-Bahn-Tunnel", + "lengthMeters": 76.06360506374372, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4613392, + 9.9768169 + ], + [ + 53.4611381, + 9.9772927 + ], + [ + 53.4609456, + 9.9777566 + ] + ] + }, + { + "osmId": "911862874", + "name": "Hafenbahn", + "lengthMeters": 295.01330124464977, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4934174, + 9.9060114 + ], + [ + 53.4935317, + 9.9060791 + ], + [ + 53.494844, + 9.9068564 + ], + [ + 53.4958004, + 9.90742 + ], + [ + 53.4959205, + 9.9074898 + ] + ] + }, + { + "osmId": "911862875", + "name": "Hafenbahn", + "lengthMeters": 295.1564028191937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4959353, + 9.9074233 + ], + [ + 53.4958146, + 9.9073525 + ], + [ + 53.494866, + 9.9068051 + ], + [ + 53.4935866, + 9.9060334 + ], + [ + 53.493546, + 9.9060089 + ], + [ + 53.4935287, + 9.9059985 + ], + [ + 53.4934319, + 9.9059401 + ] + ] + }, + { + "osmId": "911862877", + "name": null, + "lengthMeters": 177.02993863330872, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4928758, + 9.9661738 + ], + [ + 53.4928205, + 9.966503 + ], + [ + 53.4926013, + 9.9677824 + ], + [ + 53.492585, + 9.9678915 + ], + [ + 53.4925635, + 9.9680536 + ], + [ + 53.4924913, + 9.9687674 + ] + ] + }, + { + "osmId": "911862880", + "name": "Hafenbahn", + "lengthMeters": 170.13457792883625, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.472445, + 9.9148464 + ], + [ + 53.4723429, + 9.9145118 + ], + [ + 53.4722798, + 9.9142694 + ], + [ + 53.472226, + 9.9140255 + ], + [ + 53.4721902, + 9.9138493 + ], + [ + 53.4721411, + 9.9135758 + ], + [ + 53.4721055, + 9.9133371 + ], + [ + 53.4720716, + 9.9130795 + ], + [ + 53.4720487, + 9.9128798 + ], + [ + 53.4720255, + 9.9126107 + ], + [ + 53.4720116, + 9.9123991 + ] + ] + }, + { + "osmId": "914118200", + "name": null, + "lengthMeters": 351.76844316053536, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.482872, + 10.000148 + ], + [ + 53.4829693, + 10.0005219 + ], + [ + 53.482982, + 10.0005707 + ], + [ + 53.4829879, + 10.0005935 + ], + [ + 53.4831563, + 10.0010817 + ], + [ + 53.4833262, + 10.0014814 + ], + [ + 53.4835513, + 10.0018998 + ], + [ + 53.4836822, + 10.0020942 + ], + [ + 53.4837915, + 10.0022418 + ], + [ + 53.4838912, + 10.0023624 + ], + [ + 53.4841275, + 10.0026119 + ], + [ + 53.4842687, + 10.0027353 + ], + [ + 53.4844307, + 10.0028533 + ], + [ + 53.4845455, + 10.0029227 + ], + [ + 53.4846541, + 10.0029767 + ], + [ + 53.4850547, + 10.0031497 + ], + [ + 53.4852556, + 10.003247 + ] + ] + }, + { + "osmId": "914144051", + "name": null, + "lengthMeters": 238.99220705695157, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4968492, + 10.0056855 + ], + [ + 53.4966026, + 10.0055945 + ], + [ + 53.4963477, + 10.0054718 + ], + [ + 53.4962093, + 10.0054054 + ], + [ + 53.4960673, + 10.0053464 + ], + [ + 53.4959732, + 10.0053155 + ], + [ + 53.4957985, + 10.0052686 + ], + [ + 53.4954634, + 10.0051861 + ], + [ + 53.4953198, + 10.0051533 + ], + [ + 53.4951562, + 10.0051104 + ], + [ + 53.495019, + 10.0050788 + ], + [ + 53.4949609, + 10.0050664 + ], + [ + 53.4947402, + 10.0050192 + ] + ] + }, + { + "osmId": "914147983", + "name": "Tempelhofer Kurve", + "lengthMeters": 388.59056668397494, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4517138, + 13.3593298 + ], + [ + 52.4515167, + 13.359456 + ], + [ + 52.4512529, + 13.3596191 + ], + [ + 52.4506331, + 13.3600067 + ], + [ + 52.450465, + 13.3600921 + ], + [ + 52.4503093, + 13.3601683 + ], + [ + 52.4501413, + 13.3602501 + ], + [ + 52.4498143, + 13.360379 + ], + [ + 52.4495258, + 13.360474 + ], + [ + 52.4493783, + 13.3605183 + ], + [ + 52.449232, + 13.3605563 + ], + [ + 52.4490632, + 13.3605988 + ], + [ + 52.448897, + 13.3606455 + ], + [ + 52.4487126, + 13.3607115 + ], + [ + 52.4483583, + 13.3608714 + ] + ] + }, + { + "osmId": "914437544", + "name": null, + "lengthMeters": 227.56316916225478, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4759479, + 13.3484793 + ], + [ + 52.476852, + 13.3495976 + ], + [ + 52.4769626, + 13.3497325 + ], + [ + 52.4776303, + 13.3503842 + ] + ] + }, + { + "osmId": "914437545", + "name": null, + "lengthMeters": 297.73391097846616, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4760116, + 13.3484028 + ], + [ + 52.4769625, + 13.3495776 + ], + [ + 52.4771951, + 13.3498425 + ], + [ + 52.4774041, + 13.3500918 + ], + [ + 52.4776303, + 13.3503842 + ], + [ + 52.4778138, + 13.3505935 + ], + [ + 52.4781556, + 13.3510347 + ] + ] + }, + { + "osmId": "914485739", + "name": null, + "lengthMeters": 187.73804481154644, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5042973, + 13.2821728 + ], + [ + 52.5044085, + 13.2821723 + ], + [ + 52.504794, + 13.2821817 + ], + [ + 52.5052316, + 13.2822291 + ], + [ + 52.5054761, + 13.2822701 + ], + [ + 52.505979, + 13.2823797 + ] + ] + }, + { + "osmId": "915701809", + "name": null, + "lengthMeters": 177.29375235044586, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565129, + 13.6360317 + ], + [ + 52.4565558, + 13.6350235 + ], + [ + 52.4565636, + 13.6348406 + ], + [ + 52.4565683, + 13.634731 + ], + [ + 52.4565727, + 13.6345976 + ], + [ + 52.4565814, + 13.6343328 + ], + [ + 52.4566113, + 13.6334202 + ] + ] + }, + { + "osmId": "916860610", + "name": null, + "lengthMeters": 177.5457894708444, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.45661, + 13.6334199 + ], + [ + 52.4565781, + 13.6337299 + ], + [ + 52.4565559, + 13.6343305 + ], + [ + 52.456546, + 13.6345956 + ], + [ + 52.4565409, + 13.634734 + ], + [ + 52.4565365, + 13.6348387 + ], + [ + 52.4565289, + 13.6350217 + ], + [ + 52.4564867, + 13.6360309 + ] + ] + }, + { + "osmId": "916860611", + "name": null, + "lengthMeters": 120.59084911254944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.456706, + 13.6316495 + ], + [ + 52.4567041, + 13.6317115 + ], + [ + 52.4566978, + 13.6319608 + ], + [ + 52.4566883, + 13.6323319 + ], + [ + 52.4566741, + 13.6326811 + ], + [ + 52.4566708, + 13.6327814 + ], + [ + 52.4566566, + 13.6329176 + ], + [ + 52.4566333, + 13.6331531 + ], + [ + 52.4566173, + 13.6333365 + ], + [ + 52.45661, + 13.6334199 + ] + ] + }, + { + "osmId": "916860612", + "name": null, + "lengthMeters": 120.53043767393807, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4566113, + 13.6334202 + ], + [ + 52.4566346, + 13.6331534 + ], + [ + 52.4566584, + 13.632918 + ], + [ + 52.4566708, + 13.6327814 + ], + [ + 52.4566755, + 13.6326811 + ], + [ + 52.4566897, + 13.632332 + ], + [ + 52.4567014, + 13.6319994 + ], + [ + 52.4567036, + 13.6319612 + ], + [ + 52.456716, + 13.6317121 + ], + [ + 52.4567187, + 13.6316516 + ] + ] + }, + { + "osmId": "917895054", + "name": null, + "lengthMeters": 253.28598620181342, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4692472, + 13.3400816 + ], + [ + 52.4697465, + 13.3407175 + ], + [ + 52.4708487, + 13.3421351 + ], + [ + 52.4710522, + 13.3423611 + ] + ] + }, + { + "osmId": "917895055", + "name": null, + "lengthMeters": 374.8393211143025, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4729348, + 13.3446042 + ], + [ + 52.4731367, + 13.3448581 + ], + [ + 52.4756286, + 13.3479313 + ] + ] + }, + { + "osmId": "923419333", + "name": "B\u00f6tzowbahn", + "lengthMeters": 1120.597884438876, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5648075, + 13.1756859 + ], + [ + 52.5656587, + 13.1811001 + ], + [ + 52.5664684, + 13.1863008 + ], + [ + 52.5668809, + 13.1889235 + ], + [ + 52.5670088, + 13.1897216 + ], + [ + 52.567028, + 13.1898412 + ], + [ + 52.5673198, + 13.1916902 + ], + [ + 52.5673274, + 13.1917387 + ] + ] + }, + { + "osmId": "926618661", + "name": null, + "lengthMeters": 128.78907164957695, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6111695, + 9.9018968 + ], + [ + 53.6115907, + 9.9020722 + ], + [ + 53.6123057, + 9.9022679 + ] + ] + }, + { + "osmId": "926618662", + "name": null, + "lengthMeters": 126.21137709205799, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6111971, + 9.9018507 + ], + [ + 53.6115991, + 9.9020035 + ], + [ + 53.6123122, + 9.902204 + ] + ] + }, + { + "osmId": "926618663", + "name": null, + "lengthMeters": 159.17953919547017, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6038461, + 9.8985704 + ], + [ + 53.6040918, + 9.8984972 + ], + [ + 53.605061, + 9.8981536 + ], + [ + 53.6052492, + 9.8980929 + ] + ] + }, + { + "osmId": "926618664", + "name": null, + "lengthMeters": 160.43009342145214, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6038486, + 9.8986408 + ], + [ + 53.6038537, + 9.8986392 + ], + [ + 53.6039467, + 9.8986109 + ], + [ + 53.6050703, + 9.8982434 + ], + [ + 53.6052655, + 9.8981824 + ] + ] + }, + { + "osmId": "927929267", + "name": null, + "lengthMeters": 203.58537620196117, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5640503, + 10.0638215 + ], + [ + 53.5643881, + 10.0637586 + ], + [ + 53.5647315, + 10.0637421 + ], + [ + 53.5649261, + 10.0637676 + ], + [ + 53.5652209, + 10.0638658 + ], + [ + 53.5654558, + 10.063959 + ], + [ + 53.5655931, + 10.064035 + ], + [ + 53.5658342, + 10.0642239 + ] + ] + }, + { + "osmId": "927929268", + "name": null, + "lengthMeters": 207.89460618447947, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5660433, + 10.0644173 + ], + [ + 53.5662368, + 10.064604 + ], + [ + 53.566409, + 10.0647756 + ], + [ + 53.5665389, + 10.0649261 + ], + [ + 53.5666371, + 10.0650578 + ], + [ + 53.5667167, + 10.0651848 + ], + [ + 53.5668033, + 10.0653305 + ], + [ + 53.5668722, + 10.0654661 + ], + [ + 53.5669713, + 10.0656797 + ], + [ + 53.5670637, + 10.0659238 + ], + [ + 53.567134, + 10.0661378 + ], + [ + 53.5672897, + 10.0666602 + ] + ] + }, + { + "osmId": "936594785", + "name": "Pinneberger S-Bahn", + "lengthMeters": 104.75669876326957, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5626397, + 9.9454476 + ], + [ + 53.5628107, + 9.9443578 + ], + [ + 53.5628236, + 9.9442478 + ], + [ + 53.562875, + 9.9439119 + ] + ] + }, + { + "osmId": "936594786", + "name": "Verbindungsbahn", + "lengthMeters": 109.78938436081256, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5628437, + 9.9438802 + ], + [ + 53.562746, + 9.9445058 + ], + [ + 53.5625962, + 9.9454895 + ] + ] + }, + { + "osmId": "938738264", + "name": null, + "lengthMeters": 256.3028229054794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.139043, + 11.5141429 + ], + [ + 48.1390482, + 11.5144221 + ], + [ + 48.1390509, + 11.5153883 + ], + [ + 48.1390166, + 11.5168013 + ], + [ + 48.1389975, + 11.5175954 + ] + ] + }, + { + "osmId": "938738266", + "name": null, + "lengthMeters": 257.043220652057, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.139022, + 11.5175902 + ], + [ + 48.1390422, + 11.5168036 + ], + [ + 48.1390759, + 11.5153878 + ], + [ + 48.139073, + 11.5144242 + ], + [ + 48.1390692, + 11.5141277 + ] + ] + }, + { + "osmId": "940680348", + "name": null, + "lengthMeters": 96.35405921247286, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1435905, + 11.5141956 + ], + [ + 48.1436487, + 11.5154913 + ] + ] + }, + { + "osmId": "942372145", + "name": null, + "lengthMeters": 115.04135793191058, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494473, + 13.3925491 + ], + [ + 52.5494263, + 13.3919085 + ], + [ + 52.5493938, + 13.3910062 + ], + [ + 52.5493851, + 13.3908554 + ], + [ + 52.5493848, + 13.3908509 + ] + ] + }, + { + "osmId": "942372146", + "name": null, + "lengthMeters": 107.09849417794362, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5490961, + 13.3919555 + ], + [ + 52.5491141, + 13.3923941 + ], + [ + 52.5491604, + 13.3935359 + ] + ] + }, + { + "osmId": "942849695", + "name": null, + "lengthMeters": 287.8400468994666, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5172993, + 13.3979156 + ], + [ + 52.5171753, + 13.399069 + ], + [ + 52.5171411, + 13.399394 + ], + [ + 52.5171043, + 13.3997905 + ], + [ + 52.5170713, + 13.4002559 + ], + [ + 52.5170576, + 13.4007349 + ], + [ + 52.5170651, + 13.4011689 + ], + [ + 52.517091, + 13.4016415 + ], + [ + 52.5171403, + 13.4021298 + ] + ] + }, + { + "osmId": "942849696", + "name": null, + "lengthMeters": 875.910615003191, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5167464, + 13.3850693 + ], + [ + 52.5167522, + 13.3854756 + ], + [ + 52.5167522, + 13.3858497 + ], + [ + 52.5167541, + 13.3866355 + ], + [ + 52.5167619, + 13.3870205 + ], + [ + 52.5167791, + 13.3874765 + ], + [ + 52.5168331, + 13.3883388 + ], + [ + 52.5169314, + 13.3898289 + ], + [ + 52.5169406, + 13.3899716 + ], + [ + 52.5170107, + 13.3910638 + ], + [ + 52.5170737, + 13.3918565 + ], + [ + 52.5171589, + 13.3927309 + ], + [ + 52.5172165, + 13.3932526 + ], + [ + 52.517281, + 13.3937649 + ], + [ + 52.5173716, + 13.3945146 + ], + [ + 52.5173988, + 13.3947828 + ], + [ + 52.5174347, + 13.3951932 + ], + [ + 52.5174532, + 13.3957039 + ], + [ + 52.5174419, + 13.3961992 + ], + [ + 52.5174205, + 13.3965357 + ], + [ + 52.5173903, + 13.3968696 + ], + [ + 52.5172993, + 13.3979156 + ] + ] + }, + { + "osmId": "942849697", + "name": null, + "lengthMeters": 277.95367782977775, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5172393, + 13.3997697 + ], + [ + 52.5174146, + 13.3981241 + ], + [ + 52.5174323, + 13.3979557 + ], + [ + 52.5175258, + 13.3968884 + ], + [ + 52.5175552, + 13.3965343 + ], + [ + 52.517576, + 13.3961899 + ], + [ + 52.517587, + 13.3957057 + ] + ] + }, + { + "osmId": "942849698", + "name": null, + "lengthMeters": 657.4581989082484, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5191629, + 13.4087232 + ], + [ + 52.5190003, + 13.4083524 + ], + [ + 52.518649, + 13.4075266 + ], + [ + 52.5185774, + 13.4073654 + ], + [ + 52.5184332, + 13.4069109 + ], + [ + 52.518343, + 13.4065973 + ], + [ + 52.5182936, + 13.4064256 + ], + [ + 52.5181128, + 13.4057248 + ], + [ + 52.5178612, + 13.4047835 + ], + [ + 52.5176355, + 13.4039278 + ], + [ + 52.5174972, + 13.4034088 + ], + [ + 52.5173782, + 13.4028939 + ], + [ + 52.5173087, + 13.4024915 + ], + [ + 52.5172506, + 13.4020763 + ], + [ + 52.5172028, + 13.4015933 + ], + [ + 52.5171828, + 13.4011525 + ], + [ + 52.5171821, + 13.4007184 + ], + [ + 52.5172017, + 13.4002289 + ], + [ + 52.5172393, + 13.3997697 + ] + ] + }, + { + "osmId": "946808449", + "name": null, + "lengthMeters": 175.05806421056266, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144404, + 13.5190697 + ], + [ + 52.5145213, + 13.5190716 + ], + [ + 52.5145819, + 13.5190734 + ], + [ + 52.5147095, + 13.519081 + ], + [ + 52.5149166, + 13.519101 + ], + [ + 52.5150316, + 13.5191117 + ], + [ + 52.5151189, + 13.5191168 + ], + [ + 52.5160138, + 13.5191506 + ] + ] + }, + { + "osmId": "949500023", + "name": null, + "lengthMeters": 168.02255597202867, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4541296, + 13.5109209 + ], + [ + 52.4533894, + 13.5120629 + ], + [ + 52.4533578, + 13.5121124 + ], + [ + 52.4530532, + 13.5125834 + ], + [ + 52.4530289, + 13.5126197 + ] + ] + }, + { + "osmId": "958655671", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 79.31355307800153, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5599833, + 9.9102363 + ], + [ + 53.5599849, + 9.9103532 + ], + [ + 53.5599868, + 9.9104882 + ], + [ + 53.5599957, + 9.9110311 + ], + [ + 53.5600061, + 9.9114365 + ] + ] + }, + { + "osmId": "958655674", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 93.47924311997178, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5600477, + 9.9130758 + ], + [ + 53.5600604, + 9.913417 + ], + [ + 53.560064, + 9.9137658 + ], + [ + 53.5600627, + 9.9140955 + ], + [ + 53.5600521, + 9.91449 + ] + ] + }, + { + "osmId": "958655677", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 104.81156801508695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5578242, + 9.9332549 + ], + [ + 53.5576355, + 9.9333906 + ], + [ + 53.5574367, + 9.9335092 + ], + [ + 53.5569349, + 9.9337774 + ] + ] + }, + { + "osmId": "958809706", + "name": null, + "lengthMeters": 324.6004044975675, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1693689, + 11.572792 + ], + [ + 48.1696059, + 11.5728029 + ], + [ + 48.17003, + 11.5728283 + ], + [ + 48.1703161, + 11.5728515 + ], + [ + 48.170696, + 11.5728707 + ], + [ + 48.1715431, + 11.572864 + ], + [ + 48.172287, + 11.5728594 + ] + ] + }, + { + "osmId": "958809708", + "name": null, + "lengthMeters": 91.17674033449596, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1192709, + 11.5482542 + ], + [ + 48.1184513, + 11.5482172 + ] + ] + }, + { + "osmId": "958809709", + "name": null, + "lengthMeters": 265.5160618114644, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1195564, + 11.5484932 + ], + [ + 48.1201976, + 11.5485241 + ], + [ + 48.1206949, + 11.5485457 + ], + [ + 48.1215346, + 11.5486221 + ], + [ + 48.1219419, + 11.5486437 + ] + ] + }, + { + "osmId": "960069531", + "name": null, + "lengthMeters": 140.2587691472375, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5653773, + 9.8265321 + ], + [ + 53.5655071, + 9.8247049 + ], + [ + 53.5655278, + 9.8244234 + ] + ] + }, + { + "osmId": "960069535", + "name": "Altona-Blankeneser Eisenbahn", + "lengthMeters": 77.82436626149932, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5601267, + 9.9127082 + ], + [ + 53.5601268, + 9.9126182 + ], + [ + 53.5601292, + 9.9120807 + ], + [ + 53.5601205, + 9.9115301 + ] + ] + }, + { + "osmId": "961398913", + "name": null, + "lengthMeters": 590.855526388748, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2058613, + 11.6139971 + ], + [ + 48.2059733, + 11.6140373 + ], + [ + 48.2067106, + 11.6143305 + ], + [ + 48.2079239, + 11.614803 + ], + [ + 48.2081759, + 11.6148863 + ], + [ + 48.2083928, + 11.6149715 + ], + [ + 48.2087064, + 11.615122 + ], + [ + 48.2096073, + 11.6156488 + ], + [ + 48.2098502, + 11.6157999 + ], + [ + 48.2102222, + 11.6160335 + ], + [ + 48.2109185, + 11.6163991 + ] + ] + }, + { + "osmId": "961398916", + "name": null, + "lengthMeters": 1126.7257670725892, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2110098, + 11.6160157 + ], + [ + 48.2106982, + 11.6158503 + ], + [ + 48.2104071, + 11.6157072 + ], + [ + 48.2098972, + 11.6154647 + ], + [ + 48.209242, + 11.6151841 + ], + [ + 48.2084666, + 11.6148798 + ], + [ + 48.2079415, + 11.6146769 + ], + [ + 48.2067315, + 11.6142176 + ], + [ + 48.2064232, + 11.6140969 + ], + [ + 48.2056493, + 11.613801 + ], + [ + 48.2050987, + 11.6135665 + ], + [ + 48.2046415, + 11.6133912 + ], + [ + 48.2044596, + 11.6133202 + ], + [ + 48.2040567, + 11.6131658 + ], + [ + 48.2039507, + 11.6131223 + ], + [ + 48.2038806, + 11.6130954 + ], + [ + 48.203629, + 11.6130155 + ], + [ + 48.2033705, + 11.6129415 + ], + [ + 48.2030362, + 11.6128802 + ], + [ + 48.2025827, + 11.6128348 + ], + [ + 48.2022094, + 11.6128179 + ], + [ + 48.2020939, + 11.6128222 + ], + [ + 48.2018582, + 11.6128477 + ], + [ + 48.2014754, + 11.6128995 + ], + [ + 48.2013087, + 11.6129335 + ], + [ + 48.2011605, + 11.6129761 + ] + ] + }, + { + "osmId": "961398917", + "name": null, + "lengthMeters": 105.8752468359599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2109185, + 11.6163991 + ], + [ + 48.2111725, + 11.6165336 + ], + [ + 48.2118139, + 11.616885 + ] + ] + }, + { + "osmId": "961398918", + "name": null, + "lengthMeters": 199.23715597423944, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2127923, + 11.6171765 + ], + [ + 48.2130842, + 11.6173396 + ], + [ + 48.2134151, + 11.6175396 + ], + [ + 48.214327, + 11.6180815 + ], + [ + 48.2144597, + 11.6181606 + ] + ] + }, + { + "osmId": "961398920", + "name": null, + "lengthMeters": 110.55649539079695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2128288, + 11.6170238 + ], + [ + 48.2126213, + 11.6169036 + ], + [ + 48.2125405, + 11.6168551 + ], + [ + 48.2118976, + 11.6165011 + ] + ] + }, + { + "osmId": "961398921", + "name": null, + "lengthMeters": 215.6455705545073, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2109569, + 11.616238 + ], + [ + 48.2112098, + 11.6163715 + ], + [ + 48.211844, + 11.6167155 + ], + [ + 48.2124866, + 11.617068 + ], + [ + 48.2127743, + 11.6172519 + ] + ] + }, + { + "osmId": "965439241", + "name": null, + "lengthMeters": 1155.0638818924992, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5715434, + 10.0820339 + ], + [ + 53.5720857, + 10.0837791 + ], + [ + 53.5727006, + 10.0857067 + ], + [ + 53.5729471, + 10.0865457 + ], + [ + 53.5732192, + 10.0875562 + ], + [ + 53.5734292, + 10.0886063 + ], + [ + 53.5736853, + 10.0901689 + ], + [ + 53.5740324, + 10.0924154 + ], + [ + 53.5746753, + 10.096495 + ], + [ + 53.574837, + 10.0977852 + ], + [ + 53.5749174, + 10.0984726 + ] + ] + }, + { + "osmId": "965439242", + "name": null, + "lengthMeters": 82.28322977446769, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5702666, + 10.0787807 + ], + [ + 53.5705927, + 10.0798993 + ] + ] + }, + { + "osmId": "965439243", + "name": null, + "lengthMeters": 247.25185116436484, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5701694, + 10.0786109 + ], + [ + 53.5705541, + 10.0799331 + ], + [ + 53.5710119, + 10.0812858 + ], + [ + 53.5712155, + 10.0819134 + ] + ] + }, + { + "osmId": "970630627", + "name": null, + "lengthMeters": 83.20436552388315, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416099, + 11.5506832 + ], + [ + 48.1416088, + 11.550948 + ], + [ + 48.1416095, + 11.5510719 + ], + [ + 48.1416097, + 11.5511121 + ], + [ + 48.1416098, + 11.5511321 + ], + [ + 48.1416106, + 11.5512643 + ], + [ + 48.141606, + 11.5518045 + ] + ] + }, + { + "osmId": "970649652", + "name": null, + "lengthMeters": 85.67677481294442, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416503, + 11.5511402 + ], + [ + 48.1416502, + 11.5510773 + ], + [ + 48.1416501, + 11.5510572 + ], + [ + 48.1416492, + 11.5509496 + ], + [ + 48.1416489, + 11.5507829 + ], + [ + 48.1416497, + 11.5507258 + ], + [ + 48.1416491, + 11.5503149 + ], + [ + 48.141663, + 11.5499862 + ] + ] + }, + { + "osmId": "970700763", + "name": null, + "lengthMeters": 83.13345440690016, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.141096, + 11.548029 + ], + [ + 48.1411629, + 11.5469131 + ] + ] + }, + { + "osmId": "971697227", + "name": null, + "lengthMeters": 616.9406962523017, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7282058, + 9.9040787 + ], + [ + 53.7282911, + 9.9040887 + ], + [ + 53.7284269, + 9.9041065 + ], + [ + 53.7284676, + 9.9041141 + ], + [ + 53.7285252, + 9.9041236 + ], + [ + 53.7287452, + 9.9041666 + ], + [ + 53.7289115, + 9.9042031 + ], + [ + 53.7292717, + 9.9043151 + ], + [ + 53.7295488, + 9.9043944 + ], + [ + 53.7296919, + 9.9044264 + ], + [ + 53.729826, + 9.904462 + ], + [ + 53.7300876, + 9.9045038 + ], + [ + 53.7302497, + 9.9045383 + ], + [ + 53.7303283, + 9.9045537 + ], + [ + 53.730617, + 9.9046092 + ], + [ + 53.7308555, + 9.9046586 + ], + [ + 53.7310971, + 9.9047002 + ], + [ + 53.7313716, + 9.9047471 + ], + [ + 53.7315967, + 9.9047865 + ], + [ + 53.7318845, + 9.9048368 + ], + [ + 53.7320836, + 9.9048785 + ], + [ + 53.7322844, + 9.9049167 + ], + [ + 53.732467, + 9.9049598 + ], + [ + 53.7327356, + 9.9050292 + ], + [ + 53.7330022, + 9.90514 + ], + [ + 53.733309, + 9.9053087 + ], + [ + 53.7336646, + 9.9055571 + ] + ] + }, + { + "osmId": "971697228", + "name": null, + "lengthMeters": 379.991956454468, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7282025, + 9.904141 + ], + [ + 53.7284339, + 9.9041788 + ], + [ + 53.7284716, + 9.904184 + ], + [ + 53.7285353, + 9.904195 + ], + [ + 53.7287387, + 9.9042398 + ], + [ + 53.728976, + 9.9043055 + ], + [ + 53.7293944, + 9.9044189 + ], + [ + 53.7296412, + 9.9044852 + ], + [ + 53.7297329, + 9.9045113 + ], + [ + 53.7298221, + 9.9045261 + ], + [ + 53.7300827, + 9.9045753 + ], + [ + 53.7302595, + 9.9046126 + ], + [ + 53.7303236, + 9.9046211 + ], + [ + 53.7306048, + 9.9046769 + ], + [ + 53.73085, + 9.9047267 + ], + [ + 53.7310894, + 9.9047667 + ], + [ + 53.7313212, + 9.9048107 + ], + [ + 53.7315922, + 9.90486 + ] + ] + }, + { + "osmId": "972062052", + "name": null, + "lengthMeters": 182.97725575253793, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.438077, + 13.5265022 + ], + [ + 52.438298, + 13.5262702 + ], + [ + 52.4386512, + 13.5257823 + ], + [ + 52.4388106, + 13.5255547 + ], + [ + 52.4390336, + 13.5252362 + ], + [ + 52.4392302, + 13.524955 + ], + [ + 52.4393592, + 13.5248183 + ] + ] + }, + { + "osmId": "987225197", + "name": "ehem. Friedhofsbahn", + "lengthMeters": 101.79985611131758, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4073372, + 13.1749095 + ], + [ + 52.408149, + 13.1742157 + ] + ] + }, + { + "osmId": "991768856", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 253.81271598215884, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1941614, + 11.5211042 + ], + [ + 48.1923074, + 11.5191068 + ] + ] + }, + { + "osmId": "991768858", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 255.81647178736165, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1922873, + 11.5191551 + ], + [ + 48.1941346, + 11.5211438 + ], + [ + 48.1941564, + 11.5211673 + ] + ] + }, + { + "osmId": "993472810", + "name": null, + "lengthMeters": 962.1899888088957, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6089502, + 10.0200431 + ], + [ + 53.6088244, + 10.0196779 + ], + [ + 53.6086578, + 10.0192732 + ], + [ + 53.6085796, + 10.0190412 + ], + [ + 53.6084156, + 10.0185811 + ], + [ + 53.6082718, + 10.0182704 + ], + [ + 53.6081173, + 10.0180042 + ], + [ + 53.6079678, + 10.0177841 + ], + [ + 53.6078139, + 10.0176252 + ], + [ + 53.6076479, + 10.0175216 + ], + [ + 53.6074856, + 10.0174566 + ], + [ + 53.607249, + 10.0173964 + ], + [ + 53.6070011, + 10.0173698 + ], + [ + 53.6066731, + 10.0173638 + ], + [ + 53.6055004, + 10.0173927 + ], + [ + 53.6049847, + 10.0173779 + ], + [ + 53.6042052, + 10.0173322 + ], + [ + 53.6034116, + 10.0172856 + ], + [ + 53.6021764, + 10.0172115 + ], + [ + 53.6010352, + 10.017152 + ] + ] + }, + { + "osmId": "993472811", + "name": null, + "lengthMeters": 956.0273775206019, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6010306, + 10.0173692 + ], + [ + 53.6034087, + 10.017512 + ], + [ + 53.6037497, + 10.0175353 + ], + [ + 53.6042011, + 10.0175507 + ], + [ + 53.604355, + 10.0175503 + ], + [ + 53.6051103, + 10.0175972 + ], + [ + 53.6055027, + 10.017584 + ], + [ + 53.605925, + 10.017546 + ], + [ + 53.6062841, + 10.0174846 + ], + [ + 53.6066772, + 10.0174431 + ], + [ + 53.6070034, + 10.0174436 + ], + [ + 53.6072448, + 10.0174628 + ], + [ + 53.6074819, + 10.0175363 + ], + [ + 53.6076825, + 10.0176441 + ], + [ + 53.6079252, + 10.0178724 + ], + [ + 53.6081354, + 10.0181792 + ], + [ + 53.6082581, + 10.0183875 + ], + [ + 53.6083984, + 10.0187024 + ], + [ + 53.6085459, + 10.0190725 + ], + [ + 53.6088825, + 10.0200542 + ], + [ + 53.608895, + 10.0200906 + ] + ] + }, + { + "osmId": "993472814", + "name": null, + "lengthMeters": 134.78495771487573, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6097987, + 10.0227494 + ], + [ + 53.609728, + 10.0224815 + ], + [ + 53.609553, + 10.0218182 + ], + [ + 53.6093429, + 10.0210219 + ], + [ + 53.6093107, + 10.0209001 + ], + [ + 53.6093061, + 10.0208826 + ] + ] + }, + { + "osmId": "993475825", + "name": null, + "lengthMeters": 147.70678789298307, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.609178, + 10.0210002 + ], + [ + 53.6097147, + 10.0230483 + ] + ] + }, + { + "osmId": "993475826", + "name": null, + "lengthMeters": 82.21198333963825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6097987, + 10.0227494 + ], + [ + 53.6101185, + 10.023873 + ] + ] + }, + { + "osmId": "993475835", + "name": null, + "lengthMeters": 287.6898099498864, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6120118, + 10.0275197 + ], + [ + 53.6118641, + 10.0273729 + ], + [ + 53.6117645, + 10.0272693 + ], + [ + 53.6116917, + 10.0271934 + ], + [ + 53.6116345, + 10.0271255 + ], + [ + 53.611567, + 10.0270466 + ], + [ + 53.6115098, + 10.0269721 + ], + [ + 53.6114258, + 10.0268656 + ], + [ + 53.6113838, + 10.0268057 + ], + [ + 53.6113097, + 10.0266976 + ], + [ + 53.6112287, + 10.0265801 + ], + [ + 53.6111425, + 10.0264428 + ], + [ + 53.6110654, + 10.0263144 + ], + [ + 53.6109688, + 10.0261486 + ], + [ + 53.6108783, + 10.0259741 + ], + [ + 53.6107969, + 10.0258077 + ], + [ + 53.6107349, + 10.0256829 + ], + [ + 53.6106656, + 10.0255281 + ], + [ + 53.6106037, + 10.0253791 + ], + [ + 53.6105335, + 10.0251959 + ], + [ + 53.6104863, + 10.0250703 + ], + [ + 53.6104175, + 10.0248761 + ], + [ + 53.6103573, + 10.0246943 + ], + [ + 53.6103079, + 10.0245374 + ], + [ + 53.6102688, + 10.0243947 + ] + ] + }, + { + "osmId": "993750660", + "name": null, + "lengthMeters": 467.89999678746796, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6100995, + 10.0245352 + ], + [ + 53.6104155, + 10.0253878 + ], + [ + 53.6108074, + 10.0261731 + ], + [ + 53.6108458, + 10.0262568 + ], + [ + 53.6108735, + 10.0263191 + ], + [ + 53.610905, + 10.0263852 + ], + [ + 53.6109365, + 10.0264527 + ], + [ + 53.6109713, + 10.0265268 + ], + [ + 53.6109939, + 10.0265789 + ], + [ + 53.6110157, + 10.0266297 + ], + [ + 53.611038, + 10.0266841 + ], + [ + 53.6110565, + 10.0267284 + ], + [ + 53.6110902, + 10.0268109 + ], + [ + 53.6111247, + 10.0268919 + ], + [ + 53.6111529, + 10.026957 + ], + [ + 53.6111834, + 10.0270329 + ], + [ + 53.6112138, + 10.0271084 + ], + [ + 53.6112322, + 10.0271544 + ], + [ + 53.6112459, + 10.0271944 + ], + [ + 53.6112599, + 10.0272312 + ], + [ + 53.6112847, + 10.0273042 + ], + [ + 53.6113052, + 10.0273649 + ], + [ + 53.6113208, + 10.0274158 + ], + [ + 53.611336, + 10.0274696 + ], + [ + 53.6113533, + 10.0275428 + ], + [ + 53.611372, + 10.0276178 + ], + [ + 53.6113904, + 10.027696 + ], + [ + 53.6114121, + 10.0277856 + ], + [ + 53.6114342, + 10.0278808 + ], + [ + 53.6114504, + 10.0279645 + ], + [ + 53.6114618, + 10.028046 + ], + [ + 53.6114712, + 10.0281281 + ], + [ + 53.6114768, + 10.0281946 + ], + [ + 53.6114812, + 10.0282709 + ], + [ + 53.6114879, + 10.0283739 + ], + [ + 53.611493, + 10.0284685 + ], + [ + 53.6114941, + 10.0285473 + ], + [ + 53.6114928, + 10.0286438 + ], + [ + 53.61149, + 10.0287476 + ], + [ + 53.6114888, + 10.0288564 + ], + [ + 53.6114885, + 10.0289371 + ], + [ + 53.611484, + 10.0290177 + ], + [ + 53.6114774, + 10.0291595 + ], + [ + 53.6114682, + 10.0293091 + ], + [ + 53.6114491, + 10.0295215 + ], + [ + 53.6114348, + 10.0296808 + ], + [ + 53.6114209, + 10.0297993 + ], + [ + 53.6114031, + 10.0299351 + ], + [ + 53.6113845, + 10.0300753 + ], + [ + 53.6113632, + 10.030224 + ], + [ + 53.6113398, + 10.0303636 + ], + [ + 53.6113071, + 10.0305233 + ], + [ + 53.6112735, + 10.0306849 + ], + [ + 53.6112338, + 10.0308565 + ] + ] + }, + { + "osmId": "998116674", + "name": null, + "lengthMeters": 110.16898553840316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4340417, + 13.5414174 + ], + [ + 52.4343094, + 13.5410593 + ], + [ + 52.4343753, + 13.5409691 + ], + [ + 52.434512, + 13.5407724 + ], + [ + 52.4345415, + 13.5407244 + ], + [ + 52.4345775, + 13.5406622 + ], + [ + 52.4346244, + 13.5405679 + ], + [ + 52.4346695, + 13.5404666 + ], + [ + 52.4347064, + 13.5403937 + ], + [ + 52.4347633, + 13.5403126 + ] + ] + }, + { + "osmId": "998152253", + "name": null, + "lengthMeters": 254.39033464165684, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4338566, + 13.5252833 + ], + [ + 52.4339376, + 13.5252871 + ], + [ + 52.4344201, + 13.5253065 + ], + [ + 52.4351284, + 13.5253391 + ], + [ + 52.4358625, + 13.5253585 + ], + [ + 52.4361437, + 13.5253728 + ] + ] + }, + { + "osmId": "998153268", + "name": null, + "lengthMeters": 264.27138793366123, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4361441, + 13.525331 + ], + [ + 52.4357202, + 13.5253164 + ], + [ + 52.4348991, + 13.5252823 + ], + [ + 52.4344578, + 13.5252655 + ], + [ + 52.4340282, + 13.5252503 + ], + [ + 52.4337681, + 13.5252401 + ] + ] + }, + { + "osmId": "998193588", + "name": null, + "lengthMeters": 95.26808241703353, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4625235, + 13.5138073 + ], + [ + 52.4626864, + 13.5130747 + ], + [ + 52.4627337, + 13.5127963 + ], + [ + 52.4627488, + 13.5127042 + ], + [ + 52.4627686, + 13.5125956 + ], + [ + 52.4627951, + 13.5124746 + ] + ] + }, + { + "osmId": "1004715066", + "name": "ehem. Stammbahn", + "lengthMeters": 2212.981266486621, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.429821, + 13.2546377 + ], + [ + 52.4294106, + 13.2529761 + ], + [ + 52.4292375, + 13.252383 + ], + [ + 52.4288284, + 13.2511585 + ], + [ + 52.4284285, + 13.2499292 + ], + [ + 52.4280304, + 13.2487055 + ], + [ + 52.4274266, + 13.2467414 + ], + [ + 52.4273085, + 13.246357 + ], + [ + 52.4264962, + 13.2436204 + ], + [ + 52.4251696, + 13.2391475 + ], + [ + 52.4251424, + 13.2390559 + ], + [ + 52.4250434, + 13.238722 + ], + [ + 52.4232718, + 13.2326911 + ], + [ + 52.4231522, + 13.2322839 + ], + [ + 52.4220719, + 13.2287011 + ], + [ + 52.4217599, + 13.2276662 + ], + [ + 52.4211154, + 13.2254621 + ], + [ + 52.4210765, + 13.2253289 + ] + ] + }, + { + "osmId": "1005022279", + "name": null, + "lengthMeters": 180.33730882088264, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1332899, + 11.6433956 + ], + [ + 48.1333374, + 11.6430558 + ], + [ + 48.1335028, + 11.641786 + ], + [ + 48.1335399, + 11.6415042 + ], + [ + 48.1335881, + 11.6411285 + ], + [ + 48.1336037, + 11.6410115 + ] + ] + }, + { + "osmId": "1005022280", + "name": null, + "lengthMeters": 111.81650979186728, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1340742, + 11.631989 + ], + [ + 48.1340715, + 11.6320169 + ], + [ + 48.134005, + 11.6326925 + ], + [ + 48.1339306, + 11.6334803 + ] + ] + }, + { + "osmId": "1007431539", + "name": null, + "lengthMeters": 415.93064959564583, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5351327, + 13.2563072 + ], + [ + 52.5351432, + 13.256643 + ], + [ + 52.5351471, + 13.2568019 + ], + [ + 52.5351394, + 13.2569714 + ], + [ + 52.5350901, + 13.2576038 + ], + [ + 52.5350131, + 13.2584845 + ], + [ + 52.5346957, + 13.2622918 + ], + [ + 52.5346689, + 13.2623969 + ] + ] + }, + { + "osmId": "1007431540", + "name": null, + "lengthMeters": 165.6212423713346, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362994, + 13.2571595 + ], + [ + 52.5355554, + 13.2569783 + ], + [ + 52.5354089, + 13.2569426 + ], + [ + 52.5353687, + 13.2569222 + ], + [ + 52.5352739, + 13.2568545 + ], + [ + 52.5352275, + 13.2567952 + ], + [ + 52.5351708, + 13.2566952 + ], + [ + 52.5351432, + 13.256643 + ], + [ + 52.5351033, + 13.2565113 + ], + [ + 52.5350902, + 13.2564563 + ], + [ + 52.5350646, + 13.2562394 + ] + ] + }, + { + "osmId": "1007479688", + "name": null, + "lengthMeters": 110.09572296625232, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4944296, + 13.4625923 + ], + [ + 52.4944613, + 13.462619 + ], + [ + 52.4945618, + 13.4627004 + ], + [ + 52.4946129, + 13.462744 + ], + [ + 52.49477, + 13.462869 + ], + [ + 52.4949558, + 13.4630389 + ], + [ + 52.4950853, + 13.4631729 + ], + [ + 52.495186, + 13.4632927 + ], + [ + 52.4952681, + 13.4633984 + ], + [ + 52.4952802, + 13.4634154 + ] + ] + }, + { + "osmId": "1015954106", + "name": null, + "lengthMeters": 147.06164560402476, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4997853, + 13.4822315 + ], + [ + 52.4990869, + 13.4840764 + ] + ] + }, + { + "osmId": "1015954112", + "name": null, + "lengthMeters": 139.4830499733342, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5074702, + 13.4433457 + ], + [ + 52.5073796, + 13.4439745 + ], + [ + 52.5072447, + 13.4447329 + ], + [ + 52.5071357, + 13.4453313 + ] + ] + }, + { + "osmId": "1017656604", + "name": null, + "lengthMeters": 151.59981479494937, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4319892, + 13.7457311 + ], + [ + 52.4318161, + 13.7462611 + ], + [ + 52.4314935, + 13.7471507 + ], + [ + 52.4313082, + 13.7476678 + ] + ] + }, + { + "osmId": "1017797349", + "name": null, + "lengthMeters": 131.36267855696605, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292403, + 13.4976218 + ], + [ + 52.5292199, + 13.4985754 + ], + [ + 52.5292153, + 13.4987699 + ], + [ + 52.5292003, + 13.4994055 + ], + [ + 52.529197, + 13.4995624 + ] + ] + }, + { + "osmId": "1019005300", + "name": null, + "lengthMeters": 249.5657901844889, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7408964, + 9.8729341 + ], + [ + 53.7408807, + 9.8729623 + ], + [ + 53.740859, + 9.8729882 + ], + [ + 53.7408278, + 9.8730052 + ], + [ + 53.7408009, + 9.8730016 + ], + [ + 53.7407813, + 9.8729864 + ], + [ + 53.7405254, + 9.8727262 + ], + [ + 53.7404485, + 9.8726464 + ], + [ + 53.7404328, + 9.872614 + ], + [ + 53.7404302, + 9.8725792 + ], + [ + 53.7404323, + 9.8725488 + ], + [ + 53.7407974, + 9.8713945 + ], + [ + 53.7411062, + 9.8703681 + ], + [ + 53.7411507, + 9.8703324 + ], + [ + 53.7412179, + 9.8703171 + ], + [ + 53.7412458, + 9.8702895 + ], + [ + 53.7412771, + 9.87021 + ] + ] + }, + { + "osmId": "1019486607", + "name": null, + "lengthMeters": 130.1042458821262, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1192169, + 11.5838137 + ], + [ + 48.1192315, + 11.5838253 + ], + [ + 48.1194042, + 11.5839652 + ], + [ + 48.119612, + 11.5841331 + ], + [ + 48.1197206, + 11.5842336 + ], + [ + 48.1198651, + 11.5843845 + ], + [ + 48.119969, + 11.5844958 + ], + [ + 48.1200898, + 11.5846085 + ], + [ + 48.1202082, + 11.58471 + ], + [ + 48.1202179, + 11.5847172 + ] + ] + }, + { + "osmId": "1019486615", + "name": null, + "lengthMeters": 127.58503847425771, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1202114, + 11.5846601 + ], + [ + 48.1200993, + 11.5845758 + ], + [ + 48.1200206, + 11.5845017 + ], + [ + 48.119963, + 11.5844449 + ], + [ + 48.119874, + 11.5843469 + ], + [ + 48.1197318, + 11.5841962 + ], + [ + 48.1196229, + 11.5840965 + ], + [ + 48.1193952, + 11.5839114 + ], + [ + 48.1192724, + 11.5838161 + ], + [ + 48.1192276, + 11.5837815 + ] + ] + }, + { + "osmId": "1019486616", + "name": null, + "lengthMeters": 76.65095147484087, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.132553, + 11.597483 + ], + [ + 48.1325477, + 11.5974839 + ], + [ + 48.1323986, + 11.5975206 + ], + [ + 48.1323506, + 11.597541 + ], + [ + 48.1323103, + 11.5975686 + ], + [ + 48.1322815, + 11.5975918 + ], + [ + 48.1322582, + 11.5976084 + ], + [ + 48.1322543, + 11.5976118 + ], + [ + 48.1322307, + 11.597632 + ], + [ + 48.1321754, + 11.5976779 + ], + [ + 48.1321495, + 11.5976916 + ], + [ + 48.1321212, + 11.5977033 + ], + [ + 48.1320893, + 11.5977083 + ], + [ + 48.1320583, + 11.5977071 + ], + [ + 48.1320388, + 11.5977039 + ], + [ + 48.132023, + 11.5976987 + ], + [ + 48.1320021, + 11.5976881 + ], + [ + 48.1319826, + 11.5976755 + ], + [ + 48.131964, + 11.5976569 + ], + [ + 48.1319482, + 11.5976395 + ], + [ + 48.1319328, + 11.5976172 + ], + [ + 48.1319163, + 11.5975934 + ] + ] + }, + { + "osmId": "1019486618", + "name": null, + "lengthMeters": 92.18207075182836, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1358864, + 11.6075998 + ], + [ + 48.136105, + 11.6084 + ], + [ + 48.1362026, + 11.6087481 + ] + ] + }, + { + "osmId": "1019638159", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 129.9426334114601, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.353054, + 13.4217368 + ], + [ + 52.3526062, + 13.4199696 + ] + ] + }, + { + "osmId": "1019638164", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 565.5257534394306, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3506982, + 13.4116588 + ], + [ + 52.3508843, + 13.412524 + ], + [ + 52.3509688, + 13.4129181 + ], + [ + 52.3511151, + 13.4136428 + ], + [ + 52.3512587, + 13.414373 + ], + [ + 52.3513009, + 13.4145817 + ], + [ + 52.351341, + 13.4147966 + ], + [ + 52.3514663, + 13.4154086 + ], + [ + 52.3516419, + 13.41622 + ], + [ + 52.3518801, + 13.4172582 + ], + [ + 52.3521041, + 13.4181445 + ], + [ + 52.3523545, + 13.4191349 + ], + [ + 52.352438, + 13.4194789 + ] + ] + }, + { + "osmId": "1019638165", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 603.278265826275, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3526062, + 13.4199696 + ], + [ + 52.3525087, + 13.4195776 + ], + [ + 52.3522584, + 13.4186089 + ], + [ + 52.3519185, + 13.4172279 + ], + [ + 52.3516729, + 13.4161908 + ], + [ + 52.3515014, + 13.4153761 + ], + [ + 52.3513891, + 13.4148375 + ], + [ + 52.3513795, + 13.4147779 + ], + [ + 52.351338, + 13.4145637 + ], + [ + 52.3512949, + 13.4143498 + ], + [ + 52.3511487, + 13.4136207 + ], + [ + 52.3510067, + 13.4129055 + ], + [ + 52.3507343, + 13.4116375 + ] + ] + }, + { + "osmId": "1020536971", + "name": null, + "lengthMeters": 213.19584825137767, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1343553, + 11.597951 + ], + [ + 48.134308, + 11.5978922 + ], + [ + 48.1342613, + 11.5978403 + ], + [ + 48.1342079, + 11.597783 + ], + [ + 48.1341787, + 11.5977544 + ], + [ + 48.1341514, + 11.5977278 + ], + [ + 48.1341135, + 11.5976965 + ], + [ + 48.1340809, + 11.5976708 + ], + [ + 48.1340406, + 11.5976363 + ], + [ + 48.1340072, + 11.5976105 + ], + [ + 48.133927, + 11.5975505 + ], + [ + 48.1338447, + 11.5974972 + ], + [ + 48.1337921, + 11.5974628 + ], + [ + 48.1337276, + 11.5974251 + ], + [ + 48.1336731, + 11.5973936 + ], + [ + 48.1336335, + 11.5973723 + ], + [ + 48.1335866, + 11.5973522 + ], + [ + 48.133551, + 11.5973387 + ], + [ + 48.1334992, + 11.5973253 + ], + [ + 48.1334548, + 11.597316 + ], + [ + 48.1333944, + 11.597309 + ], + [ + 48.1333382, + 11.5973077 + ], + [ + 48.1333031, + 11.5973085 + ], + [ + 48.1332762, + 11.5973117 + ], + [ + 48.1332387, + 11.5973182 + ], + [ + 48.1331899, + 11.5973302 + ], + [ + 48.1331726, + 11.5973353 + ], + [ + 48.1330795, + 11.5973623 + ], + [ + 48.132553, + 11.597483 + ] + ] + }, + { + "osmId": "1020536974", + "name": null, + "lengthMeters": 901.7570925509434, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.131547, + 11.5874169 + ], + [ + 48.131537, + 11.5874836 + ], + [ + 48.1315284, + 11.587578 + ], + [ + 48.1315236, + 11.5876617 + ], + [ + 48.1315209, + 11.58771 + ], + [ + 48.1315209, + 11.5877454 + ], + [ + 48.1315224, + 11.5878909 + ], + [ + 48.1315422, + 11.5881241 + ], + [ + 48.1316537, + 11.5892244 + ], + [ + 48.1316729, + 11.5893517 + ], + [ + 48.1316916, + 11.5894329 + ], + [ + 48.1317106, + 11.5894997 + ], + [ + 48.1317395, + 11.5895675 + ], + [ + 48.1317732, + 11.5896449 + ], + [ + 48.1318187, + 11.5897194 + ], + [ + 48.1318613, + 11.5897811 + ], + [ + 48.1319025, + 11.5898387 + ], + [ + 48.1319429, + 11.5898922 + ], + [ + 48.1323615, + 11.5904641 + ], + [ + 48.1324398, + 11.5905761 + ], + [ + 48.1324784, + 11.5906368 + ], + [ + 48.1325112, + 11.5906982 + ], + [ + 48.1325473, + 11.5907728 + ], + [ + 48.132571, + 11.5908217 + ], + [ + 48.1327092, + 11.5912391 + ], + [ + 48.1327187, + 11.5912686 + ], + [ + 48.1328598, + 11.5917074 + ], + [ + 48.1335203, + 11.5937525 + ], + [ + 48.1336133, + 11.5940688 + ], + [ + 48.1336507, + 11.5941998 + ], + [ + 48.1336962, + 11.5943641 + ], + [ + 48.1337637, + 11.5946146 + ], + [ + 48.1337863, + 11.5947026 + ], + [ + 48.1340647, + 11.5957864 + ], + [ + 48.1341013, + 11.5959452 + ], + [ + 48.1341375, + 11.5961246 + ], + [ + 48.1341396, + 11.5961355 + ], + [ + 48.134163, + 11.5962567 + ], + [ + 48.1341814, + 11.5963752 + ], + [ + 48.1341892, + 11.5964258 + ], + [ + 48.1342401, + 11.5967846 + ], + [ + 48.1342595, + 11.5968718 + ], + [ + 48.1342858, + 11.596954 + ], + [ + 48.1343166, + 11.5970281 + ], + [ + 48.1343602, + 11.59711 + ], + [ + 48.1343988, + 11.5971703 + ], + [ + 48.1344406, + 11.5972228 + ], + [ + 48.13449, + 11.5972773 + ], + [ + 48.1345399, + 11.5973252 + ], + [ + 48.1348657, + 11.5975893 + ], + [ + 48.1349363, + 11.5976473 + ], + [ + 48.1349745, + 11.5976797 + ], + [ + 48.1350425, + 11.5977383 + ], + [ + 48.1350904, + 11.5977728 + ], + [ + 48.1351155, + 11.5977881 + ] + ] + }, + { + "osmId": "1020547554", + "name": null, + "lengthMeters": 162.5610361913669, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1338675, + 11.5661254 + ], + [ + 48.1338897, + 11.5661148 + ], + [ + 48.1339102, + 11.5661063 + ], + [ + 48.1339269, + 11.5661012 + ], + [ + 48.1339413, + 11.5660969 + ], + [ + 48.1339581, + 11.5660932 + ], + [ + 48.1339909, + 11.5660906 + ], + [ + 48.1340054, + 11.5660903 + ], + [ + 48.1340159, + 11.5660906 + ], + [ + 48.1340291, + 11.5660917 + ], + [ + 48.1340443, + 11.5660931 + ], + [ + 48.1340669, + 11.5660966 + ], + [ + 48.1341631, + 11.566114 + ], + [ + 48.1341804, + 11.5661164 + ], + [ + 48.1341986, + 11.5661175 + ], + [ + 48.1342208, + 11.5661171 + ], + [ + 48.1342433, + 11.5661148 + ], + [ + 48.1342665, + 11.5661112 + ], + [ + 48.1342929, + 11.5661045 + ], + [ + 48.1343117, + 11.566098 + ], + [ + 48.1343319, + 11.5660897 + ], + [ + 48.1343505, + 11.5660777 + ], + [ + 48.1343757, + 11.5660643 + ], + [ + 48.1343964, + 11.5660535 + ], + [ + 48.1346517, + 11.5658901 + ], + [ + 48.134737, + 11.5658352 + ], + [ + 48.1349628, + 11.5656898 + ], + [ + 48.1350288, + 11.5656423 + ], + [ + 48.1350815, + 11.565592 + ], + [ + 48.1352355, + 11.5654798 + ] + ] + }, + { + "osmId": "1020547555", + "name": null, + "lengthMeters": 202.16160427021646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1352261, + 11.5654435 + ], + [ + 48.1350758, + 11.5655639 + ], + [ + 48.1350186, + 11.5656116 + ], + [ + 48.1349545, + 11.5656553 + ], + [ + 48.1347263, + 11.5658014 + ], + [ + 48.1343844, + 11.5660203 + ], + [ + 48.1343555, + 11.5660359 + ], + [ + 48.134336, + 11.5660466 + ], + [ + 48.1343157, + 11.5660548 + ], + [ + 48.1342968, + 11.5660613 + ], + [ + 48.134278, + 11.566065 + ], + [ + 48.1342514, + 11.5660707 + ], + [ + 48.1342187, + 11.5660756 + ], + [ + 48.1341739, + 11.5660734 + ], + [ + 48.1341342, + 11.5660681 + ], + [ + 48.1340973, + 11.5660617 + ], + [ + 48.1340621, + 11.5660537 + ], + [ + 48.1340506, + 11.566052 + ], + [ + 48.1340449, + 11.5660512 + ], + [ + 48.1340206, + 11.5660478 + ], + [ + 48.1339957, + 11.5660474 + ], + [ + 48.1339737, + 11.5660496 + ], + [ + 48.1339545, + 11.5660528 + ], + [ + 48.1339377, + 11.5660569 + ], + [ + 48.1339221, + 11.5660609 + ], + [ + 48.1339055, + 11.5660669 + ], + [ + 48.1338696, + 11.5660832 + ], + [ + 48.133836, + 11.5661021 + ], + [ + 48.13353, + 11.566297 + ] + ] + }, + { + "osmId": "1020555415", + "name": null, + "lengthMeters": 158.95391657353997, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1386792, + 11.565333 + ], + [ + 48.1389215, + 11.5653793 + ], + [ + 48.1389621, + 11.5653825 + ], + [ + 48.1390206, + 11.5653772 + ], + [ + 48.1390539, + 11.5653657 + ], + [ + 48.1390901, + 11.56534 + ], + [ + 48.1391156, + 11.5653167 + ], + [ + 48.1391443, + 11.5652782 + ], + [ + 48.1391665, + 11.5652355 + ], + [ + 48.1391845, + 11.5651979 + ], + [ + 48.1392023, + 11.5651365 + ], + [ + 48.1392117, + 11.5650832 + ], + [ + 48.1392177, + 11.5650299 + ], + [ + 48.139221, + 11.5649748 + ], + [ + 48.1392244, + 11.5648941 + ], + [ + 48.1392689, + 11.5640265 + ], + [ + 48.1392756, + 11.5638961 + ] + ] + }, + { + "osmId": "1020555417", + "name": null, + "lengthMeters": 137.63382198941713, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1383348, + 11.5652355 + ], + [ + 48.1381736, + 11.5652088 + ], + [ + 48.1378626, + 11.5651517 + ], + [ + 48.1375146, + 11.5650879 + ], + [ + 48.1374432, + 11.5650706 + ], + [ + 48.1373634, + 11.5650519 + ], + [ + 48.1373366, + 11.5650444 + ], + [ + 48.1373122, + 11.5650369 + ], + [ + 48.1371089, + 11.5649835 + ] + ] + }, + { + "osmId": "1020555418", + "name": null, + "lengthMeters": 207.74700877021664, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1378232, + 11.5884026 + ], + [ + 48.1378552, + 11.5883228 + ], + [ + 48.137871, + 11.5882952 + ], + [ + 48.1378934, + 11.588279 + ], + [ + 48.1379017, + 11.5882727 + ], + [ + 48.1379383, + 11.5882624 + ], + [ + 48.1379835, + 11.58827 + ], + [ + 48.1383196, + 11.5884143 + ], + [ + 48.139036, + 11.5887201 + ], + [ + 48.139077, + 11.5887341 + ], + [ + 48.1390919, + 11.5887378 + ], + [ + 48.1391311, + 11.5887476 + ], + [ + 48.1391792, + 11.588755 + ], + [ + 48.1392316, + 11.5887508 + ], + [ + 48.139279, + 11.5887414 + ], + [ + 48.1393385, + 11.5887261 + ], + [ + 48.1394424, + 11.5886903 + ], + [ + 48.1395391, + 11.5886466 + ], + [ + 48.1395938, + 11.5886227 + ] + ] + }, + { + "osmId": "1020561100", + "name": null, + "lengthMeters": 698.4405971018755, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1553247, + 11.5397093 + ], + [ + 48.1553755, + 11.5398381 + ], + [ + 48.1554683, + 11.5400908 + ], + [ + 48.1555582, + 11.5402831 + ], + [ + 48.1557563, + 11.5406625 + ], + [ + 48.1564544, + 11.5419185 + ], + [ + 48.1568947, + 11.5427202 + ], + [ + 48.1572218, + 11.5433278 + ], + [ + 48.1572626, + 11.5434019 + ], + [ + 48.1573342, + 11.5435389 + ], + [ + 48.1574142, + 11.5436843 + ], + [ + 48.1580151, + 11.5447793 + ], + [ + 48.159252, + 11.5470488 + ] + ] + }, + { + "osmId": "1020561101", + "name": null, + "lengthMeters": 1270.404491013669, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1609062, + 11.5638598 + ], + [ + 48.1609072, + 11.5636924 + ], + [ + 48.160908, + 11.5636346 + ], + [ + 48.1609098, + 11.5635861 + ], + [ + 48.1609161, + 11.5635147 + ], + [ + 48.1609271, + 11.5633858 + ], + [ + 48.1609304, + 11.5633465 + ], + [ + 48.1609349, + 11.5632943 + ], + [ + 48.1609362, + 11.5632807 + ], + [ + 48.1609501, + 11.563127 + ], + [ + 48.160953, + 11.5630889 + ], + [ + 48.1610221, + 11.5624685 + ], + [ + 48.1610651, + 11.5620825 + ], + [ + 48.1610791, + 11.5620085 + ], + [ + 48.1610999, + 11.5618963 + ], + [ + 48.1611244, + 11.5617631 + ], + [ + 48.1611636, + 11.5616153 + ], + [ + 48.1611915, + 11.5614595 + ], + [ + 48.1612054, + 11.5613646 + ], + [ + 48.1612127, + 11.5612825 + ], + [ + 48.1612576, + 11.5606431 + ], + [ + 48.1613554, + 11.5590755 + ], + [ + 48.161392, + 11.5584837 + ], + [ + 48.1613969, + 11.5584015 + ], + [ + 48.1614039, + 11.5582873 + ], + [ + 48.1614086, + 11.558203 + ], + [ + 48.1614116, + 11.5581482 + ], + [ + 48.1614387, + 11.5576487 + ], + [ + 48.1614503, + 11.5572047 + ], + [ + 48.1614471, + 11.5570766 + ], + [ + 48.1614483, + 11.5569231 + ], + [ + 48.1614488, + 11.5567632 + ], + [ + 48.1614578, + 11.5539661 + ], + [ + 48.161459, + 11.5534794 + ], + [ + 48.161459, + 11.5532738 + ], + [ + 48.1614649, + 11.5530575 + ], + [ + 48.1614664, + 11.5528639 + ], + [ + 48.1614686, + 11.5527965 + ], + [ + 48.1614731, + 11.5518123 + ], + [ + 48.1614717, + 11.5517284 + ], + [ + 48.1614678, + 11.5516446 + ], + [ + 48.1614513, + 11.5514752 + ], + [ + 48.1614198, + 11.5512286 + ], + [ + 48.1614116, + 11.5511698 + ], + [ + 48.1613906, + 11.5510687 + ], + [ + 48.1613621, + 11.5509459 + ], + [ + 48.1613272, + 11.5508495 + ], + [ + 48.1612798, + 11.5507366 + ], + [ + 48.1612434, + 11.550664 + ], + [ + 48.1611289, + 11.5504472 + ], + [ + 48.1609516, + 11.5501204 + ], + [ + 48.1606986, + 11.5496534 + ], + [ + 48.1605911, + 11.5494549 + ], + [ + 48.1604395, + 11.5491749 + ], + [ + 48.1596509, + 11.5477158 + ] + ] + }, + { + "osmId": "1020696300", + "name": null, + "lengthMeters": 106.32533146529208, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5217603, + 13.4967773 + ], + [ + 52.5217485, + 13.4973298 + ], + [ + 52.5217378, + 13.4982661 + ], + [ + 52.5217369, + 13.4983483 + ] + ] + }, + { + "osmId": "1021207510", + "name": null, + "lengthMeters": 103.79304010384826, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3578054, + 13.137319 + ], + [ + 52.3578203, + 13.1373106 + ], + [ + 52.3578878, + 13.1372858 + ], + [ + 52.3579463, + 13.137278 + ], + [ + 52.3579817, + 13.1372751 + ], + [ + 52.358017, + 13.1372741 + ], + [ + 52.3582351, + 13.1372669 + ], + [ + 52.3587359, + 13.1372498 + ] + ] + }, + { + "osmId": "1023966241", + "name": null, + "lengthMeters": 93.80907049322776, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4782816, + 13.3478121 + ], + [ + 52.4781728, + 13.3473218 + ], + [ + 52.478097, + 13.3468487 + ], + [ + 52.4780566, + 13.3464805 + ] + ] + }, + { + "osmId": "1023966242", + "name": null, + "lengthMeters": 166.8926411168324, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4783743, + 13.3480268 + ], + [ + 52.4784959, + 13.3485286 + ], + [ + 52.4785007, + 13.3485485 + ], + [ + 52.4785107, + 13.3485896 + ], + [ + 52.4789292, + 13.3503165 + ] + ] + }, + { + "osmId": "1023966243", + "name": null, + "lengthMeters": 140.9158896877214, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4789367, + 13.3498832 + ], + [ + 52.4785893, + 13.3486468 + ], + [ + 52.4785466, + 13.3484934 + ], + [ + 52.4784088, + 13.3479916 + ] + ] + }, + { + "osmId": "1030416095", + "name": null, + "lengthMeters": 155.87315602773427, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4509777, + 13.5099403 + ], + [ + 52.4511693, + 13.5097656 + ], + [ + 52.4512633, + 13.5096845 + ], + [ + 52.4513699, + 13.5096034 + ], + [ + 52.4514644, + 13.5095393 + ], + [ + 52.4518071, + 13.5093917 + ], + [ + 52.4519377, + 13.5093077 + ], + [ + 52.4520794, + 13.5091871 + ], + [ + 52.4521798, + 13.5090934 + ], + [ + 52.4522539, + 13.5090188 + ] + ] + }, + { + "osmId": "1030416096", + "name": null, + "lengthMeters": 948.1965863369235, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4509687, + 13.5099 + ], + [ + 52.4505327, + 13.5102984 + ], + [ + 52.4503116, + 13.5105004 + ], + [ + 52.4499656, + 13.5108114 + ], + [ + 52.4498721, + 13.5108976 + ], + [ + 52.4494878, + 13.5112578 + ], + [ + 52.4490273, + 13.5116758 + ], + [ + 52.4489266, + 13.5117672 + ], + [ + 52.4488775, + 13.5118118 + ], + [ + 52.4487539, + 13.5119256 + ], + [ + 52.4486394, + 13.5120306 + ], + [ + 52.448006, + 13.512609 + ], + [ + 52.4477178, + 13.512874 + ], + [ + 52.4475022, + 13.513072 + ], + [ + 52.4472875, + 13.5132886 + ], + [ + 52.4471307, + 13.5134668 + ], + [ + 52.446985, + 13.5136429 + ], + [ + 52.446841, + 13.5138297 + ], + [ + 52.4466093, + 13.5141516 + ], + [ + 52.4464948, + 13.5143143 + ], + [ + 52.4464539, + 13.5143721 + ], + [ + 52.4463567, + 13.5145101 + ], + [ + 52.4459695, + 13.515054 + ], + [ + 52.4458332, + 13.5152456 + ], + [ + 52.4457217, + 13.515405 + ], + [ + 52.4447039, + 13.5168629 + ], + [ + 52.4446327, + 13.5169679 + ], + [ + 52.4444031, + 13.5172974 + ], + [ + 52.4440092, + 13.5178649 + ] + ] + }, + { + "osmId": "1030488026", + "name": null, + "lengthMeters": 107.18060908365351, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5714799, + 13.3814519 + ], + [ + 52.5721309, + 13.3802823 + ] + ] + }, + { + "osmId": "1030521210", + "name": null, + "lengthMeters": 314.8100660775175, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4394319, + 13.5247028 + ], + [ + 52.439647, + 13.5243612 + ], + [ + 52.4400482, + 13.523763 + ], + [ + 52.4401511, + 13.5236096 + ], + [ + 52.440273, + 13.5234364 + ], + [ + 52.4411107, + 13.5222012 + ], + [ + 52.4415294, + 13.5215839 + ] + ] + }, + { + "osmId": "1030521211", + "name": null, + "lengthMeters": 399.76427264113914, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4415129, + 13.5215541 + ], + [ + 52.441091, + 13.5221744 + ], + [ + 52.440135, + 13.5235802 + ], + [ + 52.4397147, + 13.5241905 + ], + [ + 52.4396249, + 13.5243209 + ], + [ + 52.4388238, + 13.5254684 + ] + ] + }, + { + "osmId": "1030521212", + "name": null, + "lengthMeters": 372.7481580829248, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4415294, + 13.5215839 + ], + [ + 52.4416849, + 13.5213582 + ], + [ + 52.4418234, + 13.5211509 + ], + [ + 52.4421863, + 13.5206125 + ], + [ + 52.4426529, + 13.5199283 + ], + [ + 52.4430812, + 13.5193013 + ], + [ + 52.4431539, + 13.5191949 + ], + [ + 52.4432639, + 13.5190328 + ], + [ + 52.443386, + 13.5188531 + ], + [ + 52.4435678, + 13.5185862 + ], + [ + 52.4440249, + 13.517912 + ] + ] + }, + { + "osmId": "1030521213", + "name": null, + "lengthMeters": 373.6074570510508, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4440092, + 13.5178649 + ], + [ + 52.4435425, + 13.5185522 + ], + [ + 52.4433675, + 13.5188194 + ], + [ + 52.4432432, + 13.519005 + ], + [ + 52.4431369, + 13.5191637 + ], + [ + 52.4427282, + 13.5197601 + ], + [ + 52.4426353, + 13.5198957 + ], + [ + 52.4421714, + 13.5205809 + ], + [ + 52.441806, + 13.5211214 + ], + [ + 52.4416814, + 13.5213004 + ], + [ + 52.4416215, + 13.5213943 + ], + [ + 52.4415129, + 13.5215541 + ] + ] + }, + { + "osmId": "1034608265", + "name": "Grafing - Berg am Laim", + "lengthMeters": 133.34814686264005, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1263535, + 11.6620916 + ], + [ + 48.126355, + 11.6620845 + ], + [ + 48.1264436, + 11.6616796 + ], + [ + 48.1265889, + 11.6610139 + ], + [ + 48.1266619, + 11.6606928 + ], + [ + 48.1267344, + 11.6603881 + ] + ] + }, + { + "osmId": "1034608266", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 77.96607806261994, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1265812, + 11.6603143 + ], + [ + 48.1264995, + 11.6606243 + ], + [ + 48.1264222, + 11.6609375 + ], + [ + 48.1263388, + 11.6612998 + ] + ] + }, + { + "osmId": "1034608267", + "name": "DB M\u00fcnchen \u2013 Rosenheim", + "lengthMeters": 131.02662809453582, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1262325, + 11.6619995 + ], + [ + 48.1263155, + 11.6616173 + ], + [ + 48.1264632, + 11.6609588 + ], + [ + 48.1265423, + 11.6606455 + ], + [ + 48.1266232, + 11.6603345 + ] + ] + }, + { + "osmId": "1034608268", + "name": "Grafing - Berg am Laim", + "lengthMeters": 123.89261437088518, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1266682, + 11.6603561 + ], + [ + 48.1265839, + 11.6606751 + ], + [ + 48.1265068, + 11.6609813 + ], + [ + 48.1263542, + 11.6616361 + ], + [ + 48.1262919, + 11.6619268 + ] + ] + }, + { + "osmId": "1034916336", + "name": null, + "lengthMeters": 914.4425828916545, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1313607, + 11.6501774 + ], + [ + 48.1315662, + 11.6496559 + ], + [ + 48.1317248, + 11.6492218 + ], + [ + 48.1319043, + 11.648667 + ], + [ + 48.1322063, + 11.6475519 + ], + [ + 48.1325296, + 11.646342 + ], + [ + 48.1329158, + 11.6448706 + ], + [ + 48.1329599, + 11.6446823 + ], + [ + 48.133016, + 11.6444498 + ], + [ + 48.1331156, + 11.643968 + ], + [ + 48.1331722, + 11.6436546 + ], + [ + 48.1332196, + 11.6433427 + ], + [ + 48.1332966, + 11.6426972 + ], + [ + 48.1333526, + 11.6419621 + ], + [ + 48.1333787, + 11.6411851 + ], + [ + 48.1334072, + 11.6403825 + ], + [ + 48.1334407, + 11.6395371 + ], + [ + 48.1334625, + 11.6391852 + ], + [ + 48.1335291, + 11.6384481 + ] + ] + }, + { + "osmId": "1034916337", + "name": null, + "lengthMeters": 801.4563035914013, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1307235, + 11.6514502 + ], + [ + 48.130722, + 11.6514534 + ], + [ + 48.1305833, + 11.6517502 + ], + [ + 48.1296579, + 11.6536673 + ], + [ + 48.12922, + 11.6545782 + ], + [ + 48.1288602, + 11.6553263 + ], + [ + 48.1288254, + 11.6553987 + ], + [ + 48.1287764, + 11.6555009 + ], + [ + 48.1287601, + 11.6555352 + ], + [ + 48.1276003, + 11.6579449 + ], + [ + 48.1273018, + 11.6585834 + ], + [ + 48.1271625, + 11.6589054 + ], + [ + 48.1271063, + 11.6590475 + ], + [ + 48.1270141, + 11.6592806 + ], + [ + 48.1269105, + 11.6595708 + ], + [ + 48.1267901, + 11.6599392 + ], + [ + 48.1266682, + 11.6603561 + ] + ] + }, + { + "osmId": "1035209473", + "name": null, + "lengthMeters": 128.88017450150062, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306891, + 13.3644195 + ], + [ + 52.5304497, + 13.3646774 + ], + [ + 52.5303315, + 13.3648039 + ], + [ + 52.5301081, + 13.3650445 + ], + [ + 52.5297184, + 13.3654606 + ] + ] + }, + { + "osmId": "1035209474", + "name": null, + "lengthMeters": 85.10611488990594, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.529481, + 13.3660016 + ], + [ + 52.5301246, + 13.3653207 + ] + ] + }, + { + "osmId": "1036392076", + "name": null, + "lengthMeters": 378.7122252850495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1172393, + 11.5882855 + ], + [ + 48.1172572, + 11.5881187 + ], + [ + 48.1172623, + 11.5880732 + ], + [ + 48.1172669, + 11.5880397 + ], + [ + 48.1172733, + 11.5879975 + ], + [ + 48.1172848, + 11.5879394 + ], + [ + 48.1172952, + 11.5878957 + ], + [ + 48.1173082, + 11.5878443 + ], + [ + 48.1173263, + 11.587791 + ], + [ + 48.1173445, + 11.5877436 + ], + [ + 48.1173876, + 11.5876523 + ], + [ + 48.117397, + 11.5876343 + ], + [ + 48.1174395, + 11.5875532 + ], + [ + 48.1179771, + 11.5865469 + ], + [ + 48.1180028, + 11.5864988 + ], + [ + 48.1180382, + 11.586421 + ], + [ + 48.1182212, + 11.5859784 + ], + [ + 48.1183164, + 11.5857513 + ], + [ + 48.1183305, + 11.5857107 + ], + [ + 48.1183698, + 11.5856216 + ], + [ + 48.1184109, + 11.585525 + ], + [ + 48.1184418, + 11.5854495 + ], + [ + 48.1184707, + 11.585376 + ], + [ + 48.1185253, + 11.5852332 + ], + [ + 48.118596, + 11.5850353 + ], + [ + 48.1186602, + 11.5848368 + ], + [ + 48.1187281, + 11.5846299 + ], + [ + 48.1187933, + 11.5844158 + ], + [ + 48.118841, + 11.5842688 + ], + [ + 48.1188977, + 11.5840884 + ], + [ + 48.1189478, + 11.5839294 + ], + [ + 48.1189495, + 11.5839235 + ] + ] + }, + { + "osmId": "1036392077", + "name": null, + "lengthMeters": 394.12384852794753, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1189291, + 11.5838888 + ], + [ + 48.1189218, + 11.5839114 + ], + [ + 48.1188988, + 11.5839851 + ], + [ + 48.1188239, + 11.5842249 + ], + [ + 48.1187691, + 11.5843963 + ], + [ + 48.118703, + 11.5846115 + ], + [ + 48.1186364, + 11.5848192 + ], + [ + 48.1185285, + 11.5851453 + ], + [ + 48.1184781, + 11.5852805 + ], + [ + 48.1184219, + 11.585425 + ], + [ + 48.1183678, + 11.5855615 + ], + [ + 48.1183332, + 11.5856434 + ], + [ + 48.1182959, + 11.5857314 + ], + [ + 48.1182028, + 11.5859564 + ], + [ + 48.118015, + 11.5863957 + ], + [ + 48.1179833, + 11.5864674 + ], + [ + 48.1179588, + 11.5865152 + ], + [ + 48.1174224, + 11.587527 + ], + [ + 48.1173603, + 11.5876437 + ], + [ + 48.1173302, + 11.5877061 + ], + [ + 48.1173169, + 11.5877373 + ], + [ + 48.1173018, + 11.5877726 + ], + [ + 48.1172898, + 11.5878091 + ], + [ + 48.1172786, + 11.5878456 + ], + [ + 48.1172666, + 11.5878979 + ], + [ + 48.1172572, + 11.587943 + ], + [ + 48.1172468, + 11.588 + ], + [ + 48.1172374, + 11.5880684 + ], + [ + 48.1172318, + 11.588115 + ], + [ + 48.1171961, + 11.5884561 + ] + ] + }, + { + "osmId": "1036393993", + "name": null, + "lengthMeters": 168.4692713422958, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1348107, + 11.6201802 + ], + [ + 48.1348754, + 11.6207551 + ], + [ + 48.1348963, + 11.6210539 + ], + [ + 48.134911, + 11.6213262 + ], + [ + 48.1349182, + 11.621578 + ], + [ + 48.1349187, + 11.6218613 + ], + [ + 48.134904, + 11.6224391 + ] + ] + }, + { + "osmId": "1036393994", + "name": null, + "lengthMeters": 127.89419591747998, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1347692, + 11.6204396 + ], + [ + 48.1347692, + 11.6204397 + ], + [ + 48.1348023, + 11.6207677 + ], + [ + 48.134822, + 11.6210589 + ], + [ + 48.1348363, + 11.621333 + ], + [ + 48.1348421, + 11.6215771 + ], + [ + 48.1348422, + 11.6218594 + ], + [ + 48.1348367, + 11.6221567 + ] + ] + }, + { + "osmId": "1039993869", + "name": null, + "lengthMeters": 100.13308336295792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5298951, + 13.4610267 + ], + [ + 52.5302379, + 13.4613018 + ], + [ + 52.5304884, + 13.4615084 + ], + [ + 52.5307031, + 13.4616802 + ] + ] + }, + { + "osmId": "1039993871", + "name": null, + "lengthMeters": 94.29260280403884, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292226, + 13.462744 + ], + [ + 52.5292356, + 13.4626679 + ], + [ + 52.5293262, + 13.4621298 + ], + [ + 52.5294345, + 13.4615019 + ], + [ + 52.5294512, + 13.4614017 + ] + ] + }, + { + "osmId": "1039996625", + "name": null, + "lengthMeters": 172.59318135628138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535304, + 13.4707961 + ], + [ + 52.5353747, + 13.4710361 + ], + [ + 52.5354569, + 13.4713248 + ], + [ + 52.535548, + 13.4716389 + ], + [ + 52.5356673, + 13.4720442 + ], + [ + 52.5359329, + 13.4729468 + ], + [ + 52.5359638, + 13.4730698 + ], + [ + 52.5359719, + 13.4730993 + ] + ] + }, + { + "osmId": "1039996627", + "name": null, + "lengthMeters": 211.04789461051575, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535531, + 13.4784333 + ], + [ + 52.5356318, + 13.4781457 + ], + [ + 52.5357087, + 13.4779561 + ], + [ + 52.5357163, + 13.4779399 + ], + [ + 52.5357666, + 13.4778303 + ], + [ + 52.5358152, + 13.4777392 + ], + [ + 52.5358742, + 13.4776325 + ], + [ + 52.535935, + 13.4775339 + ], + [ + 52.5360167, + 13.477412 + ], + [ + 52.5361081, + 13.477296 + ], + [ + 52.5361983, + 13.4771913 + ], + [ + 52.5362916, + 13.4770957 + ], + [ + 52.5364778, + 13.4769038 + ], + [ + 52.5366623, + 13.4767126 + ], + [ + 52.5367175, + 13.4766194 + ], + [ + 52.5367628, + 13.476519 + ], + [ + 52.5367857, + 13.4764624 + ], + [ + 52.5368001, + 13.4764046 + ], + [ + 52.5368291, + 13.4762538 + ] + ] + }, + { + "osmId": "1040381536", + "name": null, + "lengthMeters": 227.58793298595918, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4202466, + 13.3770975 + ], + [ + 52.4205757, + 13.3769126 + ], + [ + 52.4206138, + 13.3768903 + ], + [ + 52.4220743, + 13.3760374 + ], + [ + 52.4220785, + 13.376035 + ], + [ + 52.4221761, + 13.375978 + ] + ] + }, + { + "osmId": "1040381537", + "name": null, + "lengthMeters": 233.1735844553018, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4213011, + 13.3763971 + ], + [ + 52.4210145, + 13.3765655 + ], + [ + 52.4208939, + 13.3766371 + ], + [ + 52.4204288, + 13.3769133 + ], + [ + 52.4202537, + 13.3770165 + ], + [ + 52.4198813, + 13.3772343 + ], + [ + 52.4198289, + 13.3772633 + ], + [ + 52.419324, + 13.3775426 + ] + ] + }, + { + "osmId": "1040761409", + "name": null, + "lengthMeters": 194.64736146706244, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5665852, + 13.1883362 + ], + [ + 52.5665432, + 13.1881209 + ], + [ + 52.5665011, + 13.1879452 + ], + [ + 52.5664779, + 13.1878427 + ], + [ + 52.5663902, + 13.1874554 + ], + [ + 52.5663454, + 13.1872555 + ], + [ + 52.5663261, + 13.1871642 + ], + [ + 52.5662229, + 13.1866757 + ], + [ + 52.5660887, + 13.1861106 + ], + [ + 52.5659783, + 13.1856355 + ] + ] + }, + { + "osmId": "1040761410", + "name": null, + "lengthMeters": 111.28917414330013, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5663261, + 13.1871642 + ], + [ + 52.5662092, + 13.1865286 + ], + [ + 52.5661345, + 13.1860881 + ], + [ + 52.5660235, + 13.1855957 + ] + ] + }, + { + "osmId": "1044302686", + "name": null, + "lengthMeters": 188.38512206781135, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5283858, + 13.4551082 + ], + [ + 52.5283067, + 13.4547954 + ], + [ + 52.5282482, + 13.454593 + ], + [ + 52.5281857, + 13.4544074 + ], + [ + 52.5280715, + 13.4540298 + ], + [ + 52.5280196, + 13.4538364 + ], + [ + 52.5279702, + 13.4536266 + ], + [ + 52.5278224, + 13.4529613 + ], + [ + 52.5277256, + 13.4525473 + ] + ] + }, + { + "osmId": "1044512700", + "name": null, + "lengthMeters": 227.72685229907793, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5075044, + 13.4677659 + ], + [ + 52.5071155, + 13.4682988 + ], + [ + 52.5070609, + 13.4683826 + ], + [ + 52.5069669, + 13.4685469 + ], + [ + 52.5069456, + 13.4685817 + ], + [ + 52.5067793, + 13.4689182 + ], + [ + 52.5066996, + 13.4690978 + ], + [ + 52.5064089, + 13.4697498 + ], + [ + 52.5061791, + 13.4702706 + ], + [ + 52.5061691, + 13.4702932 + ] + ] + }, + { + "osmId": "1044512701", + "name": null, + "lengthMeters": 227.32534083196936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5061883, + 13.4703237 + ], + [ + 52.5062018, + 13.4702992 + ], + [ + 52.506337, + 13.470016 + ], + [ + 52.5065149, + 13.4696169 + ], + [ + 52.5066384, + 13.46934 + ], + [ + 52.5067279, + 13.4691338 + ], + [ + 52.5068072, + 13.4689388 + ], + [ + 52.5069548, + 13.4686295 + ], + [ + 52.5069832, + 13.4685798 + ], + [ + 52.5071135, + 13.4683521 + ], + [ + 52.5072893, + 13.4681081 + ], + [ + 52.5073603, + 13.4680122 + ], + [ + 52.5075185, + 13.4677973 + ] + ] + }, + { + "osmId": "1044512702", + "name": null, + "lengthMeters": 307.59943672055056, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5096351, + 13.4648674 + ], + [ + 52.5095383, + 13.4649992 + ], + [ + 52.5094837, + 13.465075 + ], + [ + 52.5093413, + 13.4652717 + ], + [ + 52.5089725, + 13.4657692 + ], + [ + 52.5088235, + 13.465969 + ], + [ + 52.5086094, + 13.4662626 + ], + [ + 52.5085978, + 13.4662764 + ], + [ + 52.5085833, + 13.466295 + ], + [ + 52.5082497, + 13.466753 + ], + [ + 52.5079397, + 13.4671744 + ], + [ + 52.5077474, + 13.4674369 + ], + [ + 52.5075044, + 13.4677659 + ] + ] + }, + { + "osmId": "1044512703", + "name": null, + "lengthMeters": 307.8927936383935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5075185, + 13.4677973 + ], + [ + 52.5075962, + 13.4676958 + ], + [ + 52.5076488, + 13.4676273 + ], + [ + 52.5077636, + 13.4674644 + ], + [ + 52.5079558, + 13.4672019 + ], + [ + 52.508137, + 13.4669557 + ], + [ + 52.5082088, + 13.4668581 + ], + [ + 52.5082659, + 13.4667805 + ], + [ + 52.5083933, + 13.4666115 + ], + [ + 52.5086076, + 13.4663187 + ], + [ + 52.5086216, + 13.4662994 + ], + [ + 52.508631, + 13.4662853 + ], + [ + 52.5086508, + 13.466257 + ], + [ + 52.5089898, + 13.4658002 + ], + [ + 52.5093572, + 13.4653045 + ], + [ + 52.5095009, + 13.465106 + ], + [ + 52.5096523, + 13.4648983 + ] + ] + }, + { + "osmId": "1044512704", + "name": null, + "lengthMeters": 197.0700843977283, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5144554, + 13.4533393 + ], + [ + 52.5143804, + 13.4533293 + ], + [ + 52.5143026, + 13.4533463 + ], + [ + 52.5142562, + 13.4533746 + ], + [ + 52.5142096, + 13.4534239 + ], + [ + 52.5141733, + 13.4534707 + ], + [ + 52.5141393, + 13.4535283 + ], + [ + 52.5141225, + 13.4535721 + ], + [ + 52.5140872, + 13.4536851 + ], + [ + 52.5137934, + 13.4546889 + ], + [ + 52.5137436, + 13.4548576 + ], + [ + 52.513655, + 13.4551323 + ], + [ + 52.51363, + 13.4552097 + ], + [ + 52.513496, + 13.455605 + ] + ] + }, + { + "osmId": "1044512705", + "name": null, + "lengthMeters": 183.25107110790248, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5135221, + 13.4556341 + ], + [ + 52.5136372, + 13.4553089 + ], + [ + 52.5136624, + 13.4552378 + ], + [ + 52.5137185, + 13.4550727 + ], + [ + 52.5137374, + 13.4550172 + ], + [ + 52.5137849, + 13.4548774 + ], + [ + 52.5138746, + 13.4545718 + ], + [ + 52.5141141, + 13.4536993 + ], + [ + 52.5141271, + 13.4536641 + ], + [ + 52.5141446, + 13.453631 + ], + [ + 52.5141598, + 13.4536065 + ], + [ + 52.5141767, + 13.4535877 + ], + [ + 52.5142084, + 13.4535603 + ], + [ + 52.5142431, + 13.4535446 + ], + [ + 52.5142668, + 13.4535398 + ], + [ + 52.5142883, + 13.4535408 + ], + [ + 52.5144046, + 13.4535752 + ] + ] + }, + { + "osmId": "1044512706", + "name": null, + "lengthMeters": 429.7567156652503, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5078636, + 13.4655897 + ], + [ + 52.5080025, + 13.4657278 + ], + [ + 52.5081321, + 13.4658555 + ], + [ + 52.5085039, + 13.4662176 + ], + [ + 52.5085833, + 13.466295 + ], + [ + 52.5085938, + 13.4663049 + ], + [ + 52.5086076, + 13.4663187 + ], + [ + 52.5086855, + 13.4663973 + ], + [ + 52.5089145, + 13.4666282 + ], + [ + 52.5091058, + 13.4668211 + ], + [ + 52.5091612, + 13.4668747 + ], + [ + 52.5096101, + 13.4673231 + ], + [ + 52.5096758, + 13.4673887 + ], + [ + 52.5097337, + 13.4674463 + ], + [ + 52.5105258, + 13.4682334 + ], + [ + 52.5109369, + 13.4686493 + ], + [ + 52.5109956, + 13.4687087 + ], + [ + 52.5110534, + 13.4687671 + ], + [ + 52.511168, + 13.4688831 + ] + ] + }, + { + "osmId": "1044512707", + "name": null, + "lengthMeters": 93.50831274268339, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5077804, + 13.4651075 + ], + [ + 52.5078989, + 13.4646187 + ], + [ + 52.5080872, + 13.4638211 + ] + ] + }, + { + "osmId": "1044512709", + "name": null, + "lengthMeters": 109.01479260756278, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5104588, + 13.4517964 + ], + [ + 52.5105199, + 13.4518596 + ], + [ + 52.5105663, + 13.451925 + ], + [ + 52.510577, + 13.4519436 + ], + [ + 52.5105885, + 13.4519662 + ], + [ + 52.5105998, + 13.4519945 + ], + [ + 52.5106132, + 13.4520409 + ], + [ + 52.5106239, + 13.4521068 + ], + [ + 52.5106266, + 13.4521417 + ], + [ + 52.5106304, + 13.4521893 + ], + [ + 52.5106254, + 13.4522793 + ], + [ + 52.5106093, + 13.452374 + ], + [ + 52.5104586, + 13.4531881 + ], + [ + 52.5104479, + 13.453246 + ] + ] + }, + { + "osmId": "1044524941", + "name": null, + "lengthMeters": 449.3380522161121, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4984978, + 13.481951 + ], + [ + 52.4989153, + 13.481043 + ], + [ + 52.4990284, + 13.4807971 + ], + [ + 52.4991006, + 13.48064 + ], + [ + 52.4992046, + 13.4804264 + ], + [ + 52.4993209, + 13.4801721 + ], + [ + 52.4995245, + 13.4797296 + ], + [ + 52.4997064, + 13.4793326 + ], + [ + 52.4999558, + 13.4787807 + ], + [ + 52.500047, + 13.4785748 + ], + [ + 52.5001385, + 13.4783657 + ], + [ + 52.5003181, + 13.4779587 + ], + [ + 52.5005135, + 13.4775226 + ], + [ + 52.5006384, + 13.4772464 + ], + [ + 52.5006928, + 13.4771261 + ], + [ + 52.5007872, + 13.4769224 + ], + [ + 52.5008044, + 13.4768832 + ], + [ + 52.500815, + 13.476855 + ], + [ + 52.5008285, + 13.4768179 + ], + [ + 52.5008428, + 13.4767731 + ], + [ + 52.5008578, + 13.4767228 + ], + [ + 52.5008716, + 13.4766831 + ], + [ + 52.5008839, + 13.4766506 + ], + [ + 52.5008986, + 13.4766149 + ] + ] + }, + { + "osmId": "1044559033", + "name": null, + "lengthMeters": 85.01217204021111, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519896, + 13.4622055 + ], + [ + 52.5198724, + 13.4623391 + ], + [ + 52.5198462, + 13.4624874 + ], + [ + 52.5198174, + 13.4626504 + ], + [ + 52.5198115, + 13.4626987 + ], + [ + 52.5198082, + 13.4627577 + ], + [ + 52.5198064, + 13.4628269 + ], + [ + 52.5198102, + 13.4629146 + ], + [ + 52.5198524, + 13.4634375 + ] + ] + }, + { + "osmId": "1044574239", + "name": null, + "lengthMeters": 150.14724759540405, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5290361, + 13.458224 + ], + [ + 52.5289856, + 13.457986 + ], + [ + 52.5289644, + 13.457887 + ], + [ + 52.528923, + 13.4576931 + ], + [ + 52.5288834, + 13.4575081 + ], + [ + 52.5288605, + 13.4574012 + ], + [ + 52.5286015, + 13.4561226 + ] + ] + }, + { + "osmId": "1044574240", + "name": null, + "lengthMeters": 451.11106721095916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5269933, + 13.4758671 + ], + [ + 52.5273306, + 13.4738776 + ], + [ + 52.5273589, + 13.4737049 + ], + [ + 52.5276342, + 13.4720988 + ], + [ + 52.5279737, + 13.4700881 + ], + [ + 52.5279934, + 13.4699717 + ], + [ + 52.5280611, + 13.4695706 + ], + [ + 52.5280818, + 13.4694432 + ] + ] + }, + { + "osmId": "1044574241", + "name": null, + "lengthMeters": 82.08081037351897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.527038, + 13.4796782 + ], + [ + 52.5272182, + 13.4795977 + ], + [ + 52.5274442, + 13.4794893 + ], + [ + 52.527746, + 13.4793353 + ] + ] + }, + { + "osmId": "1044574242", + "name": null, + "lengthMeters": 92.80398839781182, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5277319, + 13.4792875 + ], + [ + 52.5270931, + 13.4795986 + ], + [ + 52.5269918, + 13.4796467 + ], + [ + 52.5269311, + 13.4796739 + ] + ] + }, + { + "osmId": "1044574244", + "name": null, + "lengthMeters": 208.7320187066465, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5324902, + 13.4633817 + ], + [ + 52.532519, + 13.4634615 + ], + [ + 52.5327072, + 13.4640217 + ], + [ + 52.5328591, + 13.4644793 + ], + [ + 52.532897, + 13.4645933 + ], + [ + 52.5332142, + 13.4655475 + ], + [ + 52.5333021, + 13.4658046 + ], + [ + 52.5333987, + 13.466082 + ] + ] + }, + { + "osmId": "1044574245", + "name": null, + "lengthMeters": 383.669908046421, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5353268, + 13.4707782 + ], + [ + 52.5351955, + 13.4703267 + ], + [ + 52.5350905, + 13.4700209 + ], + [ + 52.5350202, + 13.4698322 + ], + [ + 52.5348931, + 13.4695156 + ], + [ + 52.5346919, + 13.4690721 + ], + [ + 52.5345887, + 13.4688427 + ], + [ + 52.5343627, + 13.4683402 + ], + [ + 52.5343005, + 13.468202 + ], + [ + 52.5340748, + 13.4676978 + ], + [ + 52.5339931, + 13.4675154 + ], + [ + 52.5339313, + 13.467381 + ], + [ + 52.5337767, + 13.4670284 + ], + [ + 52.5336327, + 13.466669 + ], + [ + 52.5334237, + 13.4660606 + ] + ] + }, + { + "osmId": "1044587216", + "name": null, + "lengthMeters": 297.9169382564021, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249218, + 13.442703 + ], + [ + 52.5248189, + 13.4423576 + ], + [ + 52.5245401, + 13.4414236 + ], + [ + 52.5243794, + 13.4408844 + ], + [ + 52.5243413, + 13.4407558 + ], + [ + 52.5242215, + 13.4403584 + ], + [ + 52.5240678, + 13.4398394 + ], + [ + 52.5240136, + 13.43966 + ], + [ + 52.523991, + 13.4395841 + ], + [ + 52.5239795, + 13.439545 + ], + [ + 52.5239409, + 13.4394134 + ], + [ + 52.5239097, + 13.4393085 + ], + [ + 52.5238574, + 13.4391296 + ], + [ + 52.5238276, + 13.4390277 + ], + [ + 52.5237486, + 13.4387442 + ] + ] + }, + { + "osmId": "1044587217", + "name": null, + "lengthMeters": 87.5054765481371, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5232764, + 13.4344761 + ], + [ + 52.523273, + 13.4343952 + ], + [ + 52.5232659, + 13.4341996 + ], + [ + 52.5232596, + 13.4338989 + ], + [ + 52.5232579, + 13.4337723 + ], + [ + 52.523258, + 13.4336086 + ], + [ + 52.523262, + 13.4331835 + ] + ] + }, + { + "osmId": "1044587218", + "name": null, + "lengthMeters": 89.79745747719589, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240077, + 13.4230971 + ], + [ + 52.5242077, + 13.4225422 + ], + [ + 52.5244262, + 13.421962 + ] + ] + }, + { + "osmId": "1044587219", + "name": null, + "lengthMeters": 347.95946221617015, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5231593, + 13.4279157 + ], + [ + 52.5231544, + 13.4277345 + ], + [ + 52.5231328, + 13.4267728 + ], + [ + 52.5231316, + 13.4267113 + ], + [ + 52.5231306, + 13.4266604 + ], + [ + 52.523131, + 13.42652 + ], + [ + 52.523138, + 13.4262951 + ], + [ + 52.5231722, + 13.4259484 + ], + [ + 52.523233, + 13.4256475 + ], + [ + 52.5232837, + 13.425421 + ], + [ + 52.5236216, + 13.4242865 + ], + [ + 52.5237299, + 13.4239221 + ], + [ + 52.5238532, + 13.4235418 + ], + [ + 52.5238623, + 13.4235137 + ], + [ + 52.5240077, + 13.4230971 + ] + ] + }, + { + "osmId": "1044592562", + "name": null, + "lengthMeters": 106.36620538150841, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 52.5240231, + 13.3877146 + ], + [ + 52.5245436, + 13.3876305 + ], + [ + 52.5247507, + 13.3875969 + ], + [ + 52.5248912, + 13.3875722 + ], + [ + 52.5249331, + 13.387565 + ], + [ + 52.5249749, + 13.3875578 + ] + ] + }, + { + "osmId": "1044592563", + "name": null, + "lengthMeters": 87.02069652501187, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5237138, + 13.3986649 + ], + [ + 52.5237325, + 13.398236 + ], + [ + 52.523741, + 13.3980959 + ], + [ + 52.5237512, + 13.3979867 + ], + [ + 52.5237613, + 13.3978979 + ], + [ + 52.5237674, + 13.3978484 + ], + [ + 52.5237886, + 13.3976981 + ], + [ + 52.5238044, + 13.3976065 + ], + [ + 52.5238235, + 13.3975056 + ], + [ + 52.5238446, + 13.3974023 + ] + ] + }, + { + "osmId": "1045111723", + "name": null, + "lengthMeters": 116.37578490836387, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5283365, + 13.467778 + ], + [ + 52.5282261, + 13.4684283 + ], + [ + 52.5281924, + 13.4686287 + ], + [ + 52.5280674, + 13.4693612 + ], + [ + 52.5280566, + 13.4694356 + ] + ] + }, + { + "osmId": "1045111724", + "name": null, + "lengthMeters": 116.15576511244346, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5280818, + 13.4694432 + ], + [ + 52.5281596, + 13.4689825 + ], + [ + 52.5282141, + 13.4686794 + ], + [ + 52.5282331, + 13.4685739 + ], + [ + 52.5282375, + 13.4685495 + ], + [ + 52.5283659, + 13.4677909 + ] + ] + }, + { + "osmId": "1046115300", + "name": null, + "lengthMeters": 385.9305895063557, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5265616, + 13.4913133 + ], + [ + 52.5265974, + 13.4897656 + ], + [ + 52.5266021, + 13.4894847 + ], + [ + 52.5266514, + 13.4872616 + ], + [ + 52.5266625, + 13.4867605 + ], + [ + 52.526688, + 13.4856123 + ] + ] + }, + { + "osmId": "1046115301", + "name": null, + "lengthMeters": 537.6452666342757, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.526532, + 13.4913192 + ], + [ + 52.5264974, + 13.4929943 + ], + [ + 52.5264301, + 13.4962466 + ], + [ + 52.5264002, + 13.4976336 + ], + [ + 52.526371, + 13.4989656 + ], + [ + 52.52637, + 13.499036 + ], + [ + 52.5263642, + 13.4992618 + ] + ] + }, + { + "osmId": "1046115302", + "name": null, + "lengthMeters": 112.50365621780296, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5260152, + 13.4997378 + ], + [ + 52.5257649, + 13.4997195 + ], + [ + 52.5253898, + 13.4996921 + ], + [ + 52.5251785, + 13.4996799 + ], + [ + 52.5250043, + 13.4996692 + ] + ] + }, + { + "osmId": "1046115303", + "name": null, + "lengthMeters": 112.29046239036703, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5250035, + 13.4997195 + ], + [ + 52.5252174, + 13.499731 + ], + [ + 52.5255927, + 13.4997528 + ], + [ + 52.5256311, + 13.4997559 + ], + [ + 52.5260124, + 13.4997898 + ] + ] + }, + { + "osmId": "1046115304", + "name": null, + "lengthMeters": 153.18775754678612, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5194296, + 13.499323 + ], + [ + 52.5192843, + 13.4993118 + ], + [ + 52.5192458, + 13.4993086 + ], + [ + 52.518925, + 13.499282 + ], + [ + 52.5181676, + 13.4992193 + ], + [ + 52.5180549, + 13.4991903 + ] + ] + }, + { + "osmId": "1046115306", + "name": null, + "lengthMeters": 210.92907575372382, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5180484, + 13.4992557 + ], + [ + 52.5181648, + 13.4992861 + ], + [ + 52.518715, + 13.4993371 + ], + [ + 52.5191667, + 13.499362 + ], + [ + 52.5193368, + 13.4993713 + ], + [ + 52.5198234, + 13.4993981 + ], + [ + 52.5199423, + 13.499405 + ] + ] + }, + { + "osmId": "1046122738", + "name": null, + "lengthMeters": 180.9273921622308, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367465, + 13.4757216 + ], + [ + 52.5368298, + 13.4759852 + ], + [ + 52.5368902, + 13.4761763 + ], + [ + 52.5369273, + 13.4762907 + ], + [ + 52.5370464, + 13.4766581 + ], + [ + 52.5371111, + 13.4768413 + ], + [ + 52.5371986, + 13.477089 + ], + [ + 52.537328, + 13.4774554 + ], + [ + 52.5374238, + 13.4777267 + ], + [ + 52.5375402, + 13.4780562 + ] + ] + }, + { + "osmId": "1046122740", + "name": null, + "lengthMeters": 682.4714994224166, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5473736, + 13.4987167 + ], + [ + 52.5473035, + 13.4985791 + ], + [ + 52.5470789, + 13.4981486 + ], + [ + 52.5469426, + 13.4978874 + ], + [ + 52.5468859, + 13.4977801 + ], + [ + 52.5464078, + 13.4968759 + ], + [ + 52.5463358, + 13.496737 + ], + [ + 52.5462774, + 13.4966245 + ], + [ + 52.5462264, + 13.4965263 + ], + [ + 52.5461005, + 13.4962839 + ], + [ + 52.5459721, + 13.4960379 + ], + [ + 52.5454733, + 13.4950825 + ], + [ + 52.5454471, + 13.4950322 + ], + [ + 52.5453915, + 13.4949244 + ], + [ + 52.5452886, + 13.4947244 + ], + [ + 52.5449381, + 13.494048 + ], + [ + 52.5447217, + 13.4936358 + ], + [ + 52.544667, + 13.4935335 + ], + [ + 52.5442504, + 13.4927547 + ], + [ + 52.5440919, + 13.4924415 + ], + [ + 52.5439868, + 13.4922338 + ], + [ + 52.5439085, + 13.4920837 + ], + [ + 52.5435392, + 13.4913757 + ], + [ + 52.5433748, + 13.4910605 + ] + ] + }, + { + "osmId": "1046122741", + "name": null, + "lengthMeters": 682.6817742629344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5433536, + 13.4910888 + ], + [ + 52.5435179, + 13.4914049 + ], + [ + 52.5436348, + 13.4916298 + ], + [ + 52.5438866, + 13.4921144 + ], + [ + 52.5440282, + 13.4923868 + ], + [ + 52.5440717, + 13.4924692 + ], + [ + 52.5443517, + 13.4929992 + ], + [ + 52.5444914, + 13.4932649 + ], + [ + 52.5446035, + 13.4934782 + ], + [ + 52.5446462, + 13.4935638 + ], + [ + 52.5447621, + 13.4937842 + ], + [ + 52.5447976, + 13.4938516 + ], + [ + 52.5452662, + 13.494753 + ], + [ + 52.5453678, + 13.4949482 + ], + [ + 52.545427, + 13.4950619 + ], + [ + 52.545453, + 13.4951118 + ], + [ + 52.5462048, + 13.4965549 + ], + [ + 52.5463151, + 13.4967667 + ], + [ + 52.5463866, + 13.4969039 + ], + [ + 52.546617, + 13.4973546 + ], + [ + 52.5470466, + 13.498184 + ], + [ + 52.5472569, + 13.4985831 + ], + [ + 52.5473486, + 13.4987546 + ] + ] + }, + { + "osmId": "1046122742", + "name": null, + "lengthMeters": 152.8907507594136, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5473486, + 13.4987546 + ], + [ + 52.5477526, + 13.4995224 + ], + [ + 52.5478143, + 13.4996399 + ], + [ + 52.5478198, + 13.4996503 + ], + [ + 52.5478264, + 13.4996627 + ], + [ + 52.5478856, + 13.4997751 + ], + [ + 52.5481912, + 13.5003561 + ], + [ + 52.5482482, + 13.5004646 + ] + ] + }, + { + "osmId": "1046179375", + "name": null, + "lengthMeters": 358.5920029613107, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5254897, + 13.5086185 + ], + [ + 52.5254943, + 13.5082885 + ], + [ + 52.5255115, + 13.5070678 + ], + [ + 52.5255135, + 13.506949 + ], + [ + 52.5255206, + 13.5068342 + ], + [ + 52.5255295, + 13.5067436 + ], + [ + 52.5255429, + 13.5066563 + ], + [ + 52.5255749, + 13.5064918 + ], + [ + 52.5255982, + 13.5064047 + ], + [ + 52.5256264, + 13.5063186 + ], + [ + 52.5256567, + 13.5062352 + ], + [ + 52.5256867, + 13.5061633 + ], + [ + 52.5257352, + 13.5060636 + ], + [ + 52.5257912, + 13.5059697 + ], + [ + 52.5258961, + 13.5058209 + ], + [ + 52.5259456, + 13.5057492 + ], + [ + 52.5259966, + 13.5056752 + ], + [ + 52.5260692, + 13.5055407 + ], + [ + 52.5261121, + 13.5054538 + ], + [ + 52.526151, + 13.5053573 + ], + [ + 52.5261977, + 13.505209 + ], + [ + 52.5262345, + 13.5050585 + ], + [ + 52.5262601, + 13.5048829 + ], + [ + 52.5262733, + 13.5047391 + ], + [ + 52.5262802, + 13.5045493 + ], + [ + 52.5262885, + 13.5041391 + ], + [ + 52.5262962, + 13.5037262 + ] + ] + }, + { + "osmId": "1046179376", + "name": null, + "lengthMeters": 555.9411351402388, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5254597, + 13.5086196 + ], + [ + 52.5254487, + 13.5094949 + ], + [ + 52.525447, + 13.5099914 + ], + [ + 52.5254522, + 13.5104477 + ], + [ + 52.5254588, + 13.5109085 + ], + [ + 52.5254705, + 13.5115038 + ], + [ + 52.525497, + 13.5129109 + ], + [ + 52.525498, + 13.5130516 + ], + [ + 52.5255164, + 13.5134488 + ], + [ + 52.5255453, + 13.5138705 + ], + [ + 52.5255813, + 13.5142332 + ], + [ + 52.5255927, + 13.5143209 + ], + [ + 52.5256323, + 13.5146365 + ], + [ + 52.5256829, + 13.5149526 + ], + [ + 52.5258296, + 13.5158002 + ], + [ + 52.5258806, + 13.5161041 + ], + [ + 52.5259226, + 13.5164009 + ], + [ + 52.5259583, + 13.5167501 + ] + ] + }, + { + "osmId": "1046332197", + "name": null, + "lengthMeters": 104.94090729625992, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482414, + 13.5085107 + ], + [ + 52.5480706, + 13.5085413 + ], + [ + 52.547965, + 13.5085683 + ], + [ + 52.5478445, + 13.508602 + ], + [ + 52.5476394, + 13.5086866 + ], + [ + 52.5474269, + 13.5087982 + ], + [ + 52.5473244, + 13.5088558 + ] + ] + }, + { + "osmId": "1046332198", + "name": null, + "lengthMeters": 103.96207838375571, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5473373, + 13.5089101 + ], + [ + 52.5474396, + 13.5088535 + ], + [ + 52.5476475, + 13.5087404 + ], + [ + 52.547747, + 13.5086946 + ], + [ + 52.5478582, + 13.5086519 + ], + [ + 52.5479696, + 13.508617 + ], + [ + 52.5480914, + 13.5085889 + ], + [ + 52.5482447, + 13.5085627 + ] + ] + }, + { + "osmId": "1046332199", + "name": null, + "lengthMeters": 203.6637694252836, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5356831, + 13.517899 + ], + [ + 52.5357368, + 13.5187745 + ], + [ + 52.5357507, + 13.5189733 + ], + [ + 52.5358874, + 13.5208913 + ] + ] + }, + { + "osmId": "1046332200", + "name": null, + "lengthMeters": 203.13640494781657, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.535917, + 13.5208827 + ], + [ + 52.5358431, + 13.5198684 + ], + [ + 52.5357822, + 13.5189673 + ], + [ + 52.5357322, + 13.5181868 + ], + [ + 52.5357176, + 13.5179808 + ], + [ + 52.5357112, + 13.5178985 + ] + ] + }, + { + "osmId": "1046337481", + "name": null, + "lengthMeters": 149.81411431344583, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257945, + 13.5224192 + ], + [ + 52.5258055, + 13.5221127 + ], + [ + 52.5258121, + 13.5220117 + ], + [ + 52.5258223, + 13.5218416 + ], + [ + 52.5258405, + 13.5215342 + ], + [ + 52.5259142, + 13.5203097 + ], + [ + 52.5259214, + 13.5202148 + ] + ] + }, + { + "osmId": "1046337483", + "name": null, + "lengthMeters": 227.33546586133463, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262962, + 13.5037262 + ], + [ + 52.5263203, + 13.5027241 + ], + [ + 52.5263237, + 13.5025754 + ], + [ + 52.5263334, + 13.5021767 + ], + [ + 52.5263705, + 13.500368 + ] + ] + }, + { + "osmId": "1046339791", + "name": null, + "lengthMeters": 109.48107256807208, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5482482, + 13.5004646 + ], + [ + 52.5484406, + 13.500833 + ], + [ + 52.5487537, + 13.5014326 + ], + [ + 52.5487775, + 13.5014835 + ], + [ + 52.548796, + 13.5015229 + ], + [ + 52.5488235, + 13.5015881 + ], + [ + 52.5488457, + 13.5016562 + ], + [ + 52.5488651, + 13.5017214 + ] + ] + }, + { + "osmId": "1046339792", + "name": null, + "lengthMeters": 98.96059570234537, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.548842, + 13.5015518 + ], + [ + 52.5488365, + 13.5015383 + ], + [ + 52.548818, + 13.5014936 + ], + [ + 52.5487993, + 13.5014544 + ], + [ + 52.5487752, + 13.5014038 + ], + [ + 52.5486304, + 13.5011292 + ], + [ + 52.5482673, + 13.500435 + ] + ] + }, + { + "osmId": "1046339793", + "name": null, + "lengthMeters": 99.12124334107476, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489142, + 13.503747 + ], + [ + 52.5489133, + 13.5034325 + ], + [ + 52.5489151, + 13.5032484 + ], + [ + 52.5489411, + 13.5025062 + ], + [ + 52.5489467, + 13.5022825 + ] + ] + }, + { + "osmId": "1046339794", + "name": null, + "lengthMeters": 98.8108407391122, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489254, + 13.5022812 + ], + [ + 52.5489154, + 13.5025216 + ], + [ + 52.5488901, + 13.5032217 + ], + [ + 52.5488838, + 13.503429 + ], + [ + 52.5488886, + 13.5037404 + ] + ] + }, + { + "osmId": "1046345656", + "name": null, + "lengthMeters": 97.61810907221361, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5271911, + 13.5194248 + ], + [ + 52.5263148, + 13.5195119 + ] + ] + }, + { + "osmId": "1046780222", + "name": null, + "lengthMeters": 90.01804474371038, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1351155, + 11.5977881 + ], + [ + 48.1351864, + 11.5978242 + ], + [ + 48.1352512, + 11.5978486 + ], + [ + 48.1352599, + 11.5978505 + ], + [ + 48.1354243, + 11.5978871 + ], + [ + 48.1354913, + 11.5979001 + ], + [ + 48.1355638, + 11.5979129 + ], + [ + 48.1355837, + 11.5979129 + ], + [ + 48.1356266, + 11.5979144 + ], + [ + 48.1356487, + 11.5979121 + ], + [ + 48.1356732, + 11.5979091 + ], + [ + 48.1357269, + 11.5979052 + ], + [ + 48.1357869, + 11.5979032 + ], + [ + 48.1358085, + 11.5979051 + ], + [ + 48.1358566, + 11.5979113 + ], + [ + 48.1358805, + 11.5979144 + ], + [ + 48.1359153, + 11.5979209 + ] + ] + }, + { + "osmId": "1046785868", + "name": null, + "lengthMeters": 75.77854336242558, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5381158, + 13.5297409 + ], + [ + 52.5382947, + 13.5305276 + ], + [ + 52.5383551, + 13.53079 + ] + ] + }, + { + "osmId": "1046785869", + "name": null, + "lengthMeters": 186.1958867830461, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5476141, + 13.5581276 + ], + [ + 52.5475827, + 13.558101 + ], + [ + 52.5473913, + 13.5579388 + ], + [ + 52.5471546, + 13.5577665 + ], + [ + 52.5467321, + 13.55747 + ], + [ + 52.5466866, + 13.5574372 + ], + [ + 52.546083, + 13.5570149 + ] + ] + }, + { + "osmId": "1046799791", + "name": null, + "lengthMeters": 147.78527042087495, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495793, + 13.5864787 + ], + [ + 52.5495984, + 13.586224 + ], + [ + 52.5496052, + 13.5861218 + ], + [ + 52.5496125, + 13.5859364 + ], + [ + 52.5496158, + 13.5857218 + ], + [ + 52.5496098, + 13.5854498 + ], + [ + 52.5496017, + 13.5852719 + ], + [ + 52.5495864, + 13.5850906 + ], + [ + 52.5495705, + 13.584928 + ], + [ + 52.5495457, + 13.5847363 + ], + [ + 52.5495148, + 13.5845276 + ], + [ + 52.5494766, + 13.5843202 + ] + ] + }, + { + "osmId": "1046892922", + "name": null, + "lengthMeters": 409.35213474174475, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5478563, + 13.5780882 + ], + [ + 52.5478226, + 13.5779591 + ], + [ + 52.5477849, + 13.5778175 + ], + [ + 52.5476966, + 13.5774869 + ], + [ + 52.5474454, + 13.5765167 + ], + [ + 52.5471229, + 13.5752864 + ], + [ + 52.5471043, + 13.5752159 + ], + [ + 52.547082, + 13.5751309 + ], + [ + 52.5470555, + 13.5750303 + ], + [ + 52.5470378, + 13.5749631 + ], + [ + 52.5470186, + 13.57489 + ], + [ + 52.5467069, + 13.5737318 + ], + [ + 52.5463836, + 13.57254 + ] + ] + }, + { + "osmId": "1046903872", + "name": null, + "lengthMeters": 99.5319620929036, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5509687, + 13.463065 + ], + [ + 52.5510237, + 13.4632529 + ], + [ + 52.551077, + 13.4634251 + ], + [ + 52.551114, + 13.4635374 + ], + [ + 52.5511667, + 13.4636793 + ], + [ + 52.5512202, + 13.4638149 + ], + [ + 52.5513199, + 13.4640413 + ], + [ + 52.5514417, + 13.46431 + ] + ] + }, + { + "osmId": "1046903873", + "name": null, + "lengthMeters": 173.20276201562856, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494621, + 13.4563832 + ], + [ + 52.5495121, + 13.456611 + ], + [ + 52.5497575, + 13.4577362 + ], + [ + 52.5498181, + 13.4580138 + ], + [ + 52.5498616, + 13.4582135 + ], + [ + 52.549894, + 13.4583586 + ], + [ + 52.5499298, + 13.4585038 + ], + [ + 52.5499656, + 13.4586434 + ], + [ + 52.5500007, + 13.4587864 + ] + ] + }, + { + "osmId": "1046903875", + "name": null, + "lengthMeters": 86.29505822383564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5479836, + 13.4502657 + ], + [ + 52.5481366, + 13.4506077 + ], + [ + 52.5481639, + 13.4506716 + ], + [ + 52.5481909, + 13.4507346 + ], + [ + 52.5482204, + 13.4508092 + ], + [ + 52.5482479, + 13.4508862 + ], + [ + 52.5482698, + 13.4509579 + ], + [ + 52.5482861, + 13.4510129 + ], + [ + 52.5483048, + 13.4510821 + ], + [ + 52.5483367, + 13.4512225 + ], + [ + 52.548347, + 13.4512695 + ], + [ + 52.5483679, + 13.4513647 + ] + ] + }, + { + "osmId": "1046903876", + "name": null, + "lengthMeters": 473.7463974052182, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5487883, + 13.4500513 + ], + [ + 52.5493624, + 13.4482581 + ], + [ + 52.5493856, + 13.4481857 + ], + [ + 52.5494184, + 13.4480831 + ], + [ + 52.5494641, + 13.4479404 + ], + [ + 52.549632, + 13.4474174 + ], + [ + 52.5498427, + 13.4467563 + ], + [ + 52.5499591, + 13.4463833 + ], + [ + 52.5499874, + 13.4462924 + ], + [ + 52.5500175, + 13.4461959 + ], + [ + 52.550081, + 13.4459922 + ], + [ + 52.5503834, + 13.4450293 + ], + [ + 52.5507537, + 13.4438349 + ] + ] + }, + { + "osmId": "1046951459", + "name": null, + "lengthMeters": 76.10833106036917, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1280795, + 11.6572111 + ], + [ + 48.1284756, + 11.6563748 + ] + ] + }, + { + "osmId": "1047227961", + "name": null, + "lengthMeters": 379.7464246856739, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5295809, + 13.4254413 + ], + [ + 52.5297418, + 13.4256238 + ], + [ + 52.5299151, + 13.4258481 + ], + [ + 52.5305262, + 13.4266086 + ], + [ + 52.5309309, + 13.4270753 + ], + [ + 52.5313313, + 13.42754 + ], + [ + 52.5315558, + 13.4278056 + ], + [ + 52.5317834, + 13.4280753 + ], + [ + 52.5319347, + 13.4282353 + ], + [ + 52.5320779, + 13.4283628 + ], + [ + 52.5322701, + 13.4285283 + ], + [ + 52.5323763, + 13.428655 + ] + ] + }, + { + "osmId": "1047227962", + "name": null, + "lengthMeters": 456.781202246731, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5440549, + 13.4270758 + ], + [ + 52.543678, + 13.4268356 + ], + [ + 52.5430814, + 13.4264876 + ], + [ + 52.5430358, + 13.4264604 + ], + [ + 52.5429726, + 13.4264227 + ], + [ + 52.5429173, + 13.4263897 + ], + [ + 52.5428802, + 13.4263654 + ], + [ + 52.5426155, + 13.4262112 + ], + [ + 52.5421147, + 13.42592 + ], + [ + 52.5420546, + 13.4258839 + ], + [ + 52.5413546, + 13.4254747 + ], + [ + 52.5410379, + 13.4252888 + ], + [ + 52.5409651, + 13.4252469 + ], + [ + 52.5401892, + 13.4247915 + ] + ] + }, + { + "osmId": "1047227963", + "name": null, + "lengthMeters": 83.80769532838953, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5388095, + 13.4239724 + ], + [ + 52.5381844, + 13.4236048 + ], + [ + 52.5380998, + 13.4235552 + ] + ] + }, + { + "osmId": "1047227964", + "name": null, + "lengthMeters": 384.66932161968674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5382143, + 13.4271711 + ], + [ + 52.5383825, + 13.4266761 + ], + [ + 52.5384125, + 13.4265886 + ], + [ + 52.5384511, + 13.4264758 + ], + [ + 52.5384857, + 13.4263747 + ], + [ + 52.5390551, + 13.4247214 + ], + [ + 52.5391033, + 13.4245756 + ], + [ + 52.5391218, + 13.4245176 + ], + [ + 52.5391482, + 13.4244275 + ], + [ + 52.5391701, + 13.4243456 + ], + [ + 52.539192, + 13.4242492 + ], + [ + 52.5392008, + 13.4242065 + ], + [ + 52.5392215, + 13.4240998 + ], + [ + 52.5392353, + 13.4240195 + ], + [ + 52.5392399, + 13.4239911 + ], + [ + 52.5392635, + 13.4238368 + ], + [ + 52.5392773, + 13.423747 + ], + [ + 52.5392899, + 13.4236652 + ], + [ + 52.5395516, + 13.421974 + ] + ] + }, + { + "osmId": "1047227965", + "name": null, + "lengthMeters": 163.11136471577365, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5401892, + 13.4247915 + ], + [ + 52.5396531, + 13.4244754 + ], + [ + 52.5394951, + 13.4243823 + ], + [ + 52.5394567, + 13.4243597 + ], + [ + 52.5393341, + 13.4242867 + ], + [ + 52.5393215, + 13.4242791 + ], + [ + 52.5392749, + 13.4242511 + ], + [ + 52.5392008, + 13.4242065 + ], + [ + 52.5391733, + 13.4241899 + ], + [ + 52.539073, + 13.4241296 + ], + [ + 52.5390241, + 13.4241002 + ], + [ + 52.5390134, + 13.4240938 + ], + [ + 52.538902, + 13.4240268 + ], + [ + 52.538854, + 13.4239986 + ], + [ + 52.5388095, + 13.4239724 + ] + ] + }, + { + "osmId": "1047244909", + "name": null, + "lengthMeters": 81.30020859431464, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5257535, + 13.4185128 + ], + [ + 52.5254352, + 13.419268 + ], + [ + 52.5253884, + 13.4193797 + ], + [ + 52.5253364, + 13.4194998 + ] + ] + }, + { + "osmId": "1047244910", + "name": null, + "lengthMeters": 141.64461889989576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5259718, + 13.4208019 + ], + [ + 52.5258094, + 13.4205995 + ], + [ + 52.5255473, + 13.4202755 + ], + [ + 52.5254104, + 13.4201053 + ], + [ + 52.525407, + 13.420101 + ], + [ + 52.5253186, + 13.4199939 + ], + [ + 52.5253149, + 13.4199888 + ], + [ + 52.5252232, + 13.4198781 + ], + [ + 52.525181, + 13.4198276 + ], + [ + 52.5251003, + 13.4197314 + ], + [ + 52.5250816, + 13.4197091 + ], + [ + 52.5250003, + 13.41962 + ], + [ + 52.5249466, + 13.4195598 + ] + ] + }, + { + "osmId": "1047244911", + "name": null, + "lengthMeters": 460.082654000929, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5571152, + 13.5146035 + ], + [ + 52.5570121, + 13.5144842 + ], + [ + 52.5567335, + 13.51415 + ], + [ + 52.5562228, + 13.5135538 + ], + [ + 52.5553614, + 13.512574 + ], + [ + 52.5553002, + 13.5125027 + ], + [ + 52.5549343, + 13.512077 + ], + [ + 52.5547744, + 13.5118896 + ], + [ + 52.5546999, + 13.5117968 + ], + [ + 52.5541634, + 13.5111707 + ], + [ + 52.5537382, + 13.5106717 + ] + ] + }, + { + "osmId": "1047442256", + "name": null, + "lengthMeters": 221.59738693576142, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5269304, + 13.2104204 + ], + [ + 52.5269131, + 13.2100216 + ], + [ + 52.5269076, + 13.2097525 + ], + [ + 52.5268711, + 13.2093638 + ], + [ + 52.5268137, + 13.2089879 + ], + [ + 52.5266881, + 13.2083505 + ], + [ + 52.5266697, + 13.2082828 + ], + [ + 52.5266365, + 13.2081609 + ], + [ + 52.5266144, + 13.2080797 + ], + [ + 52.5265589, + 13.2078757 + ], + [ + 52.5265219, + 13.2077705 + ], + [ + 52.5264489, + 13.2075646 + ], + [ + 52.5264328, + 13.2075191 + ], + [ + 52.5264158, + 13.2074645 + ], + [ + 52.5264041, + 13.2074271 + ], + [ + 52.5263708, + 13.2073206 + ] + ] + }, + { + "osmId": "1047459898", + "name": null, + "lengthMeters": 407.6477484464345, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5614279, + 13.569602 + ], + [ + 52.5616005, + 13.5696623 + ], + [ + 52.5617019, + 13.5696819 + ], + [ + 52.5617913, + 13.5696937 + ], + [ + 52.5621578, + 13.569726 + ], + [ + 52.5622846, + 13.5697528 + ], + [ + 52.562415, + 13.5697874 + ], + [ + 52.562492, + 13.569814 + ], + [ + 52.5625832, + 13.5698509 + ], + [ + 52.5626775, + 13.5698938 + ], + [ + 52.5627711, + 13.5699419 + ], + [ + 52.5628694, + 13.5699983 + ], + [ + 52.5629674, + 13.5700616 + ], + [ + 52.5630391, + 13.5701179 + ], + [ + 52.5630977, + 13.570163 + ], + [ + 52.5631946, + 13.5702431 + ], + [ + 52.5634281, + 13.5704506 + ], + [ + 52.5639081, + 13.5708702 + ], + [ + 52.5645203, + 13.571416 + ], + [ + 52.5648145, + 13.57168 + ] + ] + }, + { + "osmId": "1047459899", + "name": null, + "lengthMeters": 408.6095444176478, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5648276, + 13.5716263 + ], + [ + 52.5646318, + 13.5714494 + ], + [ + 52.5645461, + 13.5713732 + ], + [ + 52.5639228, + 13.5708247 + ], + [ + 52.5634427, + 13.5703978 + ], + [ + 52.5632073, + 13.5701889 + ], + [ + 52.5631302, + 13.5701252 + ], + [ + 52.5630571, + 13.5700681 + ], + [ + 52.5629967, + 13.5700215 + ], + [ + 52.562882, + 13.5699438 + ], + [ + 52.5627849, + 13.5698856 + ], + [ + 52.5626733, + 13.5698314 + ], + [ + 52.5625883, + 13.5697938 + ], + [ + 52.5625216, + 13.569767 + ], + [ + 52.5624183, + 13.5697298 + ], + [ + 52.5622836, + 13.5696932 + ], + [ + 52.5621586, + 13.5696694 + ], + [ + 52.561809, + 13.5696381 + ], + [ + 52.56171, + 13.5696252 + ], + [ + 52.5616101, + 13.5696067 + ], + [ + 52.5614323, + 13.5695474 + ] + ] + }, + { + "osmId": "1047459900", + "name": null, + "lengthMeters": 216.96907348582744, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5575964, + 13.5681335 + ], + [ + 52.5573513, + 13.568045 + ], + [ + 52.55727, + 13.5680156 + ], + [ + 52.5567545, + 13.5678291 + ], + [ + 52.5565955, + 13.5677552 + ], + [ + 52.5562205, + 13.5675528 + ], + [ + 52.5560993, + 13.5674807 + ], + [ + 52.556073, + 13.5674633 + ], + [ + 52.5560241, + 13.5674315 + ], + [ + 52.5559261, + 13.5673654 + ], + [ + 52.555873, + 13.5673312 + ], + [ + 52.5558355, + 13.5673051 + ], + [ + 52.55573, + 13.5672263 + ] + ] + }, + { + "osmId": "1047472694", + "name": null, + "lengthMeters": 625.611717590605, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549287, + 13.3498012 + ], + [ + 52.5494587, + 13.3501313 + ], + [ + 52.5495085, + 13.3502254 + ], + [ + 52.5495746, + 13.3503505 + ], + [ + 52.5496482, + 13.3504897 + ], + [ + 52.5502459, + 13.3516304 + ], + [ + 52.5503397, + 13.3518046 + ], + [ + 52.5503832, + 13.3518876 + ], + [ + 52.5504199, + 13.3519553 + ], + [ + 52.5504856, + 13.352086 + ], + [ + 52.5505487, + 13.3522066 + ], + [ + 52.5514671, + 13.3539704 + ], + [ + 52.5518198, + 13.3546476 + ], + [ + 52.5518423, + 13.3546908 + ], + [ + 52.5518745, + 13.3547522 + ], + [ + 52.551901, + 13.354803 + ], + [ + 52.5519225, + 13.3548441 + ], + [ + 52.5529483, + 13.3568267 + ] + ] + }, + { + "osmId": "1047472695", + "name": null, + "lengthMeters": 625.0325384998523, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5529712, + 13.3567871 + ], + [ + 52.5519448, + 13.3548118 + ], + [ + 52.5519235, + 13.3547709 + ], + [ + 52.5518971, + 13.3547203 + ], + [ + 52.5518653, + 13.3546593 + ], + [ + 52.5518427, + 13.354616 + ], + [ + 52.5514909, + 13.3539372 + ], + [ + 52.5505712, + 13.3521669 + ], + [ + 52.5505089, + 13.3520441 + ], + [ + 52.5504419, + 13.3519162 + ], + [ + 52.5504029, + 13.3518451 + ], + [ + 52.5503615, + 13.3517666 + ], + [ + 52.5502719, + 13.3515977 + ], + [ + 52.5499916, + 13.3510635 + ], + [ + 52.5496699, + 13.3504538 + ], + [ + 52.5495968, + 13.3503141 + ], + [ + 52.5495323, + 13.350191 + ], + [ + 52.5494817, + 13.3500945 + ], + [ + 52.5493127, + 13.3497689 + ] + ] + }, + { + "osmId": "1047472697", + "name": null, + "lengthMeters": 173.10114850338914, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.554054, + 13.4089387 + ], + [ + 52.5539981, + 13.4098622 + ], + [ + 52.5539929, + 13.4099542 + ], + [ + 52.5539748, + 13.4102732 + ], + [ + 52.5539389, + 13.410907 + ], + [ + 52.5539356, + 13.4109662 + ], + [ + 52.5539325, + 13.4110213 + ], + [ + 52.5539298, + 13.4110704 + ], + [ + 52.5539267, + 13.4111261 + ], + [ + 52.5539063, + 13.4114875 + ] + ] + }, + { + "osmId": "1047472698", + "name": null, + "lengthMeters": 173.0264622229416, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553935, + 13.4114887 + ], + [ + 52.5539553, + 13.4111306 + ], + [ + 52.5539585, + 13.4110742 + ], + [ + 52.5539612, + 13.4110255 + ], + [ + 52.5539643, + 13.4109699 + ], + [ + 52.5539677, + 13.410911 + ], + [ + 52.5540203, + 13.409988 + ], + [ + 52.5540271, + 13.4098685 + ], + [ + 52.5540724, + 13.4090846 + ], + [ + 52.5540808, + 13.4089407 + ] + ] + }, + { + "osmId": "1047472699", + "name": null, + "lengthMeters": 215.57944212473447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5277756, + 13.3736219 + ], + [ + 52.5273015, + 13.3720777 + ], + [ + 52.5271385, + 13.3715485 + ], + [ + 52.5270047, + 13.3711117 + ], + [ + 52.5269, + 13.3707787 + ] + ] + }, + { + "osmId": "1047477946", + "name": null, + "lengthMeters": 720.4330900775212, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4941203, + 13.4896267 + ], + [ + 52.4943768, + 13.489354 + ], + [ + 52.4947967, + 13.488902 + ], + [ + 52.4950914, + 13.4885878 + ], + [ + 52.4955163, + 13.4881414 + ], + [ + 52.495617, + 13.4880245 + ], + [ + 52.4957127, + 13.4879001 + ], + [ + 52.4957917, + 13.487772 + ], + [ + 52.4958678, + 13.4876337 + ], + [ + 52.4960709, + 13.4872051 + ], + [ + 52.4966621, + 13.4859367 + ], + [ + 52.496743, + 13.4857621 + ], + [ + 52.4970967, + 13.4849954 + ], + [ + 52.4973878, + 13.4843647 + ], + [ + 52.4974355, + 13.4842609 + ], + [ + 52.4984978, + 13.481951 + ] + ] + }, + { + "osmId": "1047485585", + "name": null, + "lengthMeters": 86.6725462331504, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.444455, + 13.573671 + ], + [ + 52.4444531, + 13.5736151 + ], + [ + 52.4444525, + 13.5735762 + ], + [ + 52.4444525, + 13.5735362 + ], + [ + 52.4444537, + 13.5734854 + ], + [ + 52.4444571, + 13.5734221 + ], + [ + 52.4444604, + 13.5733833 + ], + [ + 52.4444645, + 13.5733413 + ], + [ + 52.4444747, + 13.5732614 + ], + [ + 52.4444882, + 13.5731898 + ], + [ + 52.4445044, + 13.5731181 + ], + [ + 52.4445262, + 13.5730384 + ], + [ + 52.4446015, + 13.572823 + ], + [ + 52.4446136, + 13.5727799 + ], + [ + 52.4446223, + 13.5727387 + ], + [ + 52.4446283, + 13.5726957 + ], + [ + 52.4446329, + 13.5726436 + ], + [ + 52.4446351, + 13.5725983 + ], + [ + 52.444637, + 13.5724525 + ] + ] + }, + { + "osmId": "1047587114", + "name": null, + "lengthMeters": 206.49549761776328, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5357112, + 13.5178985 + ], + [ + 52.5357018, + 13.5177772 + ], + [ + 52.5356976, + 13.5177228 + ], + [ + 52.5356769, + 13.5174278 + ], + [ + 52.5356685, + 13.5173528 + ], + [ + 52.5356541, + 13.5172236 + ], + [ + 52.5356498, + 13.5171809 + ], + [ + 52.5356307, + 13.5170148 + ], + [ + 52.5356176, + 13.516901 + ], + [ + 52.5356059, + 13.5168089 + ], + [ + 52.535549, + 13.5163221 + ], + [ + 52.5355095, + 13.5159633 + ], + [ + 52.5354865, + 13.5156824 + ], + [ + 52.535466, + 13.5152857 + ], + [ + 52.5354634, + 13.5150762 + ], + [ + 52.5354665, + 13.5148786 + ] + ] + }, + { + "osmId": "1047701456", + "name": null, + "lengthMeters": 468.0593295279966, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6492431, + 9.9099345 + ], + [ + 53.6501369, + 9.9107249 + ], + [ + 53.6506091, + 9.9110903 + ], + [ + 53.6510833, + 9.9113532 + ], + [ + 53.6515597, + 9.9115097 + ], + [ + 53.6520543, + 9.9115829 + ], + [ + 53.652657, + 9.9115452 + ], + [ + 53.6532511, + 9.9114528 + ] + ] + }, + { + "osmId": "1047701457", + "name": null, + "lengthMeters": 465.87824807033303, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6492602, + 9.90988 + ], + [ + 53.6501301, + 9.9106514 + ], + [ + 53.6506228, + 9.9110246 + ], + [ + 53.6510776, + 9.9112717 + ], + [ + 53.6515544, + 9.9114457 + ], + [ + 53.6520324, + 9.911521 + ], + [ + 53.6526285, + 9.911476 + ], + [ + 53.6532512, + 9.9113955 + ] + ] + }, + { + "osmId": "1047701458", + "name": null, + "lengthMeters": 128.7821824411662, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6384759, + 9.9060724 + ], + [ + 53.6387212, + 9.90602 + ], + [ + 53.6394792, + 9.9058984 + ], + [ + 53.6395418, + 9.9058884 + ], + [ + 53.6395612, + 9.9058853 + ], + [ + 53.6395978, + 9.9058794 + ], + [ + 53.6396192, + 9.9058773 + ], + [ + 53.6396281, + 9.9058764 + ] + ] + }, + { + "osmId": "1047701459", + "name": null, + "lengthMeters": 842.6478544466274, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6422346, + 9.9057514 + ], + [ + 53.6423102, + 9.9057508 + ], + [ + 53.6431678, + 9.9057499 + ], + [ + 53.6432351, + 9.9057498 + ], + [ + 53.6432812, + 9.9057522 + ], + [ + 53.6432959, + 9.9057529 + ], + [ + 53.6433491, + 9.9057557 + ], + [ + 53.6434612, + 9.9057615 + ], + [ + 53.6437961, + 9.9058003 + ], + [ + 53.6441986, + 9.9058897 + ], + [ + 53.6445921, + 9.9060276 + ], + [ + 53.6449726, + 9.9062037 + ], + [ + 53.6452335, + 9.9063575 + ], + [ + 53.6454982, + 9.9065462 + ], + [ + 53.6461798, + 9.9071318 + ], + [ + 53.6468264, + 9.9077109 + ], + [ + 53.6469514, + 9.9078228 + ], + [ + 53.6470422, + 9.9079027 + ], + [ + 53.6471375, + 9.907988 + ], + [ + 53.6476725, + 9.9084706 + ], + [ + 53.6480943, + 9.908851 + ], + [ + 53.648384, + 9.9091042 + ], + [ + 53.6484559, + 9.9091658 + ], + [ + 53.6485351, + 9.9092361 + ], + [ + 53.6490805, + 9.9097207 + ], + [ + 53.6492602, + 9.90988 + ] + ] + }, + { + "osmId": "1047815959", + "name": null, + "lengthMeters": 78.29762182354632, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1372272, + 11.5898878 + ], + [ + 48.1372485, + 11.589767 + ], + [ + 48.1372526, + 11.5897435 + ], + [ + 48.1373704, + 11.5891515 + ], + [ + 48.1373868, + 11.5890658 + ], + [ + 48.137417, + 11.5889011 + ], + [ + 48.1374217, + 11.5888738 + ] + ] + }, + { + "osmId": "1049638123", + "name": null, + "lengthMeters": 463.8984928762072, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5236595, + 13.3604933 + ], + [ + 52.5236949, + 13.360593 + ], + [ + 52.523727, + 13.3606977 + ], + [ + 52.5237579, + 13.3607872 + ], + [ + 52.5240609, + 13.361783 + ], + [ + 52.5241188, + 13.3619744 + ], + [ + 52.5243289, + 13.3626678 + ], + [ + 52.5243565, + 13.3627587 + ], + [ + 52.5244367, + 13.3630114 + ], + [ + 52.5245279, + 13.3632694 + ], + [ + 52.5245708, + 13.3633902 + ], + [ + 52.5246215, + 13.3635328 + ], + [ + 52.5247121, + 13.3638062 + ], + [ + 52.5248186, + 13.3641476 + ], + [ + 52.524937, + 13.3645274 + ], + [ + 52.525128, + 13.3651414 + ], + [ + 52.5252293, + 13.3654557 + ], + [ + 52.5253127, + 13.3657227 + ], + [ + 52.525412, + 13.3660359 + ], + [ + 52.5255791, + 13.3665798 + ] + ] + }, + { + "osmId": "1049894512", + "name": null, + "lengthMeters": 83.65868344204209, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297548, + 13.3802271 + ], + [ + 52.5298826, + 13.3806567 + ], + [ + 52.5300533, + 13.3812268 + ], + [ + 52.5300868, + 13.3813369 + ] + ] + }, + { + "osmId": "1049894513", + "name": null, + "lengthMeters": 91.27200548056345, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297774, + 13.3801993 + ], + [ + 52.5295705, + 13.3795072 + ], + [ + 52.5295389, + 13.3794125 + ], + [ + 52.5295132, + 13.3793358 + ], + [ + 52.5294644, + 13.3792002 + ], + [ + 52.5294301, + 13.3791011 + ], + [ + 52.5293973, + 13.3790041 + ] + ] + }, + { + "osmId": "1049894514", + "name": null, + "lengthMeters": 193.4954941165225, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.526091, + 13.3682483 + ], + [ + 52.5262762, + 13.3688493 + ], + [ + 52.5263709, + 13.3691615 + ], + [ + 52.5266328, + 13.3700139 + ], + [ + 52.526726, + 13.3703037 + ], + [ + 52.526746, + 13.3703706 + ], + [ + 52.5267871, + 13.3705042 + ], + [ + 52.5268261, + 13.3706322 + ], + [ + 52.5268475, + 13.3707006 + ], + [ + 52.5268785, + 13.3707988 + ] + ] + }, + { + "osmId": "1049894515", + "name": null, + "lengthMeters": 356.33152662626304, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5269, + 13.3707787 + ], + [ + 52.5268708, + 13.3706819 + ], + [ + 52.5268497, + 13.3706144 + ], + [ + 52.52681, + 13.3704862 + ], + [ + 52.5267701, + 13.3703537 + ], + [ + 52.5267474, + 13.370285 + ], + [ + 52.5264878, + 13.3694466 + ], + [ + 52.5263949, + 13.3691445 + ], + [ + 52.5261182, + 13.3682383 + ], + [ + 52.5260991, + 13.36817 + ], + [ + 52.5260675, + 13.3680672 + ], + [ + 52.52601, + 13.3678805 + ], + [ + 52.5259294, + 13.3676177 + ], + [ + 52.5258913, + 13.3674939 + ], + [ + 52.5258659, + 13.3674154 + ], + [ + 52.5258355, + 13.3673178 + ], + [ + 52.5254661, + 13.3661109 + ], + [ + 52.5254555, + 13.3660771 + ] + ] + }, + { + "osmId": "1049894518", + "name": null, + "lengthMeters": 383.6657557209169, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5362909, + 13.3914516 + ], + [ + 52.5365427, + 13.3918492 + ], + [ + 52.5366642, + 13.3920388 + ], + [ + 52.5370367, + 13.3926204 + ], + [ + 52.5372792, + 13.3929974 + ], + [ + 52.537348, + 13.3931211 + ], + [ + 52.537375, + 13.3931713 + ], + [ + 52.5374312, + 13.3932813 + ], + [ + 52.5374768, + 13.3933995 + ], + [ + 52.5375047, + 13.393477 + ], + [ + 52.5375542, + 13.3936317 + ], + [ + 52.5378384, + 13.3946389 + ], + [ + 52.5380716, + 13.3954653 + ], + [ + 52.5381812, + 13.3958311 + ], + [ + 52.5382114, + 13.395942 + ], + [ + 52.5382168, + 13.3959619 + ], + [ + 52.5382359, + 13.3960295 + ] + ] + }, + { + "osmId": "1049894519", + "name": null, + "lengthMeters": 599.7194345388192, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5363115, + 13.3914226 + ], + [ + 52.5362406, + 13.3913085 + ], + [ + 52.5361874, + 13.3912231 + ], + [ + 52.5359782, + 13.3908955 + ], + [ + 52.5357345, + 13.3905139 + ], + [ + 52.5356062, + 13.3903146 + ], + [ + 52.5355418, + 13.3902157 + ], + [ + 52.5354821, + 13.3901205 + ], + [ + 52.5354136, + 13.390025 + ], + [ + 52.5352752, + 13.389849 + ], + [ + 52.5350403, + 13.3895756 + ], + [ + 52.534994, + 13.3895231 + ], + [ + 52.534884, + 13.389397 + ], + [ + 52.534747, + 13.3892426 + ], + [ + 52.5344297, + 13.3888821 + ], + [ + 52.5342553, + 13.3886841 + ], + [ + 52.5338343, + 13.3882015 + ], + [ + 52.5337731, + 13.3881336 + ], + [ + 52.5336944, + 13.3880199 + ], + [ + 52.5336386, + 13.3879176 + ], + [ + 52.53357, + 13.3877607 + ], + [ + 52.5335109, + 13.3876189 + ], + [ + 52.5334781, + 13.3875436 + ], + [ + 52.5334637, + 13.3875134 + ], + [ + 52.5334495, + 13.3874865 + ], + [ + 52.5334256, + 13.3874441 + ], + [ + 52.5334052, + 13.387413 + ], + [ + 52.5333777, + 13.3873727 + ], + [ + 52.533343, + 13.3873327 + ], + [ + 52.5333234, + 13.3873134 + ], + [ + 52.5332913, + 13.3872779 + ], + [ + 52.5332498, + 13.3872514 + ], + [ + 52.533223, + 13.3872388 + ], + [ + 52.5331915, + 13.3872246 + ], + [ + 52.5331863, + 13.3872229 + ], + [ + 52.5331405, + 13.3872043 + ], + [ + 52.5331173, + 13.3872037 + ], + [ + 52.5330605, + 13.3872 + ], + [ + 52.5330125, + 13.3872054 + ], + [ + 52.5329695, + 13.3872149 + ], + [ + 52.5329228, + 13.3872301 + ], + [ + 52.5328351, + 13.3872822 + ], + [ + 52.5327956, + 13.3873051 + ], + [ + 52.5327023, + 13.3873705 + ], + [ + 52.5326545, + 13.3873981 + ], + [ + 52.532626, + 13.3874146 + ], + [ + 52.5325873, + 13.3874366 + ], + [ + 52.5323299, + 13.3875983 + ], + [ + 52.5319857, + 13.3878213 + ], + [ + 52.5319575, + 13.3878384 + ], + [ + 52.531932, + 13.3878508 + ] + ] + }, + { + "osmId": "1049894523", + "name": null, + "lengthMeters": 217.20555236929042, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5407124, + 13.40507 + ], + [ + 52.5408297, + 13.4057212 + ], + [ + 52.5409885, + 13.4065488 + ], + [ + 52.5410173, + 13.4066964 + ], + [ + 52.5411297, + 13.4072716 + ], + [ + 52.5412745, + 13.4080126 + ], + [ + 52.5412956, + 13.4081351 + ] + ] + }, + { + "osmId": "1049894524", + "name": null, + "lengthMeters": 88.21421245635581, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5411488, + 13.4104585 + ], + [ + 52.5410982, + 13.4110114 + ], + [ + 52.5410444, + 13.4116754 + ], + [ + 52.5410381, + 13.4117501 + ] + ] + }, + { + "osmId": "1049894525", + "name": null, + "lengthMeters": 204.58033655289577, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5410957, + 13.4117221 + ], + [ + 52.5411535, + 13.4110206 + ], + [ + 52.5411796, + 13.4107226 + ], + [ + 52.5412335, + 13.4100985 + ], + [ + 52.541284, + 13.4095145 + ], + [ + 52.5413184, + 13.4091206 + ], + [ + 52.5413528, + 13.4087267 + ] + ] + }, + { + "osmId": "1049894526", + "name": null, + "lengthMeters": 216.19243634758638, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5406662, + 13.4148336 + ], + [ + 52.5406973, + 13.4146413 + ], + [ + 52.5407117, + 13.414559 + ], + [ + 52.5407216, + 13.4145045 + ], + [ + 52.5407887, + 13.4141324 + ], + [ + 52.5409945, + 13.4128397 + ], + [ + 52.541005, + 13.412768 + ], + [ + 52.5410128, + 13.4127118 + ], + [ + 52.541019, + 13.4126634 + ], + [ + 52.5410241, + 13.4126212 + ], + [ + 52.5410297, + 13.4125709 + ], + [ + 52.5410343, + 13.4125205 + ], + [ + 52.541038, + 13.4124712 + ], + [ + 52.5410422, + 13.4124117 + ], + [ + 52.5410464, + 13.4123504 + ], + [ + 52.5410469, + 13.4123436 + ], + [ + 52.5410484, + 13.4123202 + ], + [ + 52.5410503, + 13.4122952 + ], + [ + 52.5410529, + 13.4122548 + ], + [ + 52.5410618, + 13.4121412 + ], + [ + 52.5410704, + 13.4120341 + ], + [ + 52.541076, + 13.4119718 + ], + [ + 52.5410856, + 13.4118185 + ], + [ + 52.5410957, + 13.4117221 + ] + ] + }, + { + "osmId": "1049894527", + "name": null, + "lengthMeters": 154.96955033886576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354215, + 13.4064289 + ], + [ + 52.5353642, + 13.4063764 + ], + [ + 52.535183, + 13.4062107 + ], + [ + 52.5351487, + 13.4061793 + ], + [ + 52.5349871, + 13.4060315 + ], + [ + 52.5348213, + 13.4058798 + ], + [ + 52.53462, + 13.4056957 + ], + [ + 52.5344603, + 13.4055497 + ], + [ + 52.5342755, + 13.4053853 + ], + [ + 52.5342014, + 13.4053217 + ] + ] + }, + { + "osmId": "1049894528", + "name": null, + "lengthMeters": 94.89342189453357, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5342014, + 13.4053217 + ], + [ + 52.5341708, + 13.4052796 + ], + [ + 52.5341519, + 13.4052389 + ], + [ + 52.5341271, + 13.4051528 + ], + [ + 52.5341147, + 13.405088 + ], + [ + 52.5341071, + 13.4050148 + ], + [ + 52.5341076, + 13.4049858 + ], + [ + 52.5341079, + 13.4049671 + ], + [ + 52.5341118, + 13.4049173 + ], + [ + 52.5341185, + 13.4048672 + ], + [ + 52.5341611, + 13.4046614 + ], + [ + 52.5341712, + 13.4046106 + ], + [ + 52.5341727, + 13.4045841 + ], + [ + 52.5341757, + 13.4045305 + ], + [ + 52.5341758, + 13.4044903 + ], + [ + 52.5341712, + 13.4044215 + ], + [ + 52.5341058, + 13.4039961 + ] + ] + }, + { + "osmId": "1049894529", + "name": null, + "lengthMeters": 240.99942066822487, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312151, + 13.4024545 + ], + [ + 52.531181, + 13.4024255 + ], + [ + 52.5309603, + 13.402244 + ], + [ + 52.5306893, + 13.4020212 + ], + [ + 52.5306294, + 13.401972 + ], + [ + 52.5305398, + 13.4019008 + ], + [ + 52.5301769, + 13.4016121 + ], + [ + 52.5300994, + 13.4015497 + ], + [ + 52.5300559, + 13.4015146 + ], + [ + 52.529991, + 13.4014625 + ], + [ + 52.52998, + 13.4014547 + ], + [ + 52.5299458, + 13.4014303 + ], + [ + 52.5299148, + 13.401413 + ], + [ + 52.5298655, + 13.4013843 + ], + [ + 52.5298352, + 13.401374 + ], + [ + 52.5298034, + 13.4013663 + ], + [ + 52.5297701, + 13.4013639 + ], + [ + 52.5297354, + 13.401364 + ], + [ + 52.5297256, + 13.4013637 + ], + [ + 52.5296441, + 13.4013802 + ], + [ + 52.5296088, + 13.4013917 + ], + [ + 52.5295881, + 13.4013985 + ], + [ + 52.5295157, + 13.4014295 + ], + [ + 52.5294668, + 13.4014598 + ], + [ + 52.5292296, + 13.401639 + ] + ] + }, + { + "osmId": "1049894530", + "name": null, + "lengthMeters": 369.8183995118638, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5312058, + 13.4024844 + ], + [ + 52.5307535, + 13.4021211 + ], + [ + 52.5304325, + 13.4018632 + ], + [ + 52.5302529, + 13.4017174 + ], + [ + 52.5300856, + 13.4015818 + ], + [ + 52.5300451, + 13.4015506 + ], + [ + 52.5300294, + 13.401538 + ], + [ + 52.5299475, + 13.401477 + ], + [ + 52.529908, + 13.4014547 + ], + [ + 52.5298988, + 13.4014492 + ], + [ + 52.5298598, + 13.4014313 + ], + [ + 52.5298214, + 13.4014179 + ], + [ + 52.5297864, + 13.4014111 + ], + [ + 52.5297785, + 13.4014106 + ], + [ + 52.5297558, + 13.4014092 + ], + [ + 52.5297179, + 13.4014115 + ], + [ + 52.5296968, + 13.4014162 + ], + [ + 52.5296445, + 13.4014268 + ], + [ + 52.5296118, + 13.4014399 + ], + [ + 52.5295906, + 13.4014483 + ], + [ + 52.5295204, + 13.4014797 + ], + [ + 52.5294776, + 13.4015058 + ], + [ + 52.5292412, + 13.4016801 + ], + [ + 52.5290245, + 13.4018614 + ], + [ + 52.5289636, + 13.4019136 + ], + [ + 52.5289165, + 13.4019529 + ], + [ + 52.528362, + 13.4024158 + ], + [ + 52.5281835, + 13.4025551 + ] + ] + }, + { + "osmId": "1049894531", + "name": null, + "lengthMeters": 336.69332667474873, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318656, + 13.399388 + ], + [ + 52.5318378, + 13.3994134 + ], + [ + 52.5316852, + 13.3995524 + ], + [ + 52.5313744, + 13.3998287 + ], + [ + 52.5312787, + 13.3999138 + ], + [ + 52.5308833, + 13.4002953 + ], + [ + 52.5299233, + 13.4011174 + ], + [ + 52.5298773, + 13.4011665 + ], + [ + 52.5298392, + 13.4012245 + ], + [ + 52.5298038, + 13.4012858 + ], + [ + 52.5297701, + 13.4013639 + ], + [ + 52.5297558, + 13.4014092 + ], + [ + 52.5297418, + 13.4014602 + ], + [ + 52.5297267, + 13.4015324 + ], + [ + 52.5297157, + 13.4015961 + ], + [ + 52.5297112, + 13.4016496 + ], + [ + 52.5297078, + 13.4017218 + ], + [ + 52.5297146, + 13.4019043 + ], + [ + 52.5297343, + 13.4023341 + ] + ] + }, + { + "osmId": "1049894532", + "name": null, + "lengthMeters": 333.19847790888286, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5297626, + 13.4023305 + ], + [ + 52.5297422, + 13.4019 + ], + [ + 52.5297355, + 13.4017165 + ], + [ + 52.5297386, + 13.4016536 + ], + [ + 52.529744, + 13.4016003 + ], + [ + 52.5297526, + 13.4015512 + ], + [ + 52.5297568, + 13.40153 + ], + [ + 52.5297668, + 13.401479 + ], + [ + 52.5297816, + 13.4014277 + ], + [ + 52.5297864, + 13.4014111 + ], + [ + 52.5298034, + 13.4013663 + ], + [ + 52.5298373, + 13.4012925 + ], + [ + 52.5298658, + 13.4012463 + ], + [ + 52.5298963, + 13.4012025 + ], + [ + 52.5299349, + 13.4011614 + ], + [ + 52.5300567, + 13.4010528 + ], + [ + 52.5308971, + 13.4003351 + ], + [ + 52.5311538, + 13.4001006 + ], + [ + 52.5316997, + 13.3996018 + ], + [ + 52.5317113, + 13.3995912 + ], + [ + 52.5318856, + 13.3994447 + ] + ] + }, + { + "osmId": "1049894535", + "name": null, + "lengthMeters": 101.6239912299583, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5325757, + 13.3985615 + ], + [ + 52.5325479, + 13.3982912 + ], + [ + 52.5325281, + 13.3980204 + ], + [ + 52.5325146, + 13.3977743 + ], + [ + 52.5325058, + 13.3975808 + ], + [ + 52.5324988, + 13.3973893 + ], + [ + 52.5324856, + 13.3970675 + ] + ] + }, + { + "osmId": "1049894536", + "name": null, + "lengthMeters": 85.66504123342547, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318879, + 13.390959 + ], + [ + 52.5317984, + 13.3901088 + ], + [ + 52.5317765, + 13.3899062 + ], + [ + 52.5317762, + 13.3898963 + ], + [ + 52.5317548, + 13.3897117 + ] + ] + }, + { + "osmId": "1049894541", + "name": null, + "lengthMeters": 137.72344575183467, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5293579, + 13.3845859 + ], + [ + 52.5297214, + 13.3841245 + ], + [ + 52.5302913, + 13.3834143 + ], + [ + 52.5303422, + 13.3833501 + ] + ] + }, + { + "osmId": "1050030604", + "name": null, + "lengthMeters": 544.1913372067456, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5561494, + 13.3629081 + ], + [ + 52.5552433, + 13.36117 + ], + [ + 52.5552073, + 13.361103 + ], + [ + 52.554929, + 13.3605608 + ], + [ + 52.5540787, + 13.3589231 + ], + [ + 52.5540149, + 13.3588003 + ], + [ + 52.5539337, + 13.3586436 + ], + [ + 52.5538553, + 13.3584896 + ], + [ + 52.553567, + 13.3579372 + ], + [ + 52.5535008, + 13.3578092 + ], + [ + 52.5529712, + 13.3567871 + ] + ] + }, + { + "osmId": "1050030605", + "name": null, + "lengthMeters": 148.47362465716967, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5561183, + 13.3629265 + ], + [ + 52.5565902, + 13.3637802 + ], + [ + 52.5566561, + 13.3639152 + ], + [ + 52.5567143, + 13.364052 + ], + [ + 52.5567507, + 13.364149 + ], + [ + 52.556782, + 13.3642468 + ], + [ + 52.5568099, + 13.3643421 + ], + [ + 52.5568315, + 13.3644391 + ], + [ + 52.5568597, + 13.3645857 + ], + [ + 52.5568777, + 13.3646968 + ] + ] + }, + { + "osmId": "1050306986", + "name": null, + "lengthMeters": 112.5988711386336, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6639919, + 9.9102389 + ], + [ + 53.6645784, + 9.9101535 + ], + [ + 53.6648415, + 9.9101366 + ], + [ + 53.6648865, + 9.9101352 + ], + [ + 53.6649289, + 9.9101309 + ], + [ + 53.665002, + 9.9101254 + ] + ] + }, + { + "osmId": "1050384063", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 155.30650304039256, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0741188, + 11.5363926 + ], + [ + 48.0741768, + 11.5370248 + ], + [ + 48.0742157, + 11.537448 + ], + [ + 48.0742663, + 11.53797 + ], + [ + 48.0743141, + 11.5384624 + ] + ] + }, + { + "osmId": "1050384064", + "name": "Bayerische Maximiliansbahn", + "lengthMeters": 139.74551676462943, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.0743563, + 11.5384536 + ], + [ + 48.0743072, + 11.5379588 + ], + [ + 48.0742562, + 11.5374448 + ], + [ + 48.0741792, + 11.5365915 + ] + ] + }, + { + "osmId": "1050503230", + "name": null, + "lengthMeters": 525.7475565883265, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7003561, + 9.9178132 + ], + [ + 53.7015171, + 9.9173724 + ], + [ + 53.7042555, + 9.9163363 + ], + [ + 53.7046269, + 9.9161951 + ], + [ + 53.7049696, + 9.9160649 + ] + ] + }, + { + "osmId": "1050503232", + "name": null, + "lengthMeters": 526.2031312109273, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7003441, + 9.9177553 + ], + [ + 53.7015356, + 9.9173021 + ], + [ + 53.7042655, + 9.9162583 + ], + [ + 53.7046159, + 9.9161255 + ], + [ + 53.7049602, + 9.915995 + ] + ] + }, + { + "osmId": "1050617173", + "name": null, + "lengthMeters": 197.44806828668152, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7315922, + 9.90486 + ], + [ + 53.731888, + 9.9049137 + ], + [ + 53.7319375, + 9.9049246 + ], + [ + 53.7320899, + 9.9049787 + ], + [ + 53.7322567, + 9.9050366 + ], + [ + 53.7325882, + 9.9051426 + ], + [ + 53.7328434, + 9.9052342 + ], + [ + 53.7332441, + 9.9054218 + ], + [ + 53.7333261, + 9.9054768 + ] + ] + }, + { + "osmId": "1050617177", + "name": null, + "lengthMeters": 755.7533322201991, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7219356, + 9.9083355 + ], + [ + 53.7223289, + 9.9080415 + ], + [ + 53.7228737, + 9.9076198 + ], + [ + 53.7233291, + 9.9072708 + ], + [ + 53.723358, + 9.9072503 + ], + [ + 53.7233968, + 9.9072195 + ], + [ + 53.7234604, + 9.9071728 + ], + [ + 53.7240057, + 9.9067525 + ], + [ + 53.7253429, + 9.905725 + ], + [ + 53.725632, + 9.9055051 + ], + [ + 53.7259962, + 9.9052136 + ], + [ + 53.7263947, + 9.9049107 + ], + [ + 53.7266994, + 9.9046792 + ], + [ + 53.7267914, + 9.9046093 + ], + [ + 53.7269675, + 9.9044943 + ], + [ + 53.7272239, + 9.9043174 + ], + [ + 53.7274339, + 9.9042101 + ], + [ + 53.7276572, + 9.9041306 + ], + [ + 53.7278764, + 9.9040861 + ], + [ + 53.728103, + 9.9040728 + ], + [ + 53.7282058, + 9.9040787 + ] + ] + }, + { + "osmId": "1050617178", + "name": null, + "lengthMeters": 754.474157642512, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7219432, + 9.9083949 + ], + [ + 53.722332, + 9.9081178 + ], + [ + 53.7231376, + 9.9075006 + ], + [ + 53.7233487, + 9.9073366 + ], + [ + 53.7233787, + 9.9073153 + ], + [ + 53.7234142, + 9.9072866 + ], + [ + 53.7234747, + 9.9072434 + ], + [ + 53.7252926, + 9.9058162 + ], + [ + 53.7256423, + 9.9055615 + ], + [ + 53.7259891, + 9.905308 + ], + [ + 53.7261338, + 9.905191 + ], + [ + 53.7264098, + 9.9049746 + ], + [ + 53.726496, + 9.9049068 + ], + [ + 53.7270082, + 9.9045241 + ], + [ + 53.7273628, + 9.9043086 + ], + [ + 53.7276593, + 9.9041917 + ], + [ + 53.7278768, + 9.9041495 + ], + [ + 53.7282025, + 9.904141 + ] + ] + }, + { + "osmId": "1051142177", + "name": null, + "lengthMeters": 204.30141959236474, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1327242, + 11.6459776 + ], + [ + 48.1327042, + 11.6463304 + ], + [ + 48.1326954, + 11.6465825 + ], + [ + 48.1326905, + 11.6468064 + ], + [ + 48.1326934, + 11.6473273 + ], + [ + 48.1327057, + 11.6476069 + ], + [ + 48.1327231, + 11.6478825 + ], + [ + 48.1327535, + 11.6482681 + ], + [ + 48.1328061, + 11.6487174 + ] + ] + }, + { + "osmId": "1051142178", + "name": null, + "lengthMeters": 237.3214464416009, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1328707, + 11.6488743 + ], + [ + 48.1328699, + 11.6488684 + ], + [ + 48.1328689, + 11.648862 + ], + [ + 48.1328498, + 11.648726 + ], + [ + 48.1327958, + 11.6482633 + ], + [ + 48.1327651, + 11.6478709 + ], + [ + 48.1327513, + 11.6475997 + ], + [ + 48.1327401, + 11.6473309 + ], + [ + 48.1327397, + 11.6468121 + ], + [ + 48.1327564, + 11.6463316 + ], + [ + 48.1327744, + 11.6460087 + ], + [ + 48.1327993, + 11.6456947 + ] + ] + }, + { + "osmId": "1051378098", + "name": null, + "lengthMeters": 416.55040016303684, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5289108, + 13.4246177 + ], + [ + 52.5286538, + 13.4243121 + ], + [ + 52.5285131, + 13.424138 + ], + [ + 52.5284182, + 13.4240233 + ], + [ + 52.528263, + 13.4238326 + ], + [ + 52.5281735, + 13.4237202 + ], + [ + 52.5280495, + 13.4235539 + ], + [ + 52.5279047, + 13.4233583 + ], + [ + 52.5276618, + 13.4230198 + ], + [ + 52.5272702, + 13.4224935 + ], + [ + 52.5269767, + 13.4221055 + ], + [ + 52.5268077, + 13.4218837 + ], + [ + 52.5266719, + 13.4217062 + ], + [ + 52.5265174, + 13.4215032 + ], + [ + 52.5262536, + 13.4211564 + ], + [ + 52.5261037, + 13.4209662 + ], + [ + 52.5259718, + 13.4208019 + ] + ] + }, + { + "osmId": "1051378099", + "name": null, + "lengthMeters": 148.1848277110583, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348195, + 13.4315863 + ], + [ + 52.5351494, + 13.4319812 + ], + [ + 52.5352399, + 13.4320873 + ], + [ + 52.5353902, + 13.4322091 + ], + [ + 52.5354859, + 13.4322926 + ], + [ + 52.5355952, + 13.432397 + ], + [ + 52.5358897, + 13.4327418 + ], + [ + 52.5359308, + 13.4327873 + ] + ] + }, + { + "osmId": "1051378100", + "name": null, + "lengthMeters": 148.58472019200207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348907, + 13.4314191 + ], + [ + 52.5351502, + 13.4317213 + ], + [ + 52.5353441, + 13.4319544 + ], + [ + 52.5355641, + 13.4322424 + ], + [ + 52.5356078, + 13.4323046 + ], + [ + 52.5357469, + 13.4325027 + ], + [ + 52.5359521, + 13.4327515 + ] + ] + }, + { + "osmId": "1051388649", + "name": null, + "lengthMeters": 106.25538875208643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553056, + 13.4144835 + ], + [ + 52.5532393, + 13.414524 + ], + [ + 52.5535146, + 13.4145856 + ], + [ + 52.5535544, + 13.4145953 + ], + [ + 52.5536071, + 13.4146081 + ], + [ + 52.5537168, + 13.4146355 + ], + [ + 52.5537575, + 13.4146457 + ], + [ + 52.5537651, + 13.4146475 + ], + [ + 52.5538441, + 13.4146667 + ], + [ + 52.5538707, + 13.4146732 + ], + [ + 52.5539319, + 13.414689 + ], + [ + 52.5539692, + 13.4146996 + ], + [ + 52.5540019, + 13.414706 + ] + ] + }, + { + "osmId": "1051388650", + "name": null, + "lengthMeters": 100.9186957757305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.553979, + 13.4144561 + ], + [ + 52.5539447, + 13.4144487 + ], + [ + 52.5538869, + 13.4144363 + ], + [ + 52.5538149, + 13.4144208 + ], + [ + 52.5537688, + 13.4144108 + ], + [ + 52.5537447, + 13.4144052 + ], + [ + 52.5537334, + 13.4144032 + ], + [ + 52.5536605, + 13.4143892 + ], + [ + 52.5536286, + 13.414383 + ], + [ + 52.5535658, + 13.4143717 + ], + [ + 52.5535302, + 13.4143656 + ], + [ + 52.553078, + 13.414277 + ] + ] + }, + { + "osmId": "1051928727", + "name": null, + "lengthMeters": 149.09148328248932, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5803193, + 13.3995531 + ], + [ + 52.5803068, + 13.3994978 + ], + [ + 52.5802919, + 13.3994381 + ], + [ + 52.5802731, + 13.399379 + ], + [ + 52.5801855, + 13.3991524 + ], + [ + 52.580103, + 13.3989439 + ], + [ + 52.5800003, + 13.3986701 + ], + [ + 52.5799565, + 13.3985617 + ], + [ + 52.5799201, + 13.3984915 + ], + [ + 52.57991, + 13.3984748 + ], + [ + 52.5798938, + 13.3984494 + ], + [ + 52.5798742, + 13.3984226 + ], + [ + 52.5798497, + 13.398395 + ], + [ + 52.5798251, + 13.3983706 + ], + [ + 52.5797983, + 13.3983484 + ], + [ + 52.5797651, + 13.3983254 + ], + [ + 52.5797355, + 13.3983115 + ], + [ + 52.5797017, + 13.3982984 + ], + [ + 52.5796669, + 13.3982909 + ], + [ + 52.5796282, + 13.3982864 + ], + [ + 52.5795861, + 13.3982867 + ], + [ + 52.5795105, + 13.3982869 + ], + [ + 52.5793741, + 13.3982892 + ] + ] + }, + { + "osmId": "1051928728", + "name": null, + "lengthMeters": 195.63288758802304, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.589419, + 13.4017176 + ], + [ + 52.5898648, + 13.401709 + ], + [ + 52.5898875, + 13.4017117 + ], + [ + 52.5899036, + 13.4017155 + ], + [ + 52.5899233, + 13.4017229 + ], + [ + 52.5899372, + 13.4017302 + ], + [ + 52.5899528, + 13.4017407 + ], + [ + 52.5899727, + 13.4017579 + ], + [ + 52.5899847, + 13.4017711 + ], + [ + 52.5899992, + 13.4017893 + ], + [ + 52.5900142, + 13.4018131 + ], + [ + 52.5900255, + 13.4018373 + ], + [ + 52.5900387, + 13.4018698 + ], + [ + 52.5900579, + 13.4019388 + ], + [ + 52.5900704, + 13.4019968 + ], + [ + 52.5902044, + 13.4027567 + ], + [ + 52.590257, + 13.4030573 + ], + [ + 52.5902834, + 13.4032055 + ], + [ + 52.5903219, + 13.4034227 + ], + [ + 52.5903277, + 13.4034538 + ], + [ + 52.5903564, + 13.4036103 + ] + ] + }, + { + "osmId": "1051928729", + "name": null, + "lengthMeters": 200.48842379456119, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5903825, + 13.4036051 + ], + [ + 52.590308, + 13.4031884 + ], + [ + 52.590271, + 13.402987 + ], + [ + 52.5902141, + 13.4026643 + ], + [ + 52.5901574, + 13.4023428 + ], + [ + 52.5901162, + 13.4021075 + ], + [ + 52.5900979, + 13.4020019 + ], + [ + 52.5900931, + 13.4019728 + ], + [ + 52.5900848, + 13.4019276 + ], + [ + 52.5900772, + 13.401891 + ], + [ + 52.5900674, + 13.4018524 + ], + [ + 52.5900586, + 13.401825 + ], + [ + 52.5900514, + 13.4018068 + ], + [ + 52.5900473, + 13.4017966 + ], + [ + 52.5900378, + 13.4017777 + ], + [ + 52.5900283, + 13.4017624 + ], + [ + 52.5900115, + 13.4017374 + ], + [ + 52.5900009, + 13.4017253 + ], + [ + 52.589989, + 13.4017131 + ], + [ + 52.5899766, + 13.4017016 + ], + [ + 52.5899631, + 13.4016921 + ], + [ + 52.589949, + 13.4016847 + ], + [ + 52.589932, + 13.4016786 + ], + [ + 52.5899122, + 13.4016735 + ], + [ + 52.5898864, + 13.401669 + ], + [ + 52.5894183, + 13.4016724 + ] + ] + }, + { + "osmId": "1051928732", + "name": null, + "lengthMeters": 113.2758305434162, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5699077, + 13.4001107 + ], + [ + 52.5695714, + 13.4007539 + ], + [ + 52.5694978, + 13.4008943 + ], + [ + 52.5693654, + 13.4011471 + ], + [ + 52.5693352, + 13.4012047 + ], + [ + 52.5692909, + 13.4012882 + ], + [ + 52.5692799, + 13.401313 + ], + [ + 52.5692634, + 13.4013529 + ], + [ + 52.5692495, + 13.4013889 + ] + ] + }, + { + "osmId": "1051928733", + "name": null, + "lengthMeters": 120.92801018973202, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5699282, + 13.4001356 + ], + [ + 52.5701156, + 13.3997784 + ], + [ + 52.5705519, + 13.398948 + ], + [ + 52.5706093, + 13.3988478 + ], + [ + 52.570644, + 13.3987888 + ] + ] + }, + { + "osmId": "1051929130", + "name": null, + "lengthMeters": 120.70065430265439, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5697496, + 13.4111194 + ], + [ + 52.5699042, + 13.4109838 + ], + [ + 52.5701554, + 13.4107557 + ], + [ + 52.5702504, + 13.4106664 + ], + [ + 52.5703114, + 13.4106117 + ], + [ + 52.570421, + 13.4105095 + ], + [ + 52.5706409, + 13.4103041 + ], + [ + 52.5706588, + 13.4102862 + ], + [ + 52.5706985, + 13.4102524 + ] + ] + }, + { + "osmId": "1051929131", + "name": null, + "lengthMeters": 117.14892640467484, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5706576, + 13.4102369 + ], + [ + 52.5706493, + 13.4102478 + ], + [ + 52.5705878, + 13.4103035 + ], + [ + 52.5705668, + 13.4103243 + ], + [ + 52.5697382, + 13.4110828 + ] + ] + }, + { + "osmId": "1051929966", + "name": null, + "lengthMeters": 191.2251643410906, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.597178, + 13.375479 + ], + [ + 52.5971795, + 13.3754488 + ], + [ + 52.59718, + 13.3754388 + ], + [ + 52.5971811, + 13.3754218 + ], + [ + 52.5971829, + 13.3753945 + ], + [ + 52.5971836, + 13.3753847 + ], + [ + 52.5971915, + 13.3753179 + ], + [ + 52.5971997, + 13.3752645 + ], + [ + 52.5972099, + 13.3752211 + ], + [ + 52.5972143, + 13.3752027 + ], + [ + 52.5972278, + 13.3751557 + ], + [ + 52.5972391, + 13.3751223 + ], + [ + 52.5972488, + 13.3750937 + ], + [ + 52.5972578, + 13.3750669 + ], + [ + 52.5974102, + 13.3746266 + ], + [ + 52.597601, + 13.3740783 + ], + [ + 52.5976337, + 13.3739865 + ], + [ + 52.5976611, + 13.3739257 + ], + [ + 52.5976876, + 13.373876 + ], + [ + 52.597706, + 13.3738447 + ], + [ + 52.5977245, + 13.3738172 + ], + [ + 52.5977583, + 13.3737735 + ], + [ + 52.5978115, + 13.3737085 + ], + [ + 52.5979473, + 13.3735421 + ], + [ + 52.5981669, + 13.373296 + ], + [ + 52.5981802, + 13.3732819 + ] + ] + }, + { + "osmId": "1052302087", + "name": null, + "lengthMeters": 144.9063533874804, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266632, + 13.4165191 + ], + [ + 52.526818, + 13.4161901 + ], + [ + 52.5268513, + 13.4161156 + ], + [ + 52.5268843, + 13.416041 + ], + [ + 52.5268966, + 13.416014 + ], + [ + 52.5269521, + 13.4158862 + ], + [ + 52.5269649, + 13.4158593 + ], + [ + 52.5270171, + 13.4157413 + ], + [ + 52.5270292, + 13.4157144 + ], + [ + 52.5270875, + 13.4155844 + ], + [ + 52.5271381, + 13.4154753 + ], + [ + 52.5271557, + 13.4154312 + ], + [ + 52.5271686, + 13.4154032 + ], + [ + 52.5271845, + 13.41537 + ], + [ + 52.5272147, + 13.4153112 + ], + [ + 52.5272473, + 13.4152349 + ], + [ + 52.5272811, + 13.415156 + ], + [ + 52.5273546, + 13.4149862 + ], + [ + 52.5274367, + 13.4147959 + ] + ] + }, + { + "osmId": "1052302089", + "name": null, + "lengthMeters": 155.1461473758347, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321442, + 13.4200846 + ], + [ + 52.5327003, + 13.4204193 + ], + [ + 52.5328736, + 13.4205137 + ], + [ + 52.5334293, + 13.4208437 + ], + [ + 52.5334572, + 13.4208602 + ] + ] + }, + { + "osmId": "1052302090", + "name": null, + "lengthMeters": 505.3148530295116, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.532156, + 13.4200416 + ], + [ + 52.5318558, + 13.4198651 + ], + [ + 52.5317806, + 13.4198207 + ], + [ + 52.5316831, + 13.419763 + ], + [ + 52.5313425, + 13.4195578 + ], + [ + 52.5312244, + 13.419482 + ], + [ + 52.5311625, + 13.4194423 + ], + [ + 52.5310637, + 13.4193745 + ], + [ + 52.5309657, + 13.4193053 + ], + [ + 52.5308299, + 13.4191997 + ], + [ + 52.5307278, + 13.4191149 + ], + [ + 52.5306799, + 13.4190726 + ], + [ + 52.5306341, + 13.4190326 + ], + [ + 52.5305672, + 13.4189744 + ], + [ + 52.5305503, + 13.4189597 + ], + [ + 52.5303737, + 13.4188116 + ], + [ + 52.529888, + 13.4184089 + ], + [ + 52.5298112, + 13.4183448 + ], + [ + 52.5296509, + 13.4181961 + ], + [ + 52.5294201, + 13.4179612 + ], + [ + 52.52908, + 13.4175901 + ], + [ + 52.5288206, + 13.4173313 + ], + [ + 52.5286685, + 13.4171823 + ], + [ + 52.5285169, + 13.4170417 + ], + [ + 52.5284172, + 13.4169512 + ], + [ + 52.5282372, + 13.4167949 + ], + [ + 52.5281118, + 13.4166835 + ] + ] + }, + { + "osmId": "1052302091", + "name": null, + "lengthMeters": 123.41367452212202, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5455305, + 13.4276844 + ], + [ + 52.5455002, + 13.4276728 + ], + [ + 52.5448078, + 13.4274063 + ], + [ + 52.5446947, + 13.4273639 + ], + [ + 52.5444502, + 13.4272659 + ] + ] + }, + { + "osmId": "1052302092", + "name": null, + "lengthMeters": 123.39878902495599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5444392, + 13.4273065 + ], + [ + 52.5446889, + 13.4274041 + ], + [ + 52.5452356, + 13.4276133 + ], + [ + 52.545484, + 13.4277082 + ], + [ + 52.5455198, + 13.427722 + ] + ] + }, + { + "osmId": "1052302093", + "name": null, + "lengthMeters": 100.04555438797895, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5509649, + 13.4300631 + ], + [ + 52.5508851, + 13.4300296 + ], + [ + 52.5503132, + 13.4297695 + ], + [ + 52.5502271, + 13.4297303 + ], + [ + 52.5500974, + 13.4296707 + ] + ] + }, + { + "osmId": "1052302094", + "name": null, + "lengthMeters": 79.36277978519331, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5517476, + 13.4286584 + ], + [ + 52.5517229, + 13.428721 + ], + [ + 52.5514107, + 13.4295121 + ], + [ + 52.5513596, + 13.4296436 + ] + ] + }, + { + "osmId": "1052302095", + "name": null, + "lengthMeters": 77.70845671467335, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5513923, + 13.4296468 + ], + [ + 52.5516907, + 13.4288878 + ], + [ + 52.5517465, + 13.4287461 + ], + [ + 52.5517719, + 13.4286818 + ] + ] + }, + { + "osmId": "1052302096", + "name": null, + "lengthMeters": 76.58018835050025, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5722689, + 13.4148085 + ], + [ + 52.5722546, + 13.414751 + ], + [ + 52.5721598, + 13.4143688 + ], + [ + 52.5721371, + 13.4142756 + ], + [ + 52.5720705, + 13.4140102 + ], + [ + 52.5720071, + 13.4137604 + ] + ] + }, + { + "osmId": "1052302097", + "name": null, + "lengthMeters": 277.6298055171233, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5708694, + 13.4101787 + ], + [ + 52.5708845, + 13.410182 + ], + [ + 52.570903, + 13.4101849 + ], + [ + 52.5709128, + 13.4101899 + ], + [ + 52.5709266, + 13.410198 + ], + [ + 52.5709435, + 13.4102093 + ], + [ + 52.5709567, + 13.4102184 + ], + [ + 52.5709659, + 13.4102281 + ], + [ + 52.5709805, + 13.4102424 + ], + [ + 52.5709951, + 13.4102587 + ], + [ + 52.571012, + 13.4102827 + ], + [ + 52.5710296, + 13.4103157 + ], + [ + 52.5710445, + 13.4103485 + ], + [ + 52.5710587, + 13.410384 + ], + [ + 52.571081, + 13.4104443 + ], + [ + 52.5711877, + 13.4108386 + ], + [ + 52.5714087, + 13.4116728 + ], + [ + 52.5714745, + 13.4119104 + ], + [ + 52.5714885, + 13.4119628 + ], + [ + 52.5718402, + 13.4132756 + ], + [ + 52.5719529, + 13.4136902 + ], + [ + 52.571979, + 13.4137799 + ] + ] + }, + { + "osmId": "1052302100", + "name": null, + "lengthMeters": 75.25573775105647, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5581305, + 13.4137373 + ], + [ + 52.5583608, + 13.4135716 + ], + [ + 52.5585416, + 13.4134394 + ], + [ + 52.5586693, + 13.4133753 + ], + [ + 52.5586971, + 13.4133624 + ], + [ + 52.5587598, + 13.4133332 + ] + ] + }, + { + "osmId": "1052302101", + "name": null, + "lengthMeters": 89.69098421333763, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.558874, + 13.4132561 + ], + [ + 52.5588244, + 13.4132666 + ], + [ + 52.5587469, + 13.4132831 + ], + [ + 52.5586576, + 13.4133161 + ], + [ + 52.5585821, + 13.4133552 + ], + [ + 52.5581054, + 13.4136429 + ] + ] + }, + { + "osmId": "1052302103", + "name": null, + "lengthMeters": 125.03817812142093, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5553231, + 13.4144822 + ], + [ + 52.554641, + 13.4145575 + ], + [ + 52.554528, + 13.4145528 + ], + [ + 52.5544065, + 13.4145404 + ], + [ + 52.5542024, + 13.4144934 + ] + ] + }, + { + "osmId": "1052302104", + "name": null, + "lengthMeters": 109.91797101030706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5428745, + 13.4142786 + ], + [ + 52.542682, + 13.4140675 + ], + [ + 52.5425283, + 13.4139045 + ], + [ + 52.5423815, + 13.4137488 + ], + [ + 52.5422213, + 13.4135672 + ], + [ + 52.5420526, + 13.4133758 + ] + ] + }, + { + "osmId": "1052302105", + "name": null, + "lengthMeters": 287.6806816870437, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5525932, + 13.4249295 + ], + [ + 52.552586, + 13.4248904 + ], + [ + 52.5525756, + 13.4248444 + ], + [ + 52.5525599, + 13.4247956 + ], + [ + 52.5525382, + 13.4247426 + ], + [ + 52.5525167, + 13.4247025 + ], + [ + 52.5525054, + 13.4246855 + ], + [ + 52.5524935, + 13.4246669 + ], + [ + 52.5524654, + 13.4246286 + ], + [ + 52.5524274, + 13.4245918 + ], + [ + 52.5524109, + 13.4245733 + ], + [ + 52.5523046, + 13.4244636 + ], + [ + 52.5522083, + 13.4243597 + ], + [ + 52.5511338, + 13.4231944 + ], + [ + 52.5504904, + 13.4225062 + ] + ] + }, + { + "osmId": "1052302106", + "name": null, + "lengthMeters": 222.10059102046017, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5521431, + 13.4243608 + ], + [ + 52.5511212, + 13.4232375 + ], + [ + 52.5504797, + 13.4225423 + ] + ] + }, + { + "osmId": "1052304897", + "name": null, + "lengthMeters": 149.69067775608852, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5528344, + 13.4227514 + ], + [ + 52.5527208, + 13.4238019 + ], + [ + 52.5526973, + 13.4239817 + ], + [ + 52.5526751, + 13.424181 + ], + [ + 52.5526052, + 13.4248202 + ], + [ + 52.5525932, + 13.4249295 + ] + ] + }, + { + "osmId": "1052304898", + "name": null, + "lengthMeters": 167.46192812929888, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5525907, + 13.4251966 + ], + [ + 52.5526313, + 13.4248301 + ], + [ + 52.5527057, + 13.424162 + ], + [ + 52.5527279, + 13.423965 + ], + [ + 52.5528585, + 13.4227592 + ] + ] + }, + { + "osmId": "1052314414", + "name": null, + "lengthMeters": 799.8995920761913, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5904653, + 13.4307784 + ], + [ + 52.5909505, + 13.4309464 + ], + [ + 52.5912556, + 13.4310517 + ], + [ + 52.5914097, + 13.4311051 + ], + [ + 52.5917236, + 13.4312125 + ], + [ + 52.5919502, + 13.4312933 + ], + [ + 52.5919775, + 13.4313001 + ], + [ + 52.5921658, + 13.4313677 + ], + [ + 52.5926983, + 13.4315503 + ], + [ + 52.5927768, + 13.4315785 + ], + [ + 52.5929133, + 13.4316268 + ], + [ + 52.5933469, + 13.4317758 + ], + [ + 52.5935947, + 13.4318616 + ], + [ + 52.5937015, + 13.4319186 + ], + [ + 52.5937913, + 13.4319841 + ], + [ + 52.5938503, + 13.4320269 + ], + [ + 52.5939559, + 13.4320995 + ], + [ + 52.5940563, + 13.4321493 + ], + [ + 52.5941569, + 13.432187 + ], + [ + 52.5945585, + 13.4323235 + ], + [ + 52.5949012, + 13.4324369 + ], + [ + 52.5953724, + 13.4325982 + ], + [ + 52.5956687, + 13.4326986 + ], + [ + 52.5957536, + 13.4327278 + ], + [ + 52.5958253, + 13.4327525 + ], + [ + 52.5961497, + 13.4328642 + ], + [ + 52.5962502, + 13.4328981 + ], + [ + 52.5963198, + 13.4329216 + ], + [ + 52.5972255, + 13.4332351 + ], + [ + 52.5974847, + 13.4333208 + ] + ] + }, + { + "osmId": "1052314416", + "name": null, + "lengthMeters": 490.1850755617599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5974847, + 13.4333208 + ], + [ + 52.5977609, + 13.4334208 + ], + [ + 52.5979342, + 13.4334786 + ], + [ + 52.5980805, + 13.4335177 + ], + [ + 52.5981864, + 13.433535 + ], + [ + 52.5982938, + 13.433535 + ], + [ + 52.5984318, + 13.4335159 + ], + [ + 52.5985032, + 13.4334917 + ], + [ + 52.5985659, + 13.4334675 + ], + [ + 52.598612, + 13.4334434 + ], + [ + 52.5986815, + 13.4334079 + ], + [ + 52.5987158, + 13.4333869 + ], + [ + 52.5991704, + 13.4331071 + ], + [ + 52.5992569, + 13.4330558 + ], + [ + 52.5993359, + 13.4330041 + ], + [ + 52.6000911, + 13.4325413 + ], + [ + 52.6004733, + 13.432308 + ], + [ + 52.600867, + 13.4320656 + ], + [ + 52.6009118, + 13.4320383 + ], + [ + 52.601378, + 13.4317537 + ], + [ + 52.601472, + 13.4316937 + ], + [ + 52.6016704, + 13.4315739 + ] + ] + }, + { + "osmId": "1052326657", + "name": null, + "lengthMeters": 170.2298619500295, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4737724, + 13.5982945 + ], + [ + 52.4734953, + 13.5977976 + ], + [ + 52.4733742, + 13.5975436 + ], + [ + 52.4732503, + 13.5971925 + ], + [ + 52.4729613, + 13.5961876 + ] + ] + }, + { + "osmId": "1052326658", + "name": null, + "lengthMeters": 520.830614095689, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4729613, + 13.5961876 + ], + [ + 52.4723258, + 13.5940857 + ], + [ + 52.4721427, + 13.5935543 + ], + [ + 52.4716014, + 13.5921229 + ], + [ + 52.4713245, + 13.5914112 + ], + [ + 52.4711956, + 13.5911381 + ], + [ + 52.4710391, + 13.5908474 + ], + [ + 52.470806, + 13.5904636 + ], + [ + 52.4706783, + 13.5902332 + ], + [ + 52.4705384, + 13.5899807 + ], + [ + 52.470426, + 13.5897772 + ] + ] + }, + { + "osmId": "1052326659", + "name": null, + "lengthMeters": 325.3135019170792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4648103, + 13.5841346 + ], + [ + 52.4646642, + 13.5841144 + ], + [ + 52.464214, + 13.5840773 + ], + [ + 52.4641235, + 13.5840698 + ], + [ + 52.4640857, + 13.5840667 + ], + [ + 52.4637631, + 13.5840398 + ], + [ + 52.4636026, + 13.5839847 + ], + [ + 52.4634069, + 13.5838705 + ], + [ + 52.4633206, + 13.5837927 + ], + [ + 52.4631648, + 13.5836595 + ], + [ + 52.4630599, + 13.5835681 + ], + [ + 52.462918, + 13.5834444 + ], + [ + 52.4625305, + 13.5831185 + ], + [ + 52.4623045, + 13.5829283 + ], + [ + 52.4622224, + 13.5828567 + ], + [ + 52.4621563, + 13.5828013 + ], + [ + 52.4621078, + 13.582774 + ], + [ + 52.4620715, + 13.5827342 + ] + ] + }, + { + "osmId": "1052326661", + "name": null, + "lengthMeters": 138.83751288071065, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4599103, + 13.5807345 + ], + [ + 52.4593883, + 13.5801429 + ], + [ + 52.4593295, + 13.5800797 + ], + [ + 52.4593155, + 13.5800635 + ], + [ + 52.4591822, + 13.5799117 + ], + [ + 52.4590347, + 13.5797455 + ], + [ + 52.4589304, + 13.5796332 + ], + [ + 52.4588781, + 13.579582 + ] + ] + }, + { + "osmId": "1052510459", + "name": null, + "lengthMeters": 83.81281687372706, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4415027, + 13.581846 + ], + [ + 52.4415109, + 13.581848 + ], + [ + 52.442248, + 13.5820306 + ] + ] + }, + { + "osmId": "1052774255", + "name": null, + "lengthMeters": 116.25339892731564, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5543775, + 13.4297154 + ], + [ + 52.5545951, + 13.4296583 + ], + [ + 52.554643, + 13.4296457 + ], + [ + 52.5547063, + 13.429629 + ], + [ + 52.5547147, + 13.4296268 + ], + [ + 52.5548127, + 13.4296011 + ], + [ + 52.5552532, + 13.4294845 + ], + [ + 52.5554098, + 13.4294431 + ] + ] + }, + { + "osmId": "1052774256", + "name": null, + "lengthMeters": 127.89921584600583, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554073, + 13.4293984 + ], + [ + 52.5552501, + 13.4294399 + ], + [ + 52.5548177, + 13.429554 + ], + [ + 52.5547105, + 13.4295825 + ], + [ + 52.5546389, + 13.4296014 + ], + [ + 52.5545836, + 13.4296159 + ], + [ + 52.5542716, + 13.4296981 + ] + ] + }, + { + "osmId": "1052818670", + "name": null, + "lengthMeters": 93.47660452161806, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5574575, + 13.4655619 + ], + [ + 52.5574032, + 13.4656912 + ], + [ + 52.5573296, + 13.4658673 + ], + [ + 52.5572515, + 13.4660562 + ], + [ + 52.557242, + 13.4660809 + ], + [ + 52.55724, + 13.4660867 + ], + [ + 52.5571746, + 13.46625 + ], + [ + 52.5571205, + 13.4663875 + ], + [ + 52.5569954, + 13.4667167 + ] + ] + }, + { + "osmId": "1052818671", + "name": null, + "lengthMeters": 113.9859927647823, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537176, + 13.469721 + ], + [ + 52.5537598, + 13.4691966 + ], + [ + 52.5537739, + 13.4690319 + ], + [ + 52.5538557, + 13.4680504 + ] + ] + }, + { + "osmId": "1052818672", + "name": null, + "lengthMeters": 140.71716738491685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5538915, + 13.4807717 + ], + [ + 52.553823, + 13.4806214 + ], + [ + 52.5534157, + 13.4798044 + ], + [ + 52.5534005, + 13.4797714 + ], + [ + 52.5533617, + 13.479687 + ], + [ + 52.5533404, + 13.4796406 + ], + [ + 52.5533189, + 13.4795747 + ], + [ + 52.5533086, + 13.4795361 + ], + [ + 52.5532839, + 13.4794434 + ], + [ + 52.5532752, + 13.4793848 + ], + [ + 52.5532663, + 13.479309 + ], + [ + 52.5532609, + 13.4792323 + ], + [ + 52.5532596, + 13.4791741 + ], + [ + 52.5532594, + 13.4791159 + ], + [ + 52.5532584, + 13.4790336 + ] + ] + }, + { + "osmId": "1052818673", + "name": null, + "lengthMeters": 131.95624409559562, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5534786, + 13.4350666 + ], + [ + 52.5532926, + 13.4356669 + ], + [ + 52.5529397, + 13.4368055 + ] + ] + }, + { + "osmId": "1052818674", + "name": null, + "lengthMeters": 411.9919622673717, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5529626, + 13.4368255 + ], + [ + 52.5531179, + 13.436333 + ], + [ + 52.5532865, + 13.4358088 + ], + [ + 52.5533018, + 13.4357589 + ], + [ + 52.5533884, + 13.435485 + ], + [ + 52.5534647, + 13.4352447 + ], + [ + 52.5535094, + 13.4351034 + ], + [ + 52.5535649, + 13.4349219 + ], + [ + 52.5536163, + 13.434735 + ], + [ + 52.5536577, + 13.4345709 + ], + [ + 52.553692, + 13.4344502 + ], + [ + 52.5538044, + 13.4340958 + ], + [ + 52.5538495, + 13.4339487 + ], + [ + 52.5539891, + 13.4335132 + ], + [ + 52.5541187, + 13.4331024 + ], + [ + 52.5541693, + 13.4329367 + ], + [ + 52.5542427, + 13.4327034 + ], + [ + 52.5542582, + 13.4326547 + ], + [ + 52.5542951, + 13.4325434 + ], + [ + 52.5545, + 13.4318944 + ], + [ + 52.5545239, + 13.4318025 + ], + [ + 52.5545475, + 13.4316995 + ], + [ + 52.554548, + 13.4316977 + ], + [ + 52.554557, + 13.431648 + ], + [ + 52.5545658, + 13.4315961 + ], + [ + 52.5545727, + 13.4315357 + ], + [ + 52.5545797, + 13.4314779 + ], + [ + 52.5545853, + 13.4314174 + ], + [ + 52.5545891, + 13.431366 + ] + ] + }, + { + "osmId": "1053154866", + "name": null, + "lengthMeters": 234.07918009399353, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.144209, + 11.6798322 + ], + [ + 48.1446077, + 11.68293 + ] + ] + }, + { + "osmId": "1053154867", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 235.07006205156506, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1446487, + 11.6829169 + ], + [ + 48.1445127, + 11.6818171 + ], + [ + 48.1444432, + 11.6812834 + ], + [ + 48.1442508, + 11.6798053 + ] + ] + }, + { + "osmId": "1053166648", + "name": null, + "lengthMeters": 77.13938085302469, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5284768, + 13.4110892 + ], + [ + 52.5284313, + 13.4113285 + ], + [ + 52.5283909, + 13.4114936 + ], + [ + 52.5282515, + 13.4119719 + ], + [ + 52.5282036, + 13.4121352 + ] + ] + }, + { + "osmId": "1053166649", + "name": null, + "lengthMeters": 77.96328130511593, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5282235, + 13.4121535 + ], + [ + 52.5282747, + 13.4119891 + ], + [ + 52.5284144, + 13.4115075 + ], + [ + 52.5284545, + 13.4113452 + ], + [ + 52.5285015, + 13.4110979 + ] + ] + }, + { + "osmId": "1053166650", + "name": null, + "lengthMeters": 102.80254936147949, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286509, + 13.4101559 + ], + [ + 52.5286673, + 13.410057 + ], + [ + 52.5287419, + 13.4096403 + ], + [ + 52.5287769, + 13.4094583 + ], + [ + 52.5287916, + 13.4093822 + ], + [ + 52.5288251, + 13.4092422 + ], + [ + 52.5288317, + 13.4092144 + ], + [ + 52.5288667, + 13.4090578 + ], + [ + 52.5289457, + 13.4087167 + ] + ] + }, + { + "osmId": "1053166652", + "name": null, + "lengthMeters": 223.12253580906338, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5286509, + 13.4101559 + ], + [ + 52.5286666, + 13.4100574 + ], + [ + 52.5287082, + 13.409809 + ], + [ + 52.5287207, + 13.4096831 + ], + [ + 52.5287201, + 13.4096374 + ], + [ + 52.528719, + 13.4096139 + ], + [ + 52.5287181, + 13.4095936 + ], + [ + 52.5287119, + 13.4095504 + ], + [ + 52.5287031, + 13.4095072 + ], + [ + 52.5286931, + 13.4094694 + ], + [ + 52.5286848, + 13.4094412 + ], + [ + 52.5286709, + 13.4094072 + ], + [ + 52.5286595, + 13.4093843 + ], + [ + 52.528639, + 13.4093528 + ], + [ + 52.5286234, + 13.4093293 + ], + [ + 52.5286067, + 13.4093057 + ], + [ + 52.528571, + 13.409264 + ], + [ + 52.5285176, + 13.4092144 + ], + [ + 52.5282881, + 13.4090312 + ], + [ + 52.5282442, + 13.4089962 + ], + [ + 52.5278664, + 13.4087133 + ], + [ + 52.5273113, + 13.4082648 + ] + ] + }, + { + "osmId": "1053166653", + "name": null, + "lengthMeters": 129.51667192648566, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5283452, + 13.4091403 + ], + [ + 52.5282832, + 13.4090896 + ], + [ + 52.5282399, + 13.4090545 + ], + [ + 52.5277828, + 13.4086835 + ], + [ + 52.5274992, + 13.4084568 + ], + [ + 52.5272996, + 13.4082967 + ] + ] + }, + { + "osmId": "1053166654", + "name": null, + "lengthMeters": 165.44254326296675, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5246946, + 13.4053289 + ], + [ + 52.5246837, + 13.4052841 + ], + [ + 52.5246162, + 13.405008 + ], + [ + 52.5245979, + 13.4049032 + ], + [ + 52.5245833, + 13.4047709 + ], + [ + 52.5245807, + 13.4046266 + ], + [ + 52.5245919, + 13.4044563 + ], + [ + 52.524629, + 13.4041451 + ], + [ + 52.5247103, + 13.4034645 + ], + [ + 52.5247125, + 13.4034355 + ], + [ + 52.5247139, + 13.4034086 + ], + [ + 52.524714, + 13.4033742 + ], + [ + 52.524712, + 13.4033377 + ], + [ + 52.5247092, + 13.4033122 + ], + [ + 52.5247036, + 13.4032805 + ], + [ + 52.5246981, + 13.4032536 + ], + [ + 52.5246903, + 13.4032252 + ], + [ + 52.5246836, + 13.403204 + ], + [ + 52.5246721, + 13.4031764 + ], + [ + 52.5246609, + 13.4031558 + ], + [ + 52.5246537, + 13.4031443 + ], + [ + 52.5246302, + 13.4031119 + ], + [ + 52.5246212, + 13.4031021 + ], + [ + 52.5245884, + 13.4030666 + ], + [ + 52.5245625, + 13.4030406 + ] + ] + }, + { + "osmId": "1053166655", + "name": null, + "lengthMeters": 132.07923903681072, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292296, + 13.401639 + ], + [ + 52.5290441, + 13.4017907 + ], + [ + 52.5289613, + 13.4018589 + ], + [ + 52.5289148, + 13.4018969 + ], + [ + 52.5281661, + 13.4025086 + ] + ] + }, + { + "osmId": "1053166659", + "name": null, + "lengthMeters": 229.9003894577127, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245145, + 13.4126668 + ], + [ + 52.5241964, + 13.4122856 + ], + [ + 52.5240454, + 13.4120963 + ], + [ + 52.5239716, + 13.4120022 + ], + [ + 52.5239536, + 13.4119794 + ], + [ + 52.523894, + 13.4119039 + ], + [ + 52.5238316, + 13.4118244 + ], + [ + 52.5237707, + 13.4117387 + ], + [ + 52.5236231, + 13.4115106 + ], + [ + 52.5234259, + 13.4112051 + ], + [ + 52.5233439, + 13.4110773 + ], + [ + 52.5232562, + 13.4109414 + ], + [ + 52.5230647, + 13.4106437 + ], + [ + 52.5229486, + 13.4104563 + ] + ] + }, + { + "osmId": "1053166660", + "name": null, + "lengthMeters": 233.64551807086139, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5244969, + 13.4127164 + ], + [ + 52.5251865, + 13.4135866 + ], + [ + 52.525678, + 13.4141924 + ], + [ + 52.5257682, + 13.4143136 + ], + [ + 52.5261826, + 13.4147763 + ] + ] + }, + { + "osmId": "1053166661", + "name": null, + "lengthMeters": 148.0526912902087, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5272896, + 13.4159862 + ], + [ + 52.527227, + 13.4159316 + ], + [ + 52.5271941, + 13.4158979 + ], + [ + 52.5271633, + 13.4158686 + ], + [ + 52.5271128, + 13.4158105 + ], + [ + 52.5270292, + 13.4157144 + ], + [ + 52.5270064, + 13.4156882 + ], + [ + 52.5269173, + 13.4155857 + ], + [ + 52.5268572, + 13.4155129 + ], + [ + 52.5267358, + 13.4153684 + ], + [ + 52.5267065, + 13.4153335 + ], + [ + 52.5264983, + 13.4150896 + ], + [ + 52.5261973, + 13.414737 + ] + ] + }, + { + "osmId": "1053524267", + "name": "Dresdner Bahn", + "lengthMeters": 1675.9138197693496, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3655418, + 13.4063149 + ], + [ + 52.3602103, + 13.4082131 + ], + [ + 52.3589314, + 13.4086531 + ], + [ + 52.3583182, + 13.4088641 + ], + [ + 52.3572328, + 13.4092372 + ], + [ + 52.3535422, + 13.4105059 + ], + [ + 52.3535075, + 13.4105206 + ], + [ + 52.3508005, + 13.4114542 + ] + ] + }, + { + "osmId": "1053524269", + "name": null, + "lengthMeters": 272.9859242942227, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3698598, + 13.4047718 + ], + [ + 52.3694768, + 13.404878 + ], + [ + 52.3691993, + 13.4049724 + ], + [ + 52.3684671, + 13.4052267 + ], + [ + 52.3674532, + 13.4055645 + ] + ] + }, + { + "osmId": "1053640326", + "name": null, + "lengthMeters": 129.02723774544194, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793372, + 13.5225501 + ], + [ + 52.4789511, + 13.5234262 + ], + [ + 52.4788612, + 13.5236303 + ], + [ + 52.4788533, + 13.5236484 + ], + [ + 52.4786573, + 13.524094 + ] + ] + }, + { + "osmId": "1053640327", + "name": null, + "lengthMeters": 183.55929466326089, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4843043, + 13.50889 + ], + [ + 52.4843107, + 13.5084888 + ], + [ + 52.4843224, + 13.5079893 + ], + [ + 52.4843387, + 13.5071618 + ], + [ + 52.4843581, + 13.5064252 + ], + [ + 52.4843595, + 13.5062953 + ], + [ + 52.4843599, + 13.5061809 + ] + ] + }, + { + "osmId": "1053640328", + "name": null, + "lengthMeters": 242.1352100156129, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4869553, + 13.4971564 + ], + [ + 52.4877427, + 13.4963382 + ], + [ + 52.4878111, + 13.4962667 + ], + [ + 52.4879674, + 13.4961032 + ], + [ + 52.4881166, + 13.4959473 + ], + [ + 52.4882935, + 13.4957623 + ], + [ + 52.4887951, + 13.4952434 + ] + ] + }, + { + "osmId": "1056291266", + "name": null, + "lengthMeters": 563.842191706963, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.7432837, + 9.9872938 + ], + [ + 53.7416728, + 9.9878342 + ], + [ + 53.7416284, + 9.987857 + ], + [ + 53.7412469, + 9.9880421 + ], + [ + 53.7411422, + 9.9880756 + ], + [ + 53.7391735, + 9.9887395 + ], + [ + 53.7389458, + 9.9888226 + ], + [ + 53.7387396, + 9.9888924 + ], + [ + 53.7386, + 9.9889541 + ], + [ + 53.7384548, + 9.9890359 + ], + [ + 53.738339, + 9.9891378 + ] + ] + }, + { + "osmId": "1059303529", + "name": null, + "lengthMeters": 161.0625034087079, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3892174, + 13.3953385 + ], + [ + 52.3894235, + 13.3952154 + ], + [ + 52.3901238, + 13.3947766 + ], + [ + 52.390348, + 13.3946333 + ], + [ + 52.3904799, + 13.3945398 + ], + [ + 52.3905671, + 13.3944781 + ] + ] + }, + { + "osmId": "1060237804", + "name": "U5", + "lengthMeters": 881.6705082076727, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1366301, + 11.4860879 + ], + [ + 48.136512, + 11.4874452 + ], + [ + 48.1364425, + 11.4882983 + ], + [ + 48.13639, + 11.4891113 + ], + [ + 48.1363632, + 11.4894835 + ], + [ + 48.1362888, + 11.4903731 + ], + [ + 48.1361966, + 11.491408 + ], + [ + 48.1360882, + 11.4925132 + ], + [ + 48.135954, + 11.4940499 + ], + [ + 48.1358682, + 11.4951176 + ], + [ + 48.1358528, + 11.4953231 + ], + [ + 48.135831, + 11.495549 + ], + [ + 48.1358132, + 11.495789 + ], + [ + 48.1357356, + 11.4968021 + ], + [ + 48.1357065, + 11.4972238 + ], + [ + 48.1356442, + 11.4978758 + ] + ] + }, + { + "osmId": "1060237805", + "name": null, + "lengthMeters": 884.3068773995442, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1357505, + 11.4979204 + ], + [ + 48.1358034, + 11.4974099 + ], + [ + 48.1359192, + 11.4963534 + ], + [ + 48.1360371, + 11.4948868 + ], + [ + 48.136067, + 11.4945336 + ], + [ + 48.1362248, + 11.4927677 + ], + [ + 48.1363886, + 11.4907624 + ], + [ + 48.1365017, + 11.4893391 + ], + [ + 48.1365624, + 11.4885745 + ], + [ + 48.1366578, + 11.4874942 + ], + [ + 48.136776, + 11.4861042 + ] + ] + }, + { + "osmId": "1060239100", + "name": null, + "lengthMeters": 1067.6784295387558, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434344, + 11.513166 + ], + [ + 48.1434445, + 11.5128512 + ], + [ + 48.1434588, + 11.5126268 + ], + [ + 48.1434935, + 11.512248 + ], + [ + 48.1435395, + 11.511878 + ], + [ + 48.1435963, + 11.5114816 + ], + [ + 48.1436958, + 11.5109404 + ], + [ + 48.1437992, + 11.5104635 + ], + [ + 48.1438935, + 11.5099831 + ], + [ + 48.1439508, + 11.5096855 + ], + [ + 48.1440041, + 11.509368 + ], + [ + 48.144038, + 11.509137 + ], + [ + 48.1440898, + 11.508714 + ], + [ + 48.1441336, + 11.5082724 + ], + [ + 48.1441712, + 11.5078314 + ], + [ + 48.1442207, + 11.5071279 + ], + [ + 48.14427, + 11.5065583 + ], + [ + 48.144346, + 11.505823 + ], + [ + 48.1443665, + 11.505625 + ], + [ + 48.1444293, + 11.5050375 + ], + [ + 48.144487, + 11.504479 + ], + [ + 48.1444924, + 11.5044265 + ], + [ + 48.1445008, + 11.504345 + ], + [ + 48.1445681, + 11.5037067 + ], + [ + 48.144647, + 11.5029582 + ], + [ + 48.1446731, + 11.5027017 + ], + [ + 48.1446842, + 11.5025925 + ], + [ + 48.1446846, + 11.5025883 + ], + [ + 48.1447135, + 11.5023033 + ], + [ + 48.1447722, + 11.5017331 + ], + [ + 48.1447868, + 11.5015664 + ], + [ + 48.1447935, + 11.5014896 + ], + [ + 48.1447984, + 11.5014275 + ], + [ + 48.1448141, + 11.5011814 + ], + [ + 48.1448232, + 11.500934 + ], + [ + 48.1448245, + 11.5007753 + ], + [ + 48.1448219, + 11.5005959 + ], + [ + 48.144813, + 11.5003776 + ], + [ + 48.1447975, + 11.5000792 + ], + [ + 48.1447947, + 11.499891 + ], + [ + 48.1447969, + 11.4996899 + ], + [ + 48.1448049, + 11.4994919 + ], + [ + 48.1448237, + 11.4992353 + ], + [ + 48.1448455, + 11.4989809 + ] + ] + }, + { + "osmId": "1060239102", + "name": null, + "lengthMeters": 242.96602559624677, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436914, + 11.5116341 + ], + [ + 48.1437683, + 11.5108133 + ], + [ + 48.1438353, + 11.5101771 + ], + [ + 48.1440256, + 11.5083981 + ] + ] + }, + { + "osmId": "1061039763", + "name": null, + "lengthMeters": 120.44041770662112, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3403049, + 13.4150657 + ], + [ + 52.3409004, + 13.4148646 + ], + [ + 52.3411143, + 13.4147961 + ], + [ + 52.3413677, + 13.4147245 + ] + ] + }, + { + "osmId": "1061052795", + "name": "Dresdner Bahn", + "lengthMeters": 747.0622060055119, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3765736, + 13.4024392 + ], + [ + 52.3765183, + 13.4024616 + ], + [ + 52.3761569, + 13.4026078 + ], + [ + 52.3752414, + 13.4029569 + ], + [ + 52.3733447, + 13.403646 + ], + [ + 52.3730636, + 13.4037481 + ], + [ + 52.3715335, + 13.4042657 + ], + [ + 52.3700096, + 13.4047821 + ] + ] + }, + { + "osmId": "1061052796", + "name": "Dresdner Bahn", + "lengthMeters": 1674.319631487642, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3508084, + 13.4115071 + ], + [ + 52.3535117, + 13.4105686 + ], + [ + 52.3535472, + 13.4105583 + ], + [ + 52.353634, + 13.4105304 + ], + [ + 52.3550641, + 13.4100294 + ], + [ + 52.3566765, + 13.4094833 + ], + [ + 52.3569021, + 13.409412 + ], + [ + 52.3569266, + 13.4094051 + ], + [ + 52.3589357, + 13.4087159 + ], + [ + 52.3602172, + 13.4082778 + ], + [ + 52.3651109, + 13.4065411 + ], + [ + 52.3655392, + 13.4064005 + ] + ] + }, + { + "osmId": "1061282803", + "name": "Sch\u00f6nefelder Kurve", + "lengthMeters": 425.31450091365423, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3501573, + 13.4145714 + ], + [ + 52.3504469, + 13.4149116 + ], + [ + 52.3507247, + 13.4152828 + ], + [ + 52.3509548, + 13.4156356 + ], + [ + 52.3511076, + 13.4158945 + ], + [ + 52.3511485, + 13.4159635 + ], + [ + 52.3513222, + 13.4162927 + ], + [ + 52.3514778, + 13.4166103 + ], + [ + 52.351606, + 13.4169126 + ], + [ + 52.3517271, + 13.4172206 + ], + [ + 52.3518547, + 13.4175703 + ], + [ + 52.3519497, + 13.4178353 + ], + [ + 52.3520089, + 13.4180083 + ], + [ + 52.3520658, + 13.4182028 + ], + [ + 52.3520716, + 13.4182222 + ], + [ + 52.352438, + 13.4194789 + ] + ] + }, + { + "osmId": "1061650569", + "name": "Santa Fe-Express", + "lengthMeters": 453.31788707792305, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4847216, + 13.4861768 + ], + [ + 52.4848137, + 13.485794 + ], + [ + 52.484809, + 13.4854311 + ], + [ + 52.4848264, + 13.4852978 + ], + [ + 52.4848696, + 13.4852001 + ], + [ + 52.4851529, + 13.4848072 + ], + [ + 52.4853825, + 13.4844721 + ], + [ + 52.4857277, + 13.4840823 + ], + [ + 52.4859124, + 13.4839219 + ], + [ + 52.4860792, + 13.4838307 + ], + [ + 52.48616, + 13.483839 + ], + [ + 52.4862593, + 13.4839059 + ], + [ + 52.4863477, + 13.4840579 + ], + [ + 52.4864666, + 13.4843438 + ], + [ + 52.4866946, + 13.4849962 + ], + [ + 52.4867138, + 13.4851582 + ], + [ + 52.4867114, + 13.4854386 + ], + [ + 52.4867303, + 13.4858563 + ], + [ + 52.4867248, + 13.4862364 + ], + [ + 52.4867118, + 13.4866034 + ] + ] + }, + { + "osmId": "1061891876", + "name": "Bahnstrecke M\u00fcnchen-Simbach", + "lengthMeters": 2763.8203474597244, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1496871, + 11.7223508 + ], + [ + 48.1495414, + 11.7212106 + ], + [ + 48.1494282, + 11.7203264 + ], + [ + 48.1493125, + 11.7194059 + ], + [ + 48.1491947, + 11.7184883 + ], + [ + 48.14908, + 11.7175949 + ], + [ + 48.1486178, + 11.7139776 + ], + [ + 48.1476891, + 11.7067405 + ], + [ + 48.147507, + 11.7053157 + ], + [ + 48.1474912, + 11.7051919 + ], + [ + 48.1473296, + 11.703928 + ], + [ + 48.1472291, + 11.7031414 + ], + [ + 48.1468239, + 11.6999712 + ], + [ + 48.1464186, + 11.6968005 + ], + [ + 48.1463119, + 11.6959656 + ], + [ + 48.1461483, + 11.6946858 + ], + [ + 48.1457438, + 11.6915208 + ], + [ + 48.1456408, + 11.6907146 + ], + [ + 48.145527, + 11.6898241 + ], + [ + 48.1453563, + 11.6884885 + ], + [ + 48.1450058, + 11.6857648 + ] + ] + }, + { + "osmId": "1062318975", + "name": null, + "lengthMeters": 388.8106638088276, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.136776, + 11.4861042 + ], + [ + 48.1368151, + 11.4856877 + ], + [ + 48.13688, + 11.4848975 + ], + [ + 48.1368976, + 11.4842014 + ], + [ + 48.1369008, + 11.4840779 + ], + [ + 48.1369119, + 11.4833905 + ], + [ + 48.1369069, + 11.4826692 + ], + [ + 48.1369019, + 11.4819269 + ], + [ + 48.1369417, + 11.4812466 + ], + [ + 48.1370012, + 11.4808891 + ] + ] + }, + { + "osmId": "1062318976", + "name": "U5", + "lengthMeters": 394.9162138053652, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1367877, + 11.4807777 + ], + [ + 48.1367638, + 11.4812307 + ], + [ + 48.1367627, + 11.4820844 + ], + [ + 48.1367643, + 11.4828842 + ], + [ + 48.1367708, + 11.4837446 + ], + [ + 48.1367337, + 11.4846794 + ], + [ + 48.1366301, + 11.4860879 + ] + ] + }, + { + "osmId": "1063700698", + "name": null, + "lengthMeters": 137.98128896987336, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5222141, + 10.0130601 + ], + [ + 53.5227792, + 10.0135553 + ], + [ + 53.5233106, + 10.0140372 + ] + ] + }, + { + "osmId": "1064292899", + "name": null, + "lengthMeters": 189.19269888850215, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.41863, + 13.3779673 + ], + [ + 52.4194289, + 13.3775453 + ], + [ + 52.4199838, + 13.3772458 + ], + [ + 52.4202466, + 13.3770975 + ] + ] + }, + { + "osmId": "1066885038", + "name": null, + "lengthMeters": 104.3465328283601, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.383349, + 13.1228098 + ], + [ + 52.3835369, + 13.1230116 + ], + [ + 52.3836562, + 13.1231414 + ], + [ + 52.3837833, + 13.1232872 + ], + [ + 52.383861, + 13.1233824 + ], + [ + 52.3841288, + 13.1236644 + ] + ] + }, + { + "osmId": "1066932616", + "name": null, + "lengthMeters": 740.2837270559266, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4787821, + 13.4573541 + ], + [ + 52.4810953, + 13.4578197 + ], + [ + 52.4826984, + 13.4581431 + ], + [ + 52.4834694, + 13.458299 + ], + [ + 52.4839282, + 13.4583914 + ], + [ + 52.4846149, + 13.4585296 + ], + [ + 52.485271, + 13.4586612 + ], + [ + 52.4853901, + 13.4586851 + ] + ] + }, + { + "osmId": "1066932617", + "name": null, + "lengthMeters": 742.6711897621972, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4854221, + 13.4586347 + ], + [ + 52.484311, + 13.4584115 + ], + [ + 52.4839973, + 13.4583468 + ], + [ + 52.4817699, + 13.4578986 + ], + [ + 52.4815341, + 13.4578509 + ], + [ + 52.478793, + 13.4572966 + ] + ] + }, + { + "osmId": "1066932622", + "name": null, + "lengthMeters": 269.7817150181425, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4894406, + 13.4587385 + ], + [ + 52.4892586, + 13.4587265 + ], + [ + 52.4890852, + 13.4587301 + ], + [ + 52.4888723, + 13.4587482 + ], + [ + 52.4884505, + 13.4587957 + ], + [ + 52.4883067, + 13.4588101 + ], + [ + 52.4878775, + 13.4588542 + ], + [ + 52.4875986, + 13.4588781 + ], + [ + 52.4873692, + 13.4588869 + ], + [ + 52.4871665, + 13.4588879 + ], + [ + 52.4870174, + 13.4588839 + ] + ] + }, + { + "osmId": "1073037263", + "name": null, + "lengthMeters": 112.93604105871606, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.4742117, + 9.8442033 + ], + [ + 53.4741838, + 9.8448966 + ], + [ + 53.4741674, + 9.8459078 + ] + ] + }, + { + "osmId": "1078146037", + "name": null, + "lengthMeters": 397.4448130230129, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.5590356, + 10.1118133 + ], + [ + 53.5590467, + 10.1097895 + ], + [ + 53.5591145, + 10.1086996 + ], + [ + 53.5591184, + 10.1076749 + ], + [ + 53.5590002, + 10.1066862 + ], + [ + 53.558975, + 10.1063631 + ], + [ + 53.5589132, + 10.1058347 + ] + ] + }, + { + "osmId": "1078855634", + "name": null, + "lengthMeters": 284.99223736816685, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5834441, + 9.7540349 + ], + [ + 53.5834032, + 9.7543686 + ], + [ + 53.5833334, + 9.7550967 + ], + [ + 53.5832289, + 9.7561347 + ], + [ + 53.5830711, + 9.7577654 + ], + [ + 53.5830229, + 9.7582932 + ] + ] + }, + { + "osmId": "1078855635", + "name": null, + "lengthMeters": 298.4908501669551, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5825264, + 9.7627203 + ], + [ + 53.5827185, + 9.7615969 + ], + [ + 53.5828016, + 9.7611106 + ], + [ + 53.5828811, + 9.7606213 + ], + [ + 53.583035, + 9.7595185 + ], + [ + 53.5831457, + 9.7583265 + ] + ] + }, + { + "osmId": "1078998337", + "name": null, + "lengthMeters": 225.3161557050079, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.528821, + 13.3772768 + ], + [ + 52.5288416, + 13.3773441 + ], + [ + 52.5289395, + 13.3776632 + ], + [ + 52.5289565, + 13.3777209 + ], + [ + 52.5290033, + 13.3778795 + ], + [ + 52.5291159, + 13.378268 + ], + [ + 52.5291488, + 13.3783679 + ], + [ + 52.5291766, + 13.3784601 + ], + [ + 52.5292623, + 13.3787522 + ], + [ + 52.5293141, + 13.3789369 + ], + [ + 52.529349, + 13.3790428 + ], + [ + 52.5293891, + 13.3791462 + ], + [ + 52.529468, + 13.3793254 + ], + [ + 52.5294887, + 13.3793711 + ], + [ + 52.5295158, + 13.3794415 + ], + [ + 52.5295358, + 13.3794975 + ], + [ + 52.5295473, + 13.3795293 + ], + [ + 52.5297548, + 13.3802271 + ] + ] + }, + { + "osmId": "1083232351", + "name": null, + "lengthMeters": 169.86288845637395, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1449236, + 11.4991463 + ], + [ + 48.1448962, + 11.499837 + ], + [ + 48.1448766, + 11.5002593 + ], + [ + 48.1448632, + 11.5005041 + ], + [ + 48.1448541, + 11.5006536 + ], + [ + 48.1448356, + 11.5009375 + ], + [ + 48.1448186, + 11.5011829 + ], + [ + 48.1447984, + 11.5014275 + ] + ] + }, + { + "osmId": "1084713445", + "name": null, + "lengthMeters": 234.82617149114063, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5992686, + 9.9003335 + ], + [ + 53.599417, + 9.9001232 + ], + [ + 53.5995698, + 9.8999213 + ], + [ + 53.5997534, + 9.899724 + ], + [ + 53.5999044, + 9.8995764 + ], + [ + 53.600077, + 9.8994262 + ], + [ + 53.600259, + 9.8992852 + ], + [ + 53.6004009, + 9.8992087 + ], + [ + 53.6006223, + 9.8991107 + ], + [ + 53.6008136, + 9.89904 + ], + [ + 53.6010048, + 9.8990014 + ], + [ + 53.6011753, + 9.8989929 + ] + ] + }, + { + "osmId": "1084718643", + "name": null, + "lengthMeters": 360.93028892407307, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7336359, + 9.9056937 + ], + [ + 53.7339171, + 9.9058906 + ], + [ + 53.7342948, + 9.9061502 + ], + [ + 53.7346546, + 9.9064227 + ], + [ + 53.7350875, + 9.9067841 + ], + [ + 53.7355489, + 9.9071379 + ], + [ + 53.7360309, + 9.9074868 + ], + [ + 53.7365437, + 9.9078919 + ], + [ + 53.7365981, + 9.9079338 + ] + ] + }, + { + "osmId": "1085279322", + "name": null, + "lengthMeters": 403.3322421638036, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3635476, + 13.5072716 + ], + [ + 52.3648022, + 13.5125169 + ], + [ + 52.364873, + 13.5128009 + ] + ] + }, + { + "osmId": "1085279325", + "name": null, + "lengthMeters": 402.5903380475, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3651571, + 13.5126216 + ], + [ + 52.3645826, + 13.5101244 + ], + [ + 52.3644897, + 13.5097207 + ], + [ + 52.3639705, + 13.507464 + ], + [ + 52.3638767, + 13.5070756 + ] + ] + }, + { + "osmId": "1085279326", + "name": null, + "lengthMeters": 196.88271255065513, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.363905, + 13.5069991 + ], + [ + 52.3645333, + 13.50971 + ] + ] + }, + { + "osmId": "1085279327", + "name": null, + "lengthMeters": 196.24173255301952, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3646918, + 13.5095956 + ], + [ + 52.3640824, + 13.5068832 + ] + ] + }, + { + "osmId": "1085279328", + "name": null, + "lengthMeters": 147.92841888504944, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.364873, + 13.5128009 + ], + [ + 52.3650455, + 13.5134935 + ], + [ + 52.3653961, + 13.5148039 + ] + ] + }, + { + "osmId": "1085279331", + "name": null, + "lengthMeters": 150.86258393105774, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3655896, + 13.5147271 + ], + [ + 52.3653674, + 13.5135974 + ], + [ + 52.3653247, + 13.5133804 + ], + [ + 52.3653047, + 13.5132829 + ], + [ + 52.3652681, + 13.513104 + ], + [ + 52.3651571, + 13.5126216 + ] + ] + }, + { + "osmId": "1087643699", + "name": null, + "lengthMeters": 108.76836224510595, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4534375, + 13.5098726 + ], + [ + 52.4534912, + 13.5099519 + ], + [ + 52.4535568, + 13.5100365 + ], + [ + 52.4535842, + 13.5100563 + ], + [ + 52.4536676, + 13.5101123 + ], + [ + 52.4536932, + 13.5101247 + ], + [ + 52.4537381, + 13.5101339 + ], + [ + 52.4537601, + 13.5101349 + ], + [ + 52.4538037, + 13.5101367 + ], + [ + 52.45382, + 13.5101335 + ], + [ + 52.45389, + 13.5101169 + ], + [ + 52.4539158, + 13.5101033 + ], + [ + 52.4539543, + 13.5100781 + ], + [ + 52.4539788, + 13.510058 + ], + [ + 52.4540113, + 13.5100312 + ], + [ + 52.4540693, + 13.509966 + ], + [ + 52.4541187, + 13.5098902 + ], + [ + 52.454128, + 13.5098757 + ], + [ + 52.454266, + 13.5096504 + ] + ] + }, + { + "osmId": "1091377090", + "name": null, + "lengthMeters": 303.71609677760125, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1555774, + 11.4448251 + ], + [ + 48.1555734, + 11.4448306 + ], + [ + 48.1550832, + 11.4455121 + ], + [ + 48.1547299, + 11.4459901 + ], + [ + 48.154395, + 11.4465105 + ], + [ + 48.1542643, + 11.4467373 + ], + [ + 48.1541348, + 11.446962 + ], + [ + 48.1539743, + 11.4472625 + ], + [ + 48.1537139, + 11.447802 + ] + ] + }, + { + "osmId": "1091714362", + "name": null, + "lengthMeters": 137.9006869073898, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15592, + 11.4444399 + ], + [ + 48.156794, + 11.4432282 + ], + [ + 48.1568295, + 11.4431761 + ] + ] + }, + { + "osmId": "1091714363", + "name": null, + "lengthMeters": 228.37959648431172, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1505475, + 11.4613988 + ], + [ + 48.150792, + 11.4605946 + ], + [ + 48.1509735, + 11.4599822 + ], + [ + 48.1512716, + 11.4589858 + ], + [ + 48.1513779, + 11.4585836 + ] + ] + }, + { + "osmId": "1091788628", + "name": null, + "lengthMeters": 432.6462668808772, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1526019, + 11.4532016 + ], + [ + 48.1529233, + 11.4515333 + ], + [ + 48.1530387, + 11.4509051 + ], + [ + 48.1532337, + 11.4499564 + ], + [ + 48.1533376, + 11.4493343 + ], + [ + 48.1533489, + 11.449241 + ], + [ + 48.1534287, + 11.4485845 + ], + [ + 48.1534407, + 11.4484861 + ], + [ + 48.153485, + 11.447966 + ], + [ + 48.1535024, + 11.447761 + ], + [ + 48.153508, + 11.4476185 + ], + [ + 48.1535103, + 11.4475608 + ], + [ + 48.1535109, + 11.4475444 + ] + ] + }, + { + "osmId": "1091937703", + "name": null, + "lengthMeters": 124.03986310760077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1546528, + 11.4443922 + ], + [ + 48.1543091, + 11.4449198 + ], + [ + 48.1541549, + 11.4452204 + ], + [ + 48.1540425, + 11.4455085 + ], + [ + 48.15398, + 11.4457095 + ] + ] + }, + { + "osmId": "1091937704", + "name": null, + "lengthMeters": 184.87808457388942, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1552856, + 11.4433439 + ], + [ + 48.1550936, + 11.4437055 + ], + [ + 48.1550113, + 11.4438663 + ], + [ + 48.1546379, + 11.444596 + ], + [ + 48.1544596, + 11.4449615 + ], + [ + 48.1542849, + 11.4453336 + ] + ] + }, + { + "osmId": "1092168457", + "name": null, + "lengthMeters": 244.24479481251973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6079376, + 10.0170706 + ], + [ + 53.6076336, + 10.016001 + ], + [ + 53.6074795, + 10.0154502 + ], + [ + 53.6070024, + 10.0137208 + ] + ] + }, + { + "osmId": "1092477288", + "name": null, + "lengthMeters": 560.045734905541, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1520527, + 11.4561912 + ], + [ + 48.1521349, + 11.455792 + ], + [ + 48.1522935, + 11.4550221 + ], + [ + 48.1526195, + 11.4533348 + ], + [ + 48.1529712, + 11.4515504 + ], + [ + 48.1532699, + 11.449978 + ], + [ + 48.1533863, + 11.4493017 + ], + [ + 48.153417, + 11.4490784 + ], + [ + 48.1534368, + 11.4489341 + ] + ] + }, + { + "osmId": "1092477289", + "name": null, + "lengthMeters": 561.7697922011006, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.152091, + 11.4562116 + ], + [ + 48.152172, + 11.4558074 + ], + [ + 48.1523319, + 11.4550098 + ], + [ + 48.1525708, + 11.4538003 + ], + [ + 48.1526587, + 11.4533551 + ], + [ + 48.1530209, + 11.4515056 + ], + [ + 48.1532238, + 11.4504388 + ], + [ + 48.1534258, + 11.4493647 + ], + [ + 48.1534891, + 11.4489357 + ] + ] + }, + { + "osmId": "1092477290", + "name": "Abstellbahn", + "lengthMeters": 494.86300907662206, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1500901, + 11.4630776 + ], + [ + 48.1502125, + 11.4627512 + ], + [ + 48.1504649, + 11.4619932 + ], + [ + 48.1506448, + 11.4613998 + ], + [ + 48.1506738, + 11.4613047 + ], + [ + 48.1507066, + 11.4611971 + ], + [ + 48.1510575, + 11.4600344 + ], + [ + 48.1514215, + 11.4588309 + ], + [ + 48.1516949, + 11.4579149 + ], + [ + 48.1517779, + 11.4575938 + ], + [ + 48.151912, + 11.4569978 + ] + ] + }, + { + "osmId": "1092592650", + "name": "S\u00fcdstormarnsche Kreisbahn", + "lengthMeters": 508.3147112934935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5298187, + 10.1217715 + ], + [ + 53.5295233, + 10.1224629 + ], + [ + 53.5288202, + 10.1241315 + ], + [ + 53.5287263, + 10.1243415 + ], + [ + 53.5285791, + 10.124671 + ], + [ + 53.528369, + 10.1252497 + ], + [ + 53.5280345, + 10.1265444 + ], + [ + 53.5279782, + 10.1267825 + ], + [ + 53.5275843, + 10.1283425 + ], + [ + 53.5275676, + 10.128415 + ] + ] + }, + { + "osmId": "1092720053", + "name": null, + "lengthMeters": 366.696034834892, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1514373, + 11.4498553 + ], + [ + 48.1512661, + 11.4491437 + ], + [ + 48.1510364, + 11.4482339 + ], + [ + 48.1509954, + 11.4480964 + ], + [ + 48.1509236, + 11.4478554 + ], + [ + 48.1508042, + 11.4474782 + ], + [ + 48.1506366, + 11.4470017 + ], + [ + 48.1505265, + 11.446726 + ], + [ + 48.1504131, + 11.4464531 + ], + [ + 48.1501567, + 11.4458953 + ], + [ + 48.1499431, + 11.445482 + ] + ] + }, + { + "osmId": "1092720056", + "name": null, + "lengthMeters": 347.1219478409492, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.15199, + 11.4515305 + ], + [ + 48.1519312, + 11.451272 + ], + [ + 48.1518148, + 11.4507962 + ], + [ + 48.1516146, + 11.4499827 + ], + [ + 48.151264, + 11.4486068 + ], + [ + 48.1510882, + 11.447903 + ], + [ + 48.1508649, + 11.4471678 + ] + ] + }, + { + "osmId": "1093247041", + "name": "Fernbahn", + "lengthMeters": 1202.7392485417558, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1456628, + 11.4900884 + ], + [ + 48.1456492, + 11.4895903 + ], + [ + 48.1456444, + 11.4891148 + ], + [ + 48.1456428, + 11.4887796 + ], + [ + 48.1456532, + 11.4882712 + ], + [ + 48.1456626, + 11.4879931 + ], + [ + 48.1456782, + 11.487684 + ], + [ + 48.145766, + 11.4863251 + ], + [ + 48.1459046, + 11.484428 + ], + [ + 48.1460326, + 11.4825824 + ], + [ + 48.146097, + 11.481659 + ], + [ + 48.1461641, + 11.4807088 + ], + [ + 48.1463183, + 11.478568 + ], + [ + 48.1463354, + 11.4783228 + ], + [ + 48.1465567, + 11.475334 + ], + [ + 48.1466577, + 11.4739578 + ] + ] + }, + { + "osmId": "1093247043", + "name": null, + "lengthMeters": 285.25449427929453, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1528797, + 11.4462062 + ], + [ + 48.1528841, + 11.4461587 + ], + [ + 48.1528913, + 11.446081 + ], + [ + 48.1531154, + 11.4436526 + ], + [ + 48.15316, + 11.4432073 + ], + [ + 48.153241, + 11.4423993 + ] + ] + }, + { + "osmId": "1093329643", + "name": null, + "lengthMeters": 380.2016939946224, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418875, + 11.5469874 + ], + [ + 48.1419041, + 11.5467807 + ], + [ + 48.1419755, + 11.5460925 + ], + [ + 48.1419891, + 11.5459281 + ], + [ + 48.1420052, + 11.5457499 + ], + [ + 48.1420474, + 11.5451912 + ], + [ + 48.1420674, + 11.5449261 + ], + [ + 48.1422571, + 11.542339 + ], + [ + 48.1422898, + 11.5418995 + ] + ] + }, + { + "osmId": "1093329644", + "name": null, + "lengthMeters": 380.4656400589187, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1422531, + 11.5418973 + ], + [ + 48.1420296, + 11.5449253 + ], + [ + 48.1420109, + 11.545174 + ], + [ + 48.1419685, + 11.5457471 + ], + [ + 48.1419538, + 11.5459254 + ], + [ + 48.1419387, + 11.5460907 + ], + [ + 48.1418624, + 11.5468309 + ], + [ + 48.1418473, + 11.5469881 + ] + ] + }, + { + "osmId": "1093329645", + "name": null, + "lengthMeters": 199.30919522787946, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1422382, + 11.5445092 + ], + [ + 48.1422296, + 11.5446278 + ], + [ + 48.1422004, + 11.544967 + ], + [ + 48.1421707, + 11.5453318 + ], + [ + 48.1420473, + 11.5467082 + ], + [ + 48.1420168, + 11.5470778 + ], + [ + 48.142016, + 11.5470903 + ], + [ + 48.142015, + 11.5471077 + ], + [ + 48.1420094, + 11.5471733 + ] + ] + }, + { + "osmId": "1093329650", + "name": null, + "lengthMeters": 398.535252920672, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1435009, + 11.5210793 + ], + [ + 48.1435185, + 11.5208772 + ], + [ + 48.1435691, + 11.520184 + ], + [ + 48.143585, + 11.5199441 + ], + [ + 48.1436032, + 11.5196459 + ], + [ + 48.1436135, + 11.5194844 + ], + [ + 48.1436261, + 11.5192124 + ], + [ + 48.1436293, + 11.5191392 + ], + [ + 48.1436339, + 11.5190139 + ], + [ + 48.1436386, + 11.5188852 + ], + [ + 48.143648, + 11.5184138 + ], + [ + 48.1436452, + 11.518058 + ], + [ + 48.1436412, + 11.5178819 + ], + [ + 48.1436337, + 11.5176865 + ], + [ + 48.1436122, + 11.5172853 + ], + [ + 48.1436012, + 11.5171091 + ], + [ + 48.143577, + 11.5167147 + ], + [ + 48.1435571, + 11.5163677 + ], + [ + 48.1435235, + 11.5157258 + ] + ] + }, + { + "osmId": "1093329651", + "name": null, + "lengthMeters": 940.324379561916, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433735, + 11.5210545 + ], + [ + 48.1433695, + 11.5211086 + ], + [ + 48.1433328, + 11.5216062 + ], + [ + 48.1432681, + 11.5224103 + ], + [ + 48.1432383, + 11.5227865 + ], + [ + 48.1429281, + 11.5270173 + ], + [ + 48.142871, + 11.5278168 + ], + [ + 48.1428363, + 11.5282493 + ], + [ + 48.1427475, + 11.5294996 + ], + [ + 48.142719, + 11.5299013 + ], + [ + 48.1426899, + 11.5307199 + ], + [ + 48.1426952, + 11.5310042 + ], + [ + 48.1427032, + 11.5314355 + ], + [ + 48.1427103, + 11.5318719 + ], + [ + 48.1427172, + 11.532297 + ], + [ + 48.1427171, + 11.5327303 + ], + [ + 48.1427116, + 11.5329435 + ], + [ + 48.1426734, + 11.5336603 + ], + [ + 48.142673, + 11.5336693 + ] + ] + }, + { + "osmId": "1093329652", + "name": null, + "lengthMeters": 333.73785857424883, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.145503, + 11.4937227 + ], + [ + 48.1454957, + 11.4937739 + ], + [ + 48.1453791, + 11.4945704 + ], + [ + 48.1452944, + 11.4951056 + ], + [ + 48.1450112, + 11.4968943 + ], + [ + 48.144907, + 11.4976874 + ], + [ + 48.1448559, + 11.4981142 + ] + ] + }, + { + "osmId": "1093329653", + "name": null, + "lengthMeters": 438.70659520066476, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1457855, + 11.4872758 + ], + [ + 48.1457876, + 11.4872419 + ], + [ + 48.1458467, + 11.4863338 + ], + [ + 48.1460044, + 11.4842193 + ], + [ + 48.1461751, + 11.4818224 + ], + [ + 48.1462053, + 11.4813964 + ] + ] + }, + { + "osmId": "1093424345", + "name": null, + "lengthMeters": 265.3945253498771, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1507425, + 11.4837348 + ], + [ + 48.1507161, + 11.4837555 + ], + [ + 48.1502427, + 11.4841279 + ], + [ + 48.1500348, + 11.4843023 + ], + [ + 48.1498328, + 11.4844881 + ], + [ + 48.1496315, + 11.4846912 + ], + [ + 48.1495017, + 11.4848251 + ], + [ + 48.1493281, + 11.4850381 + ], + [ + 48.1491539, + 11.4852636 + ], + [ + 48.1490056, + 11.4854867 + ], + [ + 48.1488122, + 11.4857947 + ] + ] + }, + { + "osmId": "1093667179", + "name": null, + "lengthMeters": 178.40159195097857, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1506805, + 11.4598512 + ], + [ + 48.150935, + 11.459005 + ], + [ + 48.1513399, + 11.4576589 + ] + ] + }, + { + "osmId": "1093667184", + "name": null, + "lengthMeters": 78.51300545579885, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1543761, + 11.4458956 + ], + [ + 48.15446, + 11.4455664 + ], + [ + 48.1546235, + 11.4449718 + ], + [ + 48.1546432, + 11.4449163 + ] + ] + }, + { + "osmId": "1093974758", + "name": null, + "lengthMeters": 93.97969704960312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1283154, + 11.6064412 + ], + [ + 48.1283607, + 11.6065096 + ], + [ + 48.1284697, + 11.6066744 + ], + [ + 48.1285595, + 11.6068078 + ], + [ + 48.1289106, + 11.6073402 + ] + ] + }, + { + "osmId": "1094635769", + "name": null, + "lengthMeters": 316.10741140411125, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.1466554, + 11.4720708 + ], + [ + 48.1466554, + 11.4723444 + ], + [ + 48.1466411, + 11.4725972 + ], + [ + 48.1466236, + 11.4728621 + ], + [ + 48.1465673, + 11.4736003 + ], + [ + 48.1465444, + 11.4740852 + ], + [ + 48.1464818, + 11.4750125 + ], + [ + 48.1463753, + 11.4763087 + ] + ] + }, + { + "osmId": "1095462046", + "name": null, + "lengthMeters": 896.611332478232, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2020287, + 11.5409067 + ], + [ + 48.2022429, + 11.5408099 + ], + [ + 48.2023958, + 11.5407415 + ], + [ + 48.2024882, + 11.5407 + ], + [ + 48.2026634, + 11.5406494 + ], + [ + 48.2028875, + 11.5405925 + ], + [ + 48.2030669, + 11.5405532 + ], + [ + 48.2034285, + 11.5405057 + ], + [ + 48.2037953, + 11.540516 + ], + [ + 48.2043831, + 11.5405416 + ], + [ + 48.2051119, + 11.5405966 + ], + [ + 48.2065018, + 11.5407015 + ], + [ + 48.2074394, + 11.5407639 + ], + [ + 48.2075281, + 11.5407746 + ], + [ + 48.2083899, + 11.5408785 + ], + [ + 48.2085144, + 11.5408935 + ], + [ + 48.2094593, + 11.5410136 + ], + [ + 48.2096877, + 11.541044 + ], + [ + 48.2098013, + 11.5410637 + ], + [ + 48.2100488, + 11.5410973 + ] + ] + }, + { + "osmId": "1095474587", + "name": null, + "lengthMeters": 887.7348693198568, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2100488, + 11.5410973 + ], + [ + 48.2105024, + 11.5411599 + ], + [ + 48.2107627, + 11.5411921 + ], + [ + 48.211345, + 11.5412486 + ], + [ + 48.2125728, + 11.5413394 + ], + [ + 48.2145206, + 11.5414613 + ], + [ + 48.2152625, + 11.5415023 + ], + [ + 48.2172349, + 11.5415929 + ], + [ + 48.2180234, + 11.5416291 + ] + ] + }, + { + "osmId": "1095495020", + "name": null, + "lengthMeters": 427.1874570642051, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416704, + 11.5427373 + ], + [ + 48.1416711, + 11.5427297 + ], + [ + 48.1416724, + 11.5427129 + ], + [ + 48.1420008, + 11.5383182 + ], + [ + 48.1420946, + 11.5370152 + ] + ] + }, + { + "osmId": "1095495022", + "name": null, + "lengthMeters": 426.56769936969897, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1420604, + 11.537014 + ], + [ + 48.1420179, + 11.5375947 + ], + [ + 48.1419621, + 11.5383369 + ], + [ + 48.141814, + 11.5403132 + ], + [ + 48.1416338, + 11.5427273 + ] + ] + }, + { + "osmId": "1095495025", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 694.8099609831879, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1433436, + 11.5162821 + ], + [ + 48.1433663, + 11.5168005 + ], + [ + 48.1433779, + 11.517067 + ], + [ + 48.1433891, + 11.5177647 + ], + [ + 48.1433755, + 11.518491 + ], + [ + 48.1433541, + 11.5190741 + ], + [ + 48.143305, + 11.5197938 + ], + [ + 48.1431673, + 11.5216163 + ], + [ + 48.1428803, + 11.5256049 + ] + ] + }, + { + "osmId": "1095495027", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 80.64586081807619, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1451383, + 11.4939635 + ], + [ + 48.1451352, + 11.4939931 + ], + [ + 48.1450325, + 11.4949731 + ], + [ + 48.1450254, + 11.4950372 + ] + ] + }, + { + "osmId": "1095585285", + "name": null, + "lengthMeters": 383.19036695501615, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1920291, + 11.540872 + ], + [ + 48.1918217, + 11.5408637 + ], + [ + 48.1906816, + 11.5408503 + ], + [ + 48.1904813, + 11.5408385 + ], + [ + 48.1902616, + 11.5407963 + ], + [ + 48.190017, + 11.5407106 + ], + [ + 48.189824, + 11.5406087 + ], + [ + 48.1895232, + 11.5403905 + ], + [ + 48.189431, + 11.5402975 + ], + [ + 48.1893461, + 11.5402057 + ], + [ + 48.1893362, + 11.5401942 + ], + [ + 48.1892563, + 11.5401007 + ], + [ + 48.1891331, + 11.5399396 + ], + [ + 48.1890005, + 11.5397334 + ], + [ + 48.188878, + 11.5394914 + ] + ] + }, + { + "osmId": "1097002716", + "name": null, + "lengthMeters": 95.13289523921787, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1578668, + 11.4806301 + ], + [ + 48.1586986, + 11.48033 + ] + ] + }, + { + "osmId": "1097002717", + "name": null, + "lengthMeters": 95.47231731429933, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1586896, + 11.4802742 + ], + [ + 48.1578555, + 11.4805795 + ] + ] + }, + { + "osmId": "1101562338", + "name": null, + "lengthMeters": 119.15811060228943, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1416059, + 11.5457896 + ], + [ + 48.1415214, + 11.5465916 + ], + [ + 48.1414691, + 11.5473817 + ] + ] + }, + { + "osmId": "1101562339", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 94.98431417073829, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417222, + 11.5457973 + ], + [ + 48.1417317, + 11.5456831 + ], + [ + 48.1417967, + 11.5449007 + ], + [ + 48.1418299, + 11.5445274 + ] + ] + }, + { + "osmId": "1104202533", + "name": null, + "lengthMeters": 80.27480699034918, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5386603, + 13.123445 + ], + [ + 52.5386962, + 13.123732 + ], + [ + 52.5387077, + 13.1238714 + ], + [ + 52.5387142, + 13.1240042 + ], + [ + 52.5387191, + 13.1241531 + ], + [ + 52.5387194, + 13.1243114 + ], + [ + 52.5387124, + 13.1246238 + ] + ] + }, + { + "osmId": "1104202571", + "name": null, + "lengthMeters": 83.95337841166288, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5355554, + 13.2569783 + ], + [ + 52.5356914, + 13.2570361 + ], + [ + 52.5358186, + 13.2570925 + ], + [ + 52.5359573, + 13.2571434 + ], + [ + 52.5361637, + 13.2571863 + ], + [ + 52.536295, + 13.2572172 + ] + ] + }, + { + "osmId": "1104202584", + "name": null, + "lengthMeters": 107.4463639849637, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5359115, + 13.2580862 + ], + [ + 52.5357826, + 13.2596606 + ] + ] + }, + { + "osmId": "1105104385", + "name": null, + "lengthMeters": 452.5749173150361, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4402805, + 13.5592474 + ], + [ + 52.4401299, + 13.5592716 + ], + [ + 52.4396492, + 13.5593145 + ], + [ + 52.4392241, + 13.5593923 + ], + [ + 52.438812, + 13.5594727 + ], + [ + 52.4383984, + 13.5596041 + ], + [ + 52.4379062, + 13.5598026 + ], + [ + 52.4375939, + 13.5599555 + ], + [ + 52.437029, + 13.5602997 + ], + [ + 52.4365358, + 13.5605435 + ], + [ + 52.4364322, + 13.5605997 + ], + [ + 52.4363219, + 13.5606452 + ] + ] + }, + { + "osmId": "1107214292", + "name": "Hafenbahn", + "lengthMeters": 242.32553110186655, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.472445, + 9.9148464 + ], + [ + 53.4725336, + 9.9150906 + ], + [ + 53.4726269, + 9.9153142 + ], + [ + 53.4727155, + 9.9155013 + ], + [ + 53.4728898, + 9.9158429 + ], + [ + 53.4729848, + 9.9159783 + ], + [ + 53.473129, + 9.9161836 + ], + [ + 53.4734328, + 9.9164957 + ], + [ + 53.4736258, + 9.9166891 + ], + [ + 53.4738394, + 9.9168567 + ], + [ + 53.4741253, + 9.9170412 + ] + ] + }, + { + "osmId": "1111056650", + "name": null, + "lengthMeters": 221.38612257277694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2048453, + 11.4667761 + ], + [ + 48.2048392, + 11.4667941 + ], + [ + 48.2045254, + 11.4677073 + ], + [ + 48.2044458, + 11.4679465 + ], + [ + 48.2039353, + 11.4694331 + ] + ] + }, + { + "osmId": "1112282943", + "name": null, + "lengthMeters": 348.3622237336689, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4446296, + 13.521746 + ], + [ + 52.4437351, + 13.5234264 + ], + [ + 52.4425703, + 13.5256194 + ] + ] + }, + { + "osmId": "1113146905", + "name": null, + "lengthMeters": 346.1056535160226, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4425099, + 13.5254742 + ], + [ + 52.4445787, + 13.5216589 + ] + ] + }, + { + "osmId": "1115652877", + "name": null, + "lengthMeters": 88.15186761811532, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4870078, + 13.4590492 + ], + [ + 52.4875006, + 13.4591706 + ], + [ + 52.4875233, + 13.4591762 + ], + [ + 52.4877918, + 13.4592423 + ] + ] + }, + { + "osmId": "1115652880", + "name": null, + "lengthMeters": 117.4233231234018, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4870174, + 13.4588839 + ], + [ + 52.4868909, + 13.4588777 + ], + [ + 52.4866914, + 13.4588622 + ], + [ + 52.4864935, + 13.458838 + ], + [ + 52.4862285, + 13.4587948 + ], + [ + 52.4859653, + 13.4587444 + ] + ] + }, + { + "osmId": "1116067498", + "name": null, + "lengthMeters": 96.30934908614152, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5043927, + 13.4481821 + ], + [ + 52.5042936, + 13.4481261 + ], + [ + 52.5042439, + 13.4480972 + ], + [ + 52.5041462, + 13.4480354 + ], + [ + 52.5040913, + 13.4479958 + ], + [ + 52.5036285, + 13.4476409 + ], + [ + 52.5035984, + 13.4476178 + ] + ] + }, + { + "osmId": "1116748108", + "name": null, + "lengthMeters": 748.1272524750685, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3765844, + 13.402329 + ], + [ + 52.3764275, + 13.4023943 + ], + [ + 52.3763636, + 13.4024225 + ], + [ + 52.3761501, + 13.402511 + ], + [ + 52.3745306, + 13.4030962 + ], + [ + 52.3728635, + 13.4036994 + ], + [ + 52.3711808, + 13.4043054 + ], + [ + 52.3700166, + 13.4047181 + ] + ] + }, + { + "osmId": "1117408699", + "name": "Stettiner Bahn", + "lengthMeters": 94.13484391693397, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6725542, + 13.5824982 + ], + [ + 52.6726284, + 13.5827931 + ], + [ + 52.6728768, + 13.583789 + ] + ] + }, + { + "osmId": "1117408700", + "name": "Stettiner Bahn", + "lengthMeters": 180.1528380142872, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6729219, + 13.5837912 + ], + [ + 52.6725227, + 13.5821766 + ], + [ + 52.6723069, + 13.5813193 + ] + ] + }, + { + "osmId": "1120562275", + "name": null, + "lengthMeters": 238.73612977184234, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4822856, + 9.9955744 + ], + [ + 53.4823937, + 9.9961598 + ], + [ + 53.482462, + 9.9965334 + ], + [ + 53.4825011, + 9.9968237 + ], + [ + 53.4826419, + 9.9979542 + ], + [ + 53.4826753, + 9.9983253 + ], + [ + 53.4826918, + 9.9984967 + ], + [ + 53.4827441, + 9.9990929 + ] + ] + }, + { + "osmId": "1121648969", + "name": null, + "lengthMeters": 89.43021162382576, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3857509, + 13.3971691 + ], + [ + 52.3858295, + 13.3971272 + ], + [ + 52.3863415, + 13.3968533 + ], + [ + 52.3865158, + 13.3967619 + ] + ] + }, + { + "osmId": "1121981093", + "name": "Dresdner Bahn", + "lengthMeters": 746.3766235657044, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3700118, + 13.4048458 + ], + [ + 52.3715355, + 13.4043381 + ], + [ + 52.3730707, + 13.4038108 + ], + [ + 52.3733553, + 13.4037081 + ], + [ + 52.3752512, + 13.4030239 + ], + [ + 52.3761657, + 13.4026726 + ], + [ + 52.3765225, + 13.4025229 + ], + [ + 52.3765694, + 13.4025033 + ] + ] + }, + { + "osmId": "1121981095", + "name": "Dresdner Bahn", + "lengthMeters": 274.11699176898725, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3698666, + 13.4048314 + ], + [ + 52.3693633, + 13.4050061 + ], + [ + 52.3675858, + 13.4056233 + ], + [ + 52.367455, + 13.4056687 + ] + ] + }, + { + "osmId": "1121981310", + "name": "Dresdner Bahn", + "lengthMeters": 170.56240176919772, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3656933, + 13.4063451 + ], + [ + 52.3661779, + 13.4061809 + ], + [ + 52.3671954, + 13.4058362 + ] + ] + }, + { + "osmId": "1121981313", + "name": "Dresdner Bahn", + "lengthMeters": 171.80560250659525, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3672003, + 13.4057507 + ], + [ + 52.3661693, + 13.4061042 + ], + [ + 52.365688, + 13.4062692 + ] + ] + }, + { + "osmId": "1121981315", + "name": null, + "lengthMeters": 171.00690546148778, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3672029, + 13.4056524 + ], + [ + 52.3656983, + 13.4061737 + ] + ] + }, + { + "osmId": "1121981959", + "name": null, + "lengthMeters": 318.43687586031905, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3908853, + 13.3942078 + ], + [ + 52.3901828, + 13.3946779 + ], + [ + 52.3901228, + 13.3947174 + ], + [ + 52.3898516, + 13.3948762 + ], + [ + 52.3897111, + 13.3949579 + ], + [ + 52.3891129, + 13.3953032 + ], + [ + 52.388963, + 13.3953795 + ], + [ + 52.3881806, + 13.3957355 + ] + ] + }, + { + "osmId": "1122294474", + "name": null, + "lengthMeters": 278.58422144201705, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.386832, + 13.3965935 + ], + [ + 52.3877735, + 13.3961045 + ], + [ + 52.3879483, + 13.3960103 + ], + [ + 52.3879933, + 13.395986 + ], + [ + 52.3892174, + 13.3953385 + ] + ] + }, + { + "osmId": "1122294475", + "name": null, + "lengthMeters": 156.9897765178908, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3881806, + 13.3957355 + ], + [ + 52.3881579, + 13.3957438 + ], + [ + 52.3879018, + 13.3958709 + ], + [ + 52.3875512, + 13.3960298 + ], + [ + 52.3872248, + 13.3961974 + ], + [ + 52.3870271, + 13.3963007 + ], + [ + 52.3869252, + 13.3963582 + ], + [ + 52.3868303, + 13.3964093 + ] + ] + }, + { + "osmId": "1122294734", + "name": "Dresdner Bahn", + "lengthMeters": 1047.6152350893053, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3413677, + 13.4147245 + ], + [ + 52.341768, + 13.4145923 + ], + [ + 52.3418262, + 13.4145729 + ], + [ + 52.3447865, + 13.413561 + ], + [ + 52.3448349, + 13.4135449 + ], + [ + 52.3483036, + 13.4123272 + ], + [ + 52.349448, + 13.4119584 + ], + [ + 52.3505913, + 13.411582 + ] + ] + }, + { + "osmId": "1122294735", + "name": "Dresdner Bahn", + "lengthMeters": 1098.9052758768762, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3505792, + 13.4115298 + ], + [ + 52.3494399, + 13.4119061 + ], + [ + 52.3483036, + 13.4122843 + ], + [ + 52.3448291, + 13.41351 + ], + [ + 52.3447841, + 13.4135248 + ], + [ + 52.3418178, + 13.4145126 + ], + [ + 52.3417583, + 13.414532 + ], + [ + 52.3413564, + 13.4146579 + ], + [ + 52.3409005, + 13.4147974 + ] + ] + }, + { + "osmId": "1123962913", + "name": null, + "lengthMeters": 149.4415474370303, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5287288, + 10.0188729 + ], + [ + 53.5279874, + 10.0181877 + ], + [ + 53.5275544, + 10.0177737 + ] + ] + }, + { + "osmId": "1123962914", + "name": null, + "lengthMeters": 814.2006151476106, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5131359, + 10.0089485 + ], + [ + 53.512449, + 10.0086997 + ], + [ + 53.5116765, + 10.0084822 + ], + [ + 53.5111922, + 10.0084042 + ], + [ + 53.5107035, + 10.0083424 + ], + [ + 53.5099961, + 10.0083262 + ], + [ + 53.5099107, + 10.0083302 + ], + [ + 53.5091125, + 10.0083664 + ], + [ + 53.5079192, + 10.0083895 + ], + [ + 53.5071568, + 10.0083952 + ], + [ + 53.5069366, + 10.0083969 + ], + [ + 53.5058454, + 10.0083107 + ] + ] + }, + { + "osmId": "1123962916", + "name": "DB Wanne-Eickel \u2013 Hamburg", + "lengthMeters": 915.5916142585622, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5049468, + 10.0081329 + ], + [ + 53.5058324, + 10.0081873 + ], + [ + 53.5059668, + 10.0081951 + ], + [ + 53.5069734, + 10.0082536 + ], + [ + 53.5088565, + 10.0082386 + ], + [ + 53.5091141, + 10.0082371 + ], + [ + 53.5098368, + 10.008209 + ], + [ + 53.5099972, + 10.0082076 + ], + [ + 53.5100224, + 10.0082088 + ], + [ + 53.5107425, + 10.0082391 + ], + [ + 53.5111933, + 10.0083073 + ], + [ + 53.5116694, + 10.0083881 + ], + [ + 53.5124568, + 10.0086246 + ], + [ + 53.5131462, + 10.0088781 + ] + ] + }, + { + "osmId": "1125072789", + "name": "Ostbahn", + "lengthMeters": 83.08614063005169, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5035893, + 13.4691817 + ], + [ + 52.5036334, + 13.4689508 + ], + [ + 52.5037305, + 13.4684355 + ], + [ + 52.5037736, + 13.4682228 + ], + [ + 52.5038173, + 13.4680128 + ] + ] + }, + { + "osmId": "1125072790", + "name": "Ostbahn", + "lengthMeters": 79.48111826722386, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5045277, + 13.4646615 + ], + [ + 52.5045542, + 13.4644116 + ], + [ + 52.5045728, + 13.4641401 + ], + [ + 52.5045859, + 13.4637286 + ], + [ + 52.5046018, + 13.4634947 + ] + ] + }, + { + "osmId": "1125519819", + "name": null, + "lengthMeters": 108.72973603253416, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.508106, + 13.4932357 + ], + [ + 52.5086736, + 13.4945439 + ] + ] + }, + { + "osmId": "1125740556", + "name": null, + "lengthMeters": 86.98103385222907, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5063012, + 13.4723842 + ], + [ + 52.5064851, + 13.4727296 + ], + [ + 52.50659, + 13.4729726 + ], + [ + 52.5067197, + 13.4733082 + ], + [ + 52.506755, + 13.4734081 + ], + [ + 52.5067595, + 13.4734215 + ] + ] + }, + { + "osmId": "1125949323", + "name": "Berliner Ringbahn", + "lengthMeters": 96.57996052454843, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5157595, + 13.4744603 + ], + [ + 52.5157996, + 13.4744377 + ], + [ + 52.5165812, + 13.4739978 + ] + ] + }, + { + "osmId": "1125949324", + "name": "Berliner Ringbahn", + "lengthMeters": 96.26396087516935, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165671, + 13.4739347 + ], + [ + 52.5157878, + 13.4743744 + ], + [ + 52.5157483, + 13.4743967 + ] + ] + }, + { + "osmId": "1125949325", + "name": null, + "lengthMeters": 466.6519084421092, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5198264, + 13.4712413 + ], + [ + 52.5196991, + 13.4713291 + ], + [ + 52.5184853, + 13.4721882 + ], + [ + 52.5170817, + 13.4731759 + ], + [ + 52.5165277, + 13.4735638 + ], + [ + 52.5162434, + 13.4737473 + ], + [ + 52.5160748, + 13.4738472 + ], + [ + 52.516016, + 13.4738812 + ], + [ + 52.5159583, + 13.4739137 + ] + ] + }, + { + "osmId": "1125949329", + "name": null, + "lengthMeters": 130.90802883191958, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5133714, + 13.4752187 + ], + [ + 52.5122451, + 13.4754926 + ], + [ + 52.5122068, + 13.4755019 + ] + ] + }, + { + "osmId": "1127456785", + "name": null, + "lengthMeters": 495.62736923827305, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.530987, + 13.3647183 + ], + [ + 52.5312364, + 13.3644538 + ], + [ + 52.5314877, + 13.364203 + ], + [ + 52.5316009, + 13.3640961 + ], + [ + 52.531823, + 13.3638865 + ], + [ + 52.5321562, + 13.3635625 + ], + [ + 52.5328106, + 13.3629156 + ], + [ + 52.5339068, + 13.3617955 + ], + [ + 52.534309, + 13.3613845 + ], + [ + 52.5347922, + 13.3609036 + ] + ] + }, + { + "osmId": "1127456786", + "name": null, + "lengthMeters": 535.5286864563635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348246, + 13.360565 + ], + [ + 52.5342275, + 13.3611373 + ], + [ + 52.5334301, + 13.3619526 + ], + [ + 52.5327124, + 13.3627028 + ], + [ + 52.5320945, + 13.3633457 + ], + [ + 52.5318238, + 13.3636464 + ], + [ + 52.531547, + 13.3639651 + ], + [ + 52.5313171, + 13.3642298 + ], + [ + 52.5307798, + 13.3648565 + ] + ] + }, + { + "osmId": "1128099775", + "name": null, + "lengthMeters": 91.71524618031022, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4596222, + 13.3609468 + ], + [ + 52.4591773, + 13.3605739 + ], + [ + 52.4590199, + 13.3604465 + ], + [ + 52.458885, + 13.3603398 + ] + ] + }, + { + "osmId": "1128466663", + "name": null, + "lengthMeters": 777.948449029965, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4175928, + 13.5893025 + ], + [ + 52.4184757, + 13.5890184 + ], + [ + 52.4191381, + 13.5888 + ], + [ + 52.4202557, + 13.58843 + ], + [ + 52.4212349, + 13.5881302 + ], + [ + 52.4218815, + 13.5879086 + ], + [ + 52.422081, + 13.5878376 + ], + [ + 52.4221479, + 13.5878138 + ], + [ + 52.4221643, + 13.5878061 + ], + [ + 52.4225101, + 13.5876433 + ], + [ + 52.4244071, + 13.5867446 + ] + ] + }, + { + "osmId": "1128466664", + "name": null, + "lengthMeters": 385.2425212981291, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4342813, + 13.5829274 + ], + [ + 52.4344857, + 13.5828681 + ], + [ + 52.4349104, + 13.5827457 + ], + [ + 52.4350129, + 13.5827239 + ], + [ + 52.4352609, + 13.5826864 + ], + [ + 52.4360551, + 13.5825589 + ], + [ + 52.43718, + 13.5823783 + ], + [ + 52.4373383, + 13.5823495 + ], + [ + 52.4377218, + 13.5822799 + ] + ] + }, + { + "osmId": "1131536868", + "name": "Dresdner Bahn", + "lengthMeters": 274.28450680660745, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3674546, + 13.4057477 + ], + [ + 52.3675908, + 13.4056996 + ], + [ + 52.3693655, + 13.405073 + ], + [ + 52.3698659, + 13.4048963 + ] + ] + }, + { + "osmId": "1131551364", + "name": "Dresdner Bahn", + "lengthMeters": 1310.0931783772744, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.414408, + 13.380656 + ], + [ + 52.4169198, + 13.3791495 + ], + [ + 52.4173417, + 13.378891 + ], + [ + 52.4181536, + 13.3784297 + ], + [ + 52.419406, + 13.3777564 + ], + [ + 52.4212249, + 13.3767326 + ], + [ + 52.4239331, + 13.375145 + ], + [ + 52.4242364, + 13.3749555 + ], + [ + 52.4244412, + 13.3748406 + ], + [ + 52.4246459, + 13.37471 + ], + [ + 52.4249507, + 13.374514 + ], + [ + 52.4249626, + 13.3745063 + ], + [ + 52.4255023, + 13.3741593 + ] + ] + }, + { + "osmId": "1131551365", + "name": "Dresdner Bahn", + "lengthMeters": 1375.4287256795153, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3984846, + 13.3898171 + ], + [ + 52.396916, + 13.3907381 + ], + [ + 52.3947438, + 13.392047 + ], + [ + 52.3933137, + 13.3928871 + ], + [ + 52.3901674, + 13.3948882 + ], + [ + 52.3898361, + 13.395094 + ], + [ + 52.3894939, + 13.3952986 + ], + [ + 52.3868519, + 13.3966955 + ] + ] + }, + { + "osmId": "1132283688", + "name": null, + "lengthMeters": 633.1858622304729, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4949582, + 13.4950867 + ], + [ + 52.4949668, + 13.4950613 + ], + [ + 52.4953671, + 13.4938862 + ], + [ + 52.4956756, + 13.4930255 + ], + [ + 52.4958146, + 13.4926464 + ], + [ + 52.4962255, + 13.4915453 + ], + [ + 52.4967327, + 13.4902128 + ], + [ + 52.4970899, + 13.4892742 + ], + [ + 52.4977115, + 13.4876763 + ], + [ + 52.4979366, + 13.4871173 + ] + ] + }, + { + "osmId": "1132283689", + "name": null, + "lengthMeters": 90.48049045786894, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4918996, + 13.5023178 + ], + [ + 52.4919015, + 13.5023088 + ], + [ + 52.4920327, + 13.5016875 + ], + [ + 52.4921788, + 13.5010627 + ] + ] + }, + { + "osmId": "1132987700", + "name": null, + "lengthMeters": 96.5978749761809, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.472259, + 9.9613079 + ], + [ + 53.472307, + 9.9610611 + ], + [ + 53.472453, + 9.9603109 + ], + [ + 53.4725289, + 9.9599206 + ] + ] + }, + { + "osmId": "1134444721", + "name": null, + "lengthMeters": 83.46718466738169, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4189038, + 13.1757059 + ], + [ + 52.419378, + 13.17666 + ] + ] + }, + { + "osmId": "1140813850", + "name": null, + "lengthMeters": 152.19784707406, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4119056, + 13.5752095 + ], + [ + 52.4120973, + 13.5749547 + ], + [ + 52.4124385, + 13.5744993 + ], + [ + 52.4127066, + 13.5741487 + ], + [ + 52.4127472, + 13.5740939 + ], + [ + 52.4128369, + 13.5739784 + ], + [ + 52.4129704, + 13.5737996 + ] + ] + }, + { + "osmId": "1143761802", + "name": null, + "lengthMeters": 157.23937573486282, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3599156, + 13.4080062 + ], + [ + 52.359714, + 13.4081007 + ], + [ + 52.3593274, + 13.4083033 + ], + [ + 52.3592175, + 13.40836 + ], + [ + 52.3585622, + 13.4086767 + ] + ] + }, + { + "osmId": "1145089832", + "name": null, + "lengthMeters": 109.24529476126753, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120898, + 13.4730813 + ], + [ + 52.5119329, + 13.4746749 + ] + ] + }, + { + "osmId": "1149095981", + "name": null, + "lengthMeters": 155.67964098990151, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1460414, + 11.4932475 + ], + [ + 48.1460553, + 11.4931047 + ], + [ + 48.146067, + 11.4929675 + ], + [ + 48.1460754, + 11.4928482 + ], + [ + 48.1460836, + 11.49271 + ], + [ + 48.1460896, + 11.4925759 + ], + [ + 48.1460933, + 11.4924014 + ], + [ + 48.1460922, + 11.4921756 + ], + [ + 48.1460858, + 11.4919209 + ], + [ + 48.1460712, + 11.4916976 + ], + [ + 48.146052, + 11.491499 + ], + [ + 48.1460346, + 11.491362 + ], + [ + 48.1460096, + 11.4911627 + ] + ] + }, + { + "osmId": "1149198443", + "name": null, + "lengthMeters": 115.14437597974619, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4540881, + 13.5098805 + ], + [ + 52.4540522, + 13.5099349 + ], + [ + 52.4540162, + 13.5099768 + ], + [ + 52.4539722, + 13.5100163 + ], + [ + 52.4539512, + 13.5100352 + ], + [ + 52.4538923, + 13.5100656 + ], + [ + 52.4538539, + 13.5100771 + ], + [ + 52.4537948, + 13.5100861 + ], + [ + 52.4537665, + 13.5100895 + ], + [ + 52.4536959, + 13.5100748 + ], + [ + 52.4536051, + 13.5100215 + ], + [ + 52.4535932, + 13.5100122 + ], + [ + 52.4535533, + 13.5099745 + ], + [ + 52.4535051, + 13.5099128 + ], + [ + 52.4534557, + 13.5098373 + ], + [ + 52.4532251, + 13.5094628 + ] + ] + }, + { + "osmId": "1149198446", + "name": null, + "lengthMeters": 90.01903180561006, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4538446, + 13.5092599 + ], + [ + 52.4537985, + 13.5093299 + ], + [ + 52.4537593, + 13.5094091 + ], + [ + 52.453729, + 13.5095159 + ], + [ + 52.4537189, + 13.509608 + ], + [ + 52.4537267, + 13.5097369 + ], + [ + 52.4537591, + 13.5098402 + ], + [ + 52.4538098, + 13.5099303 + ], + [ + 52.453885, + 13.5099874 + ], + [ + 52.4539687, + 13.5099955 + ], + [ + 52.4540162, + 13.5099768 + ], + [ + 52.4540511, + 13.509956 + ], + [ + 52.4541187, + 13.5098902 + ] + ] + }, + { + "osmId": "1149198447", + "name": null, + "lengthMeters": 112.67973657326856, + "maxSpeedKph": 15.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4549282, + 13.5085926 + ], + [ + 52.4549388, + 13.5085767 + ], + [ + 52.4550088, + 13.5084966 + ], + [ + 52.4550005, + 13.5085012 + ], + [ + 52.4550476, + 13.5084533 + ], + [ + 52.455097, + 13.5083668 + ], + [ + 52.4551262, + 13.5082618 + ], + [ + 52.455136, + 13.5081835 + ], + [ + 52.4551335, + 13.5080979 + ], + [ + 52.4551161, + 13.5080049 + ], + [ + 52.4550919, + 13.5079322 + ], + [ + 52.4550689, + 13.5078898 + ], + [ + 52.4550308, + 13.5078419 + ], + [ + 52.4549908, + 13.5078063 + ], + [ + 52.4549567, + 13.5077907 + ], + [ + 52.4549254, + 13.5077852 + ], + [ + 52.4548834, + 13.5077915 + ], + [ + 52.454844, + 13.5078047 + ], + [ + 52.4548145, + 13.5078239 + ], + [ + 52.4547819, + 13.5078561 + ], + [ + 52.4547513, + 13.507899 + ], + [ + 52.4547384, + 13.5079199 + ], + [ + 52.4546988, + 13.5080332 + ], + [ + 52.4546926, + 13.5080483 + ] + ] + }, + { + "osmId": "1154986481", + "name": null, + "lengthMeters": 396.14951511209705, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4746847, + 13.4565262 + ], + [ + 52.4752243, + 13.4566361 + ], + [ + 52.4754741, + 13.4566869 + ], + [ + 52.4770095, + 13.4569963 + ], + [ + 52.4782207, + 13.4572404 + ] + ] + }, + { + "osmId": "1154986482", + "name": null, + "lengthMeters": 84.34133449931676, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4746538, + 13.4564603 + ], + [ + 52.4746509, + 13.4564595 + ], + [ + 52.4744851, + 13.456416 + ], + [ + 52.4742348, + 13.4563339 + ], + [ + 52.4739131, + 13.4561965 + ] + ] + }, + { + "osmId": "1154993712", + "name": null, + "lengthMeters": 202.11376483606216, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4717916, + 13.3695237 + ], + [ + 52.4717881, + 13.3695349 + ], + [ + 52.4716911, + 13.3698503 + ], + [ + 52.4716123, + 13.3701611 + ], + [ + 52.4715407, + 13.3704769 + ], + [ + 52.4714995, + 13.3707003 + ], + [ + 52.4714655, + 13.370914 + ], + [ + 52.4714431, + 13.3710845 + ], + [ + 52.4714262, + 13.3712429 + ], + [ + 52.471411, + 13.3714218 + ], + [ + 52.4713941, + 13.3717593 + ], + [ + 52.4713877, + 13.3723948 + ] + ] + }, + { + "osmId": "1154999742", + "name": null, + "lengthMeters": 135.13985717295395, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793091, + 13.360046 + ], + [ + 52.4794218, + 13.3596825 + ], + [ + 52.4794894, + 13.359446 + ], + [ + 52.4795565, + 13.3591909 + ], + [ + 52.4796231, + 13.3589178 + ], + [ + 52.4796738, + 13.3586903 + ], + [ + 52.4796837, + 13.358645 + ], + [ + 52.4797297, + 13.3584126 + ], + [ + 52.4797677, + 13.3582021 + ] + ] + }, + { + "osmId": "1155777189", + "name": null, + "lengthMeters": 328.93737392066924, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.468818, + 13.4391511 + ], + [ + 52.4687187, + 13.438495 + ], + [ + 52.4686747, + 13.4382086 + ], + [ + 52.4685157, + 13.4371691 + ], + [ + 52.4682389, + 13.4353403 + ], + [ + 52.4682295, + 13.4352782 + ], + [ + 52.4681027, + 13.4344393 + ] + ] + }, + { + "osmId": "1155777190", + "name": null, + "lengthMeters": 141.41198250443205, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4696388, + 13.4449078 + ], + [ + 52.4699419, + 13.4469305 + ], + [ + 52.4699426, + 13.446935 + ] + ] + }, + { + "osmId": "1155801227", + "name": null, + "lengthMeters": 302.94698188716035, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5306616, + 13.3007197 + ], + [ + 52.5306602, + 13.3007093 + ], + [ + 52.5306555, + 13.3006742 + ], + [ + 52.5304644, + 13.2992617 + ], + [ + 52.5304055, + 13.2988347 + ], + [ + 52.5303702, + 13.298579 + ], + [ + 52.5303295, + 13.2983159 + ], + [ + 52.5303106, + 13.2981943 + ], + [ + 52.5302652, + 13.2979082 + ], + [ + 52.5301249, + 13.2971521 + ], + [ + 52.5299757, + 13.2963888 + ] + ] + }, + { + "osmId": "1155801228", + "name": null, + "lengthMeters": 367.5963822230486, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5305156, + 13.3006031 + ], + [ + 52.5305172, + 13.3006153 + ], + [ + 52.5307841, + 13.3026458 + ], + [ + 52.530907, + 13.3037661 + ], + [ + 52.5310091, + 13.3046571 + ], + [ + 52.5311721, + 13.3059286 + ] + ] + }, + { + "osmId": "1155801229", + "name": null, + "lengthMeters": 177.58173452912865, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5084581, + 13.2839179 + ], + [ + 52.5084534, + 13.2839137 + ], + [ + 52.5084413, + 13.2839036 + ], + [ + 52.5083528, + 13.2838271 + ], + [ + 52.5081705, + 13.283674 + ], + [ + 52.5080194, + 13.283561 + ], + [ + 52.5076797, + 13.2833164 + ], + [ + 52.5074343, + 13.2831406 + ], + [ + 52.5073154, + 13.2830565 + ], + [ + 52.5072941, + 13.283042 + ], + [ + 52.507137, + 13.2829421 + ], + [ + 52.5069977, + 13.282861 + ] + ] + }, + { + "osmId": "1155801230", + "name": null, + "lengthMeters": 494.1094682169225, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5069761, + 13.2828486 + ], + [ + 52.5066793, + 13.2827062 + ], + [ + 52.5064079, + 13.2825937 + ], + [ + 52.506124, + 13.2825337 + ], + [ + 52.5057245, + 13.2824757 + ], + [ + 52.5051826, + 13.2824191 + ], + [ + 52.5051706, + 13.2824183 + ], + [ + 52.5046554, + 13.2823666 + ], + [ + 52.5041489, + 13.282321 + ], + [ + 52.5038343, + 13.2823159 + ], + [ + 52.5035151, + 13.2823336 + ], + [ + 52.5034398, + 13.2823412 + ], + [ + 52.5033894, + 13.2823473 + ], + [ + 52.5030773, + 13.2824037 + ], + [ + 52.5027916, + 13.2824694 + ], + [ + 52.5025701, + 13.2825461 + ] + ] + }, + { + "osmId": "1155804298", + "name": null, + "lengthMeters": 80.69980438514342, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5364769, + 13.3453927 + ], + [ + 52.5364688, + 13.3453315 + ], + [ + 52.536467, + 13.3453184 + ], + [ + 52.5363528, + 13.3444564 + ], + [ + 52.5363235, + 13.3442265 + ] + ] + }, + { + "osmId": "1155829919", + "name": null, + "lengthMeters": 254.31452514730728, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5287843, + 13.4553807 + ], + [ + 52.5281702, + 13.4560029 + ], + [ + 52.5275787, + 13.4566286 + ], + [ + 52.5268733, + 13.4573921 + ], + [ + 52.5268585, + 13.4574081 + ] + ] + }, + { + "osmId": "1155847955", + "name": null, + "lengthMeters": 222.83789349718643, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5179972, + 13.472592 + ], + [ + 52.5184818, + 13.4722483 + ], + [ + 52.5197148, + 13.4713791 + ], + [ + 52.5198404, + 13.4712997 + ] + ] + }, + { + "osmId": "1155847957", + "name": null, + "lengthMeters": 125.18784781843898, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5229525, + 13.468111 + ], + [ + 52.5229636, + 13.468081 + ], + [ + 52.5230485, + 13.4678432 + ], + [ + 52.5231251, + 13.4676112 + ], + [ + 52.523187, + 13.4674127 + ], + [ + 52.5232451, + 13.467209 + ], + [ + 52.5233113, + 13.4669617 + ], + [ + 52.5233893, + 13.466631 + ], + [ + 52.5234342, + 13.4664422 + ] + ] + }, + { + "osmId": "1155847958", + "name": null, + "lengthMeters": 194.2593131296609, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5253088, + 13.4598596 + ], + [ + 52.5253052, + 13.459869 + ], + [ + 52.5252344, + 13.4600592 + ], + [ + 52.5251827, + 13.4602089 + ], + [ + 52.5249571, + 13.4608611 + ], + [ + 52.5246572, + 13.4617583 + ], + [ + 52.5244771, + 13.4622996 + ], + [ + 52.5244554, + 13.4623648 + ] + ] + }, + { + "osmId": "1156003279", + "name": null, + "lengthMeters": 76.41554176726736, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5492804, + 13.3948923 + ], + [ + 52.5493309, + 13.3952189 + ], + [ + 52.5493593, + 13.3953748 + ], + [ + 52.5494029, + 13.3955813 + ], + [ + 52.5494475, + 13.3957695 + ], + [ + 52.5495002, + 13.3959606 + ] + ] + }, + { + "osmId": "1156008190", + "name": null, + "lengthMeters": 171.1520027898608, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127208, + 13.5018129 + ], + [ + 52.5127182, + 13.5018065 + ], + [ + 52.512576, + 13.501457 + ], + [ + 52.5124253, + 13.5011184 + ], + [ + 52.5118173, + 13.4997658 + ] + ] + }, + { + "osmId": "1156054906", + "name": null, + "lengthMeters": 151.32516214481853, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5247489, + 9.9283479 + ], + [ + 53.5247894, + 9.928397 + ], + [ + 53.5258152, + 9.9295988 + ], + [ + 53.5258667, + 9.9296535 + ] + ] + }, + { + "osmId": "1156264160", + "name": null, + "lengthMeters": 102.02009998301324, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5066471, + 13.4895488 + ], + [ + 52.5064204, + 13.4888604 + ], + [ + 52.5062321, + 13.4883114 + ], + [ + 52.5062076, + 13.4882259 + ] + ] + }, + { + "osmId": "1156264161", + "name": null, + "lengthMeters": 273.5365027834738, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5088228, + 13.4949777 + ], + [ + 52.5097466, + 13.4966721 + ], + [ + 52.5098626, + 13.49689 + ], + [ + 52.5104627, + 13.4979904 + ] + ] + }, + { + "osmId": "1156264162", + "name": null, + "lengthMeters": 92.73718213549539, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5077643, + 13.4773327 + ], + [ + 52.5077584, + 13.4773398 + ], + [ + 52.5076636, + 13.4774552 + ], + [ + 52.5075856, + 13.4775588 + ], + [ + 52.5075134, + 13.4776611 + ], + [ + 52.5073929, + 13.4778449 + ], + [ + 52.5073283, + 13.4779516 + ], + [ + 52.5072529, + 13.4780872 + ], + [ + 52.5071795, + 13.4782239 + ], + [ + 52.5071577, + 13.4782674 + ] + ] + }, + { + "osmId": "1156466191", + "name": "Heidekrautbahn", + "lengthMeters": 344.7521781764594, + "maxSpeedKph": 50.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5834895, + 13.3596017 + ], + [ + 52.5832272, + 13.3598481 + ], + [ + 52.5830133, + 13.3601017 + ], + [ + 52.5828243, + 13.36037 + ], + [ + 52.5813228, + 13.3632051 + ] + ] + }, + { + "osmId": "1158221695", + "name": null, + "lengthMeters": 150.6654555591233, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4292039, + 13.1924325 + ], + [ + 52.4305364, + 13.1928355 + ] + ] + }, + { + "osmId": "1158221700", + "name": null, + "lengthMeters": 164.06963109725916, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4256902, + 13.1893714 + ], + [ + 52.425875, + 13.1897363 + ], + [ + 52.4259302, + 13.1898356 + ], + [ + 52.4261032, + 13.1901362 + ], + [ + 52.4261458, + 13.1902078 + ], + [ + 52.42622, + 13.1903266 + ], + [ + 52.4262954, + 13.1904412 + ], + [ + 52.4264433, + 13.1906551 + ], + [ + 52.4264592, + 13.190678 + ], + [ + 52.4265454, + 13.1907906 + ], + [ + 52.4266493, + 13.1909231 + ], + [ + 52.4267488, + 13.1910461 + ] + ] + }, + { + "osmId": "1158221703", + "name": null, + "lengthMeters": 167.0571903176842, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4268066, + 13.1910245 + ], + [ + 52.4267666, + 13.1909762 + ], + [ + 52.4266738, + 13.1908629 + ], + [ + 52.4264907, + 13.1906235 + ], + [ + 52.4263505, + 13.1904261 + ], + [ + 52.4261361, + 13.1900881 + ], + [ + 52.4259661, + 13.1897873 + ], + [ + 52.4257977, + 13.1894737 + ], + [ + 52.4257252, + 13.1893257 + ] + ] + }, + { + "osmId": "1158221704", + "name": null, + "lengthMeters": 279.5344167036011, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4252125, + 13.1880489 + ], + [ + 52.4253628, + 13.1883325 + ], + [ + 52.4255205, + 13.1886138 + ], + [ + 52.4257212, + 13.1889555 + ], + [ + 52.4263153, + 13.1899552 + ], + [ + 52.4264509, + 13.1901779 + ], + [ + 52.4265841, + 13.190393 + ], + [ + 52.4266828, + 13.1905437 + ], + [ + 52.4267829, + 13.1906869 + ], + [ + 52.4268843, + 13.1908275 + ], + [ + 52.4269887, + 13.1909598 + ] + ] + }, + { + "osmId": "1158221706", + "name": null, + "lengthMeters": 170.77566441135366, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4270376, + 13.1914638 + ], + [ + 52.4271816, + 13.1916035 + ], + [ + 52.4273198, + 13.1917262 + ], + [ + 52.427413, + 13.1918073 + ], + [ + 52.4275138, + 13.1918869 + ], + [ + 52.4276547, + 13.1919924 + ], + [ + 52.4278139, + 13.1921004 + ], + [ + 52.4280237, + 13.1922271 + ], + [ + 52.4282403, + 13.1923415 + ], + [ + 52.4284486, + 13.1924332 + ] + ] + }, + { + "osmId": "1160552164", + "name": "Niederelbebahn", + "lengthMeters": 117.73420808421824, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4747176, + 9.838937 + ], + [ + 53.4747809, + 9.8371612 + ] + ] + }, + { + "osmId": "1163020012", + "name": null, + "lengthMeters": 80.8979356639707, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565103, + 13.5640532 + ], + [ + 52.4564999, + 13.5641933 + ], + [ + 52.4564752, + 13.5643766 + ], + [ + 52.4564484, + 13.5645211 + ], + [ + 52.4564205, + 13.56463 + ], + [ + 52.4563853, + 13.564744 + ], + [ + 52.4563494, + 13.5648436 + ], + [ + 52.4563126, + 13.5649302 + ], + [ + 52.4562202, + 13.5651249 + ] + ] + }, + { + "osmId": "1163020013", + "name": null, + "lengthMeters": 919.9931990234272, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4571421, + 13.5470435 + ], + [ + 52.4571298, + 13.5476516 + ], + [ + 52.4571141, + 13.5479681 + ], + [ + 52.4570956, + 13.5481886 + ], + [ + 52.4570694, + 13.5483908 + ], + [ + 52.4570308, + 13.5486189 + ], + [ + 52.4569884, + 13.5488236 + ], + [ + 52.4569351, + 13.5490268 + ], + [ + 52.4568524, + 13.5493112 + ], + [ + 52.4567504, + 13.5496278 + ], + [ + 52.4566616, + 13.5498927 + ], + [ + 52.4563907, + 13.550718 + ], + [ + 52.4563401, + 13.5508824 + ], + [ + 52.456271, + 13.5511254 + ], + [ + 52.4562426, + 13.5512467 + ], + [ + 52.4562203, + 13.5513587 + ], + [ + 52.4561741, + 13.5515907 + ], + [ + 52.4561377, + 13.5518399 + ], + [ + 52.4561009, + 13.5520847 + ], + [ + 52.456069, + 13.5523292 + ], + [ + 52.4560351, + 13.5525813 + ], + [ + 52.4559982, + 13.5528527 + ], + [ + 52.45586, + 13.5538439 + ], + [ + 52.4557791, + 13.5544416 + ], + [ + 52.4557523, + 13.5546644 + ], + [ + 52.4557338, + 13.5548179 + ], + [ + 52.455703, + 13.5551338 + ], + [ + 52.4556816, + 13.5554516 + ], + [ + 52.4556683, + 13.555767 + ], + [ + 52.4556646, + 13.5560884 + ], + [ + 52.4556771, + 13.5567264 + ], + [ + 52.4556845, + 13.5570916 + ], + [ + 52.455701, + 13.5573343 + ], + [ + 52.4557141, + 13.557487 + ], + [ + 52.4557348, + 13.5576605 + ], + [ + 52.4557999, + 13.5580687 + ], + [ + 52.4558287, + 13.5582382 + ], + [ + 52.4558468, + 13.5583446 + ], + [ + 52.4558662, + 13.5584703 + ], + [ + 52.4559817, + 13.559221 + ], + [ + 52.4560135, + 13.5594344 + ], + [ + 52.456114, + 13.5601099 + ] + ] + }, + { + "osmId": "1163020014", + "name": null, + "lengthMeters": 713.5017759146782, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4574013, + 13.5366281 + ], + [ + 52.4575013, + 13.5378024 + ], + [ + 52.4575197, + 13.5380325 + ], + [ + 52.4575482, + 13.5383881 + ], + [ + 52.4575816, + 13.5388411 + ], + [ + 52.4575862, + 13.5389315 + ], + [ + 52.4575967, + 13.5391392 + ], + [ + 52.4575977, + 13.5395005 + ], + [ + 52.4575986, + 13.5399712 + ], + [ + 52.4575995, + 13.5404315 + ], + [ + 52.4576, + 13.5406828 + ], + [ + 52.4576004, + 13.5408565 + ], + [ + 52.4576011, + 13.5411305 + ], + [ + 52.4576021, + 13.5415807 + ], + [ + 52.4575995, + 13.5420298 + ], + [ + 52.4575988, + 13.5421529 + ], + [ + 52.457597, + 13.5424779 + ], + [ + 52.4575956, + 13.5427398 + ], + [ + 52.4575959, + 13.5428611 + ], + [ + 52.4575971, + 13.5430271 + ], + [ + 52.4575972, + 13.5431303 + ], + [ + 52.4575924, + 13.5432371 + ], + [ + 52.4575864, + 13.5433297 + ], + [ + 52.4575849, + 13.5433543 + ], + [ + 52.4575775, + 13.5434112 + ], + [ + 52.4575752, + 13.5434317 + ], + [ + 52.4575665, + 13.5434914 + ], + [ + 52.4575598, + 13.5435376 + ], + [ + 52.4574526, + 13.5441231 + ], + [ + 52.4573592, + 13.5446294 + ], + [ + 52.4572825, + 13.5450464 + ], + [ + 52.4572584, + 13.5451846 + ], + [ + 52.4572547, + 13.5452043 + ], + [ + 52.4572446, + 13.5452708 + ], + [ + 52.4572155, + 13.5454774 + ], + [ + 52.4571882, + 13.5457055 + ], + [ + 52.4571722, + 13.5459042 + ], + [ + 52.457163, + 13.5460729 + ], + [ + 52.4571526, + 13.546359 + ], + [ + 52.4571481, + 13.5466391 + ], + [ + 52.4571421, + 13.5470435 + ] + ] + }, + { + "osmId": "1163020016", + "name": null, + "lengthMeters": 485.6737806295175, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4620763, + 13.5155211 + ], + [ + 52.4617936, + 13.5167587 + ], + [ + 52.4617861, + 13.5167918 + ], + [ + 52.4617159, + 13.5171007 + ], + [ + 52.4614723, + 13.5181727 + ], + [ + 52.4614027, + 13.5184792 + ], + [ + 52.4612581, + 13.5191155 + ], + [ + 52.4612363, + 13.5192115 + ], + [ + 52.461214, + 13.5193097 + ], + [ + 52.4611141, + 13.5197491 + ], + [ + 52.4609913, + 13.5202896 + ], + [ + 52.4609826, + 13.5203294 + ], + [ + 52.4609767, + 13.5203568 + ], + [ + 52.460886, + 13.5207757 + ], + [ + 52.4608548, + 13.5209094 + ], + [ + 52.4608444, + 13.5209466 + ], + [ + 52.4608159, + 13.5210483 + ], + [ + 52.4608002, + 13.5211046 + ], + [ + 52.4607798, + 13.5211607 + ], + [ + 52.4607681, + 13.5211929 + ], + [ + 52.4607286, + 13.5212775 + ], + [ + 52.4606567, + 13.5214427 + ], + [ + 52.4603763, + 13.5220874 + ] + ] + }, + { + "osmId": "1163081910", + "name": null, + "lengthMeters": 322.441829710842, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5124539, + 13.576588 + ], + [ + 52.5124503, + 13.57709 + ], + [ + 52.5124402, + 13.5776324 + ], + [ + 52.5124257, + 13.5781162 + ], + [ + 52.5124036, + 13.5786676 + ], + [ + 52.5123416, + 13.5797514 + ], + [ + 52.5123107, + 13.5804926 + ], + [ + 52.5122834, + 13.581343 + ] + ] + }, + { + "osmId": "1163081911", + "name": "Ostbahn", + "lengthMeters": 946.6104291801108, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.512189, + 13.5830974 + ], + [ + 52.5121857, + 13.5832282 + ], + [ + 52.512163, + 13.584117 + ], + [ + 52.5121389, + 13.5852361 + ], + [ + 52.5120903, + 13.5874285 + ], + [ + 52.5120422, + 13.5896279 + ], + [ + 52.511982, + 13.5918291 + ], + [ + 52.5118761, + 13.5945722 + ], + [ + 52.5117755, + 13.5970678 + ] + ] + }, + { + "osmId": "1163081912", + "name": null, + "lengthMeters": 561.5212475142375, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122255, + 13.5850899 + ], + [ + 52.5122398, + 13.5844552 + ], + [ + 52.5122811, + 13.5825894 + ], + [ + 52.5122961, + 13.5821487 + ], + [ + 52.512321, + 13.5816669 + ], + [ + 52.5123705, + 13.5810509 + ], + [ + 52.5124382, + 13.5804244 + ], + [ + 52.5125302, + 13.579617 + ], + [ + 52.5126189, + 13.5788344 + ], + [ + 52.5126619, + 13.5783481 + ], + [ + 52.5126963, + 13.5778604 + ], + [ + 52.5127208, + 13.5773501 + ], + [ + 52.5127358, + 13.5768495 + ] + ] + }, + { + "osmId": "1163081913", + "name": null, + "lengthMeters": 160.21336211253944, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122834, + 13.581343 + ], + [ + 52.512279, + 13.5814931 + ], + [ + 52.5122606, + 13.5820844 + ], + [ + 52.5122565, + 13.5822316 + ], + [ + 52.5122259, + 13.5832333 + ], + [ + 52.5122152, + 13.5837078 + ] + ] + }, + { + "osmId": "1163081914", + "name": null, + "lengthMeters": 102.27971534569022, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118251, + 13.6064219 + ], + [ + 52.5118884, + 13.6079297 + ] + ] + }, + { + "osmId": "1163081915", + "name": null, + "lengthMeters": 151.4059912999977, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5120148, + 13.6092214 + ], + [ + 52.5119933, + 13.6089621 + ], + [ + 52.511982, + 13.6088047 + ], + [ + 52.5119679, + 13.6086135 + ], + [ + 52.5119458, + 13.6082155 + ], + [ + 52.5119111, + 13.6073839 + ], + [ + 52.5118938, + 13.6069936 + ] + ] + }, + { + "osmId": "1163081916", + "name": null, + "lengthMeters": 87.5537512317091, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5118884, + 13.6079297 + ], + [ + 52.5119215, + 13.6087055 + ], + [ + 52.5119354, + 13.608951 + ], + [ + 52.5119372, + 13.6089787 + ], + [ + 52.5119544, + 13.6092187 + ] + ] + }, + { + "osmId": "1163081918", + "name": null, + "lengthMeters": 96.9611239278918, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122611, + 13.6125377 + ], + [ + 52.5122667, + 13.6125966 + ], + [ + 52.5123272, + 13.613234 + ], + [ + 52.5123595, + 13.6135961 + ], + [ + 52.5124059, + 13.6139501 + ] + ] + }, + { + "osmId": "1163476989", + "name": "Siemensbahn", + "lengthMeters": 132.88408262332433, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5458429, + 13.2510324 + ], + [ + 52.5455788, + 13.2514067 + ], + [ + 52.5454508, + 13.2515958 + ], + [ + 52.5449544, + 13.2523463 + ] + ] + }, + { + "osmId": "1163476990", + "name": "Siemensbahn", + "lengthMeters": 129.07990896114384, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5413926, + 13.2591638 + ], + [ + 52.5406182, + 13.2605857 + ] + ] + }, + { + "osmId": "1163848034", + "name": null, + "lengthMeters": 185.3014188998681, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3585622, + 13.4086767 + ], + [ + 52.3591898, + 13.4084494 + ], + [ + 52.359823, + 13.4082279 + ], + [ + 52.3599357, + 13.4081876 + ], + [ + 52.3601202, + 13.4081252 + ], + [ + 52.3601911, + 13.4081008 + ] + ] + }, + { + "osmId": "1164628142", + "name": null, + "lengthMeters": 1063.282266908985, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5234866, + 13.3595572 + ], + [ + 52.5234817, + 13.3594478 + ], + [ + 52.52348, + 13.3593861 + ], + [ + 52.5234796, + 13.3593473 + ], + [ + 52.5234837, + 13.3591443 + ], + [ + 52.5234983, + 13.3589689 + ], + [ + 52.5236109, + 13.3575777 + ], + [ + 52.5236159, + 13.3575122 + ], + [ + 52.5236281, + 13.3574304 + ], + [ + 52.5236379, + 13.3573875 + ], + [ + 52.523651, + 13.3573449 + ], + [ + 52.5236696, + 13.3572966 + ], + [ + 52.5237043, + 13.3572249 + ], + [ + 52.5237492, + 13.3571703 + ], + [ + 52.5237793, + 13.3571508 + ], + [ + 52.5238017, + 13.3571366 + ], + [ + 52.5238152, + 13.3571293 + ], + [ + 52.5238315, + 13.3571245 + ], + [ + 52.5238555, + 13.3571173 + ], + [ + 52.5239043, + 13.3571146 + ], + [ + 52.5239541, + 13.3571246 + ], + [ + 52.5241809, + 13.3571924 + ], + [ + 52.524245, + 13.3572064 + ], + [ + 52.5243098, + 13.3572125 + ], + [ + 52.5243727, + 13.3572138 + ], + [ + 52.5244343, + 13.3572038 + ], + [ + 52.5245024, + 13.3571897 + ], + [ + 52.524564, + 13.3571689 + ], + [ + 52.5246285, + 13.3571394 + ], + [ + 52.5246884, + 13.3571045 + ], + [ + 52.5247439, + 13.3570676 + ], + [ + 52.5247993, + 13.3570255 + ], + [ + 52.5248512, + 13.3569871 + ], + [ + 52.5254323, + 13.356498 + ], + [ + 52.5255201, + 13.3564242 + ], + [ + 52.5255464, + 13.356402 + ], + [ + 52.5255799, + 13.3563736 + ], + [ + 52.5260009, + 13.3560209 + ], + [ + 52.5264567, + 13.3556335 + ], + [ + 52.5265484, + 13.3555555 + ], + [ + 52.5265875, + 13.3555173 + ], + [ + 52.5266211, + 13.3554724 + ], + [ + 52.5266634, + 13.3553926 + ], + [ + 52.5266742, + 13.3553655 + ], + [ + 52.5266862, + 13.3553332 + ], + [ + 52.5266952, + 13.3552954 + ], + [ + 52.5267022, + 13.3552578 + ], + [ + 52.5267075, + 13.3552082 + ], + [ + 52.5267072, + 13.3551041 + ], + [ + 52.5267034, + 13.3550298 + ], + [ + 52.5266928, + 13.3548756 + ], + [ + 52.5266508, + 13.3543511 + ], + [ + 52.5266228, + 13.3540113 + ], + [ + 52.5265741, + 13.3535667 + ], + [ + 52.5265288, + 13.3531094 + ], + [ + 52.5264368, + 13.3518886 + ], + [ + 52.5264242, + 13.3517236 + ], + [ + 52.5264082, + 13.3515055 + ], + [ + 52.5263403, + 13.3506002 + ], + [ + 52.5263068, + 13.3500785 + ], + [ + 52.5262894, + 13.3497534 + ], + [ + 52.5262867, + 13.3496947 + ], + [ + 52.5262644, + 13.349027 + ], + [ + 52.5262575, + 13.3486039 + ], + [ + 52.5262473, + 13.347922 + ], + [ + 52.5262519, + 13.34747 + ] + ] + }, + { + "osmId": "1164639322", + "name": null, + "lengthMeters": 1005.060793738869, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5589811, + 13.4929728 + ], + [ + 52.5588963, + 13.4927315 + ], + [ + 52.5581522, + 13.4906933 + ], + [ + 52.5579662, + 13.4901786 + ], + [ + 52.5578994, + 13.4899938 + ], + [ + 52.5578383, + 13.4898233 + ], + [ + 52.557479, + 13.4888218 + ], + [ + 52.5573358, + 13.4884209 + ], + [ + 52.5572627, + 13.4882223 + ], + [ + 52.5571873, + 13.488025 + ], + [ + 52.5571179, + 13.4878628 + ], + [ + 52.5570432, + 13.4877018 + ], + [ + 52.5566718, + 13.4869834 + ], + [ + 52.5566042, + 13.4868512 + ], + [ + 52.556539, + 13.486726 + ], + [ + 52.5564703, + 13.4865996 + ], + [ + 52.5563331, + 13.4863743 + ], + [ + 52.5560512, + 13.4859209 + ], + [ + 52.5556882, + 13.485337 + ], + [ + 52.5555235, + 13.4850442 + ], + [ + 52.5554182, + 13.4848449 + ], + [ + 52.5553179, + 13.4846314 + ], + [ + 52.5551968, + 13.4843543 + ], + [ + 52.5550748, + 13.4840332 + ], + [ + 52.5548797, + 13.4834801 + ], + [ + 52.5548128, + 13.4832883 + ], + [ + 52.5547552, + 13.483123 + ], + [ + 52.5547091, + 13.482987 + ], + [ + 52.5544234, + 13.4821862 + ], + [ + 52.554182, + 13.4814916 + ], + [ + 52.5540537, + 13.4811493 + ], + [ + 52.5538915, + 13.4807717 + ] + ] + }, + { + "osmId": "1164639323", + "name": null, + "lengthMeters": 695.0773244510889, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5589511, + 13.4929971 + ], + [ + 52.5594895, + 13.4944924 + ], + [ + 52.5595128, + 13.494558 + ], + [ + 52.5595985, + 13.4947985 + ], + [ + 52.5596523, + 13.4949498 + ], + [ + 52.559939, + 13.4957441 + ], + [ + 52.5601222, + 13.4962566 + ], + [ + 52.560483, + 13.4972659 + ], + [ + 52.5606139, + 13.497651 + ], + [ + 52.560745, + 13.4980416 + ], + [ + 52.560991, + 13.4987745 + ], + [ + 52.5611306, + 13.4991748 + ], + [ + 52.5613788, + 13.4999139 + ], + [ + 52.5614554, + 13.5001313 + ], + [ + 52.5614862, + 13.5002241 + ], + [ + 52.5615059, + 13.5002836 + ], + [ + 52.5615633, + 13.5004859 + ], + [ + 52.5615804, + 13.50054 + ], + [ + 52.5616201, + 13.500666 + ], + [ + 52.5616835, + 13.5008525 + ], + [ + 52.5620665, + 13.5019094 + ] + ] + }, + { + "osmId": "1164671256", + "name": null, + "lengthMeters": 402.838143880569, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5723695, + 13.494867 + ], + [ + 52.5722989, + 13.4949258 + ], + [ + 52.5722283, + 13.4949871 + ], + [ + 52.5721598, + 13.4950522 + ], + [ + 52.5720949, + 13.4951191 + ], + [ + 52.5720314, + 13.4951893 + ], + [ + 52.5719689, + 13.4952603 + ], + [ + 52.570836, + 13.4965598 + ], + [ + 52.5708132, + 13.4965857 + ], + [ + 52.5703215, + 13.4971498 + ], + [ + 52.5702636, + 13.4972168 + ], + [ + 52.5702305, + 13.4972549 + ], + [ + 52.570195, + 13.4972955 + ], + [ + 52.5696773, + 13.497887 + ], + [ + 52.5693773, + 13.4982228 + ] + ] + }, + { + "osmId": "1164671258", + "name": null, + "lengthMeters": 87.3993331356167, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5638604, + 13.5067492 + ], + [ + 52.5637034, + 13.5063449 + ], + [ + 52.5634987, + 13.5058203 + ], + [ + 52.5634375, + 13.5056593 + ] + ] + }, + { + "osmId": "1164671259", + "name": null, + "lengthMeters": 228.23379141348843, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5631462, + 13.5047797 + ], + [ + 52.563138, + 13.5047566 + ], + [ + 52.5627532, + 13.5037009 + ], + [ + 52.5625421, + 13.5031176 + ], + [ + 52.5620937, + 13.5018809 + ] + ] + }, + { + "osmId": "1164671260", + "name": null, + "lengthMeters": 227.90960230556203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5620665, + 13.5019094 + ], + [ + 52.5625142, + 13.5031448 + ], + [ + 52.5631102, + 13.5047814 + ], + [ + 52.5631182, + 13.5048034 + ] + ] + }, + { + "osmId": "1164671261", + "name": null, + "lengthMeters": 153.29316505389406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5646633, + 13.5036304 + ], + [ + 52.5643126, + 13.5040316 + ], + [ + 52.5639128, + 13.5044746 + ], + [ + 52.5635967, + 13.5048469 + ], + [ + 52.5635301, + 13.5049217 + ] + ] + }, + { + "osmId": "1164671262", + "name": null, + "lengthMeters": 152.5079917880529, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5635502, + 13.5049605 + ], + [ + 52.5638559, + 13.5046117 + ], + [ + 52.5639342, + 13.5045186 + ], + [ + 52.564314, + 13.5040992 + ], + [ + 52.564679, + 13.5036791 + ] + ] + }, + { + "osmId": "1164709459", + "name": null, + "lengthMeters": 368.80232543490666, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5698506, + 13.5265911 + ], + [ + 52.5697945, + 13.5266132 + ], + [ + 52.5697292, + 13.5266286 + ], + [ + 52.569689, + 13.5266302 + ], + [ + 52.5696355, + 13.5266215 + ], + [ + 52.5696166, + 13.5266137 + ], + [ + 52.5695963, + 13.526605 + ], + [ + 52.569554, + 13.5265839 + ], + [ + 52.5695484, + 13.5265754 + ], + [ + 52.5695133, + 13.5265467 + ], + [ + 52.5694859, + 13.5265198 + ], + [ + 52.5694509, + 13.5264665 + ], + [ + 52.5694069, + 13.5263883 + ], + [ + 52.5693746, + 13.5262968 + ], + [ + 52.5693595, + 13.5262407 + ], + [ + 52.5693472, + 13.5261737 + ], + [ + 52.5693325, + 13.5260597 + ], + [ + 52.5692194, + 13.5251581 + ], + [ + 52.5691947, + 13.5249666 + ], + [ + 52.5690294, + 13.5236673 + ], + [ + 52.5689057, + 13.5226831 + ], + [ + 52.5688035, + 13.5218576 + ] + ] + }, + { + "osmId": "1164709460", + "name": null, + "lengthMeters": 436.6785676041068, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5687725, + 13.5218687 + ], + [ + 52.5688764, + 13.5226935 + ], + [ + 52.5689976, + 13.5236805 + ], + [ + 52.5691647, + 13.524976 + ], + [ + 52.5692786, + 13.5258916 + ], + [ + 52.5693103, + 13.5261445 + ], + [ + 52.5693251, + 13.5262325 + ], + [ + 52.5693441, + 13.5263069 + ], + [ + 52.5693795, + 13.5264058 + ], + [ + 52.5694023, + 13.5264558 + ], + [ + 52.5694268, + 13.526503 + ], + [ + 52.5694486, + 13.5265371 + ], + [ + 52.5694898, + 13.5265965 + ], + [ + 52.5694973, + 13.5266101 + ], + [ + 52.5695166, + 13.5266262 + ], + [ + 52.5695442, + 13.526653 + ], + [ + 52.5695707, + 13.5266781 + ], + [ + 52.5696024, + 13.5266936 + ], + [ + 52.5696293, + 13.5267085 + ], + [ + 52.5696806, + 13.5267356 + ], + [ + 52.5697256, + 13.5267612 + ], + [ + 52.5697762, + 13.5267969 + ], + [ + 52.5698229, + 13.5268436 + ], + [ + 52.5698677, + 13.5268991 + ], + [ + 52.5698969, + 13.5269449 + ], + [ + 52.5699281, + 13.5270069 + ], + [ + 52.5699535, + 13.5270772 + ], + [ + 52.5699732, + 13.5271474 + ], + [ + 52.5699903, + 13.5272186 + ], + [ + 52.5700049, + 13.5273063 + ], + [ + 52.5700498, + 13.5276714 + ] + ] + }, + { + "osmId": "1165055646", + "name": null, + "lengthMeters": 77.46346153888868, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565768, + 13.6253916 + ], + [ + 52.4564132, + 13.6253712 + ], + [ + 52.4558818, + 13.6253132 + ] + ] + }, + { + "osmId": "1165055647", + "name": null, + "lengthMeters": 320.5306688791794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4558818, + 13.6253132 + ], + [ + 52.4550452, + 13.6252219 + ], + [ + 52.4538898, + 13.6250797 + ], + [ + 52.4530067, + 13.6249726 + ] + ] + }, + { + "osmId": "1171296143", + "name": null, + "lengthMeters": 908.5506711960608, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023814, + 13.5211147 + ], + [ + 52.502447, + 13.5210835 + ], + [ + 52.5025049, + 13.5210599 + ], + [ + 52.5026896, + 13.5209979 + ], + [ + 52.5035032, + 13.5207384 + ], + [ + 52.5038035, + 13.5206477 + ], + [ + 52.5039115, + 13.5206117 + ], + [ + 52.5040374, + 13.5205706 + ], + [ + 52.504125, + 13.5205386 + ], + [ + 52.5042394, + 13.5204923 + ], + [ + 52.5043509, + 13.5204397 + ], + [ + 52.5044069, + 13.5204127 + ], + [ + 52.5046057, + 13.5203087 + ], + [ + 52.5050474, + 13.5200813 + ], + [ + 52.505405, + 13.5199187 + ], + [ + 52.5055187, + 13.5198784 + ], + [ + 52.5056038, + 13.5198488 + ], + [ + 52.505693, + 13.5198203 + ], + [ + 52.5058109, + 13.5197883 + ], + [ + 52.5058228, + 13.5197851 + ], + [ + 52.505974, + 13.5197487 + ], + [ + 52.5063997, + 13.5196642 + ], + [ + 52.5069673, + 13.5195472 + ], + [ + 52.5075007, + 13.5194403 + ], + [ + 52.5079121, + 13.5193598 + ], + [ + 52.508049, + 13.5193234 + ], + [ + 52.5081684, + 13.5192854 + ], + [ + 52.5082878, + 13.5192414 + ], + [ + 52.5084111, + 13.5191899 + ], + [ + 52.5085403, + 13.5191361 + ], + [ + 52.5086169, + 13.519107 + ], + [ + 52.5086924, + 13.5190832 + ], + [ + 52.5087866, + 13.5190558 + ], + [ + 52.5088866, + 13.5190332 + ], + [ + 52.509094, + 13.519002 + ], + [ + 52.5092895, + 13.518982 + ], + [ + 52.5093541, + 13.5189792 + ], + [ + 52.5093614, + 13.5189789 + ], + [ + 52.5095197, + 13.5189715 + ], + [ + 52.509645, + 13.5189624 + ], + [ + 52.5096581, + 13.5189626 + ], + [ + 52.5097856, + 13.5189733 + ], + [ + 52.5099924, + 13.5189803 + ], + [ + 52.5104157, + 13.5189913 + ] + ] + }, + { + "osmId": "1171296144", + "name": null, + "lengthMeters": 1533.8369066875327, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5023736, + 13.5210718 + ], + [ + 52.5021418, + 13.5211845 + ], + [ + 52.5020726, + 13.5212174 + ], + [ + 52.5019894, + 13.5212527 + ], + [ + 52.5018257, + 13.5213158 + ], + [ + 52.5014554, + 13.5214371 + ], + [ + 52.5011959, + 13.5215279 + ], + [ + 52.5011288, + 13.5215494 + ], + [ + 52.5010388, + 13.5215793 + ], + [ + 52.5009492, + 13.5216092 + ], + [ + 52.5005867, + 13.52173 + ], + [ + 52.5002831, + 13.5218298 + ], + [ + 52.5001281, + 13.5219061 + ], + [ + 52.4996316, + 13.5222088 + ], + [ + 52.4993453, + 13.5223895 + ], + [ + 52.4987687, + 13.5227554 + ], + [ + 52.4978384, + 13.5233421 + ], + [ + 52.4977297, + 13.523404 + ], + [ + 52.4976275, + 13.5234632 + ], + [ + 52.4975343, + 13.5235085 + ], + [ + 52.4974449, + 13.5235526 + ], + [ + 52.4972738, + 13.5236447 + ], + [ + 52.4970869, + 13.523755 + ], + [ + 52.4968441, + 13.5239118 + ], + [ + 52.4964388, + 13.5241639 + ], + [ + 52.4960175, + 13.5244343 + ], + [ + 52.4958624, + 13.5245306 + ], + [ + 52.4952083, + 13.5249413 + ], + [ + 52.4948645, + 13.5251601 + ], + [ + 52.4947701, + 13.5252241 + ], + [ + 52.494675, + 13.5252918 + ], + [ + 52.4944873, + 13.5254333 + ], + [ + 52.4944209, + 13.5254869 + ], + [ + 52.4942861, + 13.5255916 + ], + [ + 52.4941505, + 13.5256859 + ], + [ + 52.4936186, + 13.5260285 + ], + [ + 52.493579, + 13.526054 + ], + [ + 52.493555, + 13.5260695 + ], + [ + 52.4935216, + 13.526091 + ], + [ + 52.4934632, + 13.5261287 + ], + [ + 52.4931231, + 13.5263463 + ], + [ + 52.493018, + 13.526408 + ], + [ + 52.4929123, + 13.5264678 + ], + [ + 52.4928318, + 13.5265134 + ], + [ + 52.4926048, + 13.5266401 + ], + [ + 52.4924266, + 13.5267521 + ], + [ + 52.4921909, + 13.5269015 + ], + [ + 52.4921379, + 13.526935 + ], + [ + 52.4920935, + 13.5269631 + ], + [ + 52.4920491, + 13.5269914 + ], + [ + 52.4915967, + 13.5272795 + ], + [ + 52.4909673, + 13.5276832 + ], + [ + 52.4908478, + 13.5277548 + ], + [ + 52.4907249, + 13.527814 + ], + [ + 52.4906328, + 13.5278524 + ], + [ + 52.4905387, + 13.5278829 + ], + [ + 52.4904622, + 13.527906 + ], + [ + 52.4903822, + 13.5279236 + ], + [ + 52.4902766, + 13.5279384 + ], + [ + 52.4902065, + 13.5279454 + ], + [ + 52.4901311, + 13.5279473 + ], + [ + 52.4900658, + 13.527947 + ], + [ + 52.4900009, + 13.5279411 + ], + [ + 52.4899132, + 13.5279257 + ], + [ + 52.4898008, + 13.5278957 + ], + [ + 52.4895749, + 13.5278284 + ], + [ + 52.4894957, + 13.5278049 + ], + [ + 52.4893225, + 13.5277524 + ] + ] + }, + { + "osmId": "1171440005", + "name": null, + "lengthMeters": 535.3244461031971, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4777633, + 13.5242056 + ], + [ + 52.4776991, + 13.5241632 + ], + [ + 52.4775468, + 13.524038 + ], + [ + 52.4774404, + 13.5239313 + ], + [ + 52.4774037, + 13.5238928 + ], + [ + 52.4769473, + 13.5233991 + ], + [ + 52.4768693, + 13.5233178 + ], + [ + 52.4766901, + 13.5230971 + ], + [ + 52.4765668, + 13.5229454 + ], + [ + 52.4762348, + 13.5225866 + ], + [ + 52.475923, + 13.5222544 + ], + [ + 52.4757308, + 13.5220481 + ], + [ + 52.4750831, + 13.521371 + ], + [ + 52.4747653, + 13.5210345 + ], + [ + 52.4744626, + 13.5206902 + ], + [ + 52.4742956, + 13.5205045 + ], + [ + 52.4739371, + 13.5201087 + ], + [ + 52.4737348, + 13.5198886 + ] + ] + }, + { + "osmId": "1171440006", + "name": null, + "lengthMeters": 465.6209025312467, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4737348, + 13.5198886 + ], + [ + 52.4733299, + 13.5194651 + ], + [ + 52.4728864, + 13.5190021 + ], + [ + 52.4724764, + 13.5185699 + ], + [ + 52.4720818, + 13.5181878 + ], + [ + 52.4718715, + 13.5179775 + ], + [ + 52.4713839, + 13.517462 + ], + [ + 52.4713192, + 13.5173944 + ], + [ + 52.4710397, + 13.517095 + ], + [ + 52.4709069, + 13.5169533 + ], + [ + 52.4708071, + 13.5168477 + ], + [ + 52.4707358, + 13.5167705 + ], + [ + 52.470202, + 13.5161993 + ] + ] + }, + { + "osmId": "1171658313", + "name": null, + "lengthMeters": 584.7104031892691, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4893225, + 13.5277524 + ], + [ + 52.4891466, + 13.5276994 + ], + [ + 52.4887847, + 13.5275855 + ], + [ + 52.4882652, + 13.5274221 + ], + [ + 52.4876345, + 13.5272189 + ], + [ + 52.4871625, + 13.527071 + ], + [ + 52.4867994, + 13.5269579 + ], + [ + 52.4867191, + 13.5269299 + ], + [ + 52.4865843, + 13.5268774 + ], + [ + 52.4864513, + 13.5268253 + ], + [ + 52.486363, + 13.5267959 + ], + [ + 52.4860108, + 13.5266857 + ], + [ + 52.4853066, + 13.526467 + ], + [ + 52.4850807, + 13.5263864 + ], + [ + 52.4846059, + 13.526236 + ], + [ + 52.4845083, + 13.5262052 + ], + [ + 52.4844169, + 13.5261778 + ], + [ + 52.4841618, + 13.5260983 + ] + ] + }, + { + "osmId": "1171658314", + "name": null, + "lengthMeters": 584.73578091716, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4841548, + 13.5261353 + ], + [ + 52.4844117, + 13.5262185 + ], + [ + 52.4845034, + 13.5262479 + ], + [ + 52.4846008, + 13.5262785 + ], + [ + 52.4850772, + 13.5264279 + ], + [ + 52.4855439, + 13.5265826 + ], + [ + 52.4860099, + 13.5267236 + ], + [ + 52.4863576, + 13.5268378 + ], + [ + 52.4864466, + 13.5268659 + ], + [ + 52.4865792, + 13.5269198 + ], + [ + 52.486714, + 13.5269724 + ], + [ + 52.4867962, + 13.5269978 + ], + [ + 52.487161, + 13.5271141 + ], + [ + 52.4876322, + 13.527261 + ], + [ + 52.4882601, + 13.5274628 + ], + [ + 52.4887815, + 13.5276239 + ], + [ + 52.4891459, + 13.5277421 + ], + [ + 52.4893152, + 13.5277938 + ] + ] + }, + { + "osmId": "1172699618", + "name": null, + "lengthMeters": 482.74650283834853, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5338392, + 13.4849212 + ], + [ + 52.5338415, + 13.4845002 + ], + [ + 52.5338576, + 13.4842195 + ], + [ + 52.5338857, + 13.4839305 + ], + [ + 52.5339241, + 13.4836567 + ], + [ + 52.5339762, + 13.4833723 + ], + [ + 52.5340364, + 13.483113 + ], + [ + 52.5341737, + 13.4826368 + ], + [ + 52.5348987, + 13.480383 + ], + [ + 52.5349308, + 13.4802829 + ], + [ + 52.5349626, + 13.4801842 + ], + [ + 52.5349959, + 13.4800829 + ], + [ + 52.5350498, + 13.4799168 + ], + [ + 52.535531, + 13.4784333 + ] + ] + }, + { + "osmId": "1172699619", + "name": null, + "lengthMeters": 483.73643920764073, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5355016, + 13.47842 + ], + [ + 52.5351095, + 13.4796256 + ], + [ + 52.5350222, + 13.479895 + ], + [ + 52.5349685, + 13.4800602 + ], + [ + 52.534936, + 13.4801613 + ], + [ + 52.5349043, + 13.4802572 + ], + [ + 52.5341489, + 13.4826006 + ], + [ + 52.5340093, + 13.4830883 + ], + [ + 52.533947, + 13.4833508 + ], + [ + 52.5338972, + 13.4836278 + ], + [ + 52.5338486, + 13.4839965 + ], + [ + 52.5338162, + 13.4843804 + ], + [ + 52.5338054, + 13.4847727 + ], + [ + 52.5338064, + 13.4849221 + ] + ] + }, + { + "osmId": "1172699620", + "name": null, + "lengthMeters": 949.4680565287388, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5354665, + 13.5148786 + ], + [ + 52.5354715, + 13.5146298 + ], + [ + 52.5354726, + 13.5144545 + ], + [ + 52.535467, + 13.5142632 + ], + [ + 52.5354623, + 13.5141975 + ], + [ + 52.5354576, + 13.5141062 + ], + [ + 52.5354511, + 13.5139955 + ], + [ + 52.5354464, + 13.5139236 + ], + [ + 52.5353203, + 13.5120768 + ], + [ + 52.5352612, + 13.5112329 + ], + [ + 52.5351866, + 13.5100149 + ], + [ + 52.5351772, + 13.5098724 + ], + [ + 52.5349114, + 13.5057176 + ], + [ + 52.5349066, + 13.5056425 + ], + [ + 52.5349011, + 13.5055552 + ], + [ + 52.5348934, + 13.5054392 + ], + [ + 52.5348894, + 13.5053779 + ], + [ + 52.5348368, + 13.5045091 + ], + [ + 52.5347718, + 13.5034923 + ], + [ + 52.5347506, + 13.5031182 + ], + [ + 52.5347254, + 13.5026175 + ], + [ + 52.5346858, + 13.5017588 + ], + [ + 52.5346357, + 13.5009117 + ] + ] + }, + { + "osmId": "1172849428", + "name": null, + "lengthMeters": 104.84792433246638, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3848637, + 13.3976923 + ], + [ + 52.3857509, + 13.3971691 + ] + ] + }, + { + "osmId": "1173053478", + "name": null, + "lengthMeters": 79.5297004124825, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5540669, + 10.0672212 + ], + [ + 53.5542341, + 10.0660506 + ] + ] + }, + { + "osmId": "1173486191", + "name": null, + "lengthMeters": 527.0199957184672, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5570897, + 13.3674955 + ], + [ + 52.5570933, + 13.3675439 + ], + [ + 52.5571134, + 13.36783 + ], + [ + 52.5571189, + 13.3679469 + ], + [ + 52.557122, + 13.3680511 + ], + [ + 52.5571236, + 13.368226 + ], + [ + 52.5571222, + 13.3683179 + ], + [ + 52.5571174, + 13.3684184 + ], + [ + 52.5571096, + 13.3685514 + ], + [ + 52.5570562, + 13.3691935 + ], + [ + 52.5570516, + 13.3692509 + ], + [ + 52.5570473, + 13.3693049 + ], + [ + 52.5570406, + 13.3693891 + ], + [ + 52.5569041, + 13.3711299 + ], + [ + 52.5568956, + 13.3712161 + ], + [ + 52.556886, + 13.3712943 + ], + [ + 52.5568081, + 13.3718982 + ], + [ + 52.55679, + 13.3720647 + ], + [ + 52.5567862, + 13.3721089 + ], + [ + 52.5567824, + 13.3721533 + ], + [ + 52.5567719, + 13.3722845 + ], + [ + 52.5567679, + 13.372336 + ], + [ + 52.5566952, + 13.3732617 + ], + [ + 52.5566716, + 13.3735629 + ], + [ + 52.5566673, + 13.3736259 + ], + [ + 52.5566597, + 13.3737185 + ], + [ + 52.5566476, + 13.3739971 + ], + [ + 52.5566444, + 13.3740944 + ], + [ + 52.5566429, + 13.3741566 + ], + [ + 52.5566403, + 13.3742441 + ], + [ + 52.5566331, + 13.374482 + ], + [ + 52.5566288, + 13.3745657 + ], + [ + 52.5566232, + 13.3746479 + ], + [ + 52.5565778, + 13.3752259 + ] + ] + }, + { + "osmId": "1173486192", + "name": null, + "lengthMeters": 528.2470149761191, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5566086, + 13.3752417 + ], + [ + 52.5566549, + 13.3746566 + ], + [ + 52.5566606, + 13.3745579 + ], + [ + 52.5566648, + 13.3744584 + ], + [ + 52.5566724, + 13.3742148 + ], + [ + 52.5566749, + 13.3741177 + ], + [ + 52.556677, + 13.3740556 + ], + [ + 52.5566806, + 13.3739534 + ], + [ + 52.5566924, + 13.3736766 + ], + [ + 52.556701, + 13.3735841 + ], + [ + 52.5567051, + 13.3735222 + ], + [ + 52.5567774, + 13.3726126 + ], + [ + 52.5567985, + 13.3723425 + ], + [ + 52.5568027, + 13.3722914 + ], + [ + 52.5568136, + 13.3721599 + ], + [ + 52.5568173, + 13.3721161 + ], + [ + 52.5568212, + 13.3720718 + ], + [ + 52.5568347, + 13.3719314 + ], + [ + 52.5569136, + 13.3713194 + ], + [ + 52.5569232, + 13.3712284 + ], + [ + 52.5569316, + 13.3711375 + ], + [ + 52.5570722, + 13.3693963 + ], + [ + 52.5570791, + 13.3693122 + ], + [ + 52.5570835, + 13.3692579 + ], + [ + 52.5570882, + 13.3692008 + ], + [ + 52.55714, + 13.3685615 + ], + [ + 52.5571504, + 13.3683978 + ], + [ + 52.5571536, + 13.3683077 + ], + [ + 52.5571551, + 13.3682169 + ], + [ + 52.5571563, + 13.3681206 + ], + [ + 52.557155, + 13.368023 + ], + [ + 52.5571462, + 13.3678338 + ], + [ + 52.5571217, + 13.3674955 + ], + [ + 52.5571215, + 13.3674933 + ] + ] + }, + { + "osmId": "1173486193", + "name": null, + "lengthMeters": 197.9434325890391, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554692, + 13.3891946 + ], + [ + 52.5554141, + 13.3899016 + ], + [ + 52.5554027, + 13.3900448 + ], + [ + 52.5553265, + 13.3909991 + ], + [ + 52.5553085, + 13.391224 + ], + [ + 52.5552905, + 13.3914093 + ], + [ + 52.5552812, + 13.3915051 + ], + [ + 52.5552784, + 13.3915321 + ], + [ + 52.5552585, + 13.3916984 + ], + [ + 52.555241, + 13.3918273 + ], + [ + 52.5552034, + 13.3920878 + ] + ] + }, + { + "osmId": "1173486194", + "name": null, + "lengthMeters": 134.96046040029898, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5551711, + 13.3925875 + ], + [ + 52.5551826, + 13.3924955 + ], + [ + 52.555203, + 13.3923311 + ], + [ + 52.555215, + 13.3922445 + ], + [ + 52.555223, + 13.3921862 + ], + [ + 52.5552283, + 13.3921475 + ], + [ + 52.5552656, + 13.3918798 + ], + [ + 52.5552842, + 13.3917426 + ], + [ + 52.5553091, + 13.3915418 + ], + [ + 52.5553124, + 13.3915122 + ], + [ + 52.5553213, + 13.3914168 + ], + [ + 52.5553398, + 13.3912303 + ], + [ + 52.5553881, + 13.3906249 + ] + ] + }, + { + "osmId": "1173486197", + "name": null, + "lengthMeters": 169.19061109252954, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5539063, + 13.4114875 + ], + [ + 52.5538327, + 13.4127892 + ], + [ + 52.5537705, + 13.4138898 + ], + [ + 52.5537664, + 13.4139794 + ] + ] + }, + { + "osmId": "1173486198", + "name": null, + "lengthMeters": 169.24073996293373, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537934, + 13.4139811 + ], + [ + 52.5538, + 13.4138646 + ], + [ + 52.5538609, + 13.4127934 + ], + [ + 52.553935, + 13.4114887 + ] + ] + }, + { + "osmId": "1173863932", + "name": "Stammbahn", + "lengthMeters": 260.6340292344208, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4755829, + 13.3476561 + ], + [ + 52.4737123, + 13.3453373 + ] + ] + }, + { + "osmId": "1175176642", + "name": null, + "lengthMeters": 479.50091128478783, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5667477, + 10.0638204 + ], + [ + 53.5670612, + 10.0650813 + ], + [ + 53.5672539, + 10.0658619 + ], + [ + 53.5675113, + 10.0669224 + ], + [ + 53.5677663, + 10.0679765 + ], + [ + 53.5679199, + 10.0686059 + ], + [ + 53.5680214, + 10.0690405 + ], + [ + 53.5681075, + 10.0694163 + ], + [ + 53.5681627, + 10.069682 + ], + [ + 53.5682206, + 10.069981 + ], + [ + 53.5682921, + 10.0703396 + ], + [ + 53.5683387, + 10.070567 + ] + ] + }, + { + "osmId": "1175176643", + "name": null, + "lengthMeters": 496.82169369985735, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5667179, + 10.0638441 + ], + [ + 53.5670047, + 10.0649927 + ], + [ + 53.5672818, + 10.066137 + ], + [ + 53.5675173, + 10.0671073 + ], + [ + 53.5677384, + 10.0680181 + ], + [ + 53.5679274, + 10.0687971 + ], + [ + 53.5680317, + 10.069247 + ], + [ + 53.5681703, + 10.0698999 + ], + [ + 53.5682676, + 10.0703999 + ], + [ + 53.5683281, + 10.0706868 + ], + [ + 53.5683609, + 10.0708382 + ] + ] + }, + { + "osmId": "1175176644", + "name": "Vogelfluglinie", + "lengthMeters": 195.60709299375281, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5666198, + 10.0639213 + ], + [ + 53.5669874, + 10.065416 + ], + [ + 53.5672897, + 10.0666602 + ] + ] + }, + { + "osmId": "1175176645", + "name": "Vogelfluglinie", + "lengthMeters": 322.9001154579349, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5677598, + 10.0684154 + ], + [ + 53.5676372, + 10.0679111 + ], + [ + 53.5673865, + 10.0668761 + ], + [ + 53.5671484, + 10.0658988 + ], + [ + 53.5666517, + 10.0638957 + ] + ] + }, + { + "osmId": "1175176646", + "name": "Vogelfluglinie", + "lengthMeters": 81.50601494712296, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.566245, + 10.0623112 + ], + [ + 53.5659426, + 10.0611869 + ] + ] + }, + { + "osmId": "1175176647", + "name": "Vogelfluglinie", + "lengthMeters": 113.23322951098706, + "maxSpeedKph": 100.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5658, + 10.0607661 + ], + [ + 53.5662106, + 10.0623352 + ] + ] + }, + { + "osmId": "1175242596", + "name": null, + "lengthMeters": 105.00021300852599, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5558554, + 10.0420024 + ], + [ + 53.5558579, + 10.0408259 + ], + [ + 53.5558572, + 10.0404128 + ] + ] + }, + { + "osmId": "1175242597", + "name": null, + "lengthMeters": 108.95024810345295, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557492, + 10.0403601 + ], + [ + 53.5557411, + 10.040825 + ], + [ + 53.5557391, + 10.0420093 + ] + ] + }, + { + "osmId": "1178532487", + "name": null, + "lengthMeters": 372.39233281413306, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.475544, + 13.3480611 + ], + [ + 52.474543, + 13.3468325 + ], + [ + 52.4736367, + 13.3457039 + ], + [ + 52.4728791, + 13.3447315 + ] + ] + }, + { + "osmId": "1178532489", + "name": "Stammbahn", + "lengthMeters": 142.97111849080142, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4809913, + 13.3542622 + ], + [ + 52.4799625, + 13.3529959 + ] + ] + }, + { + "osmId": "1178532492", + "name": null, + "lengthMeters": 90.73447034966372, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.47691, + 13.3499289 + ], + [ + 52.4770537, + 13.3499967 + ], + [ + 52.477213, + 13.3500865 + ], + [ + 52.4776533, + 13.3504687 + ] + ] + }, + { + "osmId": "1179660202", + "name": "Niederelbebahn", + "lengthMeters": 88.51015925688802, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4740827, + 9.8544737 + ], + [ + 53.4740314, + 9.8558083 + ] + ] + }, + { + "osmId": "1179660203", + "name": "Niederelbebahn", + "lengthMeters": 83.35564455546304, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4741335, + 9.8532171 + ], + [ + 53.4741083, + 9.8538582 + ], + [ + 53.4740827, + 9.8544737 + ] + ] + }, + { + "osmId": "1181237479", + "name": null, + "lengthMeters": 101.04561439559059, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 48.188347, + 11.5343213 + ], + [ + 48.1881729, + 11.5356591 + ] + ] + }, + { + "osmId": "1182860525", + "name": null, + "lengthMeters": 211.72140161840588, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.5880633, + 13.2853114 + ], + [ + 52.5885084, + 13.2848743 + ], + [ + 52.5888119, + 13.2845411 + ], + [ + 52.5896752, + 13.283644 + ] + ] + }, + { + "osmId": "1188253640", + "name": null, + "lengthMeters": 78.4995871189227, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5893668, + 13.3878326 + ], + [ + 52.5893916, + 13.3878033 + ], + [ + 52.5894168, + 13.387774 + ], + [ + 52.5894383, + 13.3877456 + ], + [ + 52.5894649, + 13.3877086 + ], + [ + 52.5894915, + 13.3876668 + ], + [ + 52.5895541, + 13.3875597 + ], + [ + 52.5896627, + 13.3873611 + ], + [ + 52.5898598, + 13.3870047 + ] + ] + }, + { + "osmId": "1188253642", + "name": null, + "lengthMeters": 138.85901177202157, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5898598, + 13.3870047 + ], + [ + 52.5898219, + 13.3870676 + ], + [ + 52.5897952, + 13.3871083 + ], + [ + 52.5897726, + 13.387139 + ], + [ + 52.5897495, + 13.3871711 + ], + [ + 52.5897253, + 13.3872035 + ], + [ + 52.589685, + 13.3872645 + ], + [ + 52.58964, + 13.3873375 + ], + [ + 52.5895187, + 13.387559 + ], + [ + 52.5894866, + 13.3876158 + ], + [ + 52.5894528, + 13.3876714 + ], + [ + 52.5894233, + 13.3877133 + ], + [ + 52.5893969, + 13.3877476 + ], + [ + 52.5893837, + 13.3877631 + ], + [ + 52.5893576, + 13.3877941 + ], + [ + 52.5893302, + 13.3878235 + ], + [ + 52.589313, + 13.3878398 + ], + [ + 52.5892934, + 13.3878572 + ], + [ + 52.5892646, + 13.3878795 + ], + [ + 52.5892258, + 13.3879069 + ], + [ + 52.5891928, + 13.3879291 + ], + [ + 52.5890599, + 13.3880054 + ], + [ + 52.5890122, + 13.3880305 + ], + [ + 52.5889688, + 13.3880522 + ], + [ + 52.5888996, + 13.3880849 + ], + [ + 52.5888901, + 13.3880894 + ], + [ + 52.5888419, + 13.3881128 + ] + ] + }, + { + "osmId": "1188501218", + "name": null, + "lengthMeters": 923.939176025591, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.530083, + 9.9683629 + ], + [ + 53.5301186, + 9.9683037 + ], + [ + 53.5301572, + 9.968242 + ], + [ + 53.5302175, + 9.9681555 + ], + [ + 53.5302753, + 9.9680796 + ], + [ + 53.53054, + 9.9677712 + ], + [ + 53.5307684, + 9.9675103 + ], + [ + 53.5308281, + 9.9674394 + ], + [ + 53.5308803, + 9.9673697 + ], + [ + 53.5309277, + 9.9673019 + ], + [ + 53.5309734, + 9.9672298 + ], + [ + 53.5310305, + 9.9671403 + ], + [ + 53.5310762, + 9.9670629 + ], + [ + 53.5311338, + 9.9669486 + ], + [ + 53.5311752, + 9.96686 + ], + [ + 53.531208, + 9.9667842 + ], + [ + 53.5312781, + 9.966618 + ], + [ + 53.5313542, + 9.9664277 + ], + [ + 53.5320064, + 9.9648341 + ], + [ + 53.5341437, + 9.9596122 + ], + [ + 53.5342899, + 9.9592446 + ], + [ + 53.5343258, + 9.9591534 + ], + [ + 53.5343557, + 9.9590702 + ], + [ + 53.5343995, + 9.9589388 + ], + [ + 53.5344461, + 9.9588087 + ], + [ + 53.5345003, + 9.9586558 + ], + [ + 53.5345792, + 9.95846 + ], + [ + 53.5350602, + 9.9572845 + ] + ] + }, + { + "osmId": "1188501219", + "name": null, + "lengthMeters": 837.2497051761001, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.535195, + 9.9571981 + ], + [ + 53.5351555, + 9.9572979 + ], + [ + 53.5345025, + 9.9588915 + ], + [ + 53.5313341, + 9.9665832 + ], + [ + 53.5312284, + 9.9668378 + ], + [ + 53.5311605, + 9.9669874 + ], + [ + 53.5310971, + 9.9671168 + ], + [ + 53.5310477, + 9.9672054 + ], + [ + 53.5309931, + 9.9672872 + ], + [ + 53.5309176, + 9.9673962 + ], + [ + 53.5308359, + 9.9675063 + ] + ] + }, + { + "osmId": "1188501221", + "name": null, + "lengthMeters": 1060.2849644900682, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5279253, + 9.9673906 + ], + [ + 53.5283225, + 9.9669185 + ], + [ + 53.5289879, + 9.9661264 + ], + [ + 53.5294169, + 9.9656278 + ], + [ + 53.5295498, + 9.9654627 + ], + [ + 53.5300269, + 9.96488 + ], + [ + 53.530188, + 9.9646652 + ], + [ + 53.5303731, + 9.9644111 + ], + [ + 53.5304984, + 9.9642328 + ], + [ + 53.5305996, + 9.9640817 + ], + [ + 53.5307165, + 9.9639104 + ], + [ + 53.530811, + 9.9637168 + ], + [ + 53.5309065, + 9.9634716 + ], + [ + 53.5313528, + 9.9623758 + ], + [ + 53.5316818, + 9.9615644 + ], + [ + 53.5320489, + 9.9606688 + ], + [ + 53.5327344, + 9.9589841 + ], + [ + 53.5332142, + 9.9578163 + ], + [ + 53.5336883, + 9.9566568 + ], + [ + 53.5337567, + 9.9564933 + ], + [ + 53.5338049, + 9.956386 + ], + [ + 53.5338549, + 9.9562852 + ], + [ + 53.5339037, + 9.9561936 + ], + [ + 53.5339392, + 9.9561332 + ], + [ + 53.5339813, + 9.9560729 + ], + [ + 53.5340193, + 9.9560159 + ], + [ + 53.5340652, + 9.9559536 + ], + [ + 53.5341293, + 9.9558724 + ], + [ + 53.5341731, + 9.9558234 + ], + [ + 53.5342368, + 9.9557544 + ], + [ + 53.5342769, + 9.9557109 + ] + ] + }, + { + "osmId": "1188501222", + "name": null, + "lengthMeters": 1048.1340594969704, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5277545, + 9.967895 + ], + [ + 53.5278262, + 9.9677788 + ], + [ + 53.5278712, + 9.9677087 + ], + [ + 53.5279204, + 9.9676285 + ], + [ + 53.5279648, + 9.9675598 + ], + [ + 53.5280169, + 9.9674843 + ], + [ + 53.5280727, + 9.9674132 + ], + [ + 53.5281779, + 9.9672867 + ], + [ + 53.5285512, + 9.9668389 + ], + [ + 53.5291662, + 9.9661081 + ], + [ + 53.5297117, + 9.9654583 + ], + [ + 53.5299328, + 9.9651939 + ], + [ + 53.5300689, + 9.9650173 + ], + [ + 53.5301872, + 9.964861 + ], + [ + 53.5305112, + 9.9644223 + ], + [ + 53.5306227, + 9.9642465 + ], + [ + 53.530684, + 9.9641246 + ], + [ + 53.5308104, + 9.9638533 + ], + [ + 53.5309053, + 9.9636267 + ], + [ + 53.5311061, + 9.9631269 + ], + [ + 53.5312199, + 9.9628495 + ], + [ + 53.5313337, + 9.9625694 + ], + [ + 53.5316986, + 9.9616778 + ], + [ + 53.5320855, + 9.9607325 + ], + [ + 53.5324434, + 9.959849 + ], + [ + 53.532852, + 9.9588449 + ], + [ + 53.5337491, + 9.9566565 + ], + [ + 53.5338069, + 9.9565201 + ], + [ + 53.5338483, + 9.9564289 + ], + [ + 53.5338979, + 9.9563289 + ], + [ + 53.5339304, + 9.9562727 + ], + [ + 53.5339627, + 9.9562204 + ] + ] + }, + { + "osmId": "1189676256", + "name": null, + "lengthMeters": 198.6920679001879, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6100226, + 10.0245987 + ], + [ + 53.6100933, + 10.0248418 + ], + [ + 53.6101581, + 10.0250501 + ], + [ + 53.6102215, + 10.025251 + ], + [ + 53.6102692, + 10.0254017 + ], + [ + 53.6103208, + 10.0255462 + ], + [ + 53.6103574, + 10.0256428 + ], + [ + 53.6103961, + 10.0257372 + ], + [ + 53.610449, + 10.0258564 + ], + [ + 53.610511, + 10.0259831 + ], + [ + 53.6106072, + 10.0261766 + ], + [ + 53.6106714, + 10.0263026 + ], + [ + 53.6107299, + 10.0264116 + ], + [ + 53.6108255, + 10.0265925 + ], + [ + 53.6108956, + 10.0267063 + ], + [ + 53.6109375, + 10.0267733 + ], + [ + 53.6109801, + 10.0268282 + ], + [ + 53.611026, + 10.0268881 + ], + [ + 53.6110934, + 10.0269683 + ] + ] + }, + { + "osmId": "1190202637", + "name": null, + "lengthMeters": 102.52825324849543, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6088623, + 10.0195246 + ], + [ + 53.6090106, + 10.0198924 + ], + [ + 53.6090826, + 10.0200906 + ], + [ + 53.609199, + 10.0204973 + ], + [ + 53.6093061, + 10.0208826 + ] + ] + }, + { + "osmId": "1193560271", + "name": null, + "lengthMeters": 338.87649553569617, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2470537, + 11.4461342 + ], + [ + 48.2463832, + 11.4462953 + ], + [ + 48.2455512, + 11.4465106 + ], + [ + 48.244534, + 11.446798 + ], + [ + 48.2440547, + 11.4469454 + ] + ] + }, + { + "osmId": "1193560272", + "name": null, + "lengthMeters": 339.49358524696765, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2440551, + 11.4470011 + ], + [ + 48.244572, + 11.4468406 + ], + [ + 48.245556, + 11.4465661 + ], + [ + 48.2463943, + 11.4463549 + ], + [ + 48.2470601, + 11.4461932 + ] + ] + }, + { + "osmId": "1193634456", + "name": null, + "lengthMeters": 139.9301412285957, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1790597, + 11.4723198 + ], + [ + 48.1779743, + 11.4727631 + ], + [ + 48.1778455, + 11.4728157 + ] + ] + }, + { + "osmId": "1193634457", + "name": null, + "lengthMeters": 139.6591432256479, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1778535, + 11.4728682 + ], + [ + 48.1790657, + 11.4723752 + ] + ] + }, + { + "osmId": "1193634458", + "name": null, + "lengthMeters": 311.03974321544337, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1789035, + 11.4722811 + ], + [ + 48.1793911, + 11.4720739 + ], + [ + 48.17954, + 11.4720106 + ], + [ + 48.1801846, + 11.4717486 + ], + [ + 48.1805904, + 11.4715838 + ], + [ + 48.1813189, + 11.4713079 + ], + [ + 48.1816057, + 11.4711978 + ] + ] + }, + { + "osmId": "1193634459", + "name": null, + "lengthMeters": 310.65901270816136, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1815977, + 11.4711414 + ], + [ + 48.1813085, + 11.4712495 + ], + [ + 48.1805865, + 11.4715222 + ], + [ + 48.1801729, + 11.4716865 + ], + [ + 48.1796188, + 11.4719007 + ], + [ + 48.1795267, + 11.4719363 + ], + [ + 48.1793632, + 11.4719982 + ], + [ + 48.1792037, + 11.4720556 + ], + [ + 48.1788884, + 11.4721634 + ] + ] + }, + { + "osmId": "1193634461", + "name": null, + "lengthMeters": 108.0200566959935, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1839969, + 11.4703875 + ], + [ + 48.1844651, + 11.4702072 + ], + [ + 48.1849404, + 11.4700409 + ] + ] + }, + { + "osmId": "1193634462", + "name": null, + "lengthMeters": 160.88396224814304, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1917622, + 11.467463 + ], + [ + 48.1931597, + 11.4669009 + ] + ] + }, + { + "osmId": "1193634463", + "name": null, + "lengthMeters": 110.42373559376443, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1978944, + 11.4651423 + ], + [ + 48.1988505, + 11.4647396 + ] + ] + }, + { + "osmId": "1193634464", + "name": null, + "lengthMeters": 110.79813394466835, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1988448, + 11.464688 + ], + [ + 48.1978836, + 11.465082 + ] + ] + }, + { + "osmId": "1193634467", + "name": null, + "lengthMeters": 561.4881724348115, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2130209, + 11.4593151 + ], + [ + 48.2081285, + 11.461191 + ] + ] + }, + { + "osmId": "1193634468", + "name": null, + "lengthMeters": 598.5924256122735, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2133248, + 11.459141 + ], + [ + 48.2081096, + 11.4611438 + ] + ] + }, + { + "osmId": "1193634469", + "name": null, + "lengthMeters": 391.5309805965099, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2179769, + 11.4570908 + ], + [ + 48.2145698, + 11.4584247 + ] + ] + }, + { + "osmId": "1193634470", + "name": null, + "lengthMeters": 749.6147906367466, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2080663, + 11.4610357 + ], + [ + 48.2093551, + 11.4605231 + ], + [ + 48.2100827, + 11.4602362 + ], + [ + 48.2106436, + 11.460015 + ], + [ + 48.2127777, + 11.459187 + ], + [ + 48.2133299, + 11.458975 + ], + [ + 48.2145943, + 11.4585111 + ] + ] + }, + { + "osmId": "1193634471", + "name": null, + "lengthMeters": 349.10804956002596, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1947621, + 11.4660743 + ], + [ + 48.1941024, + 11.4663286 + ], + [ + 48.1937036, + 11.466488 + ], + [ + 48.1931731, + 11.4666944 + ], + [ + 48.1924507, + 11.4669778 + ], + [ + 48.1917231, + 11.4672569 + ] + ] + }, + { + "osmId": "1193634472", + "name": null, + "lengthMeters": 321.1986366277153, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1947738, + 11.4661459 + ], + [ + 48.1956596, + 11.4657875 + ], + [ + 48.1966509, + 11.4653956 + ], + [ + 48.1970503, + 11.4652276 + ], + [ + 48.197301, + 11.4651177 + ], + [ + 48.1975595, + 11.4650006 + ] + ] + }, + { + "osmId": "1193634473", + "name": null, + "lengthMeters": 583.2455755997131, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2419094, + 11.4476048 + ], + [ + 48.2432597, + 11.4471069 + ], + [ + 48.2441403, + 11.4468195 + ], + [ + 48.2445143, + 11.4467054 + ], + [ + 48.2455459, + 11.4464132 + ], + [ + 48.2464018, + 11.4461954 + ], + [ + 48.2469305, + 11.4460652 + ], + [ + 48.2470474, + 11.4460372 + ] + ] + }, + { + "osmId": "1193634474", + "name": null, + "lengthMeters": 582.9578614078596, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.247038, + 11.4459739 + ], + [ + 48.246363, + 11.4461367 + ], + [ + 48.2455385, + 11.4463509 + ], + [ + 48.2444604, + 11.4466579 + ], + [ + 48.2441352, + 11.4467593 + ], + [ + 48.2432509, + 11.4470477 + ], + [ + 48.2424697, + 11.4473313 + ], + [ + 48.2419037, + 11.4475485 + ] + ] + }, + { + "osmId": "1193634476", + "name": null, + "lengthMeters": 1305.3451400414156, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2191648, + 11.4567785 + ], + [ + 48.219206, + 11.4567622 + ], + [ + 48.2209919, + 11.4560539 + ], + [ + 48.2225908, + 11.4554197 + ], + [ + 48.2260142, + 11.4540779 + ], + [ + 48.2280231, + 11.4532895 + ], + [ + 48.2292269, + 11.4528008 + ], + [ + 48.2298285, + 11.4525456 + ], + [ + 48.2305095, + 11.4522503 + ] + ] + }, + { + "osmId": "1193634477", + "name": null, + "lengthMeters": 260.49939741616146, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2304919, + 11.4521738 + ], + [ + 48.229899, + 11.4524044 + ], + [ + 48.2285409, + 11.4529383 + ], + [ + 48.228225, + 11.4530613 + ] + ] + }, + { + "osmId": "1193731296", + "name": null, + "lengthMeters": 261.6705986182627, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1488362, + 11.4858354 + ], + [ + 48.1490342, + 11.4855155 + ], + [ + 48.149164, + 11.4853242 + ], + [ + 48.1493429, + 11.4850884 + ], + [ + 48.1495237, + 11.4848716 + ], + [ + 48.1497845, + 11.4846034 + ], + [ + 48.1500504, + 11.4843552 + ], + [ + 48.1502629, + 11.4841689 + ], + [ + 48.1507366, + 11.4837975 + ] + ] + }, + { + "osmId": "1193731299", + "name": null, + "lengthMeters": 307.5857221344362, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1450592, + 11.4939744 + ], + [ + 48.1449548, + 11.4949573 + ], + [ + 48.144909, + 11.4953796 + ], + [ + 48.1447469, + 11.4969342 + ], + [ + 48.1446273, + 11.4980692 + ] + ] + }, + { + "osmId": "1193731302", + "name": null, + "lengthMeters": 78.058805866385, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1593691, + 11.48001 + ], + [ + 48.1589152, + 11.48019 + ], + [ + 48.1586896, + 11.4802742 + ] + ] + }, + { + "osmId": "1193754599", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 117.35096712734045, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418299, + 11.5445274 + ], + [ + 48.1419488, + 11.5429559 + ] + ] + }, + { + "osmId": "1193754600", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 289.21719775436674, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1419178, + 11.5429483 + ], + [ + 48.1417987, + 11.5445217 + ], + [ + 48.1417659, + 11.5448956 + ], + [ + 48.1416975, + 11.5456745 + ], + [ + 48.1416868, + 11.5457962 + ], + [ + 48.1416344, + 11.5463992 + ], + [ + 48.1416005, + 11.5468169 + ] + ] + }, + { + "osmId": "1193754601", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 221.00195442589245, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1594744, + 11.4812332 + ], + [ + 48.1597442, + 11.481307 + ], + [ + 48.1599349, + 11.4813658 + ], + [ + 48.1602624, + 11.4814912 + ], + [ + 48.1605874, + 11.481639 + ], + [ + 48.1608129, + 11.4817531 + ], + [ + 48.1610571, + 11.4818897 + ], + [ + 48.161285, + 11.4820288 + ], + [ + 48.1613729, + 11.4820875 + ] + ] + }, + { + "osmId": "1193754602", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 221.66182172105704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1613856, + 11.4820372 + ], + [ + 48.1612969, + 11.4819783 + ], + [ + 48.1610687, + 11.4818401 + ], + [ + 48.1608249, + 11.4816995 + ], + [ + 48.1605989, + 11.4815857 + ], + [ + 48.1602696, + 11.4814429 + ], + [ + 48.159947, + 11.4813152 + ], + [ + 48.1597549, + 11.4812567 + ], + [ + 48.1594814, + 11.4811802 + ] + ] + }, + { + "osmId": "1193754603", + "name": null, + "lengthMeters": 140.55439583445465, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1417707, + 11.5439118 + ], + [ + 48.1417265, + 11.5445084 + ], + [ + 48.1416953, + 11.5448841 + ], + [ + 48.1416817, + 11.5450482 + ], + [ + 48.1416207, + 11.5456514 + ], + [ + 48.1416059, + 11.5457896 + ] + ] + }, + { + "osmId": "1193754604", + "name": null, + "lengthMeters": 793.1320178929834, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1418036, + 11.5439102 + ], + [ + 48.1418039, + 11.5439061 + ], + [ + 48.1418043, + 11.5439017 + ], + [ + 48.1418899, + 11.542737 + ], + [ + 48.1421204, + 11.5396879 + ], + [ + 48.1421808, + 11.5388444 + ], + [ + 48.1422061, + 11.5384789 + ], + [ + 48.1422608, + 11.5372758 + ], + [ + 48.1423513, + 11.5346237 + ], + [ + 48.1423971, + 11.5332623 + ] + ] + }, + { + "osmId": "1193849208", + "name": null, + "lengthMeters": 153.62444797979794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4691502, + 13.4419451 + ], + [ + 52.4694838, + 13.4441459 + ] + ] + }, + { + "osmId": "1193849209", + "name": null, + "lengthMeters": 124.74343989914988, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4691106, + 13.4419516 + ], + [ + 52.4693794, + 13.4437395 + ] + ] + }, + { + "osmId": "1193999961", + "name": null, + "lengthMeters": 507.88307079693465, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1481717, + 11.4675633 + ], + [ + 48.1481692, + 11.4675719 + ], + [ + 48.1480193, + 11.4679887 + ], + [ + 48.1476523, + 11.4690847 + ], + [ + 48.1475254, + 11.4695139 + ], + [ + 48.1472667, + 11.4704931 + ], + [ + 48.1471234, + 11.4711924 + ], + [ + 48.1470529, + 11.4715954 + ], + [ + 48.146981, + 11.4720429 + ], + [ + 48.1469275, + 11.4724998 + ], + [ + 48.1468394, + 11.4734338 + ], + [ + 48.1468139, + 11.4737634 + ], + [ + 48.1467928, + 11.4740279 + ] + ] + }, + { + "osmId": "1193999962", + "name": null, + "lengthMeters": 526.1482189779385, + "maxSpeedKph": 130.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1468256, + 11.4740297 + ], + [ + 48.146841, + 11.4738276 + ], + [ + 48.1468707, + 11.4734382 + ], + [ + 48.1469619, + 11.4725083 + ], + [ + 48.1470173, + 11.4720552 + ], + [ + 48.1470864, + 11.4716087 + ], + [ + 48.1471905, + 11.4710502 + ], + [ + 48.1473076, + 11.4705098 + ], + [ + 48.1475625, + 11.4695355 + ], + [ + 48.1477624, + 11.4689126 + ], + [ + 48.1480003, + 11.4682182 + ], + [ + 48.1480452, + 11.4680899 + ], + [ + 48.1483066, + 11.4673624 + ] + ] + }, + { + "osmId": "1194319253", + "name": null, + "lengthMeters": 306.71605856217474, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1568295, + 11.4431761 + ], + [ + 48.1574535, + 11.4422998 + ], + [ + 48.1578101, + 11.441778 + ], + [ + 48.1581671, + 11.4412551 + ], + [ + 48.158431, + 11.440851 + ], + [ + 48.1586805, + 11.440448 + ], + [ + 48.1587868, + 11.440265 + ] + ] + }, + { + "osmId": "1194319254", + "name": null, + "lengthMeters": 498.8055594711128, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1588033, + 11.4401561 + ], + [ + 48.1583983, + 11.4408141 + ], + [ + 48.1581409, + 11.4412072 + ], + [ + 48.1577841, + 11.4417398 + ], + [ + 48.1574245, + 11.4422615 + ], + [ + 48.157071, + 11.4427516 + ], + [ + 48.1566366, + 11.4433537 + ], + [ + 48.1556353, + 11.4447449 + ], + [ + 48.1555774, + 11.4448251 + ] + ] + }, + { + "osmId": "1194319255", + "name": null, + "lengthMeters": 1290.1925271984728, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1711601, + 11.4176096 + ], + [ + 48.1707907, + 11.4182941 + ], + [ + 48.1704598, + 11.4188963 + ], + [ + 48.1695615, + 11.4205415 + ], + [ + 48.168859, + 11.4218285 + ], + [ + 48.1687086, + 11.4221038 + ], + [ + 48.167249, + 11.424775 + ], + [ + 48.1653883, + 11.4281363 + ], + [ + 48.1651939, + 11.4284955 + ], + [ + 48.1651775, + 11.4285242 + ], + [ + 48.1637618, + 11.4310106 + ] + ] + }, + { + "osmId": "1194319256", + "name": null, + "lengthMeters": 1263.9439585560478, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.163991, + 11.4308427 + ], + [ + 48.1641521, + 11.4305462 + ], + [ + 48.1652156, + 11.4285916 + ], + [ + 48.1652341, + 11.4285577 + ], + [ + 48.1672845, + 11.4248027 + ], + [ + 48.168888, + 11.4218614 + ], + [ + 48.1698667, + 11.4200688 + ], + [ + 48.1704902, + 11.4189309 + ], + [ + 48.1711869, + 11.4176496 + ] + ] + }, + { + "osmId": "1194529528", + "name": null, + "lengthMeters": 1556.5207274434542, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1711869, + 11.4176496 + ], + [ + 48.1721052, + 11.4159726 + ], + [ + 48.1740041, + 11.4125219 + ], + [ + 48.1740739, + 11.4123944 + ], + [ + 48.1751977, + 11.4103441 + ], + [ + 48.1752559, + 11.4102431 + ], + [ + 48.1753181, + 11.4101321 + ], + [ + 48.1758701, + 11.4091348 + ], + [ + 48.1761509, + 11.4086272 + ], + [ + 48.1764077, + 11.4081536 + ], + [ + 48.1766815, + 11.4076502 + ], + [ + 48.177085, + 11.4069367 + ], + [ + 48.1774839, + 11.4061978 + ], + [ + 48.1782786, + 11.404713 + ], + [ + 48.1782992, + 11.4046751 + ], + [ + 48.1799859, + 11.4015646 + ], + [ + 48.1800646, + 11.4014203 + ] + ] + }, + { + "osmId": "1194529529", + "name": null, + "lengthMeters": 2339.6270572039184, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1933244, + 11.3769061 + ], + [ + 48.1925652, + 11.3783446 + ], + [ + 48.1913783, + 11.3805353 + ], + [ + 48.1909662, + 11.3812958 + ], + [ + 48.1900965, + 11.3828951 + ], + [ + 48.1893072, + 11.3843465 + ], + [ + 48.189253, + 11.3844461 + ], + [ + 48.1886228, + 11.3856051 + ], + [ + 48.1880364, + 11.3866834 + ], + [ + 48.1867637, + 11.3890296 + ], + [ + 48.1860218, + 11.3903971 + ], + [ + 48.1859612, + 11.3905089 + ], + [ + 48.1846929, + 11.3928467 + ], + [ + 48.1834032, + 11.3951957 + ], + [ + 48.1822377, + 11.3973292 + ], + [ + 48.1821344, + 11.3975188 + ], + [ + 48.181285, + 11.3990768 + ], + [ + 48.1800419, + 11.4013819 + ] + ] + }, + { + "osmId": "1194970205", + "name": null, + "lengthMeters": 655.7133028346198, + "maxSpeedKph": 200.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1897313, + 11.3839133 + ], + [ + 48.1902099, + 11.38304 + ], + [ + 48.1914939, + 11.3806808 + ], + [ + 48.1926977, + 11.3784741 + ], + [ + 48.1934661, + 11.3770678 + ] + ] + }, + { + "osmId": "1194970206", + "name": null, + "lengthMeters": 907.9838676972965, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1866874, + 11.3894114 + ], + [ + 48.1860353, + 11.3906064 + ], + [ + 48.1847602, + 11.3929425 + ], + [ + 48.1834693, + 11.3952896 + ], + [ + 48.1822021, + 11.3976082 + ], + [ + 48.1815104, + 11.3988826 + ] + ] + }, + { + "osmId": "1194970207", + "name": null, + "lengthMeters": 908.1449626680936, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1815392, + 11.398914 + ], + [ + 48.1822334, + 11.3976421 + ], + [ + 48.1834966, + 11.3953289 + ], + [ + 48.1842679, + 11.3939303 + ], + [ + 48.1860595, + 11.3906342 + ], + [ + 48.1867166, + 11.3894405 + ] + ] + }, + { + "osmId": "1194970208", + "name": null, + "lengthMeters": 934.0763416535776, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1712578, + 11.417745 + ], + [ + 48.1724021, + 11.4156495 + ], + [ + 48.1731376, + 11.4143037 + ], + [ + 48.1736241, + 11.4134285 + ], + [ + 48.1746012, + 11.4116369 + ], + [ + 48.1747168, + 11.4114248 + ], + [ + 48.1752632, + 11.4104254 + ], + [ + 48.176595, + 11.4080177 + ] + ] + }, + { + "osmId": "1194970209", + "name": null, + "lengthMeters": 584.3006954780016, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1597005, + 11.4389054 + ], + [ + 48.1607505, + 11.4369967 + ], + [ + 48.160813, + 11.4368776 + ], + [ + 48.1612692, + 11.4360439 + ], + [ + 48.1621094, + 11.4344999 + ], + [ + 48.1629329, + 11.432984 + ], + [ + 48.1630288, + 11.4328094 + ] + ] + }, + { + "osmId": "1194970210", + "name": null, + "lengthMeters": 584.3263617695977, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1629978, + 11.4327738 + ], + [ + 48.1620858, + 11.4344619 + ], + [ + 48.1612457, + 11.4360015 + ], + [ + 48.1607868, + 11.4368359 + ], + [ + 48.1596736, + 11.4388753 + ] + ] + }, + { + "osmId": "1195652898", + "name": null, + "lengthMeters": 114.87753229992437, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2053676, + 11.4623352 + ], + [ + 48.2053859, + 11.4625859 + ], + [ + 48.205398, + 11.4628249 + ], + [ + 48.205402, + 11.4631813 + ], + [ + 48.2053927, + 11.4635571 + ], + [ + 48.2053722, + 11.4638814 + ] + ] + }, + { + "osmId": "1196812437", + "name": null, + "lengthMeters": 159.02455671155724, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102376, + 13.496918 + ], + [ + 52.510608, + 13.4975829 + ], + [ + 52.5108118, + 13.4979445 + ], + [ + 52.510941, + 13.4981716 + ], + [ + 52.5112078, + 13.4986444 + ] + ] + }, + { + "osmId": "1196998490", + "name": null, + "lengthMeters": 122.5951987600064, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1434921, + 11.5211816 + ], + [ + 48.1434701, + 11.5213759 + ], + [ + 48.1434441, + 11.5215681 + ], + [ + 48.1434055, + 11.5217745 + ], + [ + 48.143322, + 11.5221631 + ], + [ + 48.1432804, + 11.5224071 + ], + [ + 48.143257, + 11.5225984 + ], + [ + 48.1432383, + 11.5227865 + ] + ] + }, + { + "osmId": "1196998491", + "name": null, + "lengthMeters": 84.43964640151813, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1435007, + 11.5159813 + ], + [ + 48.1435137, + 11.5161807 + ], + [ + 48.1435316, + 11.5163834 + ], + [ + 48.1435661, + 11.5167224 + ], + [ + 48.1435858, + 11.5169155 + ], + [ + 48.1436012, + 11.5171091 + ] + ] + }, + { + "osmId": "1197563913", + "name": null, + "lengthMeters": 261.75827137566205, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.520882, + 13.7054339 + ], + [ + 52.5209825, + 13.7065063 + ], + [ + 52.5212404, + 13.7092576 + ] + ] + }, + { + "osmId": "1197981754", + "name": null, + "lengthMeters": 1731.980021261121, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.2020835, + 11.6123922 + ], + [ + 48.2020309, + 11.6123055 + ], + [ + 48.2019584, + 11.6121518 + ], + [ + 48.2018882, + 11.6120322 + ], + [ + 48.2017573, + 11.6118237 + ], + [ + 48.2017039, + 11.611771 + ], + [ + 48.2016868, + 11.6117629 + ], + [ + 48.2016395, + 11.6117403 + ], + [ + 48.2015759, + 11.6117205 + ], + [ + 48.2015013, + 11.6117268 + ], + [ + 48.2013771, + 11.6117391 + ], + [ + 48.2012354, + 11.6117883 + ], + [ + 48.2009741, + 11.6117866 + ], + [ + 48.2008241, + 11.6117532 + ], + [ + 48.2004902, + 11.6116442 + ], + [ + 48.2001551, + 11.6115123 + ], + [ + 48.1998952, + 11.6114309 + ], + [ + 48.1998522, + 11.6113957 + ], + [ + 48.1998167, + 11.6113454 + ], + [ + 48.1998029, + 11.6112684 + ], + [ + 48.199808, + 11.611159 + ], + [ + 48.1998446, + 11.6109551 + ], + [ + 48.1998909, + 11.6106844 + ], + [ + 48.1999448, + 11.6103592 + ], + [ + 48.2000092, + 11.6099417 + ], + [ + 48.200076, + 11.6095242 + ], + [ + 48.2001381, + 11.6091339 + ], + [ + 48.2001487, + 11.6090258 + ], + [ + 48.2002225, + 11.6085292 + ], + [ + 48.2003109, + 11.6078999 + ], + [ + 48.2003683, + 11.6073532 + ], + [ + 48.2004263, + 11.6068821 + ], + [ + 48.2004779, + 11.6064954 + ], + [ + 48.2005453, + 11.6059434 + ], + [ + 48.2006138, + 11.6054635 + ], + [ + 48.2006882, + 11.604857 + ], + [ + 48.2007509, + 11.604371 + ], + [ + 48.2008042, + 11.6038454 + ], + [ + 48.2008481, + 11.6033875 + ], + [ + 48.200902, + 11.6028074 + ], + [ + 48.2009846, + 11.602244 + ], + [ + 48.2010626, + 11.6015707 + ], + [ + 48.2011059, + 11.6011769 + ], + [ + 48.2011844, + 11.6005546 + ], + [ + 48.20126, + 11.5999025 + ], + [ + 48.2013174, + 11.5994832 + ], + [ + 48.2013502, + 11.5992222 + ], + [ + 48.2013801, + 11.5989813 + ], + [ + 48.2014375, + 11.598505 + ], + [ + 48.2014683, + 11.5982488 + ], + [ + 48.2014653, + 11.5981509 + ], + [ + 48.2014414, + 11.598065 + ], + [ + 48.2014022, + 11.5980044 + ], + [ + 48.2013479, + 11.5979556 + ], + [ + 48.2012786, + 11.5979372 + ], + [ + 48.199344, + 11.5981051 + ], + [ + 48.1974293, + 11.598334 + ] + ] + }, + { + "osmId": "1197981755", + "name": null, + "lengthMeters": 315.79627295315703, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1917196, + 11.5981172 + ], + [ + 48.1914247, + 11.5977416 + ], + [ + 48.1911799, + 11.5973989 + ], + [ + 48.1910357, + 11.5971328 + ], + [ + 48.1909423, + 11.5969467 + ], + [ + 48.1902069, + 11.5950533 + ], + [ + 48.1900643, + 11.5947031 + ] + ] + }, + { + "osmId": "1197981756", + "name": null, + "lengthMeters": 317.61590930959983, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1900138, + 11.5947409 + ], + [ + 48.1901632, + 11.59516 + ], + [ + 48.1908953, + 11.5969895 + ], + [ + 48.1909858, + 11.597175 + ], + [ + 48.1911424, + 11.5974544 + ], + [ + 48.1913866, + 11.5977895 + ], + [ + 48.1916777, + 11.5981777 + ] + ] + }, + { + "osmId": "1197981757", + "name": null, + "lengthMeters": 639.4260077927071, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1900643, + 11.5947031 + ], + [ + 48.1897062, + 11.5938287 + ], + [ + 48.1894282, + 11.593321 + ], + [ + 48.1891724, + 11.5928478 + ], + [ + 48.1889997, + 11.5925609 + ], + [ + 48.1887538, + 11.5922553 + ], + [ + 48.1886109, + 11.5921081 + ], + [ + 48.1882644, + 11.5918492 + ], + [ + 48.1881762, + 11.5917838 + ], + [ + 48.1880765, + 11.5917282 + ], + [ + 48.1877561, + 11.5916558 + ], + [ + 48.1876161, + 11.5916181 + ], + [ + 48.1869881, + 11.5914601 + ], + [ + 48.1867808, + 11.5914118 + ], + [ + 48.1866425, + 11.5913794 + ], + [ + 48.1865307, + 11.5913368 + ], + [ + 48.1864189, + 11.5912794 + ], + [ + 48.1862934, + 11.5912059 + ], + [ + 48.1861414, + 11.5911073 + ], + [ + 48.1856186, + 11.5908057 + ], + [ + 48.1854142, + 11.5906939 + ], + [ + 48.1853035, + 11.5906439 + ] + ] + }, + { + "osmId": "1197981758", + "name": null, + "lengthMeters": 409.551679707256, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1872242, + 11.591601 + ], + [ + 48.1872853, + 11.5916146 + ], + [ + 48.1873956, + 11.5916382 + ], + [ + 48.187614, + 11.5916885 + ], + [ + 48.1877513, + 11.5917176 + ], + [ + 48.1880704, + 11.5917827 + ], + [ + 48.188164, + 11.5918314 + ], + [ + 48.1882616, + 11.5919013 + ], + [ + 48.1885878, + 11.592156 + ], + [ + 48.1889561, + 11.592609 + ], + [ + 48.1893792, + 11.5933551 + ], + [ + 48.189641, + 11.5938184 + ], + [ + 48.1900138, + 11.5947409 + ] + ] + }, + { + "osmId": "1201360704", + "name": null, + "lengthMeters": 344.03642131985345, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6744002, + 13.5887159 + ], + [ + 52.6743885, + 13.5886799 + ], + [ + 52.6740733, + 13.5877336 + ], + [ + 52.6739847, + 13.5874412 + ], + [ + 52.6738956, + 13.5871324 + ], + [ + 52.6738101, + 13.5868063 + ], + [ + 52.6737805, + 13.5866863 + ], + [ + 52.6737226, + 13.5864511 + ], + [ + 52.673623, + 13.5860468 + ], + [ + 52.6734765, + 13.5854906 + ], + [ + 52.6733838, + 13.5851607 + ], + [ + 52.6732331, + 13.584634 + ], + [ + 52.6730936, + 13.5840953 + ] + ] + }, + { + "osmId": "1201360705", + "name": null, + "lengthMeters": 344.5984940313389, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6730936, + 13.5840953 + ], + [ + 52.6736833, + 13.5864733 + ], + [ + 52.6737426, + 13.5867134 + ], + [ + 52.6737721, + 13.5868329 + ], + [ + 52.6739105, + 13.5873458 + ], + [ + 52.6740111, + 13.5876816 + ], + [ + 52.6741209, + 13.5880244 + ], + [ + 52.6743641, + 13.5887509 + ] + ] + }, + { + "osmId": "1201360708", + "name": null, + "lengthMeters": 89.83435018996366, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5773127, + 13.4286258 + ], + [ + 52.5772347, + 13.4285253 + ], + [ + 52.576987, + 13.428206 + ], + [ + 52.5766922, + 13.4277754 + ] + ] + }, + { + "osmId": "1201360709", + "name": null, + "lengthMeters": 330.6933562863909, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5881764, + 13.4400364 + ], + [ + 52.58831, + 13.4401811 + ], + [ + 52.5890936, + 13.4410302 + ], + [ + 52.5906605, + 13.442728 + ] + ] + }, + { + "osmId": "1201360710", + "name": null, + "lengthMeters": 150.87867666555985, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5866494, + 13.438386 + ], + [ + 52.5877836, + 13.4396119 + ] + ] + }, + { + "osmId": "1201360711", + "name": null, + "lengthMeters": 106.74351302121424, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5659487, + 13.4099179 + ], + [ + 52.5661024, + 13.4101824 + ], + [ + 52.566585, + 13.4110139 + ], + [ + 52.5666121, + 13.4110594 + ] + ] + }, + { + "osmId": "1201360712", + "name": null, + "lengthMeters": 83.80462954216236, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5671835, + 13.4119476 + ], + [ + 52.5671126, + 13.4118103 + ], + [ + 52.5669382, + 13.4114514 + ], + [ + 52.5668259, + 13.4112274 + ], + [ + 52.5667126, + 13.4109798 + ] + ] + }, + { + "osmId": "1201360713", + "name": null, + "lengthMeters": 112.52832163311581, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5653439, + 13.4085799 + ], + [ + 52.5652061, + 13.4083706 + ], + [ + 52.5648957, + 13.4079223 + ], + [ + 52.5647435, + 13.4076942 + ], + [ + 52.5645939, + 13.4074624 + ] + ] + }, + { + "osmId": "1201360714", + "name": null, + "lengthMeters": 136.76339286269305, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554604, + 13.397716 + ], + [ + 52.5556562, + 13.3976706 + ], + [ + 52.5557964, + 13.39764 + ], + [ + 52.5559069, + 13.3976199 + ], + [ + 52.5560197, + 13.3976008 + ], + [ + 52.5561176, + 13.3975864 + ], + [ + 52.5562218, + 13.3975747 + ], + [ + 52.5563403, + 13.3975622 + ], + [ + 52.5564936, + 13.3975573 + ], + [ + 52.556685, + 13.3975558 + ] + ] + }, + { + "osmId": "1201360715", + "name": null, + "lengthMeters": 138.69581957953326, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.556685, + 13.3974996 + ], + [ + 52.5565927, + 13.3974966 + ], + [ + 52.5564834, + 13.3974967 + ], + [ + 52.5563785, + 13.3974994 + ], + [ + 52.5563043, + 13.3975035 + ], + [ + 52.5561769, + 13.3975147 + ], + [ + 52.5560261, + 13.3975318 + ], + [ + 52.5556634, + 13.3975957 + ], + [ + 52.5555378, + 13.3976227 + ], + [ + 52.5554485, + 13.3976425 + ], + [ + 52.5554423, + 13.3976439 + ] + ] + }, + { + "osmId": "1201360716", + "name": null, + "lengthMeters": 109.95513496638749, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.552889, + 13.3983822 + ], + [ + 52.5529275, + 13.3983724 + ], + [ + 52.5529963, + 13.3983549 + ], + [ + 52.5533913, + 13.3982436 + ], + [ + 52.5538643, + 13.398114 + ] + ] + }, + { + "osmId": "1201559403", + "name": null, + "lengthMeters": 86.85856464189698, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4704415, + 13.4852238 + ], + [ + 52.4705767, + 13.4849999 + ], + [ + 52.4706618, + 13.484859 + ], + [ + 52.4708814, + 13.4844617 + ], + [ + 52.4709626, + 13.4842864 + ], + [ + 52.470967, + 13.4842769 + ] + ] + }, + { + "osmId": "1201958627", + "name": null, + "lengthMeters": 487.58773479259054, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5721355, + 13.5047824 + ], + [ + 52.5717633, + 13.5052592 + ], + [ + 52.5697473, + 13.5078401 + ], + [ + 52.5686753, + 13.5092141 + ] + ] + }, + { + "osmId": "1201958628", + "name": null, + "lengthMeters": 115.21311916482995, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5722051, + 13.5049515 + ], + [ + 52.5723803, + 13.5047317 + ], + [ + 52.5724385, + 13.5046572 + ], + [ + 52.5725156, + 13.5045584 + ], + [ + 52.5730239, + 13.5039068 + ] + ] + }, + { + "osmId": "1201959069", + "name": null, + "lengthMeters": 447.83422374450953, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5327732, + 13.5346852 + ], + [ + 52.5326053, + 13.5347372 + ], + [ + 52.5324974, + 13.53477 + ], + [ + 52.5313253, + 13.5351219 + ], + [ + 52.5308427, + 13.5352682 + ], + [ + 52.5300577, + 13.5355054 + ], + [ + 52.5294607, + 13.5356855 + ], + [ + 52.5291356, + 13.5357897 + ], + [ + 52.5288965, + 13.535856 + ], + [ + 52.5288116, + 13.5358768 + ] + ] + }, + { + "osmId": "1202002833", + "name": null, + "lengthMeters": 351.75020380818796, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3865146, + 13.3966017 + ], + [ + 52.3864174, + 13.3966634 + ], + [ + 52.3862589, + 13.3967677 + ], + [ + 52.385811, + 13.3970449 + ], + [ + 52.3854727, + 13.3972661 + ], + [ + 52.3848637, + 13.3976923 + ], + [ + 52.3847782, + 13.3977463 + ], + [ + 52.3840696, + 13.3981631 + ], + [ + 52.3835619, + 13.3984574 + ] + ] + }, + { + "osmId": "1205178998", + "name": null, + "lengthMeters": 221.24733169518578, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4167563, + 13.3790642 + ], + [ + 52.4175744, + 13.3785709 + ], + [ + 52.4180811, + 13.3782679 + ], + [ + 52.41863, + 13.3779673 + ] + ] + }, + { + "osmId": "1205178999", + "name": null, + "lengthMeters": 388.7887347847665, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.414132, + 13.3806078 + ], + [ + 52.413493, + 13.3809922 + ], + [ + 52.4126868, + 13.3814646 + ], + [ + 52.4122005, + 13.3817527 + ], + [ + 52.4117108, + 13.3820298 + ], + [ + 52.4108427, + 13.3825512 + ] + ] + }, + { + "osmId": "1205207081", + "name": null, + "lengthMeters": 210.80669278368737, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4566955, + 13.5102537 + ], + [ + 52.4568932, + 13.5104426 + ], + [ + 52.4572367, + 13.5107707 + ], + [ + 52.4579355, + 13.5114315 + ], + [ + 52.4582066, + 13.5116898 + ], + [ + 52.458336, + 13.5118131 + ] + ] + }, + { + "osmId": "1205308052", + "name": null, + "lengthMeters": 416.27372583142, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3986543, + 13.2859279 + ], + [ + 52.3975291, + 13.2800762 + ] + ] + }, + { + "osmId": "1205308055", + "name": null, + "lengthMeters": 166.42943972361982, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3970723, + 13.2777403 + ], + [ + 52.3975291, + 13.2800762 + ] + ] + }, + { + "osmId": "1205470135", + "name": null, + "lengthMeters": 82.94375610594128, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4781556, + 13.3510347 + ], + [ + 52.4785232, + 13.3514947 + ], + [ + 52.4787421, + 13.3517911 + ] + ] + }, + { + "osmId": "1206278252", + "name": null, + "lengthMeters": 201.03116595450314, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4104954, + 13.577275 + ], + [ + 52.4112903, + 13.5760727 + ], + [ + 52.411788, + 13.5753661 + ], + [ + 52.4118085, + 13.5753389 + ], + [ + 52.4118408, + 13.5752959 + ] + ] + }, + { + "osmId": "1206365298", + "name": null, + "lengthMeters": 158.10432478447177, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5238787, + 13.3609652 + ], + [ + 52.523817, + 13.3607952 + ], + [ + 52.5237956, + 13.3607508 + ], + [ + 52.5237741, + 13.3607063 + ], + [ + 52.5237446, + 13.3606556 + ], + [ + 52.5237189, + 13.3606205 + ], + [ + 52.5236949, + 13.360593 + ], + [ + 52.5236745, + 13.3605748 + ], + [ + 52.5236521, + 13.3605556 + ], + [ + 52.5236146, + 13.3605324 + ], + [ + 52.5236102, + 13.3605311 + ], + [ + 52.5235952, + 13.3605254 + ], + [ + 52.5235755, + 13.3605207 + ], + [ + 52.5235476, + 13.3605145 + ], + [ + 52.5235216, + 13.3605144 + ], + [ + 52.5234901, + 13.3605204 + ], + [ + 52.5234589, + 13.3605269 + ], + [ + 52.5234361, + 13.3605355 + ], + [ + 52.5234047, + 13.3605549 + ], + [ + 52.5233882, + 13.3605678 + ], + [ + 52.5233601, + 13.3605929 + ], + [ + 52.5233466, + 13.3606101 + ], + [ + 52.5233189, + 13.360644 + ], + [ + 52.5232969, + 13.360678 + ], + [ + 52.5232692, + 13.3607358 + ], + [ + 52.5232549, + 13.3607729 + ], + [ + 52.5232401, + 13.3608209 + ], + [ + 52.5232282, + 13.3608714 + ], + [ + 52.5232192, + 13.3609273 + ], + [ + 52.5232109, + 13.360989 + ], + [ + 52.5231079, + 13.3617622 + ] + ] + }, + { + "osmId": "1206966582", + "name": "Dresdner Bahn", + "lengthMeters": 86.19160228213157, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4449006, + 13.3626673 + ], + [ + 52.4441638, + 13.3630623 + ] + ] + }, + { + "osmId": "1206966583", + "name": "Dresdner Bahn", + "lengthMeters": 87.22271103061863, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4441763, + 13.3631185 + ], + [ + 52.4449217, + 13.3627177 + ] + ] + }, + { + "osmId": "1207556652", + "name": null, + "lengthMeters": 107.03374807979114, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5872395, + 9.9890549 + ], + [ + 53.5874379, + 9.9892589 + ], + [ + 53.5880451, + 9.989942 + ] + ] + }, + { + "osmId": "1210117751", + "name": null, + "lengthMeters": 144.89310326189337, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.6094645, + 9.8787314 + ], + [ + 53.6095942, + 9.8782727 + ], + [ + 53.6097716, + 9.8776652 + ], + [ + 53.6098774, + 9.8771904 + ], + [ + 53.6099658, + 9.876709 + ] + ] + }, + { + "osmId": "1211092059", + "name": "U1", + "lengthMeters": 92.77837392992406, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.499559, + 13.3745564 + ], + [ + 52.4995715, + 13.3735305 + ], + [ + 52.4995717, + 13.3735142 + ], + [ + 52.4995785, + 13.3731862 + ] + ] + }, + { + "osmId": "1214072514", + "name": null, + "lengthMeters": 83.69419167443111, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4949857, + 13.3713425 + ], + [ + 52.4945764, + 13.370305 + ] + ] + }, + { + "osmId": "1215423885", + "name": "Teltower Kreisbahn", + "lengthMeters": 108.4957890794123, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.3921965, + 13.219718 + ], + [ + 52.3921998, + 13.2202224 + ], + [ + 52.3922002, + 13.2202566 + ], + [ + 52.3922034, + 13.220516 + ], + [ + 52.3922123, + 13.2210631 + ], + [ + 52.3922133, + 13.2213166 + ] + ] + }, + { + "osmId": "1216931400", + "name": null, + "lengthMeters": 401.7113103416281, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334676, + 13.3620988 + ], + [ + 52.533867, + 13.3616858 + ], + [ + 52.5344306, + 13.3611029 + ], + [ + 52.5346852, + 13.3608601 + ], + [ + 52.5349154, + 13.3606578 + ], + [ + 52.5351218, + 13.3605033 + ], + [ + 52.5354057, + 13.3602939 + ], + [ + 52.5357859, + 13.360056 + ], + [ + 52.536292, + 13.359812 + ], + [ + 52.5365458, + 13.3597048 + ], + [ + 52.5367141, + 13.3596479 + ], + [ + 52.5367274, + 13.3596434 + ] + ] + }, + { + "osmId": "1216931401", + "name": null, + "lengthMeters": 403.04513616515175, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5367206, + 13.359588 + ], + [ + 52.5367074, + 13.359593 + ], + [ + 52.5365426, + 13.3596549 + ], + [ + 52.5362865, + 13.3597542 + ], + [ + 52.5357744, + 13.3600021 + ], + [ + 52.5353989, + 13.3602394 + ], + [ + 52.5351015, + 13.3604484 + ], + [ + 52.5349049, + 13.3606014 + ], + [ + 52.5346672, + 13.3608076 + ], + [ + 52.5344143, + 13.3610623 + ], + [ + 52.5335013, + 13.3620031 + ], + [ + 52.5334513, + 13.3620546 + ] + ] + }, + { + "osmId": "1218375785", + "name": null, + "lengthMeters": 93.58010473460978, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6366816, + 13.2064741 + ], + [ + 52.636838, + 13.2063391 + ], + [ + 52.6369789, + 13.206229 + ], + [ + 52.6371407, + 13.2061163 + ], + [ + 52.6374536, + 13.2059265 + ] + ] + }, + { + "osmId": "1218375786", + "name": null, + "lengthMeters": 97.90461235979379, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.637535, + 13.2061664 + ], + [ + 52.6373009, + 13.2062714 + ], + [ + 52.6371518, + 13.2063416 + ], + [ + 52.6370107, + 13.2064159 + ], + [ + 52.6368595, + 13.2065012 + ], + [ + 52.6366967, + 13.2066063 + ] + ] + }, + { + "osmId": "1221036040", + "name": null, + "lengthMeters": 1066.778608762245, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262145, + 13.3474645 + ], + [ + 52.5262179, + 13.3479246 + ], + [ + 52.5262285, + 13.3486059 + ], + [ + 52.5262383, + 13.3490317 + ], + [ + 52.5262613, + 13.349697 + ], + [ + 52.5262627, + 13.3497558 + ], + [ + 52.5262922, + 13.3502582 + ], + [ + 52.5263126, + 13.3505908 + ], + [ + 52.5263791, + 13.3515105 + ], + [ + 52.5263943, + 13.351723 + ], + [ + 52.5264074, + 13.3518943 + ], + [ + 52.5265697, + 13.3540209 + ], + [ + 52.5266322, + 13.3548211 + ], + [ + 52.5266438, + 13.3549849 + ], + [ + 52.5266479, + 13.3550949 + ], + [ + 52.5266495, + 13.3551542 + ], + [ + 52.5266487, + 13.3551939 + ], + [ + 52.5266434, + 13.3552386 + ], + [ + 52.5266372, + 13.3552786 + ], + [ + 52.5266124, + 13.3553745 + ], + [ + 52.5265994, + 13.3554023 + ], + [ + 52.5265728, + 13.3554603 + ], + [ + 52.5265345, + 13.3555059 + ], + [ + 52.5264994, + 13.3555368 + ], + [ + 52.5264136, + 13.3556 + ], + [ + 52.5263631, + 13.3556373 + ], + [ + 52.5261184, + 13.355813 + ], + [ + 52.525978, + 13.3559351 + ], + [ + 52.5257373, + 13.3561335 + ], + [ + 52.5254882, + 13.3563465 + ], + [ + 52.5254534, + 13.3563763 + ], + [ + 52.5254061, + 13.3564154 + ], + [ + 52.5251935, + 13.3565911 + ], + [ + 52.5248346, + 13.3569292 + ], + [ + 52.5247198, + 13.357024 + ], + [ + 52.5246773, + 13.3570534 + ], + [ + 52.5246166, + 13.3570884 + ], + [ + 52.5245557, + 13.3571146 + ], + [ + 52.5244934, + 13.357136 + ], + [ + 52.5244286, + 13.3571496 + ], + [ + 52.5243686, + 13.3571561 + ], + [ + 52.5243086, + 13.3571546 + ], + [ + 52.5242613, + 13.3571474 + ], + [ + 52.5242127, + 13.3571382 + ], + [ + 52.5239646, + 13.3570607 + ], + [ + 52.5238963, + 13.3570456 + ], + [ + 52.5238486, + 13.3570425 + ], + [ + 52.5238166, + 13.3570468 + ], + [ + 52.5237819, + 13.3570603 + ], + [ + 52.523749, + 13.3570759 + ], + [ + 52.5237182, + 13.357099 + ], + [ + 52.5237159, + 13.3571008 + ], + [ + 52.5237058, + 13.3571102 + ], + [ + 52.5236738, + 13.3571434 + ], + [ + 52.5236624, + 13.3571544 + ], + [ + 52.5236223, + 13.3572232 + ], + [ + 52.5236011, + 13.3572739 + ], + [ + 52.5235926, + 13.3572963 + ], + [ + 52.5235795, + 13.3573446 + ], + [ + 52.523569, + 13.3573888 + ], + [ + 52.5235599, + 13.3574465 + ], + [ + 52.5235533, + 13.3574996 + ], + [ + 52.5234797, + 13.3583979 + ], + [ + 52.5234398, + 13.3589566 + ], + [ + 52.5234253, + 13.3591192 + ], + [ + 52.5234197, + 13.3592411 + ], + [ + 52.5234157, + 13.3593701 + ], + [ + 52.5234167, + 13.3594306 + ], + [ + 52.5234208, + 13.3595721 + ] + ] + }, + { + "osmId": "1221036041", + "name": null, + "lengthMeters": 623.4428569479091, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262519, + 13.34747 + ], + [ + 52.5262647, + 13.3469496 + ], + [ + 52.5262697, + 13.3467264 + ], + [ + 52.5262792, + 13.3457584 + ], + [ + 52.5262814, + 13.3455397 + ], + [ + 52.5262841, + 13.3453699 + ], + [ + 52.5262872, + 13.3451754 + ], + [ + 52.5262881, + 13.3451164 + ], + [ + 52.5263059, + 13.3442945 + ], + [ + 52.526323, + 13.3435013 + ], + [ + 52.5263259, + 13.3433734 + ], + [ + 52.5263283, + 13.3432698 + ], + [ + 52.5263332, + 13.3430704 + ], + [ + 52.5263398, + 13.3428577 + ], + [ + 52.5263464, + 13.3425944 + ], + [ + 52.5263595, + 13.3420875 + ], + [ + 52.5263794, + 13.3414686 + ], + [ + 52.5263863, + 13.34121 + ], + [ + 52.5264121, + 13.3401281 + ], + [ + 52.5264135, + 13.3400681 + ], + [ + 52.5264147, + 13.3400122 + ], + [ + 52.5264194, + 13.339705 + ], + [ + 52.5264276, + 13.3393905 + ], + [ + 52.5264521, + 13.3388494 + ], + [ + 52.5264965, + 13.338266 + ] + ] + }, + { + "osmId": "1221863965", + "name": "Neuk\u00f6lln-Mittenwalder Eisenbahn", + "lengthMeters": 163.44316038505835, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4193386, + 13.4763684 + ], + [ + 52.419304, + 13.4764695 + ], + [ + 52.4185892, + 13.4784417 + ] + ] + }, + { + "osmId": "1223253088", + "name": "Sch\u00f6nefelder Kurve", + "lengthMeters": 121.76774590876981, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3413677, + 13.4147245 + ], + [ + 52.3423448, + 13.4144906 + ], + [ + 52.3424509, + 13.4144614 + ] + ] + }, + { + "osmId": "1223253089", + "name": null, + "lengthMeters": 95.9803548492696, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3392374, + 13.4153694 + ], + [ + 52.3383934, + 13.4156655 + ] + ] + }, + { + "osmId": "1230111470", + "name": null, + "lengthMeters": 129.87918494185027, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5203201, + 9.9621266 + ], + [ + 53.5202878, + 9.9620307 + ], + [ + 53.5202627, + 9.961957 + ], + [ + 53.5202383, + 9.9618899 + ], + [ + 53.52021, + 9.9618235 + ], + [ + 53.5201776, + 9.9617516 + ], + [ + 53.5201467, + 9.961684 + ], + [ + 53.5200968, + 9.9615882 + ], + [ + 53.5200554, + 9.9615151 + ], + [ + 53.5200428, + 9.9614926 + ], + [ + 53.5195445, + 9.96067 + ] + ] + }, + { + "osmId": "1230814627", + "name": null, + "lengthMeters": 150.84343802347962, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5508848, + 10.0193597 + ], + [ + 53.5507085, + 10.018607 + ], + [ + 53.5506386, + 10.0183328 + ], + [ + 53.5503579, + 10.017256 + ] + ] + }, + { + "osmId": "1236722172", + "name": null, + "lengthMeters": 80.39075780865113, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5001234, + 13.2844169 + ], + [ + 52.4999743, + 13.2846119 + ], + [ + 52.4998351, + 13.2848221 + ], + [ + 52.4997278, + 13.2850031 + ], + [ + 52.4995991, + 13.2852316 + ] + ] + }, + { + "osmId": "1236722173", + "name": null, + "lengthMeters": 206.4538564820313, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4900888, + 13.2641305 + ], + [ + 52.4898574, + 13.2637293 + ], + [ + 52.4896349, + 13.2633364 + ], + [ + 52.4893765, + 13.2628298 + ], + [ + 52.4889499, + 13.2620153 + ], + [ + 52.4888606, + 13.2618449 + ] + ] + }, + { + "osmId": "1236722174", + "name": null, + "lengthMeters": 179.2909663663951, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887826, + 13.2619565 + ], + [ + 52.4884718, + 13.2613711 + ], + [ + 52.488323, + 13.2610909 + ], + [ + 52.4878328, + 13.2601542 + ], + [ + 52.4877309, + 13.2599495 + ] + ] + }, + { + "osmId": "1236722175", + "name": null, + "lengthMeters": 191.74672419657415, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887275, + 13.2619695 + ], + [ + 52.4889827, + 13.2624681 + ], + [ + 52.4892401, + 13.2629633 + ], + [ + 52.4895102, + 13.2634667 + ], + [ + 52.4896452, + 13.2636979 + ], + [ + 52.4898913, + 13.2640534 + ] + ] + }, + { + "osmId": "1236722176", + "name": null, + "lengthMeters": 177.27934061773885, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4865436, + 13.2582654 + ], + [ + 52.4865558, + 13.2582821 + ], + [ + 52.4867311, + 13.2585211 + ], + [ + 52.4868026, + 13.2586184 + ], + [ + 52.4870021, + 13.2588907 + ], + [ + 52.4871834, + 13.2591532 + ], + [ + 52.4873435, + 13.2594138 + ], + [ + 52.4876289, + 13.2598952 + ], + [ + 52.4877128, + 13.2600408 + ] + ] + }, + { + "osmId": "1236722177", + "name": null, + "lengthMeters": 139.62709899750422, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4877869, + 13.2598193 + ], + [ + 52.4876277, + 13.259577 + ], + [ + 52.487454, + 13.2593347 + ], + [ + 52.4874442, + 13.259321 + ], + [ + 52.4868302, + 13.2584843 + ] + ] + }, + { + "osmId": "1236722178", + "name": null, + "lengthMeters": 111.28552479999868, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4877309, + 13.2599495 + ], + [ + 52.4875693, + 13.2596558 + ], + [ + 52.4874138, + 13.2593908 + ], + [ + 52.4872667, + 13.2591685 + ], + [ + 52.4870086, + 13.2588158 + ] + ] + }, + { + "osmId": "1236722179", + "name": null, + "lengthMeters": 176.60796938705454, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4876644, + 13.2602691 + ], + [ + 52.4877146, + 13.2603718 + ], + [ + 52.488332, + 13.2615577 + ], + [ + 52.488588, + 13.2620481 + ], + [ + 52.4886367, + 13.2621414 + ], + [ + 52.48868, + 13.2622261 + ], + [ + 52.4886953, + 13.2622532 + ] + ] + }, + { + "osmId": "1236722180", + "name": null, + "lengthMeters": 163.811664016432, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5034326, + 13.4843914 + ], + [ + 52.503502, + 13.4846159 + ], + [ + 52.5036219, + 13.4849541 + ], + [ + 52.5038099, + 13.4854478 + ], + [ + 52.503975, + 13.4858351 + ], + [ + 52.504142, + 13.4862008 + ], + [ + 52.5041942, + 13.4863045 + ], + [ + 52.5042436, + 13.4864062 + ] + ] + }, + { + "osmId": "1236722181", + "name": null, + "lengthMeters": 220.45319578166604, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5035105, + 13.4843084 + ], + [ + 52.503485, + 13.4842465 + ], + [ + 52.5032431, + 13.4835637 + ], + [ + 52.5030576, + 13.4829418 + ], + [ + 52.5028987, + 13.4823514 + ], + [ + 52.5027811, + 13.4819018 + ], + [ + 52.5026991, + 13.4815208 + ], + [ + 52.5026676, + 13.4813687 + ] + ] + }, + { + "osmId": "1236722182", + "name": null, + "lengthMeters": 222.11783965759096, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026405, + 13.4813817 + ], + [ + 52.5026793, + 13.481585 + ], + [ + 52.5027525, + 13.4819185 + ], + [ + 52.5028698, + 13.4823734 + ], + [ + 52.5030267, + 13.4829573 + ], + [ + 52.5032029, + 13.4835895 + ], + [ + 52.5033406, + 13.4840878 + ], + [ + 52.5034326, + 13.4843914 + ] + ] + }, + { + "osmId": "1236722184", + "name": null, + "lengthMeters": 210.72526902676674, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5317465, + 13.2104744 + ], + [ + 52.5316879, + 13.2109419 + ], + [ + 52.5315339, + 13.2121653 + ], + [ + 52.5314742, + 13.2126065 + ], + [ + 52.5313578, + 13.2135234 + ] + ] + }, + { + "osmId": "1236722185", + "name": null, + "lengthMeters": 192.2607545474159, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5318432, + 13.2105019 + ], + [ + 52.531855, + 13.210411 + ], + [ + 52.5319021, + 13.2100502 + ], + [ + 52.5319541, + 13.2096515 + ], + [ + 52.5320391, + 13.2089998 + ], + [ + 52.5320425, + 13.2089734 + ], + [ + 52.5321352, + 13.2082624 + ], + [ + 52.5321465, + 13.2081761 + ], + [ + 52.5322056, + 13.2077227 + ] + ] + }, + { + "osmId": "1236722186", + "name": null, + "lengthMeters": 129.00921725927668, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5116063, + 13.2246336 + ], + [ + 52.5115949, + 13.2246523 + ], + [ + 52.5115751, + 13.2246848 + ], + [ + 52.511471, + 13.224856 + ], + [ + 52.5113158, + 13.2251334 + ], + [ + 52.5110645, + 13.225594 + ], + [ + 52.5108267, + 13.2260447 + ] + ] + }, + { + "osmId": "1236722188", + "name": null, + "lengthMeters": 78.05637126840338, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5099014, + 13.2285733 + ], + [ + 52.5099474, + 13.228412 + ], + [ + 52.5099605, + 13.2283665 + ], + [ + 52.5099868, + 13.2282789 + ], + [ + 52.5100408, + 13.2281023 + ], + [ + 52.5100437, + 13.2280928 + ], + [ + 52.5101027, + 13.2279229 + ], + [ + 52.510131, + 13.2278481 + ], + [ + 52.5102387, + 13.2275633 + ] + ] + }, + { + "osmId": "1236722189", + "name": null, + "lengthMeters": 93.61874144956121, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5102387, + 13.2275633 + ], + [ + 52.5104074, + 13.2271753 + ], + [ + 52.5104961, + 13.226996 + ], + [ + 52.5105779, + 13.2268307 + ], + [ + 52.5106205, + 13.2267481 + ], + [ + 52.5107296, + 13.2265361 + ], + [ + 52.5107502, + 13.2264962 + ], + [ + 52.5107535, + 13.22649 + ], + [ + 52.5107599, + 13.226478 + ] + ] + }, + { + "osmId": "1236722190", + "name": null, + "lengthMeters": 128.05130279197033, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5114815, + 13.2444646 + ], + [ + 52.5115752, + 13.2448933 + ], + [ + 52.5116265, + 13.2451301 + ], + [ + 52.5116615, + 13.2453042 + ], + [ + 52.5116904, + 13.245457 + ], + [ + 52.5117295, + 13.2456886 + ], + [ + 52.5117808, + 13.246014 + ], + [ + 52.5118199, + 13.2462716 + ] + ] + }, + { + "osmId": "1236722191", + "name": null, + "lengthMeters": 216.79560192814236, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.510969, + 13.2413754 + ], + [ + 52.5109958, + 13.2415347 + ], + [ + 52.5110054, + 13.2415985 + ], + [ + 52.5110131, + 13.2416475 + ], + [ + 52.5111668, + 13.2426602 + ], + [ + 52.5111726, + 13.2426974 + ], + [ + 52.5112383, + 13.2431042 + ], + [ + 52.511241, + 13.2431212 + ], + [ + 52.5112763, + 13.2433465 + ], + [ + 52.5113152, + 13.2436148 + ], + [ + 52.5113423, + 13.2437666 + ], + [ + 52.5113517, + 13.2438217 + ], + [ + 52.5113892, + 13.2440277 + ], + [ + 52.5114815, + 13.2444646 + ] + ] + }, + { + "osmId": "1236722192", + "name": null, + "lengthMeters": 202.89656231544018, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5110879, + 13.2413337 + ], + [ + 52.5109565, + 13.2404675 + ], + [ + 52.5109155, + 13.2402069 + ], + [ + 52.5108553, + 13.2398497 + ], + [ + 52.5108098, + 13.2395867 + ], + [ + 52.5107297, + 13.2391418 + ], + [ + 52.5106273, + 13.2385972 + ], + [ + 52.5105999, + 13.2384455 + ] + ] + }, + { + "osmId": "1236722198", + "name": null, + "lengthMeters": 122.88896755232328, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5013664, + 13.285132 + ], + [ + 52.5013234, + 13.284985 + ], + [ + 52.5012574, + 13.284759 + ], + [ + 52.5011129, + 13.2842645 + ], + [ + 52.5011093, + 13.2842523 + ], + [ + 52.5009603, + 13.2837876 + ], + [ + 52.5008711, + 13.2835094 + ] + ] + }, + { + "osmId": "1236722199", + "name": null, + "lengthMeters": 169.02098939614106, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5074103, + 13.3321839 + ], + [ + 52.5078482, + 13.3325342 + ], + [ + 52.5080047, + 13.3326595 + ], + [ + 52.5083898, + 13.3329663 + ], + [ + 52.5087713, + 13.3332955 + ] + ] + }, + { + "osmId": "1236950969", + "name": null, + "lengthMeters": 152.4344870844394, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3493193, + 13.6268295 + ], + [ + 52.3492053, + 13.626921 + ], + [ + 52.3491609, + 13.6269567 + ], + [ + 52.3490612, + 13.6270367 + ], + [ + 52.3484854, + 13.6274985 + ], + [ + 52.3481986, + 13.6277363 + ], + [ + 52.3480904, + 13.627824 + ] + ] + }, + { + "osmId": "1236950972", + "name": null, + "lengthMeters": 228.63576403216658, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3722528, + 13.6146296 + ], + [ + 52.3721624, + 13.6146881 + ], + [ + 52.371817, + 13.6149005 + ], + [ + 52.3712287, + 13.6152622 + ], + [ + 52.3711158, + 13.6153316 + ], + [ + 52.3709722, + 13.6154281 + ], + [ + 52.3707372, + 13.6155861 + ], + [ + 52.3706873, + 13.6156202 + ], + [ + 52.3703387, + 13.6158585 + ] + ] + }, + { + "osmId": "1236950973", + "name": null, + "lengthMeters": 195.76513900951548, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3703791, + 13.6160534 + ], + [ + 52.3707219, + 13.6158353 + ], + [ + 52.3710235, + 13.6156434 + ], + [ + 52.3712282, + 13.6155131 + ], + [ + 52.3712767, + 13.6154819 + ], + [ + 52.3718618, + 13.6151056 + ], + [ + 52.3719247, + 13.6150652 + ], + [ + 52.3720195, + 13.6150064 + ] + ] + }, + { + "osmId": "1236950974", + "name": null, + "lengthMeters": 1155.9769684084013, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3703387, + 13.6158585 + ], + [ + 52.3701428, + 13.6159925 + ], + [ + 52.3693528, + 13.6165766 + ], + [ + 52.368122, + 13.6173423 + ], + [ + 52.3674512, + 13.6177018 + ], + [ + 52.3672523, + 13.6178084 + ], + [ + 52.3670548, + 13.6179142 + ], + [ + 52.3669719, + 13.6179539 + ], + [ + 52.3668993, + 13.6179882 + ], + [ + 52.3649064, + 13.618931 + ], + [ + 52.3640315, + 13.6193377 + ], + [ + 52.3631353, + 13.6197551 + ], + [ + 52.3614048, + 13.6205532 + ], + [ + 52.3613195, + 13.620593 + ], + [ + 52.360441, + 13.6210023 + ] + ] + }, + { + "osmId": "1236950975", + "name": null, + "lengthMeters": 1155.6851871220315, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3604521, + 13.6210603 + ], + [ + 52.3613261, + 13.620661 + ], + [ + 52.3623086, + 13.6202121 + ], + [ + 52.3631451, + 13.619815 + ], + [ + 52.3638281, + 13.6194983 + ], + [ + 52.3643835, + 13.6192404 + ], + [ + 52.3654407, + 13.618745 + ], + [ + 52.3668564, + 13.6180888 + ], + [ + 52.3669068, + 13.6180666 + ], + [ + 52.3669885, + 13.6180305 + ], + [ + 52.3670536, + 13.6180033 + ], + [ + 52.3672675, + 13.6178898 + ], + [ + 52.3673827, + 13.6178287 + ], + [ + 52.3680025, + 13.6174979 + ], + [ + 52.3688953, + 13.6169725 + ], + [ + 52.3693824, + 13.6166775 + ], + [ + 52.3703321, + 13.6160833 + ], + [ + 52.3703791, + 13.6160534 + ] + ] + }, + { + "osmId": "1236950976", + "name": null, + "lengthMeters": 239.74565010641697, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4116213, + 13.5749947 + ], + [ + 52.4114759, + 13.5751982 + ], + [ + 52.4112786, + 13.5755022 + ], + [ + 52.4111643, + 13.5756775 + ], + [ + 52.4105197, + 13.5767018 + ], + [ + 52.4100584, + 13.5774288 + ] + ] + }, + { + "osmId": "1236950977", + "name": null, + "lengthMeters": 125.65096481515297, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4342913, + 13.5422929 + ], + [ + 52.4343993, + 13.5421472 + ], + [ + 52.4345366, + 13.5419619 + ], + [ + 52.4346198, + 13.5418496 + ], + [ + 52.4346526, + 13.5418034 + ], + [ + 52.4348688, + 13.5414983 + ], + [ + 52.4351479, + 13.5410846 + ] + ] + }, + { + "osmId": "1236950978", + "name": null, + "lengthMeters": 125.09084094538437, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4350611, + 13.5409447 + ], + [ + 52.4345741, + 13.5416312 + ], + [ + 52.4344971, + 13.5417397 + ], + [ + 52.4344567, + 13.5417977 + ], + [ + 52.4343486, + 13.5419529 + ], + [ + 52.4342102, + 13.5421517 + ] + ] + }, + { + "osmId": "1236950979", + "name": null, + "lengthMeters": 166.21645814266816, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5553668, + 13.3974669 + ], + [ + 52.5553444, + 13.3974722 + ], + [ + 52.5552764, + 13.3974879 + ], + [ + 52.555272, + 13.3974889 + ], + [ + 52.5551945, + 13.3975069 + ], + [ + 52.5551311, + 13.3975217 + ], + [ + 52.5549679, + 13.3975592 + ], + [ + 52.5549565, + 13.3975619 + ], + [ + 52.5546416, + 13.3976373 + ], + [ + 52.5543498, + 13.3977071 + ], + [ + 52.5542239, + 13.3977372 + ], + [ + 52.5541824, + 13.3977493 + ], + [ + 52.5541253, + 13.3977658 + ], + [ + 52.554058, + 13.3977857 + ], + [ + 52.5540315, + 13.3977941 + ], + [ + 52.5539551, + 13.3978184 + ], + [ + 52.5539273, + 13.3978273 + ], + [ + 52.5539212, + 13.3978297 + ], + [ + 52.5538898, + 13.3978419 + ] + ] + }, + { + "osmId": "1236950980", + "name": null, + "lengthMeters": 331.5585279158294, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5554148, + 13.397927 + ], + [ + 52.555434, + 13.3979227 + ], + [ + 52.5555779, + 13.3978904 + ], + [ + 52.5561177, + 13.3977683 + ], + [ + 52.5563767, + 13.397712 + ], + [ + 52.5566521, + 13.3976628 + ], + [ + 52.5571878, + 13.3975796 + ], + [ + 52.5573354, + 13.3975603 + ], + [ + 52.5575528, + 13.3975318 + ], + [ + 52.5575864, + 13.3975274 + ], + [ + 52.5579742, + 13.3974767 + ], + [ + 52.5581271, + 13.397449 + ], + [ + 52.5583788, + 13.3974034 + ] + ] + }, + { + "osmId": "1236950981", + "name": null, + "lengthMeters": 165.23274440394056, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4873244, + 13.3620887 + ], + [ + 52.4865419, + 13.3611716 + ], + [ + 52.4864469, + 13.3610584 + ], + [ + 52.4861158, + 13.360669 + ] + ] + }, + { + "osmId": "1236950982", + "name": null, + "lengthMeters": 165.25834657795644, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4860924, + 13.3607196 + ], + [ + 52.4864272, + 13.3611122 + ], + [ + 52.4872991, + 13.3621443 + ] + ] + }, + { + "osmId": "1236950983", + "name": null, + "lengthMeters": 563.3864623042148, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4872991, + 13.3621443 + ], + [ + 52.4873058, + 13.3621521 + ], + [ + 52.4878516, + 13.3627924 + ], + [ + 52.4886215, + 13.3636994 + ], + [ + 52.4892056, + 13.3643877 + ], + [ + 52.4901029, + 13.3654661 + ], + [ + 52.4910961, + 13.3667373 + ], + [ + 52.4913759, + 13.3670831 + ] + ] + }, + { + "osmId": "1236950984", + "name": null, + "lengthMeters": 561.8114320250311, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4914118, + 13.3669657 + ], + [ + 52.4906794, + 13.3661016 + ], + [ + 52.4905741, + 13.3659722 + ], + [ + 52.4904481, + 13.3658174 + ], + [ + 52.4892367, + 13.3643366 + ], + [ + 52.4878947, + 13.3627585 + ], + [ + 52.4873303, + 13.3620955 + ], + [ + 52.4873244, + 13.3620887 + ] + ] + }, + { + "osmId": "1237407030", + "name": null, + "lengthMeters": 92.3902517917656, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4869717, + 13.3024178 + ], + [ + 52.4869724, + 13.3024168 + ], + [ + 52.4869732, + 13.3024158 + ], + [ + 52.4871314, + 13.3022071 + ], + [ + 52.4873066, + 13.3019831 + ], + [ + 52.4874707, + 13.301788 + ], + [ + 52.4876364, + 13.3016 + ] + ] + }, + { + "osmId": "1237407031", + "name": null, + "lengthMeters": 234.55257353601462, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5241926, + 13.4631526 + ], + [ + 52.524115, + 13.4633855 + ], + [ + 52.5239978, + 13.4637349 + ], + [ + 52.5239065, + 13.4640261 + ], + [ + 52.5238226, + 13.4643133 + ], + [ + 52.5237494, + 13.4645924 + ], + [ + 52.5236809, + 13.4648816 + ], + [ + 52.5235887, + 13.4653073 + ], + [ + 52.5235155, + 13.4656543 + ], + [ + 52.5234817, + 13.4658132 + ], + [ + 52.5233944, + 13.4662242 + ], + [ + 52.5233705, + 13.4663367 + ] + ] + }, + { + "osmId": "1237407032", + "name": null, + "lengthMeters": 78.0473628552557, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5360548, + 13.3431649 + ], + [ + 52.5361996, + 13.3442841 + ], + [ + 52.5362008, + 13.3442936 + ] + ] + }, + { + "osmId": "1237407033", + "name": null, + "lengthMeters": 189.70847685110976, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5341225, + 13.3277064 + ], + [ + 52.5341684, + 13.3280356 + ], + [ + 52.5342702, + 13.3287664 + ], + [ + 52.5344182, + 13.3300021 + ], + [ + 52.5344712, + 13.3304516 + ] + ] + }, + { + "osmId": "1237407034", + "name": null, + "lengthMeters": 990.4827621989441, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5342382, + 13.3279406 + ], + [ + 52.5341978, + 13.3277179 + ], + [ + 52.5341439, + 13.3274072 + ], + [ + 52.5340669, + 13.3269457 + ], + [ + 52.5339259, + 13.3260587 + ], + [ + 52.5338449, + 13.3255177 + ], + [ + 52.5337477, + 13.3248219 + ], + [ + 52.533569, + 13.3234929 + ], + [ + 52.5335499, + 13.3233465 + ], + [ + 52.5333898, + 13.3221499 + ], + [ + 52.5331943, + 13.3206936 + ], + [ + 52.5327724, + 13.3175483 + ], + [ + 52.5325613, + 13.3159681 + ], + [ + 52.5323405, + 13.3143793 + ], + [ + 52.5323318, + 13.3143152 + ], + [ + 52.5322437, + 13.3136712 + ] + ] + }, + { + "osmId": "1237407035", + "name": null, + "lengthMeters": 331.328066018016, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5351867, + 13.3352396 + ], + [ + 52.5345973, + 13.3304378 + ] + ] + }, + { + "osmId": "1237407036", + "name": null, + "lengthMeters": 268.54494350192834, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5344712, + 13.3304516 + ], + [ + 52.5349495, + 13.3343433 + ] + ] + }, + { + "osmId": "1237407037", + "name": null, + "lengthMeters": 355.04905775709767, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5084419, + 13.2841381 + ], + [ + 52.5088665, + 13.2844462 + ], + [ + 52.5095029, + 13.2849031 + ], + [ + 52.5097245, + 13.2850627 + ], + [ + 52.5099657, + 13.285234 + ], + [ + 52.5102283, + 13.2854106 + ], + [ + 52.5105599, + 13.2855993 + ], + [ + 52.5107362, + 13.2856902 + ], + [ + 52.5108938, + 13.2857661 + ], + [ + 52.5110415, + 13.285834 + ], + [ + 52.5112599, + 13.2859246 + ], + [ + 52.5114229, + 13.2859868 + ] + ] + }, + { + "osmId": "1237407039", + "name": null, + "lengthMeters": 476.4116301180552, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5026842, + 13.2826805 + ], + [ + 52.5028699, + 13.2826067 + ], + [ + 52.5030875, + 13.2825286 + ], + [ + 52.503243, + 13.2824892 + ], + [ + 52.5033977, + 13.2824545 + ], + [ + 52.5034234, + 13.2824492 + ], + [ + 52.5034513, + 13.2824433 + ], + [ + 52.5036971, + 13.2824077 + ], + [ + 52.5039483, + 13.2823881 + ], + [ + 52.5041469, + 13.2823901 + ], + [ + 52.5046501, + 13.2824335 + ], + [ + 52.5051668, + 13.2825134 + ], + [ + 52.5051877, + 13.2825171 + ], + [ + 52.5054587, + 13.2825736 + ], + [ + 52.5058091, + 13.282661 + ], + [ + 52.5060802, + 13.2827369 + ], + [ + 52.5062911, + 13.282806 + ], + [ + 52.5065937, + 13.2829259 + ], + [ + 52.5067802, + 13.283006 + ], + [ + 52.5068594, + 13.2830469 + ], + [ + 52.5069141, + 13.2830772 + ] + ] + }, + { + "osmId": "1238672191", + "name": "Zweigbahn Sch\u00f6neweide\u2013Spindlersfeld", + "lengthMeters": 85.46802774823422, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4475528, + 13.5609126 + ], + [ + 52.4482308, + 13.5603185 + ] + ] + }, + { + "osmId": "1238672192", + "name": "Zweigbahn Sch\u00f6neweide\u2013Spindlersfeld", + "lengthMeters": 164.25749969322823, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4526825, + 13.539238 + ], + [ + 52.4525491, + 13.5384858 + ], + [ + 52.452454, + 13.5379603 + ], + [ + 52.4523358, + 13.5372946 + ], + [ + 52.4522893, + 13.5370264 + ], + [ + 52.4522679, + 13.5369115 + ] + ] + }, + { + "osmId": "1238672193", + "name": "Zweigbahn Sch\u00f6neweide\u2013Spindlersfeld", + "lengthMeters": 895.8797148575802, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4522679, + 13.5369115 + ], + [ + 52.4522338, + 13.536735 + ], + [ + 52.4519319, + 13.535029 + ], + [ + 52.4518941, + 13.5348154 + ], + [ + 52.4518572, + 13.5346032 + ], + [ + 52.4518362, + 13.5344873 + ], + [ + 52.4513132, + 13.5315973 + ], + [ + 52.4502927, + 13.5259583 + ], + [ + 52.4499804, + 13.5242355 + ] + ] + }, + { + "osmId": "1238672194", + "name": null, + "lengthMeters": 133.2517722138464, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4700325, + 13.4708216 + ], + [ + 52.4701182, + 13.4713941 + ], + [ + 52.4702993, + 13.4727393 + ] + ] + }, + { + "osmId": "1238672195", + "name": null, + "lengthMeters": 161.6283600613997, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4703335, + 13.4727234 + ], + [ + 52.4700204, + 13.4703933 + ] + ] + }, + { + "osmId": "1238672196", + "name": null, + "lengthMeters": 205.47503562507924, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3695887, + 13.4645828 + ], + [ + 52.3697771, + 13.4648583 + ], + [ + 52.3699592, + 13.4651377 + ], + [ + 52.370082, + 13.4653628 + ], + [ + 52.3702001, + 13.4655918 + ], + [ + 52.3706635, + 13.4666158 + ], + [ + 52.3707743, + 13.4668664 + ], + [ + 52.3707809, + 13.4668815 + ] + ] + }, + { + "osmId": "1238672197", + "name": null, + "lengthMeters": 190.30074725836857, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3990309, + 13.5406401 + ], + [ + 52.3991134, + 13.5411762 + ], + [ + 52.3991767, + 13.5415658 + ], + [ + 52.3992479, + 13.5419915 + ], + [ + 52.3992558, + 13.5420389 + ], + [ + 52.3993412, + 13.5425022 + ], + [ + 52.3994019, + 13.5428049 + ], + [ + 52.3994383, + 13.5429793 + ], + [ + 52.3995121, + 13.5433304 + ] + ] + }, + { + "osmId": "1238672198", + "name": null, + "lengthMeters": 797.1016911879796, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3995121, + 13.5433304 + ], + [ + 52.399624, + 13.543857 + ], + [ + 52.3996572, + 13.5439954 + ], + [ + 52.3998278, + 13.5446602 + ], + [ + 52.4000114, + 13.5452858 + ], + [ + 52.4002116, + 13.545878 + ], + [ + 52.4004628, + 13.5465608 + ], + [ + 52.4007531, + 13.5473138 + ], + [ + 52.4007566, + 13.547323 + ], + [ + 52.4009968, + 13.5479055 + ], + [ + 52.4012426, + 13.5484625 + ], + [ + 52.4012774, + 13.5485365 + ], + [ + 52.4016235, + 13.5492599 + ], + [ + 52.4018469, + 13.5496566 + ], + [ + 52.4020529, + 13.5500023 + ], + [ + 52.4021484, + 13.5501483 + ], + [ + 52.4022797, + 13.5503319 + ], + [ + 52.4024147, + 13.5505093 + ], + [ + 52.4025545, + 13.550684 + ], + [ + 52.4028274, + 13.5509738 + ], + [ + 52.4032556, + 13.5513715 + ], + [ + 52.4036797, + 13.5517446 + ], + [ + 52.4038791, + 13.5519324 + ], + [ + 52.4040084, + 13.552067 + ] + ] + }, + { + "osmId": "1238672199", + "name": null, + "lengthMeters": 209.12242386242772, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3996288, + 13.5432768 + ], + [ + 52.3996243, + 13.5432551 + ], + [ + 52.3995717, + 13.5430033 + ], + [ + 52.399427, + 13.5422629 + ], + [ + 52.3993033, + 13.5415718 + ], + [ + 52.3992422, + 13.5412146 + ], + [ + 52.3991893, + 13.5408626 + ], + [ + 52.3991059, + 13.5403174 + ] + ] + }, + { + "osmId": "1238672200", + "name": null, + "lengthMeters": 792.145718474278, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.404028, + 13.5520149 + ], + [ + 52.4038895, + 13.5518735 + ], + [ + 52.4036953, + 13.5516949 + ], + [ + 52.4032657, + 13.5513122 + ], + [ + 52.4028457, + 13.5509316 + ], + [ + 52.4024336, + 13.5504613 + ], + [ + 52.4022713, + 13.5502435 + ], + [ + 52.402046, + 13.5499127 + ], + [ + 52.4018692, + 13.5496129 + ], + [ + 52.4016974, + 13.5493079 + ], + [ + 52.4013019, + 13.5484957 + ], + [ + 52.4012719, + 13.5484277 + ], + [ + 52.4010108, + 13.5478358 + ], + [ + 52.4007868, + 13.5472831 + ], + [ + 52.4007839, + 13.547275 + ], + [ + 52.4004519, + 13.5463625 + ], + [ + 52.4002922, + 13.5458735 + ], + [ + 52.400142, + 13.5453778 + ], + [ + 52.3999207, + 13.5445528 + ], + [ + 52.3997708, + 13.5439243 + ], + [ + 52.3997377, + 13.5437778 + ], + [ + 52.3996288, + 13.5432768 + ] + ] + }, + { + "osmId": "1238672201", + "name": null, + "lengthMeters": 199.0302447388811, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4064507, + 13.55757 + ], + [ + 52.4073479, + 13.5589981 + ], + [ + 52.4075134, + 13.559258 + ], + [ + 52.407736, + 13.559612 + ] + ] + }, + { + "osmId": "1238672202", + "name": null, + "lengthMeters": 163.66966622946777, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.407736, + 13.559612 + ], + [ + 52.4079553, + 13.559959 + ], + [ + 52.4081606, + 13.5602587 + ], + [ + 52.4083562, + 13.5605373 + ], + [ + 52.4084839, + 13.5607083 + ], + [ + 52.4088256, + 13.5611596 + ], + [ + 52.4088486, + 13.5611896 + ] + ] + }, + { + "osmId": "1238672203", + "name": null, + "lengthMeters": 198.47316478103693, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4078148, + 13.5594632 + ], + [ + 52.4067232, + 13.5577314 + ], + [ + 52.4065337, + 13.5574259 + ] + ] + }, + { + "osmId": "1238672204", + "name": null, + "lengthMeters": 597.0002863899492, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4790814, + 13.4725977 + ], + [ + 52.4793554, + 13.472146 + ], + [ + 52.4797448, + 13.4714814 + ], + [ + 52.4801456, + 13.470834 + ], + [ + 52.4806856, + 13.4700416 + ], + [ + 52.4819219, + 13.468222 + ], + [ + 52.4830185, + 13.4666089 + ] + ] + }, + { + "osmId": "1238672205", + "name": null, + "lengthMeters": 181.903543412562, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4790998, + 13.4723195 + ], + [ + 52.4789775, + 13.4725013 + ], + [ + 52.4786313, + 13.4729934 + ], + [ + 52.4781633, + 13.4736724 + ], + [ + 52.4780482, + 13.473842 + ], + [ + 52.4778976, + 13.4740595 + ], + [ + 52.4778723, + 13.4740949 + ] + ] + }, + { + "osmId": "1238672206", + "name": null, + "lengthMeters": 203.03117393529385, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4764332, + 13.4762677 + ], + [ + 52.4765522, + 13.4761108 + ], + [ + 52.4776094, + 13.4746866 + ], + [ + 52.4778434, + 13.4743635 + ] + ] + }, + { + "osmId": "1238672207", + "name": null, + "lengthMeters": 217.22320528267238, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4778723, + 13.4740949 + ], + [ + 52.477313, + 13.474918 + ], + [ + 52.4766827, + 13.4758582 + ], + [ + 52.4764096, + 13.4762198 + ] + ] + }, + { + "osmId": "1238861822", + "name": null, + "lengthMeters": 220.64645661823135, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4088491, + 13.3081333 + ], + [ + 52.4091268, + 13.3082633 + ], + [ + 52.409294, + 13.3083384 + ], + [ + 52.4095036, + 13.3084325 + ], + [ + 52.4098619, + 13.3086041 + ], + [ + 52.4100458, + 13.3086937 + ], + [ + 52.4102296, + 13.3087769 + ], + [ + 52.4103401, + 13.3088263 + ], + [ + 52.4107571, + 13.3090264 + ] + ] + }, + { + "osmId": "1238861823", + "name": null, + "lengthMeters": 105.52371753945837, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4108778, + 13.3088792 + ], + [ + 52.4107872, + 13.3088371 + ], + [ + 52.4106992, + 13.3087962 + ], + [ + 52.4102053, + 13.3085611 + ], + [ + 52.4099655, + 13.3084508 + ] + ] + }, + { + "osmId": "1238882294", + "name": null, + "lengthMeters": 279.9419881427082, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4440067, + 13.2954209 + ], + [ + 52.4438317, + 13.2948676 + ], + [ + 52.4437481, + 13.2946208 + ], + [ + 52.4434758, + 13.2938424 + ], + [ + 52.4432747, + 13.2932719 + ], + [ + 52.4427654, + 13.2918282 + ] + ] + }, + { + "osmId": "1238882295", + "name": null, + "lengthMeters": 282.1163220031943, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4426417, + 13.2919192 + ], + [ + 52.4431657, + 13.293408 + ], + [ + 52.4434818, + 13.294299 + ], + [ + 52.4439133, + 13.295521 + ] + ] + }, + { + "osmId": "1238882296", + "name": null, + "lengthMeters": 160.3618503260618, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4367243, + 13.2748365 + ], + [ + 52.4365967, + 13.2744396 + ], + [ + 52.4364446, + 13.2739864 + ], + [ + 52.4362683, + 13.2734882 + ], + [ + 52.4361609, + 13.2731786 + ], + [ + 52.436017, + 13.2727753 + ] + ] + }, + { + "osmId": "1238882297", + "name": null, + "lengthMeters": 725.2210978615802, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.436017, + 13.2727753 + ], + [ + 52.4359379, + 13.2725554 + ], + [ + 52.4358052, + 13.2722093 + ], + [ + 52.4355859, + 13.2716313 + ], + [ + 52.4350884, + 13.2703428 + ], + [ + 52.434657, + 13.269202 + ], + [ + 52.4343517, + 13.2683522 + ], + [ + 52.4333456, + 13.2654956 + ], + [ + 52.4329734, + 13.2644366 + ], + [ + 52.4326755, + 13.2635901 + ] + ] + }, + { + "osmId": "1238882298", + "name": null, + "lengthMeters": 175.6213691964555, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4358579, + 13.2727246 + ], + [ + 52.4360776, + 13.2733476 + ], + [ + 52.4362119, + 13.2737387 + ], + [ + 52.4363446, + 13.2741127 + ], + [ + 52.4366508, + 13.2749651 + ] + ] + }, + { + "osmId": "1238882299", + "name": null, + "lengthMeters": 783.7520746398045, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4323277, + 13.2627182 + ], + [ + 52.4326179, + 13.2635391 + ], + [ + 52.4329399, + 13.2644536 + ], + [ + 52.4331851, + 13.2651489 + ], + [ + 52.433984, + 13.2674176 + ], + [ + 52.4350351, + 13.2703952 + ], + [ + 52.4356706, + 13.2721786 + ], + [ + 52.4358579, + 13.2727246 + ] + ] + }, + { + "osmId": "1238979869", + "name": null, + "lengthMeters": 219.36734479201115, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3945037, + 13.1296788 + ], + [ + 52.3943518, + 13.1281261 + ], + [ + 52.3942101, + 13.126482 + ] + ] + }, + { + "osmId": "1238979870", + "name": null, + "lengthMeters": 78.64975840319492, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3942101, + 13.126482 + ], + [ + 52.394112, + 13.1253341 + ] + ] + }, + { + "osmId": "1238979871", + "name": null, + "lengthMeters": 204.7183959201322, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3939553, + 13.1229816 + ], + [ + 52.3941352, + 13.124898 + ], + [ + 52.3942449, + 13.125961 + ] + ] + }, + { + "osmId": "1238979872", + "name": null, + "lengthMeters": 206.37675977729208, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3943452, + 13.1259589 + ], + [ + 52.3942168, + 13.1248637 + ], + [ + 52.3940026, + 13.1229697 + ] + ] + }, + { + "osmId": "1238979873", + "name": null, + "lengthMeters": 188.399112360016, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3942449, + 13.125961 + ], + [ + 52.3943823, + 13.1271851 + ], + [ + 52.3944804, + 13.1280947 + ], + [ + 52.3945458, + 13.1286934 + ] + ] + }, + { + "osmId": "1238979874", + "name": null, + "lengthMeters": 185.98918672204098, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3946646, + 13.1286492 + ], + [ + 52.394615, + 13.1281517 + ], + [ + 52.3944905, + 13.1271603 + ], + [ + 52.3943452, + 13.1259589 + ] + ] + }, + { + "osmId": "1239255970", + "name": "Kremmener Bahn", + "lengthMeters": 132.1449470787943, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5776666, + 13.3520336 + ], + [ + 52.5776772, + 13.3519416 + ], + [ + 52.5777436, + 13.3513628 + ], + [ + 52.5778107, + 13.3507735 + ], + [ + 52.5778484, + 13.3504418 + ], + [ + 52.5778521, + 13.3504091 + ], + [ + 52.577869, + 13.3502606 + ], + [ + 52.577887, + 13.3501119 + ] + ] + }, + { + "osmId": "1239255971", + "name": "Kremmener Bahn", + "lengthMeters": 114.04392820842212, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5780679, + 13.3299898 + ], + [ + 52.5780642, + 13.329858 + ], + [ + 52.5780554, + 13.3295469 + ], + [ + 52.5780444, + 13.3291599 + ], + [ + 52.5780204, + 13.3283253 + ], + [ + 52.5780197, + 13.3283039 + ] + ] + }, + { + "osmId": "1239255972", + "name": "Kremmener Bahn", + "lengthMeters": 189.29053967174377, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5781517, + 13.3327877 + ], + [ + 52.5781493, + 13.3326353 + ], + [ + 52.5781482, + 13.3325638 + ], + [ + 52.5781108, + 13.3313648 + ], + [ + 52.5780807, + 13.3304011 + ], + [ + 52.5780679, + 13.3299898 + ] + ] + }, + { + "osmId": "1239255973", + "name": "Kremmener Bahn", + "lengthMeters": 164.40518729250832, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5777135, + 13.3180858 + ], + [ + 52.5777106, + 13.3179846 + ], + [ + 52.5776944, + 13.3174294 + ], + [ + 52.5776678, + 13.3165114 + ], + [ + 52.5776634, + 13.3163293 + ], + [ + 52.5776622, + 13.3162877 + ], + [ + 52.5776459, + 13.3156553 + ] + ] + }, + { + "osmId": "1239408508", + "name": null, + "lengthMeters": 87.23987448882903, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6046252, + 13.4576116 + ], + [ + 52.6044265, + 13.4574653 + ], + [ + 52.6041894, + 13.4572662 + ], + [ + 52.6039295, + 13.457017 + ] + ] + }, + { + "osmId": "1239408509", + "name": null, + "lengthMeters": 188.49299099084766, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6643648, + 13.3418404 + ], + [ + 52.6643839, + 13.341752 + ], + [ + 52.6644792, + 13.341311 + ], + [ + 52.6645744, + 13.3408706 + ], + [ + 52.6648158, + 13.3397541 + ], + [ + 52.6648456, + 13.3396163 + ], + [ + 52.664898, + 13.3393741 + ], + [ + 52.664934, + 13.3392076 + ] + ] + }, + { + "osmId": "1239408510", + "name": null, + "lengthMeters": 179.32313592810613, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6648024, + 13.3392731 + ], + [ + 52.6647829, + 13.3393632 + ], + [ + 52.6646099, + 13.3401632 + ], + [ + 52.664527, + 13.3405462 + ], + [ + 52.6644664, + 13.3408265 + ], + [ + 52.6643738, + 13.3412548 + ], + [ + 52.6642809, + 13.341684 + ], + [ + 52.6642607, + 13.3417777 + ] + ] + }, + { + "osmId": "1239408511", + "name": null, + "lengthMeters": 241.4370409742168, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6642607, + 13.3417777 + ], + [ + 52.6642561, + 13.3417997 + ], + [ + 52.664201, + 13.3420618 + ], + [ + 52.6641495, + 13.34232 + ], + [ + 52.6641009, + 13.3425747 + ], + [ + 52.6640548, + 13.3428315 + ], + [ + 52.6640116, + 13.3430855 + ], + [ + 52.6639717, + 13.3433389 + ], + [ + 52.6639314, + 13.3435936 + ], + [ + 52.6638915, + 13.3438501 + ], + [ + 52.6638492, + 13.3441051 + ], + [ + 52.6638006, + 13.344382 + ], + [ + 52.6637479, + 13.344659 + ], + [ + 52.6636367, + 13.3452053 + ] + ] + }, + { + "osmId": "1239408512", + "name": null, + "lengthMeters": 240.9334921078643, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6636367, + 13.3452053 + ], + [ + 52.6637379, + 13.3447376 + ], + [ + 52.6643597, + 13.3418641 + ], + [ + 52.6643648, + 13.3418404 + ] + ] + }, + { + "osmId": "1239408513", + "name": null, + "lengthMeters": 328.31926434616554, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.670453, + 13.3194217 + ], + [ + 52.670741, + 13.3183875 + ], + [ + 52.6716045, + 13.3154003 + ], + [ + 52.6717134, + 13.3150185 + ] + ] + }, + { + "osmId": "1239408514", + "name": null, + "lengthMeters": 148.5060801446078, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6698799, + 13.321411 + ], + [ + 52.6701716, + 13.3204106 + ], + [ + 52.6701767, + 13.3203925 + ], + [ + 52.6703182, + 13.3198959 + ], + [ + 52.6704379, + 13.3194759 + ], + [ + 52.670453, + 13.3194217 + ] + ] + }, + { + "osmId": "1239408515", + "name": null, + "lengthMeters": 170.64558365821426, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6703908, + 13.3193171 + ], + [ + 52.6701828, + 13.3200049 + ], + [ + 52.6699855, + 13.320682 + ], + [ + 52.669823, + 13.3212436 + ], + [ + 52.6698175, + 13.3212625 + ], + [ + 52.6697215, + 13.3215944 + ] + ] + }, + { + "osmId": "1239408516", + "name": null, + "lengthMeters": 325.0072938377225, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6716731, + 13.3149861 + ], + [ + 52.6715641, + 13.315366 + ], + [ + 52.6708546, + 13.317815 + ], + [ + 52.6707152, + 13.3182769 + ], + [ + 52.670574, + 13.3187377 + ], + [ + 52.6703908, + 13.3193171 + ] + ] + }, + { + "osmId": "1239408517", + "name": null, + "lengthMeters": 197.98091418410013, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5811078, + 13.3634941 + ], + [ + 52.5812964, + 13.3631324 + ], + [ + 52.5813495, + 13.363033 + ], + [ + 52.5817476, + 13.3622878 + ], + [ + 52.5818011, + 13.3621847 + ], + [ + 52.5820132, + 13.3617763 + ], + [ + 52.5820309, + 13.3617427 + ], + [ + 52.5822309, + 13.3613634 + ], + [ + 52.5822745, + 13.3612807 + ] + ] + }, + { + "osmId": "1239408518", + "name": null, + "lengthMeters": 201.64431831713816, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5821909, + 13.3611575 + ], + [ + 52.5821489, + 13.3612327 + ], + [ + 52.5819411, + 13.3616051 + ], + [ + 52.5819223, + 13.3616388 + ], + [ + 52.5817053, + 13.3620464 + ], + [ + 52.5816602, + 13.3621312 + ], + [ + 52.5814336, + 13.3625631 + ], + [ + 52.5812769, + 13.362875 + ], + [ + 52.5812118, + 13.3630046 + ], + [ + 52.5812092, + 13.3630101 + ], + [ + 52.5810187, + 13.3634323 + ] + ] + }, + { + "osmId": "1239408519", + "name": null, + "lengthMeters": 350.987903379679, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6054966, + 13.3219904 + ], + [ + 52.6052651, + 13.3222932 + ], + [ + 52.6049685, + 13.3226878 + ], + [ + 52.6043932, + 13.3234082 + ], + [ + 52.603592, + 13.3243885 + ], + [ + 52.602974, + 13.3251129 + ] + ] + }, + { + "osmId": "1239408520", + "name": null, + "lengthMeters": 100.79553540202329, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6055645, + 13.3221259 + ], + [ + 52.6056307, + 13.3220515 + ], + [ + 52.6056401, + 13.3220411 + ], + [ + 52.6059105, + 13.3217374 + ], + [ + 52.6060825, + 13.3215442 + ], + [ + 52.60612, + 13.3215018 + ], + [ + 52.6063129, + 13.3212837 + ] + ] + }, + { + "osmId": "1239408521", + "name": null, + "lengthMeters": 247.25674098163498, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6200052, + 13.3048741 + ], + [ + 52.6194889, + 13.3054437 + ], + [ + 52.6194677, + 13.3054621 + ], + [ + 52.619417, + 13.3055119 + ], + [ + 52.6192346, + 13.3056724 + ], + [ + 52.6190121, + 13.3058761 + ], + [ + 52.6183602, + 13.3064546 + ], + [ + 52.6180808, + 13.3067026 + ] + ] + }, + { + "osmId": "1239408522", + "name": null, + "lengthMeters": 232.02557613176413, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6182777, + 13.3067812 + ], + [ + 52.6185136, + 13.3065692 + ], + [ + 52.618905, + 13.3062176 + ], + [ + 52.6195429, + 13.3056195 + ], + [ + 52.619857, + 13.3052941 + ], + [ + 52.6200738, + 13.3050373 + ] + ] + }, + { + "osmId": "1239408523", + "name": null, + "lengthMeters": 408.7124038805331, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6136552, + 13.3122935 + ], + [ + 52.6144829, + 13.3112604 + ], + [ + 52.6148967, + 13.3107332 + ], + [ + 52.6153031, + 13.3102152 + ], + [ + 52.6154529, + 13.3100242 + ], + [ + 52.6154966, + 13.3099685 + ], + [ + 52.6160557, + 13.3092701 + ], + [ + 52.6161651, + 13.309141 + ], + [ + 52.6161692, + 13.3091361 + ], + [ + 52.616587, + 13.308643 + ] + ] + }, + { + "osmId": "1239408524", + "name": null, + "lengthMeters": 414.0235328783148, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6165523, + 13.308443 + ], + [ + 52.6162688, + 13.308767 + ], + [ + 52.6159875, + 13.309123 + ], + [ + 52.615455, + 13.3098699 + ], + [ + 52.61544, + 13.3098915 + ], + [ + 52.6154039, + 13.3099412 + ], + [ + 52.6148633, + 13.3106859 + ], + [ + 52.6144583, + 13.3112149 + ], + [ + 52.6136333, + 13.3122456 + ] + ] + }, + { + "osmId": "1239408525", + "name": null, + "lengthMeters": 223.8452884490228, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6328341, + 13.2898545 + ], + [ + 52.6335197, + 13.2890585 + ], + [ + 52.6339972, + 13.2884958 + ], + [ + 52.6344739, + 13.2879305 + ] + ] + }, + { + "osmId": "1239408526", + "name": null, + "lengthMeters": 227.4787596822877, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6344739, + 13.2879305 + ], + [ + 52.6343563, + 13.288062 + ], + [ + 52.6343504, + 13.2880665 + ], + [ + 52.6339477, + 13.2884394 + ], + [ + 52.6336709, + 13.2886949 + ], + [ + 52.6334064, + 13.2889473 + ], + [ + 52.6332233, + 13.2891318 + ], + [ + 52.6330444, + 13.2893294 + ], + [ + 52.6328876, + 13.2895126 + ], + [ + 52.6327348, + 13.2896988 + ] + ] + }, + { + "osmId": "1239456969", + "name": "Westtangente", + "lengthMeters": 1715.7674937048089, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1259026, + 11.5028462 + ], + [ + 48.1259586, + 11.5028458 + ], + [ + 48.1261245, + 11.5028366 + ], + [ + 48.126206, + 11.502829 + ], + [ + 48.126374, + 11.5028104 + ], + [ + 48.1264488, + 11.5028021 + ], + [ + 48.1265101, + 11.5027953 + ], + [ + 48.1269436, + 11.5027761 + ], + [ + 48.127627, + 11.5028005 + ], + [ + 48.1277112, + 11.5027969 + ], + [ + 48.1279276, + 11.5027877 + ], + [ + 48.1290615, + 11.5028251 + ], + [ + 48.1290909, + 11.5028261 + ], + [ + 48.1305788, + 11.5028657 + ], + [ + 48.1307963, + 11.5028727 + ], + [ + 48.130927, + 11.5028784 + ], + [ + 48.1310205, + 11.5028825 + ], + [ + 48.1310877, + 11.5028855 + ], + [ + 48.1312036, + 11.5028894 + ], + [ + 48.1312606, + 11.5028913 + ], + [ + 48.1312973, + 11.5028925 + ], + [ + 48.1316716, + 11.5028925 + ], + [ + 48.131886, + 11.5029018 + ], + [ + 48.132282, + 11.5028994 + ], + [ + 48.1332564, + 11.5029256 + ], + [ + 48.1334546, + 11.5029343 + ], + [ + 48.1341462, + 11.50293 + ], + [ + 48.1352727, + 11.5029719 + ], + [ + 48.1353893, + 11.5029759 + ], + [ + 48.1354206, + 11.5029765 + ], + [ + 48.1355441, + 11.5029813 + ], + [ + 48.1357164, + 11.5029913 + ], + [ + 48.1360713, + 11.5030129 + ], + [ + 48.1370295, + 11.5030391 + ], + [ + 48.1378813, + 11.5030827 + ], + [ + 48.1386633, + 11.5031067 + ], + [ + 48.1393344, + 11.5031187 + ], + [ + 48.1393942, + 11.5031198 + ], + [ + 48.1394105, + 11.5031201 + ], + [ + 48.1395563, + 11.5031231 + ], + [ + 48.1396221, + 11.5031254 + ], + [ + 48.1396829, + 11.5031285 + ], + [ + 48.1397081, + 11.5031294 + ], + [ + 48.1398691, + 11.5031342 + ], + [ + 48.1399825, + 11.5031374 + ], + [ + 48.1413281, + 11.5031748 + ] + ] + }, + { + "osmId": "1239456970", + "name": "Westtangente", + "lengthMeters": 1714.4267347984878, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1413311, + 11.5031266 + ], + [ + 48.1402856, + 11.5031056 + ], + [ + 48.1399816, + 11.5030977 + ], + [ + 48.1398682, + 11.5030948 + ], + [ + 48.1398277, + 11.5030943 + ], + [ + 48.1397083, + 11.5030914 + ], + [ + 48.1396824, + 11.5030906 + ], + [ + 48.1396221, + 11.5030865 + ], + [ + 48.1395558, + 11.5030842 + ], + [ + 48.13941, + 11.5030785 + ], + [ + 48.1393291, + 11.5030753 + ], + [ + 48.1370301, + 11.5029827 + ], + [ + 48.1360462, + 11.5029564 + ], + [ + 48.1355441, + 11.5029389 + ], + [ + 48.1354186, + 11.5029345 + ], + [ + 48.1353999, + 11.5029339 + ], + [ + 48.1352724, + 11.5029294 + ], + [ + 48.1350688, + 11.5029223 + ], + [ + 48.1332582, + 11.5028665 + ], + [ + 48.1314997, + 11.5028124 + ], + [ + 48.1312051, + 11.5028058 + ], + [ + 48.1310051, + 11.5028002 + ], + [ + 48.1309278, + 11.5027983 + ], + [ + 48.1306429, + 11.5027912 + ], + [ + 48.1297755, + 11.5027645 + ], + [ + 48.1290616, + 11.5027466 + ], + [ + 48.1280511, + 11.5027213 + ], + [ + 48.1277126, + 11.5027254 + ], + [ + 48.1273515, + 11.5027298 + ], + [ + 48.1269455, + 11.5027347 + ], + [ + 48.1264438, + 11.5027577 + ], + [ + 48.1264413, + 11.5027578 + ], + [ + 48.1263872, + 11.502759 + ], + [ + 48.126202, + 11.5027633 + ], + [ + 48.126119, + 11.5027609 + ], + [ + 48.1259515, + 11.5027632 + ], + [ + 48.1259161, + 11.502764 + ] + ] + }, + { + "osmId": "1239772044", + "name": null, + "lengthMeters": 699.6050596086029, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5569695, + 13.5528459 + ], + [ + 52.5556278, + 13.5517124 + ], + [ + 52.5513998, + 13.5480331 + ] + ] + }, + { + "osmId": "1239772045", + "name": null, + "lengthMeters": 164.87286678751195, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5582835, + 13.5539753 + ], + [ + 52.5573651, + 13.5531686 + ], + [ + 52.5570451, + 13.5529098 + ], + [ + 52.5569695, + 13.5528459 + ] + ] + }, + { + "osmId": "1239772046", + "name": null, + "lengthMeters": 165.69707953715385, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5569169, + 13.5530328 + ], + [ + 52.5581489, + 13.5540922 + ], + [ + 52.5581734, + 13.5541133 + ], + [ + 52.5582374, + 13.5541686 + ] + ] + }, + { + "osmId": "1239772047", + "name": null, + "lengthMeters": 700.0030329131581, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.551343, + 13.5482202 + ], + [ + 52.5547729, + 13.5511786 + ], + [ + 52.5555508, + 13.5518518 + ], + [ + 52.5569169, + 13.5530328 + ] + ] + }, + { + "osmId": "1239772048", + "name": null, + "lengthMeters": 164.65925630487536, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5513998, + 13.5480331 + ], + [ + 52.550278, + 13.5470665 + ], + [ + 52.5500883, + 13.5469023 + ] + ] + }, + { + "osmId": "1239772049", + "name": null, + "lengthMeters": 705.3901679201933, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500883, + 13.5469023 + ], + [ + 52.5457257, + 13.5431579 + ], + [ + 52.5450862, + 13.5425641 + ], + [ + 52.5446136, + 13.5421284 + ], + [ + 52.5444853, + 13.5420123 + ] + ] + }, + { + "osmId": "1239772050", + "name": null, + "lengthMeters": 164.77507099533904, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500314, + 13.5470861 + ], + [ + 52.5510906, + 13.5480076 + ], + [ + 52.551343, + 13.5482202 + ] + ] + }, + { + "osmId": "1239772051", + "name": null, + "lengthMeters": 704.2412891516642, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5444536, + 13.5421531 + ], + [ + 52.5450403, + 13.5426752 + ], + [ + 52.5456853, + 13.5432661 + ], + [ + 52.5500314, + 13.5470861 + ] + ] + }, + { + "osmId": "1239772052", + "name": null, + "lengthMeters": 194.38166861243343, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5444853, + 13.5420123 + ], + [ + 52.5437511, + 13.5413351 + ], + [ + 52.5431633, + 13.5408064 + ], + [ + 52.5429543, + 13.5406251 + ] + ] + }, + { + "osmId": "1239772053", + "name": null, + "lengthMeters": 204.87415152900874, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5428199, + 13.5407523 + ], + [ + 52.5434688, + 13.5413076 + ], + [ + 52.5442953, + 13.5420179 + ], + [ + 52.5444536, + 13.5421531 + ] + ] + }, + { + "osmId": "1239772054", + "name": null, + "lengthMeters": 553.2673770728479, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5582374, + 13.5541686 + ], + [ + 52.5593649, + 13.5551349 + ], + [ + 52.5599973, + 13.5556416 + ], + [ + 52.5604483, + 13.5559874 + ], + [ + 52.5609493, + 13.556396 + ], + [ + 52.5614877, + 13.5568493 + ], + [ + 52.5618847, + 13.5571858 + ], + [ + 52.5626723, + 13.5578769 + ] + ] + }, + { + "osmId": "1239772055", + "name": null, + "lengthMeters": 776.3021124851151, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5429543, + 13.5406251 + ], + [ + 52.5423422, + 13.5401247 + ], + [ + 52.5416763, + 13.5395796 + ], + [ + 52.5414533, + 13.5393919 + ], + [ + 52.5403207, + 13.5384158 + ], + [ + 52.5390096, + 13.5372753 + ], + [ + 52.5386262, + 13.5369553 + ], + [ + 52.5384374, + 13.5368062 + ], + [ + 52.5381762, + 13.5366151 + ], + [ + 52.5379166, + 13.5364426 + ], + [ + 52.5376879, + 13.5362971 + ], + [ + 52.5373919, + 13.5361278 + ], + [ + 52.5371797, + 13.5360218 + ], + [ + 52.5369832, + 13.5359275 + ], + [ + 52.536644, + 13.535779 + ] + ] + }, + { + "osmId": "1239772056", + "name": null, + "lengthMeters": 354.16736666327733, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262476, + 13.5369475 + ], + [ + 52.5263066, + 13.5369254 + ], + [ + 52.5264079, + 13.5368895 + ], + [ + 52.5265156, + 13.5368518 + ], + [ + 52.5269903, + 13.5366761 + ], + [ + 52.5271259, + 13.536626 + ], + [ + 52.5277317, + 13.5364043 + ], + [ + 52.5277567, + 13.5363955 + ], + [ + 52.5278255, + 13.5363706 + ], + [ + 52.5280466, + 13.536292 + ], + [ + 52.5282697, + 13.5362102 + ], + [ + 52.5283729, + 13.5361747 + ], + [ + 52.5285943, + 13.5360986 + ], + [ + 52.5288669, + 13.536023 + ], + [ + 52.5292494, + 13.5359399 + ], + [ + 52.5293683, + 13.5359141 + ] + ] + }, + { + "osmId": "1239772057", + "name": null, + "lengthMeters": 78.47387034796128, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5262242, + 13.5367611 + ], + [ + 52.5255358, + 13.5370166 + ] + ] + }, + { + "osmId": "1239772058", + "name": null, + "lengthMeters": 169.51374412675753, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5667927, + 13.5117179 + ], + [ + 52.5662395, + 13.5124218 + ], + [ + 52.5659105, + 13.5128225 + ], + [ + 52.5659034, + 13.5128312 + ], + [ + 52.5656816, + 13.5131327 + ], + [ + 52.5655897, + 13.5132576 + ] + ] + }, + { + "osmId": "1239772059", + "name": null, + "lengthMeters": 81.33281125766898, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5662962, + 13.5126246 + ], + [ + 52.5665369, + 13.5123144 + ], + [ + 52.5667729, + 13.5119981 + ], + [ + 52.5668684, + 13.5118751 + ] + ] + }, + { + "osmId": "1239772060", + "name": null, + "lengthMeters": 86.54437461269504, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5656815, + 13.51341 + ], + [ + 52.5662962, + 13.5126246 + ] + ] + }, + { + "osmId": "1239772061", + "name": null, + "lengthMeters": 257.2920501357966, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5685903, + 13.5093216 + ], + [ + 52.5678905, + 13.5102199 + ], + [ + 52.5674617, + 13.5108066 + ], + [ + 52.567386, + 13.5109127 + ], + [ + 52.5671685, + 13.5112107 + ], + [ + 52.5668059, + 13.5117006 + ], + [ + 52.5667927, + 13.5117179 + ] + ] + }, + { + "osmId": "1240008423", + "name": null, + "lengthMeters": 231.1930277256912, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5205966, + 13.6986624 + ], + [ + 52.5206623, + 13.6994089 + ], + [ + 52.5208741, + 13.7016949 + ], + [ + 52.5209114, + 13.7020399 + ] + ] + }, + { + "osmId": "1240008424", + "name": null, + "lengthMeters": 820.6013564878365, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5209114, + 13.7020399 + ], + [ + 52.5209542, + 13.7026275 + ], + [ + 52.5209947, + 13.703446 + ], + [ + 52.5210103, + 13.7044194 + ], + [ + 52.521013, + 13.7045872 + ], + [ + 52.5210218, + 13.7047669 + ], + [ + 52.5210354, + 13.705043 + ], + [ + 52.5210702, + 13.7055364 + ], + [ + 52.5218673, + 13.7140563 + ] + ] + }, + { + "osmId": "1240008425", + "name": null, + "lengthMeters": 210.01828567526908, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5184158, + 13.6751337 + ], + [ + 52.5181921, + 13.6729032 + ], + [ + 52.5180977, + 13.6720743 + ] + ] + }, + { + "osmId": "1240008426", + "name": null, + "lengthMeters": 217.94939139704718, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.518214, + 13.6750754 + ], + [ + 52.5183648, + 13.6765694 + ], + [ + 52.5185229, + 13.6782562 + ] + ] + }, + { + "osmId": "1240008427", + "name": null, + "lengthMeters": 165.46452251751248, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.515477, + 13.6462735 + ], + [ + 52.5156477, + 13.6480865 + ], + [ + 52.515703, + 13.6486904 + ] + ] + }, + { + "osmId": "1240008428", + "name": null, + "lengthMeters": 213.41673167481224, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5158453, + 13.6489609 + ], + [ + 52.5158153, + 13.6485127 + ], + [ + 52.5156381, + 13.6466028 + ], + [ + 52.5155668, + 13.6458407 + ] + ] + }, + { + "osmId": "1240008429", + "name": null, + "lengthMeters": 1589.499964773597, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.515703, + 13.6486904 + ], + [ + 52.5157551, + 13.6492665 + ], + [ + 52.5157937, + 13.6497428 + ], + [ + 52.5158048, + 13.6498577 + ], + [ + 52.5161491, + 13.6535154 + ], + [ + 52.5168677, + 13.661393 + ], + [ + 52.5178714, + 13.67134 + ], + [ + 52.5179141, + 13.6718973 + ] + ] + }, + { + "osmId": "1240008430", + "name": null, + "lengthMeters": 1569.4792169223267, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5180747, + 13.6718534 + ], + [ + 52.5177281, + 13.668954 + ], + [ + 52.5175545, + 13.6676714 + ], + [ + 52.5174826, + 13.6670413 + ], + [ + 52.5169065, + 13.6614002 + ], + [ + 52.5161837, + 13.6535051 + ], + [ + 52.5159856, + 13.6513614 + ], + [ + 52.515948, + 13.6509154 + ], + [ + 52.5159237, + 13.65062 + ], + [ + 52.515883, + 13.6498125 + ], + [ + 52.5158799, + 13.6496948 + ], + [ + 52.5158638, + 13.6492476 + ], + [ + 52.5158453, + 13.6489609 + ] + ] + }, + { + "osmId": "1240008431", + "name": null, + "lengthMeters": 348.0109705745417, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5122152, + 13.5837078 + ], + [ + 52.5121321, + 13.5874181 + ], + [ + 52.5121001, + 13.5888469 + ] + ] + }, + { + "osmId": "1240008432", + "name": null, + "lengthMeters": 266.72248401905506, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121767, + 13.5890295 + ], + [ + 52.5121695, + 13.5883975 + ], + [ + 52.5121675, + 13.5879364 + ], + [ + 52.512173, + 13.5874616 + ], + [ + 52.5122255, + 13.5850899 + ] + ] + }, + { + "osmId": "1240008433", + "name": null, + "lengthMeters": 180.88163050599653, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121001, + 13.5888469 + ], + [ + 52.512051, + 13.5911011 + ], + [ + 52.5120406, + 13.591518 + ] + ] + }, + { + "osmId": "1240008434", + "name": null, + "lengthMeters": 175.08061666922444, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5121596, + 13.5916159 + ], + [ + 52.5121736, + 13.5908796 + ], + [ + 52.5121828, + 13.5904916 + ], + [ + 52.512185, + 13.5902536 + ], + [ + 52.5121836, + 13.5897593 + ], + [ + 52.5121783, + 13.5892643 + ], + [ + 52.5121778, + 13.5891827 + ], + [ + 52.5121767, + 13.5890295 + ] + ] + }, + { + "osmId": "1240008435", + "name": null, + "lengthMeters": 226.847720238879, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5130446, + 13.5580398 + ], + [ + 52.513047, + 13.5579593 + ], + [ + 52.5130663, + 13.5573204 + ], + [ + 52.5130909, + 13.5565024 + ], + [ + 52.5131048, + 13.5560419 + ], + [ + 52.5131187, + 13.5555405 + ], + [ + 52.5131228, + 13.5553929 + ], + [ + 52.5131259, + 13.5553052 + ], + [ + 52.5131322, + 13.5551031 + ], + [ + 52.5131455, + 13.5546917 + ] + ] + }, + { + "osmId": "1240008436", + "name": null, + "lengthMeters": 977.9954118272888, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5127718, + 13.5724724 + ], + [ + 52.5127157, + 13.5712825 + ], + [ + 52.5127012, + 13.5708906 + ], + [ + 52.5126908, + 13.5704922 + ], + [ + 52.5126902, + 13.5694592 + ], + [ + 52.5127249, + 13.5682455 + ], + [ + 52.512893, + 13.5627671 + ], + [ + 52.5129253, + 13.5617777 + ], + [ + 52.5129529, + 13.5609325 + ], + [ + 52.5130104, + 13.5591721 + ], + [ + 52.5130403, + 13.5581822 + ], + [ + 52.5130446, + 13.5580398 + ] + ] + }, + { + "osmId": "1240008437", + "name": null, + "lengthMeters": 238.96853641919975, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5131126, + 13.5545797 + ], + [ + 52.5131036, + 13.5548637 + ], + [ + 52.5130923, + 13.555219 + ], + [ + 52.5130811, + 13.5555704 + ], + [ + 52.5130571, + 13.5563237 + ], + [ + 52.5130346, + 13.5570304 + ], + [ + 52.5130003, + 13.5581062 + ] + ] + }, + { + "osmId": "1240008438", + "name": null, + "lengthMeters": 1038.323352238631, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5130003, + 13.5581062 + ], + [ + 52.5129663, + 13.5591706 + ], + [ + 52.5129038, + 13.5613067 + ], + [ + 52.5128611, + 13.5627646 + ], + [ + 52.5126913, + 13.5682351 + ], + [ + 52.5126462, + 13.5691358 + ], + [ + 52.5126211, + 13.5695067 + ], + [ + 52.5125808, + 13.5700419 + ], + [ + 52.5125023, + 13.5711985 + ], + [ + 52.512478, + 13.5717067 + ], + [ + 52.5124625, + 13.5722813 + ], + [ + 52.5124575, + 13.5734183 + ] + ] + }, + { + "osmId": "1240251356", + "name": null, + "lengthMeters": 389.7721980991668, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5713305, + 9.9338789 + ], + [ + 53.571168, + 9.9339567 + ], + [ + 53.5710768, + 9.9339929 + ], + [ + 53.5709044, + 9.9340489 + ], + [ + 53.5707133, + 9.9341029 + ], + [ + 53.5704835, + 9.9341498 + ], + [ + 53.5699842, + 9.9342293 + ], + [ + 53.5698284, + 9.934252 + ], + [ + 53.5697736, + 9.9342607 + ], + [ + 53.5687594, + 9.9343878 + ], + [ + 53.5678495, + 9.9344889 + ] + ] + }, + { + "osmId": "1240251358", + "name": null, + "lengthMeters": 176.08923268780762, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5713305, + 9.9338789 + ], + [ + 53.5714201, + 9.9338367 + ], + [ + 53.5715041, + 9.9337884 + ], + [ + 53.5715957, + 9.9337374 + ], + [ + 53.5717804, + 9.9336187 + ], + [ + 53.5728005, + 9.9328919 + ] + ] + }, + { + "osmId": "1240251360", + "name": null, + "lengthMeters": 270.25622285289876, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.571004, + 9.933899 + ], + [ + 53.5711712, + 9.9338488 + ], + [ + 53.571301, + 9.9337978 + ], + [ + 53.5714109, + 9.9337502 + ], + [ + 53.5714925, + 9.9337099 + ], + [ + 53.5716227, + 9.9336308 + ], + [ + 53.5717255, + 9.9335618 + ], + [ + 53.5723773, + 9.9330839 + ], + [ + 53.5726198, + 9.9329161 + ], + [ + 53.5728574, + 9.9327483 + ], + [ + 53.5730001, + 9.9326491 + ], + [ + 53.5731649, + 9.9325542 + ], + [ + 53.5732794, + 9.932491 + ] + ] + }, + { + "osmId": "1240251361", + "name": null, + "lengthMeters": 85.62367261849725, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5714145, + 9.9336576 + ], + [ + 53.5711469, + 9.9338253 + ], + [ + 53.5710665, + 9.9338682 + ], + [ + 53.571004, + 9.933899 + ], + [ + 53.5709191, + 9.9339312 + ], + [ + 53.570785, + 9.9339708 + ], + [ + 53.570675, + 9.9340051 + ] + ] + }, + { + "osmId": "1240251362", + "name": null, + "lengthMeters": 636.4595092796067, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5725356, + 9.932904 + ], + [ + 53.5723805, + 9.933014 + ], + [ + 53.5720086, + 9.9332801 + ], + [ + 53.5717944, + 9.933433 + ], + [ + 53.5716649, + 9.9335182 + ], + [ + 53.5715244, + 9.9335986 + ], + [ + 53.5714145, + 9.9336576 + ], + [ + 53.5712413, + 9.9337374 + ], + [ + 53.5710868, + 9.9337998 + ], + [ + 53.5709538, + 9.9338447 + ], + [ + 53.570771, + 9.9338984 + ], + [ + 53.5706671, + 9.9339212 + ], + [ + 53.5705596, + 9.933942 + ], + [ + 53.57046, + 9.933956 + ], + [ + 53.5702677, + 9.9339795 + ], + [ + 53.5699236, + 9.9340171 + ], + [ + 53.5698812, + 9.9340224 + ], + [ + 53.5698654, + 9.9340236 + ], + [ + 53.5697648, + 9.934037 + ], + [ + 53.5687516, + 9.9341555 + ], + [ + 53.5680604, + 9.9342501 + ], + [ + 53.567612, + 9.9343094 + ], + [ + 53.566928, + 9.9344288 + ] + ] + }, + { + "osmId": "1240334207", + "name": null, + "lengthMeters": 90.33871605617264, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.431763, + 13.7465375 + ], + [ + 52.4318233, + 13.7463704 + ], + [ + 52.4319909, + 13.7458859 + ], + [ + 52.4321194, + 13.7454692 + ], + [ + 52.4321478, + 13.7453648 + ] + ] + }, + { + "osmId": "1240503993", + "name": null, + "lengthMeters": 163.55669052853017, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6681795, + 13.5638508 + ], + [ + 52.668225, + 13.5640383 + ], + [ + 52.6682515, + 13.5641477 + ], + [ + 52.6683617, + 13.5646028 + ], + [ + 52.6684262, + 13.564871 + ], + [ + 52.6684791, + 13.5650914 + ], + [ + 52.668506, + 13.5652035 + ], + [ + 52.6686013, + 13.5656003 + ], + [ + 52.6686269, + 13.5657069 + ], + [ + 52.6687137, + 13.5660747 + ], + [ + 52.6687211, + 13.5661059 + ] + ] + }, + { + "osmId": "1240503994", + "name": null, + "lengthMeters": 394.4140003154031, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6669098, + 13.5583895 + ], + [ + 52.6671244, + 13.5592934 + ], + [ + 52.6673342, + 13.5602188 + ], + [ + 52.6675457, + 13.5611334 + ], + [ + 52.6677643, + 13.5620498 + ], + [ + 52.6681795, + 13.5638508 + ] + ] + }, + { + "osmId": "1240503995", + "name": null, + "lengthMeters": 401.8825427226151, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6456456, + 13.5080802 + ], + [ + 52.6458529, + 13.508452 + ], + [ + 52.645867, + 13.5084772 + ], + [ + 52.6468109, + 13.5101693 + ], + [ + 52.6469179, + 13.5103534 + ], + [ + 52.6474518, + 13.511272 + ], + [ + 52.6481261, + 13.512412 + ] + ] + }, + { + "osmId": "1240503996", + "name": null, + "lengthMeters": 126.32412693814032, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.649118, + 13.5142619 + ], + [ + 52.6491563, + 13.5143357 + ], + [ + 52.649227, + 13.5144838 + ], + [ + 52.6493278, + 13.514697 + ], + [ + 52.6495422, + 13.515143 + ], + [ + 52.6498179, + 13.5157367 + ] + ] + }, + { + "osmId": "1240504000", + "name": null, + "lengthMeters": 145.07899904786456, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5922932, + 13.4442458 + ], + [ + 52.5920683, + 13.444004 + ], + [ + 52.5918483, + 13.4437623 + ], + [ + 52.5912002, + 13.443073 + ] + ] + }, + { + "osmId": "1240504001", + "name": null, + "lengthMeters": 108.2613123369338, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5914927, + 13.4436252 + ], + [ + 52.5917767, + 13.4439304 + ], + [ + 52.5919738, + 13.4441443 + ], + [ + 52.5923063, + 13.4445055 + ] + ] + }, + { + "osmId": "1241623591", + "name": null, + "lengthMeters": 75.33841665749371, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3727784, + 13.1426478 + ], + [ + 52.3727878, + 13.1425687 + ], + [ + 52.3728034, + 13.1424784 + ], + [ + 52.3728284, + 13.1423862 + ], + [ + 52.3728421, + 13.1423459 + ], + [ + 52.3728611, + 13.1422946 + ], + [ + 52.3728981, + 13.1422169 + ], + [ + 52.3729354, + 13.1421554 + ], + [ + 52.3729818, + 13.1420972 + ], + [ + 52.3730151, + 13.1420649 + ], + [ + 52.3730434, + 13.1420435 + ], + [ + 52.3730728, + 13.1420233 + ], + [ + 52.373114, + 13.1420028 + ], + [ + 52.3731447, + 13.1419906 + ], + [ + 52.3731715, + 13.1419822 + ], + [ + 52.3732056, + 13.1419723 + ], + [ + 52.37324, + 13.1419636 + ] + ] + }, + { + "osmId": "1241623592", + "name": null, + "lengthMeters": 600.6409814471933, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3727452, + 13.1426265 + ], + [ + 52.3727384, + 13.1427048 + ], + [ + 52.3727359, + 13.142776 + ], + [ + 52.372731, + 13.1429383 + ], + [ + 52.3727275, + 13.1431206 + ], + [ + 52.3727203, + 13.1435319 + ], + [ + 52.3727097, + 13.1439179 + ], + [ + 52.3726842, + 13.1450937 + ], + [ + 52.3726768, + 13.145493 + ], + [ + 52.3726728, + 13.1456544 + ], + [ + 52.3726715, + 13.1457273 + ], + [ + 52.3726734, + 13.1458036 + ], + [ + 52.3726783, + 13.1458554 + ], + [ + 52.3726882, + 13.1459094 + ], + [ + 52.3727066, + 13.1459733 + ], + [ + 52.3727271, + 13.1460258 + ], + [ + 52.3727454, + 13.1460654 + ], + [ + 52.3727682, + 13.1461074 + ], + [ + 52.3727996, + 13.1461579 + ], + [ + 52.3728276, + 13.146198 + ], + [ + 52.3728687, + 13.1462432 + ], + [ + 52.3728948, + 13.1462676 + ], + [ + 52.3729194, + 13.1462859 + ], + [ + 52.3729615, + 13.1463126 + ], + [ + 52.3730067, + 13.1463338 + ], + [ + 52.3730553, + 13.1463473 + ], + [ + 52.3730993, + 13.1463535 + ], + [ + 52.3731549, + 13.1463522 + ], + [ + 52.3731998, + 13.1463429 + ], + [ + 52.3732484, + 13.1463234 + ], + [ + 52.3732767, + 13.1463088 + ], + [ + 52.373298, + 13.1462964 + ], + [ + 52.3733248, + 13.1462763 + ], + [ + 52.3733566, + 13.1462484 + ], + [ + 52.3733811, + 13.1462225 + ], + [ + 52.3734134, + 13.146186 + ], + [ + 52.3734418, + 13.1461478 + ], + [ + 52.373455, + 13.1461279 + ], + [ + 52.3734788, + 13.1460891 + ], + [ + 52.3735102, + 13.1460291 + ], + [ + 52.3735322, + 13.1459774 + ], + [ + 52.3735491, + 13.1459332 + ], + [ + 52.3735581, + 13.1459022 + ], + [ + 52.3735749, + 13.1458419 + ], + [ + 52.3735879, + 13.1457799 + ], + [ + 52.373595, + 13.1457273 + ], + [ + 52.3735996, + 13.1456854 + ], + [ + 52.3736044, + 13.1456131 + ], + [ + 52.3736048, + 13.1455766 + ], + [ + 52.3736047, + 13.1455271 + ], + [ + 52.3736021, + 13.1454747 + ], + [ + 52.3735988, + 13.1454291 + ], + [ + 52.3735916, + 13.1453752 + ], + [ + 52.373586, + 13.1453414 + ], + [ + 52.3735794, + 13.1453142 + ], + [ + 52.3735708, + 13.1452857 + ], + [ + 52.3735604, + 13.1452562 + ], + [ + 52.37355, + 13.1452325 + ], + [ + 52.3735404, + 13.1452141 + ], + [ + 52.3735243, + 13.1451857 + ], + [ + 52.3734401, + 13.1450511 + ], + [ + 52.3729652, + 13.1443016 + ], + [ + 52.3729277, + 13.1442363 + ], + [ + 52.3728969, + 13.1441723 + ], + [ + 52.3728696, + 13.1441094 + ], + [ + 52.3728491, + 13.1440544 + ], + [ + 52.3728247, + 13.1439747 + ], + [ + 52.3728122, + 13.1439281 + ], + [ + 52.3727928, + 13.1438545 + ], + [ + 52.3727811, + 13.143785 + ], + [ + 52.3727719, + 13.1437235 + ], + [ + 52.3727633, + 13.1436438 + ], + [ + 52.3727595, + 13.1436045 + ], + [ + 52.3727557, + 13.1435241 + ], + [ + 52.3727576, + 13.143447 + ], + [ + 52.3727661, + 13.1431029 + ], + [ + 52.3727696, + 13.1427741 + ], + [ + 52.3727784, + 13.1426478 + ] + ] + }, + { + "osmId": "1241623593", + "name": null, + "lengthMeters": 800.3832280373997, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3727225, + 13.1419295 + ], + [ + 52.3726551, + 13.1419342 + ], + [ + 52.3726136, + 13.1419355 + ], + [ + 52.3721604, + 13.1419474 + ], + [ + 52.3720983, + 13.1419495 + ], + [ + 52.3720709, + 13.1419501 + ], + [ + 52.3719825, + 13.1419491 + ], + [ + 52.3719492, + 13.1419478 + ], + [ + 52.3719193, + 13.1419463 + ], + [ + 52.3718635, + 13.1419418 + ], + [ + 52.3718043, + 13.1419357 + ], + [ + 52.3717671, + 13.14193 + ], + [ + 52.3717003, + 13.1419179 + ], + [ + 52.3716372, + 13.1419041 + ], + [ + 52.3714728, + 13.1418611 + ], + [ + 52.3714117, + 13.1418406 + ], + [ + 52.3713258, + 13.1418077 + ], + [ + 52.3712399, + 13.1417711 + ], + [ + 52.3711633, + 13.1417369 + ], + [ + 52.3711053, + 13.1417085 + ], + [ + 52.3709404, + 13.1416225 + ], + [ + 52.3708839, + 13.1415919 + ], + [ + 52.3708378, + 13.1415675 + ], + [ + 52.3708082, + 13.1415495 + ], + [ + 52.3705807, + 13.1414111 + ], + [ + 52.3704927, + 13.1413515 + ], + [ + 52.3703857, + 13.1412729 + ], + [ + 52.3703097, + 13.1412119 + ], + [ + 52.3702743, + 13.1411826 + ], + [ + 52.3701896, + 13.141107 + ], + [ + 52.3700793, + 13.1410021 + ], + [ + 52.3700184, + 13.1409416 + ], + [ + 52.3699499, + 13.1408696 + ], + [ + 52.369838, + 13.1407415 + ], + [ + 52.369744, + 13.1406268 + ], + [ + 52.3696891, + 13.1405555 + ], + [ + 52.369648, + 13.1404994 + ], + [ + 52.3696307, + 13.1404753 + ], + [ + 52.3696051, + 13.1404396 + ], + [ + 52.3695903, + 13.1404189 + ], + [ + 52.3695068, + 13.1402967 + ], + [ + 52.3694253, + 13.1401707 + ], + [ + 52.3690166, + 13.1395264 + ], + [ + 52.3689953, + 13.1394928 + ], + [ + 52.3686457, + 13.1389413 + ], + [ + 52.3685879, + 13.1388501 + ], + [ + 52.3679927, + 13.1379096 + ], + [ + 52.3673868, + 13.1369541 + ], + [ + 52.367341, + 13.1368817 + ], + [ + 52.3669744, + 13.1363025 + ], + [ + 52.3668917, + 13.136172 + ], + [ + 52.3668912, + 13.1361712 + ], + [ + 52.3668201, + 13.1360552 + ] + ] + }, + { + "osmId": "1241623594", + "name": null, + "lengthMeters": 644.6168730182609, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3727209, + 13.1419742 + ], + [ + 52.372789, + 13.1419723 + ], + [ + 52.3728131, + 13.1419718 + ], + [ + 52.3728376, + 13.1419713 + ], + [ + 52.3728663, + 13.1419707 + ], + [ + 52.3729739, + 13.1419687 + ], + [ + 52.3730498, + 13.1419667 + ], + [ + 52.3730731, + 13.1419661 + ], + [ + 52.37324, + 13.1419636 + ], + [ + 52.3735259, + 13.1419583 + ], + [ + 52.3737138, + 13.1419528 + ], + [ + 52.3741003, + 13.1419414 + ], + [ + 52.3745356, + 13.1419316 + ], + [ + 52.375035, + 13.1419188 + ], + [ + 52.3750586, + 13.1419176 + ], + [ + 52.3751324, + 13.1419136 + ], + [ + 52.3751879, + 13.1419048 + ], + [ + 52.3752334, + 13.1418899 + ], + [ + 52.3752691, + 13.1418729 + ], + [ + 52.375296, + 13.1418568 + ], + [ + 52.3752998, + 13.141856 + ], + [ + 52.3753361, + 13.1418274 + ], + [ + 52.3753706, + 13.1417962 + ], + [ + 52.375408, + 13.1417552 + ], + [ + 52.3754436, + 13.1417079 + ], + [ + 52.3754587, + 13.141685 + ], + [ + 52.3754915, + 13.1416279 + ], + [ + 52.3755134, + 13.1415814 + ], + [ + 52.3755336, + 13.1415343 + ], + [ + 52.3755514, + 13.1414843 + ], + [ + 52.3755663, + 13.1414348 + ], + [ + 52.375581, + 13.1413756 + ], + [ + 52.3755886, + 13.1413386 + ], + [ + 52.3755954, + 13.1412993 + ], + [ + 52.3756039, + 13.1412331 + ], + [ + 52.3756089, + 13.1411686 + ], + [ + 52.3756093, + 13.1410886 + ], + [ + 52.3756067, + 13.1408304 + ], + [ + 52.3756009, + 13.1402535 + ], + [ + 52.3755811, + 13.1382944 + ], + [ + 52.375581, + 13.1382879 + ], + [ + 52.3755776, + 13.1379511 + ], + [ + 52.3755718, + 13.1371773 + ], + [ + 52.3755711, + 13.137067 + ], + [ + 52.3755706, + 13.1368024 + ] + ] + }, + { + "osmId": "1241633290", + "name": null, + "lengthMeters": 989.6428636678374, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3755706, + 13.1368024 + ], + [ + 52.3755697, + 13.1367207 + ], + [ + 52.375546, + 13.1345463 + ], + [ + 52.3755189, + 13.13178 + ], + [ + 52.3755153, + 13.131435 + ], + [ + 52.3755116, + 13.13118 + ], + [ + 52.3755019, + 13.1301198 + ], + [ + 52.3754966, + 13.1295904 + ], + [ + 52.37549, + 13.1286919 + ], + [ + 52.3754913, + 13.1286133 + ], + [ + 52.3754922, + 13.1285773 + ], + [ + 52.375494, + 13.1285346 + ], + [ + 52.3754955, + 13.1285044 + ], + [ + 52.3754984, + 13.1284537 + ], + [ + 52.3755032, + 13.1283896 + ], + [ + 52.3755125, + 13.1282959 + ], + [ + 52.375532, + 13.1281503 + ], + [ + 52.3755529, + 13.1280384 + ], + [ + 52.3755554, + 13.1280204 + ], + [ + 52.3755719, + 13.1279361 + ], + [ + 52.3755751, + 13.1279208 + ], + [ + 52.3756067, + 13.1277753 + ], + [ + 52.3756143, + 13.1277402 + ], + [ + 52.3756199, + 13.1277142 + ], + [ + 52.3756314, + 13.1276584 + ], + [ + 52.3756464, + 13.1275797 + ], + [ + 52.3756577, + 13.1275149 + ], + [ + 52.3756686, + 13.127442 + ], + [ + 52.3756734, + 13.127407 + ], + [ + 52.3756784, + 13.127369 + ], + [ + 52.3756891, + 13.1272668 + ], + [ + 52.3756946, + 13.1271953 + ], + [ + 52.3757003, + 13.1270839 + ], + [ + 52.3757021, + 13.1269168 + ], + [ + 52.3757006, + 13.1268486 + ], + [ + 52.3756995, + 13.1268216 + ], + [ + 52.3756985, + 13.1267975 + ], + [ + 52.3756945, + 13.1267302 + ], + [ + 52.3756778, + 13.1265501 + ], + [ + 52.3756666, + 13.1264636 + ], + [ + 52.3756651, + 13.1264528 + ], + [ + 52.3756625, + 13.1264356 + ], + [ + 52.3756584, + 13.1264091 + ], + [ + 52.3756508, + 13.1263628 + ], + [ + 52.3756478, + 13.1263463 + ], + [ + 52.3756439, + 13.1263245 + ], + [ + 52.3756344, + 13.1262749 + ], + [ + 52.3756242, + 13.1262258 + ], + [ + 52.3756141, + 13.1261812 + ], + [ + 52.3756053, + 13.1261439 + ], + [ + 52.3756005, + 13.1261243 + ], + [ + 52.3755958, + 13.1261052 + ], + [ + 52.3755744, + 13.1260256 + ], + [ + 52.3755506, + 13.1259422 + ], + [ + 52.3755417, + 13.1259125 + ], + [ + 52.3755316, + 13.1258791 + ], + [ + 52.3755196, + 13.1258399 + ], + [ + 52.3753099, + 13.1251628 + ], + [ + 52.3751001, + 13.1244868 + ], + [ + 52.3747162, + 13.1232491 + ], + [ + 52.3745464, + 13.1227025 + ] + ] + }, + { + "osmId": "1241633291", + "name": null, + "lengthMeters": 581.3219972604497, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.375535, + 13.1368027 + ], + [ + 52.3755399, + 13.1370671 + ], + [ + 52.3755464, + 13.1378846 + ], + [ + 52.3755467, + 13.1379271 + ], + [ + 52.3755475, + 13.137952 + ], + [ + 52.3755514, + 13.1382881 + ], + [ + 52.3755678, + 13.1402587 + ], + [ + 52.3755723, + 13.1408041 + ], + [ + 52.3755755, + 13.1409664 + ], + [ + 52.3755751, + 13.14103 + ], + [ + 52.3755744, + 13.1411169 + ], + [ + 52.3755732, + 13.1411621 + ], + [ + 52.3755706, + 13.1412155 + ], + [ + 52.375565, + 13.1412728 + ], + [ + 52.3755554, + 13.1413316 + ], + [ + 52.3755442, + 13.1413838 + ], + [ + 52.3755317, + 13.1414326 + ], + [ + 52.3755127, + 13.1415003 + ], + [ + 52.3754912, + 13.1415465 + ], + [ + 52.3754522, + 13.1416222 + ], + [ + 52.3754157, + 13.1416808 + ], + [ + 52.3753705, + 13.1417355 + ], + [ + 52.3753311, + 13.1417739 + ], + [ + 52.3752876, + 13.1418055 + ], + [ + 52.3752335, + 13.1418347 + ], + [ + 52.3751803, + 13.1418513 + ], + [ + 52.3750577, + 13.1418624 + ], + [ + 52.3745624, + 13.1418691 + ], + [ + 52.3745351, + 13.1418695 + ], + [ + 52.3737319, + 13.1418981 + ], + [ + 52.3737093, + 13.1418994 + ], + [ + 52.3735088, + 13.1419109 + ], + [ + 52.3732643, + 13.1419107 + ], + [ + 52.3732393, + 13.1419126 + ] + ] + }, + { + "osmId": "1242345935", + "name": null, + "lengthMeters": 121.82659007173416, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3926055, + 13.0892558 + ], + [ + 52.3925526, + 13.0894854 + ], + [ + 52.3925382, + 13.0895521 + ], + [ + 52.3924881, + 13.0897657 + ], + [ + 52.3923104, + 13.0906018 + ], + [ + 52.3922253, + 13.0909391 + ] + ] + }, + { + "osmId": "1242345936", + "name": null, + "lengthMeters": 121.40826461747203, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3925907, + 13.0892491 + ], + [ + 52.392539, + 13.0894754 + ], + [ + 52.3925092, + 13.089607 + ], + [ + 52.3925015, + 13.089641 + ], + [ + 52.3924727, + 13.0897568 + ], + [ + 52.3923804, + 13.0901551 + ], + [ + 52.3922861, + 13.0905849 + ], + [ + 52.3922082, + 13.0909248 + ] + ] + }, + { + "osmId": "1242607397", + "name": null, + "lengthMeters": 142.9580523138122, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5630008, + 13.5055209 + ], + [ + 52.5624568, + 13.5061494 + ], + [ + 52.5619475, + 13.5067336 + ] + ] + }, + { + "osmId": "1242607398", + "name": null, + "lengthMeters": 140.8783218689637, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5619657, + 13.5067759 + ], + [ + 52.5630065, + 13.5055875 + ] + ] + }, + { + "osmId": "1242607399", + "name": null, + "lengthMeters": 274.7994586856114, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5515988, + 13.5091059 + ], + [ + 52.5517887, + 13.5089947 + ], + [ + 52.5518225, + 13.5089762 + ], + [ + 52.5518652, + 13.5089578 + ], + [ + 52.5518996, + 13.5089468 + ], + [ + 52.5519476, + 13.5089377 + ], + [ + 52.5519904, + 13.5089334 + ], + [ + 52.5520292, + 13.508936 + ], + [ + 52.5520895, + 13.5089404 + ], + [ + 52.5521314, + 13.5089571 + ], + [ + 52.5521723, + 13.5089757 + ], + [ + 52.5522365, + 13.50901 + ], + [ + 52.5522885, + 13.5090496 + ], + [ + 52.5523668, + 13.5091292 + ], + [ + 52.5531897, + 13.5100687 + ], + [ + 52.5535108, + 13.5104516 + ], + [ + 52.5537247, + 13.5107055 + ] + ] + }, + { + "osmId": "1242607400", + "name": null, + "lengthMeters": 266.79108214789215, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5537382, + 13.5106717 + ], + [ + 52.5535243, + 13.5104169 + ], + [ + 52.5531964, + 13.5100359 + ], + [ + 52.5523765, + 13.5090878 + ], + [ + 52.5523221, + 13.509031 + ], + [ + 52.5522564, + 13.5089748 + ], + [ + 52.5522011, + 13.5089412 + ], + [ + 52.5521424, + 13.5089108 + ], + [ + 52.552096, + 13.508894 + ], + [ + 52.552035, + 13.508889 + ], + [ + 52.5520004, + 13.5088897 + ], + [ + 52.5519598, + 13.5088945 + ], + [ + 52.5519168, + 13.5089027 + ], + [ + 52.5518665, + 13.5089181 + ], + [ + 52.5518238, + 13.5089348 + ], + [ + 52.5517808, + 13.5089557 + ], + [ + 52.551682, + 13.509016 + ] + ] + }, + { + "osmId": "1243127439", + "name": null, + "lengthMeters": 224.42250210863168, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4552447, + 13.5667689 + ], + [ + 52.4551784, + 13.5668433 + ], + [ + 52.4548635, + 13.5671916 + ], + [ + 52.4535758, + 13.5686314 + ] + ] + }, + { + "osmId": "1243591605", + "name": null, + "lengthMeters": 94.84187445038934, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4713877, + 13.3723948 + ], + [ + 52.4713875, + 13.3724166 + ], + [ + 52.4713783, + 13.3737949 + ] + ] + }, + { + "osmId": "1244641841", + "name": null, + "lengthMeters": 83.58924141085228, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4374658, + 13.5268216 + ], + [ + 52.4375002, + 13.5268713 + ], + [ + 52.4375146, + 13.5268902 + ], + [ + 52.4375322, + 13.5269109 + ], + [ + 52.4375476, + 13.5269235 + ], + [ + 52.4375713, + 13.5269414 + ], + [ + 52.4375988, + 13.5269582 + ], + [ + 52.4376295, + 13.5269751 + ], + [ + 52.4376597, + 13.5269857 + ], + [ + 52.4377041, + 13.5269891 + ], + [ + 52.4377444, + 13.5269854 + ], + [ + 52.4377708, + 13.5269792 + ], + [ + 52.4377993, + 13.5269688 + ], + [ + 52.4378211, + 13.5269567 + ], + [ + 52.4378546, + 13.5269324 + ], + [ + 52.4378878, + 13.5269018 + ], + [ + 52.437915, + 13.5268685 + ], + [ + 52.4379376, + 13.526844 + ], + [ + 52.4381161, + 13.5266049 + ] + ] + }, + { + "osmId": "1245087528", + "name": null, + "lengthMeters": 80.35201427923714, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4562202, + 13.5651249 + ], + [ + 52.4559387, + 13.5656885 + ], + [ + 52.4557612, + 13.5660408 + ] + ] + }, + { + "osmId": "1245087530", + "name": null, + "lengthMeters": 272.0885135908043, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.456114, + 13.5601099 + ], + [ + 52.4564426, + 13.5623165 + ], + [ + 52.4564507, + 13.5623784 + ], + [ + 52.4564692, + 13.5625295 + ], + [ + 52.456487, + 13.5627271 + ], + [ + 52.4564917, + 13.5628446 + ], + [ + 52.4565101, + 13.5638374 + ], + [ + 52.4565112, + 13.5639272 + ], + [ + 52.4565115, + 13.5639801 + ], + [ + 52.4565103, + 13.5640532 + ] + ] + }, + { + "osmId": "1245087531", + "name": null, + "lengthMeters": 78.18484686259718, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4565367, + 13.5640588 + ], + [ + 52.4565388, + 13.5639289 + ], + [ + 52.4565253, + 13.5631525 + ], + [ + 52.4565206, + 13.5629054 + ] + ] + }, + { + "osmId": "1245087533", + "name": null, + "lengthMeters": 89.39398028163497, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4553351, + 13.5667212 + ], + [ + 52.455421, + 13.5666266 + ], + [ + 52.4555042, + 13.5665262 + ], + [ + 52.4555865, + 13.5664167 + ], + [ + 52.4556632, + 13.5663043 + ], + [ + 52.4557432, + 13.5661767 + ], + [ + 52.455825, + 13.5660348 + ], + [ + 52.4559291, + 13.5658401 + ] + ] + }, + { + "osmId": "1245087535", + "name": null, + "lengthMeters": 151.51853889171304, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4564625, + 13.5622687 + ], + [ + 52.4562846, + 13.5610749 + ], + [ + 52.4561372, + 13.5600972 + ] + ] + }, + { + "osmId": "1245947670", + "name": null, + "lengthMeters": 80.55312909267793, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5228507, + 13.4155852 + ], + [ + 52.5234301, + 13.4162999 + ] + ] + }, + { + "osmId": "1245947674", + "name": null, + "lengthMeters": 82.6932725645358, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5234653, + 13.4162794 + ], + [ + 52.5228723, + 13.4155418 + ] + ] + }, + { + "osmId": "1245947675", + "name": null, + "lengthMeters": 114.10274830712609, + "maxSpeedKph": 10.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5218751, + 13.4142957 + ], + [ + 52.521831, + 13.4142394 + ], + [ + 52.5217863, + 13.4141759 + ], + [ + 52.5217673, + 13.4141473 + ], + [ + 52.5217375, + 13.4141023 + ], + [ + 52.5216809, + 13.4139985 + ], + [ + 52.5216049, + 13.4138484 + ], + [ + 52.5212753, + 13.4131833 + ], + [ + 52.521244, + 13.4131229 + ], + [ + 52.5211996, + 13.4130315 + ] + ] + }, + { + "osmId": "1246719514", + "name": null, + "lengthMeters": 399.2983577569582, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5149292, + 13.6404417 + ], + [ + 52.5150341, + 13.6415626 + ], + [ + 52.515477, + 13.6462735 + ] + ] + }, + { + "osmId": "1246719515", + "name": null, + "lengthMeters": 106.58641745888562, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5126992, + 13.6165502 + ], + [ + 52.5127894, + 13.6173224 + ], + [ + 52.51283, + 13.6177146 + ], + [ + 52.5128665, + 13.6181009 + ] + ] + }, + { + "osmId": "1248855441", + "name": null, + "lengthMeters": 131.9323077044966, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5832047, + 9.967663 + ], + [ + 53.5826415, + 9.9684151 + ], + [ + 53.5826303, + 9.9684301 + ], + [ + 53.5826134, + 9.968459 + ], + [ + 53.5826095, + 9.9684753 + ], + [ + 53.5825994, + 9.968517 + ], + [ + 53.5825968, + 9.9685883 + ], + [ + 53.5826, + 9.968643 + ], + [ + 53.5826089, + 9.9686951 + ], + [ + 53.5826236, + 9.9687342 + ], + [ + 53.5826471, + 9.9687975 + ], + [ + 53.5826561, + 9.9688426 + ], + [ + 53.5826583, + 9.9689043 + ], + [ + 53.5826516, + 9.9689606 + ], + [ + 53.5826331, + 9.9690174 + ], + [ + 53.5826105, + 9.9690598 + ], + [ + 53.5825806, + 9.9691092 + ] + ] + }, + { + "osmId": "1248855442", + "name": null, + "lengthMeters": 85.50878983961353, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5826303, + 9.9684301 + ], + [ + 53.5826047, + 9.9684635 + ], + [ + 53.5825911, + 9.9684812 + ], + [ + 53.5823682, + 9.9687719 + ], + [ + 53.5821861, + 9.9690156 + ], + [ + 53.5820256, + 9.9692303 + ] + ] + }, + { + "osmId": "1248855443", + "name": null, + "lengthMeters": 83.20496961703918, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5826134, + 9.968459 + ], + [ + 53.582595, + 9.9684978 + ], + [ + 53.5825641, + 9.968556 + ], + [ + 53.5824822, + 9.9686625 + ], + [ + 53.5820412, + 9.9692681 + ] + ] + }, + { + "osmId": "1248855444", + "name": null, + "lengthMeters": 77.63377896593096, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 53.5825641, + 9.968556 + ], + [ + 53.5825351, + 9.9686356 + ], + [ + 53.5825072, + 9.9687598 + ], + [ + 53.5824389, + 9.9691244 + ], + [ + 53.5823943, + 9.9693669 + ], + [ + 53.5823442, + 9.969669 + ] + ] + }, + { + "osmId": "1249299951", + "name": null, + "lengthMeters": 4161.451457408174, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1704121, + 11.3590221 + ], + [ + 48.1692199, + 11.3631612 + ], + [ + 48.1690005, + 11.3639206 + ], + [ + 48.167572, + 11.3688616 + ], + [ + 48.1667192, + 11.3718159 + ], + [ + 48.1661837, + 11.3736684 + ], + [ + 48.1661482, + 11.3737914 + ], + [ + 48.1655776, + 11.3757653 + ], + [ + 48.1647216, + 11.3787267 + ], + [ + 48.1646834, + 11.3788589 + ], + [ + 48.1638656, + 11.3816881 + ], + [ + 48.16336, + 11.3834361 + ], + [ + 48.1632932, + 11.3836669 + ], + [ + 48.1624476, + 11.3865902 + ], + [ + 48.1618737, + 11.3885744 + ], + [ + 48.1611314, + 11.3911406 + ], + [ + 48.1610189, + 11.3915295 + ], + [ + 48.1607349, + 11.3925115 + ], + [ + 48.1604481, + 11.3935026 + ], + [ + 48.1604161, + 11.3936133 + ], + [ + 48.1596017, + 11.3964333 + ], + [ + 48.1590291, + 11.3984059 + ], + [ + 48.1584561, + 11.4003801 + ], + [ + 48.1582737, + 11.4010086 + ], + [ + 48.1575965, + 11.4033417 + ], + [ + 48.1573559, + 11.4041951 + ], + [ + 48.1571951, + 11.4047664 + ], + [ + 48.1570448, + 11.4053482 + ], + [ + 48.1569175, + 11.4058632 + ], + [ + 48.1568375, + 11.4062141 + ], + [ + 48.15681, + 11.4063345 + ], + [ + 48.1567605, + 11.4065502 + ], + [ + 48.1567166, + 11.4067707 + ], + [ + 48.1566391, + 11.4071567 + ], + [ + 48.1565732, + 11.4075523 + ], + [ + 48.1564888, + 11.4080997 + ], + [ + 48.1564533, + 11.4083506 + ], + [ + 48.1563701, + 11.4089825 + ], + [ + 48.1562919, + 11.4096375 + ], + [ + 48.1562818, + 11.4097221 + ], + [ + 48.1561604, + 11.4107721 + ], + [ + 48.1561562, + 11.4108081 + ] + ] + }, + { + "osmId": "1249299952", + "name": null, + "lengthMeters": 3127.0233880837077, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.156236, + 11.4108333 + ], + [ + 48.15624, + 11.4107921 + ], + [ + 48.1563383, + 11.4097761 + ], + [ + 48.156348, + 11.4096886 + ], + [ + 48.156423, + 11.4089977 + ], + [ + 48.1564995, + 11.4083623 + ], + [ + 48.1565346, + 11.4081167 + ], + [ + 48.1566164, + 11.4075679 + ], + [ + 48.1566858, + 11.4071737 + ], + [ + 48.1567584, + 11.4067867 + ], + [ + 48.1568005, + 11.4065662 + ], + [ + 48.1568485, + 11.4063477 + ], + [ + 48.1568747, + 11.4062338 + ], + [ + 48.1569565, + 11.4058786 + ], + [ + 48.1570775, + 11.4053658 + ], + [ + 48.1572311, + 11.4047894 + ], + [ + 48.1573875, + 11.4042145 + ], + [ + 48.1576324, + 11.403365 + ], + [ + 48.1584915, + 11.400404 + ], + [ + 48.1590644, + 11.3984291 + ], + [ + 48.1596366, + 11.396457 + ], + [ + 48.1601628, + 11.3946434 + ], + [ + 48.1604469, + 11.3936444 + ], + [ + 48.1604809, + 11.393527 + ], + [ + 48.1607684, + 11.3925336 + ], + [ + 48.1610525, + 11.3915507 + ], + [ + 48.1611656, + 11.3911598 + ], + [ + 48.1619076, + 11.3885946 + ], + [ + 48.1624815, + 11.3866103 + ], + [ + 48.1633269, + 11.3836871 + ], + [ + 48.1633933, + 11.3834579 + ], + [ + 48.1638993, + 11.3817082 + ], + [ + 48.1647178, + 11.3788817 + ], + [ + 48.1647569, + 11.3787467 + ], + [ + 48.1647796, + 11.3786684 + ], + [ + 48.1656139, + 11.3757873 + ], + [ + 48.1661855, + 11.3738134 + ], + [ + 48.1667542, + 11.3718359 + ] + ] + }, + { + "osmId": "1251172167", + "name": null, + "lengthMeters": 447.5685887490114, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5594373, + 13.5117702 + ], + [ + 52.5593572, + 13.5120619 + ], + [ + 52.5592185, + 13.5125666 + ], + [ + 52.5587127, + 13.5144077 + ], + [ + 52.5585353, + 13.5150534 + ], + [ + 52.5584336, + 13.5153995 + ], + [ + 52.5583968, + 13.5155105 + ], + [ + 52.5583628, + 13.5155703 + ], + [ + 52.558328, + 13.51562 + ], + [ + 52.5582941, + 13.5156587 + ], + [ + 52.5582605, + 13.5156805 + ], + [ + 52.558218, + 13.5156978 + ], + [ + 52.5581821, + 13.515701 + ], + [ + 52.5581417, + 13.5157012 + ], + [ + 52.5581018, + 13.5156922 + ], + [ + 52.5580155, + 13.5156366 + ], + [ + 52.5579314, + 13.515548 + ], + [ + 52.5571152, + 13.5146035 + ] + ] + }, + { + "osmId": "1251172168", + "name": null, + "lengthMeters": 452.91618811180683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5594659, + 13.5117889 + ], + [ + 52.5599143, + 13.5101671 + ], + [ + 52.5599405, + 13.5100647 + ], + [ + 52.5599632, + 13.5099871 + ], + [ + 52.5599809, + 13.5099199 + ], + [ + 52.5599901, + 13.509888 + ], + [ + 52.5601626, + 13.509273 + ], + [ + 52.5602464, + 13.5089768 + ], + [ + 52.5602683, + 13.5089168 + ], + [ + 52.5602794, + 13.5088838 + ], + [ + 52.5603302, + 13.508759 + ], + [ + 52.5603742, + 13.5086654 + ], + [ + 52.5604389, + 13.5085608 + ], + [ + 52.5604577, + 13.5085245 + ], + [ + 52.5604895, + 13.5084845 + ], + [ + 52.5605502, + 13.5084022 + ], + [ + 52.5606845, + 13.5082591 + ], + [ + 52.5612607, + 13.5075889 + ], + [ + 52.5616451, + 13.5071419 + ], + [ + 52.5619657, + 13.5067759 + ] + ] + }, + { + "osmId": "1251391859", + "name": null, + "lengthMeters": 268.1436223282743, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793529, + 13.5298013 + ], + [ + 52.4787819, + 13.5310952 + ], + [ + 52.4784549, + 13.5318222 + ], + [ + 52.4779148, + 13.5329792 + ] + ] + }, + { + "osmId": "1253059977", + "name": null, + "lengthMeters": 84.30373252182916, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5006849, + 13.2843853 + ], + [ + 52.5008403, + 13.2848741 + ], + [ + 52.5009701, + 13.2852821 + ], + [ + 52.5009972, + 13.2853673 + ], + [ + 52.5010441, + 13.2854812 + ] + ] + }, + { + "osmId": "1259722686", + "name": null, + "lengthMeters": 370.556773531289, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5875385, + 13.3517328 + ], + [ + 52.5881158, + 13.3506831 + ], + [ + 52.588352, + 13.3502531 + ], + [ + 52.589773, + 13.3476633 + ] + ] + }, + { + "osmId": "1259722687", + "name": null, + "lengthMeters": 372.72381488410264, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5897555, + 13.3475841 + ], + [ + 52.5883382, + 13.350183 + ], + [ + 52.5880913, + 13.3506288 + ], + [ + 52.587513, + 13.3516849 + ] + ] + }, + { + "osmId": "1259722701", + "name": "Industriebahn Tegel\u2013Friedrichsfelde", + "lengthMeters": 363.676795996769, + "maxSpeedKph": 40.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.6072087, + 13.3577195 + ], + [ + 52.6070044, + 13.3630947 + ] + ] + }, + { + "osmId": "1263526055", + "name": null, + "lengthMeters": 781.7788354254639, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1335784, + 11.5430116 + ], + [ + 48.1334181, + 11.5456284 + ], + [ + 48.1333925, + 11.546203 + ], + [ + 48.1333894, + 11.5467445 + ], + [ + 48.1334041, + 11.5473495 + ], + [ + 48.1334452, + 11.547899 + ], + [ + 48.133531, + 11.5484496 + ], + [ + 48.133661, + 11.5489516 + ], + [ + 48.1338257, + 11.549445 + ], + [ + 48.1340092, + 11.549889 + ], + [ + 48.134228, + 11.5503205 + ], + [ + 48.1344508, + 11.550704 + ], + [ + 48.1346767, + 11.5510565 + ], + [ + 48.1348848, + 11.5513619 + ], + [ + 48.1351568, + 11.5517416 + ], + [ + 48.1356227, + 11.5523419 + ] + ] + }, + { + "osmId": "1263526056", + "name": null, + "lengthMeters": 759.9703029796581, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1357205, + 11.5521165 + ], + [ + 48.1352816, + 11.5515478 + ], + [ + 48.1349979, + 11.5511677 + ], + [ + 48.1348106, + 11.5508953 + ], + [ + 48.134588, + 11.5505447 + ], + [ + 48.13437, + 11.5501678 + ], + [ + 48.1341657, + 11.5497655 + ], + [ + 48.1339834, + 11.5493227 + ], + [ + 48.1338282, + 11.5488534 + ], + [ + 48.1337134, + 11.5483764 + ], + [ + 48.1336306, + 11.5478454 + ], + [ + 48.1335748, + 11.5473689 + ], + [ + 48.1335386, + 11.5467424 + ], + [ + 48.1335326, + 11.5461536 + ], + [ + 48.1335529, + 11.5456338 + ], + [ + 48.1337102, + 11.5430413 + ] + ] + }, + { + "osmId": "1263526057", + "name": null, + "lengthMeters": 616.2687380406456, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1421182, + 11.5676885 + ], + [ + 48.1420385, + 11.5676667 + ], + [ + 48.1419804, + 11.5676508 + ], + [ + 48.1416469, + 11.5675637 + ], + [ + 48.1415137, + 11.5675289 + ], + [ + 48.1414299, + 11.5675015 + ], + [ + 48.141402, + 11.5674882 + ], + [ + 48.1413708, + 11.5674661 + ], + [ + 48.1412949, + 11.5674017 + ], + [ + 48.1410909, + 11.5672129 + ], + [ + 48.1409696, + 11.5670661 + ], + [ + 48.1409141, + 11.5669988 + ], + [ + 48.1407409, + 11.5667261 + ], + [ + 48.1407133, + 11.5666897 + ], + [ + 48.1406908, + 11.5666641 + ], + [ + 48.140653, + 11.5666257 + ], + [ + 48.1406223, + 11.5665976 + ], + [ + 48.1405737, + 11.5665623 + ], + [ + 48.1404896, + 11.5665216 + ], + [ + 48.1404251, + 11.5664954 + ], + [ + 48.14038, + 11.566472 + ], + [ + 48.1403469, + 11.5664524 + ], + [ + 48.1403164, + 11.5664311 + ], + [ + 48.1402961, + 11.5664134 + ], + [ + 48.14027, + 11.5663853 + ], + [ + 48.1402388, + 11.5663509 + ], + [ + 48.1401784, + 11.5662743 + ], + [ + 48.1397347, + 11.565697 + ], + [ + 48.1397053, + 11.5656622 + ], + [ + 48.1396649, + 11.5656088 + ], + [ + 48.1396237, + 11.5655566 + ], + [ + 48.1395998, + 11.5655262 + ], + [ + 48.1395785, + 11.5654975 + ], + [ + 48.1395594, + 11.5654712 + ], + [ + 48.1395369, + 11.5654436 + ], + [ + 48.139457, + 11.5653604 + ], + [ + 48.1393958, + 11.5653072 + ], + [ + 48.1393631, + 11.5652839 + ], + [ + 48.1393416, + 11.5652688 + ], + [ + 48.1393225, + 11.5652572 + ], + [ + 48.1392988, + 11.5652441 + ], + [ + 48.1392769, + 11.5652342 + ], + [ + 48.1391845, + 11.5651979 + ], + [ + 48.1391494, + 11.5651902 + ], + [ + 48.1388306, + 11.5651351 + ], + [ + 48.1383462, + 11.5650508 + ], + [ + 48.1381883, + 11.5650261 + ], + [ + 48.1378755, + 11.5649722 + ], + [ + 48.1377924, + 11.5649599 + ], + [ + 48.1377629, + 11.564956 + ], + [ + 48.13773, + 11.5649548 + ], + [ + 48.1377068, + 11.564954 + ], + [ + 48.137684, + 11.5649542 + ], + [ + 48.1376584, + 11.564956 + ], + [ + 48.1376361, + 11.5649579 + ], + [ + 48.1376143, + 11.5649603 + ], + [ + 48.1375919, + 11.5649626 + ], + [ + 48.1375508, + 11.5649722 + ], + [ + 48.1375057, + 11.5649812 + ], + [ + 48.1374731, + 11.5649872 + ], + [ + 48.1374293, + 11.5649946 + ], + [ + 48.1373947, + 11.5649989 + ], + [ + 48.1373622, + 11.565001 + ], + [ + 48.137274, + 11.5649984 + ], + [ + 48.1371089, + 11.5649835 + ] + ] + }, + { + "osmId": "1263526058", + "name": null, + "lengthMeters": 751.0196041930992, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1363283, + 11.5648988 + ], + [ + 48.136385, + 11.5648889 + ], + [ + 48.1364102, + 11.5648854 + ], + [ + 48.1364351, + 11.5648847 + ], + [ + 48.1364986, + 11.5648841 + ], + [ + 48.1365305, + 11.5648851 + ], + [ + 48.1365475, + 11.5648861 + ], + [ + 48.1365769, + 11.5648901 + ], + [ + 48.1366148, + 11.5648963 + ], + [ + 48.1369789, + 11.5649922 + ], + [ + 48.1370392, + 11.5650073 + ], + [ + 48.1371029, + 11.565022 + ], + [ + 48.1371669, + 11.5650325 + ], + [ + 48.1373122, + 11.5650369 + ], + [ + 48.1373366, + 11.5650376 + ], + [ + 48.1373638, + 11.5650373 + ], + [ + 48.1373978, + 11.5650344 + ], + [ + 48.1374355, + 11.5650296 + ], + [ + 48.1375955, + 11.5649997 + ], + [ + 48.1376847, + 11.5649899 + ], + [ + 48.13779, + 11.5649955 + ], + [ + 48.1378729, + 11.5650069 + ], + [ + 48.1381855, + 11.5650608 + ], + [ + 48.1386864, + 11.5651504 + ], + [ + 48.1391308, + 11.5652264 + ], + [ + 48.1391665, + 11.5652355 + ], + [ + 48.1392629, + 11.5652717 + ], + [ + 48.1393122, + 11.5652979 + ], + [ + 48.1393818, + 11.565344 + ], + [ + 48.1394461, + 11.5653956 + ], + [ + 48.1395239, + 11.565475 + ], + [ + 48.139555, + 11.5655167 + ], + [ + 48.1396345, + 11.5656138 + ], + [ + 48.139694, + 11.5657026 + ], + [ + 48.1397213, + 11.5657387 + ], + [ + 48.1400652, + 11.5661675 + ], + [ + 48.1401711, + 11.5663122 + ], + [ + 48.1402445, + 11.5664075 + ], + [ + 48.1402629, + 11.566428 + ], + [ + 48.1402844, + 11.5664477 + ], + [ + 48.1403164, + 11.5664764 + ], + [ + 48.1403472, + 11.5664979 + ], + [ + 48.1403747, + 11.5665119 + ], + [ + 48.1404136, + 11.5665299 + ], + [ + 48.1404827, + 11.5665571 + ], + [ + 48.1405105, + 11.5665695 + ], + [ + 48.1405349, + 11.5665819 + ], + [ + 48.1405626, + 11.5665985 + ], + [ + 48.1405794, + 11.5666104 + ], + [ + 48.1405997, + 11.5666261 + ], + [ + 48.1406175, + 11.5666401 + ], + [ + 48.1406534, + 11.5666729 + ], + [ + 48.1406884, + 11.5667103 + ], + [ + 48.1407252, + 11.5667547 + ], + [ + 48.1408946, + 11.5670278 + ], + [ + 48.1409539, + 11.5670976 + ], + [ + 48.1410813, + 11.5672476 + ], + [ + 48.1412844, + 11.5674408 + ], + [ + 48.1413581, + 11.5675007 + ], + [ + 48.1413934, + 11.5675257 + ], + [ + 48.1414221, + 11.5675391 + ], + [ + 48.1414897, + 11.5675575 + ], + [ + 48.1420337, + 11.5677073 + ], + [ + 48.1423528, + 11.5677935 + ], + [ + 48.1425329, + 11.5678513 + ] + ] + }, + { + "osmId": "1263527496", + "name": null, + "lengthMeters": 109.70465074257595, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2118139, + 11.616885 + ], + [ + 48.2124469, + 11.617228 + ], + [ + 48.2127415, + 11.6173893 + ] + ] + }, + { + "osmId": "1263527497", + "name": null, + "lengthMeters": 105.0690353056163, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2118976, + 11.6165011 + ], + [ + 48.2112629, + 11.6161498 + ], + [ + 48.2110098, + 11.6160157 + ] + ] + }, + { + "osmId": "1264999369", + "name": "Berliner Ringbahn", + "lengthMeters": 254.1543866915723, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5240387, + 13.4649928 + ], + [ + 52.5240447, + 13.4649572 + ], + [ + 52.5240852, + 13.4647005 + ], + [ + 52.5241409, + 13.4642997 + ], + [ + 52.5241862, + 13.463927 + ], + [ + 52.5243711, + 13.4624875 + ], + [ + 52.5244065, + 13.4622679 + ], + [ + 52.5244481, + 13.4620332 + ], + [ + 52.5245158, + 13.4616998 + ], + [ + 52.5245963, + 13.4613553 + ] + ] + }, + { + "osmId": "1264999370", + "name": "Berliner Ringbahn", + "lengthMeters": 254.78581140997784, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245668, + 13.4613332 + ], + [ + 52.524485, + 13.4616834 + ], + [ + 52.5244187, + 13.462014 + ], + [ + 52.5243738, + 13.4622592 + ], + [ + 52.5243197, + 13.4626157 + ], + [ + 52.5241387, + 13.4640523 + ], + [ + 52.5240583, + 13.4646405 + ], + [ + 52.5240085, + 13.4649408 + ], + [ + 52.5240018, + 13.4649773 + ] + ] + }, + { + "osmId": "1264999371", + "name": "Berliner Ringbahn", + "lengthMeters": 554.130964128414, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5281269, + 13.4558603 + ], + [ + 52.5276722, + 13.4563248 + ], + [ + 52.5276606, + 13.4563367 + ], + [ + 52.5271741, + 13.4568337 + ], + [ + 52.5267503, + 13.4572531 + ], + [ + 52.5264717, + 13.4575428 + ], + [ + 52.5263574, + 13.4576671 + ], + [ + 52.5262453, + 13.4578005 + ], + [ + 52.5260497, + 13.4580489 + ], + [ + 52.5258606, + 13.4583097 + ], + [ + 52.5255911, + 13.4587391 + ], + [ + 52.5254677, + 13.4589588 + ], + [ + 52.5252943, + 13.4592965 + ], + [ + 52.5251373, + 13.4596394 + ], + [ + 52.525033, + 13.4598871 + ], + [ + 52.5249249, + 13.4601667 + ], + [ + 52.5248298, + 13.4604365 + ], + [ + 52.5247177, + 13.4607845 + ], + [ + 52.524619, + 13.4611308 + ], + [ + 52.5245708, + 13.4613179 + ], + [ + 52.5245668, + 13.4613332 + ] + ] + }, + { + "osmId": "1264999372", + "name": "Berliner Ringbahn", + "lengthMeters": 552.0957724676775, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245963, + 13.4613553 + ], + [ + 52.5246008, + 13.4613369 + ], + [ + 52.5246506, + 13.461145 + ], + [ + 52.5247446, + 13.4608138 + ], + [ + 52.5248421, + 13.4605069 + ], + [ + 52.5249496, + 13.4602023 + ], + [ + 52.5250595, + 13.4599186 + ], + [ + 52.5251622, + 13.4596725 + ], + [ + 52.5253198, + 13.4593307 + ], + [ + 52.5254914, + 13.4589951 + ], + [ + 52.525643, + 13.4587311 + ], + [ + 52.5258848, + 13.4583515 + ], + [ + 52.5259332, + 13.4582792 + ], + [ + 52.5260747, + 13.4580851 + ], + [ + 52.5262705, + 13.4578387 + ], + [ + 52.5263737, + 13.4577153 + ], + [ + 52.5264802, + 13.4575973 + ], + [ + 52.52677, + 13.457297 + ], + [ + 52.5271925, + 13.4568784 + ], + [ + 52.5276795, + 13.4563877 + ], + [ + 52.5276901, + 13.456377 + ], + [ + 52.5281487, + 13.455915 + ] + ] + }, + { + "osmId": "1264999373", + "name": "Berliner Ringbahn", + "lengthMeters": 107.81779637875346, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5444265, + 13.4264949 + ], + [ + 52.5439484, + 13.427882 + ] + ] + }, + { + "osmId": "1264999374", + "name": "Berliner Ringbahn", + "lengthMeters": 107.69086279056359, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.543976, + 13.4279074 + ], + [ + 52.5441837, + 13.4272891 + ], + [ + 52.5444532, + 13.4265217 + ] + ] + }, + { + "osmId": "1264999375", + "name": "Berliner Ringbahn", + "lengthMeters": 761.3191785469811, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485018, + 13.417518 + ], + [ + 52.5484977, + 13.4175305 + ], + [ + 52.5483597, + 13.4179533 + ], + [ + 52.5479547, + 13.4191713 + ], + [ + 52.5479028, + 13.419329 + ], + [ + 52.5475831, + 13.420252 + ], + [ + 52.5475674, + 13.4202925 + ], + [ + 52.5474965, + 13.4204721 + ], + [ + 52.5474899, + 13.4204881 + ], + [ + 52.5474171, + 13.4206585 + ], + [ + 52.5473044, + 13.4209067 + ], + [ + 52.5471907, + 13.421134 + ], + [ + 52.5460689, + 13.4231826 + ], + [ + 52.5455038, + 13.4242077 + ], + [ + 52.5452205, + 13.4247178 + ], + [ + 52.5449462, + 13.4252424 + ], + [ + 52.5447652, + 13.4256161 + ], + [ + 52.5446669, + 13.4258623 + ], + [ + 52.5446168, + 13.4259889 + ], + [ + 52.5446126, + 13.4260003 + ], + [ + 52.5444265, + 13.4264949 + ] + ] + }, + { + "osmId": "1264999376", + "name": "Berliner Ringbahn", + "lengthMeters": 762.0447351268216, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5444532, + 13.4265217 + ], + [ + 52.5446405, + 13.4260311 + ], + [ + 52.5446448, + 13.4260198 + ], + [ + 52.5447881, + 13.4256445 + ], + [ + 52.5449736, + 13.425277 + ], + [ + 52.545249, + 13.4247537 + ], + [ + 52.5455321, + 13.4242419 + ], + [ + 52.5460998, + 13.423212 + ], + [ + 52.5472165, + 13.4211715 + ], + [ + 52.5473331, + 13.4209377 + ], + [ + 52.5474473, + 13.4206868 + ], + [ + 52.5475181, + 13.4205176 + ], + [ + 52.5475243, + 13.4205008 + ], + [ + 52.5475942, + 13.4203218 + ], + [ + 52.5476101, + 13.4202817 + ], + [ + 52.5479345, + 13.4193665 + ], + [ + 52.5479878, + 13.4192009 + ], + [ + 52.548393, + 13.4179794 + ], + [ + 52.5485245, + 13.4175745 + ], + [ + 52.5485305, + 13.417556 + ], + [ + 52.5485356, + 13.4175404 + ] + ] + }, + { + "osmId": "1265856115", + "name": null, + "lengthMeters": 273.7840769618085, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4911105, + 13.2967706 + ], + [ + 52.4892052, + 13.2993319 + ] + ] + }, + { + "osmId": "1265856116", + "name": null, + "lengthMeters": 196.16971395383186, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4808735, + 13.3107305 + ], + [ + 52.4815432, + 13.3097697 + ], + [ + 52.4818753, + 13.3092974 + ], + [ + 52.4822065, + 13.308833 + ] + ] + }, + { + "osmId": "1265865318", + "name": null, + "lengthMeters": 611.4734933463932, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4268147, + 13.554763 + ], + [ + 52.4268039, + 13.5549414 + ], + [ + 52.4268037, + 13.5551912 + ], + [ + 52.4268112, + 13.5556821 + ], + [ + 52.4268592, + 13.556201 + ], + [ + 52.4269169, + 13.5567414 + ], + [ + 52.4270064, + 13.55741 + ], + [ + 52.4270876, + 13.5579085 + ], + [ + 52.4271516, + 13.5582866 + ], + [ + 52.4272905, + 13.5588612 + ], + [ + 52.4274695, + 13.5594544 + ], + [ + 52.4276195, + 13.5598509 + ], + [ + 52.4278006, + 13.5602947 + ], + [ + 52.4280066, + 13.5607225 + ], + [ + 52.428207, + 13.5610652 + ], + [ + 52.4283942, + 13.5613609 + ], + [ + 52.428594, + 13.5616554 + ], + [ + 52.4287448, + 13.5618336 + ], + [ + 52.4289301, + 13.5620537 + ], + [ + 52.4290971, + 13.5622166 + ], + [ + 52.4292381, + 13.5623478 + ] + ] + }, + { + "osmId": "1266326116", + "name": "Berliner Ringbahn", + "lengthMeters": 97.39906268768459, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5371386, + 13.4462855 + ], + [ + 52.5372431, + 13.4460549 + ], + [ + 52.5373276, + 13.4458528 + ], + [ + 52.5374047, + 13.4456514 + ], + [ + 52.5376178, + 13.4450811 + ] + ] + }, + { + "osmId": "1266326117", + "name": "Berliner Ringbahn", + "lengthMeters": 80.79627760383832, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5366747, + 13.4472039 + ], + [ + 52.5368304, + 13.4469269 + ], + [ + 52.5369304, + 13.4467249 + ], + [ + 52.5371386, + 13.4462855 + ] + ] + }, + { + "osmId": "1266326118", + "name": "Berliner Ringbahn", + "lengthMeters": 366.3776759022333, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5393226, + 13.4404969 + ], + [ + 52.5391886, + 13.4407911 + ], + [ + 52.5390567, + 13.4410952 + ], + [ + 52.5389355, + 13.4413976 + ], + [ + 52.5388177, + 13.4417084 + ], + [ + 52.5375679, + 13.4450793 + ] + ] + }, + { + "osmId": "1266672531", + "name": "Stettiner Bahn", + "lengthMeters": 183.44179849020736, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5500897, + 13.3980719 + ], + [ + 52.5497689, + 13.397616 + ], + [ + 52.549488, + 13.3970129 + ], + [ + 52.5492799, + 13.396426 + ], + [ + 52.5491505, + 13.39589 + ] + ] + }, + { + "osmId": "1266672532", + "name": "Berliner Ringbahn", + "lengthMeters": 115.4157674523585, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494641, + 13.4053343 + ], + [ + 52.549419, + 13.4044266 + ], + [ + 52.549382, + 13.4036327 + ] + ] + }, + { + "osmId": "1266672536", + "name": "Berliner Ringbahn", + "lengthMeters": 99.97872819906118, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5489261, + 13.4162145 + ], + [ + 52.5487235, + 13.4168564 + ], + [ + 52.5485018, + 13.417518 + ] + ] + }, + { + "osmId": "1266672537", + "name": "Berliner Ringbahn", + "lengthMeters": 99.73384842174679, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5485356, + 13.4175404 + ], + [ + 52.5487564, + 13.4168795 + ], + [ + 52.5489589, + 13.4162401 + ] + ] + }, + { + "osmId": "1266672538", + "name": null, + "lengthMeters": 421.61352466447505, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549385, + 13.4067804 + ], + [ + 52.5494584, + 13.407914 + ], + [ + 52.5494805, + 13.4083363 + ], + [ + 52.5494899, + 13.4087688 + ], + [ + 52.5494949, + 13.4093698 + ], + [ + 52.5494824, + 13.4099763 + ], + [ + 52.549444, + 13.4118371 + ], + [ + 52.5494059, + 13.4130045 + ] + ] + }, + { + "osmId": "1266672539", + "name": null, + "lengthMeters": 422.84384548037053, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5494487, + 13.4130141 + ], + [ + 52.5494795, + 13.4118262 + ], + [ + 52.5495201, + 13.4099774 + ], + [ + 52.5495298, + 13.4093757 + ], + [ + 52.5495265, + 13.4087701 + ], + [ + 52.5495164, + 13.4083274 + ], + [ + 52.5494888, + 13.4078804 + ], + [ + 52.5494205, + 13.4067712 + ] + ] + }, + { + "osmId": "1266672540", + "name": "Berliner Ringbahn", + "lengthMeters": 134.68304011851598, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5495697, + 13.4073186 + ], + [ + 52.5495517, + 13.4069602 + ], + [ + 52.5494742, + 13.4054944 + ], + [ + 52.5494701, + 13.4054247 + ], + [ + 52.5494641, + 13.4053343 + ] + ] + }, + { + "osmId": "1266672541", + "name": "Berliner Ringbahn", + "lengthMeters": 207.83136202025713, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5493514, + 13.4038896 + ], + [ + 52.5493805, + 13.4044293 + ], + [ + 52.5494157, + 13.4050804 + ], + [ + 52.5495167, + 13.4069513 + ] + ] + }, + { + "osmId": "1266672542", + "name": "Berliner Ringbahn", + "lengthMeters": 626.7999824923778, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5303125, + 13.4537471 + ], + [ + 52.5316231, + 13.4524379 + ], + [ + 52.5334917, + 13.4505705 + ], + [ + 52.5350618, + 13.4490013 + ], + [ + 52.5351294, + 13.4489339 + ] + ] + }, + { + "osmId": "1266965613", + "name": "Berliner Ringbahn", + "lengthMeters": 302.5758275729696, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5366627, + 13.3494441 + ], + [ + 52.536751, + 13.3498563 + ], + [ + 52.5368997, + 13.3506892 + ], + [ + 52.5369694, + 13.3512012 + ], + [ + 52.5370052, + 13.3515249 + ], + [ + 52.5370331, + 13.3518198 + ], + [ + 52.5371271, + 13.3530035 + ], + [ + 52.5371958, + 13.3538185 + ] + ] + }, + { + "osmId": "1266965614", + "name": "Berliner Ringbahn", + "lengthMeters": 279.0124076017309, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5348104, + 13.3351491 + ], + [ + 52.5351371, + 13.3378219 + ], + [ + 52.5353047, + 13.3391934 + ] + ] + }, + { + "osmId": "1266965615", + "name": null, + "lengthMeters": 200.0072703330792, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5331002, + 13.362026 + ], + [ + 52.5338373, + 13.3612274 + ], + [ + 52.5345796, + 13.3604351 + ], + [ + 52.5346003, + 13.3604147 + ], + [ + 52.5346055, + 13.3604076 + ] + ] + }, + { + "osmId": "1266965616", + "name": "Berliner Ringbahn", + "lengthMeters": 88.59529876558084, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5483362, + 13.3845507 + ], + [ + 52.5483561, + 13.3851403 + ], + [ + 52.5483694, + 13.3854588 + ], + [ + 52.5483866, + 13.3858583 + ] + ] + }, + { + "osmId": "1267186476", + "name": null, + "lengthMeters": 80.71032682032104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4446992, + 13.5724567 + ], + [ + 52.4447101, + 13.571266 + ] + ] + }, + { + "osmId": "1268174073", + "name": null, + "lengthMeters": 287.5432204835316, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3377747, + 13.4159397 + ], + [ + 52.3392428, + 13.4154345 + ], + [ + 52.3403049, + 13.4150657 + ] + ] + }, + { + "osmId": "1268769952", + "name": null, + "lengthMeters": 157.94755276088958, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5086023, + 13.4398015 + ], + [ + 52.5086489, + 13.4396601 + ], + [ + 52.5087764, + 13.4393146 + ], + [ + 52.5089354, + 13.4389033 + ], + [ + 52.5090999, + 13.4385035 + ], + [ + 52.5093832, + 13.4378539 + ] + ] + }, + { + "osmId": "1271016617", + "name": "Kremmener Bahn", + "lengthMeters": 281.35424190536565, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5848659, + 13.2922027 + ], + [ + 52.5851105, + 13.2920421 + ], + [ + 52.5851435, + 13.2920219 + ], + [ + 52.5854215, + 13.2918326 + ], + [ + 52.5856784, + 13.2916495 + ], + [ + 52.5863363, + 13.2911554 + ], + [ + 52.5864388, + 13.2910754 + ], + [ + 52.5868831, + 13.2907287 + ], + [ + 52.5871802, + 13.2905217 + ] + ] + }, + { + "osmId": "1271016618", + "name": "Kremmener Bahn", + "lengthMeters": 86.07991159993384, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5781975, + 13.3343898 + ], + [ + 52.5781899, + 13.3341045 + ], + [ + 52.5781801, + 13.3337454 + ], + [ + 52.5781587, + 13.3331175 + ] + ] + }, + { + "osmId": "1273549037", + "name": null, + "lengthMeters": 398.2727362690224, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3606108, + 13.482118 + ], + [ + 52.3613824, + 13.4789178 + ], + [ + 52.3618992, + 13.4767743 + ], + [ + 52.3619261, + 13.4766626 + ] + ] + }, + { + "osmId": "1273549038", + "name": null, + "lengthMeters": 1182.4236251303003, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3781232, + 13.4833806 + ], + [ + 52.3780608, + 13.4832398 + ], + [ + 52.3776427, + 13.4822894 + ], + [ + 52.376585, + 13.479897 + ], + [ + 52.3755483, + 13.4775461 + ], + [ + 52.3752913, + 13.4769691 + ], + [ + 52.3744991, + 13.4751759 + ], + [ + 52.3734622, + 13.4728276 + ], + [ + 52.3734533, + 13.4728074 + ], + [ + 52.3723888, + 13.4704258 + ], + [ + 52.3718844, + 13.4692751 + ] + ] + }, + { + "osmId": "1274460576", + "name": null, + "lengthMeters": 124.59645788760133, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.511488, + 13.4991665 + ], + [ + 52.5121583, + 13.5006419 + ] + ] + }, + { + "osmId": "1274460577", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 409.5533440741838, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4730017, + 13.5533438 + ], + [ + 52.4719787, + 13.5535117 + ], + [ + 52.471597, + 13.5535408 + ], + [ + 52.4713152, + 13.5535201 + ], + [ + 52.4709739, + 13.5534322 + ], + [ + 52.4706499, + 13.553289 + ], + [ + 52.4699605, + 13.5528681 + ], + [ + 52.4699523, + 13.552863 + ], + [ + 52.4698701, + 13.5528128 + ], + [ + 52.4697703, + 13.5527519 + ], + [ + 52.4697378, + 13.5527309 + ], + [ + 52.469609, + 13.552648 + ], + [ + 52.4695605, + 13.5526168 + ], + [ + 52.4694228, + 13.5525369 + ] + ] + }, + { + "osmId": "1274460578", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 322.3378289868416, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4694007, + 13.5525952 + ], + [ + 52.4695504, + 13.5526876 + ], + [ + 52.4697255, + 13.5528029 + ], + [ + 52.4697587, + 13.5528247 + ], + [ + 52.4699252, + 13.5529231 + ], + [ + 52.4699376, + 13.5529304 + ], + [ + 52.4705038, + 13.5532652 + ], + [ + 52.470772, + 13.5534265 + ], + [ + 52.4710243, + 13.5535313 + ], + [ + 52.4713032, + 13.5535963 + ], + [ + 52.4715994, + 13.5536149 + ], + [ + 52.4721964, + 13.5535441 + ] + ] + }, + { + "osmId": "1274463542", + "name": null, + "lengthMeters": 104.70686415943842, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4260414, + 13.7534315 + ], + [ + 52.4259471, + 13.7535128 + ], + [ + 52.4256386, + 13.7537789 + ], + [ + 52.4253822, + 13.7540001 + ], + [ + 52.4253458, + 13.7540335 + ], + [ + 52.4252787, + 13.7540949 + ], + [ + 52.4252222, + 13.7541419 + ], + [ + 52.4252089, + 13.754153 + ] + ] + }, + { + "osmId": "1274463543", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 198.41100449192217, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.424485, + 13.7548675 + ], + [ + 52.4252402, + 13.7542017 + ], + [ + 52.4252855, + 13.7541618 + ], + [ + 52.425352, + 13.7541023 + ], + [ + 52.4253915, + 13.754067 + ], + [ + 52.4255666, + 13.7539169 + ], + [ + 52.4258634, + 13.7536625 + ], + [ + 52.4258932, + 13.753637 + ], + [ + 52.4260604, + 13.7534936 + ] + ] + }, + { + "osmId": "1274833345", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 240.37475573804647, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4526325, + 13.5577963 + ], + [ + 52.4525904, + 13.5578002 + ], + [ + 52.4504731, + 13.5579613 + ] + ] + }, + { + "osmId": "1274833346", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 585.5107081400921, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4110677, + 13.5504125 + ], + [ + 52.4113449, + 13.5507051 + ], + [ + 52.4123057, + 13.551639 + ], + [ + 52.4132224, + 13.5524552 + ], + [ + 52.4139871, + 13.5530909 + ], + [ + 52.4145713, + 13.5535126 + ], + [ + 52.4148775, + 13.5537307 + ], + [ + 52.4149689, + 13.5538076 + ], + [ + 52.4157173, + 13.5544455 + ] + ] + }, + { + "osmId": "1274847982", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 306.0360784971247, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4993628, + 13.5429165 + ], + [ + 52.4997444, + 13.5427187 + ], + [ + 52.5001426, + 13.5425512 + ], + [ + 52.5010487, + 13.54227 + ], + [ + 52.5014118, + 13.5421462 + ], + [ + 52.5016257, + 13.5420534 + ], + [ + 52.5020311, + 13.5418339 + ] + ] + }, + { + "osmId": "1274847983", + "name": "Berliner Au\u00dfenring", + "lengthMeters": 434.55398626565704, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4604091, + 13.5542219 + ], + [ + 52.4609128, + 13.5537024 + ], + [ + 52.4613654, + 13.5532676 + ], + [ + 52.4617825, + 13.5529083 + ], + [ + 52.4627985, + 13.5521401 + ], + [ + 52.4629585, + 13.5520265 + ], + [ + 52.4630154, + 13.5519821 + ], + [ + 52.4637591, + 13.5514266 + ], + [ + 52.4638902, + 13.5513265 + ] + ] + }, + { + "osmId": "1278155297", + "name": null, + "lengthMeters": 487.7773349390093, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5165724, + 13.2848061 + ], + [ + 52.5146824, + 13.2854802 + ], + [ + 52.5146567, + 13.2854891 + ], + [ + 52.5139897, + 13.2857321 + ], + [ + 52.5134851, + 13.2858872 + ], + [ + 52.5132526, + 13.2859377 + ], + [ + 52.5131514, + 13.2859564 + ], + [ + 52.5130302, + 13.2859735 + ], + [ + 52.5127507, + 13.2860024 + ], + [ + 52.5124822, + 13.2860085 + ], + [ + 52.5122689, + 13.2859997 + ], + [ + 52.512259, + 13.2859988 + ] + ] + }, + { + "osmId": "1279187797", + "name": null, + "lengthMeters": 98.45093773224666, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350763, + 11.636719 + ], + [ + 48.1350532, + 11.6359555 + ], + [ + 48.1350514, + 11.6357569 + ], + [ + 48.1350558, + 11.635591 + ], + [ + 48.1350612, + 11.6354948 + ], + [ + 48.1350679, + 11.6353941 + ] + ] + }, + { + "osmId": "1279591112", + "name": null, + "lengthMeters": 237.0873497659639, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536761, + 10.0813443 + ], + [ + 53.553701, + 10.0822174 + ], + [ + 53.5537028, + 10.0831704 + ], + [ + 53.5536836, + 10.0849321 + ] + ] + }, + { + "osmId": "1280391830", + "name": null, + "lengthMeters": 684.0023862857995, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5525361, + 10.0900067 + ], + [ + 53.5522971, + 10.0901998 + ], + [ + 53.5513643, + 10.0909067 + ], + [ + 53.5497359, + 10.0921144 + ], + [ + 53.5493869, + 10.092362 + ], + [ + 53.5492355, + 10.0924888 + ], + [ + 53.5490968, + 10.0926072 + ], + [ + 53.5488904, + 10.0928094 + ], + [ + 53.5486668, + 10.0930708 + ], + [ + 53.5485095, + 10.0932822 + ], + [ + 53.5483788, + 10.0934738 + ], + [ + 53.5477, + 10.0947192 + ], + [ + 53.5473702, + 10.0953306 + ] + ] + }, + { + "osmId": "1280391831", + "name": null, + "lengthMeters": 140.10734136084736, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5536836, + 10.0849321 + ], + [ + 53.553651, + 10.0857641 + ], + [ + 53.5536368, + 10.0865181 + ], + [ + 53.5536354, + 10.0868074 + ], + [ + 53.5536262, + 10.0870504 + ] + ] + }, + { + "osmId": "1280391832", + "name": null, + "lengthMeters": 613.9746534980635, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.547769, + 10.0948685 + ], + [ + 53.5479137, + 10.094593 + ], + [ + 53.5482654, + 10.0939503 + ], + [ + 53.5484567, + 10.093625 + ], + [ + 53.5486299, + 10.0933422 + ], + [ + 53.5489329, + 10.0929458 + ], + [ + 53.5491205, + 10.092738 + ], + [ + 53.5493138, + 10.0925523 + ], + [ + 53.5495305, + 10.0923604 + ], + [ + 53.549887, + 10.0920821 + ], + [ + 53.5510835, + 10.0911997 + ], + [ + 53.5513878, + 10.0909702 + ], + [ + 53.5517031, + 10.0907396 + ], + [ + 53.5523136, + 10.0902826 + ], + [ + 53.5524492, + 10.0901735 + ] + ] + }, + { + "osmId": "1280391834", + "name": null, + "lengthMeters": 918.3773771355613, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537467, + 10.081337 + ], + [ + 53.5536631, + 10.0802253 + ], + [ + 53.5536165, + 10.0792237 + ], + [ + 53.5535714, + 10.0782838 + ], + [ + 53.5535447, + 10.0770181 + ], + [ + 53.5535317, + 10.0759406 + ], + [ + 53.5535335, + 10.0754746 + ], + [ + 53.5535243, + 10.074014 + ], + [ + 53.5535258, + 10.0729451 + ], + [ + 53.553567, + 10.0717392 + ], + [ + 53.5536422, + 10.0706174 + ], + [ + 53.5537029, + 10.0699351 + ], + [ + 53.5537854, + 10.0692522 + ], + [ + 53.5539156, + 10.0683074 + ], + [ + 53.5540233, + 10.067527 + ] + ] + }, + { + "osmId": "1280391835", + "name": null, + "lengthMeters": 940.7290334460624, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.554032, + 10.067207 + ], + [ + 53.5537377, + 10.0692391 + ], + [ + 53.5536594, + 10.0699058 + ], + [ + 53.5536014, + 10.0704916 + ], + [ + 53.5535768, + 10.0707765 + ], + [ + 53.5535432, + 10.0712397 + ], + [ + 53.5534904, + 10.0723395 + ], + [ + 53.5534752, + 10.0729531 + ], + [ + 53.553473, + 10.0739829 + ], + [ + 53.5534853, + 10.0754539 + ], + [ + 53.5534886, + 10.0759229 + ], + [ + 53.5534935, + 10.0770181 + ], + [ + 53.5534996, + 10.0774932 + ], + [ + 53.5535253, + 10.0782683 + ], + [ + 53.5535299, + 10.0785748 + ], + [ + 53.5535622, + 10.0792065 + ], + [ + 53.5535808, + 10.0796565 + ], + [ + 53.5536101, + 10.0802174 + ], + [ + 53.5536761, + 10.0813443 + ] + ] + }, + { + "osmId": "1283269533", + "name": "U6", + "lengthMeters": 567.7557309756312, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4472629, + 13.3855677 + ], + [ + 52.4495899, + 13.3851218 + ], + [ + 52.4502476, + 13.3850073 + ], + [ + 52.4519714, + 13.3846894 + ], + [ + 52.4523378, + 13.3846525 + ] + ] + }, + { + "osmId": "1283269534", + "name": "U6", + "lengthMeters": 87.89980434829096, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4523378, + 13.3846525 + ], + [ + 52.4526939, + 13.3846528 + ], + [ + 52.4531283, + 13.3846507 + ] + ] + }, + { + "osmId": "1283269535", + "name": "U6", + "lengthMeters": 141.4127555829832, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4531283, + 13.3846507 + ], + [ + 52.4534076, + 13.3846077 + ], + [ + 52.4542319, + 13.3844566 + ], + [ + 52.4543927, + 13.3844271 + ] + ] + }, + { + "osmId": "1283269536", + "name": "U6", + "lengthMeters": 155.1046082695729, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4543927, + 13.3844271 + ], + [ + 52.4548875, + 13.3843291 + ], + [ + 52.4557692, + 13.3840629 + ] + ] + }, + { + "osmId": "1284740821", + "name": null, + "lengthMeters": 122.83245661389242, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5210468, + 13.4034279 + ], + [ + 52.5208263, + 13.4037189 + ], + [ + 52.5207788, + 13.4037778 + ], + [ + 52.5204243, + 13.4042441 + ], + [ + 52.5202412, + 13.4044957 + ], + [ + 52.520221, + 13.4045289 + ], + [ + 52.5201929, + 13.4045781 + ] + ] + }, + { + "osmId": "1284740822", + "name": null, + "lengthMeters": 122.24276129635092, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5202184, + 13.4046116 + ], + [ + 52.5202412, + 13.4045688 + ], + [ + 52.5202631, + 13.4045334 + ], + [ + 52.5207847, + 13.4038291 + ], + [ + 52.5208424, + 13.4037548 + ], + [ + 52.521065, + 13.4034606 + ] + ] + }, + { + "osmId": "1290407860", + "name": null, + "lengthMeters": 80.12341531333969, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5537566, + 10.0825481 + ], + [ + 53.5537662, + 10.0827539 + ], + [ + 53.5538108, + 10.0837576 + ] + ] + }, + { + "osmId": "1290620796", + "name": null, + "lengthMeters": 101.81670190275884, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5059229, + 13.4873122 + ], + [ + 52.5060472, + 13.487809 + ], + [ + 52.5061705, + 13.4882548 + ], + [ + 52.5063069, + 13.4886765 + ] + ] + }, + { + "osmId": "1290620797", + "name": "Berliner Ringbahn", + "lengthMeters": 100.81803588321293, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5358176, + 13.4481712 + ], + [ + 52.5352132, + 13.4487724 + ], + [ + 52.535042, + 13.4489432 + ] + ] + }, + { + "osmId": "1291908783", + "name": null, + "lengthMeters": 150.35831757630405, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887939, + 13.2632085 + ], + [ + 52.4893539, + 13.2643105 + ], + [ + 52.4893584, + 13.2643193 + ], + [ + 52.4896626, + 13.2649103 + ] + ] + }, + { + "osmId": "1293502002", + "name": null, + "lengthMeters": 423.83985179735134, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.4850477, + 10.2063799 + ], + [ + 53.4849412, + 10.2073866 + ], + [ + 53.4848196, + 10.2085351 + ], + [ + 53.4847822, + 10.2088546 + ], + [ + 53.4847346, + 10.209162 + ], + [ + 53.4846795, + 10.2094478 + ], + [ + 53.4846515, + 10.2095702 + ], + [ + 53.4846231, + 10.2096812 + ], + [ + 53.4845807, + 10.2098439 + ], + [ + 53.4845215, + 10.2100465 + ], + [ + 53.4844346, + 10.2102967 + ], + [ + 53.4843425, + 10.2105291 + ], + [ + 53.4842083, + 10.2108203 + ], + [ + 53.4840416, + 10.2111358 + ], + [ + 53.4837686, + 10.2116363 + ], + [ + 53.4837037, + 10.211755 + ], + [ + 53.4835353, + 10.2120632 + ] + ] + }, + { + "osmId": "1293962239", + "name": null, + "lengthMeters": 150.67528467262773, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.486515, + 10.1908489 + ], + [ + 53.4866788, + 10.1899022 + ], + [ + 53.486701, + 10.1897748 + ], + [ + 53.4867099, + 10.1897211 + ], + [ + 53.4867124, + 10.189701 + ], + [ + 53.4868125, + 10.189034 + ], + [ + 53.4868351, + 10.1888694 + ], + [ + 53.4868486, + 10.1887588 + ], + [ + 53.4868612, + 10.1886481 + ] + ] + }, + { + "osmId": "1295392714", + "name": null, + "lengthMeters": 239.32283513217632, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4386292, + 13.2807109 + ], + [ + 52.4386136, + 13.2806668 + ], + [ + 52.4384875, + 13.2803111 + ], + [ + 52.4384302, + 13.280157 + ], + [ + 52.4381151, + 13.2793306 + ], + [ + 52.4379905, + 13.2790024 + ], + [ + 52.4377497, + 13.2783424 + ], + [ + 52.43752, + 13.2776858 + ] + ] + }, + { + "osmId": "1295392715", + "name": null, + "lengthMeters": 1433.8349058306906, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.43752, + 13.2776858 + ], + [ + 52.4349684, + 13.2704604 + ], + [ + 52.4331205, + 13.2652017 + ], + [ + 52.4329379, + 13.2646832 + ], + [ + 52.4310683, + 13.2593731 + ] + ] + }, + { + "osmId": "1295392716", + "name": null, + "lengthMeters": 92.51015642929417, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4807942, + 13.3538575 + ], + [ + 52.4814467, + 13.354705 + ] + ] + }, + { + "osmId": "1295392720", + "name": null, + "lengthMeters": 86.33837882614431, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4304104, + 13.1925494 + ], + [ + 52.4297695, + 13.1918305 + ] + ] + }, + { + "osmId": "1295392722", + "name": null, + "lengthMeters": 210.05789640479597, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4332658, + 13.1961545 + ], + [ + 52.4332715, + 13.1961636 + ], + [ + 52.4334426, + 13.1964375 + ], + [ + 52.4336555, + 13.1967925 + ], + [ + 52.4338798, + 13.1971832 + ], + [ + 52.4340966, + 13.1975799 + ], + [ + 52.4342257, + 13.1978265 + ], + [ + 52.434307, + 13.1979837 + ], + [ + 52.434424, + 13.1982158 + ], + [ + 52.4345368, + 13.1984438 + ] + ] + }, + { + "osmId": "1295392723", + "name": null, + "lengthMeters": 110.07974968973176, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4304494, + 13.2559482 + ], + [ + 52.430288, + 13.2553396 + ], + [ + 52.4301995, + 13.2549596 + ], + [ + 52.4301219, + 13.2545855 + ], + [ + 52.4300933, + 13.2544346 + ] + ] + }, + { + "osmId": "1295392727", + "name": null, + "lengthMeters": 158.2926404400727, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4849346, + 13.3593595 + ], + [ + 52.4849594, + 13.3593901 + ], + [ + 52.4851721, + 13.3596402 + ], + [ + 52.4860924, + 13.3607196 + ] + ] + }, + { + "osmId": "1308876721", + "name": null, + "lengthMeters": 78.23115127602253, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.570675, + 9.9340051 + ], + [ + 53.5702015, + 9.9341645 + ], + [ + 53.5699842, + 9.9342293 + ] + ] + }, + { + "osmId": "1309235193", + "name": "Dresdner Bahn", + "lengthMeters": 189.30928851707688, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4003723, + 13.3887042 + ], + [ + 52.3987705, + 13.3896496 + ] + ] + }, + { + "osmId": "1309235194", + "name": "Dresdner Bahn", + "lengthMeters": 188.74166232298063, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3987796, + 13.3897035 + ], + [ + 52.4003786, + 13.3887701 + ] + ] + }, + { + "osmId": "1309246481", + "name": "Dresdner Bahn", + "lengthMeters": 1153.501301225821, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3864795, + 13.3969018 + ], + [ + 52.3857825, + 13.3972827 + ], + [ + 52.3853613, + 13.3975153 + ], + [ + 52.3842412, + 13.3981619 + ], + [ + 52.382737, + 13.3990556 + ], + [ + 52.3789152, + 13.4012956 + ], + [ + 52.3781276, + 13.4017187 + ], + [ + 52.3771645, + 13.4021844 + ], + [ + 52.3766676, + 13.4024044 + ] + ] + }, + { + "osmId": "1309246482", + "name": "Dresdner Bahn", + "lengthMeters": 1154.1790891297348, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.37667, + 13.4024656 + ], + [ + 52.3771776, + 13.4022367 + ], + [ + 52.3781311, + 13.4017669 + ], + [ + 52.3789334, + 13.4013294 + ], + [ + 52.3827517, + 13.3991062 + ], + [ + 52.3842525, + 13.3982165 + ], + [ + 52.3853732, + 13.3975737 + ], + [ + 52.3857939, + 13.3973356 + ], + [ + 52.3864889, + 13.3969632 + ] + ] + }, + { + "osmId": "1309327659", + "name": null, + "lengthMeters": 90.34437213116188, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.454739, + 13.5078382 + ], + [ + 52.4547215, + 13.5078737 + ], + [ + 52.4546537, + 13.5079892 + ], + [ + 52.4546061, + 13.5080867 + ], + [ + 52.4545637, + 13.5082068 + ], + [ + 52.4545242, + 13.508289 + ], + [ + 52.4541929, + 13.5088184 + ] + ] + }, + { + "osmId": "1309359432", + "name": null, + "lengthMeters": 90.16369751929146, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.454739, + 13.5078382 + ], + [ + 52.4547191, + 13.507867 + ], + [ + 52.4544881, + 13.5082275 + ], + [ + 52.454155, + 13.5087612 + ] + ] + }, + { + "osmId": "1309359434", + "name": null, + "lengthMeters": 102.76627211765548, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.454266, + 13.5096504 + ], + [ + 52.4546088, + 13.5091089 + ], + [ + 52.4548849, + 13.5086577 + ], + [ + 52.4549282, + 13.5085926 + ] + ] + }, + { + "osmId": "1311199649", + "name": "Dresdner Bahn", + "lengthMeters": 127.11930235963783, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4472722, + 13.3614568 + ], + [ + 52.448235, + 13.3609355 + ], + [ + 52.4483583, + 13.3608714 + ] + ] + }, + { + "osmId": "1314201000", + "name": null, + "lengthMeters": 78.98253258222176, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5692223, + 13.5638507 + ], + [ + 52.5698488, + 13.5644014 + ] + ] + }, + { + "osmId": "1315275680", + "name": null, + "lengthMeters": 102.01232760080923, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5678495, + 9.9344889 + ], + [ + 53.5676093, + 9.9344998 + ], + [ + 53.5671386, + 9.934505 + ], + [ + 53.5669324, + 9.9345211 + ] + ] + }, + { + "osmId": "1319007315", + "name": null, + "lengthMeters": 118.4601138979778, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5173536, + 13.3740818 + ], + [ + 52.517558, + 13.3739682 + ], + [ + 52.5178785, + 13.3738085 + ], + [ + 52.5183707, + 13.3735614 + ] + ] + }, + { + "osmId": "1321668872", + "name": null, + "lengthMeters": 93.44903628390563, + "maxSpeedKph": 60.0, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.5204973, + 13.3723211 + ], + [ + 52.5206208, + 13.3722484 + ], + [ + 52.5207651, + 13.3721577 + ], + [ + 52.5209049, + 13.3720622 + ], + [ + 52.5212776, + 13.3718088 + ] + ] + }, + { + "osmId": "1324970340", + "name": "Tempelhofer Kurve", + "lengthMeters": 409.05971188136846, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4604511, + 13.3608846 + ], + [ + 52.459343, + 13.3604937 + ], + [ + 52.4592651, + 13.3604633 + ], + [ + 52.4592102, + 13.3604413 + ], + [ + 52.4591317, + 13.3604035 + ], + [ + 52.4590547, + 13.3603619 + ], + [ + 52.4589757, + 13.3603121 + ], + [ + 52.4589006, + 13.3602597 + ], + [ + 52.4584735, + 13.3599358 + ], + [ + 52.4582207, + 13.359759 + ], + [ + 52.4577485, + 13.3593849 + ], + [ + 52.4575198, + 13.359211 + ], + [ + 52.4574062, + 13.3591268 + ], + [ + 52.4572902, + 13.3590464 + ], + [ + 52.457126, + 13.3589452 + ], + [ + 52.457001, + 13.3588756 + ] + ] + }, + { + "osmId": "1325627408", + "name": "Mahlower Kurve", + "lengthMeters": 237.06490895877332, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3564423, + 13.4093922 + ], + [ + 52.3560335, + 13.409525 + ], + [ + 52.3553884, + 13.409731 + ], + [ + 52.3548367, + 13.4099324 + ], + [ + 52.3545989, + 13.4100379 + ], + [ + 52.3543646, + 13.4101624 + ] + ] + }, + { + "osmId": "1328585249", + "name": null, + "lengthMeters": 216.34687606182598, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2269715, + 11.6796578 + ], + [ + 48.2258051, + 11.6793944 + ], + [ + 48.2254567, + 11.6793148 + ], + [ + 48.2250985, + 11.6792329 + ], + [ + 48.2250477, + 11.6792213 + ] + ] + }, + { + "osmId": "1328585250", + "name": null, + "lengthMeters": 363.5100577034625, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2269604, + 11.6797725 + ], + [ + 48.2269754, + 11.6797759 + ], + [ + 48.2272295, + 11.6798332 + ], + [ + 48.2278096, + 11.6799254 + ], + [ + 48.2290267, + 11.6803572 + ], + [ + 48.2301574, + 11.680766 + ] + ] + }, + { + "osmId": "1328585251", + "name": null, + "lengthMeters": 216.34245021616317, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2250361, + 11.6793414 + ], + [ + 48.2257932, + 11.6795099 + ], + [ + 48.226205, + 11.679602 + ], + [ + 48.2264072, + 11.6796476 + ], + [ + 48.2269298, + 11.6797656 + ], + [ + 48.2269604, + 11.6797725 + ] + ] + }, + { + "osmId": "1328585252", + "name": null, + "lengthMeters": 363.44452138327716, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2301586, + 11.6807111 + ], + [ + 48.2290279, + 11.6802852 + ], + [ + 48.227827, + 11.6798187 + ], + [ + 48.2272388, + 11.6797188 + ], + [ + 48.2271954, + 11.6797083 + ], + [ + 48.2269865, + 11.6796611 + ], + [ + 48.2269715, + 11.6796578 + ] + ] + }, + { + "osmId": "1328585253", + "name": null, + "lengthMeters": 436.62860360811493, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2155183, + 11.6762265 + ], + [ + 48.215055, + 11.6758852 + ], + [ + 48.2145892, + 11.6755483 + ], + [ + 48.2143673, + 11.6753757 + ], + [ + 48.2140974, + 11.6751615 + ], + [ + 48.2136833, + 11.674813 + ], + [ + 48.213274, + 11.6744443 + ], + [ + 48.2128911, + 11.6740874 + ], + [ + 48.2125166, + 11.6737163 + ], + [ + 48.2124584, + 11.6736545 + ], + [ + 48.2121194, + 11.6732945 + ] + ] + }, + { + "osmId": "1328585254", + "name": null, + "lengthMeters": 436.80786092164567, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2120974, + 11.6733439 + ], + [ + 48.2123844, + 11.6736442 + ], + [ + 48.2125014, + 11.6737667 + ], + [ + 48.2128745, + 11.6741357 + ], + [ + 48.2131801, + 11.6744211 + ], + [ + 48.213258, + 11.6744939 + ], + [ + 48.2136681, + 11.6748619 + ], + [ + 48.2140808, + 11.6752091 + ], + [ + 48.2143554, + 11.6754278 + ], + [ + 48.2145755, + 11.6755946 + ], + [ + 48.2150439, + 11.6759381 + ], + [ + 48.2154993, + 11.6762742 + ] + ] + }, + { + "osmId": "1328585255", + "name": null, + "lengthMeters": 858.9548469057517, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2301574, + 11.680766 + ], + [ + 48.2307553, + 11.6810477 + ], + [ + 48.2309205, + 11.6811296 + ], + [ + 48.2310787, + 11.6812132 + ], + [ + 48.2314337, + 11.6814199 + ], + [ + 48.231737, + 11.6816212 + ], + [ + 48.232208, + 11.6819758 + ], + [ + 48.2322699, + 11.682028 + ], + [ + 48.2325318, + 11.6822488 + ], + [ + 48.2330055, + 11.6827007 + ], + [ + 48.2333961, + 11.6831035 + ], + [ + 48.2336298, + 11.6833479 + ], + [ + 48.2344587, + 11.6842373 + ], + [ + 48.2346485, + 11.6844414 + ], + [ + 48.2361968, + 11.686094 + ], + [ + 48.2363189, + 11.6862203 + ], + [ + 48.2367466, + 11.6866788 + ] + ] + }, + { + "osmId": "1328585256", + "name": null, + "lengthMeters": 861.4496263282424, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.2367683, + 11.6866348 + ], + [ + 48.2363383, + 11.6861761 + ], + [ + 48.2362191, + 11.6860487 + ], + [ + 48.234671, + 11.6843949 + ], + [ + 48.2344792, + 11.68419 + ], + [ + 48.2340845, + 11.6837676 + ], + [ + 48.2338479, + 11.68352 + ], + [ + 48.2334184, + 11.6830571 + ], + [ + 48.2330136, + 11.6826356 + ], + [ + 48.2325511, + 11.6822012 + ], + [ + 48.2322283, + 11.6819268 + ], + [ + 48.2317554, + 11.6815711 + ], + [ + 48.2314484, + 11.6813676 + ], + [ + 48.2312309, + 11.6812428 + ], + [ + 48.2310905, + 11.6811608 + ], + [ + 48.2309348, + 11.6810779 + ], + [ + 48.2307718, + 11.6809974 + ], + [ + 48.2301586, + 11.6807111 + ] + ] + }, + { + "osmId": "1328606980", + "name": null, + "lengthMeters": 87.97882728897726, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5206978, + 13.4060862 + ], + [ + 52.5206443, + 13.4059805 + ], + [ + 52.520608, + 13.405912 + ], + [ + 52.5204651, + 13.4056282 + ], + [ + 52.5202778, + 13.4052519 + ], + [ + 52.5202315, + 13.4051565 + ], + [ + 52.5202136, + 13.4051176 + ], + [ + 52.5202103, + 13.4051089 + ], + [ + 52.5201993, + 13.4050773 + ] + ] + }, + { + "osmId": "1328606981", + "name": null, + "lengthMeters": 173.35498759274768, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5216909, + 13.4080613 + ], + [ + 52.5209395, + 13.4065644 + ], + [ + 52.5206978, + 13.4060862 + ] + ] + }, + { + "osmId": "1328606984", + "name": null, + "lengthMeters": 112.5198411888946, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5245194, + 13.4216587 + ], + [ + 52.5245805, + 13.4214332 + ], + [ + 52.5246503, + 13.421211 + ], + [ + 52.5249191, + 13.4204983 + ], + [ + 52.5249466, + 13.4204264 + ], + [ + 52.5250216, + 13.4202295 + ], + [ + 52.5250248, + 13.4202204 + ] + ] + }, + { + "osmId": "1328606987", + "name": null, + "lengthMeters": 167.8045811230342, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5234766, + 13.4369284 + ], + [ + 52.523473, + 13.4369021 + ], + [ + 52.5233679, + 13.4361436 + ], + [ + 52.5233294, + 13.4357383 + ], + [ + 52.5232764, + 13.4344761 + ] + ] + }, + { + "osmId": "1328606988", + "name": null, + "lengthMeters": 126.65919625197756, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5237486, + 13.4387442 + ], + [ + 52.5237141, + 13.4385936 + ], + [ + 52.5236923, + 13.4384917 + ], + [ + 52.5236659, + 13.4383348 + ], + [ + 52.5235543, + 13.4374939 + ], + [ + 52.5234766, + 13.4369284 + ] + ] + }, + { + "osmId": "1328606996", + "name": null, + "lengthMeters": 174.01023654782318, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.520673, + 13.4061021 + ], + [ + 52.5209138, + 13.4065863 + ], + [ + 52.5216668, + 13.4080888 + ] + ] + }, + { + "osmId": "1328804677", + "name": null, + "lengthMeters": 205.97157896343276, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1438907, + 11.5081707 + ], + [ + 48.1437321, + 11.5098984 + ], + [ + 48.1436343, + 11.51092 + ] + ] + }, + { + "osmId": "1329193559", + "name": null, + "lengthMeters": 98.28035401908892, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5242097, + 13.4188248 + ], + [ + 52.5242367, + 13.4189028 + ], + [ + 52.5242706, + 13.4189694 + ], + [ + 52.5243269, + 13.4190426 + ], + [ + 52.5243907, + 13.4191085 + ], + [ + 52.524773, + 13.4195192 + ], + [ + 52.5249008, + 13.4196578 + ], + [ + 52.524917, + 13.4196755 + ] + ] + }, + { + "osmId": "1329197586", + "name": null, + "lengthMeters": 97.33339257113556, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5080581, + 13.463805 + ], + [ + 52.5077593, + 13.4650698 + ], + [ + 52.507743, + 13.4651467 + ] + ] + }, + { + "osmId": "1329662747", + "name": null, + "lengthMeters": 98.40928938474462, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4706325, + 13.3853515 + ], + [ + 52.4708016, + 13.3846213 + ], + [ + 52.470908, + 13.3841656 + ], + [ + 52.470946, + 13.3839929 + ] + ] + }, + { + "osmId": "1329662748", + "name": null, + "lengthMeters": 226.06092458201167, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712922, + 13.3746078 + ], + [ + 52.4713077, + 13.3720977 + ], + [ + 52.4713087, + 13.371907 + ], + [ + 52.4713147, + 13.3716635 + ], + [ + 52.4713271, + 13.3714165 + ], + [ + 52.4713366, + 13.3712724 + ] + ] + }, + { + "osmId": "1329662749", + "name": null, + "lengthMeters": 102.55510987180224, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4704593, + 13.3859081 + ], + [ + 52.4703081, + 13.386581 + ], + [ + 52.4702352, + 13.3869059 + ], + [ + 52.4701387, + 13.3873277 + ] + ] + }, + { + "osmId": "1329662750", + "name": null, + "lengthMeters": 176.21912696783, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4712811, + 13.371414 + ], + [ + 52.4712722, + 13.3716461 + ], + [ + 52.4712677, + 13.3718808 + ], + [ + 52.4712663, + 13.3724429 + ], + [ + 52.4712637, + 13.3728206 + ], + [ + 52.4712555, + 13.3740149 + ] + ] + }, + { + "osmId": "1330313699", + "name": null, + "lengthMeters": 653.5622143499237, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5272889, + 13.2607532 + ], + [ + 52.5272112, + 13.2595243 + ], + [ + 52.5272106, + 13.2595124 + ], + [ + 52.527028, + 13.2566548 + ], + [ + 52.5268339, + 13.2536165 + ], + [ + 52.5266956, + 13.2514527 + ], + [ + 52.5266765, + 13.2511448 + ] + ] + }, + { + "osmId": "1330313700", + "name": null, + "lengthMeters": 653.8121376297496, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5266314, + 13.2511512 + ], + [ + 52.5266809, + 13.2519281 + ], + [ + 52.5267928, + 13.2536248 + ], + [ + 52.5268777, + 13.2549998 + ], + [ + 52.5269424, + 13.2559925 + ], + [ + 52.5270276, + 13.2573489 + ], + [ + 52.5271631, + 13.2595249 + ], + [ + 52.5272431, + 13.2607634 + ] + ] + }, + { + "osmId": "1330899066", + "name": null, + "lengthMeters": 963.1807119480306, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1374217, + 11.5888738 + ], + [ + 48.1374683, + 11.5886477 + ], + [ + 48.1374714, + 11.5886327 + ], + [ + 48.1374985, + 11.5885364 + ], + [ + 48.1375088, + 11.5884997 + ], + [ + 48.1375504, + 11.5883783 + ], + [ + 48.1376224, + 11.5881558 + ], + [ + 48.137637, + 11.5880843 + ], + [ + 48.1376469, + 11.5880151 + ], + [ + 48.1376614, + 11.5878234 + ], + [ + 48.1376717, + 11.5876445 + ], + [ + 48.1376885, + 11.5875074 + ], + [ + 48.1376907, + 11.5874953 + ], + [ + 48.137738, + 11.5872407 + ], + [ + 48.1377708, + 11.5870749 + ], + [ + 48.1378293, + 11.5867791 + ], + [ + 48.1382125, + 11.5847753 + ], + [ + 48.1382399, + 11.5846428 + ], + [ + 48.13826, + 11.5845352 + ], + [ + 48.1382721, + 11.5844705 + ], + [ + 48.1383023, + 11.5843113 + ], + [ + 48.1384945, + 11.5833088 + ], + [ + 48.1385534, + 11.5830033 + ], + [ + 48.1387124, + 11.5821651 + ], + [ + 48.1388801, + 11.5812943 + ], + [ + 48.1390918, + 11.5801788 + ], + [ + 48.1391353, + 11.579955 + ], + [ + 48.1393035, + 11.5790901 + ], + [ + 48.13943, + 11.5784223 + ], + [ + 48.1395099, + 11.5779834 + ], + [ + 48.1395785, + 11.5775697 + ], + [ + 48.1395908, + 11.5774958 + ], + [ + 48.1395932, + 11.5774814 + ], + [ + 48.1395973, + 11.577449 + ], + [ + 48.1397336, + 11.5763838 + ] + ] + }, + { + "osmId": "1330899067", + "name": null, + "lengthMeters": 80.84609182931321, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1397336, + 11.5763838 + ], + [ + 48.1397438, + 11.576303 + ], + [ + 48.1397496, + 11.5762293 + ], + [ + 48.1397501, + 11.5761571 + ], + [ + 48.1397408, + 11.5761056 + ], + [ + 48.1397385, + 11.5760928 + ], + [ + 48.1397183, + 11.5760345 + ], + [ + 48.1396885, + 11.5759912 + ], + [ + 48.139654, + 11.5759548 + ], + [ + 48.1395208, + 11.5758464 + ], + [ + 48.1394828, + 11.5758163 + ], + [ + 48.1394547, + 11.5757748 + ], + [ + 48.1394315, + 11.5757224 + ], + [ + 48.1394224, + 11.575682 + ], + [ + 48.1394221, + 11.5756612 + ], + [ + 48.1394216, + 11.5756258 + ], + [ + 48.139425, + 11.5755804 + ], + [ + 48.1394315, + 11.5755364 + ] + ] + }, + { + "osmId": "1330899068", + "name": null, + "lengthMeters": 867.0126324401151, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1397072, + 11.5763732 + ], + [ + 48.1397054, + 11.5763899 + ], + [ + 48.1396452, + 11.5768849 + ], + [ + 48.1396073, + 11.5771838 + ], + [ + 48.1395704, + 11.5774471 + ], + [ + 48.1395663, + 11.5774762 + ], + [ + 48.1395528, + 11.5775632 + ], + [ + 48.1394884, + 11.5779797 + ], + [ + 48.1394104, + 11.5783853 + ], + [ + 48.139317, + 11.5788768 + ], + [ + 48.1391096, + 11.5799342 + ], + [ + 48.1390652, + 11.5801676 + ], + [ + 48.1388552, + 11.5812718 + ], + [ + 48.1387681, + 11.5817264 + ], + [ + 48.1385107, + 11.5830678 + ], + [ + 48.1384669, + 11.583302 + ], + [ + 48.1382735, + 11.5843166 + ], + [ + 48.1382442, + 11.5844662 + ], + [ + 48.1382328, + 11.5845273 + ], + [ + 48.1382119, + 11.5846374 + ], + [ + 48.1381855, + 11.5847746 + ], + [ + 48.1378026, + 11.5867691 + ], + [ + 48.1377452, + 11.587061 + ], + [ + 48.1377116, + 11.5872323 + ], + [ + 48.1376625, + 11.587481 + ], + [ + 48.1376601, + 11.5874935 + ], + [ + 48.1376564, + 11.587515 + ], + [ + 48.1376291, + 11.5876295 + ] + ] + }, + { + "osmId": "1330899069", + "name": null, + "lengthMeters": 81.38326549146787, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1394014, + 11.5755237 + ], + [ + 48.1393916, + 11.5755779 + ], + [ + 48.1393864, + 11.5756322 + ], + [ + 48.1393873, + 11.5756649 + ], + [ + 48.1393877, + 11.5756813 + ], + [ + 48.1393948, + 11.5757336 + ], + [ + 48.1394112, + 11.5757777 + ], + [ + 48.1394289, + 11.5758111 + ], + [ + 48.1394713, + 11.5758625 + ], + [ + 48.1395161, + 11.5758943 + ], + [ + 48.1396447, + 11.5760056 + ], + [ + 48.1396856, + 11.5760518 + ], + [ + 48.1397101, + 11.5761164 + ], + [ + 48.1397217, + 11.5761867 + ], + [ + 48.139717, + 11.5762946 + ], + [ + 48.1397072, + 11.5763732 + ] + ] + }, + { + "osmId": "1332078476", + "name": "Nordring", + "lengthMeters": 418.31738731646124, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1480138, + 11.6495974 + ], + [ + 48.1483229, + 11.6495654 + ], + [ + 48.1486674, + 11.6495308 + ], + [ + 48.1487098, + 11.6495265 + ], + [ + 48.1487439, + 11.649523 + ], + [ + 48.1487793, + 11.649519 + ], + [ + 48.1496262, + 11.6494227 + ], + [ + 48.1501198, + 11.6493747 + ], + [ + 48.1507413, + 11.6493142 + ], + [ + 48.1509781, + 11.6492777 + ], + [ + 48.1512394, + 11.6492254 + ], + [ + 48.1514735, + 11.6491651 + ], + [ + 48.1517602, + 11.6491136 + ] + ] + }, + { + "osmId": "1332078477", + "name": null, + "lengthMeters": 208.9580524424523, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.154445, + 11.6487279 + ], + [ + 48.1552958, + 11.6485991 + ], + [ + 48.1561167, + 11.6484799 + ], + [ + 48.1562057, + 11.648467 + ], + [ + 48.1562434, + 11.6484615 + ], + [ + 48.1563151, + 11.648451 + ] + ] + }, + { + "osmId": "1332078478", + "name": null, + "lengthMeters": 196.10430062296132, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1544419, + 11.6486718 + ], + [ + 48.1538842, + 11.6487538 + ], + [ + 48.1538239, + 11.6487623 + ], + [ + 48.1530541, + 11.6488711 + ], + [ + 48.1526863, + 11.6489234 + ] + ] + }, + { + "osmId": "1332078480", + "name": null, + "lengthMeters": 100.00245855670039, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1625921, + 11.6474391 + ], + [ + 48.1627555, + 11.6473912 + ], + [ + 48.1633557, + 11.6471845 + ], + [ + 48.1634213, + 11.6471633 + ], + [ + 48.1634291, + 11.6471608 + ], + [ + 48.1634701, + 11.6471476 + ] + ] + }, + { + "osmId": "1332078483", + "name": null, + "lengthMeters": 200.0781036420974, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1601371, + 11.6478928 + ], + [ + 48.1598617, + 11.6479274 + ], + [ + 48.1594252, + 11.6479716 + ], + [ + 48.1588765, + 11.6480187 + ], + [ + 48.1583428, + 11.6480912 + ] + ] + }, + { + "osmId": "1332078484", + "name": null, + "lengthMeters": 199.87717565104546, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1583481, + 11.6481462 + ], + [ + 48.1588806, + 11.648071 + ], + [ + 48.1594182, + 11.648026 + ], + [ + 48.1598521, + 11.6479879 + ], + [ + 48.1601408, + 11.6479537 + ] + ] + }, + { + "osmId": "1332742576", + "name": "Stettiner Bahn", + "lengthMeters": 158.64067384580872, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6157769, + 13.4702903 + ], + [ + 52.6152887, + 13.469763 + ], + [ + 52.6151279, + 13.4695887 + ], + [ + 52.6146751, + 13.4690979 + ], + [ + 52.6145852, + 13.4689984 + ] + ] + }, + { + "osmId": "1332742577", + "name": "Stettiner Bahn", + "lengthMeters": 201.01674474114833, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.6157538, + 13.4703467 + ], + [ + 52.6157572, + 13.4703503 + ], + [ + 52.6164246, + 13.4710545 + ], + [ + 52.6164999, + 13.4711314 + ], + [ + 52.6172775, + 13.471949 + ] + ] + }, + { + "osmId": "1333768799", + "name": "Vogelfluglinie", + "lengthMeters": 965.3394502491725, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5747419, + 10.0978075 + ], + [ + 53.5747208, + 10.0976736 + ], + [ + 53.574717, + 10.0976496 + ], + [ + 53.5744246, + 10.0956673 + ], + [ + 53.5741781, + 10.0940833 + ], + [ + 53.5736274, + 10.0905449 + ], + [ + 53.5734773, + 10.0895802 + ], + [ + 53.573304, + 10.0884739 + ], + [ + 53.5732028, + 10.0879257 + ], + [ + 53.5731901, + 10.0878569 + ], + [ + 53.5731037, + 10.0874315 + ], + [ + 53.5729252, + 10.0867368 + ], + [ + 53.5727374, + 10.0860649 + ], + [ + 53.5725822, + 10.0855642 + ], + [ + 53.572307, + 10.0847359 + ], + [ + 53.5720492, + 10.0839837 + ] + ] + }, + { + "osmId": "1334165537", + "name": "Vogelfluglinie", + "lengthMeters": 888.2374475763615, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7231258, + 10.2661223 + ], + [ + 53.7234465, + 10.2662694 + ], + [ + 53.7237137, + 10.2663884 + ], + [ + 53.7245601, + 10.2667983 + ], + [ + 53.7247324, + 10.2668962 + ], + [ + 53.7249882, + 10.2670447 + ], + [ + 53.7253872, + 10.2672915 + ], + [ + 53.7263364, + 10.2679221 + ], + [ + 53.7271538, + 10.2684607 + ], + [ + 53.7277881, + 10.2688803 + ], + [ + 53.7281529, + 10.2691179 + ], + [ + 53.7287241, + 10.2695026 + ], + [ + 53.7287479, + 10.2695186 + ], + [ + 53.7289031, + 10.2696222 + ], + [ + 53.7290551, + 10.2697246 + ], + [ + 53.7294296, + 10.2699767 + ], + [ + 53.7295784, + 10.2700748 + ], + [ + 53.7300515, + 10.2703799 + ], + [ + 53.7301725, + 10.270458 + ], + [ + 53.7306197, + 10.2707661 + ] + ] + }, + { + "osmId": "1334165538", + "name": "Vogelfluglinie", + "lengthMeters": 1036.0051518750797, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7317108, + 10.2715179 + ], + [ + 53.731531, + 10.271369 + ], + [ + 53.7312695, + 10.2711635 + ], + [ + 53.7312502, + 10.2711496 + ], + [ + 53.7312337, + 10.2711378 + ], + [ + 53.730643, + 10.2707134 + ], + [ + 53.7299834, + 10.2702725 + ], + [ + 53.7287012, + 10.2694237 + ], + [ + 53.7281655, + 10.2690622 + ], + [ + 53.7277981, + 10.268822 + ], + [ + 53.72753, + 10.2686433 + ], + [ + 53.7271667, + 10.2683987 + ], + [ + 53.7263515, + 10.2678555 + ], + [ + 53.7254002, + 10.2672236 + ], + [ + 53.7250024, + 10.2669887 + ], + [ + 53.7247419, + 10.2668392 + ], + [ + 53.7245715, + 10.2667422 + ], + [ + 53.723725, + 10.2663237 + ], + [ + 53.7234508, + 10.2661982 + ], + [ + 53.7231222, + 10.2660543 + ], + [ + 53.7229952, + 10.2659987 + ] + ] + }, + { + "osmId": "1334165540", + "name": "Vogelfluglinie", + "lengthMeters": 120.82642494766237, + "maxSpeedKph": 160.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7227514, + 10.2659057 + ], + [ + 53.7226642, + 10.2658684 + ], + [ + 53.7219532, + 10.265564 + ], + [ + 53.7216975, + 10.2654585 + ] + ] + }, + { + "osmId": "1334165541", + "name": "Vogelfluglinie", + "lengthMeters": 603.7689357253189, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7306197, + 10.2707661 + ], + [ + 53.730639, + 10.2707801 + ], + [ + 53.7312176, + 10.2711997 + ], + [ + 53.731221, + 10.2712023 + ], + [ + 53.7315079, + 10.2714216 + ], + [ + 53.7317242, + 10.271606 + ], + [ + 53.7319989, + 10.2718649 + ], + [ + 53.7322959, + 10.2721644 + ], + [ + 53.7326872, + 10.2725985 + ], + [ + 53.7329839, + 10.2729626 + ], + [ + 53.733287, + 10.2733684 + ], + [ + 53.7336043, + 10.2738408 + ], + [ + 53.733955, + 10.2744238 + ], + [ + 53.7343176, + 10.2750766 + ], + [ + 53.7347662, + 10.2758728 + ], + [ + 53.7349238, + 10.2761627 + ], + [ + 53.7349299, + 10.2761739 + ] + ] + }, + { + "osmId": "1334165542", + "name": "Vogelfluglinie", + "lengthMeters": 474.4571325857466, + "maxSpeedKph": 110.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7349551, + 10.2761339 + ], + [ + 53.7349497, + 10.2761241 + ], + [ + 53.7347865, + 10.2758225 + ], + [ + 53.7343427, + 10.275029 + ], + [ + 53.7339769, + 10.2743761 + ], + [ + 53.7336328, + 10.2738052 + ], + [ + 53.7333091, + 10.2733174 + ], + [ + 53.7330102, + 10.272918 + ], + [ + 53.7327103, + 10.2725512 + ], + [ + 53.7326415, + 10.2724741 + ], + [ + 53.7323073, + 10.2720995 + ], + [ + 53.732016, + 10.271802 + ], + [ + 53.7318033, + 10.2716015 + ], + [ + 53.7317414, + 10.2715432 + ], + [ + 53.7317108, + 10.2715179 + ] + ] + }, + { + "osmId": "1338568315", + "name": null, + "lengthMeters": 252.08225258149702, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": false, + "coordinates": [ + [ + 48.1436091, + 11.5113314 + ], + [ + 48.143687, + 11.5107268 + ], + [ + 48.1437382, + 11.510404 + ], + [ + 48.1438044, + 11.5098538 + ], + [ + 48.1439822, + 11.5079818 + ] + ] + }, + { + "osmId": "1338822531", + "name": "U7", + "lengthMeters": 485.5603184734973, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4573871, + 13.4486121 + ], + [ + 52.4570975, + 13.4486355 + ], + [ + 52.4567321, + 13.448611 + ], + [ + 52.4564332, + 13.4485424 + ], + [ + 52.4559843, + 13.4483956 + ], + [ + 52.455672, + 13.4483296 + ], + [ + 52.4553201, + 13.4483134 + ], + [ + 52.4550052, + 13.4483531 + ], + [ + 52.4533439, + 13.4488026 + ], + [ + 52.453069, + 13.4489265 + ] + ] + }, + { + "osmId": "1338822532", + "name": "U7", + "lengthMeters": 583.2622057703903, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4622085, + 13.4452832 + ], + [ + 52.4595915, + 13.447244 + ], + [ + 52.4581927, + 13.4482729 + ], + [ + 52.4579631, + 13.4484227 + ], + [ + 52.4577964, + 13.4484988 + ], + [ + 52.4575385, + 13.448587 + ], + [ + 52.4573871, + 13.4486121 + ] + ] + }, + { + "osmId": "1338822533", + "name": "U7", + "lengthMeters": 531.1732788072213, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4634174, + 13.4444501 + ], + [ + 52.4636505, + 13.4442362 + ], + [ + 52.4639263, + 13.4439803 + ], + [ + 52.4643729, + 13.4435404 + ], + [ + 52.4652284, + 13.4427125 + ], + [ + 52.4654335, + 13.4425382 + ], + [ + 52.4656348, + 13.4424344 + ], + [ + 52.4658768, + 13.442361 + ], + [ + 52.4678565, + 13.4420125 + ] + ] + }, + { + "osmId": "1338822534", + "name": "U7", + "lengthMeters": 672.043599189938, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4695898, + 13.4417123 + ], + [ + 52.4725937, + 13.441194 + ], + [ + 52.4728377, + 13.4411238 + ], + [ + 52.4731353, + 13.4409891 + ], + [ + 52.4741839, + 13.4404003 + ], + [ + 52.4746369, + 13.4401469 + ], + [ + 52.4749862, + 13.439962 + ], + [ + 52.4754805, + 13.4397358 + ] + ] + }, + { + "osmId": "1338822535", + "name": "U7", + "lengthMeters": 506.5547223689927, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4773565, + 13.4387784 + ], + [ + 52.4776064, + 13.4386077 + ], + [ + 52.479477, + 13.4372288 + ], + [ + 52.4795931, + 13.4371312 + ], + [ + 52.4798153, + 13.436876 + ], + [ + 52.4800386, + 13.4365592 + ], + [ + 52.4806854, + 13.4356294 + ], + [ + 52.4811886, + 13.4348832 + ] + ] + }, + { + "osmId": "1340133918", + "name": null, + "lengthMeters": 318.25582145424266, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249278, + 13.3930522 + ], + [ + 52.5246643, + 13.3941203 + ], + [ + 52.5245139, + 13.3947435 + ], + [ + 52.5244075, + 13.3951779 + ], + [ + 52.5244056, + 13.3951883 + ], + [ + 52.5243816, + 13.3952816 + ], + [ + 52.5243677, + 13.3953357 + ], + [ + 52.5243258, + 13.3954847 + ], + [ + 52.5242145, + 13.3958907 + ], + [ + 52.52421, + 13.3959073 + ], + [ + 52.524007, + 13.3966634 + ], + [ + 52.5239938, + 13.3967127 + ], + [ + 52.5239526, + 13.3968735 + ], + [ + 52.5239395, + 13.3969296 + ], + [ + 52.5239254, + 13.3969791 + ], + [ + 52.5238986, + 13.3970747 + ], + [ + 52.5238153, + 13.3973855 + ] + ] + }, + { + "osmId": "1340133919", + "name": null, + "lengthMeters": 309.979322883247, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5249978, + 13.392872 + ], + [ + 52.5250321, + 13.3927336 + ], + [ + 52.5250403, + 13.3927002 + ], + [ + 52.5251144, + 13.3924023 + ], + [ + 52.52521, + 13.3920172 + ], + [ + 52.5255508, + 13.3906138 + ], + [ + 52.5256491, + 13.3902091 + ], + [ + 52.5256941, + 13.3900241 + ], + [ + 52.5257124, + 13.3899421 + ], + [ + 52.5257172, + 13.3899223 + ], + [ + 52.5258664, + 13.3893087 + ], + [ + 52.5259548, + 13.388949 + ], + [ + 52.5259806, + 13.3888438 + ], + [ + 52.5260357, + 13.3886195 + ] + ] + }, + { + "osmId": "1340133921", + "name": null, + "lengthMeters": 103.2449281360443, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5199491, + 13.3959737 + ], + [ + 52.5201239, + 13.3957224 + ], + [ + 52.5203685, + 13.3953747 + ], + [ + 52.5206508, + 13.3949744 + ] + ] + }, + { + "osmId": "1340133932", + "name": null, + "lengthMeters": 77.38787632092482, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5233304, + 13.3877134 + ], + [ + 52.5228221, + 13.387807 + ], + [ + 52.5226391, + 13.3878454 + ] + ] + }, + { + "osmId": "1340133933", + "name": null, + "lengthMeters": 265.0726651076127, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5274447, + 13.3869228 + ], + [ + 52.5275938, + 13.3867515 + ], + [ + 52.5277812, + 13.3865267 + ], + [ + 52.5279025, + 13.3863809 + ], + [ + 52.5281215, + 13.3861177 + ], + [ + 52.5287182, + 13.3853984 + ], + [ + 52.5292987, + 13.384661 + ], + [ + 52.5293579, + 13.3845859 + ] + ] + }, + { + "osmId": "1340299033", + "name": null, + "lengthMeters": 81.98654958325629, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4605588, + 13.4028182 + ], + [ + 52.4605085, + 13.4032475 + ], + [ + 52.4604589, + 13.4036719 + ], + [ + 52.4604198, + 13.4040066 + ] + ] + }, + { + "osmId": "1341104043", + "name": null, + "lengthMeters": 586.0732659412332, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1470314, + 11.4899359 + ], + [ + 48.1468849, + 11.4903158 + ], + [ + 48.1467131, + 11.4908024 + ], + [ + 48.1465416, + 11.4913586 + ], + [ + 48.1464346, + 11.4917461 + ], + [ + 48.1463559, + 11.4920969 + ], + [ + 48.1462615, + 11.4925515 + ], + [ + 48.1462264, + 11.4927439 + ], + [ + 48.1462131, + 11.4928167 + ], + [ + 48.1460541, + 11.4936871 + ], + [ + 48.1459787, + 11.4941105 + ], + [ + 48.1458375, + 11.494859 + ], + [ + 48.1455749, + 11.4964085 + ], + [ + 48.1455117, + 11.4969372 + ], + [ + 48.1454594, + 11.4974335 + ] + ] + }, + { + "osmId": "1341104046", + "name": null, + "lengthMeters": 323.2567700545643, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1453523, + 11.4975842 + ], + [ + 48.1449024, + 11.5018886 + ] + ] + }, + { + "osmId": "1344532437", + "name": null, + "lengthMeters": 257.9652433324003, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1705071, + 11.5735469 + ], + [ + 48.1707906, + 11.573514 + ], + [ + 48.1720229, + 11.5733302 + ], + [ + 48.1720582, + 11.5733195 + ], + [ + 48.1720917, + 11.5733021 + ], + [ + 48.1721223, + 11.5732724 + ], + [ + 48.1721339, + 11.57326 + ], + [ + 48.172146, + 11.5732445 + ], + [ + 48.1721592, + 11.5732239 + ], + [ + 48.1721724, + 11.5731987 + ], + [ + 48.1721863, + 11.5731662 + ], + [ + 48.1721958, + 11.5731391 + ], + [ + 48.1722032, + 11.5731083 + ], + [ + 48.172209, + 11.5730654 + ], + [ + 48.1722112, + 11.5730281 + ], + [ + 48.1722118, + 11.5730035 + ], + [ + 48.1722102, + 11.5729792 + ], + [ + 48.1722074, + 11.5729511 + ], + [ + 48.172203, + 11.5729193 + ], + [ + 48.1721977, + 11.5728947 + ], + [ + 48.1721868, + 11.5728565 + ], + [ + 48.1721674, + 11.5728124 + ], + [ + 48.1721407, + 11.5727725 + ], + [ + 48.1721222, + 11.5727509 + ], + [ + 48.1720978, + 11.5727311 + ], + [ + 48.1720709, + 11.5727106 + ], + [ + 48.1720342, + 11.5726992 + ], + [ + 48.1719879, + 11.572698 + ], + [ + 48.1719585, + 11.5727021 + ], + [ + 48.1719334, + 11.5727055 + ], + [ + 48.1718853, + 11.5727186 + ], + [ + 48.1718504, + 11.5727351 + ] + ] + }, + { + "osmId": "1344541261", + "name": null, + "lengthMeters": 384.63944116665016, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1748034, + 11.6358134 + ], + [ + 48.1749498, + 11.635609 + ], + [ + 48.1749875, + 11.6355467 + ], + [ + 48.1750772, + 11.6353902 + ], + [ + 48.1752111, + 11.6351094 + ], + [ + 48.1753073, + 11.6348943 + ], + [ + 48.1753897, + 11.6346751 + ], + [ + 48.1755304, + 11.634284 + ], + [ + 48.1756349, + 11.6339834 + ], + [ + 48.1757311, + 11.63368 + ], + [ + 48.1758225, + 11.6333691 + ], + [ + 48.1759099, + 11.63306 + ], + [ + 48.1759962, + 11.6327171 + ], + [ + 48.1760447, + 11.6325243 + ], + [ + 48.1760766, + 11.6323788 + ], + [ + 48.1761093, + 11.6322286 + ], + [ + 48.1761351, + 11.6321035 + ], + [ + 48.1761614, + 11.6319739 + ], + [ + 48.1761768, + 11.6319047 + ], + [ + 48.1761852, + 11.6318706 + ], + [ + 48.1761938, + 11.6318368 + ], + [ + 48.1762009, + 11.6318113 + ], + [ + 48.1762089, + 11.6317859 + ], + [ + 48.1762174, + 11.6317604 + ], + [ + 48.1762265, + 11.6317349 + ], + [ + 48.1762362, + 11.631713 + ], + [ + 48.1762466, + 11.631691 + ], + [ + 48.176257, + 11.6316708 + ], + [ + 48.1762677, + 11.6316519 + ], + [ + 48.1762798, + 11.6316335 + ], + [ + 48.1762927, + 11.6316157 + ], + [ + 48.1763186, + 11.6315831 + ], + [ + 48.1763516, + 11.6315447 + ], + [ + 48.1763749, + 11.6315213 + ], + [ + 48.1763981, + 11.6315015 + ], + [ + 48.1764383, + 11.6314709 + ], + [ + 48.1764904, + 11.6314323 + ], + [ + 48.1765087, + 11.6314168 + ] + ] + }, + { + "osmId": "1348004039", + "name": null, + "lengthMeters": 219.19191904716394, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6090584, + 10.0210775 + ], + [ + 53.6093469, + 10.0221087 + ], + [ + 53.6095967, + 10.0230362 + ], + [ + 53.6098946, + 10.0240862 + ] + ] + }, + { + "osmId": "1348004040", + "name": null, + "lengthMeters": 75.34380219056881, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6100423, + 10.0245603 + ], + [ + 53.6101065, + 10.0247551 + ], + [ + 53.6104141, + 10.0255142 + ] + ] + }, + { + "osmId": "1348263188", + "name": null, + "lengthMeters": 654.251725294833, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4854866, + 13.3705907 + ], + [ + 52.4842989, + 13.36989 + ], + [ + 52.4842274, + 13.3698471 + ], + [ + 52.4836382, + 13.3695057 + ], + [ + 52.482908, + 13.3690766 + ], + [ + 52.4827509, + 13.3689852 + ], + [ + 52.4823578, + 13.3687547 + ], + [ + 52.4821252, + 13.3686152 + ], + [ + 52.4806882, + 13.3677033 + ], + [ + 52.480606, + 13.3676553 + ], + [ + 52.4799571, + 13.367291 + ] + ] + }, + { + "osmId": "1348263189", + "name": null, + "lengthMeters": 558.5255590100656, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4854746, + 13.3706432 + ], + [ + 52.4854789, + 13.3706457 + ], + [ + 52.4855217, + 13.3706709 + ], + [ + 52.486122, + 13.3710173 + ], + [ + 52.4861393, + 13.3710295 + ], + [ + 52.4863738, + 13.3711548 + ], + [ + 52.4866283, + 13.3712755 + ], + [ + 52.4869285, + 13.3713902 + ], + [ + 52.4872097, + 13.371485 + ], + [ + 52.4872304, + 13.371492 + ], + [ + 52.4878535, + 13.3717 + ], + [ + 52.4882222, + 13.3718206 + ], + [ + 52.4885901, + 13.3719343 + ], + [ + 52.4888292, + 13.3719833 + ], + [ + 52.4891137, + 13.3720058 + ], + [ + 52.4893496, + 13.3720157 + ], + [ + 52.4897034, + 13.3720367 + ], + [ + 52.4903908, + 13.3720817 + ] + ] + }, + { + "osmId": "1348263190", + "name": null, + "lengthMeters": 90.90905554961576, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008701, + 13.3795149 + ], + [ + 52.5002084, + 13.3790955 + ], + [ + 52.5001097, + 13.3790222 + ] + ] + }, + { + "osmId": "1348263191", + "name": "Anhalter Vorortbahn", + "lengthMeters": 90.43506810844922, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5008701, + 13.3795149 + ], + [ + 52.5002242, + 13.379037 + ], + [ + 52.5001305, + 13.3789595 + ] + ] + }, + { + "osmId": "1348391976", + "name": null, + "lengthMeters": 245.2176755495756, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5436415, + 13.3389703 + ], + [ + 52.5435741, + 13.3388418 + ], + [ + 52.5435415, + 13.3387757 + ], + [ + 52.543482, + 13.3386493 + ], + [ + 52.5434634, + 13.3386097 + ], + [ + 52.5433218, + 13.3383051 + ], + [ + 52.5426096, + 13.3369437 + ], + [ + 52.5424172, + 13.3365882 + ], + [ + 52.5423629, + 13.3364882 + ], + [ + 52.5423096, + 13.3363872 + ], + [ + 52.5422675, + 13.3363074 + ], + [ + 52.5422394, + 13.3362516 + ], + [ + 52.5422141, + 13.3362076 + ] + ] + }, + { + "osmId": "1348391977", + "name": null, + "lengthMeters": 149.20030321703035, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5569109, + 13.3646899 + ], + [ + 52.5568977, + 13.3646055 + ], + [ + 52.5568759, + 13.3644905 + ], + [ + 52.5568456, + 13.3643635 + ], + [ + 52.5568155, + 13.3642492 + ], + [ + 52.5567788, + 13.364137 + ], + [ + 52.5567386, + 13.3640194 + ], + [ + 52.5566798, + 13.3638786 + ], + [ + 52.5566147, + 13.3637462 + ], + [ + 52.5561494, + 13.3629081 + ] + ] + }, + { + "osmId": "1348391978", + "name": null, + "lengthMeters": 132.95583988887628, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.557061, + 13.3666404 + ], + [ + 52.5570154, + 13.3659991 + ], + [ + 52.5570105, + 13.3659301 + ], + [ + 52.5570022, + 13.3658132 + ], + [ + 52.5569925, + 13.3656752 + ], + [ + 52.5569786, + 13.3654778 + ], + [ + 52.5569685, + 13.3653352 + ], + [ + 52.5569412, + 13.3649608 + ], + [ + 52.5569296, + 13.3648332 + ], + [ + 52.5569109, + 13.3646899 + ] + ] + }, + { + "osmId": "1348391980", + "name": null, + "lengthMeters": 202.23287789646133, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5563734, + 13.378208 + ], + [ + 52.5563959, + 13.377926 + ], + [ + 52.5564125, + 13.3777171 + ], + [ + 52.5564187, + 13.3776426 + ], + [ + 52.556423, + 13.3775891 + ], + [ + 52.5564325, + 13.377475 + ], + [ + 52.5564561, + 13.3771749 + ], + [ + 52.5564658, + 13.3770516 + ], + [ + 52.5564748, + 13.3769367 + ], + [ + 52.5564787, + 13.3768856 + ], + [ + 52.5564817, + 13.3768455 + ], + [ + 52.5566086, + 13.3752417 + ] + ] + }, + { + "osmId": "1348391981", + "name": null, + "lengthMeters": 96.69691245943442, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5553881, + 13.3906249 + ], + [ + 52.5554183, + 13.3902457 + ], + [ + 52.5554336, + 13.3900527 + ], + [ + 52.5554434, + 13.3899289 + ], + [ + 52.555501, + 13.3892067 + ] + ] + }, + { + "osmId": "1348391982", + "name": null, + "lengthMeters": 301.19769025077215, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5547741, + 13.3969931 + ], + [ + 52.5548278, + 13.3965687 + ], + [ + 52.5548473, + 13.3964199 + ], + [ + 52.5548621, + 13.3962835 + ], + [ + 52.5549382, + 13.3954269 + ], + [ + 52.5549808, + 13.3949272 + ], + [ + 52.5551433, + 13.3928845 + ], + [ + 52.5551711, + 13.3925875 + ] + ] + }, + { + "osmId": "1348391983", + "name": null, + "lengthMeters": 138.31182324698463, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5505182, + 13.4611593 + ], + [ + 52.5507429, + 13.4621906 + ], + [ + 52.5508188, + 13.4625046 + ], + [ + 52.5508685, + 13.4626927 + ], + [ + 52.5509687, + 13.463065 + ] + ] + }, + { + "osmId": "1348391984", + "name": null, + "lengthMeters": 123.98565376623824, + "maxSpeedKph": 30.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5501449, + 13.4594314 + ], + [ + 52.5502616, + 13.4599609 + ], + [ + 52.5505182, + 13.4611593 + ] + ] + }, + { + "osmId": "1348391986", + "name": null, + "lengthMeters": 81.59789327681571, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5545761, + 13.4313624 + ], + [ + 52.5545701, + 13.4314439 + ], + [ + 52.5545609, + 13.4315286 + ], + [ + 52.5545527, + 13.4315886 + ], + [ + 52.554535, + 13.4316927 + ], + [ + 52.5545134, + 13.4317855 + ], + [ + 52.5544899, + 13.4318772 + ], + [ + 52.5544724, + 13.4319352 + ], + [ + 52.5543022, + 13.4324722 + ] + ] + }, + { + "osmId": "1348391990", + "name": null, + "lengthMeters": 302.93384795945406, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5551443, + 13.392554 + ], + [ + 52.5551302, + 13.3926891 + ], + [ + 52.5549496, + 13.3949206 + ], + [ + 52.5548293, + 13.3962825 + ], + [ + 52.5548187, + 13.396412 + ], + [ + 52.5547741, + 13.3969931 + ] + ] + }, + { + "osmId": "1348391992", + "name": null, + "lengthMeters": 202.88620516001168, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5565778, + 13.3752259 + ], + [ + 52.55645, + 13.3768552 + ], + [ + 52.5564469, + 13.3768961 + ], + [ + 52.5564429, + 13.3769474 + ], + [ + 52.556434, + 13.3770601 + ], + [ + 52.5564244, + 13.3771816 + ], + [ + 52.5564028, + 13.3774555 + ], + [ + 52.5563938, + 13.377574 + ], + [ + 52.5563899, + 13.377625 + ], + [ + 52.5563843, + 13.3776994 + ], + [ + 52.5563438, + 13.3782022 + ] + ] + }, + { + "osmId": "1348391994", + "name": null, + "lengthMeters": 132.8732683267782, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5568777, + 13.3646968 + ], + [ + 52.5569002, + 13.3648668 + ], + [ + 52.5569103, + 13.3649694 + ], + [ + 52.5569319, + 13.3652528 + ], + [ + 52.5569386, + 13.3653413 + ], + [ + 52.5569485, + 13.3654832 + ], + [ + 52.5569622, + 13.3656811 + ], + [ + 52.5569718, + 13.3658193 + ], + [ + 52.5569801, + 13.3659379 + ], + [ + 52.5570296, + 13.3666455 + ] + ] + }, + { + "osmId": "1348391995", + "name": null, + "lengthMeters": 542.5130243055667, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5529483, + 13.3568267 + ], + [ + 52.5534769, + 13.3578428 + ], + [ + 52.5538317, + 13.3585272 + ], + [ + 52.5539094, + 13.3586771 + ], + [ + 52.5539918, + 13.3588351 + ], + [ + 52.5540549, + 13.3589558 + ], + [ + 52.5549053, + 13.3605821 + ], + [ + 52.5551842, + 13.3611348 + ], + [ + 52.5552189, + 13.3612025 + ], + [ + 52.5561183, + 13.3629265 + ] + ] + }, + { + "osmId": "1348466926", + "name": null, + "lengthMeters": 78.56861222276002, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1706306, + 11.5732059 + ], + [ + 48.1705503, + 11.5732246 + ], + [ + 48.1704749, + 11.5732555 + ], + [ + 48.1704172, + 11.5732887 + ], + [ + 48.1703481, + 11.573341 + ], + [ + 48.1702871, + 11.5733911 + ], + [ + 48.1701785, + 11.5734752 + ], + [ + 48.1701678, + 11.5734822 + ], + [ + 48.1701265, + 11.5735093 + ], + [ + 48.1700834, + 11.5735324 + ], + [ + 48.1700335, + 11.5735562 + ], + [ + 48.1699793, + 11.5735758 + ], + [ + 48.1699738, + 11.5735766 + ] + ] + }, + { + "osmId": "1348466930", + "name": null, + "lengthMeters": 78.94952345094579, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": false, + "coordinates": [ + [ + 48.1706306, + 11.5732059 + ], + [ + 48.170548, + 11.5732407 + ], + [ + 48.1704894, + 11.5732716 + ], + [ + 48.1704295, + 11.5733195 + ], + [ + 48.1703772, + 11.5733786 + ], + [ + 48.1703269, + 11.5734551 + ], + [ + 48.170301, + 11.5735137 + ], + [ + 48.1702762, + 11.5735754 + ], + [ + 48.1702611, + 11.5736239 + ], + [ + 48.1702558, + 11.573648 + ], + [ + 48.1702426, + 11.5737138 + ], + [ + 48.1702404, + 11.5737288 + ], + [ + 48.1702328, + 11.5737762 + ], + [ + 48.1702225, + 11.5738753 + ], + [ + 48.1702147, + 11.5739555 + ] + ] + }, + { + "osmId": "1348702850", + "name": "Umtragestelle", + "lengthMeters": 87.99120039104511, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5401881, + 13.2093828 + ], + [ + 52.54097, + 13.2091826 + ] + ] + }, + { + "osmId": "1350381314", + "name": null, + "lengthMeters": 163.83391941928878, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3736761, + 13.1058683 + ], + [ + 52.373618, + 13.1057069 + ], + [ + 52.3734602, + 13.1052421 + ], + [ + 52.3733708, + 13.1049309 + ], + [ + 52.3733171, + 13.104719 + ], + [ + 52.3732842, + 13.1045631 + ], + [ + 52.3732462, + 13.1043522 + ], + [ + 52.3732256, + 13.1042043 + ], + [ + 52.3732008, + 13.1039771 + ], + [ + 52.3731826, + 13.1036249 + ] + ] + }, + { + "osmId": "1353702290", + "name": null, + "lengthMeters": 199.17662779995288, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4443145, + 13.5765985 + ], + [ + 52.4443322, + 13.5763209 + ], + [ + 52.4443794, + 13.5755852 + ], + [ + 52.444392, + 13.5753888 + ], + [ + 52.4444282, + 13.5748275 + ], + [ + 52.4444403, + 13.5746403 + ], + [ + 52.4444435, + 13.574501 + ], + [ + 52.4444458, + 13.5743971 + ], + [ + 52.4444495, + 13.5742305 + ], + [ + 52.4444547, + 13.5738295 + ], + [ + 52.444455, + 13.573671 + ] + ] + }, + { + "osmId": "1354058581", + "name": null, + "lengthMeters": 101.86033480173936, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5678495, + 9.9344889 + ], + [ + 53.5676073, + 9.9345221 + ], + [ + 53.5671361, + 9.9345681 + ], + [ + 53.5669358, + 9.9345975 + ] + ] + }, + { + "osmId": "1354182321", + "name": null, + "lengthMeters": 95.60092882862509, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.508713, + 13.4508289 + ], + [ + 52.5086441, + 13.4508196 + ], + [ + 52.5085925, + 13.4508082 + ], + [ + 52.5085195, + 13.4507854 + ], + [ + 52.5084224, + 13.4507497 + ], + [ + 52.5083248, + 13.4507091 + ], + [ + 52.5081443, + 13.4506179 + ], + [ + 52.5078885, + 13.450451 + ] + ] + }, + { + "osmId": "1355197063", + "name": null, + "lengthMeters": 137.49375782077232, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3389357, + 13.4152965 + ], + [ + 52.3377178, + 13.4156463 + ] + ] + }, + { + "osmId": "1355272267", + "name": null, + "lengthMeters": 76.50504608004661, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4504015, + 13.7531196 + ], + [ + 52.4503356, + 13.7533062 + ], + [ + 52.4503052, + 13.7534018 + ], + [ + 52.4502909, + 13.753447 + ], + [ + 52.450279, + 13.7534883 + ], + [ + 52.4502535, + 13.7535866 + ], + [ + 52.4502394, + 13.7536424 + ], + [ + 52.4502234, + 13.7537095 + ], + [ + 52.4501323, + 13.7541546 + ] + ] + }, + { + "osmId": "1355376052", + "name": null, + "lengthMeters": 199.04800831805142, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1353166, + 11.6496923 + ], + [ + 48.1353146, + 11.6496889 + ], + [ + 48.1352717, + 11.6496185 + ], + [ + 48.1351389, + 11.6493481 + ], + [ + 48.1351178, + 11.6493003 + ], + [ + 48.1350202, + 11.6490678 + ], + [ + 48.1349187, + 11.6487777 + ], + [ + 48.134846, + 11.6485451 + ], + [ + 48.1348177, + 11.6484358 + ], + [ + 48.1347515, + 11.6481392 + ], + [ + 48.1347281, + 11.6480339 + ], + [ + 48.1346578, + 11.6476248 + ], + [ + 48.1346113, + 11.6472646 + ] + ] + }, + { + "osmId": "1355376053", + "name": null, + "lengthMeters": 296.73970411912666, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1362409, + 11.6508876 + ], + [ + 48.1363485, + 11.6509743 + ], + [ + 48.1364652, + 11.6510529 + ], + [ + 48.136584, + 11.6511254 + ], + [ + 48.1368061, + 11.6512424 + ], + [ + 48.136927, + 11.6512923 + ], + [ + 48.1370479, + 11.651336 + ], + [ + 48.1371995, + 11.6513775 + ], + [ + 48.1373513, + 11.6514094 + ], + [ + 48.1375181, + 11.6514298 + ], + [ + 48.1376927, + 11.6514408 + ], + [ + 48.1378327, + 11.6514378 + ], + [ + 48.1379671, + 11.6514327 + ], + [ + 48.1382801, + 11.6514019 + ], + [ + 48.1385691, + 11.6513351 + ], + [ + 48.1388376, + 11.651246 + ] + ] + }, + { + "osmId": "1355376054", + "name": null, + "lengthMeters": 247.5331190850613, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350583, + 11.6381803 + ], + [ + 48.1350571, + 11.6380684 + ], + [ + 48.1350516, + 11.6378096 + ], + [ + 48.1350074, + 11.6363196 + ], + [ + 48.1349942, + 11.6358078 + ], + [ + 48.1349925, + 11.6355089 + ], + [ + 48.1349988, + 11.635175 + ], + [ + 48.1350157, + 11.6348478 + ] + ] + }, + { + "osmId": "1355376055", + "name": null, + "lengthMeters": 248.0091073571174, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1349798, + 11.6348424 + ], + [ + 48.1349628, + 11.6351724 + ], + [ + 48.1349569, + 11.6355104 + ], + [ + 48.1349579, + 11.6358073 + ], + [ + 48.1349706, + 11.6363189 + ], + [ + 48.135015, + 11.6378118 + ], + [ + 48.1350191, + 11.6380218 + ], + [ + 48.1350201, + 11.6381814 + ] + ] + }, + { + "osmId": "1358328878", + "name": null, + "lengthMeters": 83.7048052278945, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.549566, + 13.3950643 + ], + [ + 52.5495434, + 13.3949099 + ], + [ + 52.5495157, + 13.3946257 + ], + [ + 52.549484, + 13.3942209 + ], + [ + 52.5494665, + 13.3938388 + ] + ] + }, + { + "osmId": "1360453655", + "name": null, + "lengthMeters": 191.14692619431713, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1423044, + 11.5422707 + ], + [ + 48.142304, + 11.5422762 + ], + [ + 48.1421917, + 11.5438001 + ], + [ + 48.1421164, + 11.5448314 + ] + ] + }, + { + "osmId": "1360709357", + "name": null, + "lengthMeters": 129.0723260603941, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5109173, + 13.2261837 + ], + [ + 52.5112687, + 13.2255334 + ], + [ + 52.5114383, + 13.2252382 + ], + [ + 52.5116803, + 13.2248396 + ], + [ + 52.51171, + 13.2247913 + ] + ] + }, + { + "osmId": "1361181354", + "name": null, + "lengthMeters": 291.4834815657972, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1487611, + 11.4646833 + ], + [ + 48.1482434, + 11.4662745 + ], + [ + 48.1476167, + 11.468218 + ] + ] + }, + { + "osmId": "1361181356", + "name": null, + "lengthMeters": 534.7632502435587, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1480187, + 11.4671094 + ], + [ + 48.1477434, + 11.4679633 + ], + [ + 48.1476536, + 11.4682426 + ], + [ + 48.1475532, + 11.4685661 + ], + [ + 48.1474826, + 11.4687893 + ], + [ + 48.1473917, + 11.4690942 + ], + [ + 48.1472305, + 11.4696865 + ], + [ + 48.1471416, + 11.4700687 + ], + [ + 48.1470542, + 11.4704545 + ], + [ + 48.1470026, + 11.4707109 + ], + [ + 48.1469519, + 11.4709827 + ], + [ + 48.1469247, + 11.4711371 + ], + [ + 48.1468641, + 11.4715187 + ], + [ + 48.1468326, + 11.4717422 + ], + [ + 48.1468006, + 11.4719873 + ], + [ + 48.1467726, + 11.4722277 + ], + [ + 48.1467468, + 11.4724637 + ], + [ + 48.1467024, + 11.4729459 + ], + [ + 48.1466649, + 11.4734097 + ], + [ + 48.1466247, + 11.4739489 + ] + ] + }, + { + "osmId": "1363339848", + "name": null, + "lengthMeters": 218.2889361699278, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307798, + 13.3648565 + ], + [ + 52.5305671, + 13.3651101 + ], + [ + 52.5303474, + 13.3653857 + ], + [ + 52.530191, + 13.3655831 + ], + [ + 52.5297903, + 13.366125 + ], + [ + 52.5295108, + 13.3665043 + ], + [ + 52.5292448, + 13.3668667 + ] + ] + }, + { + "osmId": "1363339849", + "name": null, + "lengthMeters": 242.0878575983427, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5292674, + 13.3669096 + ], + [ + 52.529528, + 13.3665513 + ], + [ + 52.5298101, + 13.3661729 + ], + [ + 52.5302043, + 13.3656433 + ], + [ + 52.5305947, + 13.3651617 + ], + [ + 52.530987, + 13.3647183 + ] + ] + }, + { + "osmId": "1365715981", + "name": null, + "lengthMeters": 1650.6206864536186, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4765047, + 13.7098487 + ], + [ + 52.4762353, + 13.7102105 + ], + [ + 52.47552, + 13.7111675 + ], + [ + 52.4753487, + 13.7113982 + ], + [ + 52.475219, + 13.7115646 + ], + [ + 52.4751732, + 13.7116299 + ], + [ + 52.4744348, + 13.7126214 + ], + [ + 52.47403, + 13.7131625 + ], + [ + 52.4739408, + 13.7132859 + ], + [ + 52.4737542, + 13.7135347 + ], + [ + 52.4736432, + 13.7136837 + ], + [ + 52.473596, + 13.7137501 + ], + [ + 52.473564, + 13.7138103 + ], + [ + 52.4735467, + 13.7138474 + ], + [ + 52.4735295, + 13.7138881 + ], + [ + 52.473507, + 13.7139555 + ], + [ + 52.473492, + 13.7140054 + ], + [ + 52.4734833, + 13.7140384 + ], + [ + 52.4734763, + 13.71407 + ], + [ + 52.4734684, + 13.7141191 + ], + [ + 52.4734621, + 13.7141808 + ], + [ + 52.4734562, + 13.7142664 + ], + [ + 52.4734525, + 13.7143672 + ], + [ + 52.4734073, + 13.7152541 + ], + [ + 52.4734041, + 13.7153276 + ], + [ + 52.4733483, + 13.7164991 + ], + [ + 52.4732579, + 13.7184061 + ], + [ + 52.473238, + 13.7188391 + ], + [ + 52.4731885, + 13.7198724 + ], + [ + 52.4731642, + 13.7203512 + ], + [ + 52.4731535, + 13.7206148 + ], + [ + 52.4730712, + 13.7223386 + ], + [ + 52.473013, + 13.7235713 + ], + [ + 52.4728812, + 13.7263841 + ], + [ + 52.4728087, + 13.7279093 + ], + [ + 52.4727246, + 13.7296765 + ], + [ + 52.4726824, + 13.7305145 + ], + [ + 52.4726747, + 13.7306831 + ], + [ + 52.4726609, + 13.7309483 + ], + [ + 52.4726179, + 13.7318381 + ] + ] + }, + { + "osmId": "1365715982", + "name": null, + "lengthMeters": 124.56990431826293, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4764981, + 13.7099309 + ], + [ + 52.4769477, + 13.7093222 + ], + [ + 52.4770732, + 13.709156 + ], + [ + 52.4773648, + 13.7087655 + ] + ] + }, + { + "osmId": "1365821687", + "name": null, + "lengthMeters": 631.9977509270049, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4577004, + 13.6266707 + ], + [ + 52.4577074, + 13.6268513 + ], + [ + 52.4577523, + 13.6279083 + ], + [ + 52.4577617, + 13.6280764 + ], + [ + 52.4577705, + 13.6282145 + ], + [ + 52.4577943, + 13.6285356 + ], + [ + 52.4578029, + 13.6286262 + ], + [ + 52.4578163, + 13.628767 + ], + [ + 52.4578344, + 13.6289413 + ], + [ + 52.4578514, + 13.6290888 + ], + [ + 52.4578603, + 13.6291542 + ], + [ + 52.4578865, + 13.6293418 + ], + [ + 52.4578956, + 13.6294058 + ], + [ + 52.4579331, + 13.6296507 + ], + [ + 52.4579704, + 13.6298632 + ], + [ + 52.458062, + 13.6303162 + ], + [ + 52.4582787, + 13.6312822 + ], + [ + 52.4584969, + 13.6322579 + ], + [ + 52.4585462, + 13.6324715 + ], + [ + 52.4586742, + 13.6330389 + ], + [ + 52.4587102, + 13.633202 + ], + [ + 52.4588447, + 13.6338024 + ], + [ + 52.4589989, + 13.6344843 + ], + [ + 52.4590281, + 13.6346092 + ], + [ + 52.4590761, + 13.6348238 + ], + [ + 52.4591456, + 13.6351326 + ], + [ + 52.4592049, + 13.6353986 + ], + [ + 52.459247, + 13.6355876 + ] + ] + }, + { + "osmId": "1365821688", + "name": null, + "lengthMeters": 818.6618057259271, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4592702, + 13.6355714 + ], + [ + 52.4592287, + 13.6353849 + ], + [ + 52.4592175, + 13.6353358 + ], + [ + 52.4591593, + 13.6350737 + ], + [ + 52.459099, + 13.6348086 + ], + [ + 52.4590507, + 13.6345955 + ], + [ + 52.4590235, + 13.6344701 + ], + [ + 52.4588694, + 13.6337871 + ], + [ + 52.458734, + 13.6331891 + ], + [ + 52.4586973, + 13.633025 + ], + [ + 52.4585696, + 13.6324578 + ], + [ + 52.4585215, + 13.6322431 + ], + [ + 52.4583028, + 13.631265 + ], + [ + 52.4580859, + 13.6303008 + ], + [ + 52.4580363, + 13.6300609 + ], + [ + 52.4579946, + 13.6298506 + ], + [ + 52.457957, + 13.6296419 + ], + [ + 52.4579404, + 13.6295349 + ], + [ + 52.4579142, + 13.6293552 + ], + [ + 52.4578903, + 13.6291885 + ], + [ + 52.457877, + 13.6290863 + ], + [ + 52.4578593, + 13.6289396 + ], + [ + 52.457842, + 13.6287774 + ], + [ + 52.4578372, + 13.6287246 + ], + [ + 52.457832, + 13.6286588 + ], + [ + 52.45783, + 13.6286064 + ], + [ + 52.4578297, + 13.6285541 + ], + [ + 52.4578319, + 13.6284884 + ], + [ + 52.4578371, + 13.628399 + ], + [ + 52.457857, + 13.6282707 + ], + [ + 52.4578891, + 13.6281516 + ], + [ + 52.4579708, + 13.627878 + ], + [ + 52.4580547, + 13.6276167 + ], + [ + 52.458286, + 13.6268747 + ], + [ + 52.4583511, + 13.6266787 + ], + [ + 52.4584059, + 13.6264783 + ], + [ + 52.4584182, + 13.6263806 + ], + [ + 52.4584198, + 13.6262843 + ], + [ + 52.4584093, + 13.6261889 + ], + [ + 52.4583845, + 13.6261002 + ], + [ + 52.4583483, + 13.6260192 + ], + [ + 52.4583017, + 13.6259577 + ], + [ + 52.4582482, + 13.625923 + ], + [ + 52.4581914, + 13.6258989 + ], + [ + 52.4579429, + 13.6258286 + ], + [ + 52.4578776, + 13.6258101 + ], + [ + 52.4578418, + 13.6258106 + ], + [ + 52.4578062, + 13.6258189 + ], + [ + 52.4577809, + 13.6258329 + ], + [ + 52.4577583, + 13.6258557 + ], + [ + 52.4577392, + 13.6258815 + ], + [ + 52.45772, + 13.6259143 + ], + [ + 52.4577022, + 13.6259549 + ], + [ + 52.4576922, + 13.6259919 + ], + [ + 52.4576836, + 13.626031 + ], + [ + 52.4576772, + 13.6260686 + ], + [ + 52.4576749, + 13.6261084 + ], + [ + 52.4577004, + 13.6266707 + ] + ] + }, + { + "osmId": "1365821689", + "name": null, + "lengthMeters": 168.00611317993207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4597652, + 13.6379133 + ], + [ + 52.4596857, + 13.6375474 + ], + [ + 52.4595651, + 13.6370065 + ], + [ + 52.4594963, + 13.6366997 + ], + [ + 52.4594485, + 13.6364805 + ], + [ + 52.4594333, + 13.6364067 + ], + [ + 52.4594139, + 13.6362996 + ], + [ + 52.4593729, + 13.636059 + ], + [ + 52.4593533, + 13.6359542 + ], + [ + 52.4593342, + 13.6358615 + ], + [ + 52.4593155, + 13.6357732 + ], + [ + 52.4592957, + 13.6356869 + ], + [ + 52.4592702, + 13.6355714 + ] + ] + }, + { + "osmId": "1365821690", + "name": null, + "lengthMeters": 171.3125815362882, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.459247, + 13.6355876 + ], + [ + 52.4592721, + 13.6356993 + ], + [ + 52.4592958, + 13.6358092 + ], + [ + 52.4593096, + 13.6358785 + ], + [ + 52.4593247, + 13.6359572 + ], + [ + 52.4593449, + 13.6360744 + ], + [ + 52.4594041, + 13.6364239 + ], + [ + 52.459423, + 13.6365195 + ], + [ + 52.4594667, + 13.6367198 + ], + [ + 52.4596437, + 13.6375112 + ], + [ + 52.4596498, + 13.6375386 + ], + [ + 52.4597502, + 13.637976 + ] + ] + }, + { + "osmId": "1366049987", + "name": null, + "lengthMeters": 970.3698332056379, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.474765, + 13.6923213 + ], + [ + 52.4746968, + 13.6922707 + ], + [ + 52.4746437, + 13.6922343 + ], + [ + 52.4736467, + 13.6915506 + ], + [ + 52.4729988, + 13.6911067 + ], + [ + 52.4729532, + 13.691075 + ], + [ + 52.4717661, + 13.69025 + ], + [ + 52.4716988, + 13.6901882 + ], + [ + 52.4716417, + 13.6901046 + ], + [ + 52.4714956, + 13.6898075 + ], + [ + 52.4707861, + 13.6883319 + ], + [ + 52.4706957, + 13.6881384 + ], + [ + 52.4698272, + 13.686328 + ], + [ + 52.4692876, + 13.6852035 + ], + [ + 52.4692288, + 13.6850808 + ], + [ + 52.4683544, + 13.6832392 + ] + ] + }, + { + "osmId": "1366049988", + "name": null, + "lengthMeters": 810.2548465962701, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.466783, + 13.669309 + ], + [ + 52.4663805, + 13.6674993 + ], + [ + 52.4652783, + 13.6625639 + ], + [ + 52.4650444, + 13.6615139 + ], + [ + 52.4642786, + 13.6580771 + ] + ] + }, + { + "osmId": "1366049989", + "name": null, + "lengthMeters": 1452.2056734212695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4597502, + 13.637976 + ], + [ + 52.4608912, + 13.6430983 + ], + [ + 52.4623401, + 13.6495713 + ], + [ + 52.4636738, + 13.6555366 + ], + [ + 52.4641223, + 13.6575792 + ], + [ + 52.4642406, + 13.658104 + ] + ] + }, + { + "osmId": "1366049990", + "name": null, + "lengthMeters": 810.080454170989, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4642406, + 13.658104 + ], + [ + 52.4650124, + 13.6615275 + ], + [ + 52.4652328, + 13.6625144 + ], + [ + 52.4663496, + 13.6675163 + ], + [ + 52.4667542, + 13.6693276 + ] + ] + }, + { + "osmId": "1366049991", + "name": null, + "lengthMeters": 208.09464594987662, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4674293, + 13.6721918 + ], + [ + 52.4671052, + 13.6707312 + ], + [ + 52.4669992, + 13.6702809 + ], + [ + 52.466783, + 13.669309 + ] + ] + }, + { + "osmId": "1366049992", + "name": null, + "lengthMeters": 1015.9741389950121, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4667542, + 13.6693276 + ], + [ + 52.4669755, + 13.6703184 + ], + [ + 52.4672177, + 13.6714097 + ], + [ + 52.4674543, + 13.6724899 + ], + [ + 52.4675346, + 13.6729443 + ], + [ + 52.4675565, + 13.6731315 + ], + [ + 52.4675728, + 13.6733233 + ], + [ + 52.4675803, + 13.6734964 + ], + [ + 52.4675885, + 13.6737396 + ], + [ + 52.4675923, + 13.6739827 + ], + [ + 52.4675869, + 13.6741992 + ], + [ + 52.4675755, + 13.6744173 + ], + [ + 52.4675573, + 13.6746651 + ], + [ + 52.4675332, + 13.674908 + ], + [ + 52.4674967, + 13.6751787 + ], + [ + 52.4674541, + 13.6754461 + ], + [ + 52.4674142, + 13.6756581 + ], + [ + 52.4673687, + 13.6758653 + ], + [ + 52.4672114, + 13.6764977 + ], + [ + 52.4671409, + 13.6768073 + ], + [ + 52.4670836, + 13.6771241 + ], + [ + 52.4670524, + 13.6773539 + ], + [ + 52.467024, + 13.6775847 + ], + [ + 52.4670029, + 13.6778137 + ], + [ + 52.4669886, + 13.6780477 + ], + [ + 52.4669799, + 13.6782755 + ], + [ + 52.4669763, + 13.678505 + ], + [ + 52.4669773, + 13.6787377 + ], + [ + 52.4669855, + 13.6789674 + ], + [ + 52.467021, + 13.6794309 + ], + [ + 52.4671004, + 13.6799616 + ], + [ + 52.4671649, + 13.6803058 + ], + [ + 52.4672399, + 13.6806441 + ], + [ + 52.467293, + 13.6808373 + ], + [ + 52.4673532, + 13.6810403 + ], + [ + 52.4674193, + 13.6812419 + ], + [ + 52.4675258, + 13.6815259 + ], + [ + 52.4676368, + 13.6817998 + ], + [ + 52.4676818, + 13.6818987 + ], + [ + 52.4677313, + 13.6820086 + ], + [ + 52.4677483, + 13.6820461 + ], + [ + 52.4683577, + 13.6833157 + ] + ] + }, + { + "osmId": "1366049993", + "name": null, + "lengthMeters": 802.9468993510188, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4683544, + 13.6832392 + ], + [ + 52.467768, + 13.6820213 + ], + [ + 52.4677013, + 13.6818749 + ], + [ + 52.467602, + 13.6816379 + ], + [ + 52.4675232, + 13.6814368 + ], + [ + 52.4674436, + 13.6812208 + ], + [ + 52.4673791, + 13.6810197 + ], + [ + 52.4673203, + 13.6808168 + ], + [ + 52.4672647, + 13.6806184 + ], + [ + 52.4671851, + 13.6802826 + ], + [ + 52.4671264, + 13.6799524 + ], + [ + 52.4670514, + 13.6794371 + ], + [ + 52.4670172, + 13.6789751 + ], + [ + 52.4670081, + 13.6787402 + ], + [ + 52.4670075, + 13.678509 + ], + [ + 52.4670193, + 13.6780558 + ], + [ + 52.4670349, + 13.6778234 + ], + [ + 52.4670548, + 13.677594 + ], + [ + 52.4670819, + 13.6773686 + ], + [ + 52.4671132, + 13.6771452 + ], + [ + 52.4671719, + 13.6768159 + ], + [ + 52.467239, + 13.6765171 + ], + [ + 52.4673999, + 13.67588 + ], + [ + 52.4674489, + 13.675669 + ], + [ + 52.4674894, + 13.6754544 + ], + [ + 52.4675309, + 13.6751897 + ], + [ + 52.4675627, + 13.6749236 + ], + [ + 52.4675888, + 13.6746781 + ], + [ + 52.4676088, + 13.6744275 + ], + [ + 52.4676201, + 13.6742006 + ], + [ + 52.4676244, + 13.6739753 + ], + [ + 52.4676223, + 13.6737406 + ], + [ + 52.4676122, + 13.6735044 + ], + [ + 52.4676003, + 13.6732387 + ], + [ + 52.4675705, + 13.6729907 + ], + [ + 52.4675165, + 13.6726347 + ], + [ + 52.4674293, + 13.6721918 + ] + ] + }, + { + "osmId": "1366071018", + "name": null, + "lengthMeters": 106.27996443904996, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4725777, + 13.7334108 + ], + [ + 52.4726003, + 13.7329602 + ], + [ + 52.4726104, + 13.7327413 + ], + [ + 52.4726315, + 13.7323007 + ], + [ + 52.4726484, + 13.7319465 + ], + [ + 52.4726531, + 13.7318466 + ] + ] + }, + { + "osmId": "1366071019", + "name": null, + "lengthMeters": 106.77122074019532, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4726179, + 13.7318381 + ], + [ + 52.4726131, + 13.7319413 + ], + [ + 52.4725965, + 13.7322981 + ], + [ + 52.4725879, + 13.7324908 + ], + [ + 52.472576, + 13.7327365 + ], + [ + 52.4725685, + 13.7329127 + ], + [ + 52.4725671, + 13.7329851 + ], + [ + 52.472568, + 13.7330627 + ], + [ + 52.4725718, + 13.7331606 + ], + [ + 52.4725758, + 13.7332555 + ], + [ + 52.4725781, + 13.7333227 + ], + [ + 52.4725777, + 13.7334108 + ] + ] + }, + { + "osmId": "1367366716", + "name": null, + "lengthMeters": 79.78879385100801, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4374837, + 13.5267911 + ], + [ + 52.4370286, + 13.5260077 + ], + [ + 52.4369883, + 13.5259396 + ] + ] + }, + { + "osmId": "1367366717", + "name": null, + "lengthMeters": 80.02948419022125, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4369688, + 13.5259677 + ], + [ + 52.4373427, + 13.5266116 + ], + [ + 52.4374254, + 13.5267536 + ], + [ + 52.4374448, + 13.5267861 + ], + [ + 52.4374658, + 13.5268216 + ] + ] + }, + { + "osmId": "1367397985", + "name": null, + "lengthMeters": 124.58653152654526, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4593452, + 13.5125963 + ], + [ + 52.459259, + 13.5125567 + ], + [ + 52.4592496, + 13.5125515 + ], + [ + 52.4591936, + 13.5125243 + ], + [ + 52.4591656, + 13.5125107 + ], + [ + 52.4591429, + 13.5124985 + ], + [ + 52.4591315, + 13.5124923 + ], + [ + 52.4590942, + 13.5124661 + ], + [ + 52.4590678, + 13.5124447 + ], + [ + 52.4590272, + 13.5124086 + ], + [ + 52.4589801, + 13.5123638 + ], + [ + 52.4586502, + 13.5120498 + ], + [ + 52.4583513, + 13.5117654 + ] + ] + }, + { + "osmId": "1367397986", + "name": null, + "lengthMeters": 296.4319717850915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4453175, + 13.5656348 + ], + [ + 52.4452261, + 13.5660781 + ], + [ + 52.4452067, + 13.5661724 + ], + [ + 52.4451858, + 13.5662795 + ], + [ + 52.4449062, + 13.5677101 + ], + [ + 52.4447245, + 13.5686302 + ], + [ + 52.4447016, + 13.5687515 + ], + [ + 52.4446736, + 13.5688931 + ], + [ + 52.4446503, + 13.5690203 + ], + [ + 52.4446275, + 13.5691335 + ], + [ + 52.4446021, + 13.5692598 + ], + [ + 52.4445772, + 13.569387 + ], + [ + 52.4445707, + 13.5694177 + ], + [ + 52.4445612, + 13.5694661 + ], + [ + 52.4445538, + 13.5695059 + ], + [ + 52.4445478, + 13.5695379 + ], + [ + 52.4445153, + 13.5698039 + ] + ] + }, + { + "osmId": "1367397987", + "name": null, + "lengthMeters": 295.5931821244015, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4445425, + 13.5698072 + ], + [ + 52.4445766, + 13.5695369 + ], + [ + 52.4445907, + 13.5694645 + ], + [ + 52.4446086, + 13.5693717 + ], + [ + 52.4446272, + 13.5692848 + ], + [ + 52.444651, + 13.5691591 + ], + [ + 52.4446991, + 13.5689045 + ], + [ + 52.4447264, + 13.5687653 + ], + [ + 52.4449158, + 13.5678135 + ], + [ + 52.4449331, + 13.5677236 + ], + [ + 52.4452165, + 13.5662954 + ], + [ + 52.445237, + 13.5661912 + ], + [ + 52.4452569, + 13.5660947 + ], + [ + 52.4453482, + 13.5656528 + ] + ] + }, + { + "osmId": "1369556240", + "name": "Mahlower Kurve", + "lengthMeters": 211.65117142751623, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3583182, + 13.4088641 + ], + [ + 52.3564423, + 13.4093922 + ] + ] + }, + { + "osmId": "1369556241", + "name": "Mahlower Kurve", + "lengthMeters": 76.47401456769694, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3543646, + 13.4101624 + ], + [ + 52.3542331, + 13.4102538 + ], + [ + 52.3539556, + 13.4104665 + ], + [ + 52.3537477, + 13.4106578 + ] + ] + }, + { + "osmId": "1369556242", + "name": "Mahlower Kurve", + "lengthMeters": 139.0357060938351, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.3537477, + 13.4106578 + ], + [ + 52.3535771, + 13.4108389 + ], + [ + 52.3533211, + 13.411144 + ], + [ + 52.3528593, + 13.4118829 + ], + [ + 52.3528052, + 13.4119896 + ] + ] + }, + { + "osmId": "1371921818", + "name": null, + "lengthMeters": 125.23546318688824, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5168358, + 13.4537784 + ], + [ + 52.5170872, + 13.4536912 + ], + [ + 52.5179349, + 13.4533745 + ] + ] + }, + { + "osmId": "1371921820", + "name": null, + "lengthMeters": 86.39753657525459, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5175606, + 13.4532521 + ], + [ + 52.5170531, + 13.4534412 + ], + [ + 52.5168033, + 13.4535377 + ] + ] + }, + { + "osmId": "1371921823", + "name": null, + "lengthMeters": 174.6912917474363, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5321232, + 13.4627785 + ], + [ + 52.5320291, + 13.4627005 + ], + [ + 52.5319241, + 13.4626167 + ], + [ + 52.5315844, + 13.4623471 + ], + [ + 52.5315073, + 13.4622821 + ], + [ + 52.5311991, + 13.4620351 + ], + [ + 52.5307504, + 13.4616677 + ], + [ + 52.5307131, + 13.4616401 + ] + ] + }, + { + "osmId": "1371921824", + "name": null, + "lengthMeters": 210.9335134899069, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5334237, + 13.4660606 + ], + [ + 52.5329194, + 13.4645714 + ], + [ + 52.5328832, + 13.4644577 + ], + [ + 52.5327381, + 13.4640018 + ], + [ + 52.5325262, + 13.4633906 + ], + [ + 52.5325039, + 13.4633337 + ] + ] + }, + { + "osmId": "1371921825", + "name": null, + "lengthMeters": 179.9933844040494, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5307031, + 13.4616802 + ], + [ + 52.5308362, + 13.4617891 + ], + [ + 52.531248, + 13.4621262 + ], + [ + 52.5314972, + 13.4623284 + ], + [ + 52.5321532, + 13.4628627 + ] + ] + }, + { + "osmId": "1372661072", + "name": null, + "lengthMeters": 605.1522783695714, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 48.1356956, + 11.4979065 + ], + [ + 48.1357076, + 11.4977139 + ], + [ + 48.1358398, + 11.4962362 + ], + [ + 48.1359586, + 11.4949534 + ], + [ + 48.1363973, + 11.4898199 + ] + ] + }, + { + "osmId": "1374728474", + "name": "Dresdner Bahn", + "lengthMeters": 1608.7993017364886, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.4005508, + 13.3886768 + ], + [ + 52.4016929, + 13.3879975 + ], + [ + 52.4027746, + 13.3873619 + ], + [ + 52.4034257, + 13.3869867 + ], + [ + 52.4038295, + 13.3867577 + ], + [ + 52.404707, + 13.3862836 + ], + [ + 52.4057874, + 13.3857062 + ], + [ + 52.4084513, + 13.3841839 + ], + [ + 52.4103589, + 13.3830937 + ], + [ + 52.4107821, + 13.382855 + ], + [ + 52.4114798, + 13.3824496 + ], + [ + 52.4115868, + 13.3823858 + ], + [ + 52.4125253, + 13.3818264 + ], + [ + 52.4135317, + 13.3811849 + ], + [ + 52.4141929, + 13.3807836 + ] + ] + }, + { + "osmId": "1374728477", + "name": null, + "lengthMeters": 287.6652275639453, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.416746, + 13.3790186 + ], + [ + 52.416732, + 13.3790273 + ], + [ + 52.4151826, + 13.3799546 + ], + [ + 52.4143195, + 13.3804893 + ] + ] + }, + { + "osmId": "1374728478", + "name": null, + "lengthMeters": 286.00445444038684, + "maxSpeedKph": 90.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4143461, + 13.3805364 + ], + [ + 52.4147095, + 13.3803075 + ], + [ + 52.4161254, + 13.3794584 + ], + [ + 52.4167563, + 13.3790642 + ] + ] + }, + { + "osmId": "1374728479", + "name": "Dresdner Bahn", + "lengthMeters": 1606.7054918406948, + "maxSpeedKph": 160.0, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 52.414179, + 13.3807331 + ], + [ + 52.4135203, + 13.3811353 + ], + [ + 52.4127939, + 13.3816125 + ], + [ + 52.411578, + 13.3823339 + ], + [ + 52.4114721, + 13.3823967 + ], + [ + 52.4107764, + 13.3828176 + ], + [ + 52.4103495, + 13.383054 + ], + [ + 52.4084387, + 13.3841254 + ], + [ + 52.4073607, + 13.3847299 + ], + [ + 52.4059231, + 13.3855572 + ], + [ + 52.4047, + 13.3862367 + ], + [ + 52.4038176, + 13.3866926 + ], + [ + 52.403414, + 13.3869239 + ], + [ + 52.4027585, + 13.3872947 + ], + [ + 52.4016823, + 13.3879406 + ], + [ + 52.4005521, + 13.3886016 + ] + ] + }, + { + "osmId": "1377273772", + "name": null, + "lengthMeters": 338.1812367233207, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1573137, + 11.4811091 + ], + [ + 48.1570295, + 11.4811753 + ], + [ + 48.1566881, + 11.481285 + ], + [ + 48.1565635, + 11.4813268 + ], + [ + 48.1562033, + 11.4814556 + ], + [ + 48.1556164, + 11.4816777 + ], + [ + 48.1552258, + 11.4818426 + ], + [ + 48.1549363, + 11.4819716 + ], + [ + 48.1546483, + 11.4821101 + ], + [ + 48.1543727, + 11.4822501 + ] + ] + }, + { + "osmId": "1377273773", + "name": null, + "lengthMeters": 337.03469820364137, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.154381, + 11.4822987 + ], + [ + 48.1547422, + 11.4821191 + ], + [ + 48.1550764, + 11.4819602 + ], + [ + 48.1554158, + 11.4818135 + ], + [ + 48.155784, + 11.4816625 + ], + [ + 48.1561563, + 11.4815223 + ], + [ + 48.156601, + 11.4813753 + ], + [ + 48.1568035, + 11.481315 + ], + [ + 48.1569642, + 11.4812671 + ], + [ + 48.1571457, + 11.481228 + ], + [ + 48.1573162, + 11.4811942 + ] + ] + }, + { + "osmId": "1377273774", + "name": null, + "lengthMeters": 84.73732859411075, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1543727, + 11.4822501 + ], + [ + 48.1539051, + 11.4825235 + ], + [ + 48.15366, + 11.4826542 + ] + ] + }, + { + "osmId": "1377273775", + "name": null, + "lengthMeters": 84.3015533039163, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1536725, + 11.4827031 + ], + [ + 48.1538879, + 11.4825836 + ], + [ + 48.154381, + 11.4822987 + ] + ] + }, + { + "osmId": "1377273783", + "name": null, + "lengthMeters": 236.03464705568285, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1679861, + 11.4914147 + ], + [ + 48.1685675, + 11.4923703 + ], + [ + 48.1694295, + 11.4937483 + ] + ] + }, + { + "osmId": "1377273785", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 236.09927958481234, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1680137, + 11.491376 + ], + [ + 48.1685986, + 11.4923245 + ], + [ + 48.1688856, + 11.4927898 + ], + [ + 48.1694563, + 11.493712 + ] + ] + }, + { + "osmId": "1377273787", + "name": "M\u00fcnchen-Regensburg", + "lengthMeters": 236.24381874979036, + "maxSpeedKph": 140.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1694802, + 11.4936794 + ], + [ + 48.1689115, + 11.492756 + ], + [ + 48.1686218, + 11.4922857 + ], + [ + 48.1684315, + 11.4919742 + ], + [ + 48.168038, + 11.4913402 + ] + ] + }, + { + "osmId": "1378395674", + "name": null, + "lengthMeters": 265.95980057654054, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5554878, + 10.0571801 + ], + [ + 53.5555932, + 10.0563352 + ], + [ + 53.5556205, + 10.0561159 + ], + [ + 53.5556806, + 10.0556382 + ], + [ + 53.5557106, + 10.0552846 + ], + [ + 53.555716, + 10.0552111 + ], + [ + 53.5557422, + 10.0548464 + ], + [ + 53.5557445, + 10.0544699 + ], + [ + 53.5557707, + 10.0531951 + ] + ] + }, + { + "osmId": "1378395675", + "name": null, + "lengthMeters": 263.7065698570784, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5557256, + 10.0532055 + ], + [ + 53.5557172, + 10.0534161 + ], + [ + 53.5556989, + 10.0536423 + ], + [ + 53.5556363, + 10.0543556 + ], + [ + 53.5555968, + 10.0548076 + ], + [ + 53.5555731, + 10.0551221 + ], + [ + 53.5555607, + 10.0552864 + ], + [ + 53.5555287, + 10.0556905 + ], + [ + 53.5554817, + 10.0563123 + ], + [ + 53.5554174, + 10.0571633 + ] + ] + }, + { + "osmId": "1378993678", + "name": null, + "lengthMeters": 102.86883316555787, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4361437, + 13.5253728 + ], + [ + 52.4361915, + 13.5253788 + ], + [ + 52.4363412, + 13.5254071 + ], + [ + 52.4364529, + 13.5254517 + ], + [ + 52.436525, + 13.5254882 + ], + [ + 52.4365976, + 13.5255368 + ], + [ + 52.4366336, + 13.525567 + ], + [ + 52.4366976, + 13.525624 + ], + [ + 52.4367715, + 13.5256964 + ], + [ + 52.4368398, + 13.5257733 + ], + [ + 52.4368684, + 13.5258087 + ], + [ + 52.4369266, + 13.525895 + ], + [ + 52.4369688, + 13.5259677 + ] + ] + }, + { + "osmId": "1378993679", + "name": null, + "lengthMeters": 105.36965108266666, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4369883, + 13.5259396 + ], + [ + 52.4369399, + 13.5258575 + ], + [ + 52.4368841, + 13.525775 + ], + [ + 52.4368667, + 13.5257572 + ], + [ + 52.4367876, + 13.5256574 + ], + [ + 52.4367211, + 13.5255949 + ], + [ + 52.4366445, + 13.5255238 + ], + [ + 52.4365658, + 13.5254702 + ], + [ + 52.4364435, + 13.5253982 + ], + [ + 52.4363165, + 13.5253545 + ], + [ + 52.4361441, + 13.525331 + ] + ] + }, + { + "osmId": "1378993680", + "name": null, + "lengthMeters": 76.71885221505515, + "maxSpeedKph": 20.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.438077, + 13.5265022 + ], + [ + 52.4379109, + 13.5267301 + ], + [ + 52.4378715, + 13.5267826 + ], + [ + 52.4378224, + 13.5268407 + ], + [ + 52.4378007, + 13.5268597 + ], + [ + 52.4377823, + 13.5268733 + ], + [ + 52.4377654, + 13.526882 + ], + [ + 52.4377498, + 13.5268894 + ], + [ + 52.4377276, + 13.5268985 + ], + [ + 52.4377184, + 13.5268997 + ], + [ + 52.4376762, + 13.5269045 + ], + [ + 52.4376292, + 13.5268984 + ], + [ + 52.4376037, + 13.5268903 + ], + [ + 52.4375792, + 13.5268779 + ], + [ + 52.437563, + 13.5268682 + ], + [ + 52.4375355, + 13.5268488 + ], + [ + 52.4375146, + 13.5268321 + ], + [ + 52.437499, + 13.5268129 + ], + [ + 52.4374837, + 13.5267911 + ] + ] + }, + { + "osmId": "1378993683", + "name": null, + "lengthMeters": 134.03072351970485, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4383094, + 13.5263363 + ], + [ + 52.4388485, + 13.525587 + ], + [ + 52.4392166, + 13.5250349 + ] + ] + }, + { + "osmId": "1380099856", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 356.6530483048095, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5527934, + 13.1157775 + ], + [ + 52.552857, + 13.115533 + ], + [ + 52.5530149, + 13.114935 + ], + [ + 52.5532705, + 13.1139667 + ], + [ + 52.5536809, + 13.1124494 + ], + [ + 52.5540939, + 13.1109555 + ] + ] + }, + { + "osmId": "1380099857", + "name": "Berlin-Hamburger Bahn", + "lengthMeters": 355.5610972409421, + "maxSpeedKph": 230.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5540553, + 13.1109452 + ], + [ + 52.5535613, + 13.112735 + ], + [ + 52.5534851, + 13.113011 + ], + [ + 52.5529563, + 13.1149945 + ], + [ + 52.5527612, + 13.1157541 + ] + ] + }, + { + "osmId": "1383518921", + "name": null, + "lengthMeters": 79.26288597690012, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1667542, + 11.3718359 + ], + [ + 48.1670374, + 11.3708551 + ] + ] + }, + { + "osmId": "1383553978", + "name": null, + "lengthMeters": 160.33332629572695, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5539221, + 10.083746 + ], + [ + 53.5538573, + 10.0827431 + ], + [ + 53.5538185, + 10.0822513 + ], + [ + 53.5537517, + 10.0814035 + ], + [ + 53.5537467, + 10.081337 + ] + ] + }, + { + "osmId": "1383553979", + "name": null, + "lengthMeters": 221.7110860704742, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5539685, + 10.0870836 + ], + [ + 53.5539765, + 10.0870317 + ], + [ + 53.5540088, + 10.0867719 + ], + [ + 53.5540273, + 10.086527 + ], + [ + 53.5540355, + 10.0861752 + ], + [ + 53.5540326, + 10.085777 + ], + [ + 53.5540205, + 10.0853211 + ], + [ + 53.5539221, + 10.083746 + ] + ] + }, + { + "osmId": "1383553980", + "name": null, + "lengthMeters": 178.14718294582818, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5429189, + 10.1063534 + ], + [ + 53.5429872, + 10.10616 + ], + [ + 53.5431431, + 10.1057951 + ], + [ + 53.543253, + 10.1055521 + ], + [ + 53.5439329, + 10.1042727 + ] + ] + }, + { + "osmId": "1383553983", + "name": null, + "lengthMeters": 181.3695581404587, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5435793, + 10.1038365 + ], + [ + 53.543178, + 10.1048458 + ], + [ + 53.5428866, + 10.1056204 + ], + [ + 53.5426882, + 10.1061354 + ] + ] + }, + { + "osmId": "1388320119", + "name": null, + "lengthMeters": 480.7568349988381, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4682313, + 13.5501979 + ], + [ + 52.468173, + 13.550216 + ], + [ + 52.4681409, + 13.550226 + ], + [ + 52.4677501, + 13.5503182 + ], + [ + 52.4675135, + 13.550346 + ], + [ + 52.4674487, + 13.5503514 + ], + [ + 52.4670427, + 13.5503591 + ], + [ + 52.4667501, + 13.5503239 + ], + [ + 52.4667004, + 13.5503179 + ], + [ + 52.4664176, + 13.5502727 + ], + [ + 52.4661358, + 13.5502559 + ], + [ + 52.4659248, + 13.550241 + ], + [ + 52.4657134, + 13.5502517 + ], + [ + 52.4655014, + 13.5503011 + ], + [ + 52.4652821, + 13.5503696 + ], + [ + 52.4649771, + 13.5504945 + ], + [ + 52.4646713, + 13.5506754 + ], + [ + 52.4644788, + 13.5508167 + ], + [ + 52.4640142, + 13.5511577 + ] + ] + }, + { + "osmId": "1388320121", + "name": null, + "lengthMeters": 497.20692242245275, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4638902, + 13.5513265 + ], + [ + 52.4646087, + 13.5508024 + ], + [ + 52.4649512, + 13.550583 + ], + [ + 52.4651634, + 13.5504846 + ], + [ + 52.4652899, + 13.5504259 + ], + [ + 52.4655001, + 13.5503603 + ], + [ + 52.4657156, + 13.5503137 + ], + [ + 52.4659239, + 13.5502973 + ], + [ + 52.4661365, + 13.5503062 + ], + [ + 52.466412, + 13.5503455 + ], + [ + 52.4666905, + 13.5503865 + ], + [ + 52.4670444, + 13.5504294 + ], + [ + 52.4671056, + 13.5504286 + ], + [ + 52.4674652, + 13.5504253 + ], + [ + 52.4676481, + 13.5504004 + ], + [ + 52.4677509, + 13.550389 + ], + [ + 52.4681595, + 13.5502967 + ], + [ + 52.4681693, + 13.5502943 + ], + [ + 52.46824, + 13.5502693 + ] + ] + }, + { + "osmId": "1396130352", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 199.26681586793234, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5970366, + 10.035488 + ], + [ + 53.5966217, + 10.035604 + ], + [ + 53.5964205, + 10.0356627 + ], + [ + 53.5963164, + 10.0356931 + ], + [ + 53.5958622, + 10.0358192 + ], + [ + 53.5952689, + 10.035984 + ] + ] + }, + { + "osmId": "1396130353", + "name": "G\u00fcterumgehungsbahn", + "lengthMeters": 586.7567215468122, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6059619, + 10.0328669 + ], + [ + 53.6058334, + 10.0329032 + ], + [ + 53.6050337, + 10.0331639 + ], + [ + 53.6048877, + 10.0332085 + ], + [ + 53.6028677, + 10.033805 + ], + [ + 53.6014577, + 10.0341929 + ], + [ + 53.600762, + 10.0343767 + ] + ] + }, + { + "osmId": "1396130360", + "name": null, + "lengthMeters": 81.84858905120393, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.607954, + 9.8823942 + ], + [ + 53.6074743, + 9.8833352 + ] + ] + }, + { + "osmId": "1396130362", + "name": null, + "lengthMeters": 92.08005694845633, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6085109, + 9.8813061 + ], + [ + 53.6083687, + 9.8816519 + ], + [ + 53.6082569, + 9.881928 + ], + [ + 53.6080353, + 9.8824486 + ] + ] + }, + { + "osmId": "1396130364", + "name": null, + "lengthMeters": 94.84493616310704, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6085109, + 9.8813061 + ], + [ + 53.6083854, + 9.8815792 + ], + [ + 53.607954, + 9.8823942 + ] + ] + }, + { + "osmId": "1396168840", + "name": "U7", + "lengthMeters": 1166.5563732538794, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5366636, + 13.2828674 + ], + [ + 52.5366941, + 13.2821308 + ], + [ + 52.5367222, + 13.2815441 + ], + [ + 52.5368624, + 13.2778654 + ], + [ + 52.5369131, + 13.2765692 + ], + [ + 52.5369211, + 13.2762449 + ], + [ + 52.5369207, + 13.2759785 + ], + [ + 52.5369179, + 13.2757728 + ], + [ + 52.5369095, + 13.2755169 + ], + [ + 52.5368957, + 13.2752226 + ], + [ + 52.5368794, + 13.2749868 + ], + [ + 52.5368535, + 13.2746936 + ], + [ + 52.5368183, + 13.2743752 + ], + [ + 52.5367284, + 13.2735036 + ], + [ + 52.5367004, + 13.2727725 + ], + [ + 52.536666, + 13.271878 + ], + [ + 52.5366739, + 13.2712613 + ], + [ + 52.5367983, + 13.2656638 + ] + ] + }, + { + "osmId": "1408895949", + "name": "U8", + "lengthMeters": 189.53705071917432, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.519748, + 13.4142501 + ], + [ + 52.5194734, + 13.4146088 + ], + [ + 52.5193399, + 13.41477 + ], + [ + 52.5192007, + 13.4149107 + ], + [ + 52.5189051, + 13.4151629 + ], + [ + 52.5187605, + 13.4152497 + ], + [ + 52.5186157, + 13.4153226 + ], + [ + 52.5184463, + 13.4154001 + ], + [ + 52.5182417, + 13.4154807 + ] + ] + }, + { + "osmId": "1409655367", + "name": null, + "lengthMeters": 410.7044262083839, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5111842, + 13.4688297 + ], + [ + 52.5110708, + 13.4687183 + ], + [ + 52.5110118, + 13.4686603 + ], + [ + 52.510992, + 13.4686409 + ], + [ + 52.5109522, + 13.4686026 + ], + [ + 52.5105407, + 13.4682061 + ], + [ + 52.5104643, + 13.4681293 + ], + [ + 52.5097485, + 13.4674101 + ], + [ + 52.5096904, + 13.4673517 + ], + [ + 52.5096251, + 13.4672878 + ], + [ + 52.5093091, + 13.4669782 + ], + [ + 52.5091731, + 13.466845 + ], + [ + 52.5091514, + 13.4668226 + ], + [ + 52.5087095, + 13.4663664 + ], + [ + 52.508631, + 13.4662853 + ], + [ + 52.5086181, + 13.4662719 + ], + [ + 52.5086094, + 13.4662626 + ], + [ + 52.5085279, + 13.4661833 + ], + [ + 52.5081757, + 13.4658404 + ], + [ + 52.5080238, + 13.4656895 + ] + ] + }, + { + "osmId": "1411252669", + "name": null, + "lengthMeters": 105.6088720976964, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5016819, + 13.4753815 + ], + [ + 52.5015786, + 13.4759505 + ], + [ + 52.5014938, + 13.4764067 + ], + [ + 52.5014023, + 13.4768725 + ] + ] + }, + { + "osmId": "1411252670", + "name": null, + "lengthMeters": 105.75699424442519, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014866, + 13.4769171 + ], + [ + 52.5015568, + 13.4765564 + ], + [ + 52.5016647, + 13.4759887 + ], + [ + 52.5017624, + 13.475422 + ] + ] + }, + { + "osmId": "1411252671", + "name": "Niederschlesisch-M\u00e4rkische Eisenbahn", + "lengthMeters": 105.67055691664402, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5014519, + 13.4768983 + ], + [ + 52.5015223, + 13.4765346 + ], + [ + 52.5016305, + 13.4759713 + ], + [ + 52.501728, + 13.4754047 + ] + ] + }, + { + "osmId": "1411252672", + "name": null, + "lengthMeters": 87.4559965010437, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.491234, + 13.5072447 + ], + [ + 52.4913211, + 13.5065685 + ], + [ + 52.4914242, + 13.5059923 + ] + ] + }, + { + "osmId": "1411252673", + "name": null, + "lengthMeters": 265.0074030620106, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4971813, + 13.4888604 + ], + [ + 52.4971682, + 13.4888921 + ], + [ + 52.4971647, + 13.4889006 + ], + [ + 52.4970446, + 13.4891925 + ], + [ + 52.4969026, + 13.4895456 + ], + [ + 52.4966246, + 13.4902589 + ], + [ + 52.4961203, + 13.4916105 + ], + [ + 52.4959037, + 13.4921645 + ] + ] + }, + { + "osmId": "1411252674", + "name": null, + "lengthMeters": 250.067009501944, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.493562, + 13.4979531 + ], + [ + 52.4936554, + 13.4978138 + ], + [ + 52.4937855, + 13.4976199 + ], + [ + 52.4939123, + 13.4974202 + ], + [ + 52.4939198, + 13.4974075 + ], + [ + 52.4941281, + 13.4970543 + ], + [ + 52.4943215, + 13.4966918 + ], + [ + 52.4944153, + 13.4964926 + ], + [ + 52.4944988, + 13.4963051 + ], + [ + 52.4946817, + 13.4958639 + ], + [ + 52.494909, + 13.4952251 + ], + [ + 52.4949528, + 13.4951019 + ], + [ + 52.4949582, + 13.4950867 + ] + ] + }, + { + "osmId": "1411252675", + "name": null, + "lengthMeters": 116.23602541405555, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4817375, + 13.524106 + ], + [ + 52.4817448, + 13.5240901 + ], + [ + 52.4819372, + 13.5236686 + ], + [ + 52.4821829, + 13.5231305 + ], + [ + 52.4823469, + 13.5227752 + ], + [ + 52.4823658, + 13.5227342 + ] + ] + }, + { + "osmId": "1411252676", + "name": null, + "lengthMeters": 111.604108215739, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4804767, + 13.5269617 + ], + [ + 52.4810646, + 13.525626 + ] + ] + }, + { + "osmId": "1411252677", + "name": null, + "lengthMeters": 188.82754640013155, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4854857, + 13.5155102 + ], + [ + 52.4853407, + 13.5158213 + ], + [ + 52.4850549, + 13.5164424 + ], + [ + 52.4849523, + 13.5166652 + ], + [ + 52.4848629, + 13.5168623 + ], + [ + 52.4848535, + 13.5168832 + ], + [ + 52.4847089, + 13.5171981 + ], + [ + 52.4844664, + 13.5177405 + ] + ] + }, + { + "osmId": "1411252678", + "name": null, + "lengthMeters": 616.5942978419348, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887402, + 13.5081373 + ], + [ + 52.4884795, + 13.5087247 + ], + [ + 52.4884185, + 13.5088622 + ], + [ + 52.4883756, + 13.5089595 + ], + [ + 52.4882013, + 13.5093546 + ], + [ + 52.4875998, + 13.5107179 + ], + [ + 52.4872428, + 13.5115296 + ], + [ + 52.4860993, + 13.514129 + ], + [ + 52.4860403, + 13.5142617 + ], + [ + 52.4859952, + 13.5143633 + ], + [ + 52.4854857, + 13.5155102 + ] + ] + }, + { + "osmId": "1411252679", + "name": null, + "lengthMeters": 263.02558533015525, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4887007, + 13.5081132 + ], + [ + 52.4884461, + 13.508688 + ], + [ + 52.4883854, + 13.508825 + ], + [ + 52.4883417, + 13.508925 + ], + [ + 52.4883149, + 13.5089864 + ], + [ + 52.4875732, + 13.5106844 + ], + [ + 52.4873825, + 13.5110991 + ], + [ + 52.4873104, + 13.5112558 + ] + ] + }, + { + "osmId": "1411252680", + "name": null, + "lengthMeters": 388.1160947549589, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4888477, + 13.5076678 + ], + [ + 52.4886668, + 13.5080783 + ], + [ + 52.488412, + 13.5086566 + ], + [ + 52.488353, + 13.5087905 + ], + [ + 52.4883085, + 13.5088914 + ], + [ + 52.4882834, + 13.5089482 + ], + [ + 52.4882619, + 13.5089969 + ], + [ + 52.4875336, + 13.5106478 + ], + [ + 52.4873494, + 13.5110666 + ], + [ + 52.4872381, + 13.5113198 + ], + [ + 52.4868017, + 13.5123118 + ] + ] + }, + { + "osmId": "1414079550", + "name": null, + "lengthMeters": 362.8068630635533, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6123122, + 9.902204 + ], + [ + 53.6124671, + 9.9022475 + ], + [ + 53.6135054, + 9.9025279 + ], + [ + 53.6136128, + 9.9025559 + ], + [ + 53.6136135, + 9.9025561 + ], + [ + 53.6140157, + 9.9026643 + ], + [ + 53.6151119, + 9.9029477 + ], + [ + 53.6155343, + 9.9030632 + ], + [ + 53.6155349, + 9.9030634 + ] + ] + }, + { + "osmId": "1414079551", + "name": null, + "lengthMeters": 362.6764958855244, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6123057, + 9.9022679 + ], + [ + 53.6124513, + 9.9023077 + ], + [ + 53.6135007, + 9.9025822 + ], + [ + 53.6136086, + 9.9026097 + ], + [ + 53.614, + 9.9027118 + ], + [ + 53.6150855, + 9.9030013 + ], + [ + 53.6155277, + 9.9031201 + ], + [ + 53.6155279, + 9.9031201 + ] + ] + }, + { + "osmId": "1414087873", + "name": null, + "lengthMeters": 1362.8281884169855, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7342888, + 9.9897572 + ], + [ + 53.7342817, + 9.9897571 + ], + [ + 53.7341691, + 9.9897473 + ], + [ + 53.734138, + 9.9897446 + ], + [ + 53.7341203, + 9.9897431 + ], + [ + 53.734007, + 9.9897333 + ], + [ + 53.7339366, + 9.9897329 + ], + [ + 53.733865, + 9.9897076 + ], + [ + 53.7338062, + 9.9897007 + ], + [ + 53.7336459, + 9.9896818 + ], + [ + 53.7333586, + 9.989588 + ], + [ + 53.7328369, + 9.9893651 + ], + [ + 53.7318882, + 9.9890484 + ], + [ + 53.7310952, + 9.9888678 + ], + [ + 53.7306586, + 9.9888114 + ], + [ + 53.7301241, + 9.9887711 + ], + [ + 53.7293131, + 9.9887743 + ], + [ + 53.72923, + 9.9887814 + ], + [ + 53.7290486, + 9.988797 + ], + [ + 53.7288732, + 9.9888133 + ], + [ + 53.7285096, + 9.9889017 + ], + [ + 53.7282774, + 9.9889585 + ], + [ + 53.7275759, + 9.9891299 + ], + [ + 53.7271831, + 9.9892431 + ], + [ + 53.7265391, + 9.9894287 + ], + [ + 53.726204, + 9.9895291 + ], + [ + 53.7255322, + 9.9897302 + ], + [ + 53.7248511, + 9.9899147 + ], + [ + 53.7242633, + 9.9900987 + ], + [ + 53.7227215, + 9.9905238 + ], + [ + 53.7221799, + 9.9907183 + ] + ] + }, + { + "osmId": "1414087874", + "name": null, + "lengthMeters": 1361.9486098671464, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7342761, + 9.9898974 + ], + [ + 53.7340768, + 9.9898781 + ], + [ + 53.734026, + 9.9898677 + ], + [ + 53.7339963, + 9.989863 + ], + [ + 53.7339324, + 9.989851 + ], + [ + 53.7338607, + 9.9898399 + ], + [ + 53.7338018, + 9.9898258 + ], + [ + 53.7337782, + 9.9898201 + ], + [ + 53.7336457, + 9.9897805 + ], + [ + 53.7333479, + 9.9896689 + ], + [ + 53.7332193, + 9.9896112 + ], + [ + 53.7328096, + 9.9894274 + ], + [ + 53.7318698, + 9.989108 + ], + [ + 53.7310944, + 9.9889334 + ], + [ + 53.7306618, + 9.9888851 + ], + [ + 53.7301167, + 9.9888541 + ], + [ + 53.7293262, + 9.988848 + ], + [ + 53.7292312, + 9.9888523 + ], + [ + 53.729056, + 9.9888602 + ], + [ + 53.7288682, + 9.9888883 + ], + [ + 53.7285241, + 9.9889656 + ], + [ + 53.7275908, + 9.9892317 + ], + [ + 53.7271931, + 9.989337 + ], + [ + 53.7265427, + 9.9895093 + ], + [ + 53.7262132, + 9.989605 + ], + [ + 53.725722, + 9.9897476 + ], + [ + 53.7254609, + 9.9898227 + ], + [ + 53.7227278, + 9.9905755 + ], + [ + 53.7221784, + 9.9907686 + ] + ] + }, + { + "osmId": "1418063920", + "name": null, + "lengthMeters": 867.0575282872855, + "maxSpeedKph": null, + "status": "disused", + "isBidirectional": true, + "coordinates": [ + [ + 52.4306376, + 13.2470386 + ], + [ + 52.4303987, + 13.2476108 + ], + [ + 52.430184, + 13.2481757 + ], + [ + 52.430036, + 13.2486744 + ], + [ + 52.4299294, + 13.2491593 + ], + [ + 52.4298343, + 13.2496763 + ], + [ + 52.4297369, + 13.2503529 + ], + [ + 52.4296704, + 13.2510465 + ], + [ + 52.4296498, + 13.251648 + ], + [ + 52.4296624, + 13.2522665 + ], + [ + 52.429722, + 13.2530804 + ], + [ + 52.4297827, + 13.2536518 + ], + [ + 52.4298882, + 13.2543491 + ], + [ + 52.4300188, + 13.2551048 + ], + [ + 52.4301907, + 13.2557815 + ], + [ + 52.4306606, + 13.2575803 + ], + [ + 52.4310744, + 13.2590371 + ] + ] + }, + { + "osmId": "1419236957", + "name": null, + "lengthMeters": 134.00060584573683, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4638509, + 13.5137381 + ], + [ + 52.4633182, + 13.5138465 + ], + [ + 52.4630566, + 13.5138993 + ], + [ + 52.4626564, + 13.5139986 + ] + ] + }, + { + "osmId": "1419236958", + "name": null, + "lengthMeters": 86.35168197090756, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4614616, + 13.513602 + ], + [ + 52.4610772, + 13.5134183 + ], + [ + 52.460716, + 13.5132456 + ] + ] + }, + { + "osmId": "1420074933", + "name": null, + "lengthMeters": 336.9733439510463, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7365981, + 9.9079338 + ], + [ + 53.7370617, + 9.9082906 + ], + [ + 53.7375087, + 9.9086507 + ], + [ + 53.7379939, + 9.909026 + ], + [ + 53.7384979, + 9.9094212 + ], + [ + 53.7390276, + 9.9098481 + ], + [ + 53.7393442, + 9.9101004 + ] + ] + }, + { + "osmId": "1420074934", + "name": null, + "lengthMeters": 558.4945572811245, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7123248, + 9.9135578 + ], + [ + 53.7141313, + 9.9130874 + ], + [ + 53.7146232, + 9.9129598 + ], + [ + 53.714744, + 9.9129261 + ], + [ + 53.7157674, + 9.9126403 + ], + [ + 53.716281, + 9.9124346 + ], + [ + 53.7167978, + 9.9121589 + ], + [ + 53.7168627, + 9.9121124 + ], + [ + 53.7172337, + 9.9118727 + ] + ] + }, + { + "osmId": "1420074935", + "name": null, + "lengthMeters": 559.4186607125683, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7123302, + 9.9136131 + ], + [ + 53.714137, + 9.9131318 + ], + [ + 53.7146158, + 9.9130171 + ], + [ + 53.7147478, + 9.9129783 + ], + [ + 53.7157626, + 9.9126803 + ], + [ + 53.7162826, + 9.9124827 + ], + [ + 53.7167921, + 9.9122302 + ], + [ + 53.7168719, + 9.9121743 + ], + [ + 53.7172501, + 9.9119345 + ] + ] + }, + { + "osmId": "1420074936", + "name": null, + "lengthMeters": 193.9309596585334, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7172337, + 9.9118727 + ], + [ + 53.7173639, + 9.9117795 + ], + [ + 53.7188242, + 9.9106636 + ] + ] + }, + { + "osmId": "1420074937", + "name": null, + "lengthMeters": 194.12659810307554, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7172501, + 9.9119345 + ], + [ + 53.7173796, + 9.9118437 + ], + [ + 53.7188407, + 9.9107187 + ] + ] + }, + { + "osmId": "1420074947", + "name": null, + "lengthMeters": 382.8428295189646, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7393442, + 9.9101004 + ], + [ + 53.7395277, + 9.9102466 + ], + [ + 53.7399232, + 9.9105535 + ], + [ + 53.7403583, + 9.9108839 + ], + [ + 53.7409343, + 9.9113351 + ], + [ + 53.7414628, + 9.9117484 + ], + [ + 53.7424705, + 9.912539 + ] + ] + }, + { + "osmId": "1420074948", + "name": null, + "lengthMeters": 718.2278018739914, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7393602, + 9.9100291 + ], + [ + 53.7406833, + 9.9110692 + ], + [ + 53.7416368, + 9.9118151 + ], + [ + 53.7424844, + 9.912483 + ], + [ + 53.7430055, + 9.9128933 + ], + [ + 53.7434836, + 9.9132672 + ], + [ + 53.7438422, + 9.9135458 + ], + [ + 53.7439057, + 9.9135968 + ], + [ + 53.7439912, + 9.9136688 + ], + [ + 53.7452187, + 9.9146282 + ] + ] + }, + { + "osmId": "1420074949", + "name": null, + "lengthMeters": 166.17191172341185, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7424705, + 9.912539 + ], + [ + 53.7436878, + 9.913494 + ], + [ + 53.7438262, + 9.9136022 + ] + ] + }, + { + "osmId": "1420074952", + "name": null, + "lengthMeters": 169.13677378261315, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7438262, + 9.9136022 + ], + [ + 53.7438796, + 9.913644 + ], + [ + 53.7444758, + 9.9141102 + ], + [ + 53.7452003, + 9.914705 + ] + ] + }, + { + "osmId": "1420142711", + "name": null, + "lengthMeters": 191.28610370961746, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6011753, + 9.8989929 + ], + [ + 53.6014236, + 9.8989944 + ], + [ + 53.6017064, + 9.8990077 + ], + [ + 53.6019605, + 9.8990233 + ], + [ + 53.6022109, + 9.8990194 + ], + [ + 53.6025056, + 9.8989962 + ], + [ + 53.6028928, + 9.8989271 + ] + ] + }, + { + "osmId": "1420377551", + "name": null, + "lengthMeters": 314.4088198023588, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1579379, + 11.5847661 + ], + [ + 48.1604718, + 11.5859673 + ], + [ + 48.1606341, + 11.586043 + ] + ] + }, + { + "osmId": "1421098058", + "name": null, + "lengthMeters": 166.14160492609813, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3731826, + 13.1036249 + ], + [ + 52.3731798, + 13.1034155 + ], + [ + 52.3731835, + 13.1032046 + ], + [ + 52.3731964, + 13.1029348 + ], + [ + 52.3732175, + 13.1026793 + ], + [ + 52.3732873, + 13.1018794 + ], + [ + 52.3733157, + 13.1015772 + ], + [ + 52.3733498, + 13.1011966 + ] + ] + }, + { + "osmId": "1421098059", + "name": null, + "lengthMeters": 166.14523909965567, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3733172, + 13.1011925 + ], + [ + 52.3732142, + 13.1022921 + ], + [ + 52.3731754, + 13.1027346 + ], + [ + 52.3731591, + 13.102941 + ], + [ + 52.3731468, + 13.1032014 + ], + [ + 52.3731461, + 13.10362 + ] + ] + }, + { + "osmId": "1421111625", + "name": null, + "lengthMeters": 89.0613344494441, + "maxSpeedKph": 40.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5929326, + 9.9127941 + ], + [ + 53.5927476, + 9.9131019 + ], + [ + 53.592625, + 9.9132822 + ], + [ + 53.5925207, + 9.9134351 + ], + [ + 53.5923568, + 9.9137304 + ] + ] + }, + { + "osmId": "1421111627", + "name": null, + "lengthMeters": 102.55487101173362, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5910189, + 9.9162545 + ], + [ + 53.590927, + 9.9164053 + ], + [ + 53.5906058, + 9.916932 + ], + [ + 53.5903942, + 9.9172144 + ], + [ + 53.5903372, + 9.9172987 + ] + ] + }, + { + "osmId": "1421111628", + "name": null, + "lengthMeters": 173.17723539055467, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.593381, + 9.9117536 + ], + [ + 53.5933219, + 9.9118697 + ], + [ + 53.5925429, + 9.913373 + ], + [ + 53.5923568, + 9.9137304 + ] + ] + }, + { + "osmId": "1421121261", + "name": null, + "lengthMeters": 834.7923828378468, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7049602, + 9.915995 + ], + [ + 53.7067206, + 9.9153278 + ], + [ + 53.7079432, + 9.9148564 + ], + [ + 53.7091735, + 9.9144297 + ], + [ + 53.7108364, + 9.9139575 + ], + [ + 53.7116234, + 9.9137405 + ], + [ + 53.7123248, + 9.9135578 + ] + ] + }, + { + "osmId": "1421121262", + "name": null, + "lengthMeters": 834.5388495548233, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7049696, + 9.9160649 + ], + [ + 53.7067099, + 9.9154034 + ], + [ + 53.7079339, + 9.9149319 + ], + [ + 53.7091797, + 9.9144897 + ], + [ + 53.7108432, + 9.9140145 + ], + [ + 53.7116313, + 9.9137993 + ], + [ + 53.7123302, + 9.9136131 + ] + ] + }, + { + "osmId": "1421121263", + "name": null, + "lengthMeters": 351.45003677157337, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6956896, + 9.9196455 + ], + [ + 53.6958707, + 9.9195649 + ], + [ + 53.6959993, + 9.9195025 + ], + [ + 53.6968361, + 9.919133 + ], + [ + 53.6973699, + 9.9189314 + ], + [ + 53.6978914, + 9.9187425 + ], + [ + 53.6979438, + 9.9187197 + ], + [ + 53.6984149, + 9.9185453 + ], + [ + 53.6987647, + 9.9184172 + ] + ] + }, + { + "osmId": "1421121264", + "name": null, + "lengthMeters": 207.22271889766472, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6958314, + 9.9194415 + ], + [ + 53.6958932, + 9.9194184 + ], + [ + 53.6961741, + 9.919313 + ], + [ + 53.6966871, + 9.9191261 + ], + [ + 53.6972458, + 9.9189216 + ], + [ + 53.6976408, + 9.9187735 + ], + [ + 53.6976496, + 9.9187702 + ], + [ + 53.697652, + 9.9187693 + ] + ] + }, + { + "osmId": "1421121265", + "name": null, + "lengthMeters": 220.73215242911672, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6937494, + 9.9203539 + ], + [ + 53.693803, + 9.9203362 + ], + [ + 53.6940722, + 9.9202368 + ], + [ + 53.6945092, + 9.9200809 + ], + [ + 53.6948297, + 9.9199589 + ], + [ + 53.6950276, + 9.9198853 + ], + [ + 53.6954812, + 9.9197268 + ], + [ + 53.6955503, + 9.919699 + ], + [ + 53.6956896, + 9.9196455 + ] + ] + }, + { + "osmId": "1421121268", + "name": null, + "lengthMeters": 168.62535067850683, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.694188, + 9.9200443 + ], + [ + 53.694242, + 9.9200242 + ], + [ + 53.6948098, + 9.9198147 + ], + [ + 53.6954736, + 9.9195765 + ], + [ + 53.6956703, + 9.9195036 + ] + ] + }, + { + "osmId": "1421121271", + "name": null, + "lengthMeters": 245.41532709330997, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6915699, + 9.9209335 + ], + [ + 53.6916188, + 9.9209255 + ], + [ + 53.6916565, + 9.9209191 + ], + [ + 53.6919651, + 9.9208556 + ], + [ + 53.6923844, + 9.920753 + ], + [ + 53.6925881, + 9.9207009 + ], + [ + 53.6927469, + 9.9206561 + ], + [ + 53.6929158, + 9.9206143 + ], + [ + 53.6931876, + 9.9205284 + ], + [ + 53.6932618, + 9.9205049 + ], + [ + 53.693415, + 9.9204534 + ], + [ + 53.6937494, + 9.9203539 + ] + ] + }, + { + "osmId": "1421121272", + "name": null, + "lengthMeters": 245.5571650114339, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6915633, + 9.9208712 + ], + [ + 53.6916117, + 9.9208641 + ], + [ + 53.6916485, + 9.9208568 + ], + [ + 53.6919569, + 9.920796 + ], + [ + 53.692432, + 9.9206907 + ], + [ + 53.692586, + 9.9206477 + ], + [ + 53.6931906, + 9.9204157 + ], + [ + 53.6932557, + 9.9203907 + ], + [ + 53.6937354, + 9.9202204 + ] + ] + }, + { + "osmId": "1421121273", + "name": null, + "lengthMeters": 187.0030139641033, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6898791, + 9.9209415 + ], + [ + 53.6899643, + 9.9209502 + ], + [ + 53.6903713, + 9.920969 + ], + [ + 53.6905593, + 9.9209637 + ], + [ + 53.6908374, + 9.920957 + ], + [ + 53.6912547, + 9.9209198 + ], + [ + 53.6913919, + 9.9208982 + ], + [ + 53.6915586, + 9.920872 + ] + ] + }, + { + "osmId": "1421121274", + "name": null, + "lengthMeters": 187.89684438699706, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.689878, + 9.9210041 + ], + [ + 53.6899239, + 9.9210095 + ], + [ + 53.6899609, + 9.9210108 + ], + [ + 53.6905294, + 9.9210308 + ], + [ + 53.690657, + 9.9210256 + ], + [ + 53.6909697, + 9.9210056 + ], + [ + 53.6912659, + 9.9209789 + ], + [ + 53.6915657, + 9.9209341 + ] + ] + }, + { + "osmId": "1421121275", + "name": null, + "lengthMeters": 301.6386381384648, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6649951, + 9.9100666 + ], + [ + 53.665015, + 9.9100658 + ], + [ + 53.6651923, + 9.9100583 + ], + [ + 53.6652843, + 9.9100545 + ], + [ + 53.6658995, + 9.9100214 + ], + [ + 53.6659597, + 9.9100229 + ], + [ + 53.6663935, + 9.9100333 + ], + [ + 53.6668462, + 9.9100596 + ], + [ + 53.6668689, + 9.9100612 + ], + [ + 53.6669806, + 9.9100738 + ], + [ + 53.6671107, + 9.9100884 + ], + [ + 53.6673555, + 9.9101171 + ], + [ + 53.6677038, + 9.9101823 + ] + ] + }, + { + "osmId": "1421121276", + "name": null, + "lengthMeters": 300.5497559422139, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.665002, + 9.9101254 + ], + [ + 53.6650237, + 9.9101237 + ], + [ + 53.6651939, + 9.9101108 + ], + [ + 53.6653453, + 9.9100993 + ], + [ + 53.6659024, + 9.9100791 + ], + [ + 53.6659597, + 9.9100803 + ], + [ + 53.6663737, + 9.9100886 + ], + [ + 53.6668498, + 9.9101189 + ], + [ + 53.6668699, + 9.9101209 + ], + [ + 53.6669746, + 9.9101354 + ], + [ + 53.667097, + 9.9101523 + ], + [ + 53.667364, + 9.9101921 + ], + [ + 53.6676601, + 9.9102486 + ], + [ + 53.6677, + 9.9102574 + ] + ] + }, + { + "osmId": "1421121282", + "name": null, + "lengthMeters": 161.29536881756752, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6608657, + 9.9104191 + ], + [ + 53.6612922, + 9.9104049 + ], + [ + 53.662316, + 9.9103724 + ] + ] + }, + { + "osmId": "1421121283", + "name": null, + "lengthMeters": 162.3686047960142, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6623567, + 9.9103711 + ], + [ + 53.6627153, + 9.9103601 + ], + [ + 53.6633059, + 9.91034 + ], + [ + 53.6638148, + 9.910265 + ] + ] + }, + { + "osmId": "1421121285", + "name": null, + "lengthMeters": 154.5222620068415, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6594777, + 9.9105163 + ], + [ + 53.6597451, + 9.9104768 + ], + [ + 53.660024, + 9.9104366 + ], + [ + 53.6603425, + 9.9103954 + ], + [ + 53.6607996, + 9.9103749 + ], + [ + 53.6608642, + 9.9103723 + ] + ] + }, + { + "osmId": "1421121286", + "name": null, + "lengthMeters": 153.96887755894178, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6594841, + 9.9105669 + ], + [ + 53.6597666, + 9.910524 + ], + [ + 53.6600062, + 9.9104907 + ], + [ + 53.6603444, + 9.9104544 + ], + [ + 53.6607848, + 9.9104218 + ], + [ + 53.6608657, + 9.9104191 + ] + ] + }, + { + "osmId": "1421121287", + "name": null, + "lengthMeters": 328.072211880435, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6608642, + 9.9103723 + ], + [ + 53.6612801, + 9.9103554 + ], + [ + 53.6615405, + 9.910333 + ], + [ + 53.6618827, + 9.9102765 + ], + [ + 53.6627133, + 9.9102195 + ], + [ + 53.6632962, + 9.9101835 + ], + [ + 53.6633643, + 9.9101793 + ], + [ + 53.663811, + 9.910147 + ] + ] + }, + { + "osmId": "1421121288", + "name": null, + "lengthMeters": 499.33758536537937, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6550082, + 9.9111778 + ], + [ + 53.655074, + 9.9111684 + ], + [ + 53.6557961, + 9.9110651 + ], + [ + 53.6565906, + 9.9109554 + ], + [ + 53.6573155, + 9.9108694 + ], + [ + 53.6573413, + 9.9108663 + ], + [ + 53.658346, + 9.9107196 + ], + [ + 53.6585553, + 9.9106902 + ], + [ + 53.6592528, + 9.9106047 + ], + [ + 53.6593146, + 9.9105967 + ], + [ + 53.6593335, + 9.9105934 + ], + [ + 53.6594841, + 9.9105669 + ] + ] + }, + { + "osmId": "1421121289", + "name": null, + "lengthMeters": 304.15669641284, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6295231, + 9.9065343 + ], + [ + 53.6296172, + 9.906541 + ], + [ + 53.6296507, + 9.9065434 + ], + [ + 53.6296638, + 9.9065443 + ], + [ + 53.6306257, + 9.9066129 + ], + [ + 53.6314798, + 9.9066826 + ], + [ + 53.6319045, + 9.9067013 + ], + [ + 53.6322444, + 9.9067071 + ], + [ + 53.6322563, + 9.9067073 + ] + ] + }, + { + "osmId": "1421121290", + "name": null, + "lengthMeters": 302.6974609314468, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6295254, + 9.9064736 + ], + [ + 53.6296181, + 9.9064799 + ], + [ + 53.6296527, + 9.9064826 + ], + [ + 53.6296654, + 9.9064836 + ], + [ + 53.6306289, + 9.90656 + ], + [ + 53.6314755, + 9.9066218 + ], + [ + 53.6318972, + 9.9066316 + ], + [ + 53.6322333, + 9.906631 + ], + [ + 53.6322456, + 9.906631 + ] + ] + }, + { + "osmId": "1421121295", + "name": null, + "lengthMeters": 289.83530172048654, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6396288, + 9.9058162 + ], + [ + 53.6396374, + 9.9058152 + ], + [ + 53.6396541, + 9.9058133 + ], + [ + 53.6398601, + 9.9057897 + ], + [ + 53.6402165, + 9.9057704 + ], + [ + 53.6409489, + 9.9057647 + ], + [ + 53.6414733, + 9.905757 + ], + [ + 53.6422346, + 9.9057514 + ] + ] + }, + { + "osmId": "1421121296", + "name": null, + "lengthMeters": 289.903984416386, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6396281, + 9.9058764 + ], + [ + 53.6396376, + 9.9058755 + ], + [ + 53.6396562, + 9.9058737 + ], + [ + 53.6398531, + 9.9058543 + ], + [ + 53.640211, + 9.9058313 + ], + [ + 53.6414736, + 9.9058175 + ], + [ + 53.6422346, + 9.9058147 + ] + ] + }, + { + "osmId": "1421121297", + "name": null, + "lengthMeters": 171.7628552188897, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.633854, + 9.9066429 + ], + [ + 53.6342149, + 9.906624 + ], + [ + 53.6345398, + 9.9065965 + ], + [ + 53.6353057, + 9.906501 + ], + [ + 53.6353958, + 9.9064902 + ] + ] + }, + { + "osmId": "1421121298", + "name": null, + "lengthMeters": 197.65184273225796, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6339112, + 9.9065091 + ], + [ + 53.6340604, + 9.9064959 + ], + [ + 53.634213, + 9.9064853 + ], + [ + 53.6349737, + 9.906418 + ], + [ + 53.6353109, + 9.906394 + ], + [ + 53.6356868, + 9.9063711 + ] + ] + }, + { + "osmId": "1421121300", + "name": null, + "lengthMeters": 118.07333609799868, + "maxSpeedKph": 60.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6327999, + 9.9066046 + ], + [ + 53.6328113, + 9.906604 + ], + [ + 53.6329702, + 9.9065953 + ], + [ + 53.633124, + 9.9065837 + ], + [ + 53.633502, + 9.9065497 + ], + [ + 53.6336356, + 9.9065284 + ], + [ + 53.6338602, + 9.9065131 + ] + ] + }, + { + "osmId": "1421121302", + "name": null, + "lengthMeters": 81.72844681364344, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6330787, + 9.9066804 + ], + [ + 53.6334365, + 9.9066628 + ], + [ + 53.6335026, + 9.9066597 + ], + [ + 53.6338134, + 9.9066449 + ] + ] + }, + { + "osmId": "1421121303", + "name": null, + "lengthMeters": 404.4780009608612, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6258937, + 9.9061324 + ], + [ + 53.6261473, + 9.9061559 + ], + [ + 53.6261755, + 9.9061585 + ], + [ + 53.6262483, + 9.9061642 + ], + [ + 53.626316, + 9.9061704 + ], + [ + 53.6263687, + 9.9061743 + ], + [ + 53.6263788, + 9.9061751 + ], + [ + 53.6269888, + 9.9062208 + ], + [ + 53.6273911, + 9.9062601 + ], + [ + 53.6277467, + 9.9063051 + ], + [ + 53.6289421, + 9.9064342 + ], + [ + 53.6295155, + 9.906473 + ], + [ + 53.6295254, + 9.9064736 + ] + ] + }, + { + "osmId": "1421121306", + "name": null, + "lengthMeters": 441.53663077051556, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.62196, + 9.905276 + ], + [ + 53.6220577, + 9.9053043 + ], + [ + 53.6227821, + 9.905556 + ], + [ + 53.6229092, + 9.9056019 + ], + [ + 53.6229854, + 9.9056223 + ], + [ + 53.6232356, + 9.9056764 + ], + [ + 53.6233303, + 9.9056951 + ], + [ + 53.6238266, + 9.9058025 + ], + [ + 53.6248672, + 9.9060091 + ], + [ + 53.625498, + 9.9060958 + ], + [ + 53.6258937, + 9.9061324 + ] + ] + }, + { + "osmId": "1421510641", + "name": null, + "lengthMeters": 646.1481681155138, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 48.1350251, + 11.5127889 + ], + [ + 48.1350259, + 11.5128096 + ], + [ + 48.1350392, + 11.5131904 + ], + [ + 48.1350403, + 11.513505 + ], + [ + 48.1349776, + 11.5151749 + ], + [ + 48.1349349, + 11.5160567 + ], + [ + 48.1348676, + 11.5172854 + ], + [ + 48.1347612, + 11.5194488 + ], + [ + 48.1347315, + 11.5200526 + ], + [ + 48.1347072, + 11.5205465 + ], + [ + 48.1346845, + 11.5214769 + ] + ] + }, + { + "osmId": "1421528122", + "name": null, + "lengthMeters": 78.84881013173646, + "maxSpeedKph": 25.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.570675, + 9.9340051 + ], + [ + 53.5704756, + 9.9340358 + ], + [ + 53.5703946, + 9.9340386 + ], + [ + 53.5700053, + 9.9341004 + ], + [ + 53.5699686, + 9.9341056 + ] + ] + }, + { + "osmId": "1421528123", + "name": null, + "lengthMeters": 130.69017014869505, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5728005, + 9.9328919 + ], + [ + 53.573129, + 9.9326678 + ], + [ + 53.5734169, + 9.9324969 + ], + [ + 53.5736309, + 9.9323913 + ], + [ + 53.5739152, + 9.9322745 + ] + ] + }, + { + "osmId": "1421528124", + "name": null, + "lengthMeters": 266.3351830134104, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5780319, + 9.9314763 + ], + [ + 53.5775187, + 9.9316327 + ], + [ + 53.5769007, + 9.9317848 + ], + [ + 53.5764405, + 9.9318673 + ], + [ + 53.5759574, + 9.9319347 + ], + [ + 53.5756564, + 9.9319656 + ] + ] + }, + { + "osmId": "1421528125", + "name": null, + "lengthMeters": 231.71066112242664, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5906252, + 9.9167279 + ], + [ + 53.5909736, + 9.9161819 + ], + [ + 53.5915137, + 9.9152132 + ], + [ + 53.5920551, + 9.9141775 + ] + ] + }, + { + "osmId": "1421812817", + "name": null, + "lengthMeters": 111.36092919353189, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5796658, + 10.0562774 + ], + [ + 53.5795243, + 10.0563679 + ], + [ + 53.5790016, + 10.0567024 + ], + [ + 53.5787243, + 10.0568509 + ] + ] + }, + { + "osmId": "1421851887", + "name": null, + "lengthMeters": 501.42059724265533, + "maxSpeedKph": 70.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5603461, + 10.0358154 + ], + [ + 53.5597634, + 10.034346 + ], + [ + 53.5593472, + 10.0332828 + ], + [ + 53.5584711, + 10.0310455 + ], + [ + 53.558173, + 10.030265 + ], + [ + 53.5578921, + 10.0295602 + ], + [ + 53.5578606, + 10.0294812 + ] + ] + }, + { + "osmId": "1421851889", + "name": null, + "lengthMeters": 367.923013659355, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5590866, + 10.0327043 + ], + [ + 53.5593184, + 10.0332965 + ], + [ + 53.5593249, + 10.033313 + ], + [ + 53.5597435, + 10.0343823 + ], + [ + 53.5603193, + 10.0358404 + ], + [ + 53.5606276, + 10.0366514 + ], + [ + 53.5607976, + 10.0370905 + ], + [ + 53.5608617, + 10.0372563 + ], + [ + 53.5609024, + 10.037361 + ] + ] + }, + { + "osmId": "1421851890", + "name": null, + "lengthMeters": 164.7853146559055, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5619236, + 10.0396866 + ], + [ + 53.5617465, + 10.0391888 + ], + [ + 53.5612185, + 10.0378275 + ], + [ + 53.561151, + 10.0376564 + ], + [ + 53.5611227, + 10.0375878 + ] + ] + }, + { + "osmId": "1421851893", + "name": null, + "lengthMeters": 147.91684950913358, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5637717, + 10.0514406 + ], + [ + 53.5637732, + 10.0514601 + ], + [ + 53.5638129, + 10.0518127 + ], + [ + 53.5639062, + 10.0524194 + ], + [ + 53.5639618, + 10.0527404 + ], + [ + 53.5640789, + 10.0533467 + ], + [ + 53.5641336, + 10.0535926 + ] + ] + }, + { + "osmId": "1421851894", + "name": null, + "lengthMeters": 145.55489662722428, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5642328, + 10.0535337 + ], + [ + 53.5641824, + 10.0533191 + ], + [ + 53.5639362, + 10.0522834 + ], + [ + 53.56387, + 10.0519016 + ], + [ + 53.5638406, + 10.051705 + ], + [ + 53.5638127, + 10.0514691 + ], + [ + 53.5638114, + 10.0514526 + ] + ] + }, + { + "osmId": "1421851895", + "name": null, + "lengthMeters": 148.48409517645416, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5636167, + 10.0489361 + ], + [ + 53.5636677, + 10.0498068 + ], + [ + 53.5637354, + 10.0509638 + ], + [ + 53.5637513, + 10.0511729 + ] + ] + }, + { + "osmId": "1421851899", + "name": null, + "lengthMeters": 104.11581641684342, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5664965, + 10.0602072 + ], + [ + 53.5664962, + 10.060207 + ], + [ + 53.5664415, + 10.0601554 + ], + [ + 53.5662951, + 10.0599974 + ], + [ + 53.5661527, + 10.0598173 + ], + [ + 53.5660749, + 10.059719 + ], + [ + 53.5658643, + 10.059382 + ], + [ + 53.5657774, + 10.0592113 + ] + ] + }, + { + "osmId": "1421851900", + "name": null, + "lengthMeters": 117.32780574011984, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5674927, + 10.0607561 + ], + [ + 53.5674304, + 10.0607422 + ], + [ + 53.5671559, + 10.0606514 + ], + [ + 53.5669176, + 10.0605361 + ], + [ + 53.5665951, + 10.0603 + ], + [ + 53.5664965, + 10.0602072 + ] + ] + }, + { + "osmId": "1421851902", + "name": null, + "lengthMeters": 76.36006339560439, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5674655, + 10.0608309 + ], + [ + 53.5675379, + 10.0608445 + ], + [ + 53.5676633, + 10.0608583 + ], + [ + 53.5677652, + 10.0608708 + ], + [ + 53.5678844, + 10.0608792 + ], + [ + 53.5679893, + 10.0608867 + ], + [ + 53.5681103, + 10.0608886 + ], + [ + 53.5681412, + 10.0608908 + ], + [ + 53.5681509, + 10.0608884 + ] + ] + }, + { + "osmId": "1421851903", + "name": null, + "lengthMeters": 229.46154671359915, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5650123, + 10.0569546 + ], + [ + 53.5649781, + 10.0568019 + ], + [ + 53.5646658, + 10.0553647 + ], + [ + 53.5646565, + 10.0553229 + ], + [ + 53.5644929, + 10.0546303 + ], + [ + 53.5643269, + 10.0539339 + ], + [ + 53.5642743, + 10.0537102 + ] + ] + }, + { + "osmId": "1421851905", + "name": null, + "lengthMeters": 80.20721724794447, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.584853, + 10.050678 + ], + [ + 53.5850283, + 10.0503999 + ], + [ + 53.5853807, + 10.0498496 + ] + ] + }, + { + "osmId": "1421851908", + "name": null, + "lengthMeters": 79.72131093642098, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.582436, + 10.0541772 + ], + [ + 53.5830204, + 10.0534776 + ] + ] + }, + { + "osmId": "1421890352", + "name": null, + "lengthMeters": 112.39534157806729, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.5971412, + 9.9042886 + ], + [ + 53.5965213, + 9.9055514 + ], + [ + 53.5964963, + 9.9056001 + ] + ] + }, + { + "osmId": "1422360025", + "name": null, + "lengthMeters": 173.24731871040277, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.605502, + 10.0175202 + ], + [ + 53.6039443, + 10.0174645 + ] + ] + }, + { + "osmId": "1422360026", + "name": null, + "lengthMeters": 173.13979919872665, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6039446, + 10.017391 + ], + [ + 53.6055012, + 10.0174564 + ] + ] + }, + { + "osmId": "1422360027", + "name": null, + "lengthMeters": 89.35949976382925, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6042052, + 10.0173322 + ], + [ + 53.6039446, + 10.017391 + ], + [ + 53.6038188, + 10.0174224 + ], + [ + 53.6034087, + 10.017512 + ] + ] + }, + { + "osmId": "1422360028", + "name": null, + "lengthMeters": 89.51391302888135, + "maxSpeedKph": null, + "status": "construction", + "isBidirectional": true, + "coordinates": [ + [ + 53.6034116, + 10.0172856 + ], + [ + 53.6038188, + 10.0174224 + ], + [ + 53.6039443, + 10.0174645 + ], + [ + 53.6042011, + 10.0175507 + ] + ] + }, + { + "osmId": "1424189773", + "name": null, + "lengthMeters": 249.7354802322784, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6155279, + 9.9031201 + ], + [ + 53.6166689, + 9.9034269 + ], + [ + 53.6167066, + 9.9034371 + ], + [ + 53.6167238, + 9.9034417 + ], + [ + 53.6170431, + 9.9035424 + ], + [ + 53.6173474, + 9.9036417 + ], + [ + 53.6175135, + 9.9036981 + ], + [ + 53.6176574, + 9.9037481 + ], + [ + 53.6177391, + 9.9037792 + ] + ] + }, + { + "osmId": "1424189774", + "name": null, + "lengthMeters": 249.92686815263235, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6155349, + 9.9030634 + ], + [ + 53.6165503, + 9.9033305 + ], + [ + 53.616713, + 9.9033753 + ], + [ + 53.6168162, + 9.9034056 + ], + [ + 53.6170501, + 9.9034814 + ], + [ + 53.6173538, + 9.9035771 + ], + [ + 53.6175203, + 9.9036327 + ], + [ + 53.6176656, + 9.9036858 + ], + [ + 53.6177483, + 9.9037174 + ] + ] + }, + { + "osmId": "1424201911", + "name": null, + "lengthMeters": 396.0542996303653, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6184812, + 9.9039878 + ], + [ + 53.6186811, + 9.9040611 + ], + [ + 53.6195256, + 9.9043739 + ], + [ + 53.6197505, + 9.9044572 + ], + [ + 53.6209273, + 9.9048861 + ], + [ + 53.621352, + 9.9050496 + ], + [ + 53.6215456, + 9.9051279 + ], + [ + 53.621946, + 9.9052719 + ], + [ + 53.62196, + 9.905276 + ] + ] + }, + { + "osmId": "1424215300", + "name": null, + "lengthMeters": 225.53094706654755, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7347721, + 9.9064341 + ], + [ + 53.7350138, + 9.9066231 + ], + [ + 53.7355399, + 9.9070386 + ], + [ + 53.7359929, + 9.9073939 + ], + [ + 53.7362139, + 9.907563 + ], + [ + 53.7364806, + 9.9077742 + ], + [ + 53.7366116, + 9.9078785 + ] + ] + }, + { + "osmId": "1424215301", + "name": null, + "lengthMeters": 120.76806717284029, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7209423, + 9.9091073 + ], + [ + 53.7214966, + 9.9087034 + ], + [ + 53.7219432, + 9.9083949 + ] + ] + }, + { + "osmId": "1424215302", + "name": null, + "lengthMeters": 121.40698001034983, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7209315, + 9.9090596 + ], + [ + 53.7214856, + 9.9086437 + ], + [ + 53.7219356, + 9.9083355 + ] + ] + }, + { + "osmId": "1424215304", + "name": null, + "lengthMeters": 121.03366028160175, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7336646, + 9.9055571 + ], + [ + 53.7342835, + 9.906044 + ], + [ + 53.73465, + 9.9063387 + ] + ] + }, + { + "osmId": "1424215305", + "name": null, + "lengthMeters": 256.6163022329763, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7188407, + 9.9107187 + ], + [ + 53.7205673, + 9.90939 + ], + [ + 53.7209423, + 9.9091073 + ] + ] + }, + { + "osmId": "1424215306", + "name": null, + "lengthMeters": 256.994197139462, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.7188242, + 9.9106636 + ], + [ + 53.7201755, + 9.9096269 + ], + [ + 53.7209315, + 9.9090596 + ] + ] + }, + { + "osmId": "1424215307", + "name": null, + "lengthMeters": 181.3677312773148, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6987647, + 9.9184172 + ], + [ + 53.6987793, + 9.9184119 + ], + [ + 53.7003561, + 9.9178132 + ] + ] + }, + { + "osmId": "1424215308", + "name": null, + "lengthMeters": 230.47284106573412, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6983217, + 9.9185218 + ], + [ + 53.6984131, + 9.9184891 + ], + [ + 53.698762, + 9.9183569 + ], + [ + 53.7003441, + 9.9177553 + ] + ] + }, + { + "osmId": "1424215309", + "name": null, + "lengthMeters": 187.4373557339008, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6533297, + 9.9114394 + ], + [ + 53.6545157, + 9.9112483 + ], + [ + 53.6550082, + 9.9111778 + ] + ] + }, + { + "osmId": "1424215310", + "name": null, + "lengthMeters": 187.87010192137552, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.6533256, + 9.9113836 + ], + [ + 53.6533395, + 9.9113811 + ], + [ + 53.6545132, + 9.91117 + ], + [ + 53.6550069, + 9.9111044 + ] + ] + }, + { + "osmId": "1424215311", + "name": null, + "lengthMeters": 76.23116903260116, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 53.697652, + 9.9187693 + ], + [ + 53.6978829, + 9.9186799 + ], + [ + 53.6979388, + 9.9186589 + ], + [ + 53.6983079, + 9.9185268 + ], + [ + 53.6983217, + 9.9185218 + ] + ] + }, + { + "osmId": "1424338838", + "name": null, + "lengthMeters": 458.4237153986321, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4793465, + 13.2519944 + ], + [ + 52.4798391, + 13.2525424 + ], + [ + 52.4805103, + 13.2531817 + ], + [ + 52.4809328, + 13.2535145 + ], + [ + 52.4813525, + 13.2538286 + ], + [ + 52.4814415, + 13.2538911 + ], + [ + 52.4815024, + 13.2539339 + ], + [ + 52.4816702, + 13.2540515 + ], + [ + 52.4827831, + 13.2548319 + ], + [ + 52.483028, + 13.2550035 + ] + ] + }, + { + "osmId": "1424338839", + "name": null, + "lengthMeters": 469.3189811653176, + "maxSpeedKph": 120.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.483139, + 13.2550181 + ], + [ + 52.4823433, + 13.2544586 + ], + [ + 52.4822673, + 13.2544052 + ], + [ + 52.4816856, + 13.2539972 + ], + [ + 52.4814225, + 13.2538128 + ], + [ + 52.4813631, + 13.2537711 + ], + [ + 52.4809441, + 13.2534529 + ], + [ + 52.4805272, + 13.2531287 + ], + [ + 52.4798582, + 13.2524903 + ], + [ + 52.4793681, + 13.2519436 + ] + ] + }, + { + "osmId": "1424338846", + "name": null, + "lengthMeters": 168.83397525020854, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4948846, + 13.2764913 + ], + [ + 52.4949467, + 13.276681 + ], + [ + 52.495111, + 13.2771554 + ], + [ + 52.4952389, + 13.2774802 + ], + [ + 52.4953641, + 13.2777782 + ], + [ + 52.4954192, + 13.2778968 + ], + [ + 52.4954848, + 13.2780329 + ], + [ + 52.4956696, + 13.2784166 + ], + [ + 52.4957354, + 13.2785502 + ] + ] + }, + { + "osmId": "1424751489", + "name": null, + "lengthMeters": 750.700790609515, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3505674, + 13.4114306 + ], + [ + 52.3498965, + 13.4116486 + ], + [ + 52.3493485, + 13.4117942 + ], + [ + 52.3483519, + 13.4121126 + ], + [ + 52.3464019, + 13.4127295 + ], + [ + 52.3459467, + 13.4128704 + ], + [ + 52.3448398, + 13.413223 + ], + [ + 52.3445385, + 13.4132937 + ], + [ + 52.3442184, + 13.4133594 + ], + [ + 52.3439268, + 13.4134001 + ] + ] + }, + { + "osmId": "1426357692", + "name": "Potsdamer Kurve", + "lengthMeters": 322.6184466108546, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.3491933, + 13.4099441 + ], + [ + 52.3492521, + 13.4097669 + ], + [ + 52.3493108, + 13.4095879 + ], + [ + 52.3493514, + 13.4094408 + ], + [ + 52.3493955, + 13.4092731 + ], + [ + 52.349433, + 13.4091011 + ], + [ + 52.3494983, + 13.4087481 + ], + [ + 52.3495429, + 13.40841 + ], + [ + 52.3495644, + 13.4081659 + ], + [ + 52.3495755, + 13.4079453 + ], + [ + 52.3495781, + 13.4077461 + ], + [ + 52.3495788, + 13.407441 + ], + [ + 52.3495583, + 13.4070892 + ], + [ + 52.3495378, + 13.4068933 + ], + [ + 52.349537, + 13.4068853 + ], + [ + 52.3495268, + 13.406788 + ], + [ + 52.3494998, + 13.4065774 + ], + [ + 52.3494616, + 13.4063122 + ], + [ + 52.3494163, + 13.4060465 + ], + [ + 52.3492869, + 13.4053701 + ] + ] + }, + { + "osmId": "1427138218", + "name": null, + "lengthMeters": 566.6960455378879, + "maxSpeedKph": 80.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4975997, + 13.281821 + ], + [ + 52.4974931, + 13.2817132 + ], + [ + 52.4973559, + 13.2815537 + ], + [ + 52.4972273, + 13.2813857 + ], + [ + 52.4970568, + 13.2811256 + ], + [ + 52.496821, + 13.2806908 + ], + [ + 52.4967006, + 13.2804416 + ], + [ + 52.4959451, + 13.2788764 + ], + [ + 52.4958428, + 13.278666 + ], + [ + 52.4955182, + 13.2779946 + ], + [ + 52.4953985, + 13.2777404 + ], + [ + 52.495275, + 13.2774465 + ], + [ + 52.4951471, + 13.2771176 + ], + [ + 52.4949838, + 13.2766475 + ], + [ + 52.4948476, + 13.2762405 + ], + [ + 52.4945981, + 13.2754843 + ], + [ + 52.4945174, + 13.2752397 + ] + ] + }, + { + "osmId": "1427315430", + "name": null, + "lengthMeters": 127.11709100339694, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5027313, + 13.2822144 + ], + [ + 52.5032105, + 13.2821744 + ], + [ + 52.503873, + 13.2821185 + ] + ] + }, + { + "osmId": "1427315431", + "name": null, + "lengthMeters": 190.30668951231928, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4907272, + 13.2671076 + ], + [ + 52.4906252, + 13.2668605 + ], + [ + 52.4901771, + 13.2657713 + ], + [ + 52.4899908, + 13.2653652 + ], + [ + 52.4897302, + 13.2648249 + ] + ] + }, + { + "osmId": "1427315432", + "name": null, + "lengthMeters": 188.7660756271602, + "maxSpeedKph": null, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.4896704, + 13.2649263 + ], + [ + 52.4901348, + 13.265827 + ], + [ + 52.4903229, + 13.2662411 + ], + [ + 52.4905917, + 13.2668995 + ], + [ + 52.4906937, + 13.2671465 + ] + ] + }, + { + "osmId": "1435120867", + "name": "Stralsunder Kurve", + "lengthMeters": 285.20231531066435, + "maxSpeedKph": 100.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5059428, + 13.5392384 + ], + [ + 52.5063137, + 13.5390648 + ], + [ + 52.5072037, + 13.5386669 + ], + [ + 52.5076407, + 13.5384703 + ], + [ + 52.5080333, + 13.5382935 + ], + [ + 52.5084159, + 13.5381213 + ] + ] + }, + { + "osmId": "1435120871", + "name": null, + "lengthMeters": 142.6977358370161, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5051119, + 13.4820276 + ], + [ + 52.5052004, + 13.4819332 + ], + [ + 52.5052584, + 13.4818696 + ], + [ + 52.5053321, + 13.4817842 + ], + [ + 52.5054094, + 13.4816904 + ], + [ + 52.5054916, + 13.4815846 + ], + [ + 52.5055905, + 13.4814445 + ], + [ + 52.5056863, + 13.4812954 + ], + [ + 52.505765, + 13.4811636 + ], + [ + 52.5058614, + 13.4809868 + ], + [ + 52.5059576, + 13.4808003 + ], + [ + 52.5060514, + 13.4806098 + ] + ] + }, + { + "osmId": "1435120872", + "name": null, + "lengthMeters": 141.28197918250953, + "maxSpeedKph": 50.0, + "status": "operational", + "isBidirectional": true, + "coordinates": [ + [ + 52.5060246, + 13.4805801 + ], + [ + 52.5060108, + 13.4806076 + ], + [ + 52.5059275, + 13.4807782 + ], + [ + 52.5058419, + 13.4809448 + ], + [ + 52.5057453, + 13.4811228 + ], + [ + 52.5056569, + 13.4812719 + ], + [ + 52.5055788, + 13.4813901 + ], + [ + 52.5054763, + 13.4815342 + ], + [ + 52.5053907, + 13.4816464 + ], + [ + 52.5052907, + 13.4817676 + ], + [ + 52.505198, + 13.4818709 + ], + [ + 52.5050927, + 13.4819795 + ] + ] + } + ] +} \ No newline at end of file diff --git a/docs/08_Concepts.md b/docs/08_Concepts.md index e93cd44..21deb86 100644 --- a/docs/08_Concepts.md +++ b/docs/08_Concepts.md @@ -55,6 +55,13 @@ Dynamic simulation of train operations: - **Fallback Mechanisms**: Polling as alternative when WebSockets unavailable - **Event-Driven Updates**: Push notifications for game state changes +#### 8.2.4 OSM Track Harvesting Policy + +- **Railway Types**: Importer requests `rail`, `light_rail`, `subway`, `tram`, `narrow_gauge`, plus `construction` and `disused` variants to capture build-state metadata. +- **Service Filters**: `service` tags such as `yard`, `siding`, `spur`, `crossover`, `industrial`, or `military` are excluded to focus on mainline traffic. +- **Usage Filters**: Ways flagged with `usage=military` or `usage=tourism` are skipped; unspecified usage defaults to accepted. +- **Geometry Guardrails**: Segments shorter than 75 meters are discarded and track endpoints must snap to an existing station within 350 meters or the segment is ignored during loading. + ### 8.3 User Interface Concepts #### 8.3.1 Component-Based Architecture @@ -127,4 +134,3 @@ Dynamic simulation of train operations: - **Lazy Loading**: On-demand loading of components and data - **Caching Layers**: Redis for frequently accessed data - **Asset Optimization**: Minification and compression of static resources - diff --git a/scripts/init_demo_db.py b/scripts/init_demo_db.py new file mode 100644 index 0000000..923eb5c --- /dev/null +++ b/scripts/init_demo_db.py @@ -0,0 +1,155 @@ +#!/usr/bin/env python3 +""" +Initialize the database with demo data for the Rail Game. + +This script automates the database setup process: +1. Validates environment setup +2. Runs database migrations +3. Loads OSM fixtures for demo data + +Usage: + python scripts/init_demo_db.py [--dry-run] [--region REGION] + +Requirements: +- Virtual environment activated +- .env file configured with DATABASE_URL +- PostgreSQL with PostGIS running +""" + +import argparse +import os +import subprocess +import sys +from pathlib import Path + +try: + from dotenv import load_dotenv + load_dotenv() +except ImportError: + print("WARNING: python-dotenv not installed. .env file will not be loaded automatically.") + print("Install with: pip install python-dotenv") + + +def check_virtualenv(): + """Check if we're running in a virtual environment.""" + if not hasattr(sys, 'real_prefix') and not (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix): + print("ERROR: Virtual environment not activated. Run:") + print(" .venv\\Scripts\\Activate.ps1 (PowerShell)") + print(" source .venv/bin/activate (Bash/macOS/Linux)") + sys.exit(1) + + +def check_env_file(): + """Check if .env file exists.""" + env_file = Path('.env') + if not env_file.exists(): + print("ERROR: .env file not found. Copy .env.example to .env and configure:") + print(" Copy-Item .env.example .env (PowerShell)") + print(" cp .env.example .env (Bash)") + sys.exit(1) + + +def check_database_url(): + """Check if DATABASE_URL is set in environment.""" + database_url = os.getenv('DATABASE_URL') + if not database_url: + print("ERROR: DATABASE_URL not set. Check your .env file.") + sys.exit(1) + print(f"Using database: {database_url}") + + +def run_command(cmd, cwd=None, description=""): + """Run a shell command and return the result.""" + print(f"\n>>> {description}") + print(f"Running: {' '.join(cmd)}") + try: + result = subprocess.run(cmd, cwd=cwd, check=True, + capture_output=True, text=True) + if result.stdout: + print(result.stdout) + return result + except subprocess.CalledProcessError as e: + print(f"ERROR: Command failed with exit code {e.returncode}") + if e.stdout: + print(e.stdout) + if e.stderr: + print(e.stderr) + sys.exit(1) + + +def run_migrations(): + """Run database migrations using alembic.""" + run_command( + ['alembic', 'upgrade', 'head'], + cwd='backend', + description="Running database migrations" + ) + + +def load_osm_fixtures(region, dry_run=False): + """Load OSM fixtures for demo data.""" + cmd = ['python', '-m', 'backend.scripts.osm_refresh', '--region', region] + if dry_run: + cmd.append('--no-commit') + description = f"Loading OSM fixtures (dry run) for region: {region}" + else: + description = f"Loading OSM fixtures for region: {region}" + + run_command(cmd, description=description) + + +def main(): + parser = argparse.ArgumentParser( + description="Initialize database with demo data") + parser.add_argument( + '--region', + default='all', + help='OSM region to load (default: all)' + ) + parser.add_argument( + '--dry-run', + action='store_true', + help='Dry run: run migrations and load fixtures without committing' + ) + parser.add_argument( + '--skip-migrations', + action='store_true', + help='Skip running migrations' + ) + parser.add_argument( + '--skip-fixtures', + action='store_true', + help='Skip loading OSM fixtures' + ) + + args = parser.parse_args() + + print("Rail Game Database Initialization") + print("=" * 40) + + # Pre-flight checks + check_virtualenv() + check_env_file() + check_database_url() + + # Run migrations + if not args.skip_migrations: + run_migrations() + else: + print("Skipping migrations (--skip-migrations)") + + # Load fixtures + if not args.skip_fixtures: + load_osm_fixtures(args.region, args.dry_run) + else: + print("Skipping fixtures (--skip-fixtures)") + + print("\n✅ Database initialization completed successfully!") + if args.dry_run: + print("Note: This was a dry run. No data was committed to the database.") + else: + print("Demo data loaded. You can now start the backend server.") + + +if __name__ == '__main__': + main()