From ada878b23c9d88998273a3587735df9e57b252a5 Mon Sep 17 00:00:00 2001 From: Dimitris Date: Mon, 16 Mar 2026 15:09:03 +0100 Subject: [PATCH] Preview --- app/build.gradle.kts | 6 +- .../com/kouros/navigation/model/Simulation.kt | 4 +- .../com/kouros/navigation/ui/MainActivity.kt | 9 +- .../com/kouros/navigation/ui/SheetLayout.kt | 3 +- .../kouros/navigation/car/RouteModelTest.kt | 8 +- .../kouros/navigation/car/SurfaceRenderer.kt | 1 + .../navigation/car/screen/NavigationScreen.kt | 88 +- .../navigation/car/screen/PlaceListScreen.kt | 1 + .../car/screen/RoutePreviewScreen.kt | 100 +- .../observers/NavigationObserverCallback.kt | 6 +- .../observers/NavigationObserverManager.kt | 4 +- .../screen/observers/PreviewRouteObserver.kt | 14 + .../data/tomtom/TomTomRepository.kt | 8 +- .../src/main/res/drawable/alt_route_48px.xml | 11 + .../main/res/drawable/heart_minus_48px.xml | 10 + .../src/main/res/drawable/heart_plus_48px.xml | 10 + .../res/drawable/keyboard_arrow_up_24px.xml | 10 + common/data/src/main/res/raw/hv.gpx | 693 -- .../data/src/main/res/raw/tomom_routing.json | 627 -- common/data/src/main/res/raw/tomtom_traffic | 6668 ----------------- common/data/src/main/res/raw/vh.gpx | 678 -- 21 files changed, 235 insertions(+), 8724 deletions(-) create mode 100644 common/car/src/main/java/com/kouros/navigation/car/screen/observers/PreviewRouteObserver.kt create mode 100644 common/data/src/main/res/drawable/alt_route_48px.xml create mode 100644 common/data/src/main/res/drawable/heart_minus_48px.xml create mode 100644 common/data/src/main/res/drawable/heart_plus_48px.xml create mode 100644 common/data/src/main/res/drawable/keyboard_arrow_up_24px.xml delete mode 100644 common/data/src/main/res/raw/hv.gpx delete mode 100644 common/data/src/main/res/raw/tomom_routing.json delete mode 100644 common/data/src/main/res/raw/tomtom_traffic delete mode 100644 common/data/src/main/res/raw/vh.gpx diff --git a/app/build.gradle.kts b/app/build.gradle.kts index eb1878a..b8607f1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -13,8 +13,8 @@ android { applicationId = "com.kouros.navigation" minSdk = 33 targetSdk = 36 - versionCode = 68 - versionName = "0.2.0.68" + versionCode = 71 + versionName = "0.2.0.71" base.archivesName = "navi-$versionName" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } @@ -69,6 +69,8 @@ android { buildFeatures { compose = true } + + } dependencies { diff --git a/app/src/main/java/com/kouros/navigation/model/Simulation.kt b/app/src/main/java/com/kouros/navigation/model/Simulation.kt index 46b0f7a..f4a6b67 100644 --- a/app/src/main/java/com/kouros/navigation/model/Simulation.kt +++ b/app/src/main/java/com/kouros/navigation/model/Simulation.kt @@ -95,7 +95,9 @@ fun gpx(context: Context, mock: MockLocation) { CoroutineScope(Dispatchers.IO).launch { var lastLocation = location(0.0, 0.0) val parser = GPXParser() - val input = context.resources.openRawResource(R.raw.vh) + val resourceId: Int = context.resources + .getIdentifier("vh", "raw", context.packageName) + val input = context.resources.openRawResource(resourceId) val parsedGpx: Gpx? = parser.parse(input) // consider using a background thread parsedGpx?.let { val tracks = parsedGpx.tracks diff --git a/app/src/main/java/com/kouros/navigation/ui/MainActivity.kt b/app/src/main/java/com/kouros/navigation/ui/MainActivity.kt index 6266854..a0ecb0d 100644 --- a/app/src/main/java/com/kouros/navigation/ui/MainActivity.kt +++ b/app/src/main/java/com/kouros/navigation/ui/MainActivity.kt @@ -147,6 +147,8 @@ class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) + navigationViewModel.route.value = "" + textToSpeechManager = TextToSpeechManager(applicationContext) val repository = getSettingsRepository(applicationContext) repository.guidanceAudioFlow.asLiveData().observe(this, Observer { @@ -201,9 +203,10 @@ class MainActivity : ComponentActivity() { updateInterval = 0.5.seconds, desiredAccuracy = DesiredAccuracy.Highest ) val lastRoute by appViewModel.lastRoute.collectAsState() - if (lastRoute.isNotEmpty()) { - navigationViewModel.route.value = lastRoute - } + // use not the same route for mobile and car navigation + //if (lastRoute.isNotEmpty()) { + // navigationViewModel.route.value = lastRoute + //} val userLocationState = rememberUserLocationState(locationProvider) if (!useMock) { val locationState = locationProvider.location.collectAsState() diff --git a/app/src/main/java/com/kouros/navigation/ui/SheetLayout.kt b/app/src/main/java/com/kouros/navigation/ui/SheetLayout.kt index 636afcf..850d598 100644 --- a/app/src/main/java/com/kouros/navigation/ui/SheetLayout.kt +++ b/app/src/main/java/com/kouros/navigation/ui/SheetLayout.kt @@ -21,6 +21,7 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.rotate import androidx.compose.ui.res.painterResource import androidx.compose.ui.unit.dp +import com.kouros.data.R import kotlinx.coroutines.launch @OptIn(ExperimentalMaterial3Api::class) @@ -73,7 +74,7 @@ private fun ExpandCollapseButton( onClick = { coroutineScope.launch { if (expanded) onCollapse() else onExpand() } }, ) { Icon( - painter = painterResource(com.kouros.android.cars.carappservice.R.drawable.keyboard_arrow_up_24px), + painter = painterResource(R.drawable.keyboard_arrow_up_24px), contentDescription = if (expanded) "Collapse" else "Expand", modifier = Modifier.rotate(degrees), ) diff --git a/common/car/src/androidTest/java/com/kouros/navigation/car/RouteModelTest.kt b/common/car/src/androidTest/java/com/kouros/navigation/car/RouteModelTest.kt index e41a965..57a2c9b 100644 --- a/common/car/src/androidTest/java/com/kouros/navigation/car/RouteModelTest.kt +++ b/common/car/src/androidTest/java/com/kouros/navigation/car/RouteModelTest.kt @@ -7,17 +7,12 @@ import androidx.test.platform.app.InstrumentationRegistry import androidx.test.ext.junit.runners.AndroidJUnit4 import com.kouros.data.R import com.kouros.navigation.data.Constants.homeHohenwaldeck -import com.kouros.navigation.data.Constants.homeVogelhart import com.kouros.navigation.data.RouteEngine import com.kouros.navigation.data.tomtom.TomTomRepository import com.kouros.navigation.model.NavigationViewModel import com.kouros.navigation.model.RouteModel import com.kouros.navigation.utils.getSettingsRepository import com.kouros.navigation.utils.location -import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.delay -import kotlinx.coroutines.launch import kotlinx.coroutines.runBlocking import org.junit.Test @@ -25,7 +20,6 @@ import org.junit.runner.RunWith import org.junit.Assert.* import org.junit.Before -import org.maplibre.compose.expressions.dsl.step import kotlin.collections.forEach /** @@ -44,7 +38,7 @@ class RouteModelTest { val appContext = InstrumentationRegistry.getInstrumentation().targetContext val repository = getSettingsRepository(appContext) runBlocking { repository.setRoutingEngine(RouteEngine.TOMTOM.ordinal) } - val routeJson = appContext.resources.openRawResource(R.raw.tomom_routing) + val routeJson = appContext.resources.openRawResource(R.raw.tomtom_routing) val routeJsonString = routeJson.bufferedReader().use { it.readText() } assertNotEquals("", routeJsonString) routeModel.navState = routeModel.navState.copy(routingEngine = RouteEngine.TOMTOM.ordinal) diff --git a/common/car/src/main/java/com/kouros/navigation/car/SurfaceRenderer.kt b/common/car/src/main/java/com/kouros/navigation/car/SurfaceRenderer.kt index c6b503a..7102334 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/SurfaceRenderer.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/SurfaceRenderer.kt @@ -418,6 +418,7 @@ class SurfaceRenderer( * Sets route data for active navigation and switches to VIEW mode. */ fun clearRouteData() { + updateLocation(lastLocation) routeData.value = "" viewStyle = ViewStyle.VIEW cameraPosition.postValue( diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/NavigationScreen.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/NavigationScreen.kt index 59f97ef..95e23be 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/screen/NavigationScreen.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/NavigationScreen.kt @@ -85,14 +85,10 @@ class NavigationScreen( var lastTrafficDate: LocalDateTime? = LocalDateTime.of(1960, 6, 21, 0, 0) var lastCameraSearch = 0 var speedCameras = listOf() - val observerManager = NavigationObserverManager(navigationViewModel, this) - val repository = getSettingsRepository(carContext) - val settingsViewModel = getSettingsViewModel(carContext) - var distanceMode = 0 init { @@ -112,19 +108,26 @@ class NavigationScreen( */ override fun onRouteReceived(route: String) { if (route.isNotEmpty()) { - val routingEngine = runBlocking { repository.routingEngineFlow.first() } - routeModel.navState = routeModel.navState.copy(routingEngine = routingEngine) - navigationType = NavigationType.NAVIGATION - routeModel.startNavigation(route) - if (routeModel.hasLegs()) { - settingsViewModel.onLastRouteChanged(route) - } - surfaceRenderer.setRouteData() - listener.startNavigation() + prepareRoute(route) invalidate() } } + /** + * Prepare route and start navigation + */ + private fun prepareRoute(route: String) { + val routingEngine = runBlocking { repository.routingEngineFlow.first() } + routeModel.navState = routeModel.navState.copy(routingEngine = routingEngine) + navigationType = NavigationType.NAVIGATION + routeModel.startNavigation(route) + if (routeModel.hasLegs()) { + settingsViewModel.onLastRouteChanged(route) + } + surfaceRenderer.setRouteData() + listener.startNavigation() + } + /** * Checks if navigation is currently active. */ @@ -176,6 +179,16 @@ class NavigationScreen( surfaceRenderer.maxSpeed.value = speed } + /** + * Handles the received previe route string. + * Starts navigation and invalidates the screen. + */ + override fun onPreviewRouteReceived(route: String) { + if (navigationType == NavigationType.NAVIGATION && route.isNotEmpty()) { + startPreviewScreen(route) + } + } + /** * Invalidates the screen. */ @@ -409,13 +422,20 @@ class NavigationScreen( ) .setOnClickListener { val navigateTo = location(recentPlace.longitude, recentPlace.latitude) - navigationViewModel.loadRoute( + navigationViewModel.loadPreviewRoute( carContext, surfaceRenderer.lastLocation, navigateTo, surfaceRenderer.carOrientation ) - routeModel.navState = routeModel.navState.copy(destination = recentPlace) +// val navigateTo = location(recentPlace.longitude, recentPlace.latitude) +// navigationViewModel.loadRoute( +// carContext, +// surfaceRenderer.lastLocation, +// navigateTo, +// surfaceRenderer.carOrientation +// ) +// routeModel.navState = routeModel.navState.copy(destination = recentPlace) } .build() } @@ -458,7 +478,7 @@ class NavigationScreen( * Creates an action to start the settings screen. */ private fun settingsAction(): Action { - return Action.Builder() + return Action.Builder() .setIcon(routeModel.createCarIcon(carContext, R.drawable.settings_48px)) .setOnClickListener { screenManager.push(SettingsScreen(carContext, navigationViewModel)) @@ -554,12 +574,44 @@ class NavigationScreen( } } + /** + * Pushes the search screen and handles the search result. + */ + private fun startPreviewScreen(route: String) { + val repository = getSettingsRepository(carContext) + val routingEngine = runBlocking { repository.routingEngineFlow.first() } + routeModel.navState = routeModel.navState.copy(routingEngine = routingEngine) + routeModel.startNavigation(route) + surfaceRenderer.setPreviewRouteData(routeModel) + screenManager + .pushForResult( + RoutePreviewScreen( + carContext, + RoutePreviewType.SINGLE_ROUTE, + surfaceRenderer, + recentPlace, + navigationViewModel, + routeModel = routeModel + ) + ) { obj: Any? -> + if (obj != null) { + navigateToPlace(recentPlace) + } else { + routeModel.stopNavigation() + navigationType = NavigationType.VIEW + surfaceRenderer.clearRouteData() + invalidate() + } + } + } + /** * Loads a route to the specified place and sets it as the destination. */ fun navigateToPlace(place: Place) { val preview = navigationViewModel.previewRoute.value - navigationType = NavigationType.VIEW + navigationViewModel.previewRoute.value = "" + navigationType = NavigationType.NAVIGATION val location = location(place.longitude, place.latitude) navigationViewModel.saveRecent(carContext, place) currentNavigationLocation = location @@ -663,7 +715,7 @@ class NavigationScreen( * This includes destination name, address, travel estimate, and loading status. */ private fun updateTrip() { - if (routeModel.isNavigating()) { + if (routeModel.isNavigating() && !routeModel.navState.destination.name.isNullOrEmpty()) { val tripBuilder = Trip.Builder() val destination = Destination.Builder() .setName(routeModel.navState.destination.name ?: "") diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/PlaceListScreen.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/PlaceListScreen.kt index 295358f..28eafbb 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/screen/PlaceListScreen.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/PlaceListScreen.kt @@ -56,6 +56,7 @@ class PlaceListScreen( .pushForResult( RoutePreviewScreen( carContext, + RoutePreviewType.MULTI_ROUTE, surfaceRenderer, place, navigationViewModel, diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/RoutePreviewScreen.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/RoutePreviewScreen.kt index e754f67..4fdf111 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/screen/RoutePreviewScreen.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/RoutePreviewScreen.kt @@ -1,7 +1,8 @@ package com.kouros.navigation.car.screen -import android.os.CountDownTimer import android.text.SpannableString +import android.text.SpannableStringBuilder +import android.text.Spanned import androidx.activity.OnBackPressedCallback import androidx.annotation.DrawableRes import androidx.car.app.CarContext @@ -11,9 +12,11 @@ import androidx.car.app.constraints.ConstraintManager import androidx.car.app.model.Action import androidx.car.app.model.Action.FLAG_DEFAULT import androidx.car.app.model.ActionStrip +import androidx.car.app.model.CarColor import androidx.car.app.model.CarIcon import androidx.car.app.model.CarText import androidx.car.app.model.DurationSpan +import androidx.car.app.model.ForegroundCarColorSpan import androidx.car.app.model.Header import androidx.car.app.model.ItemList import androidx.car.app.model.ListTemplate @@ -24,7 +27,6 @@ import androidx.car.app.navigation.model.MapController import androidx.car.app.navigation.model.MapWithContentTemplate import androidx.car.app.versioning.CarAppApiLevels import androidx.core.graphics.drawable.IconCompat -import androidx.lifecycle.Lifecycle import com.kouros.data.R import com.kouros.navigation.car.SurfaceRenderer import com.kouros.navigation.car.navigation.NavigationUtils @@ -32,14 +34,15 @@ import com.kouros.navigation.car.navigation.RouteCarModel import com.kouros.navigation.data.Place import com.kouros.navigation.data.route.Routes import com.kouros.navigation.model.NavigationViewModel -import com.kouros.navigation.model.RouteModel import java.math.BigDecimal import java.math.RoundingMode +import java.time.Duration import kotlin.math.min /** Creates a screen using the new [androidx.car.app.navigation.model.MapWithContentTemplate] */ class RoutePreviewScreen( carContext: CarContext, + private var routeType: RoutePreviewType, private var surfaceRenderer: SurfaceRenderer, private var destination: Place, private val navigationViewModel: NavigationViewModel, @@ -51,6 +54,7 @@ class RoutePreviewScreen( val maxListItems: Int = 3 val navigationUtils = NavigationUtils(carContext) + var routeSelected = false private val backPressedCallback = object : OnBackPressedCallback(false) { override fun handleOnBackPressed() { invalidate() @@ -63,7 +67,6 @@ class RoutePreviewScreen( override fun onGetTemplate(): Template { - val itemListBuilder = ItemList.Builder() if (carContext.getCarAppApiLevel() > CarAppApiLevels.LEVEL_1) { val listLimit = min( @@ -79,12 +82,16 @@ class RoutePreviewScreen( } } - + val street = if (destination.street.isNullOrEmpty()) { + carContext.getString((R.string.route_preview)) + } else { + destination.street.toString() + } val header = Header.Builder() .setStartHeaderAction(Action.BACK) - .setTitle(carContext.getString(R.string.route_preview)) + .setTitle(street) - if (routeModel.route.routes.size == 1) { + if (routeType == RoutePreviewType.SINGLE_ROUTE) { header.addEndHeaderAction( favoriteAction() ) @@ -99,17 +106,8 @@ class RoutePreviewScreen( CarText.Builder("Wait") .build() } - if (routeModel.route.routes.size == 1) { - val timer = object : CountDownTimer(5000, 1000) { - override fun onTick(millisUntilFinished: Long) {} - override fun onFinish() { - onNavigate(0) - } - } - timer.start() - } - val content = if (routeModel.route.routes.size > 1) { + val content = if (routeType == RoutePreviewType.MULTI_ROUTE) { ListTemplate.Builder() .setHeader(header.build()) .setSingleList(itemListBuilder.build()) @@ -120,26 +118,63 @@ class RoutePreviewScreen( carContext, R.drawable.navigation_48px ) ).build() + val selectRouteIcon: CarIcon = CarIcon.Builder( + IconCompat.createWithResource( + carContext, R.drawable.alt_route_48px + ) + ).build() val navigateAction = Action.Builder() .setFlags(FLAG_DEFAULT) .setIcon(navigateActionIcon) - .setOnClickListener { this.onNavigate(0) } + .setOnClickListener { onNavigate(routeModel.navState.currentRouteIndex) } + .build() + val selectRouteAction = Action.Builder() + .setIcon(selectRouteIcon) + .setOnClickListener { + routeType = RoutePreviewType.MULTI_ROUTE + invalidate() + } .build() MessageTemplate.Builder( message ) .setHeader(header.build()) .addAction(navigateAction) + .addAction(selectRouteAction) .setLoading(message.toString() == "Wait") .build() } - return MapWithContentTemplate.Builder() + + + + val template = MapWithContentTemplate.Builder() .setContentTemplate(content) .setMapController( MapController.Builder().setMapActionStrip( getMapActionStrip() ).build() ) + if (routeType == RoutePreviewType.MULTI_ROUTE && !routeSelected) { + template.setActionStrip(createActionStripBuilder().build()) + } + return template.build() + } + + private fun createActionStripBuilder(): ActionStrip.Builder { + val actionStripBuilder: ActionStrip.Builder = ActionStrip.Builder() + actionStripBuilder.addAction( + navigateAction() + ) + return actionStripBuilder + } + + private fun navigateAction(): Action { + return Action.Builder() + .setIcon(routeModel.createCarIcon(carContext, R.drawable.navigation_48px)) + .setFlags(FLAG_DEFAULT) + .setOnClickListener { + onNavigate(routeModel.navState.currentRouteIndex) + } .build() } @@ -187,7 +222,7 @@ class RoutePreviewScreen( CarIcon.Builder( IconCompat.createWithResource( carContext, - R.drawable.ic_pan_24 + R.drawable.heart_minus_48px ) ) .build() @@ -230,7 +265,6 @@ class RoutePreviewScreen( street = it.street } } - val delay = (route.summary.trafficDelay / 60).toInt().toString() val row = Row.Builder() .setTitle(routeText) @@ -239,11 +273,27 @@ class RoutePreviewScreen( .addAction(navigateAction) if (route.summary.trafficDelay > 60) { - row.addText("$delay min") + row.addText(createDelay(route)) } return row.build() } + private fun createDelay(route: Routes): SpannableStringBuilder { + val delay = (route.summary.trafficDelay / 60) + val delayBuilder = SpannableStringBuilder() + delayBuilder.append( + " ", + DurationSpan.create(Duration.ofMinutes(delay.toLong())), + Spanned.SPAN_EXCLUSIVE_EXCLUSIVE + ) + delayBuilder.setSpan( + ForegroundCarColorSpan.create(CarColor.RED), + 0, + 1, + Spanned.SPAN_EXCLUSIVE_EXCLUSIVE + ) + return delayBuilder + } private fun onNavigate(index: Int) { destination.routeIndex = index setResult(destination) @@ -253,6 +303,8 @@ class RoutePreviewScreen( private fun onRouteSelected(index: Int) { routeModel.navState = routeModel.navState.copy(currentRouteIndex = index) surfaceRenderer.setPreviewRouteData(routeModel) + routeSelected = true + invalidate() } fun getMapActionStrip(): ActionStrip { @@ -276,3 +328,7 @@ class RoutePreviewScreen( .build() } } + +enum class RoutePreviewType { + SINGLE_ROUTE, MULTI_ROUTE +} diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverCallback.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverCallback.kt index 696bb09..89d2947 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverCallback.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverCallback.kt @@ -28,7 +28,11 @@ interface NavigationObserverCallback { /** Called when max speed is updated */ fun onMaxSpeedReceived(speed: Int) - + + /** Called when a preview route is received and navigation should start */ + fun onPreviewRouteReceived(route: String) + /** Called to request UI invalidation/refresh */ fun invalidateScreen() + } diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverManager.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverManager.kt index f9da4f0..f1535bc 100644 --- a/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverManager.kt +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/NavigationObserverManager.kt @@ -17,7 +17,8 @@ class NavigationObserverManager( val placeSearchObserver = PlaceSearchObserver(callback) val speedCameraObserver = SpeedCameraObserver(callback) val maxSpeedObserver = MaxSpeedObserver(callback) - + val previewObserver = PreviewRouteObserver(callback) + /** * Attaches all observers to the ViewModel. * Call this from NavigationScreen's init block or lifecycle method. @@ -29,6 +30,7 @@ class NavigationObserverManager( viewModel.placeLocation.observe(screen, placeSearchObserver) viewModel.speedCameras.observe(screen, speedCameraObserver) viewModel.maxSpeed.observe(screen, maxSpeedObserver) + viewModel.previewRoute.observe(screen, previewObserver) } /** diff --git a/common/car/src/main/java/com/kouros/navigation/car/screen/observers/PreviewRouteObserver.kt b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/PreviewRouteObserver.kt new file mode 100644 index 0000000..7a35841 --- /dev/null +++ b/common/car/src/main/java/com/kouros/navigation/car/screen/observers/PreviewRouteObserver.kt @@ -0,0 +1,14 @@ +package com.kouros.navigation.car.screen.observers + +import androidx.lifecycle.Observer + +class PreviewRouteObserver( + private val callback: NavigationObserverCallback +) : Observer { + + override fun onChanged(value: String) { + if (value.isNotEmpty()) { + callback.onPreviewRouteReceived(value) + } + } +} \ No newline at end of file diff --git a/common/data/src/main/java/com/kouros/navigation/data/tomtom/TomTomRepository.kt b/common/data/src/main/java/com/kouros/navigation/data/tomtom/TomTomRepository.kt index 227e22a..014de13 100644 --- a/common/data/src/main/java/com/kouros/navigation/data/tomtom/TomTomRepository.kt +++ b/common/data/src/main/java/com/kouros/navigation/data/tomtom/TomTomRepository.kt @@ -33,7 +33,9 @@ class TomTomRepository : NavigationRepository() { searchFilter: SearchFilter ): String { if (useAsset) { - val routeJson = context.resources.openRawResource(R.raw.tomom_routing) + val resourceId: Int = context.resources + .getIdentifier("tomtom_routing", "raw", context.packageName) + val routeJson = context.resources.openRawResource(resourceId) val routeJsonString = routeJson.bufferedReader().use { it.readText() } return routeJsonString } @@ -75,7 +77,9 @@ class TomTomRepository : NavigationRepository() { } val bbox = calculateSquareRadius(location.latitude, location.longitude, 15.0) return if (useAssetTraffic) { - val trafficJson = context.resources.openRawResource(R.raw.tomtom_traffic) + val resourceId: Int = context.resources + .getIdentifier("tomtom_traffic", "raw", context.packageName) + val trafficJson = context.resources.openRawResource(resourceId) trafficJson.bufferedReader().use { it.readText() } } else { val trafficResult = fetchUrl( diff --git a/common/data/src/main/res/drawable/alt_route_48px.xml b/common/data/src/main/res/drawable/alt_route_48px.xml new file mode 100644 index 0000000..4b66ed6 --- /dev/null +++ b/common/data/src/main/res/drawable/alt_route_48px.xml @@ -0,0 +1,11 @@ + + + diff --git a/common/data/src/main/res/drawable/heart_minus_48px.xml b/common/data/src/main/res/drawable/heart_minus_48px.xml new file mode 100644 index 0000000..0fe86e5 --- /dev/null +++ b/common/data/src/main/res/drawable/heart_minus_48px.xml @@ -0,0 +1,10 @@ + + + diff --git a/common/data/src/main/res/drawable/heart_plus_48px.xml b/common/data/src/main/res/drawable/heart_plus_48px.xml new file mode 100644 index 0000000..c6f4016 --- /dev/null +++ b/common/data/src/main/res/drawable/heart_plus_48px.xml @@ -0,0 +1,10 @@ + + + diff --git a/common/data/src/main/res/drawable/keyboard_arrow_up_24px.xml b/common/data/src/main/res/drawable/keyboard_arrow_up_24px.xml new file mode 100644 index 0000000..1333cf5 --- /dev/null +++ b/common/data/src/main/res/drawable/keyboard_arrow_up_24px.xml @@ -0,0 +1,10 @@ + + + diff --git a/common/data/src/main/res/raw/hv.gpx b/common/data/src/main/res/raw/hv.gpx deleted file mode 100644 index d205388..0000000 --- a/common/data/src/main/res/raw/hv.gpx +++ /dev/null @@ -1,693 +0,0 @@ - - - - - - - - - - - - - - - -GPS Logger 20260101-110217 -H - -car - - - - Track 20260101-110217 - - 549.4920.00015 - 549.4920.00013 - 548.4920.19017 - 549.4920.03014 - 549.4920.00016 - 549.4920.00014 - 549.4920.01013 - 549.4920.00013 - 549.4920.13015 - 552.4925.16018 - 555.4924.83019 - 555.4924.76018 - 554.4924.06017 - 549.4924.72015 - 546.4926.41014 - 546.4926.51011 - 544.4926.37015 - 544.4926.27015 - 543.4925.74018 - 542.4914.34015 - 540.4913.69015 - 536.4913.99017 - 534.4916.6808 - 535.4916.46012 - 536.4917.57018 - 535.4918.0309 - 535.4917.08011 - 535.4918.02012 - 535.4917.07014 - 535.4915.49014 - 534.4916.86017 - 533.4913.88020 - 532.4916.05020 - 532.4919.03020 - 532.49110.04019 - 532.49110.47016 - 533.49110.89017 - 533.49211.43018 - 533.49211.55019 - 533.49211.99022 - 532.49212.11022 - 532.49212.26021 - 531.49212.75020 - 531.49212.99018 - 531.49213.31019 - 531.49213.51019 - 530.49213.78021 - 530.49313.69019 - 530.49313.05012 - 530.49312.83016 - 530.49313.67015 - 530.49312.79018 - 531.49313.26017 - 531.49313.51016 - 530.49313.09017 - 531.49413.43018 - 531.49413.28019 - 531.49413.14023 - 531.49413.24021 - 532.49413.06020 - 532.49413.07018 - 532.49412.99018 - 532.49412.85021 - 532.49412.70019 - 531.49512.63020 - 531.49512.66014 - 531.49512.91015 - 531.49513.06017 - 530.49513.19016 - 530.49513.06014 - 529.49513.17016 - 529.49513.26019 - 529.49513.23017 - 528.49613.23019 - 528.49613.23019 - 528.49612.76020 - 528.49613.17022 - 527.49613.20022 - 527.49613.32018 - 527.49613.13018 - 527.49613.19018 - 527.49613.04016 - 527.49713.36018 - 527.49713.19017 - 527.49712.71020 - 527.49713.13019 - 527.49712.86017 - 527.49713.25018 - 527.49713.28017 - 527.49712.85018 - 527.49812.89021 - 527.49813.46019 - 527.49813.45019 - 527.49813.77020 - 528.49814.20021 - 528.49813.57021 - 529.49813.14021 - 529.49812.86023 - 528.49812.33023 - 528.49911.63021 - 528.49912.41017 - 528.49911.26021 - 529.49910.12023 - 530.4998.59020 - 530.4996.50021 - 530.4992.60024 - 531.4990.01025 - 531.4990.00023 - 531.4990.00029 - 530.4990.65029 - 529.4996.94029 - 529.5008.99028 - 530.50010.67028 - 530.50011.18026 - 531.50011.72029 - 531.50011.63027 - 531.50012.42022 - 532.50012.77022 - 532.50013.16022 - 533.50113.27024 - 533.50113.40020 - 533.50113.39018 - 533.50113.53017 - 533.50113.61017 - 533.50113.74019 - 533.50113.78017 - 533.50213.81019 - 533.50213.96018 - 532.50214.05020 - 533.50213.85019 - 532.50213.48019 - 532.50213.49020 - 531.50213.61017 - 532.50314.29019 - 532.50313.97020 - 533.50313.70022 - 532.50313.60020 - 532.50313.68017 - 532.50314.13019 - 531.50314.07018 - 531.50413.70020 - 531.50413.25020 - 530.50411.94019 - 530.50411.03017 - 530.50410.45016 - 530.5048.31019 - 530.5045.75019 - 530.5054.66021 - 529.5056.82021 - 529.5056.08023 - 528.5057.28021 - 519.5058.11019 - 518.50510.08014 - 518.50510.98015 - 518.50511.66015 - 518.50512.08020 - 518.50512.59013 - 518.50513.11017 - 519.50413.20018 - 520.50413.02018 - 520.50413.14017 - 520.50413.12018 - 521.50413.18016 - 521.50413.27016 - 521.50413.39016 - 521.50413.49021 - 522.50413.53016 - 522.50413.59019 - 522.50413.52022 - 522.50413.43022 - 522.50413.30024 - 522.50412.39022 - 523.50412.06023 - 522.50411.52019 - 523.50411.40018 - 522.50410.86018 - 523.5049.47018 - 523.5047.81014 - 522.5045.82018 - 523.5041.86018 - 522.5040.01017 - 522.5040.00018 - 522.5040.05018 - 523.5037.83022 - 524.5039.63023 - 524.50310.61023 - 524.50311.18022 - 525.50311.73022 - 525.50312.31021 - 525.50312.61020 - 525.50312.85023 - 525.50312.99021 - 526.50313.09020 - 526.50313.03018 - 526.50312.68017 - 527.50312.23019 - 527.50311.83016 - 527.50311.44018 - 528.50310.90021 - 529.50310.28021 - 529.5039.65021 - 529.5037.62014 - 529.5036.29015 - 529.5037.25019 - 528.5039.06020 - 528.50310.36017 - 528.50311.38019 - 528.50312.06021 - 527.50312.32018 - 527.50312.46019 - 527.50312.57020 - 526.50312.71018 - 526.50312.86016 - 526.50312.88022 - 525.50312.79020 - 525.50312.65019 - 524.50312.63019 - 524.50312.75018 - 523.50312.77020 - 523.50312.74019 - 523.50312.63019 - 523.50312.29019 - 522.50312.07017 - 522.50312.17018 - 522.50312.43020 - 522.50312.74023 - 521.50312.84023 - 521.50313.05023 - 521.50312.87022 - 521.50312.78022 - 521.50312.65023 - 521.50312.56018 - 521.50312.49020 - 521.50312.60019 - 521.50312.57018 - 521.50312.69019 - 521.50312.75016 - 520.50312.52020 - 520.50312.14021 - 520.50311.65022 - 520.50310.42019 - 521.5038.96022 - 521.5038.64015 - 521.5038.45015 - 521.50310.09013 - 521.50310.85016 - 520.50311.29013 - 520.50311.56015 - 519.50311.89015 - 519.50312.33016 - 519.50312.78014 - 518.50313.15012 - 517.50313.34014 - 517.50313.42016 - 516.50313.47017 - 516.50313.36014 - 516.50313.34014 - 515.50313.31016 - 516.50313.17015 - 516.50212.99015 - 515.50212.80017 - 515.50212.78013 - 515.50212.84014 - 515.50212.98015 - 514.50213.19015 - 514.50213.42014 - 514.50213.47011 - 514.50213.5804 - 514.50213.750 - 514.50213.9101 - 514.50214.100 - 514.50114.360 - 514.50114.630 - 514.50114.840 - 514.50115.040 - 514.50115.190 - 514.50115.3501 - 514.50115.8304 - 514.50114.56015 - 514.50014.32013 - 514.50014.27012 - 514.50014.28014 - 514.50014.42015 - 514.50014.68014 - 513.50014.86013 - 512.50015.06012 - 511.50015.02013 - 511.50015.04016 - 511.50014.9308 - 510.50014.9003 - 510.49914.890 - 510.49914.880 - 509.49914.950 - 509.49915.150 - 508.49915.380 - 508.49915.600 - 507.49915.830 - 507.49916.040 - 506.49916.150 - 531.49515.44015 - 525.49415.08021 - 519.49414.93020 - 516.49414.96020 - 514.49414.85020 - 514.49414.87023 - 513.49414.16022 - 513.49414.26021 - 514.49414.64020 - 513.49414.86015 - 511.49315.20017 - 509.49315.48017 - 508.49316.09015 - 507.49315.98015 - 506.49316.61015 - 505.49316.5809 - 500.49215.7007 - 501.49115.96010 - 508.49114.86011 - 509.49115.34013 - 510.49115.44013 - 510.49115.34015 - 509.49015.22013 - 509.49014.12017 - 507.49015.36014 - 507.49015.30012 - 506.49015.56012 - 506.49015.64012 - 504.49015.95016 - 504.48916.32017 - 503.48916.41015 - 503.48916.60016 - 504.48916.60015 - 503.48916.61014 - 502.48816.58020 - 502.48816.65017 - 503.48817.05016 - 503.48816.61018 - 503.48816.68015 - 504.48716.60013 - 503.48716.64015 - 503.48716.75016 - 503.48716.71014 - 503.48716.70017 - 502.48716.65014 - 504.48616.54017 - 504.48616.43017 - 504.48616.34018 - 504.48616.33020 - 504.48616.40018 - 504.48516.34016 - 504.48516.33013 - 505.48516.40018 - 505.48516.46015 - 505.48516.53018 - 505.48416.67018 - 505.48416.73015 - 506.48416.67019 - 506.48416.63018 - 506.48416.53017 - 506.48416.49020 - 506.48316.47019 - 505.48316.22019 - 506.48316.06022 - 506.48315.93022 - 506.48315.93023 - 506.48215.86023 - 506.48215.70019 - 506.48215.51021 - 506.48215.60020 - 505.48215.62015 - 505.48215.69018 - 505.48115.75021 - 505.48115.75018 - 504.48115.88020 - 504.48115.95017 - 503.48116.14020 - 502.48116.24025 - 502.48016.39022 - 502.48016.46021 - 502.48016.49018 - 501.48016.11021 - 501.48016.22021 - 500.48016.41027 - 501.48016.19024 - 501.47916.33023 - 500.47916.34019 - 500.47916.94018 - 499.47917.00020 - 499.47917.08020 - 499.47917.13019 - 499.47917.24020 - 498.47817.03018 - 497.47817.09016 - 497.47817.09020 - 496.47816.93018 - 496.47816.69015 - 496.47816.59019 - 496.47716.37015 - 496.47716.25020 - 496.47715.56016 - 496.47714.87017 - 496.47714.24019 - 496.47713.60018 - 495.47613.25014 - 495.47613.34016 - 495.47613.81019 - 495.47614.07014 - 495.47613.87015 - 495.47613.68014 - 495.47613.65018 - 496.47513.71019 - 496.47513.64021 - 496.47513.67019 - 496.47512.00019 - 497.47510.55020 - 497.47510.47022 - 497.47511.60020 - 497.47413.22019 - 498.47414.71018 - 498.47416.05020 - 499.47416.28021 - 499.47416.61019 - 499.47416.87016 - 499.47317.04017 - 498.47317.02021 - 497.47316.86019 - 496.47316.83021 - 495.47316.90020 - 494.47316.97022 - 494.47317.09019 - 493.47317.13019 - 493.47317.21010 - 493.47217.2303 - 492.47217.220 - 492.47217.240 - 492.47217.270 - 492.47217.360 - 492.47217.450 - 492.47217.590 - 491.47217.800 - 491.47217.920 - 491.47217.31012 - 491.47217.25016 - 490.47216.99020 - 489.47216.81018 - 489.47316.73020 - 489.47316.67013 - 488.47316.52016 - 489.47316.58018 - 489.47316.60016 - 488.47316.62017 - 488.47316.65017 - 488.47316.56016 - 487.47316.51017 - 486.47316.43020 - 486.47316.42019 - 486.47316.40018 - 486.47316.42020 - 486.47316.41019 - 486.47316.39020 - 486.47316.44019 - 486.47316.43021 - 486.47316.40020 - 487.47316.46020 - 488.47316.37020 - 488.47316.31018 - 487.47316.24017 - 487.47316.26016 - 487.47316.34020 - 487.47316.35017 - 487.47316.48018 - 487.47316.65015 - 486.47216.77021 - 487.47217.15019 - 486.47217.13017 - 486.47217.19019 - 486.47216.93017 - 485.47216.93017 - 485.47216.90018 - 485.47116.99015 - 485.47117.04014 - 485.47117.07016 - 485.47117.14014 - 484.47116.96013 - 485.47016.89013 - 485.47016.70013 - 484.47016.58011 - 484.47016.18010 - 484.47015.91011 - 484.46915.64011 - 484.46915.5605 - 484.46915.5101 - 484.46915.270 - 484.46915.020 - 485.46914.980 - 486.46814.90012 - 487.46814.04010 - 487.46813.56011 - 488.46813.37012 - 489.46813.20012 - 488.46812.87015 - 488.46812.88016 - 488.46712.98019 - 488.46713.11020 - 489.46713.31017 - 489.46713.51019 - 489.46713.70018 - 490.46713.63019 - 490.46613.66019 - 490.46613.60020 - 491.46613.64017 - 491.46613.57019 - 492.46613.71018 - 492.46613.69021 - 491.46613.68017 - 490.46513.62022 - 489.46513.51021 - 489.46513.62019 - 489.46513.75021 - 489.46513.86020 - 489.46513.78010 - 489.46413.98013 - 489.46413.8309 - 490.46414.14013 - 491.46414.30018 - 492.46414.46015 - 493.46414.69015 - 494.46314.92017 - 494.46315.08016 - 494.46315.20015 - 495.46315.12013 - 495.46314.92011 - 495.46314.7408 - 495.46214.5009 - 495.46214.22012 - 495.46214.22012 - 495.46214.08011 - 494.46213.9008 - 494.46213.86011 - 494.46213.88012 - 494.46113.75018 - 494.46113.53015 - 494.46113.38015 - 494.46113.36016 - 494.46113.31013 - 494.46113.19017 - 494.46013.08018 - 494.46012.84014 - 495.46012.99017 - 495.46013.02017 - 495.46012.92018 - 495.46013.01019 - 496.45913.03019 - 496.45912.91016 - 496.45912.45016 - 496.45912.14017 - 495.45911.80015 - 495.45911.40013 - 496.45911.02016 - 496.45910.47014 - 496.4588.12016 - 497.4585.08015 - 497.4580.01019 - 497.4580.00022 - 497.4580.00015 - 497.4580.01020 - 497.4580.00020 - 497.4580.01020 - 501.4584.50019 - 500.4587.57021 - 500.4589.97024 - 500.45810.93023 - 500.45711.53019 - 499.45711.95020 - 499.45712.62020 - 498.45712.90021 - 498.45713.08022 - 498.45713.10021 - 498.45713.00022 - 497.45712.84023 - 497.45712.74023 - 497.45712.94019 - 497.45712.98019 - 496.45713.04020 - 496.45713.02018 - 496.45712.99016 - 496.45712.77013 - 495.45712.95019 - 495.45613.01021 - 495.45613.03019 - 495.45613.09021 - 494.45613.18021 - 494.45613.22019 - 493.45613.18016 - 493.45613.31015 - 493.45613.50014 - 493.45613.66015 - 493.45613.53017 - 493.45613.50019 - 493.45613.34025 - 492.45613.22023 - 492.45613.32019 - 492.45613.20015 - 493.45613.52016 - 492.45513.44018 - 493.45513.43019 - 492.45513.54019 - 492.45513.88018 - 492.45514.10017 - 491.45514.13018 - 490.45513.94017 - 490.45513.77019 - 490.45513.61019 - 490.45513.39019 - 490.45513.19026 - 491.45513.04018 - 491.45512.84018 - 491.45512.51017 - 491.45511.62017 - 491.45510.69017 - 491.4548.35019 - 492.4544.63018 - 494.4543.62021 - 494.4544.09022 - 494.4545.68023 - 494.4548.18016 - 495.4549.63015 - 495.4539.90018 - 496.4539.61015 - 496.4538.64017 - 497.4535.77013 - 497.4533.90018 - 497.4536.19015 - 497.4537.15014 - 497.4537.91014 - 498.4527.99013 - 498.4527.95017 - 498.4527.32020 - 498.4526.05014 - 498.4524.15017 - 498.4525.16021 - 499.4526.32017 - 499.4526.10019 - 499.4526.54018 - 499.4526.95015 - 499.4517.29013 - 500.4517.77015 - 500.4517.39019 - 499.4517.37017 - 500.4517.12014 - 501.4516.49017 - 501.4505.12016 - 501.4505.44014 - 502.4507.18014 - 502.4507.35018 - 502.4507.04017 - 502.4506.17016 - 501.4504.89016 - 501.4493.97014 - 502.4491.34019 - - - - - \ No newline at end of file diff --git a/common/data/src/main/res/raw/tomom_routing.json b/common/data/src/main/res/raw/tomom_routing.json deleted file mode 100644 index 3e93a2b..0000000 --- a/common/data/src/main/res/raw/tomom_routing.json +++ /dev/null @@ -1,627 +0,0 @@ -{ - "formatVersion": "0.0.12", - "report": { - "effectiveSettings": [ - { - "key": "avoid", - "value": "unpavedRoads" - }, - { - "key": "computeBestOrder", - "value": "false" - }, - { - "key": "computeTollAmounts", - "value": "none" - }, - { - "key": "computeTravelTimeFor", - "value": "none" - }, - { - "key": "contentType", - "value": "json" - }, - { - "key": "departAt", - "value": "2026-03-04T14:38:14.253Z" - }, - { - "key": "guidanceVersion", - "value": "1" - }, - { - "key": "includeTollPaymentTypes", - "value": "none" - }, - { - "key": "instructionsType", - "value": "text" - }, - { - "key": "language", - "value": "de-DE" - }, - { - "key": "locations", - "value": "48.18575,11.57937:48.11648,11.59432" - }, - { - "key": "maxAlternatives", - "value": "0" - }, - { - "key": "maxPathAlternatives", - "value": "0" - }, - { - "key": "routeRepresentation", - "value": "encodedPolyline" - }, - { - "key": "routeType", - "value": "eco" - }, - { - "key": "sectionType", - "value": "lanes" - }, - { - "key": "sectionType", - "value": "traffic" - }, - { - "key": "traffic", - "value": "true" - }, - { - "key": "travelMode", - "value": "car" - }, - { - "key": "vehicleAxleWeight", - "value": "0" - }, - { - "key": "vehicleCommercial", - "value": "false" - }, - { - "key": "vehicleEngineType", - "value": "combustion" - }, - { - "key": "vehicleHeight", - "value": "0.00" - }, - { - "key": "vehicleLength", - "value": "0.00" - }, - { - "key": "vehicleMaxSpeed", - "value": "120" - }, - { - "key": "vehicleNumberOfAxles", - "value": "0" - }, - { - "key": "vehicleWeight", - "value": "0" - }, - { - "key": "vehicleWidth", - "value": "0.00" - } - ] - }, - "routes": [ - { - "summary": { - "lengthInMeters": 11122, - "travelTimeInSeconds": 1483, - "trafficDelayInSeconds": 175, - "trafficLengthInMeters": 2191, - "departureTime": "2026-03-04T15:38:14+01:00", - "arrivalTime": "2026-03-04T16:02:57+01:00" - }, - "legs": [ - { - "summary": { - "lengthInMeters": 11122, - "travelTimeInSeconds": 1483, - "trafficDelayInSeconds": 175, - "trafficLengthInMeters": 2191, - "departureTime": "2026-03-04T15:38:14+01:00", - "arrivalTime": "2026-03-04T16:02:57+01:00" - }, - "encodedPolyline": "sfbeH_rteAE|DQEy@GQ?wDQFkEH{G?M?sA@kB?_FAeC?o@?[@_@\\Ab@CVAz@CJA@?dBGhAGjAExAGlBEvBKdCKTAfCKLAv@ELA|AGnAGt@ClCKjDQpBIf@BXDPDPBF@ZB?S@SAYAUKi@Go@Cc@BgBBs@Bg@JyAJiAXqBDWNs@TaA\\mAFa@Po@`BwF?YL]FSFSl@iB^kALc@L]Ro@f@yAf@{AFQNe@dAoCdBgEx@qBTi@BITe@L[L_@^}@HSXu@pB}El@eAb@e@f@[h@QZCRAL?j@HRFh@Vf@XLJhAn@lAv@TLtAz@r@`@bAn@pAv@f@X~@j@z@h@vBpA`@VHDFFJFf@X`CzApAh@f@L`@Fz@@f@AXEVEVEhA[h@Yn@e@PQFEJKRWV[PW`@w@t@}AHQN]~BiFP]`AoBh@aADGTa@t@aAt@{@PQJKJGFG@Cd@]XSxDmCf@a@n@o@TY\\g@LQHMJSLUP[f@iAPg@b@yAFODMNi@FS|@qCVaAHUHUn@wBHYh@eBpAkEjBiGfAeDj@yADMFQd@sAf@kAJUh@qAf@eAt@sAn@iALSN[p@kAVc@JOLSj@w@z@}@x@q@pAu@p@_@j@Sl@MLCRCb@E`@?^?L@`ABz@?N@~AFdADJ@rAH`DVpCVrAJd@BfHp@zGl@pAJ|ALnGp@jEh@fBJpAFF?P@N@ZCtC]r@GJCFCLCD?TEVEXGhAYzAg@NGv@]`@QJEvB_AXMVK\\Qb@Qn@QJCNAZC^ENA`@FnBb@xEtA^H^JnCl@z@r@`@Pr@TtBlA~C`Bn@\\xAl@PF`@LrAVlCh@bBLl@BlBJdG\\RDjCHn@?pB?xB?R@`@@GxAC^?ZInBIfCAvC?r@@dD@n@@b@@^D`C?TDxAFbBHdB@VHp@RjAJb@NNH`@VlBFf@PzARhBFd@@LRbBFh@\\nC@FNhAb@lEj@tDPpABTBRZlBTdBXjBn@xEBLDTRpAR~@l@jDj@Qv@I~ER", - "encodedPolylinePrecision": 5 - } - ], - "sections": [ - { - "startPointIndex": 66, - "endPointIndex": 143, - "sectionType": "TRAFFIC", - "simpleCategory": "JAM", - "effectiveSpeedInKmh": 26, - "delayInSeconds": 175, - "magnitudeOfDelay": 1, - "tec": { - "causes": [ - { - "mainCauseCode": 1 - } - ], - "effectCode": 4 - }, - "eventId": "TTL41056710392017000" - }, - { - "lanes": [ - { - "directions": [ - "SLIGHT_LEFT" - ], - "follow": "SLIGHT_LEFT" - }, - { - "directions": [ - "STRAIGHT" - ] - }, - { - "directions": [ - "STRAIGHT" - ] - }, - { - "directions": [ - "STRAIGHT" - ] - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "SINGLE_SOLID", - "LONG_DASHED", - "LONG_DASHED", - "SINGLE_SOLID" - ], - "startPointIndex": 42, - "endPointIndex": 45, - "sectionType": "LANES" - }, - { - "lanes": [ - { - "directions": [ - "STRAIGHT" - ], - "follow": "STRAIGHT" - }, - { - "directions": [ - "SLIGHT_RIGHT" - ] - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "SHORT_DASHED", - "SINGLE_SOLID" - ], - "startPointIndex": 61, - "endPointIndex": 62, - "sectionType": "LANES" - }, - { - "lanes": [ - { - "directions": [ - "SLIGHT_LEFT" - ], - "follow": "SLIGHT_LEFT" - }, - { - "directions": [ - "SLIGHT_LEFT" - ], - "follow": "SLIGHT_LEFT" - }, - { - "directions": [ - "SLIGHT_RIGHT" - ] - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "LONG_DASHED", - "SHORT_DASHED", - "SINGLE_SOLID" - ], - "startPointIndex": 74, - "endPointIndex": 75, - "sectionType": "LANES" - }, - { - "lanes": [ - { - "directions": [ - "STRAIGHT" - ] - }, - { - "directions": [ - "SLIGHT_RIGHT" - ], - "follow": "SLIGHT_RIGHT" - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "LONG_DASHED", - "SINGLE_SOLID" - ], - "startPointIndex": 265, - "endPointIndex": 266, - "sectionType": "LANES" - }, - { - "lanes": [ - { - "directions": [ - "LEFT" - ] - }, - { - "directions": [ - "STRAIGHT" - ] - }, - { - "directions": [ - "STRAIGHT" - ] - }, - { - "directions": [ - "RIGHT" - ], - "follow": "RIGHT" - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "SINGLE_SOLID", - "SINGLE_SOLID", - "SINGLE_SOLID", - "SINGLE_SOLID" - ], - "startPointIndex": 287, - "endPointIndex": 288, - "sectionType": "LANES" - }, - { - "lanes": [ - { - "directions": [ - "LEFT" - ] - }, - { - "directions": [ - "STRAIGHT" - ], - "follow": "STRAIGHT" - }, - { - "directions": [ - "STRAIGHT" - ], - "follow": "STRAIGHT" - }, - { - "directions": [ - "RIGHT" - ] - } - ], - "laneSeparators": [ - "SINGLE_SOLID", - "SHORT_DASHED", - "LONG_DASHED", - "SHORT_DASHED", - "SINGLE_SOLID" - ], - "startPointIndex": 302, - "endPointIndex": 304, - "sectionType": "LANES" - } - ], - "guidance": { - "instructions": [ - { - "routeOffsetInMeters": 0, - "travelTimeInSeconds": 0, - "point": { - "latitude": 48.18554, - "longitude": 11.57936 - }, - "pointIndex": 0, - "instructionType": "LOCATION_DEPARTURE", - "street": "Vogelhartstraße", - "countryCode": "DEU", - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "DEPART", - "message": "Abfahrt von Vogelhartstraße" - }, - { - "routeOffsetInMeters": 71, - "travelTimeInSeconds": 16, - "point": { - "latitude": 48.18557, - "longitude": 11.57841 - }, - "pointIndex": 1, - "instructionType": "TURN", - "street": "Silcherstraße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 90, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "TURN_RIGHT", - "message": "Biegen Sie rechts ab auf Silcherstraße" - }, - { - "routeOffsetInMeters": 225, - "travelTimeInSeconds": 61, - "point": { - "latitude": 48.18696, - "longitude": 11.57857 - }, - "pointIndex": 5, - "instructionType": "TURN", - "street": "Schmalkaldener Straße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 90, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "TURN_RIGHT", - "message": "Biegen Sie rechts ab auf Schmalkaldener Straße" - }, - { - "routeOffsetInMeters": 657, - "travelTimeInSeconds": 135, - "point": { - "latitude": 48.18686, - "longitude": 11.58437 - }, - "pointIndex": 15, - "instructionType": "TURN", - "roadNumbers": [ - "B13" - ], - "street": "Ingolstädter Straße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 90, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "TURN_RIGHT", - "message": "Biegen Sie rechts ab auf Ingolstädter Straße/B13" - }, - { - "routeOffsetInMeters": 1719, - "travelTimeInSeconds": 291, - "point": { - "latitude": 48.17733, - "longitude": 11.58503 - }, - "pointIndex": 45, - "instructionType": "TURN", - "roadNumbers": [ - "B2R" - ], - "street": "Schenkendorfstraße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": -90, - "possibleCombineWithNext": true, - "drivingSide": "RIGHT", - "maneuver": "TURN_LEFT", - "message": "Biegen Sie links ab auf Schenkendorfstraße/B2R", - "combinedMessage": "Biegen Sie links ab auf Schenkendorfstraße/B2R dann bleiben Sie bei Schenkendorfstraße/B2R Richtung Messe / ICM links" - }, - { - "routeOffsetInMeters": 2074, - "travelTimeInSeconds": 333, - "point": { - "latitude": 48.17678, - "longitude": 11.58957 - }, - "pointIndex": 62, - "instructionType": "TURN", - "roadNumbers": [ - "B2R" - ], - "street": "Schenkendorfstraße", - "countryCode": "DEU", - "signpostText": "Messe / ICM", - "junctionType": "BIFURCATION", - "turnAngleInDecimalDegrees": -45, - "possibleCombineWithNext": true, - "drivingSide": "RIGHT", - "maneuver": "KEEP_LEFT", - "message": "Bleiben Sie bei Schenkendorfstraße/B2R Richtung Messe / ICM links", - "combinedMessage": "Bleiben Sie bei Schenkendorfstraße/B2R Richtung Messe / ICM links dann bleiben Sie bei Schenkendorfstraße/B2R Richtung Passau links" - }, - { - "routeOffsetInMeters": 2425, - "travelTimeInSeconds": 371, - "point": { - "latitude": 48.17518, - "longitude": 11.59363 - }, - "pointIndex": 75, - "instructionType": "TURN", - "roadNumbers": [ - "B2R" - ], - "street": "Schenkendorfstraße", - "countryCode": "DEU", - "signpostText": "Passau", - "junctionType": "BIFURCATION", - "turnAngleInDecimalDegrees": -45, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "KEEP_LEFT", - "message": "Bleiben Sie bei Schenkendorfstraße/B2R Richtung Passau links" - }, - { - "routeOffsetInMeters": 2780, - "travelTimeInSeconds": 436, - "point": { - "latitude": 48.17329, - "longitude": 11.59747 - }, - "pointIndex": 86, - "instructionType": "DIRECTION_INFO", - "roadNumbers": [ - "B2R" - ], - "street": "Isarring", - "countryCode": "DEU", - "signpostText": "München-Ost", - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "FOLLOW", - "message": "Folgen Sie Isarring/B2R Richtung München-Ost" - }, - { - "routeOffsetInMeters": 8431, - "travelTimeInSeconds": 1014, - "point": { - "latitude": 48.13017, - "longitude": 11.6154 - }, - "pointIndex": 266, - "instructionType": "TURN", - "street": "Ampfingstraße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 45, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "BEAR_RIGHT", - "message": "Halten Sie sich rechts bei Ampfingstraße" - }, - { - "routeOffsetInMeters": 9494, - "travelTimeInSeconds": 1197, - "point": { - "latitude": 48.12089, - "longitude": 11.61285 - }, - "pointIndex": 288, - "instructionType": "TURN", - "street": "Anzinger Straße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 90, - "possibleCombineWithNext": true, - "drivingSide": "RIGHT", - "maneuver": "TURN_RIGHT", - "message": "Biegen Sie rechts ab auf Anzinger Straße", - "combinedMessage": "Biegen Sie rechts ab auf Anzinger Straße dann fahren Sie geradeaus weiter auf Sankt-Martin-Straße" - }, - { - "routeOffsetInMeters": 9990, - "travelTimeInSeconds": 1286, - "point": { - "latitude": 48.12087, - "longitude": 11.60621 - }, - "pointIndex": 304, - "instructionType": "TURN", - "street": "Sankt-Martin-Straße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": 0, - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "STRAIGHT", - "message": "Fahren Sie geradeaus weiter auf Sankt-Martin-Straße" - }, - { - "routeOffsetInMeters": 10940, - "travelTimeInSeconds": 1440, - "point": { - "latitude": 48.11811, - "longitude": 11.59417 - }, - "pointIndex": 335, - "instructionType": "TURN", - "street": "Hohenwaldeckstraße", - "countryCode": "DEU", - "junctionType": "REGULAR", - "turnAngleInDecimalDegrees": -90, - "possibleCombineWithNext": true, - "drivingSide": "RIGHT", - "maneuver": "TURN_LEFT", - "message": "Biegen Sie links ab auf Hohenwaldeckstraße", - "combinedMessage": "Biegen Sie links ab auf Hohenwaldeckstraße dann sie haben Hohenwaldeckstraße erreicht. Ihr Ziel liegt auf der linken Seite" - }, - { - "routeOffsetInMeters": 11122, - "travelTimeInSeconds": 1483, - "point": { - "latitude": 48.11649, - "longitude": 11.59421 - }, - "pointIndex": 338, - "instructionType": "LOCATION_ARRIVAL", - "street": "Hohenwaldeckstraße", - "countryCode": "DEU", - "possibleCombineWithNext": false, - "drivingSide": "RIGHT", - "maneuver": "ARRIVE_LEFT", - "message": "Sie haben Hohenwaldeckstraße erreicht. Ihr Ziel liegt auf der linken Seite" - } - ], - "instructionGroups": [ - { - "firstInstructionIndex": 0, - "lastInstructionIndex": 3, - "groupMessage": "Abfahrt von Vogelhartstraße. Fahren Sie auf die Ingolstädter Straße/B13", - "groupLengthInMeters": 1719 - }, - { - "firstInstructionIndex": 4, - "lastInstructionIndex": 7, - "groupMessage": "Fahren Sie auf die Schenkendorfstraße, Isarring/B2R in Richtung Messe / ICM, Passau, München-Ost", - "groupLengthInMeters": 6712 - }, - { - "firstInstructionIndex": 8, - "lastInstructionIndex": 10, - "groupMessage": "Fahren Sie auf die Ampfingstraße, Anzinger Straße, Sankt-Martin-Straße", - "groupLengthInMeters": 2509 - }, - { - "firstInstructionIndex": 11, - "lastInstructionIndex": 12, - "groupMessage": "Fahren Sie zu Ihrem Ziel in der Hohenwaldeckstraße", - "groupLengthInMeters": 182 - } - ] - } - } - ] -} \ No newline at end of file diff --git a/common/data/src/main/res/raw/tomtom_traffic b/common/data/src/main/res/raw/tomtom_traffic deleted file mode 100644 index e132d95..0000000 --- a/common/data/src/main/res/raw/tomtom_traffic +++ /dev/null @@ -1,6668 +0,0 @@ -{ - "incidents": [ - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.3759471083, 48.1315192747], - [11.3765103722, 48.1316131466], - [11.3769770766, 48.1316909628], - [11.3776717687, 48.1318062602], - [11.3786802793, 48.1319739195], - [11.3792113567, 48.1320610774], - [11.3794876242, 48.1321080129], - [11.379586866, 48.1321241242], - [11.3797182942, 48.1321710596], - [11.379779985, 48.1322059115], - [11.3798671568, 48.1322864119], - [11.3798752035, 48.1323185785], - [11.3798899556, 48.1323910232], - [11.3798604513, 48.1325197451], - [11.3796954954, 48.133042797], - [11.3796619678, 48.1331474067] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.3767651821, 48.068738183], - [11.3768107796, 48.0687958184], - [11.3768912459, 48.0688950698], - [11.3769328202, 48.068947384], - [11.3769502545, 48.0689674919], - [11.3769703711, 48.0689902883], - [11.3769904877, 48.0690117405], - [11.377007922, 48.0690251831], - [11.377033403, 48.0690412582], - [11.3770642484, 48.069055989], - [11.3770924116, 48.0690667431], - [11.3771245981, 48.0690747526], - [11.3771608079, 48.0690814739], - [11.3771997, 48.0690868509], - [11.3772546852, 48.069092228], - [11.3773096705, 48.0690962607], - [11.3774062301, 48.0691015817], - [11.3775497282, 48.0691042703], - [11.3776704276, 48.0689017911], - [11.3777146841, 48.068829369], - [11.3777401651, 48.0687864645], - [11.3777710105, 48.0687408155], - [11.377777716, 48.0687328059], - [11.3778018559, 48.0687019438], - [11.3778555001, 48.0686402754], - [11.3779252375, 48.0685665086], - [11.3779748584, 48.0685222597], - [11.3780204559, 48.0684819875], - [11.3780432547, 48.0684605351], - [11.3780808056, 48.0684162861], - [11.3781223799, 48.0683693485], - [11.3781559075, 48.0683264436], - [11.3781800474, 48.0682955813], - [11.3782108928, 48.0682526764], - [11.3782672191, 48.0681655222], - [11.3782953823, 48.0681145515], - [11.3783222044, 48.0680676136], - [11.3784053529, 48.0679187339], - [11.3784643615, 48.0678288906], - [11.3785045946, 48.0677779195], - [11.378572991, 48.0676921088], - [11.3786132241, 48.0676465148], - [11.3786843026, 48.0675727466], - [11.3787982965, 48.0674667711], - [11.3789431358, 48.0673420871], - [11.3790155555, 48.0672830498], - [11.3791228438, 48.0672065924], - [11.3792422021, 48.0671234693], - [11.3793280328, 48.067069809], - [11.3793696071, 48.0670456674], - [11.3794406856, 48.0670041058], - [11.3797504807, 48.06683377], - [11.3798255826, 48.0667935525], - [11.3799368943, 48.0667398918], - [11.3801098967, 48.0666675226], - [11.3802614415, 48.0666031072] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.3783315922, 48.0642562028], - [11.3783543909, 48.0642830345], - [11.3783825541, 48.0643192208], - [11.378406694, 48.0643554071], - [11.3784268106, 48.0643903049], - [11.378457656, 48.064450634], - [11.3784911836, 48.0645297842], - [11.3785260523, 48.0646263552], - [11.378586402, 48.0648234736], - [11.3786454106, 48.0649924717], - [11.3786963726, 48.0651198501], - [11.378752699, 48.0652365293], - [11.3788331652, 48.0653626187], - [11.3788586462, 48.0654028373], - [11.3788894916, 48.0654457446], - [11.378932407, 48.0654980623], - [11.3789780045, 48.0655517243], - [11.3790423776, 48.065612052], - [11.379112115, 48.0656737239], - [11.3792100156, 48.0657555609], - [11.3792650009, 48.0657984679], - [11.3793012107, 48.0658266431], - [11.3793682659, 48.0658708944], - [11.3795533384, 48.0659969262], - [11.379637828, 48.0660559651], - [11.3796861077, 48.0660894614], - [11.3797813261, 48.0661578545], - [11.379856428, 48.0662168931], - [11.3799114133, 48.0662624884], - [11.3799838329, 48.0663281925], - [11.3800508881, 48.0663885193], - [11.3801635409, 48.0664998743], - [11.3802118207, 48.0665495023], - [11.3802614415, 48.0666031072] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4001459981, 48.2512383233], - [11.4008393491, 48.2514971796] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4119799043, 48.175630919], - [11.4117371643, 48.1756872049], - [11.4115346576, 48.1757368393], - [11.4111631716, 48.1758347665], - [11.4110599066, 48.17586154], - [11.4104510451, 48.176066728], - [11.4102767015, 48.1761297766], - [11.4101425911, 48.1761847764], - [11.4097778107, 48.1763389879], - [11.4094492401, 48.1764878891], - [11.4091501738, 48.1766179536], - [11.4086217786, 48.1768580161], - [11.4085346068, 48.1768982593], - [11.4083911086, 48.1769639339], - [11.4083441699, 48.1769867383], - [11.4079525674, 48.1771785075], - [11.4078667367, 48.1772214333], - [11.4075381661, 48.1774038117], - [11.4074697698, 48.177442713], - [11.4072095955, 48.1775808796], - [11.4068743194, 48.1777511839], - [11.4066356028, 48.1778812453], - [11.4062171782, 48.1781373987], - [11.4057518149, 48.178457938], - [11.4054500664, 48.1786792123], - [11.405034324, 48.1789916999] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4138587917, 48.157892079], - [11.4151529575, 48.1583440859] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4151529575, 48.1583440859], - [11.4138587917, 48.157892079] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.3942961002, 48.1448860616], - [11.3942893947, 48.1449196185], - [11.3942397738, 48.1451502657], - [11.3941968585, 48.1453541224], - [11.3941740597, 48.1455083707], - [11.3941230977, 48.1459630034], - [11.3941123689, 48.1461359854], - [11.3941043223, 48.1462110951], - [11.3941056634, 48.1462821779], - [11.3941043223, 48.1463210469], - [11.3941029812, 48.1464699234], - [11.3941043223, 48.1468950746], - [11.3941566254, 48.1475119346], - [11.3942531849, 48.1481597135], - [11.3943028057, 48.148403768], - [11.3943913186, 48.1487672191], - [11.3944905604, 48.1491132194], - [11.3945991898, 48.149447194], - [11.3946260119, 48.1495329801], - [11.3947145248, 48.1497462145], - [11.394844612, 48.1500694478], - [11.3950591887, 48.1505214118], - [11.395204028, 48.1508124293], - [11.3953555728, 48.1510739186], - [11.3954387213, 48.1512227813], - [11.3955661262, 48.1514199593], - [11.3959094489, 48.1519362759], - [11.3960207606, 48.1520864782], - [11.3961226846, 48.1522259433], - [11.3962299729, 48.1523694343], - [11.3963922466, 48.1525719204], - [11.3966014589, 48.1528106415], - [11.3967583681, 48.1529943928], - [11.3969970847, 48.1532492167], - [11.3973618651, 48.1536327641], - [11.3977695609, 48.1540391234], - [11.3979734088, 48.1542335506], - [11.3982872272, 48.1545205769], - [11.3985809291, 48.1547914974], - [11.3988263512, 48.1550127621], - [11.3991227353, 48.1552850219], - [11.3992581869, 48.1554056904], - [11.3994043673, 48.1555398344], - [11.3994673992, 48.1555974844], - [11.4000306631, 48.156103079], - [11.4003136361, 48.1563552035], - [11.4007079209, 48.1567079184], - [11.4008527602, 48.1568339513], - [11.4009640718, 48.1569385685], - [11.4010700191, 48.157027082], - [11.4013489688, 48.1572711502], - [11.4015622044, 48.1574602533], - [11.4017311836, 48.1576131792], - [11.4018679763, 48.1577271324], - [11.4020047689, 48.157847851], - [11.4020691419, 48.1579028145], - [11.402197888, 48.158016823], - [11.4022340978, 48.1580490294], - [11.4023279751, 48.1581308313], - [11.4024728144, 48.1582622285], - [11.4027450586, 48.1585050048], - [11.4029287899, 48.1586726327], - [11.4031554366, 48.1588858851], - [11.4033794011, 48.1590830337], - [11.4060656334, 48.1612703484], - [11.4065444077, 48.1616297387], - [11.406817993, 48.1618550553], - [11.4073209072, 48.1622413339], - [11.4082663859, 48.1629225839], - [11.4085976387, 48.1631613127], - [11.4086807872, 48.1632229795], - [11.4087478424, 48.1632739678], - [11.4090053345, 48.1634576816], - [11.409320494, 48.1636615216], - [11.410000434, 48.1641376296], - [11.4109311605, 48.1647585871], - [11.4113670195, 48.1650307953], - [11.4115883017, 48.1651796734], - [11.4117720331, 48.1653030579], - [11.4121006037, 48.1655203079], - [11.4123192037, 48.1656504003], - [11.4123594368, 48.1656745515], - [11.4126504565, 48.1658743575], - [11.4130876566, 48.1661533242], - [11.4135221744, 48.1664255809], - [11.4137917365, 48.1666052583], - [11.4141095782, 48.1667890162], - [11.4144716764, 48.1670237019], - [11.4147895182, 48.1672302111], - [11.4150832201, 48.1674273836], - [11.4151529575, 48.1674702616], - [11.4152173305, 48.1675091705], - [11.4154077674, 48.167625841], - [11.4157349969, 48.1678403979], - [11.4160340632, 48.168049643], - [11.4162164534, 48.168167654], - [11.4163733626, 48.1682709064], - [11.4163921381, 48.168284323] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4244065786, 48.2547668166], - [11.4246479774, 48.2545508936], - [11.4247606302, 48.2544542888], - [11.4248585308, 48.2543738684], - [11.4249135161, 48.2543363091] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.423615327, 48.2587149935], - [11.4236850644, 48.2587525496], - [11.4238406325, 48.2588383761], - [11.4239975418, 48.2589134881], - [11.4241115356, 48.258964437], - [11.4242000485, 48.258997975], - [11.4243153835, 48.2590382095], - [11.4245192314, 48.2590998726], - [11.4250690843, 48.2592689015], - [11.4252166058, 48.2593211893], - [11.4253721739, 48.2593868698], - [11.425514331, 48.2594566239], - [11.4256015027, 48.2595075722], - [11.4256202782, 48.2595183422], - [11.4256806279, 48.2595585763], - [11.4257181788, 48.2595907189], - [11.4257543887, 48.2596188994], - [11.4257919396, 48.2596551156], - [11.4258174206, 48.2596873139], - [11.4258630181, 48.2597449584], - [11.4259555543, 48.2598898226], - [11.4259944464, 48.2599555024], - [11.426027974, 48.2600011489], - [11.4261285568, 48.2601754761], - [11.4261379445, 48.260195565], - [11.4263203348, 48.2607615101], - [11.4265107716, 48.2613475931], - [11.4265389348, 48.2614293976], - [11.4266636575, 48.261814312], - [11.4266784097, 48.2619215607], - [11.4267132784, 48.2619685448], - [11.4268205667, 48.2621616141], - [11.4268862809, 48.2622448123], - [11.4269493128, 48.2623024538], - [11.4269828404, 48.2623252761], - [11.4270150269, 48.2623453641], - [11.4270539189, 48.2623628295], - [11.4271182919, 48.2623815783], - [11.4274052883, 48.2624660595] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4335985089, 48.1639806978], - [11.4335569347, 48.1639163484], - [11.4335274304, 48.163876095], - [11.4334670807, 48.163795644], - [11.4333825911, 48.1637178765], - [11.4332592095, 48.1636105896], - [11.4328099395, 48.1632927529], - [11.4325846339, 48.1631411857], - [11.4315908755, 48.1624987954] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4362646247, 48.2566027668], - [11.4363826419, 48.2565625304], - [11.4365797842, 48.2565022037], - [11.4367219413, 48.2564485178], - [11.436858734, 48.2563975664], - [11.4370169843, 48.2563385789], - [11.4371725524, 48.2562755173], - [11.4373388494, 48.2562058147], - [11.437384447, 48.2561829897], - [11.4374246801, 48.2561615599], - [11.4375185574, 48.256105195], - [11.4375681783, 48.2560717108], - [11.4376043881, 48.2560448677], - [11.437654009, 48.2560059702], - [11.4376754666, 48.2559872191], - [11.4377666617, 48.2559107634], - [11.4379410053, 48.2557324036], - [11.4388328398, 48.2548164302], - [11.4389709736, 48.2546581576], - [11.4395168031, 48.2540305316], - [11.4396884645, 48.2538360364], - [11.4401658977, 48.2532539971], - [11.4403898622, 48.2529683607], - [11.4405816401, 48.2527376962] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Contraflow" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4166563357, 48.1301594004], - [11.4177010561, 48.1302411908], - [11.4179518426, 48.1302586454], - [11.4181905592, 48.1302747573], - [11.4185218121, 48.1302908132], - [11.4187940563, 48.1303015545], - [11.4189496244, 48.1303055825], - [11.4192419852, 48.1303149811], - [11.419586649, 48.1303216943], - [11.4199567939, 48.1303284076], - [11.4203470553, 48.1303297503], - [11.4205710197, 48.1303297503], - [11.4208325351, 48.1303297503], - [11.4209921266, 48.1303297503], - [11.4213515426, 48.1303257223], - [11.4216358567, 48.1303082678], - [11.4218638445, 48.1302948412], - [11.4222339893, 48.1302613307], - [11.4226457084, 48.1302264775], - [11.4231472815, 48.1301714843], - [11.4233766104, 48.1301446311], - [11.4236756767, 48.1301030645], - [11.4237427319, 48.1300950085], - [11.4237762595, 48.1300923232], - [11.4245608056, 48.1299435111], - [11.4247284437, 48.1299126298], - [11.4249001051, 48.1298737483], - [11.4253533984, 48.1297651039], - [11.4266784097, 48.1293735458], - [11.4268554355, 48.129317209], - [11.4271370674, 48.129223333], - [11.4275219644, 48.1290878894], - [11.4276265706, 48.129050294], - [11.4278693105, 48.128963131], - [11.4281361903, 48.1288652262], - [11.4284298922, 48.1287552929], - [11.4286391045, 48.1286841858], - [11.4289328063, 48.1285755388], - [11.4291299487, 48.128501802], - [11.4296798016, 48.1283059905], - [11.4302189256, 48.1281074928], - [11.4307204987, 48.1279345061], - [11.4309002067, 48.1278674819], - [11.4310758913, 48.1278084581], - [11.4315265025, 48.1276756962], - [11.4319194461, 48.1275737608], - [11.4320133234, 48.1275495916], - [11.4322413112, 48.1274919661], - [11.4325497652, 48.1273592034], - [11.4326825345, 48.1273296632], - [11.4329601432, 48.1272719815], - [11.4331666733, 48.1272411545], - [11.4334174598, 48.1272116702], - [11.4337446893, 48.1271807872], - [11.4339753593, 48.1271526456], - [11.4343334342, 48.1271191331], - [11.4345600809, 48.1271016774], - [11.4348511005, 48.1270895927], - [11.434908768, 48.12708825], - [11.4352279509, 48.1270815922], - [11.4352453853, 48.1270815922], - [11.4353003705, 48.1270802495], - [11.4357442761, 48.1270869632], - [11.436063459, 48.1271083911], - [11.4366951192, 48.1271566738], - [11.4368775094, 48.1271861582], - [11.437153777, 48.1272277271], - [11.4373442138, 48.1272612956], - [11.4376379157, 48.1273175786], - [11.4377103353, 48.127331006], - [11.4379396642, 48.127376603], - [11.4382856692, 48.1274530829], - [11.4385042692, 48.127502652], - [11.4388113821, 48.1275710753], - [11.4394229258, 48.1277038375], - [11.4398923124, 48.1277950309], - [11.4405883456, 48.1278795105], - [11.4413044954, 48.1279425624], - [11.4414319004, 48.1279546469], - [11.4419965054, 48.1279666754], - [11.4424605275, 48.1279506187], - [11.442723384, 48.1279412197], - [11.4429366196, 48.1279331634], - [11.4431364442, 48.1279171067], - [11.4431793595, 48.1279117358], - [11.4433107878, 48.1278983086], - [11.4433416332, 48.1278956231] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.446419468, 48.1273846594], - [11.4464033748, 48.1273900303], - [11.4461928214, 48.1274503974], - [11.44579049, 48.1275670471], - [11.445431074, 48.1276662971], - [11.4449227954, 48.1277856318], - [11.4444064702, 48.1278956231], - [11.4442240799, 48.1279264498], - [11.4440309609, 48.127958675], - [11.4440229143, 48.1279600177], - [11.4437694455, 48.1279935298], - [11.4437064136, 48.1280029288], - [11.4436380173, 48.1280122719], - [11.4435548688, 48.1280230136], - [11.4432839657, 48.1280498679], - [11.4432745779, 48.1280512107], - [11.4429325963, 48.1280806945], - [11.4426268245, 48.1280968071], - [11.4422794784, 48.128111521], - [11.4422204698, 48.1281128637], - [11.4418530072, 48.1281128637], - [11.4416531826, 48.1281074928], - [11.4415016378, 48.1281035206], - [11.4414037372, 48.1281008352], - [11.4413219298, 48.1280954643], - [11.4412977899, 48.1280927789], - [11.44128572, 48.1280927789], - [11.4411998893, 48.1280874081], - [11.4407801236, 48.1280525534], - [11.4405320192, 48.1280324126], - [11.4401605333, 48.127982788], - [11.4399808253, 48.127958675], - [11.4398292805, 48.1279318206], - [11.4397032166, 48.1279117358], - [11.439386716, 48.1278500266], - [11.4390769208, 48.1277842891], - [11.4386263097, 48.1276877248], - [11.438308468, 48.1276153294], - [11.4378712679, 48.1275174221], - [11.437654009, 48.1274745106], - [11.43744882, 48.1274342846], - [11.4371551181, 48.1273819739], - [11.4369392003, 48.1273444333], - [11.4364416505, 48.1272840662], - [11.4360688234, 48.1272572674], - [11.4357670749, 48.127238469], - [11.4353017117, 48.1272357836], - [11.434998622, 48.1272451827], - [11.4346727336, 48.1272599528], - [11.434356233, 48.1272880944], - [11.434266379, 48.1273028645], - [11.43404912, 48.1273216068], - [11.4338023568, 48.127351147], - [11.4335797335, 48.127376603], - [11.4333597923, 48.1274114581], - [11.4324129725, 48.1275858453], - [11.4322949553, 48.1276139867], - [11.4320656265, 48.1276783817], - [11.431995889, 48.1276984666], - [11.4314634706, 48.127852712], - [11.4310879613, 48.1279774171], - [11.4309632386, 48.1280216709], - [11.430802306, 48.1280753236], - [11.4301022495, 48.1283261312], - [11.4297790433, 48.1284347227], - [11.4293351377, 48.1286023929], - [11.4290213192, 48.1287150119], - [11.4287544394, 48.1288156024], - [11.4286122824, 48.128870597], - [11.4282770062, 48.1289926702], - [11.4279001559, 48.129124086], - [11.4277311767, 48.1291857378], - [11.4276265706, 48.1292206476], - [11.4272698368, 48.1293480348], - [11.4269761349, 48.129448624], - [11.4265966023, 48.1295706399], - [11.4264276231, 48.1296216057], - [11.4261392857, 48.1297087676], - [11.4259461666, 48.1297624186], - [11.4257959629, 48.1298039855], - [11.4256551469, 48.1298456082], - [11.4254352058, 48.1298992591], - [11.4253775383, 48.1299139725], - [11.4251093174, 48.1299797072], - [11.4250892008, 48.1299837352], - [11.4249805714, 48.1300051619], - [11.4249027873, 48.1300212739], - [11.4247659946, 48.1300547846], - [11.4244414473, 48.1301164911], - [11.4238889123, 48.1302291628], - [11.4237266386, 48.1302465614], - [11.4236448313, 48.1302573027], - [11.4234248901, 48.1302854426], - [11.4232197011, 48.1303096104], - [11.4229380692, 48.1303471489], - [11.4226416851, 48.130382002], - [11.4222728814, 48.1304128831], - [11.4217538739, 48.1304463935], - [11.4210658873, 48.1304919878], - [11.4207936431, 48.130502729], - [11.4199393595, 48.1304825892], - [11.4194377864, 48.1304745892], - [11.419059595, 48.1304651906], - [11.4186639691, 48.1304490788], - [11.4185258354, 48.1304423655], - [11.4182401801, 48.1304329669], - [11.4176943506, 48.1303954286], - [11.4173389579, 48.130369974], - [11.4167528952, 48.130319009], - [11.4160742963, 48.1302492467], - [11.4156786705, 48.1302090229], - [11.4149839784, 48.1301232045], - [11.4148190225, 48.1300950085], - [11.4145494605, 48.1300561272], - [11.4144140089, 48.1300360432], - [11.4141994322, 48.1300024766], - [11.4133733118, 48.129863007], - [11.4129334296, 48.1297785306], - [11.4126115645, 48.129711453], - [11.412309816, 48.1296538299], - [11.4119222368, 48.1295692972], - [11.4116566981, 48.1295063033], - [11.410975417, 48.1293399787], - [11.4107809568, 48.1292930407], - [11.4102297629, 48.1291468558], - [11.4098918045, 48.1290583502], - [11.4097013677, 48.1289993277], - [11.4095243419, 48.128949704], - [11.4093781615, 48.1289081365], - [11.4092078412, 48.1288505125], - [11.4087357725, 48.128692242], - [11.4085359479, 48.1286251629] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4455034936, 48.1207019407], - [11.4455155636, 48.1207596298], - [11.4455316568, 48.1208266632], - [11.44555982, 48.120915183], - [11.4455893243, 48.1209956452], - [11.4456308986, 48.1210908792], - [11.4456764961, 48.121186057], - [11.4457234348, 48.121277262], - [11.4457489158, 48.1213215215], - [11.4457797612, 48.1213724954], - [11.4458253587, 48.1214422138], - [11.4458575452, 48.1214864732], - [11.4458924139, 48.1215347612], - [11.4459795857, 48.12164471], - [11.4461069907, 48.1217962878], - [11.4461579526, 48.1218579483], - [11.4461794103, 48.1218821201], - [11.4462853576, 48.1220108684], - [11.4463094975, 48.1220390128], - [11.4463886226, 48.1221355877], - [11.4464784766, 48.1222535924], - [11.4465294386, 48.1223233096], - [11.4465884472, 48.1224131697], - [11.4466622079, 48.1225365451], - [11.446726581, 48.1226505763], - [11.4467829073, 48.1227618655], - [11.4468593503, 48.122922784], - [11.4469049479, 48.1230274144], - [11.4469505454, 48.1231373599], - [11.4470055307, 48.1232768478], - [11.4470403994, 48.1233814774], - [11.4470819736, 48.1235209646], - [11.4471034313, 48.1235960514], - [11.4471302534, 48.1237207669], - [11.4471517111, 48.1238267384], - [11.4471771921, 48.1240815392], - [11.447214743, 48.1244302238], - [11.4472455884, 48.1246286797], - [11.4472482706, 48.124640765], - [11.4472710694, 48.1247627923], - [11.4473072792, 48.1248848193], - [11.4473273958, 48.1249545889], - [11.4473381246, 48.1249773605], - [11.4474695529, 48.1252388696], - [11.4475003983, 48.1252925252], - [11.4475889112, 48.1254481206] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4478289689, 48.1206161064], - [11.4455034936, 48.1207019407] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4577182735, 48.1590883454], - [11.4577209557, 48.1590990806], - [11.4577464367, 48.1592989122], - [11.4577424134, 48.1593874216], - [11.4577196146, 48.1595349742], - [11.457686087, 48.1596542907], - [11.4575720931, 48.159902428], - [11.4568867887, 48.1611670819], - [11.4568760599, 48.1611831841], - [11.456711104, 48.1614460183], - [11.4565260316, 48.1616928051], - [11.4563329125, 48.1619301978], - [11.4561532045, 48.1621340439], - [11.4560512806, 48.1622399921], - [11.4559708143, 48.1623244709], - [11.4558487738, 48.162458541], - [11.4557776953, 48.1625779066], - [11.4557294155, 48.1626717776], - [11.4556985701, 48.1627830919], - [11.4556905235, 48.1628676257], - [11.4556905235, 48.1628970896], - [11.4556905235, 48.162956129], - [11.4557186867, 48.1630754935], - [11.4557495321, 48.1631760725], - [11.455787083, 48.1632887275], - [11.4559171701, 48.1635757031], - [11.4560204352, 48.1637580741], - [11.4561196769, 48.1639096395], - [11.456133088, 48.1639311079], - [11.456146499, 48.1639525764], - [11.4562390352, 48.1641121359], - [11.4563047493, 48.1642221053], - [11.4563342536, 48.1642891938], - [11.4563664402, 48.1643642769], - [11.4564790929, 48.1646807652], - [11.4565005506, 48.164731752], - [11.4565193261, 48.1647746323], - [11.4565595592, 48.1648014674], - [11.4565810169, 48.1648242773], - [11.4566172267, 48.1648712387], - [11.4567406083, 48.1650026185], - [11.4568116869, 48.1650710478] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4620272423, 48.1647799993], - [11.4605439807, 48.1647638982], - [11.4601684714, 48.1647532201], - [11.4599109794, 48.164742486], - [11.4595810677, 48.1647237014], - [11.4592699314, 48.1646847905], - [11.459045967, 48.1646686894], - [11.4588179792, 48.16465393], - [11.4586717988, 48.1646566135], - [11.4585363472, 48.1646646641], - [11.4583324994, 48.1646955245], - [11.4581232871, 48.1647398025], - [11.4576592649, 48.1648993596], - [11.4575922097, 48.1649785229], - [11.4572314526, 48.1651434462], - [11.4569390918, 48.165286957] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4632610584, 48.1426611901], - [11.4619749392, 48.1426156067], - [11.4609731341, 48.1425431764] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4583727325, 48.1504221501], - [11.4585551227, 48.150351073], - [11.4587214197, 48.1502893907], - [11.4588890577, 48.1502303926], - [11.4590124393, 48.1501901285], - [11.4597956444, 48.1499125289], - [11.4604487623, 48.1496966109], - [11.461241355, 48.149455191], - [11.4617469514, 48.1493010105], - [11.4619843269, 48.1492326161], - [11.4621761049, 48.1491735609], - [11.4627125467, 48.1490099844], - [11.4635386671, 48.1487900361], - [11.4642534758, 48.1485888773], - [11.4646598304, 48.1484628241], - [11.4653451348, 48.1482388468] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4658788944, 48.186951136], - [11.4659902061, 48.1867889093], - [11.4661806429, 48.1865139666] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4663844908, 48.1480027888], - [11.4659767951, 48.1481422651], - [11.4657622183, 48.1482079765], - [11.465732714, 48.1482160296], - [11.4655610527, 48.1482710034], - [11.4649615789, 48.1484574554], - [11.4645230378, 48.1485929038], - [11.4644626881, 48.1486116384], - [11.4641515518, 48.1487041927], - [11.4639812315, 48.1487497708], - [11.4632396008, 48.1489536692], - [11.4624926055, 48.1491588531], - [11.4622082914, 48.1492446397], - [11.4620178546, 48.1493023526], - [11.4617885257, 48.1493707469], - [11.4612882937, 48.1495222988], - [11.4606700445, 48.1497113746], - [11.4603723193, 48.1498172925], - [11.4601403082, 48.1498923968], - [11.4598895217, 48.1499822645], - [11.4595113302, 48.150117709], - [11.459059378, 48.1502786536], - [11.4588112737, 48.150371205], - [11.4585832859, 48.1504530191], - [11.4583955313, 48.1505147011] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4671033228, 48.185691868], - [11.4672495032, 48.185730763], - [11.4675069953, 48.1857790465], - [11.4677255953, 48.1857468575], - [11.4679093267, 48.1856932092], - [11.4680581893, 48.1856234663], - [11.4681332911, 48.185545676], - [11.4681815709, 48.1854128958], - [11.4686630274, 48.1840678058], - [11.46879982, 48.1836882302], - [11.4691163207, 48.1828044431], - [11.4691726471, 48.1826556162], - [11.4691941048, 48.1825550194], - [11.4691873992, 48.1824812484], - [11.469145825, 48.1823860165] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.469145825, 48.1823860165], - [11.4691873992, 48.1824812484], - [11.4691941048, 48.1825550194], - [11.4691726471, 48.1826556162], - [11.4691163207, 48.1828044431], - [11.46879982, 48.1836882302], - [11.4686630274, 48.1840678058], - [11.4681815709, 48.1854128958], - [11.4681332911, 48.185545676], - [11.4680581893, 48.1856234663], - [11.4679093267, 48.1856932092], - [11.4677255953, 48.1857468575], - [11.4675069953, 48.1857790465], - [11.4672495032, 48.185730763], - [11.4671033228, 48.185691868] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.469581684, 48.1470171049], - [11.4694650079, 48.1470479201], - [11.4690291489, 48.1471699501], - [11.4685329402, 48.1473080864], - [11.4681654776, 48.1474113808], - [11.4680152739, 48.1474583022] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4771052803, 48.1144966559], - [11.4771267379, 48.1146025905], - [11.47715356, 48.1147232986], - [11.4772501195, 48.1151618075], - [11.4772702361, 48.1152395926], - [11.4773252214, 48.1154823486], - [11.4773574079, 48.1156205142], - [11.4774714018, 48.115920907], - [11.4775652791, 48.1162172689], - [11.4777476693, 48.1168288457], - [11.4778187479, 48.1170433911], - [11.477872392, 48.1172633636], - [11.4779635871, 48.1177206526], - [11.478013208, 48.1179446511], - [11.4780601467, 48.1182423444], - [11.4781432952, 48.1186178718], - [11.4783002044, 48.1192240483], - [11.4784584547, 48.1198302176], - [11.4786193873, 48.1205879612], - [11.479039153, 48.1222629925] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4833964015, 48.1640263182], - [11.4830383266, 48.1640491284], - [11.4816046859, 48.1640504701], - [11.4813471938, 48.1640544955], - [11.480861714, 48.1640746221], - [11.4802246893, 48.1641014017], - [11.4796962942, 48.1641242118], - [11.4794441665, 48.1641376296], - [11.4792926217, 48.164147022], - [11.4788111652, 48.1641805663], - [11.478398105, 48.1642140546], - [11.4781392718, 48.164235523], - [11.4779193307, 48.1642516242], - [11.4776940251, 48.1642623584], - [11.4776216055, 48.164270409], - [11.4774056877, 48.1642865102], - [11.4768075551, 48.1643401251], - [11.4764186348, 48.1643709857] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4834111537, 48.1336154068], - [11.4838121439, 48.1344093637], - [11.4840508605, 48.1348572701], - [11.4842091108, 48.135169745] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - }, - { - "description": "Construction work" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4859471823, 48.1366369421], - [11.4862878228, 48.1366262022], - [11.4866686965, 48.1366127773], - [11.486931553, 48.1366423121], - [11.4871193076, 48.1366476821] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - }, - { - "description": "Construction work" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4895198847, 48.1364585582], - [11.4899047817, 48.1364304217] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - }, - { - "description": "Construction work" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4907201732, 48.1363620102], - [11.4899047817, 48.1364304217], - [11.4895198847, 48.1364585582], - [11.4890800024, 48.1364921206], - [11.4885958637, 48.1365296545], - [11.4885019864, 48.1365403945], - [11.4884134735, 48.1365511344], - [11.4882230366, 48.1365739009], - [11.4880553986, 48.1365926958] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.491436323, 48.1370272143], - [11.4912056531, 48.1363217911] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4912056531, 48.1363217911], - [11.491436323, 48.1370272143] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4928458239, 48.1362171879], - [11.4930188264, 48.1371412133] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4930188264, 48.1371412133], - [11.4928458239, 48.1362171879] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - }, - { - "description": "Construction work" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4941735173, 48.1360817067], - [11.4928458239, 48.1362171879] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4941735173, 48.1360817067], - [11.4942660535, 48.1370942824] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4942660535, 48.1370942824], - [11.4941735173, 48.1360817067] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.488343736, 48.0857634715], - [11.4885381962, 48.0857379949], - [11.4889190699, 48.0856883854], - [11.4889445509, 48.0856856978], - [11.4889780785, 48.0856830101], - [11.4890531803, 48.085676291], - [11.4891148711, 48.0856602211], - [11.4891792441, 48.0856360882], - [11.4892503227, 48.0855985171], - [11.4893643166, 48.0855046732], - [11.4895078148, 48.0854912349], - [11.4902923609, 48.0850272198], - [11.4904331769, 48.084957452], - [11.4906504358, 48.0848662946], - [11.4908301438, 48.084792495], - [11.4909897352, 48.0847362214], - [11.4911171402, 48.0846986496], - [11.4911506678, 48.0846892427], - [11.491346469, 48.0846450076], - [11.4917488004, 48.0845699199], - [11.492116263, 48.084522941], - [11.4926567281, 48.0844518846], - [11.4927640165, 48.0844491969], - [11.4929531122, 48.0844438215], - [11.4931019748, 48.0844397899], - [11.4931328202, 48.0844384461], - [11.4933487381, 48.0844223758], - [11.4935472215, 48.0844076493], - [11.4936075712, 48.0844036178], - [11.4939160253, 48.0843901792], - [11.4940769578, 48.0843901792], - [11.4942875112, 48.0843781405], - [11.4944417382, 48.084372765], - [11.494669726, 48.084354007] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - }, - { - "description": "Construction work" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4926848913, 48.1361058719], - [11.4933675135, 48.136050885], - [11.4941748584, 48.1359703904], - [11.4947515334, 48.135916746] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4956956709, 48.1378318581], - [11.4955159629, 48.1363714077], - [11.4954877998, 48.1359677054] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4954877998, 48.1359677054], - [11.4955159629, 48.1363714077], - [11.4956956709, 48.1378318581] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4996291305, 48.1310230602], - [11.4997712875, 48.1313127337] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4997712875, 48.1313127337], - [11.4996291305, 48.1310230602] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5009045209, 48.1026372578], - [11.5008723343, 48.1025688573], - [11.5008321012, 48.1024749883], - [11.5008012558, 48.1023998706], - [11.5007677282, 48.1023556508], - [11.5007328595, 48.1023073448], - [11.5007046963, 48.1022684424], - [11.5006389822, 48.102198698], - [11.5005437637, 48.1021196057] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4994038249, 48.1120759372], - [11.5018620695, 48.1120316698] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5021074916, 48.1057915314], - [11.5020551885, 48.1056681717], - [11.5019881333, 48.1054388024], - [11.5019277836, 48.1052725119], - [11.5018459762, 48.1050499134] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5015898253, 48.103069097], - [11.5015817786, 48.1032099267], - [11.5015911664, 48.103376224], - [11.5016045774, 48.1035022759], - [11.5016099418, 48.1035639584], - [11.5016260351, 48.1036699156], - [11.5016434694, 48.1037262245], - [11.5017816032, 48.104187552], - [11.5019599701, 48.1046260948], - [11.5020699407, 48.1049547056], - [11.5021329726, 48.1051679013], - [11.5021812523, 48.1053811521], - [11.5022053922, 48.1054844189], - [11.5022255088, 48.1056171822], - [11.5022416021, 48.1057217918], - [11.5022469665, 48.1057633781] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5023006106, 48.107427699], - [11.5023059751, 48.1075886096], - [11.5023140217, 48.1078850196], - [11.502318045, 48.1079802219] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5023663248, 48.1093307213], - [11.5023730303, 48.1095975709], - [11.5023783947, 48.1098242352], - [11.5023851002, 48.1099462978], - [11.5024105812, 48.1104384626], - [11.5024172867, 48.1109185902], - [11.5024266745, 48.1111345034], - [11.5024280156, 48.1113450432], - [11.5024293567, 48.111582445], - [11.5024306978, 48.111775522], - [11.5024280156, 48.111908325], - [11.5024253334, 48.1120303826], - [11.5024266745, 48.1121148322], - [11.5024266745, 48.11218322] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5026989187, 48.1284106099], - [11.5026801432, 48.1277078657], - [11.5026734377, 48.127482567], - [11.5026627089, 48.1269219735], - [11.5026600267, 48.1267824956], - [11.5026586856, 48.1265612211], - [11.5026506389, 48.1264042863], - [11.5026439334, 48.126293005], - [11.502638569, 48.1261682958], - [11.5026358868, 48.1260998706], - [11.5026345457, 48.1260703857], - [11.5026332046, 48.1260395579], - [11.5026305224, 48.1259697898], - [11.5026291813, 48.125909421], - [11.5026291813, 48.1258356804], - [11.5026291813, 48.1257511974], - [11.5026197935, 48.1256438871], - [11.5026197935, 48.1255969457] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Left lane closed" - }, - { - "description": "Carriageway reduced to one lane" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5028491224, 48.1337669493], - [11.5028477813, 48.1337186728], - [11.5028343702, 48.1331889708], - [11.5028370525, 48.1330521951], - [11.5028155948, 48.1322461897] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Left lane closed" - }, - { - "description": "Carriageway reduced to one lane" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5030248071, 48.1397429276], - [11.5030248071, 48.1396959991], - [11.5030181016, 48.1396141678], - [11.503011396, 48.1394599578], - [11.5029832328, 48.1387142949], - [11.5029711629, 48.1383535694], - [11.5029644574, 48.1379284034], - [11.5029523874, 48.1373919766], - [11.5029483641, 48.1372189651], - [11.5029322709, 48.1368756814], - [11.5029255654, 48.1366986408], - [11.5029202009, 48.1364572157], - [11.5029134954, 48.1362171879], - [11.5029014255, 48.1357893751], - [11.5028987433, 48.1355533158], - [11.5028960611, 48.1355184662], - [11.5028920377, 48.1354433408], - [11.5028893555, 48.1353990935], - [11.5028880144, 48.1353642438], - [11.5028866733, 48.1352730638], - [11.50288265, 48.1350638528], - [11.50288265, 48.1349994671], - [11.5028786267, 48.1347124435] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Left lane closed" - }, - { - "description": "Carriageway reduced to one lane" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5030905212, 48.1419772101], - [11.5030891801, 48.1417733959] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Lane closed" - }, - { - "description": "Left lane closed" - }, - { - "description": "Carriageway reduced to one lane" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5029108132, 48.1302667013], - [11.5029134954, 48.1303592328], - [11.5029497052, 48.1310203749], - [11.5029564108, 48.1314213748], - [11.5029644574, 48.1317942326], - [11.502972504, 48.1322515042], - [11.5029953028, 48.1331849431], - [11.5030154194, 48.1337656627], - [11.5030181016, 48.1338367068], - [11.5030274893, 48.1341303921], - [11.5030288304, 48.1341773816], - [11.5030328537, 48.1346414006], - [11.503036877, 48.1350396872], - [11.5030422414, 48.1352703788], - [11.5030422414, 48.135349476], - [11.5030422414, 48.1353910383], - [11.5030449237, 48.1354379708], - [11.503048947, 48.1355184662], - [11.5030516292, 48.1355519732], - [11.5030502881, 48.1358041427], - [11.5030610169, 48.1363794627], - [11.503062358, 48.1364317642], - [11.5030851568, 48.13692127], - [11.5030945445, 48.137190829], - [11.5031025911, 48.1374348797], - [11.5031160022, 48.1376011781], - [11.5031253899, 48.138067907], - [11.5031347777, 48.1382596539], - [11.5031508709, 48.138574849], - [11.5031709875, 48.1391354271], - [11.5031937863, 48.1396302768], - [11.5031964685, 48.139689287], - [11.5031978096, 48.139750982], - [11.5032125617, 48.1400943024], - [11.5032206083, 48.1402780434], - [11.5032273139, 48.1404268814], - [11.503228655, 48.1405207929], - [11.5032340194, 48.1407755668], - [11.5032340194, 48.1408386029], - [11.5032514537, 48.1412811956], - [11.503254136, 48.141438085], - [11.5032581593, 48.1416057127], - [11.5032554771, 48.1417063339], - [11.503254136, 48.1417787094] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.502997985, 48.1255782027], - [11.5030771102, 48.1255674605], - [11.5032045151, 48.1255553754], - [11.5032876636, 48.1255460319], - [11.5034767593, 48.1255285757], - [11.5038415397, 48.1254789487] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5033453311, 48.149288931], - [11.5034593249, 48.1498723205], - [11.5036873127, 48.1504208079], - [11.5037610735, 48.1505656461], - [11.5039407815, 48.1508875321] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5050793792, 48.1723719881], - [11.5049694086, 48.1724310166], - [11.5049331988, 48.1724497984], - [11.5046850945, 48.1726160951], - [11.5041339005, 48.1729889331], - [11.5034325029, 48.1734972071], - [11.5031817163, 48.1736849648], - [11.5030556525, 48.1737774739], - [11.5025111641, 48.1741664017], - [11.5020377542, 48.1744815439], - [11.5017480756, 48.1746358164], - [11.501497289, 48.1747645442], - [11.5011687184, 48.1749335164], - [11.5008066202, 48.1751185859], - [11.500726154, 48.1751601719], - [11.5006054546, 48.1752191972], - [11.5005759503, 48.1752339535], - [11.4994453992, 48.1757918396], - [11.4975289608, 48.1767171647], - [11.4971628393, 48.1768969178], - [11.4968905951, 48.1770229571], - [11.4964748527, 48.1772160676], - [11.4959491397, 48.1774574687], - [11.49565812, 48.177598318], - [11.4953671003, 48.1777672809], - [11.4952651764, 48.1778705139], - [11.4951257015, 48.1779375846], - [11.4948051776, 48.1780931881] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5062340702, 48.0989371736], - [11.5062380935, 48.098843298], - [11.5062327291, 48.0987842409], - [11.5062112714, 48.0987373309], - [11.5061670149, 48.0986890215], - [11.506116053, 48.098640768], - [11.5060932542, 48.0986179847], - [11.5060717965, 48.0985991759], - [11.506065091, 48.0985777361], - [11.5059913303, 48.0985804231], - [11.5059323217, 48.0985804231], - [11.5056211854, 48.0985790796], - [11.5040225888, 48.0985616702], - [11.5029805506, 48.0985562963] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5002420152, 48.1396437009], - [11.5009849871, 48.1396704933], - [11.5010131503, 48.1396704933], - [11.5013658608, 48.1396798902], - [11.5016166474, 48.1396879446], - [11.5019103492, 48.1396852598], - [11.5021557714, 48.1396758629], - [11.5023314561, 48.1396678644], - [11.5024172867, 48.1396624947], - [11.5024789775, 48.1396611523], - [11.5025406684, 48.1396530978], - [11.5026372279, 48.1396450434], - [11.5027176942, 48.1396383313], - [11.5028544868, 48.1396316192], - [11.5030181016, 48.1396141678], - [11.5031937863, 48.1396302768], - [11.5033587421, 48.1396262496], - [11.5037208403, 48.139627592], - [11.5039850379, 48.1396316192], - [11.5040601398, 48.1396329616], - [11.5041808392, 48.139634304], - [11.5044718588, 48.1396383313], - [11.5046904589, 48.1396383313], - [11.5048701669, 48.1396369889], - [11.5049399043, 48.1396369889], - [11.5053221191, 48.1396437009], - [11.5056654419, 48.1396410161], - [11.5062729622, 48.1396437009], - [11.5069984997, 48.1396141678] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5071272458, 48.1397308459], - [11.5067611242, 48.1397482972], - [11.5065049733, 48.1397617213], - [11.5053060259, 48.139767091], - [11.5048634614, 48.1397697758], - [11.5044718588, 48.1397711182], - [11.5043605472, 48.1397724606], - [11.5041687692, 48.1397724606], - [11.5039568747, 48.139773803], - [11.5036578084, 48.1397751454], - [11.503357401, 48.1397684334], - [11.5031978096, 48.139750982], - [11.5031160022, 48.1397469548], - [11.5030248071, 48.1397429276] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Contraflow" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4946321751, 48.1245509088], - [11.4946724082, 48.1245616513], - [11.4951203371, 48.1246635367], - [11.4957318808, 48.1248110772], - [11.4958552624, 48.1248392201], - [11.4966666306, 48.1250256452], - [11.4969254638, 48.1250766155], - [11.4970220233, 48.1250981002], - [11.4970931018, 48.1251155006], - [11.4975329841, 48.1252147553], - [11.4980774726, 48.1253367813], - [11.4986031855, 48.1254414067], - [11.4991154874, 48.1255178335], - [11.4997364188, 48.1256130591], - [11.5008589233, 48.1257136556], - [11.5016917492, 48.1257485119], - [11.5024481321, 48.1257498546], - [11.5026291813, 48.1257511974], - [11.5028960611, 48.1257431408], - [11.5030274893, 48.1257377697], - [11.5031575764, 48.1257337413], - [11.5033037568, 48.1257283702], - [11.5035478378, 48.1257190267], - [11.5042827631, 48.1256667143], - [11.504807135, 48.1256211158], - [11.5048768724, 48.1256157446], - [11.5056520308, 48.1255299185], - [11.50582101, 48.1255111196], - [11.5061992015, 48.1254722348], - [11.5066712702, 48.1254119214], - [11.5071715022, 48.1253381241], - [11.5075121428, 48.125287154], - [11.5075684692, 48.1252791533], - [11.507758906, 48.1252509547], - [11.5079359318, 48.1252241548], - [11.5083074177, 48.1251731847], - [11.508426776, 48.1251557284], - [11.5084549392, 48.1251543856] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5080780889, 48.1528737187], - [11.508567592, 48.1523989601] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5086708571, 48.1060624293], - [11.5083100999, 48.1059431001], - [11.5076516176, 48.105642649], - [11.5068134273, 48.1052765418], - [11.5065049733, 48.1051357177], - [11.5063936616, 48.105082097], - [11.5061911548, 48.104985546], - [11.5059376861, 48.1048634717], - [11.5055621768, 48.104683802], - [11.5052885915, 48.1045537229], - [11.5050619448, 48.1044370209], - [11.5049291755, 48.1043713095], - [11.5048098172, 48.1043096279], - [11.5046046282, 48.104191582], - [11.5045429374, 48.1041526811], - [11.5044852699, 48.1041151795], - [11.5044262613, 48.1040695618], - [11.5043565239, 48.1040065366], - [11.5043028797, 48.1039528587], - [11.5042210723, 48.1038643657], - [11.5041231717, 48.1037610956], - [11.5040842796, 48.1037128469], - [11.5040427054, 48.1036498212], - [11.5039877201, 48.1035626151], - [11.5039112772, 48.1034258164], - [11.5038656796, 48.1033306056], - [11.5037771667, 48.1031254065], - [11.5037060882, 48.1029390139], - [11.5036792661, 48.1028424588], - [11.5036551262, 48.1027164053], - [11.5036336685, 48.1025634837], - [11.5036175753, 48.1023918103], - [11.5036068464, 48.1022201923], - [11.5036095286, 48.1020418007], - [11.5036229397, 48.10189162], - [11.5036470796, 48.1017091971], - [11.5036739017, 48.1015657324], - [11.5037007238, 48.1014597709], - [11.5037436391, 48.1013310271], - [11.5037583912, 48.1012974977], - [11.5037785078, 48.1012559078], - [11.5038388575, 48.101100351], - [11.5039206649, 48.1009434504], - [11.5040091778, 48.1007865493], - [11.5041164662, 48.1006470564], - [11.5041835214, 48.1005773098], - [11.504268011, 48.1004780634], - [11.5044664944, 48.1002782827], - [11.5048741902, 48.0999148242], - [11.5050243939, 48.0998007986], - [11.5052577461, 48.0996237981], - [11.5058062578, 48.0992214863], - [11.5059537793, 48.0991182069], - [11.5061240996, 48.0990095534], - [11.5062340702, 48.0989371736], - [11.5066967512, 48.0986970824], - [11.5069113279, 48.0986259897], - [11.5069435145, 48.0986152978], - [11.5070508028, 48.0985790796] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5092971529, 48.1516854719], - [11.508567592, 48.1523989601], - [11.5080780889, 48.1528737187] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5086373294, 48.1531647229], - [11.508823743, 48.1533564693], - [11.5093293394, 48.1539157118] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5089028681, 48.097982288], - [11.5090342964, 48.0979541304], - [11.5092515553, 48.0979098508], - [11.509542575, 48.0978589095], - [11.5095734204, 48.0978535355] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5096485222, 48.1823538254], - [11.5093963946, 48.1824906374], - [11.5090222264, 48.1826945135], - [11.5089296902, 48.1827360934], - [11.5088344718, 48.1827789587], - [11.5086480583, 48.1828634596], - [11.5085474754, 48.1828983329], - [11.5085206534, 48.1829077219], - [11.5084589625, 48.182931865], - [11.5080941821, 48.1830659929], - [11.5079681183, 48.1831129376] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5100508536, 48.1544642678], - [11.5099905039, 48.1544508475], - [11.5098979677, 48.1544334012], - [11.5098242069, 48.1544038766], - [11.5097598339, 48.1543730659], - [11.5096726621, 48.1543180427], - [11.5095465983, 48.1542242123], - [11.5095077063, 48.1541195896], - [11.509413829, 48.1540109406], - [11.5093293394, 48.1539157118], - [11.508823743, 48.1533564693], - [11.5086373294, 48.1531647229], - [11.5085944141, 48.1531338555], - [11.5085582043, 48.1531164087], - [11.5080780889, 48.1528737187], - [11.5077629293, 48.1527623829], - [11.507489344, 48.1526752042], - [11.5068818236, 48.1524927938], - [11.5054428185, 48.1521347374], - [11.5048889423, 48.1519966141], - [11.5047776307, 48.1519483548], - [11.5046837534, 48.1519054078], - [11.504601946, 48.15185178], - [11.5045415963, 48.1518021784], - [11.504500022, 48.1517538629], - [11.504447719, 48.1517029192], - [11.5042760576, 48.1514454034], - [11.5042492355, 48.1514038541], - [11.5041473116, 48.1512294918], - [11.504076233, 48.1511168663], - [11.5040534342, 48.1510792871], - [11.5039823557, 48.1509559242], - [11.5039407815, 48.1508875321], - [11.5037610735, 48.1505656461], - [11.5036873127, 48.1504208079], - [11.5034593249, 48.1498723205], - [11.5033453311, 48.149288931] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5079681183, 48.1831129376], - [11.5080941821, 48.1830659929], - [11.5084589625, 48.182931865], - [11.5085206534, 48.1829077219], - [11.5085474754, 48.1828983329], - [11.5086480583, 48.1828634596], - [11.5088344718, 48.1827789587], - [11.5089296902, 48.1827360934], - [11.5090222264, 48.1826945135], - [11.5093963946, 48.1824906374], - [11.5096485222, 48.1823538254], - [11.5096793677, 48.1823351031], - [11.5097263063, 48.1823082772], - [11.5100320781, 48.1821365908], - [11.5100763346, 48.1821111061], - [11.5101286377, 48.1820789148], - [11.5102667714, 48.1819957539], - [11.5106744672, 48.1817503503] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 7, - "events": [ - { - "description": "Contraflow" - }, - { - "description": "Roadworks" - }, - { - "description": "New roadworks layout" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.511416098, 48.1249317613], - [11.5110835041, 48.1249813889], - [11.5098537112, 48.1251530428], - [11.5094165112, 48.1252147553], - [11.5091080571, 48.1252522975], - [11.5088612939, 48.125287154], - [11.508733889, 48.1253032675], - [11.5086561049, 48.1253032675], - [11.5085702742, 48.1253166954], - [11.5084053184, 48.1253394668], - [11.5079694594, 48.1253958079], - [11.5077535416, 48.1254252933], - [11.5075604225, 48.1254508062], - [11.5065049733, 48.1255916305], - [11.5062179769, 48.1256238013], - [11.505961826, 48.1256532865], - [11.5054186786, 48.1257136556], - [11.5052711571, 48.125729713], - [11.5052483584, 48.1257323985], - [11.5049171055, 48.1257673107], - [11.5048916246, 48.1257686535], - [11.504820546, 48.1257753114], - [11.5044919754, 48.1258048525], - [11.5039917434, 48.1258410515], - [11.5033050979, 48.1258866499], - [11.5031535531, 48.1258960493], - [11.5030274893, 48.1259027631], - [11.5028786267, 48.1259054487], - [11.5026291813, 48.125909421], - [11.5024762953, 48.125909421], - [11.5019532646, 48.1259080783], - [11.5011714007, 48.1258826215], - [11.5007368828, 48.1258571648], - [11.4998128618, 48.1257726259], - [11.4996344949, 48.1257525402], - [11.4994923378, 48.1257364269], - [11.4993246997, 48.1257109701], - [11.4989156629, 48.125650601], - [11.4988338555, 48.1256372291], - [11.4985803867, 48.1255982885], - [11.4974337424, 48.1253649798], - [11.4970796908, 48.1252925252], - [11.4969254638, 48.1252576686], - [11.4957841838, 48.1249934741], - [11.494913807, 48.1247829343], - [11.4947971309, 48.1247520499], - [11.4946603383, 48.1247145073], - [11.4944806303, 48.1246662223], - [11.4943156744, 48.1246233085], - [11.493810078, 48.1245079949], - [11.4933299626, 48.1244100816], - [11.4930738116, 48.1243604535], - [11.4928900803, 48.1243242535], - [11.4924287404, 48.1242343967], - [11.4919218029, 48.1241552824], - [11.4919003452, 48.1241525968], - [11.4917018617, 48.1241231107], - [11.4914671684, 48.124090883], - [11.49138402, 48.1240788536], - [11.4912780727, 48.1240640826], - [11.4911587144, 48.1240493115], - [11.4909709598, 48.1240345965], - [11.4907912518, 48.124015797], - [11.4904425646, 48.1239782539], - [11.4900657142, 48.1239447392], - [11.4899034406, 48.1239286253], - [11.4897451902, 48.1239192256], - [11.4894394184, 48.1238937678], - [11.4890478159, 48.1238696529], - [11.4890263582, 48.1238683101] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 1, - "events": [ - { - "description": "Accident" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5091415847, 48.1250658731], - [11.5091858412, 48.1250618448], - [11.5098523701, 48.1249666741], - [11.5112055446, 48.1247949636], - [11.5115971471, 48.1247467346], - [11.5118090416, 48.1247198785], - [11.512173822, 48.1246796504] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - }, - { - "description": "Accident" - }, - { - "description": "Contraflow" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.4991302396, 48.125520519], - [11.4997364188, 48.1256130591], - [11.5008589233, 48.1257136556], - [11.5016917492, 48.1257485119], - [11.5024481321, 48.1257498546], - [11.5026291813, 48.1257511974], - [11.5028960611, 48.1257431408], - [11.5030274893, 48.1257377697], - [11.5031575764, 48.1257337413], - [11.5033037568, 48.1257283702], - [11.5035478378, 48.1257190267], - [11.5042827631, 48.1256667143], - [11.504807135, 48.1256211158], - [11.5048768724, 48.1256157446], - [11.5056520308, 48.1255299185], - [11.50582101, 48.1255111196], - [11.5061992015, 48.1254722348], - [11.5066712702, 48.1254119214], - [11.5071715022, 48.1253381241], - [11.5075121428, 48.125287154], - [11.5075684692, 48.1252791533], - [11.507758906, 48.1252509547], - [11.5079359318, 48.1252241548], - [11.5083074177, 48.1251731847], - [11.508426776, 48.1251557284], - [11.5085099245, 48.1251503572], - [11.5085756386, 48.1251410136], - [11.5086587871, 48.1251275857], - [11.5091093982, 48.1250699015], - [11.5091858412, 48.1250618448], - [11.5098523701, 48.1249666741], - [11.5112055446, 48.1247949636], - [11.5115971471, 48.1247467346], - [11.5118090416, 48.1247198785], - [11.512173822, 48.1246796504] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 1, - "events": [ - { - "description": "Accident" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.512173822, 48.1246796504], - [11.5130723621, 48.1245522516] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5175275112, 48.054802749], - [11.5173263456, 48.0548456651], - [11.5169387664, 48.0549033161], - [11.5164814497, 48.0549355311], - [11.5159369613, 48.054939509], - [11.5155145134, 48.0549046607], - [11.5151068176, 48.054849699], - [11.5143276359, 48.0547128828], - [11.5132413412, 48.0545761223] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.512173822, 48.1246796504], - [11.5125131215, 48.1245924799], - [11.5130562688, 48.124499938], - [11.5130777265, 48.1244972524], - [11.5134881045, 48.1244302238], - [11.5136476959, 48.124407396], - [11.5141559745, 48.12430551], - [11.5144523586, 48.1242518534], - [11.514559647, 48.1242276827], - [11.5146454776, 48.1242075964], - [11.5148560311, 48.1241700534], - [11.5149351562, 48.1241539396], - [11.515022328, 48.124136483], - [11.515368333, 48.1240640826], - [11.5157867576, 48.1239916821], - [11.5163030828, 48.1238991391], - [11.5167389418, 48.1238253956], - [11.5170017983, 48.1237797954], - [11.5174322928, 48.1237033101], - [11.5180170144, 48.1236000799], - [11.5183978881, 48.1235397083], - [11.5186674501, 48.1234873937], - [11.5188163127, 48.1234511931], - [11.5189531053, 48.1233988784], - [11.5190858747, 48.1233318483], - [11.5191730465, 48.1232808763], - [11.5192065741, 48.1232513898] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5206911768, 48.1243068528], - [11.5209647621, 48.1244905383], - [11.5210264529, 48.1245079949] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5210935081, 48.1852667589], - [11.5211592222, 48.1862189045], - [11.5211806799, 48.1864080127], - [11.5211873854, 48.186473731], - [11.5212115253, 48.1867003914], - [11.5212235953, 48.1868076859], - [11.5212611462, 48.1871214651], - [11.5212933327, 48.1873387344], - [11.5213416125, 48.1876431782], - [11.5213536824, 48.1877290122], - [11.5213912333, 48.1879127502], - [11.5214086677, 48.1880133364], - [11.5214153732, 48.1880535709], - [11.5214247609, 48.1881045344], - [11.5214730407, 48.1884102589], - [11.5214918162, 48.1885121853], - [11.521528026, 48.1886959205], - [11.5215588714, 48.1888608792], - [11.5215977634, 48.189031202], - [11.5216219033, 48.1891197159], - [11.5216581131, 48.1892323698], - [11.5217157806, 48.1893785513], - [11.5218203868, 48.1896172688], - [11.5218807365, 48.1897527203] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5202848221, 48.0763878358], - [11.5202982331, 48.0763878358], - [11.5204672123, 48.0763838036], - [11.5207609142, 48.0763757392], - [11.5208521093, 48.076373051], - [11.5218472089, 48.0763422495], - [11.5221905316, 48.076332841] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5221905316, 48.076332841], - [11.5218472089, 48.0763422495], - [11.5208547915, 48.076373051] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5231440569, 48.1325881617], - [11.5222642924, 48.1319323543] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5235544349, 48.1963603545], - [11.5229831244, 48.1959298584], - [11.5219625438, 48.1950836058], - [11.5210344995, 48.1952029514] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5210344995, 48.1952029514], - [11.5219625438, 48.1950836058], - [11.5229831244, 48.1959298584], - [11.5235544349, 48.1963603545] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5238816644, 48.0762684377], - [11.5237475539, 48.0762832225], - [11.5236080791, 48.0762952631], - [11.5234095956, 48.0763073597], - [11.5231413747, 48.0763207444], - [11.5228677894, 48.0763274647], - [11.5221905316, 48.076332841], - [11.5218472089, 48.0763422495], - [11.5208521093, 48.076373051], - [11.5207609142, 48.0763757392], - [11.5204672123, 48.0763838036], - [11.5202982331, 48.0763878358], - [11.5200823153, 48.0763838036], - [11.5197456981, 48.0763743951], - [11.519230714, 48.0763475698], - [11.518884709, 48.0763368732], - [11.5188753213, 48.0763368732], - [11.518718412, 48.0763341851], - [11.5185802783, 48.076332841], - [11.5184220279, 48.0763234325], - [11.5182463432, 48.0763033275], - [11.5179915334, 48.076273814], - [11.5178386475, 48.0762577411], - [11.5176978315, 48.0762510208], - [11.5175677444, 48.0762510208], - [11.5174376572, 48.0762563971], - [11.51731964, 48.0762604293], - [11.5172364916, 48.0762644615] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5243523921, 48.1779751441], - [11.52274709, 48.1780998952], - [11.5213805045, 48.1781414229] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5293117965, 48.1308473979], - [11.5290771033, 48.1307186718], - [11.5286908652, 48.1305067569], - [11.5284481252, 48.1303766873], - [11.5283006037, 48.1302841559], - [11.5281343068, 48.130196939], - [11.5278245116, 48.1300347005], - [11.5276595558, 48.1299475391], - [11.5271579827, 48.1296685434], - [11.5267113949, 48.1294244558], - [11.5265491213, 48.1293332653], - [11.5261575187, 48.1291120018], - [11.5259845163, 48.12901544], - [11.5253930892, 48.1286493315], - [11.5251946057, 48.1285272575], - [11.5249102915, 48.1283542721], - [11.5246742572, 48.1281665163] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5304316188, 48.1313449568], - [11.5303082372, 48.1312725107], - [11.5302170421, 48.1312175187], - [11.5299246813, 48.1310485703], - [11.5298066641, 48.130978809], - [11.5295572187, 48.1308353141], - [11.5291012431, 48.1305791482], - [11.5288155879, 48.1304302816], - [11.5286814774, 48.1303525195], - [11.5285688246, 48.1302854426], - [11.5285192038, 48.1302573027], - [11.5284280087, 48.1302063376], - [11.528252324, 48.1301205191], - [11.5281128491, 48.1300507566], - [11.5277427043, 48.129858979], - [11.5270855631, 48.1295036179], - [11.5262648071, 48.1290570075], - [11.5262366439, 48.1290409511], - [11.5260247494, 48.1289269342], - [11.5258638169, 48.1288330574], - [11.5255137886, 48.1286493315], - [11.5252522732, 48.128501802], - [11.5252334977, 48.1284910604], - [11.5250993873, 48.128414638], - [11.5246742572, 48.1281665163], - [11.5244167651, 48.1280002434], - [11.5242410804, 48.1278942804], - [11.523979565, 48.1277253211], - [11.5235276128, 48.1274074859], - [11.5230930949, 48.1270949637], - [11.5228409673, 48.1269085461], - [11.5225714053, 48.1267087562], - [11.5224627758, 48.1266283029], - [11.5221918727, 48.1264297988], - [11.5220577623, 48.1263318892], - [11.5220443512, 48.1263211471], - [11.5219102408, 48.1262112083], - [11.5216862763, 48.1260046459], - [11.5216111745, 48.1259295626], - [11.5215816702, 48.1258947065], - [11.5213818456, 48.1256532865], - [11.5213027204, 48.125558061], - [11.5212235953, 48.1254467778], - [11.5212128664, 48.1254320072] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5319403614, 48.2170884434], - [11.5315487589, 48.2174049413], - [11.5312912668, 48.2175390907], - [11.531127652, 48.2176087902], - [11.5306475366, 48.2177160758], - [11.5305670704, 48.2177281392], - [11.5303042139, 48.2177697465], - [11.5298227574, 48.2178475437] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5324432756, 48.2521851686], - [11.5324151124, 48.2520376594], - [11.5324043835, 48.2519893826], - [11.5323869492, 48.2519222973], - [11.5323319639, 48.251819046], - [11.5322742964, 48.2517358867], - [11.5322112645, 48.2516661778], - [11.5321334804, 48.2516205796], - [11.5319926645, 48.2515561728], - [11.5318411196, 48.2515199509], - [11.5316426362, 48.2514998586], - [11.5314682926, 48.251511914], - [11.5313730742, 48.2515307226], - [11.5312791969, 48.2515655492], - [11.5311866606, 48.251609808], - [11.5310981477, 48.2516701963], - [11.5310284103, 48.2517412446], - [11.5309653784, 48.2518217249], - [11.5309372152, 48.2519062236], - [11.5309238042, 48.2520228694], - [11.5309144164, 48.2521275156], - [11.5309197808, 48.2522146927], - [11.5309720839, 48.2525043516] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5363096799, 48.1536193437], - [11.5365135277, 48.1536743117], - [11.5365416909, 48.1536622892], - [11.5365658308, 48.1536542369], - [11.5367374922, 48.1536072652], - [11.5368783082, 48.1535643756] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5368984247, 48.199938389], - [11.5366395916, 48.2007081908], - [11.5362117792, 48.2019245758], - [11.5361500884, 48.2020935702], - [11.5361111964, 48.2022732903], - [11.5360870565, 48.202607198], - [11.5360655988, 48.2028083684], - [11.5360763277, 48.2029277519], - [11.536105832, 48.2029947897], - [11.5361567939, 48.2030725535], - [11.5362184848, 48.2031342841], - [11.5362935866, 48.2031879141], - [11.5366650726, 48.2034507565], - [11.5366932358, 48.2035137715], - [11.5367160345, 48.2035929311], - [11.5367160345, 48.2037578978] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5373195316, 48.1579712532], - [11.5373114849, 48.1578505349], - [11.537299415, 48.1576480138], - [11.5372953917, 48.1575823145], - [11.5372819806, 48.1573677147], - [11.5372337009, 48.156638192], - [11.5372041966, 48.1561781741], - [11.5371626223, 48.1555652765], - [11.5371103193, 48.1548075457], - [11.5370969082, 48.1546265408], - [11.5370928849, 48.1545380233], - [11.5370674039, 48.1543126746], - [11.5370647217, 48.1542778377], - [11.5370580162, 48.1541920036], - [11.5370513107, 48.1540565699], - [11.5370499696, 48.1539761035], - [11.5370271708, 48.1537789353], - [11.5370191241, 48.153683706], - [11.537004372, 48.1535187459], - [11.5369829143, 48.153167407], - [11.5369560922, 48.1527395677], - [11.5369426812, 48.1524176933], - [11.5369198824, 48.1520958728], - [11.5369064714, 48.1518061488], - [11.5369051303, 48.1517578892], - [11.5369037892, 48.1517243927], - [11.5369037892, 48.1516854719], - [11.5369024481, 48.1516090281], - [11.5368930603, 48.1514749297], - [11.5368850137, 48.1513354625], - [11.5368528272, 48.1508929006], - [11.5367884542, 48.150061395], - [11.536785772, 48.1500252131], - [11.5367589499, 48.1496684257], - [11.5367307867, 48.1492755094], - [11.5366610492, 48.1485432432], - [11.5366409327, 48.1484104789], - [11.5366355683, 48.1483689271], - [11.5366315449, 48.1483407412], - [11.5365792419, 48.1478982094], - [11.5365510787, 48.1476983893], - [11.5365403498, 48.1476273084], - [11.5365242566, 48.1475615963], - [11.536529621, 48.1474502489], - [11.5365202333, 48.1473751411], - [11.5364934112, 48.1472759292], - [11.5364572014, 48.1471739767], - [11.5364022161, 48.1470600001], - [11.5363458897, 48.1469500498], - [11.5362841989, 48.1468494389], - [11.5362359191, 48.1467649346], - [11.5361393596, 48.146628195], - [11.5360374356, 48.1465061078], - [11.5360025669, 48.1464645544], - [11.5359757448, 48.1464323408], - [11.5358966197, 48.1463425227], - [11.5358537043, 48.1462956003], - [11.5358402933, 48.1462808357], - [11.5357960368, 48.1462338572], - [11.5357195939, 48.146156119], - [11.5356927718, 48.1461252474], - [11.5356337632, 48.1460635601], - [11.5354728306, 48.1458838666], - [11.5353642012, 48.1457551223], - [11.535323968, 48.1456934345], - [11.5352408196, 48.1455673742], - [11.5351831521, 48.1454748142], - [11.5351335312, 48.1453849386], - [11.5350879337, 48.1452897496], - [11.5350208784, 48.145112738], - [11.5349712576, 48.144941039], - [11.53492566, 48.1447036794], - [11.5348559226, 48.1443228057], - [11.5348371471, 48.1442235879], - [11.5348291005, 48.1441779499], - [11.5347432698, 48.1435396288], - [11.5347244943, 48.1434162478], - [11.5346990133, 48.1432552816], - [11.5346856023, 48.14318151], - [11.5346735324, 48.1429924101], - [11.5346520747, 48.1429079554], - [11.5346319581, 48.1428341832], - [11.5346198882, 48.1427523569], - [11.534605136, 48.1426611901], - [11.5345984305, 48.1426236047], - [11.5345809962, 48.1425203567], - [11.5345635618, 48.1424211354], - [11.5345313753, 48.1422145823], - [11.5345260109, 48.1421770525], - [11.5345219876, 48.1421394667], - [11.5345099176, 48.1420804593], - [11.5345005299, 48.1420415871], - [11.5344924833, 48.1419892913], - [11.5344710256, 48.1418055565], - [11.5344616379, 48.1417317828], - [11.5344535912, 48.1416821714], - [11.5344227458, 48.141493066], - [11.5344066526, 48.1413938428], - [11.5344053115, 48.1413857886], - [11.5343664194, 48.1409955495], - [11.534335574, 48.1407018475], - [11.5343074108, 48.1404335934], - [11.5343007053, 48.1401117537], - [11.5343033875, 48.1400191838], - [11.5343060697, 48.1399226425], - [11.534322163, 48.1394277956], - [11.5343409384, 48.1391769864], - [11.534347644, 48.1390509101], - [11.5343664194, 48.1387585953], - [11.5344053115, 48.1382959], - [11.534412017, 48.1381953282], - [11.5344160403, 48.138112152], - [11.5344294513, 48.1379096649], - [11.5344240869, 48.1378291732], - [11.5344200636, 48.1377487374], - [11.5344146992, 48.1376092329], - [11.5343972648, 48.1374523318], - [11.5343892182, 48.1373598131], - [11.534373125, 48.137165322], - [11.5343208219, 48.1367790783], - [11.5343033875, 48.1366476821], - [11.5342644955, 48.1363915452], - [11.534220239, 48.1361689137], - [11.5341451372, 48.1358041427], - [11.534116974, 48.1356767156], - [11.5340593065, 48.1354205739], - [11.5340338255, 48.1352971734], - [11.5340070034, 48.135146978], - [11.5339721347, 48.1349927545], - [11.533937266, 48.1348345029], - [11.5339091028, 48.1346789359], - [11.5338822807, 48.1345354514], - [11.5338433887, 48.1343610878], - [11.5337977911, 48.1341773816], - [11.5337535347, 48.1340553207], - [11.533732077, 48.1339922763], - [11.5336596574, 48.1338232811], - [11.5336060132, 48.1337280708], - [11.5335832144, 48.1336851645], - [11.5335228647, 48.1335872687], - [11.5334772671, 48.1335161683], - [11.5334397162, 48.1334638638], - [11.5334021653, 48.1334102167], - [11.5333833898, 48.1333874489], - [11.5333418156, 48.1333378294], - [11.5332801248, 48.1332788119], - [11.5332103873, 48.1331943412], - [11.5330414082, 48.1330280285], - [11.5328241492, 48.1328576876], - [11.5325331296, 48.1326699483], - [11.532307824, 48.1325076617], - [11.5321683491, 48.1324205045], - [11.5321106816, 48.1323802824], - [11.5320261921, 48.1323333472], - [11.5319712068, 48.1322944676], - [11.5318370963, 48.1322126245], - [11.5316962804, 48.132128152], - [11.5316091086, 48.1320731609], - [11.5314803625, 48.1319954013], - [11.5311866606, 48.1318102881], - [11.5310042704, 48.1317003611], - [11.5308165158, 48.1315876927], - [11.5306917931, 48.1315125616], - [11.5305737759, 48.1314334585], - [11.5305281783, 48.1314053192], - [11.5305067207, 48.1313918929] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5378948654, 48.1624786682], - [11.5379310752, 48.1627227664], - [11.5380021538, 48.1637929605], - [11.538004836, 48.1638305304], - [11.5380356814, 48.1642824849], - [11.5380423869, 48.1643844034], - [11.5380718912, 48.1648712387], - [11.5380785967, 48.1649570549], - [11.5380866433, 48.1650468963], - [11.5381054188, 48.1652614639], - [11.5381054188, 48.1653298928], - [11.5381121243, 48.1654385178], - [11.5381161476, 48.1655283583] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5388296152, 48.1282818777], - [11.5387920643, 48.1283529294], - [11.5387692655, 48.1284306946], - [11.5387746299, 48.1285460553] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5401264633, 48.1171520065], - [11.5401197578, 48.1173196576], - [11.5401264633, 48.1173492035], - [11.5401532854, 48.1174256424], - [11.5402283872, 48.1175570318], - [11.5402619148, 48.1176227824], - [11.5402793492, 48.1176630161], - [11.5403209234, 48.1177394544], - [11.540456375, 48.1179660829], - [11.5405113603, 48.1181377602], - [11.540520748, 48.1182731768], - [11.5405194069, 48.118361701], - [11.5405287946, 48.1185561514], - [11.5405475701, 48.1187372276], - [11.54055964, 48.1188606119], - [11.54057171, 48.1189571368], - [11.5405301357, 48.1190644611], - [11.5405623223, 48.1192294201], - [11.5405797566, 48.1194413255], - [11.5405837799, 48.1194909025], - [11.5405985321, 48.1196263714], - [11.5406052376, 48.1197108644], - [11.5406280364, 48.1198034149], - [11.5406441296, 48.1198610491], - [11.5408399309, 48.1202526798], - [11.5410196389, 48.1206120776], - [11.5411376561, 48.1208830092], - [11.5411510671, 48.1209352706], - [11.5411658193, 48.1210050455], - [11.5411644782, 48.1210305046], - [11.5411591138, 48.1210761073], - [11.541149726, 48.1211096238], - [11.5411121751, 48.1212075434], - [11.5410840119, 48.1212839764], - [11.5410813297, 48.1212920338], - [11.5410652364, 48.1213443507], - [11.541046461, 48.1214086975], - [11.5410370733, 48.1214623572], - [11.5410410966, 48.1215025879], - [11.541046461, 48.1215414756], - [11.5410518254, 48.1215763347] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5411255861, 48.1245428519], - [11.5411738659, 48.1244261953], - [11.5411980058, 48.1243577679], - [11.5412476267, 48.124166025], - [11.5412811543, 48.1239554818], - [11.5413106586, 48.1237904821], - [11.5413307751, 48.1235960514], - [11.5413280929, 48.1232352756], - [11.5413213874, 48.1231561598], - [11.5413079764, 48.1230864437], - [11.5412918831, 48.1229979277], - [11.5411671604, 48.1222106765], - [11.5411403383, 48.1220484129], - [11.5411269273, 48.1219813251], - [11.541110834, 48.1219048931], - [11.5410746242, 48.1216916549], - [11.5410665776, 48.1216460528], - [11.5410518254, 48.1215763347] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.54102098, 48.1846980784], - [11.5410451199, 48.1847919647], - [11.5410933996, 48.1849931492], - [11.5411215628, 48.1851339779], - [11.5411282684, 48.1851715321], - [11.5411845947, 48.1854450849], - [11.5412154402, 48.1856020069], - [11.5412449445, 48.1857709993], - [11.541265061, 48.1858809781], - [11.541290542, 48.1860338193], - [11.5413307751, 48.1863382708], - [11.5413388218, 48.1863986244], - [11.5413468684, 48.1864656839], - [11.5412409211, 48.1864804369], - [11.5411765481, 48.1864898253], - [11.5404577161, 48.1865716377], - [11.53989177, 48.1866400381], - [11.5397643651, 48.1866494264], - [11.5394009258, 48.1866936854], - [11.5392346288, 48.1867044149], - [11.5390683318, 48.1867164855], - [11.5370606984, 48.1868720066], - [11.5368260051, 48.1868907831], - [11.536606064, 48.1869068772], - [11.5364665891, 48.1869176066], - [11.5359636749, 48.1869578419], - [11.5356176699, 48.1869873478], - [11.5354299153, 48.1870034419], - [11.5351160969, 48.1870316065], - [11.5349833275, 48.1870436771], - [11.5347218121, 48.187066477], - [11.5342014636, 48.1870986652], - [11.5337280537, 48.1871174416], - [11.5336784328, 48.1871254886], - [11.53356578, 48.1871308533], - [11.5329756941, 48.1871697472], - [11.5328871812, 48.1871751119], - [11.5327034498, 48.1871871825], - [11.5326457823, 48.187191206], - [11.5322340633, 48.1872166882], - [11.5316225196, 48.1872582644], - [11.5314159895, 48.1872730173], - [11.5313019956, 48.1872824054], - [11.5312537159, 48.1872850878], - [11.5311544741, 48.1872931348], - [11.530998906, 48.1873025229], - [11.5308473612, 48.1873333698], - [11.5307950581, 48.1873440991], - [11.5307172741, 48.1873736047], - [11.5306301023, 48.1874057927], - [11.5306059624, 48.1874151808], - [11.5305120851, 48.1874688274] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5448109413, 48.226493635], - [11.544049194, 48.226445334], - [11.5434966589, 48.2264131706], - [11.5428515877, 48.2263702302], - [11.5428274478, 48.2263675499], - [11.542663833, 48.226350128], - [11.5425256993, 48.2263353864], - [11.5423312391, 48.2263246653], - [11.5419731642, 48.2262857452], - [11.5417317654, 48.2262643028], - [11.540854683, 48.2261717768], - [11.5403705443, 48.2261315164], - [11.5399963762, 48.2260859513], - [11.5395940448, 48.2260510515], - [11.5392051245, 48.2260121871], - [11.5391112472, 48.226002806], - [11.5383950974, 48.2259478038], - [11.538108101, 48.2259303818], - [11.537389269, 48.225853937], - [11.5366302038, 48.2257640905], - [11.5361474062, 48.2256970267], - [11.5353856589, 48.2255843413], - [11.5348518993, 48.2255119165], - [11.5341357495, 48.2254046472], - [11.5334853138, 48.2253054187], - [11.5326632167, 48.2251753102], - [11.5323064829, 48.2251230433], - [11.5315755809, 48.2249915941], - [11.5311732496, 48.2249178283], - [11.5302894617, 48.2247635954], - [11.5294418837, 48.2246066817], - [11.5288544799, 48.2244873488], - [11.5283488835, 48.2243894587], - [11.5277185644, 48.2242606881], - [11.527380606, 48.2241882614], - [11.5271070207, 48.2241265563], - [11.5267355348, 48.2240487686], - [11.526109239, 48.2239160323], - [11.5253153051, 48.2237309715], - [11.5244958903, 48.2235431738], - [11.5243081356, 48.2234976063], - [11.5239527429, 48.2234090959], - [11.5236107613, 48.223324606], - [11.5233707036, 48.2232655803], - [11.5228087808, 48.2231220643], - [11.5222106482, 48.2229692221], - [11.5216862763, 48.2228270455], - [11.5210800971, 48.2226567234], - [11.5207287277, 48.2225628506], - [11.5201802159, 48.2224099509], - [11.5200233067, 48.2223603617], - [11.5195619668, 48.2222208639], - [11.5190966035, 48.2220881228], - [11.5187465752, 48.2219754295], - [11.5181980635, 48.2218024241], - [11.517691126, 48.2216442168], - [11.5172190572, 48.2214859533], - [11.5169052387, 48.2213853769], - [11.5164734031, 48.2212391751], - [11.5159785355, 48.221070188], - [11.5155239011, 48.220913263], - [11.5150209869, 48.2207349486], - [11.5144992973, 48.2205457996], - [11.5141304935, 48.2204090333], - [11.5135632063, 48.2201971538], - [11.5129422749, 48.2199610918], - [11.5123709644, 48.2197344669], - [11.5118130649, 48.2195064448], - [11.5116923655, 48.2194595335], - [11.5112122501, 48.2192623936], - [11.5108286942, 48.219097421], - [11.5104746426, 48.2189499281], - [11.5101889874, 48.2188265052], - [11.5098215247, 48.2186642677], - [11.5096297468, 48.2185770893], - [11.5092944707, 48.2184281987], - [11.5090047921, 48.2182981286], - [11.5081974472, 48.2179226042], - [11.5076784397, 48.2176745243], - [11.5071406568, 48.2174089625], - [11.5067115034, 48.217202432], - [11.5061616505, 48.2169221792], - [11.5057888235, 48.2167290508], - [11.5053180958, 48.2164863267], - [11.5039072539, 48.2157272621], - [11.5037101115, 48.2156226531], - [11.5034110452, 48.2154523071], - [11.5032139028, 48.215339655], - [11.5027351285, 48.2150647538], - [11.502382418, 48.2148582139], - [11.5020270253, 48.2146449709], - [11.5016622449, 48.2144263651], - [11.5013752485, 48.2142466319], - [11.5009407307, 48.2139770867], - [11.5004485453, 48.2136646448], - [11.5000301207, 48.2133963812], - [11.4996452237, 48.2131469389], - [11.4993649329, 48.212969938], - [11.4990242923, 48.2127473036], - [11.4987480248, 48.2125796849], - [11.4984798039, 48.2124187123], - [11.498160621, 48.2122403684], - [11.4978602136, 48.212075429], - [11.4974967743, 48.2118849633], - [11.4972513522, 48.2117629197], - [11.4970354344, 48.2116609837], - [11.4966773594, 48.2114920209], - [11.4964198674, 48.2113793601], - [11.4962575937, 48.211306971], - [11.4960778857, 48.211234526], - [11.4958338047, 48.211132589], - [11.4955454672, 48.2110173022], - [11.4953067506, 48.2109274296], - [11.4951230193, 48.2108563247], - [11.49497818, 48.2108000215], - [11.4948024953, 48.2107396966], - [11.4945436622, 48.210645802], - [11.4942982401, 48.2105653127], - [11.4940742756, 48.2104929225], - [11.493796667, 48.2104043896], - [11.4934573675, 48.2103024509], - [11.4931998755, 48.2102300604], - [11.4929021503, 48.2101442082], - [11.492629906, 48.2100718174], - [11.4923710729, 48.2100087547], - [11.4920693244, 48.2099350231], - [11.4918011035, 48.2098706197], - [11.491473874, 48.2097995691], - [11.4912713672, 48.2097566147], - [11.4910715426, 48.2097177379], - [11.4906289781, 48.2096332813], - [11.4905109609, 48.2096104355], - [11.4902239646, 48.2095621745], - [11.4901153351, 48.2095434063], - [11.4900040234, 48.2095273193], - [11.4897223915, 48.2094844205], - [11.4894716049, 48.20945085], - [11.4891993607, 48.2094133136], - [11.488856038, 48.2093690741], - [11.4885569717, 48.2093315376], - [11.4881103839, 48.2092939452], - [11.4872587825, 48.2092282562], - [11.4869382585, 48.2092054661], - [11.4866686965, 48.2091934008], - [11.4863065983, 48.2091812796], - [11.4856749381, 48.209173236], - [11.4855850841, 48.2091745766], - [11.4854657258, 48.2091718954], - [11.4852980877, 48.209166533], - [11.4851398374, 48.2091692142], - [11.4845470692, 48.2091840166], - [11.4841970409, 48.2091947414], - [11.4839006568, 48.2092054661], - [11.483377626, 48.2092430027], - [11.4830638076, 48.209268474], - [11.482813021, 48.2092885829], - [11.4826038087, 48.2093073511], - [11.4824334885, 48.20932746], - [11.4820982123, 48.2093583494], - [11.4820029939, 48.2093704147], - [11.4813042785, 48.2094588935], - [11.4809462036, 48.2095005076], - [11.4808000232, 48.2095192758], - [11.4806739594, 48.2095367034], - [11.4805586244, 48.209554131], - [11.4801857973, 48.2096010514], - [11.4796292389, 48.2096667958], - [11.4793516303, 48.2096976292], - [11.4792510475, 48.2097083538], - [11.4788353051, 48.2097512524], - [11.4784825946, 48.2097754387], - [11.4780091847, 48.2098089531], - [11.4771441723, 48.2098464893], - [11.4769121612, 48.2098491704], - [11.4763784016, 48.209859895], - [11.4753913487, 48.209859895], - [11.4748294259, 48.209859895], - [11.4729518796, 48.2098464893], - [11.4724194611, 48.2098491704], - [11.47196885, 48.2098424675], - [11.4715236033, 48.2098397864], - [11.4711910094, 48.2098344241], - [11.4706961418, 48.2098397864], - [11.4703085626, 48.2098424675], - [11.4698163773, 48.2098384458], - [11.4695508386, 48.2098344241], - [11.4692316557, 48.2098290618], - [11.4687917734, 48.2098022502], - [11.4683357979, 48.2097754387], - [11.4680970813, 48.2097566147], - [11.4678530003, 48.2097298031], - [11.4676250125, 48.2097056727], - [11.4674305523, 48.2096815422], - [11.4672749842, 48.2096574117], - [11.4671033228, 48.2096332813], - [11.467041632, 48.2096252378] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5484600867, 48.1241499111], - [11.5486330892, 48.1242370824], - [11.5487269665, 48.1242893962], - [11.5488543714, 48.1243913382], - [11.5489039923, 48.1244315666], - [11.5489603187, 48.1244744806], - [11.5490260328, 48.1245147089], - [11.5490971113, 48.1245817374], - [11.5491735543, 48.1247038208], - [11.5493908132, 48.1248848193], - [11.5496590341, 48.1250766155] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5453192199, 48.2513321993], - [11.5455498899, 48.251309428], - [11.5456491317, 48.2513000515], - [11.5461212004, 48.2512705269], - [11.5466656889, 48.2512343048], - [11.5475280191, 48.2511820087], - [11.5478029455, 48.2511619163], - [11.5483112241, 48.2511243546], - [11.5483635272, 48.2511203361], - [11.5488865579, 48.2510841139], - [11.5501512195, 48.2510009534], - [11.5506635214, 48.2509741634], - [11.5511557068, 48.2509459781], - [11.5513796712, 48.2509299041], - [11.5517055596, 48.2509084163], - [11.5520757045, 48.2508843052] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5532075967, 48.1364035717], - [11.5532008911, 48.1360643101], - [11.5531713868, 48.1351737726] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5498159434, 48.1121872494], - [11.5506487693, 48.1122677253], - [11.5507882441, 48.1122784703], - [11.5509827043, 48.1122811566], - [11.5517001952, 48.1122945319], - [11.5530895795, 48.1122704115], - [11.5534865464, 48.1122529508] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.553469112, 48.1500372364], - [11.5534892286, 48.1500855535], - [11.5536260213, 48.1502585216], - [11.5538499857, 48.1505267803], - [11.5540162827, 48.1507359842], - [11.5542053784, 48.1509693454], - [11.554405203, 48.1512160707], - [11.5545822288, 48.1514319824] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.553469112, 48.1500372364], - [11.5535388495, 48.1500198445], - [11.5545714999, 48.1497006374], - [11.5551803614, 48.1495035086], - [11.555842867, 48.1492956418], - [11.556099018, 48.1492205367], - [11.5564517285, 48.1491159038] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5564517285, 48.1491159038], - [11.5571464206, 48.1501042876], - [11.5574830378, 48.1502075763], - [11.5581334735, 48.1502477845] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5545111502, 48.1391407968], - [11.5552071835, 48.1391635621], - [11.5554485823, 48.1391729591], - [11.5555263664, 48.1391756439], - [11.5555746461, 48.1391635621], - [11.555649748, 48.1391528786], - [11.5558777357, 48.1391475089], - [11.5559380854, 48.1391475089], - [11.5559890474, 48.1391461665], - [11.5561580266, 48.1391488514], - [11.5563095714, 48.1391515362], - [11.5568875874, 48.1391622197], - [11.5574092771, 48.1391649045], - [11.5577405299, 48.1391675894], - [11.5579899753, 48.1391702742], - [11.5581133569, 48.1391716167], - [11.558640411, 48.1391796712], - [11.5590950454, 48.1391810137], - [11.5592117215, 48.1391823561], - [11.5594853069, 48.1391984652], - [11.5596274639, 48.1392051773], - [11.559871545, 48.1392185456], - [11.56020548, 48.1392427093], - [11.5607164408, 48.1392708442], - [11.5609095598, 48.139282926], - [11.5609605218, 48.1392909806], - [11.5609953905, 48.1392990351], - [11.5610611047, 48.1393258276], - [11.5610879267, 48.1393459639], - [11.56110402, 48.139362073], - [11.5611362065, 48.139413029], - [11.5611643697, 48.1394974895], - [11.5611724163, 48.139537762], - [11.5612220372, 48.1399213001], - [11.5612569059, 48.1401935282], - [11.5612797047, 48.1404000895], - [11.561283728, 48.1404684956], - [11.561283728, 48.1405650358], - [11.561283728, 48.1406146483], - [11.5612850691, 48.1406455232], - [11.5612864102, 48.1407755668], - [11.5612877513, 48.1408305486], - [11.5612890924, 48.1409700443], - [11.5613078679, 48.1410652413], - [11.5613132323, 48.1411242499], - [11.5613132323, 48.1412637448], - [11.56132262, 48.1413482582], - [11.5613333489, 48.1413992122], - [11.561348101, 48.1414743288], - [11.5613722409, 48.1415936874], - [11.561412474, 48.1417063339], - [11.5614647771, 48.1417411793], - [11.5615452434, 48.1417881059], - [11.5616029109, 48.1418203224], - [11.5616619195, 48.1418471136], - [11.5617504324, 48.1418927537], - [11.5617933477, 48.1418833572], - [11.5618912483, 48.1418967248], - [11.5619515981, 48.1418779878], - [11.562092414, 48.1418350884], - [11.5622922386, 48.1417693688], - [11.562361976, 48.1417465487], - [11.5625094975, 48.141695595] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5636990572, 48.2057668398], - [11.5638774241, 48.2059908452], - [11.5639498438, 48.2061195501], - [11.5638707186, 48.2069885791], - [11.5638184155, 48.2073305558], - [11.5637594069, 48.207706102], - [11.5637258793, 48.2078884836], - [11.5636856462, 48.2079313836], - [11.5635904278, 48.2080105364], - [11.5634925271, 48.2080856114], - [11.5633597578, 48.2081513577] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.555778494, 48.1296725714], - [11.5557369198, 48.1287619504], - [11.5557436253, 48.1286801577], - [11.5557570363, 48.1286023929], - [11.5558106805, 48.128511201], - [11.5558562781, 48.1284615768], - [11.5559206511, 48.1284065818], - [11.5559488143, 48.1283770982], - [11.5559756364, 48.1283489013], - [11.556099018, 48.128233596], - [11.5563779677, 48.1280015861], - [11.5567266549, 48.1276850953], - [11.5573261286, 48.1271231613], - [11.5577230955, 48.126753011], - [11.5577821041, 48.1266939859], - [11.5578397716, 48.1266363035], - [11.5578625704, 48.1265759914], - [11.5579390134, 48.1265021958], - [11.5580570306, 48.1263895719], - [11.5582434441, 48.1262514353], - [11.5583668257, 48.1261830102], - [11.5585290993, 48.1261025561], - [11.5586497988, 48.1260489014], - [11.5587718393, 48.1260059887], - [11.5591419841, 48.1258879926], - [11.5592962111, 48.1258450798], - [11.5598795916, 48.1256814849], - [11.5604683365, 48.125527233], - [11.5605796481, 48.1254964049], - [11.5607231463, 48.1254534918], - [11.5608760322, 48.1253998363], - [11.5613011624, 48.125229526], - [11.5615465845, 48.1251436992], - [11.5618241931, 48.1250631876], - [11.5619140471, 48.1250390732], - [11.5620642508, 48.1249961597], - [11.5621058251, 48.1249854173], - [11.562323084, 48.1249197321], - [11.5627321209, 48.1247909911], - [11.5636521186, 48.1244811946], - [11.5637875701, 48.1244329094], - [11.5639444793, 48.1243644819], - [11.5640195812, 48.1243323104] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5633222069, 48.1556564763], - [11.5640370156, 48.1554606565] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5641134585, 48.2028727249], - [11.5641121174, 48.2028821661], - [11.5640920008, 48.2030363532], - [11.5640611554, 48.2032522701], - [11.5640008057, 48.2036438792], - [11.5639444793, 48.2041924062], - [11.5638787652, 48.2046979687], - [11.5637701358, 48.205282739], - [11.5636990572, 48.2057668398], - [11.5635314192, 48.2069604254], - [11.5634871627, 48.2072487765], - [11.5633597578, 48.2081513577], - [11.5633356179, 48.2083176503], - [11.5632645394, 48.2087803286] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5586243178, 48.1374161411], - [11.559255978, 48.1374013739], - [11.5595188345, 48.1374000314], - [11.5600190665, 48.1373973464], - [11.5606453623, 48.1373906341], - [11.561027577, 48.1373892916], - [11.5612126495, 48.1373892916], - [11.561527809, 48.1373879491], - [11.5628125871, 48.1373825793], - [11.5636534597, 48.1373839217], - [11.5640115346, 48.1373852642], - [11.5644621457, 48.1373852642], - [11.5645452942, 48.1373919766], - [11.5647397543, 48.1374134561] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5661546196, 48.1378828157], - [11.5659574772, 48.1366905859] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5686477329, 48.2272137882], - [11.5683365966, 48.2271950265], - [11.5670048798, 48.2271252842], - [11.565710714, 48.2270729635], - [11.5653016771, 48.2270501813], - [11.5647893752, 48.2270340998], - [11.56449165, 48.2270233788], - [11.564196607, 48.2270126578], - [11.5638653542, 48.2269978605], - [11.5635475124, 48.2269925], - [11.5633262302, 48.2269831191], - [11.5629627908, 48.2269737382], - [11.5625939871, 48.2269656975], - [11.5620709564, 48.2269549764], - [11.5610423292, 48.2269307983], - [11.5605823303, 48.2269200772], - [11.5605729426, 48.2269200772], - [11.5598527695, 48.2269026555], - [11.5591875817, 48.2268959549], - [11.5587597693, 48.2268879141], - [11.5583493913, 48.2268798733], - [11.5581991876, 48.2268771931], - [11.5577700342, 48.2268678121], - [11.557407936, 48.226866472], - [11.5568165089, 48.2268530149], - [11.5563015248, 48.2268463142], - [11.5556846167, 48.2268382734], - [11.5552863086, 48.2268329129], - [11.5549242104, 48.226823532], - [11.5547793711, 48.2268221918], - [11.5546787883, 48.2268195116], - [11.5545674766, 48.2268168313], - [11.5544910337, 48.2268195116], - [11.554444095, 48.2268168313], - [11.5543341244, 48.2268181714], - [11.5542228128, 48.2268168313], - [11.554149052, 48.226814151], - [11.5540015305, 48.2268101306], - [11.5538392569, 48.2268087905], - [11.553801706, 48.2268074504] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5693544949, 48.1374831527], - [11.5698922778, 48.1373611556], - [11.5700532104, 48.1373289363], - [11.5700800325, 48.1373249088], - [11.5701081957, 48.1373235664], - [11.5701524521, 48.1373249088], - [11.570202073, 48.1373329637], - [11.5702436472, 48.1373517583], - [11.5702718104, 48.1373692105], - [11.5703415479, 48.1374107712], - [11.5703804399, 48.1374295098], - [11.5704367663, 48.1374402496], - [11.5705038215, 48.1374362222], - [11.5706111099, 48.1374295098], - [11.5708069111, 48.1374121136], - [11.571087202, 48.1373825793], - [11.5711193885, 48.1373798943], - [11.5711341406, 48.1373785518], - [11.5711971725, 48.137367868], - [11.5712454523, 48.1373598131] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5725020672, 48.1890043795], - [11.5724967028, 48.1891384916], - [11.5724216009, 48.1900343511], - [11.5724028255, 48.1902328329], - [11.5723867322, 48.1904326549], - [11.572370639, 48.1906204065], - [11.5723438169, 48.1913915775], - [11.5723411347, 48.1916262625], - [11.5723357703, 48.1917737782], - [11.5723143126, 48.1922780104], - [11.5722781028, 48.1929660135], - [11.5722472574, 48.1935118611], - [11.5722459163, 48.1935574552] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5724028255, 48.1902328329], - [11.5724216009, 48.1900343511], - [11.5724967028, 48.1891384916], - [11.5725020672, 48.1890043795], - [11.5725771691, 48.1882882152], - [11.5725919212, 48.1880468651], - [11.5726120378, 48.1877062126], - [11.5726160611, 48.1876270843], - [11.5726241077, 48.1875560028], - [11.572628131, 48.1874580981] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5731417741, 48.2822326048], - [11.5732262636, 48.2823358505], - [11.5731846894, 48.2823895091], - [11.5730331446, 48.2825035196], - [11.5729017164, 48.2825490903], - [11.5728386844, 48.2825450743], - [11.5727756525, 48.2825223168], - [11.5726267899, 48.2824578931], - [11.5719025935, 48.2820032994] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Cyclists on roadway" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5721949543, 48.1540592539], - [11.5733737851, 48.1537011526] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5737962331, 48.1341116523], - [11.5739397312, 48.1342001491], - [11.5741945411, 48.1343624303], - [11.5742723252, 48.1344160764], - [11.5743192638, 48.1344455566], - [11.5743782724, 48.1344885181], - [11.5745217706, 48.1345823846], - [11.5745646859, 48.1346158923], - [11.5746008958, 48.1346427432], - [11.5746987964, 48.1347339242], - [11.574744394, 48.1347821998], - [11.5748127903, 48.1348559276], - [11.5748758222, 48.1349511918], - [11.5749187375, 48.1350115499], - [11.5749589707, 48.1350812498], - [11.5749898161, 48.1351483205], - [11.5750126149, 48.1352046508], - [11.5750421192, 48.1352944883], - [11.5749160553, 48.1352985159] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5679919328, 48.1766756358], - [11.5684023107, 48.1768070413], - [11.5686383451, 48.1768741134], - [11.5688448752, 48.1769384466], - [11.5690487231, 48.1769934455], - [11.5693088974, 48.177075273], - [11.5697353686, 48.1771878975], - [11.5699231232, 48.1772335062], - [11.5708551909, 48.1774574687], - [11.5709825958, 48.1774936871], - [11.5711327995, 48.1775366126], - [11.5713366474, 48.1775889281], - [11.5715579296, 48.1776411876], - [11.5717215444, 48.1776787473], - [11.5718905236, 48.1777136242], - [11.5720340217, 48.1777404526], - [11.5721627678, 48.1777659395], - [11.5722888316, 48.1777874021], - [11.572422942, 48.1778075234], - [11.5726187433, 48.1778303274], - [11.57283332, 48.1778410587], - [11.5729111041, 48.177845083], - [11.5730210747, 48.1778504486], - [11.5731176342, 48.1778477658], - [11.5732423569, 48.177845083], - [11.573564222, 48.1778477658], - [11.5737197901, 48.1778477658], - [11.5739062036, 48.1778544729], - [11.5740725006, 48.1778584971], - [11.5742656196, 48.1778638069], - [11.5750300492, 48.177877221], - [11.5751668419, 48.1778745382], - [11.5753492321, 48.1778745382], - [11.575681826, 48.1778638069], - [11.5758910383, 48.1778558143], - [11.5761485304, 48.1778745382] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5783224608, 48.1104974504], - [11.5782044436, 48.1106315999], - [11.5780193712, 48.1108072753], - [11.5778906251, 48.1109132175], - [11.5777270104, 48.1110379638], - [11.5774158741, 48.111232386], - [11.5772589649, 48.111318236], - [11.5770591403, 48.1114147752], - [11.5768391992, 48.1115073406], - [11.5765307452, 48.1116333726], - [11.5763268973, 48.1116870424] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Heavy traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5556403602, 48.1122261442], - [11.5556685234, 48.1122261442], - [11.5558723713, 48.1122288305], - [11.5561097468, 48.1122274873], - [11.5563524867, 48.1122315167], - [11.5569170917, 48.1122462912], - [11.5570847298, 48.1122556371], - [11.5575930084, 48.1122811566], - [11.5578478183, 48.1122985613], - [11.5582193042, 48.1123334266], - [11.558562627, 48.1123696351], - [11.5587691571, 48.1123911251], - [11.5589274074, 48.112411216], - [11.5590722467, 48.1124273335], - [11.5592613424, 48.1124554832], - [11.5594705547, 48.1124809466], - [11.5597387756, 48.1125091522], - [11.5597924198, 48.1125158118], - [11.5600204076, 48.1125453605], - [11.5604468788, 48.1125989735], - [11.5606239046, 48.1126257799], - [11.5609457697, 48.1126727331], - [11.5612555648, 48.1127196863], - [11.561348101, 48.1127317743], - [11.5614714826, 48.1127491789], - [11.5616753305, 48.1127773284], - [11.5617678667, 48.1127907595], - [11.5621004607, 48.1128323401], - [11.5624719466, 48.1128819794], - [11.5627200509, 48.1129047563], - [11.5628259982, 48.1129155012], - [11.5630244817, 48.1129329057], - [11.563401332, 48.1129610551], - [11.563721856, 48.1129744862], - [11.563786229, 48.1129771724], - [11.5638412143, 48.1129785155], - [11.564210018, 48.1129906035], - [11.5644111837, 48.112995976], - [11.5645399298, 48.1129932898], - [11.5646659936, 48.1129906035], - [11.5648041273, 48.1129879173], - [11.5650978292, 48.1129744862], - [11.5651930476, 48.1129677707], - [11.5653204526, 48.1129584248], - [11.56583946, 48.1129195306], - [11.5660848821, 48.1128966977], - [11.5665153767, 48.1128524309], - [11.5667299534, 48.1128242814], - [11.5670276786, 48.1127786715], - [11.567212751, 48.1127478358], - [11.5674031879, 48.1127156569], - [11.5676794554, 48.112660701], - [11.5678175892, 48.1126311524], - [11.5679342653, 48.1126016597], - [11.5680616702, 48.1125627651], - [11.5681810285, 48.1125278999], - [11.5683044101, 48.1124863191], - [11.5683848764, 48.1124595126], - [11.5685095991, 48.1124165885], - [11.5686678494, 48.1123428285], - [11.568867674, 48.1122529508], - [11.5690205599, 48.1121872494], - [11.5691533293, 48.1121363223], - [11.5693571771, 48.1120625619], - [11.5695368851, 48.112004863], - [11.5696468557, 48.1119686543], - [11.5697890128, 48.1119351318], - [11.5700491871, 48.1118721162], - [11.570279857, 48.1118278486], - [11.5704179908, 48.1118064143], - [11.5705561246, 48.1117929828], - [11.5707385148, 48.1117768651], - [11.570920905, 48.1117634897], - [11.5712910498, 48.1117608034], - [11.5714439358, 48.1117594603], - [11.5717134978, 48.111766176], - [11.5719616021, 48.1117876103], - [11.5720259751, 48.1117916397], - [11.5720916892, 48.1117956691], - [11.5722150708, 48.1118064143], - [11.5722955371, 48.111813074], - [11.5725181605, 48.1118359074], - [11.5726938452, 48.1118533123], - [11.572987547, 48.1118734594], - [11.573218217, 48.1118895211], - [11.5734006072, 48.1119069819], - [11.573615184, 48.1119311024], - [11.5737412478, 48.1119445338], - [11.5738069619, 48.1119525926], - [11.5738445128, 48.1119512495], - [11.573884746, 48.1119539357], - [11.5740094687, 48.1119579092], - [11.5741757656, 48.1119539357], - [11.5744533743, 48.111927073], - [11.5747846271, 48.1118694299], - [11.5752727891, 48.111775522], - [11.5754296984, 48.11173797], - [11.5760184432, 48.1116092519], - [11.5760935451, 48.1115878176], - [11.5761203672, 48.1115811018], - [11.5761847402, 48.1115609546], - [11.5762665476, 48.1115381771], - [11.576349696, 48.1115073406], - [11.5764677132, 48.1114671021], - [11.5767560507, 48.1113625041], - [11.5769558753, 48.1112753111], - [11.5772187318, 48.1111465919], - [11.5774829294, 48.1109856364], - [11.5776076521, 48.1108944132], - [11.5777283515, 48.1107992163], - [11.5777699257, 48.1107656931], - [11.577838322, 48.1107107351], - [11.5779201294, 48.1106329431], - [11.5780676509, 48.1104881042], - [11.5781427528, 48.1103982232], - [11.5782674755, 48.1102506973], - [11.5783050264, 48.1102024546], - [11.5783573295, 48.110132665], - [11.578594705, 48.1098108033], - [11.5787502731, 48.1095828517], - [11.5788267161, 48.1094675043], - [11.5789474155, 48.1092502408], - [11.5790399517, 48.1090745601] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.582111081, 48.105019073], - [11.5820480491, 48.105111594], - [11.5819917227, 48.1051947676], - [11.5819461252, 48.1052618213], - [11.5818442012, 48.1053905553], - [11.5817570294, 48.1055018819], - [11.581675222, 48.1055997752], - [11.5815102662, 48.1057807851], - [11.581263503, 48.1060235298], - [11.5811213459, 48.1061697246], - [11.5809832121, 48.1063051727], - [11.5808035041, 48.1064916091], - [11.580763271, 48.1065331948], - [11.580661347, 48.1066364593], - [11.5804668869, 48.1068228385], - [11.5804132427, 48.1068697971], - [11.5803703274, 48.1069086959], - [11.580327412, 48.1069355053], - [11.5802670623, 48.1070293661], - [11.5802254881, 48.1070923877], - [11.5801517273, 48.1072131134], - [11.5801074709, 48.1073042872], - [11.5800417568, 48.1074048636], - [11.5799921359, 48.107496093], - [11.5798057224, 48.1078461214], - [11.5796970929, 48.1080740808], - [11.5795817579, 48.1082819466], - [11.5794221665, 48.1085635771], - [11.5793403591, 48.1087245401], - [11.5792411174, 48.1089404625], - [11.5790976192, 48.109238152], - [11.5790319051, 48.1093588727], - [11.5789527799, 48.1094836227], - [11.5788696314, 48.1096096597], - [11.5788012351, 48.1097021724], - [11.5787422265, 48.1097799658], - [11.5786470081, 48.1099167476], - [11.578608116, 48.1099650465], - [11.5785316731, 48.1100602449], - [11.5784525479, 48.1101554992], - [11.5784190203, 48.1101970819], - [11.5782259013, 48.1104384626], - [11.5781038607, 48.1105792721], - [11.5780408288, 48.1106490052], - [11.5778597797, 48.1108153343], - [11.5777323748, 48.110917247], - [11.577645203, 48.110981607], - [11.5774829294, 48.1110862057], - [11.5774024631, 48.1111345034], - [11.5772938336, 48.1111948336], - [11.5770537759, 48.1113303244], - [11.5768231059, 48.1114268635], - [11.5766621734, 48.1114818208], - [11.5765615906, 48.1115140563], - [11.5764422323, 48.1115542389], - [11.5762947108, 48.1115998499], - [11.5762665476, 48.1116052225], - [11.5762450899, 48.1116119382], - [11.5761445071, 48.1116387452], - [11.5760358776, 48.111664209], - [11.5756670739, 48.111756774], - [11.5754578615, 48.111803728], - [11.5752754713, 48.1118385937], - [11.5750220026, 48.1118922073], - [11.5745472516, 48.11197537], - [11.5742253865, 48.1120196375], - [11.5739759411, 48.1120263532], - [11.5738136674, 48.1120196375], - [11.5737452711, 48.1120169512], - [11.5736406649, 48.1120129218], - [11.5732061471, 48.1119861151], - [11.5729687716, 48.1119605955], - [11.5728883053, 48.1119525926], - [11.572768947, 48.1119405044], - [11.5725597347, 48.1119230436], - [11.5723558868, 48.1119056387], - [11.5722512807, 48.1118935505], - [11.5721225346, 48.1118801751], - [11.5720273162, 48.1118721162], - [11.5719508733, 48.1118654005], - [11.5717376376, 48.1118546554], - [11.5715391542, 48.1118465966], - [11.5710764731, 48.1118399368], - [11.5709437038, 48.1118453094], - [11.5708069111, 48.1118546554], - [11.5706432964, 48.1118680868], - [11.570561489, 48.1118774888], - [11.5705024804, 48.1118828613], - [11.5701953675, 48.1119311024], - [11.5698332692, 48.1120102356], - [11.5696522201, 48.1120585325], - [11.5694510545, 48.1121242341], - [11.5693477894, 48.1121604427], - [11.5691332127, 48.1122422618], - [11.5689763035, 48.1123106494], - [11.568828782, 48.1123750076], - [11.5687107648, 48.1124259904], - [11.5685484911, 48.1124943778], - [11.5683365966, 48.1125735101], - [11.5681220199, 48.1126351817], - [11.5679382886, 48.1126794487], - [11.5678470935, 48.1127008826], - [11.5677237119, 48.1127290881], - [11.5674769486, 48.1127800146], - [11.5671698357, 48.1128323401], - [11.5666789914, 48.1128966977], - [11.5664000417, 48.1129409644], - [11.5660889055, 48.1129758293], - [11.565800568, 48.1130066649], - [11.5652118231, 48.1130455591], - [11.5648778881, 48.1130670489], - [11.5648175384, 48.1130724213], - [11.5647317077, 48.1130763946], - [11.5645318831, 48.1130831102], - [11.5644286181, 48.1130844533], - [11.5642381812, 48.1130898257], - [11.5639431382, 48.1131005706], - [11.5637795235, 48.1130951982], - [11.5634978915, 48.1130817671], - [11.5630794669, 48.1130589902], - [11.5628313626, 48.113032184], - [11.5626369025, 48.1130120373], - [11.5624330546, 48.1129892604], - [11.5621326472, 48.1129517093], - [11.561745068, 48.1128926683], - [11.5616847183, 48.1128846656], - [11.561629733, 48.11287795], - [11.5614540483, 48.1128564602], - [11.561232766, 48.1128283108], - [11.5609457697, 48.1127947889], - [11.5605957414, 48.1127532082], - [11.5604321266, 48.1127331174], - [11.5599546934, 48.1126646744], - [11.5597655977, 48.112637868], - [11.5596462394, 48.1126218065], - [11.5594343449, 48.1125909147], - [11.5592412258, 48.1125667945], - [11.5590333546, 48.1125346156], - [11.5587624515, 48.1124997503], - [11.5587007607, 48.1124903485], - [11.5583856012, 48.1124501107], - [11.5581106747, 48.112421961], - [11.5578719581, 48.1123964976], - [11.5575138832, 48.1123723214], - [11.5571920182, 48.1123495442], - [11.5566555763, 48.1123361129], - [11.5563055481, 48.1123307404], - [11.5558898057, 48.1123387991], - [11.5557114388, 48.1123428285], - [11.5555786694, 48.1123441717], - [11.5554338301, 48.112348201], - [11.5553064252, 48.112348201], - [11.5551964546, 48.1123549167], - [11.5549349393, 48.1123495442], - [11.5543260778, 48.1123616323], - [11.5541986729, 48.1123602892], - [11.5540404226, 48.1123589461], - [11.55387949, 48.1123562598], - [11.5537306274, 48.1123508873], - [11.5536166335, 48.1123455148], - [11.5535401906, 48.1123441717], - [11.5533805991, 48.1123414854], - [11.5532464887, 48.1123414854], - [11.5524874235, 48.1123428285], - [11.55207034, 48.1123455148], - [11.5517685915, 48.1123508873], - [11.5512857939, 48.1123508873], - [11.5509344245, 48.1123387991], - [11.5507976319, 48.1123414854], - [11.5507359411, 48.1123441717], - [11.550542822, 48.1123307404], - [11.5503081287, 48.1123160219], - [11.5498226489, 48.112275784], - [11.5493291224, 48.1122328599], - [11.5491963531, 48.1122234579], - [11.5487873162, 48.1121926219], - [11.5487001444, 48.1121899356], - [11.5486196781, 48.11218322], - [11.5481838192, 48.1121456683], - [11.5476500596, 48.1121001137], - [11.5474421884, 48.1120853392], - [11.5470894779, 48.1120504737], - [11.5469178165, 48.112034356], - [11.5464336778, 48.1119740268], - [11.5463170017, 48.1119632817], - [11.5458409096, 48.1119351318], - [11.5456209685, 48.1119163838], - [11.5455726887, 48.1119123544], - [11.5455150212, 48.1119096681], - [11.5448686088, 48.1118748025], - [11.5447090174, 48.1118627142], - [11.5445252861, 48.1118453094], - [11.5443992223, 48.1118385937], - [11.5442825462, 48.1118278486], - [11.5440277363, 48.1117996986], - [11.5438802148, 48.1117728357], - [11.5436884369, 48.1117326534], - [11.5436294283, 48.1117192219], - [11.543382665, 48.1116588924], - [11.5430554355, 48.1115931342], - [11.5429132785, 48.1115569252], - [11.5426034833, 48.1114442685], - [11.5424412097, 48.1113839386], - [11.5422091986, 48.1112980887], - [11.5420415605, 48.1112391018], - [11.5419007446, 48.1111841443], - [11.5416794623, 48.1111076962], - [11.5415158476, 48.1110593984], - [11.5412623788, 48.1109789206], - [11.5410129334, 48.110917247], - [11.5407487358, 48.1108582037], - [11.5405703689, 48.1108246805], - [11.5404523517, 48.1108059321], - [11.5402713026, 48.1107750952], - [11.5399910117, 48.1107429152], - [11.5397938694, 48.1107200813], - [11.539557835, 48.1107040192], - [11.5393848325, 48.110702676], - [11.5390804018, 48.1106986465], - [11.5386794115, 48.1106838717], - [11.5386432017, 48.1106825285], - [11.5385654176, 48.1106811853], - [11.5384769047, 48.1106825285], - [11.5383280421, 48.1106811853], - [11.537235042, 48.1106745254], - [11.5371049548, 48.1106704959], - [11.5369923021, 48.1106704959], - [11.5368622149, 48.1106651232], - [11.5367173756, 48.1106610937], - [11.5363955106, 48.1106584074], - [11.5362037326, 48.110655721], - [11.5360776688, 48.1106597505], - [11.53583627, 48.1106570642], - [11.5355586613, 48.1106543779], - [11.5350892748, 48.1106409461], - [11.5348545815, 48.1106356294], - [11.5345568563, 48.1106235409], - [11.5343798305, 48.1106181682], - [11.5341116096, 48.1106074228], - [11.5339547003, 48.1105913607], - [11.5325988437, 48.1104451785], - [11.5315501, 48.110329833], - [11.531010976, 48.1102762177], - [11.5303860213, 48.110205085], - [11.529715469, 48.1101380378], - [11.5293600763, 48.1100991414], - [11.5289805437, 48.1100656177], - [11.5287310983, 48.1100495554], - [11.5281088258, 48.1100093157], - [11.5278325583, 48.1099958838], - [11.5272330846, 48.1099744488], - [11.5267730857, 48.109975792], - [11.5262259151, 48.1099985702], - [11.5258678402, 48.1099999134], - [11.5255459751, 48.1100052862], - [11.5252898241, 48.1100093157], - [11.5249585713, 48.1100160317], - [11.5245924498, 48.1100214044], - [11.5242383982, 48.110025378], - [11.5240238215, 48.1100294076], - [11.5237059797, 48.1100401531], - [11.5234887208, 48.1100482122], - [11.5232553686, 48.1100602449], - [11.5228329207, 48.1100830791], - [11.5219531561, 48.1100991414], - [11.5216326321, 48.1100977982], - [11.521194091, 48.1100924814], - [11.5206670369, 48.1100938246], - [11.5204551424, 48.1100977982], - [11.5200984086, 48.1100991414], - [11.5199830736, 48.1100991414], - [11.5198905374, 48.1101031709], - [11.5198140944, 48.1101058573], - [11.5197416748, 48.1101098869], - [11.5194774772, 48.1101487833], - [11.5193943287, 48.1101729046], - [11.5193675066, 48.1101823069], - [11.5192964281, 48.1102077714], - [11.5192146207, 48.1102506973], - [11.5190831925, 48.1103177444], - [11.5189812685, 48.1103727588], - [11.5188176538, 48.1104827315], - [11.5187170709, 48.1105430624], - [11.5185695494, 48.1106543779], - [11.5184877421, 48.1107267971], - [11.5183630193, 48.11086089], - [11.5182637776, 48.1109453975], - [11.518179288, 48.1110285617], - [11.5181028451, 48.1111251013], - [11.5180666352, 48.1111707127], - [11.5179794635, 48.1112739679], - [11.5178775395, 48.1113933407], - [11.5176602806, 48.1116789836], - [11.5175020302, 48.1119056387], - [11.5173746253, 48.1121644721], - [11.5173035468, 48.112337456], - [11.5172525848, 48.1124689144], - [11.5172123517, 48.1126030028], - [11.5171855296, 48.1126982524], - [11.5171452964, 48.1128148796], - [11.5171251799, 48.1129543955], - [11.5170970167, 48.1131837313], - [11.5170836056, 48.1134076936], - [11.5170715357, 48.1135847026], - [11.5170567835, 48.1138140355], - [11.5170178915, 48.1140058171], - [11.5170205737, 48.1141184681], - [11.517011186, 48.1142887593], - [11.5170085038, 48.1143813195], - [11.5170071627, 48.1144658212], - [11.516997775, 48.1147702499], - [11.5169950927, 48.1148815562], - [11.516985705, 48.1154836917], - [11.5169749762, 48.1157948295], - [11.5169709529, 48.115884701], - [11.5169696118, 48.1159276221], - [11.5169696118, 48.1160764748], - [11.516972294, 48.1164063554], - [11.5169763173, 48.1164841387], - [11.5169870461, 48.1166665651], - [11.517011186, 48.1169093144], - [11.5170594658, 48.1172780806], - [11.5171452964, 48.1178158927] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5825482811, 48.1041191536], - [11.5825335289, 48.1041433337], - [11.5823819841, 48.1044142402], - [11.5823363866, 48.1044826383], - [11.5822586025, 48.1045939109], - [11.582187524, 48.1046971793], - [11.582123151, 48.1047964175], - [11.5820480491, 48.104914462], - [11.5820118393, 48.1049707695], - [11.5819675828, 48.1050391668], - [11.5819032098, 48.1051357177], - [11.5817530061, 48.1053382222], - [11.5815236772, 48.1056238987], - [11.5814619864, 48.1056882653], - [11.5812648441, 48.1058947974], - [11.5810690428, 48.1060999854], - [11.5808169152, 48.1063494451], - [11.5806050206, 48.106577411], - [11.5804266537, 48.1068014022], - [11.5803891028, 48.1068523345], - [11.580327412, 48.1069355053] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5835044886, 48.1265330792], - [11.5836372579, 48.1266108471], - [11.5841468777, 48.1271539884] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5837820972, 48.1688234457], - [11.5846497918, 48.1686718949] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5846538152, 48.1321160685], - [11.5848429109, 48.1322796989], - [11.5849287416, 48.1323775972], - [11.5851111318, 48.1325371989] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5851111318, 48.1325371989], - [11.5849287416, 48.1323775972], - [11.5848429109, 48.1322796989], - [11.5846538152, 48.1321160685] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5851687993, 48.1426397128], - [11.5851352717, 48.1425780212], - [11.5850910152, 48.1424855118], - [11.5847919489, 48.1416794867], - [11.5847825612, 48.1416231634] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5903065707, 48.1387223495], - [11.5901255215, 48.1388175506], - [11.5899592246, 48.138902068], - [11.5891384686, 48.1393151442] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5905278529, 48.1609015625], - [11.5899712945, 48.1609981202], - [11.5897111203, 48.1610423455], - [11.5896360184, 48.1610571059], - [11.5894844736, 48.1610987034] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.591080388, 48.1401304913], - [11.5910777058, 48.1401211505], - [11.5910455192, 48.1400071581], - [11.590990534, 48.1398019377], - [11.5909301843, 48.1396289344], - [11.5907665695, 48.1393070896], - [11.5906633045, 48.1391233452], - [11.5905922259, 48.1390294871], - [11.5905278529, 48.1389516821], - [11.5904044713, 48.1388282901], - [11.5903065707, 48.1387223495], - [11.590246221, 48.1386633381], - [11.5899659301, 48.1383897595], - [11.5899082626, 48.1383334327], - [11.5897419657, 48.138171164], - [11.5895220245, 48.1379633073], - [11.5894241239, 48.1378707336], - [11.5893637742, 48.1377983525], - [11.5893396343, 48.1377500798], - [11.589296719, 48.1376548208] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5927970017, 48.1058452074], - [11.5928962435, 48.1058760472], - [11.5929552521, 48.1059001706], - [11.5930223073, 48.1059202641], - [11.5933428313, 48.1060221865], - [11.5936915184, 48.1061267953], - [11.5940241124, 48.1062086239], - [11.594327202, 48.1062756763], - [11.5945887174, 48.1063292958], - [11.594891807, 48.106387001], - [11.5951010193, 48.1064272435], - [11.595290115, 48.1064607696], - [11.5954430009, 48.1064889225], - [11.5955449249, 48.1065076725], - [11.595610639, 48.106519762], - [11.5957849826, 48.1065465716], - [11.5958828832, 48.1065318515], - [11.5959418918, 48.1065385119], - [11.5960424746, 48.1065653775], - [11.5961443986, 48.1065908438], - [11.5962503458, 48.10662034] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5946329738, 48.1643884287], - [11.5948757137, 48.1642261306], - [11.5951251592, 48.1640504701], - [11.5953397359, 48.1639082977], - [11.5954255666, 48.1638519988], - [11.5956455077, 48.1636695723], - [11.5956843997, 48.1636360836], - [11.5958118047, 48.1635461838], - [11.5959928538, 48.1633825972], - [11.5961055065, 48.1632914111], - [11.5962020661, 48.1632082197], - [11.5962798501, 48.1631385021], - [11.5963723863, 48.1630607336], - [11.5964595581, 48.162982965], - [11.5965641643, 48.162894406], - [11.5966660882, 48.1628193207], - [11.5967103447, 48.1627804083], - [11.5967639889, 48.1627415517], - [11.5968189741, 48.1627026392], - [11.5968726183, 48.1626664103], - [11.5969048048, 48.1626463391], - [11.5969919766, 48.1625886411], - [11.5970187987, 48.162575223], - [11.5972950662, 48.1624518878] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.5481167639, 48.1761847764], - [11.548348775, 48.1761847764], - [11.5483715738, 48.1761847764], - [11.5486371125, 48.1761794106], - [11.5488932635, 48.1761740447], - [11.549130639, 48.1761686789], - [11.5491386856, 48.1761686789], - [11.5494457985, 48.1761606302], - [11.5507681276, 48.1761109962], - [11.5510135497, 48.1761083133], - [11.5514078344, 48.1761056303], - [11.5523694063, 48.176101606], - [11.5536179746, 48.1760922157], - [11.5539022888, 48.1760895328], - [11.5541772152, 48.1760895328], - [11.5552299823, 48.176081484], - [11.5553587283, 48.1760828255], - [11.5555303897, 48.1760828255], - [11.5558401848, 48.1760975816], - [11.5560708548, 48.1760975816], - [11.5568084623, 48.1760922157], - [11.5570525433, 48.1760895328], - [11.5571960415, 48.1760881914], - [11.557690909, 48.176084167], - [11.5579296256, 48.1760801426], - [11.5580583717, 48.1760761182], - [11.5581750478, 48.1760747767], - [11.5583346392, 48.1760761182], - [11.5585518981, 48.1760761182], - [11.5588616933, 48.1760640451], - [11.5590065326, 48.1760600766], - [11.5597159768, 48.1760493449], - [11.560039183, 48.1760412961], - [11.5605729426, 48.1760332473], - [11.5609672273, 48.1760225156], - [11.5611469353, 48.1760184913], - [11.5612233783, 48.1760171498], - [11.561399063, 48.1760131254], - [11.5615693833, 48.1760131254], - [11.561809441, 48.1760050766], - [11.5621715392, 48.1759956864], - [11.562272122, 48.1759943449], - [11.5629735197, 48.1759876376], - [11.5632296706, 48.1759809303], - [11.5634858216, 48.1759782474], - [11.5638103689, 48.1759701986], - [11.5638868119, 48.1759688571], - [11.5639806892, 48.1759621498], - [11.5640490855, 48.1759608084], - [11.5644929911, 48.175956784], - [11.564632466, 48.1759634913], - [11.5647853519, 48.1759661742], - [11.564966401, 48.1759755645], - [11.565081736, 48.1759849547], - [11.5650978292, 48.1759862962], - [11.5652212108, 48.1759983693], - [11.5652533973, 48.1760010523], - [11.5653486158, 48.176011784], - [11.5655122305, 48.1760372717], - [11.5656517054, 48.1760627036], - [11.5658542122, 48.1761069718], - [11.5659507717, 48.1761311181], - [11.5662069227, 48.1761968495], - [11.5664027239, 48.1762478249], - [11.5664791669, 48.1762679467], - [11.5666414405, 48.1763108174], - [11.5669257547, 48.1763953289], - [11.567148378, 48.1764583772], - [11.5675171818, 48.1765508813], - [11.567584237, 48.176571003], - [11.5676727499, 48.1765964905], - [11.5677558984, 48.1766246609], - [11.5686463918, 48.1769089908], - [11.5690809096, 48.1770457615], - [11.5698533858, 48.1772697248], - [11.5708377565, 48.1774842971], - [11.5712253357, 48.1775916109], - [11.5715539063, 48.1776706988], - [11.571690699, 48.1777042343], - [11.5718543137, 48.177741794], - [11.5719844009, 48.1777713051], - [11.5721466745, 48.1777994749], - [11.5723102893, 48.1778249618], - [11.5725490059, 48.1778571557], - [11.572704574, 48.1778745382], - [11.5728547777, 48.177893318], - [11.572935244, 48.177900025], - [11.5730452145, 48.1779053907], - [11.5732812489, 48.1779147806], - [11.5735548343, 48.1779295361], - [11.5741020049, 48.1779416088], - [11.5747403706, 48.1779349018], - [11.5750166382, 48.1779322189], - [11.5751534308, 48.1779268533], - [11.5752553548, 48.1779228291], - [11.5753653253, 48.1779201462], - [11.5757435168, 48.177900025], - [11.5761485304, 48.1778745382], - [11.5771731342, 48.1777887435], - [11.5775701011, 48.1777511839], - [11.5781521405, 48.1776961858], - [11.579005083, 48.1776331391], - [11.5791163946, 48.1776250906], - [11.5792920793, 48.1776144151], - [11.5799975003, 48.177547344], - [11.5806009973, 48.1775057599], - [11.5814029778, 48.1774735658], - [11.5816256012, 48.1774682001], - [11.5817677583, 48.1774668586], - [11.5820681657, 48.1774695415], - [11.5833314861, 48.1774722243], - [11.5839269365, 48.1774896628], - [11.5841468777, 48.17749637], - [11.584305128, 48.1774990528], - [11.5845210458, 48.1775044185], - [11.5848590041, 48.177512467], - [11.5850588287, 48.177512467], - [11.5855201687, 48.1775231984], - [11.5857950951, 48.1775258813], - [11.5860606338, 48.1775299055], - [11.5862752105, 48.1775285641], - [11.5864549185, 48.1775231984], - [11.5869913603, 48.1774789314], - [11.5874339248, 48.177423933], - [11.5878255273, 48.1773622833], - [11.5882224943, 48.1772764319], - [11.5884799863, 48.1772147262], - [11.5885980035, 48.1771838732], - [11.5888273324, 48.1771074675], - [11.5891465153, 48.1769988112], - [11.5893852319, 48.176915698], - [11.5895971264, 48.1768365531], - [11.5897795166, 48.1767654566], - [11.5899042393, 48.1767198476], - [11.5902408565, 48.1766031977], - [11.5903454627, 48.1765602714], - [11.5913472678, 48.1761606302], - [11.5915001537, 48.1760922157], - [11.5916007365, 48.1760493449], - [11.5917013193, 48.1760064181], - [11.5917281414, 48.1759956864], - [11.5918515231, 48.1759433693], - [11.5922350789, 48.1757811078], - [11.592363825, 48.1757247661], - [11.5925234164, 48.175659034], - [11.5926172937, 48.1756201873], - [11.5927929784, 48.1755477477], - [11.5929391588, 48.1754820154], - [11.5931309368, 48.1754002412], - [11.5931805576, 48.175380119], - [11.5936271454, 48.1751816356], - [11.5940911676, 48.174984493], - [11.5941837038, 48.1749442483], - [11.5943714584, 48.1748597344], - [11.5945913996, 48.1747564952], - [11.5947885419, 48.1746652735], - [11.5949333812, 48.1745928885], - [11.5950889493, 48.1745150814], - [11.5953880156, 48.1743635475], - [11.5960920955, 48.174002793], - [11.5966647471, 48.1737104537], - [11.5968726183, 48.1736044734], - [11.596919557, 48.1735776428], - [11.5971153582, 48.173469035], - [11.5972494687, 48.1734046416], - [11.597343346, 48.1733564024], - [11.5974063779, 48.1733268887], - [11.5977201964, 48.1731673019], - [11.5978167559, 48.1731190066], - [11.5980930234, 48.1729956409], - [11.5982780959, 48.1728963667], - [11.5984779204, 48.1727917821], - [11.5986576284, 48.1727018984], - [11.5988279487, 48.1726174366], - [11.5989821757, 48.1725396266], - [11.599101534, 48.1724766295], - [11.5992047991, 48.1724229673], - [11.5993120874, 48.1723599141], - [11.5993885304, 48.1723103323], - [11.5994515623, 48.1722674024], - [11.5995521451, 48.1721949581], - [11.5996567513, 48.1721064708], - [11.5997452642, 48.1720126171], - [11.5998418237, 48.1718757771], - [11.5998820568, 48.1718087544], - [11.5999316777, 48.1717041676], - [11.5999692286, 48.1716022078], - [11.599986663, 48.1715137195], - [11.5999933685, 48.171464081], - [11.5999947096, 48.1714426157], - [11.5999987329, 48.1713635182], - [11.5999973918, 48.1712857063], - [11.5999826397, 48.1711999006], - [11.5999678875, 48.1711314796], - [11.5999491121, 48.1710711639], - [11.5999088789, 48.1709705444], - [11.5998297538, 48.1708270495], - [11.5997895206, 48.1707640503], - [11.5996554102, 48.1705655491], - [11.5996031071, 48.1704890775], - [11.5995038654, 48.1703428981], - [11.5994368101, 48.1702436747], - [11.5993563439, 48.1701256685], - [11.5992731954, 48.1700103453], - [11.5991846825, 48.1698762391], - [11.5990854408, 48.1697340828], - [11.5990532543, 48.1696844426], - [11.5990130211, 48.1696173611], - [11.5988722051, 48.1694242779], - [11.5987139548, 48.1691895472], - [11.5986294652, 48.1690608054], - [11.5985382701, 48.1689307217], - [11.5985329057, 48.1689226718], - [11.5983022357, 48.1685874265], - [11.598292848, 48.1685740099], - [11.5981815363, 48.1684036751], - [11.5980836357, 48.1682655397], - [11.5980259682, 48.1681810706], - [11.59789454, 48.1679839011], - [11.5977738406, 48.1678095952], - [11.5976678933, 48.1676607248], - [11.5974627043, 48.1673629826], - [11.5970509852, 48.1667648655], - [11.5969316269, 48.1665945247], - [11.5968994404, 48.1665449373], - [11.5968645717, 48.1664993192], - [11.5968243386, 48.1664429673], - [11.5968028809, 48.1664094804], - [11.5967559422, 48.1663397112], - [11.5966862048, 48.1662431635], - [11.596560141, 48.1660741627], - [11.5964099373, 48.1658582568], - [11.5962959434, 48.1656906523], - [11.5962355937, 48.1655953892], - [11.5961511041, 48.1654398596], - [11.59607332, 48.165286957], - [11.5960250403, 48.1651823569], - [11.5959861482, 48.1650764148], - [11.5959526206, 48.1649812064], - [11.5959325041, 48.1649060683], - [11.5959123875, 48.164814885], - [11.5959016587, 48.1647143091], - [11.5958962942, 48.1646083661], - [11.5958976354, 48.1645051063], - [11.5959137286, 48.1643079226], - [11.5959365274, 48.1641859334], - [11.5959713961, 48.1640638879], - [11.5960022415, 48.1639405004], - [11.5960263814, 48.163864019], - [11.5960679556, 48.1637500234], - [11.5961457397, 48.1635757031], - [11.5962060894, 48.1634684159], - [11.5962718035, 48.1633651539], - [11.5963361765, 48.1632699424], - [11.5963992084, 48.1631948577], - [11.5964622403, 48.1631170334], - [11.5965145434, 48.1630661009], - [11.5965520944, 48.1630285304], - [11.5965829398, 48.1629923017], - [11.5966446306, 48.1629360019], - [11.5967559422, 48.1628340806], - [11.5968095864, 48.1627898009], - [11.5969007815, 48.1627147155], - [11.5969678367, 48.1626677521], - [11.5970255042, 48.1626262119], - [11.5971220638, 48.162560463], - [11.5972950662, 48.1624518878], - [11.5973513926, 48.1624170005], - [11.5974707509, 48.1623445982], - [11.597574016, 48.1622882418], - [11.5975914503, 48.162278849], - [11.5977698172, 48.1621822937], - [11.5978583301, 48.1621353857], - [11.5980071927, 48.1620521925], - [11.5981694664, 48.1619623459], - [11.5983156468, 48.1618805501], - [11.5984229351, 48.1618215654], - [11.5989513303, 48.1615318403], - [11.5991806592, 48.1614071608], - [11.5992343034, 48.1613776402], - [11.5993040408, 48.1613400685], - [11.5993295218, 48.16132665], - [11.5995199586, 48.1612167303], - [11.5996299292, 48.1611523215], - [11.5997734274, 48.1610664989], - [11.5998927857, 48.1609940947], - [11.600012144, 48.1609190066], - [11.6001221146, 48.1608438626], - [11.6002240385, 48.1607768255], - [11.6002602483, 48.160752672], - [11.6003635134, 48.1606842929], - [11.6004305686, 48.1606413533], - [11.6007524337, 48.1603825405] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6015852596, 48.1458194945], - [11.6013881172, 48.1455861099], - [11.6010327245, 48.1451757688], - [11.6009147073, 48.1450215195], - [11.6008154656, 48.1448860616], - [11.6006746496, 48.1446755475], - [11.6004573907, 48.1443429401], - [11.6002119686, 48.1439392446], - [11.6001046802, 48.1437367245], - [11.6000711526, 48.1436415325], - [11.5999209489, 48.1432445431], - [11.599896809, 48.1431574041], - [11.599781474, 48.1427644379], - [11.5997345353, 48.1425739942], - [11.5996701623, 48.1423634706], - [11.5996393169, 48.1422655355], - [11.5995870139, 48.1420979099], - [11.5995561684, 48.1420053995], - [11.599511912, 48.1418940961], - [11.5994824077, 48.1418444289], - [11.599383166, 48.141680829], - [11.5993254985, 48.141603028], - [11.5992571021, 48.1415145439], - [11.5991323794, 48.141391158], - [11.5990197266, 48.1412973041], - [11.5989191438, 48.1412275567], - [11.5988413597, 48.1411792872], - [11.5987059082, 48.1410626125] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 3, - "events": [ - { - "description": "Emergency vehicle" - }, - { - "description": "Traffic lights not working" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6033286954, 48.1461842502], - [11.6033944095, 48.1460635601], - [11.6034601237, 48.1460005304], - [11.6035379077, 48.145938843], - [11.6035915519, 48.1458999736] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 3, - "events": [ - { - "description": "Emergency vehicle" - }, - { - "description": "Traffic lights not working" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6035915519, 48.1458999736], - [11.6035379077, 48.145938843], - [11.6034601237, 48.1460005304], - [11.6033944095, 48.1460635601], - [11.6033286954, 48.1461842502] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6041092183, 48.107953413], - [11.6041454281, 48.1073123468], - [11.6041923667, 48.1070803542], - [11.6042393054, 48.1068483047], - [11.6043398882, 48.1065170754], - [11.6044297422, 48.1062207135], - [11.6045987214, 48.105740598], - [11.6046040858, 48.1057231351], - [11.6047261263, 48.1054267686], - [11.6047623361, 48.1053597151], - [11.6048401202, 48.1052148614], - [11.6051727141, 48.1045979409] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.606826296, 48.071046181], - [11.606955042, 48.0710797301], - [11.60713475, 48.0711065582], - [11.6071696187, 48.0711105908], - [11.6076430286, 48.0711038698] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6076430286, 48.0711038698], - [11.6071696187, 48.0711105908], - [11.60713475, 48.0711065582], - [11.606955042, 48.0710797301], - [11.606826296, 48.071046181] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6122456993, 48.1539090015], - [11.6121048833, 48.1539801296], - [11.6118031348, 48.1541424042], - [11.6114611532, 48.1542979681], - [11.6113592292, 48.1543475673], - [11.6112304832, 48.1544146128], - [11.6110762562, 48.1544870263], - [11.6107892598, 48.1546184887], - [11.6105706598, 48.1547110322], - [11.6103547419, 48.1547968096], - [11.6102568413, 48.154834386], - [11.6098250057, 48.1550154461], - [11.6096466388, 48.1550892007], - [11.6093127037, 48.1552286577], - [11.60917457, 48.1552836799], - [11.6088969613, 48.1553962964], - [11.6087829675, 48.1554432664], - [11.6085938717, 48.1555210464], - [11.608135214, 48.1557047881], - [11.6080614532, 48.155734256], - [11.6075679268, 48.1559367847], - [11.6072152163, 48.1560802653], - [11.6070770825, 48.1561365727], - [11.6063528861, 48.1564316401], - [11.6062335278, 48.1564798953], - [11.6061235572, 48.1565282063], - [11.6057949866, 48.1566596076], - [11.6054395939, 48.1567937483], - [11.6051297988, 48.1569238069], - [11.6050573791, 48.156954672], - [11.6050158049, 48.1569721175], - [11.6049514319, 48.1570029267], - [11.6048320736, 48.1570472113], - [11.6047529484, 48.1570807603], - [11.6046456601, 48.157122305], - [11.6045946981, 48.1571397505], - [11.6042849029, 48.1572698082], - [11.6039456035, 48.1574240766], - [11.6037256624, 48.1575313765], - [11.6035808231, 48.1576131792], - [11.6035392488, 48.1576386202], - [11.6033273543, 48.1577714164], - [11.6032710279, 48.1578102768], - [11.6032133604, 48.1578532188], - [11.6031503285, 48.1578987887], - [11.6030242647, 48.1579993779], - [11.6028365101, 48.1581482764], - [11.602823099, 48.1581616957], - [11.6026380266, 48.1583360344], - [11.6025749947, 48.1584030746], - [11.6025374438, 48.1584459603], - [11.6022933627, 48.1587356468], - [11.6020921971, 48.1589944679], - [11.6018226351, 48.1593592977], - [11.6013787295, 48.1599332913], - [11.6013438608, 48.1599640987], - [11.6013022865, 48.1600070389], - [11.6012486423, 48.1600579744], - [11.6009321417, 48.1603530194], - [11.6008476521, 48.1604294501], - [11.600512376, 48.1606910022], - [11.6003179158, 48.1608277603], - [11.6002468373, 48.1608774091], - [11.6001864876, 48.1609163229], - [11.5999450888, 48.1610705245], - [11.599640658, 48.1612475369], - [11.5994877721, 48.1613373848], - [11.5992799009, 48.1614513857], - [11.5991431083, 48.1615278148], - [11.5990559365, 48.1615761211], - [11.5988802518, 48.1616726775], - [11.5987743045, 48.1617289788], - [11.5985449756, 48.1618550553], - [11.5982941891, 48.1619972334], - [11.5981453265, 48.1620830545], - [11.5980836357, 48.1621166002], - [11.5978489424, 48.1622479871], - [11.5976652111, 48.1623499096], - [11.5976155902, 48.162376746], - [11.5974264945, 48.1624840355], - [11.5972561742, 48.1625913247], - [11.5970952417, 48.1626999556], - [11.5970509852, 48.1627321591], - [11.5970120932, 48.1627630207], - [11.5969262625, 48.162831397], - [11.5968471373, 48.1628984314], - [11.5967224146, 48.163017796], - [11.596663406, 48.1630781771], - [11.596649995, 48.1630902533], - [11.5965923275, 48.1631559455], - [11.59653466, 48.1632243213], - [11.596458217, 48.1633208747], - [11.5963978673, 48.1634054077], - [11.5963495876, 48.1634818338], - [11.5963026489, 48.1635663106], - [11.596239617, 48.1636950662], - [11.5961980428, 48.1637795426], - [11.5961671974, 48.1638546824], - [11.5961162354, 48.1639847231], - [11.5960813667, 48.1641242118], - [11.5960558857, 48.1642596748], - [11.5960411335, 48.1643629351], - [11.5960317458, 48.1644621699], - [11.5960277225, 48.1645734803], - [11.5960357691, 48.1647183344], - [11.5960572268, 48.1648497706], - [11.5960840489, 48.1649530297], - [11.5961376931, 48.1651005662], - [11.5961926783, 48.1652252927], - [11.5962516869, 48.1653606969], - [11.59631606, 48.165484081], - [11.5963844563, 48.1656020979], - [11.5966419484, 48.1660031073], - [11.5967318024, 48.166130515], - [11.5968565251, 48.1663115352], - [11.5969021226, 48.1663692289], - [11.5969477202, 48.1664295502], - [11.5969919766, 48.1664845604], - [11.597034892, 48.1665476208], - [11.597048303, 48.1665676905] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6030752267, 48.183759317], - [11.6030993666, 48.1837660233], - [11.6033421065, 48.1838223562], - [11.603567412, 48.1838719827], - [11.6040113176, 48.1839631881], - [11.604079714, 48.1839766006], - [11.6043720747, 48.1840342745], - [11.6047408785, 48.1840973133], - [11.6049876417, 48.1841509074], - [11.6052156295, 48.1842005337], - [11.6056541706, 48.1843038096], - [11.6061101462, 48.1844231803], - [11.6064856554, 48.1845345033], - [11.6065674628, 48.1845599869], - [11.6066841389, 48.1845948591], - [11.6068987156, 48.1846605797], - [11.607339939, 48.1848174481], - [11.60781469, 48.1849944904], - [11.6081687416, 48.1851447077], - [11.6084222103, 48.1852560291], - [11.6086367871, 48.1853565646], - [11.6090136374, 48.1855322639], - [11.6092067565, 48.1856328548], - [11.6094843651, 48.1857803877], - [11.6097083296, 48.1859051198], - [11.6098920609, 48.1860083365], - [11.6099510695, 48.1860485725], - [11.6100892033, 48.1861277032], - [11.6102595235, 48.186243046], - [11.6102890278, 48.186263164], - [11.610471418, 48.1863811889], - [11.6106350328, 48.1864898253], - [11.6108080353, 48.186610532], - [11.6110547985, 48.1867982976], - [11.611266693, 48.1869578419], - [11.6114155556, 48.1870772064], - [11.6115925814, 48.1872300999], - [11.6118661667, 48.1874728508], - [11.6121249999, 48.1877223064], - [11.6122658159, 48.1878658099], - [11.6122980024, 48.1879006799], - [11.6123382355, 48.1879435967], - [11.6123516466, 48.1879583493], - [11.6124106552, 48.188018701], - [11.6124401595, 48.1880508886], - [11.6125796343, 48.1881956764], - [11.612716427, 48.1883646602], - [11.6128518785, 48.1885282789], - [11.6130047645, 48.1887240842], - [11.6132448222, 48.1890714356], - [11.6132716442, 48.1891076459], - [11.6133923437, 48.1892940611], - [11.6135049964, 48.1894697469], - [11.6136444713, 48.1897205339], - [11.6137638296, 48.1899377922], - [11.6139770652, 48.1903186626], - [11.6142224873, 48.1907826769] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6198980416, 48.1200126322], - [11.6198014821, 48.119842304], - [11.6194045152, 48.1191449263], - [11.6192113961, 48.1187988918], - [11.6191389765, 48.1186634766], - [11.6190772857, 48.1185494366], - [11.6188774611, 48.1181350743], - [11.6187594439, 48.1178641841], - [11.6186789776, 48.117677733], - [11.6184630598, 48.1171734945], - [11.618080845, 48.1163084827], - [11.6180473174, 48.1162320422], - [11.6179601456, 48.1160281817], - [11.6178783382, 48.115848495], - [11.6176718081, 48.1154153082], - [11.6176436449, 48.11535364], - [11.6176114584, 48.1152932587], - [11.6175792719, 48.1152342764], - [11.6175148989, 48.1151162556], - [11.6174813713, 48.115054531], - [11.6173311676, 48.1147809385], - [11.6172654535, 48.1146616295], - [11.6170347835, 48.1142405204], - [11.6168993319, 48.1140553992], - [11.6167705859, 48.1138797349], - [11.6165104116, 48.1135753009], - [11.616181841, 48.1131971063] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6214054431, 48.1521575529], - [11.6211640443, 48.1521562108], - [11.6210688259, 48.1521548687], - [11.6210057939, 48.1521535266], - [11.6208166982, 48.1521548687], - [11.6206195558, 48.1521548687], - [11.6201836969, 48.1521562108], - [11.6195359434, 48.1521562108], - [11.6193535532, 48.1521562108], - [11.619274428, 48.1521562108], - [11.6190397347, 48.1521562108], - [11.6186722721, 48.1521575529], - [11.6178072597, 48.152158895] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6237765159, 48.3002543717], - [11.6241050865, 48.3000451647], - [11.6243290509, 48.2998976264], - [11.6245194878, 48.2997742314], - [11.6245369221, 48.2997635256], - [11.6245852019, 48.2997313525], - [11.62474077, 48.2996334392], - [11.6250183786, 48.2994497117], - [11.6251162793, 48.2993907181], - [11.6253174449, 48.2992686601], - [11.6253523137, 48.2992458544], - [11.6256191935, 48.2990742254], - [11.6257747616, 48.2989776491], - [11.6258659567, 48.2989159784], - [11.6260724868, 48.2988127105], - [11.6261422242, 48.2987308544], - [11.6262441482, 48.2986665069], - [11.6263272966, 48.2986182183], - [11.6264627482, 48.2985404324] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6305289771, 48.1183228108], - [11.630707344, 48.1184261075], - [11.63083609, 48.1184891151], - [11.6310506667, 48.1185977274] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Queuing traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6299107279, 48.1702128176], - [11.6300180162, 48.1701618921], - [11.6300703193, 48.1701404263], - [11.6301896776, 48.1700974946], - [11.6304713096, 48.1699875378], - [11.6306148077, 48.1699580221], - [11.6307408716, 48.1699258232], - [11.6309997047, 48.169858798], - [11.6311888005, 48.1698212325], - [11.6315576042, 48.1697474431], - [11.6322496141, 48.1696119946], - [11.6341258193, 48.1692673623], - [11.634391358, 48.1692136967], - [11.6346126403, 48.169160087] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6474215294, 48.1267033852], - [11.6483227517, 48.1266027906] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - }, - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6483227517, 48.1266027906], - [11.6474215294, 48.1267033852] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.6598240639, 48.3160847627], - [11.6598696615, 48.3160110168], - [11.6599125768, 48.3159842051], - [11.659966221, 48.3159774604], - [11.6607386972, 48.3162389989] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7467222716, 48.3200075239], - [11.7470883931, 48.3205305582] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7550223674, 48.1679208984], - [11.7550116386, 48.167971826], - [11.7549955453, 48.1680483013], - [11.7549794521, 48.1681274039], - [11.7548413183, 48.1684988771], - [11.7547031845, 48.1688086875], - [11.7546656336, 48.1688905281], - [11.7546468581, 48.1689240134], - [11.7544966544, 48.1691775283], - [11.7542458679, 48.1695503355], - [11.7541493084, 48.1697903751] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 8, - "events": [ - { - "description": "Closed" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7541493084, 48.1697903751], - [11.7542458679, 48.1695503355], - [11.7544966544, 48.1691775283], - [11.7546468581, 48.1689240134], - [11.7546656336, 48.1688905281], - [11.7547031845, 48.1688086875], - [11.7548413183, 48.1684988771], - [11.7549794521, 48.1681274039], - [11.7549955453, 48.1680483013], - [11.7550116386, 48.167971826], - [11.7550223674, 48.1679208984] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7465170826, 48.0923067399], - [11.7465586569, 48.0923657485], - [11.7466619219, 48.0925105825], - [11.7468469943, 48.0927801507], - [11.7470454778, 48.0930604105], - [11.7473673429, 48.0935338144], - [11.7475604619, 48.093824875], - [11.7476757969, 48.0939965211], - [11.7477321233, 48.0940836875], - [11.747766992, 48.0941346325], - [11.7481451835, 48.0947086277], - [11.7484670486, 48.0952129187], - [11.7488278057, 48.0957815277], - [11.749062499, 48.0961516771], - [11.7493293788, 48.0965982378], - [11.7495707776, 48.0969925649], - [11.7498550917, 48.0974633015], - [11.7500575985, 48.0978092558], - [11.7500777151, 48.097844131], - [11.7503472771, 48.0983001374], - [11.750551125, 48.0986595208], - [11.7507281508, 48.0989707046], - [11.7508045937, 48.0991074591], - [11.75110366, 48.0996452374], - [11.7512417938, 48.0998839808], - [11.7524782922, 48.1022040716], - [11.7526459302, 48.1025152339], - [11.7526834811, 48.1026104461], - [11.7530348505, 48.1033051377], - [11.7530817892, 48.1034070653], - [11.7532051708, 48.1036726023], - [11.7534237708, 48.104136617], - [11.7535055782, 48.1043136579], - [11.7538408543, 48.1050740371], - [11.7540111746, 48.1054763591], - [11.7541788127, 48.1058747039], - [11.7542928066, 48.1061496312], - [11.7543853428, 48.1063722249], - [11.7544537391, 48.1065344821], - [11.7546763624, 48.1070857273], - [11.7547031845, 48.1071554651], - [11.7547621931, 48.1072949404], - [11.7548560704, 48.1075269319], - [11.7550129797, 48.1079145149], - [11.7552168276, 48.1083986398], - [11.7552758362, 48.1085502008], - [11.7553026582, 48.1086132204], - [11.7554595675, 48.1090544679], - [11.7556097712, 48.1095037148], - [11.7558095958, 48.1100777064], - [11.7558779921, 48.1102681587], - [11.7560429479, 48.110733513], - [11.7561059798, 48.1109346522], - [11.7561488952, 48.1110647711], - [11.7562038805, 48.1112243271], - [11.756223997, 48.1112887426], - [11.7563326265, 48.111618654], - [11.7564358916, 48.1119579092], - [11.756556591, 48.1123468579], - [11.7567604388, 48.1129999494], - [11.7569321002, 48.1135967904], - [11.7570568229, 48.1140232212], - [11.7571681346, 48.1144228989], - [11.7572325076, 48.1146562572], - [11.7573719825, 48.1151658367], - [11.7573934402, 48.1152516801] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 9, - "events": [ - { - "description": "Roadworks" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7577515151, 48.1183764736], - [11.7577354218, 48.1183000362], - [11.7577273752, 48.1182624889], - [11.7577018942, 48.1181431321], - [11.7576589789, 48.1179433081], - [11.7575852181, 48.1176026375], - [11.7574792709, 48.1171211734], - [11.7574216034, 48.1168731091], - [11.7573585715, 48.1165954972], - [11.7571909334, 48.1159141918], - [11.757019272, 48.1152342764], - [11.756839564, 48.1145610113], - [11.7566732671, 48.1139669236], - [11.7565016057, 48.1133701427], - [11.7562226559, 48.1124273335], - [11.7561649884, 48.1122382324], - [11.7560965921, 48.1120156081], - [11.7559705283, 48.1116320295], - [11.7558592166, 48.11128337], - [11.7558444645, 48.1112391018], - [11.755800208, 48.1111130129], - [11.7557505872, 48.1109775775], - [11.7556191589, 48.1106074228], - [11.7555333282, 48.1103579838], - [11.7554555442, 48.1101219755], - [11.7553536202, 48.1098416968], - [11.7552275564, 48.109498342], - [11.755081376, 48.1090906787], - [11.7548735048, 48.1085837255], - [11.7546884324, 48.1080539882], - [11.7545945551, 48.1078031936], - [11.7544631268, 48.1074706272], - [11.7541855182, 48.1067719061], - [11.7540487255, 48.106443307], - [11.7539615537, 48.106218027], - [11.7538247611, 48.1059042005], - [11.7536517586, 48.1054951654], - [11.7534868027, 48.1051263705], - [11.7533835377, 48.1049023721], - [11.7532695438, 48.1046408714], - [11.7531609143, 48.1044128969], - [11.7531407978, 48.1043699661], - [11.7528658714, 48.1037865633], - [11.7526110615, 48.1032554892], - [11.7524823155, 48.1029939802], - [11.7523388173, 48.1027056582], - [11.7522959019, 48.1026144763], - [11.7521510627, 48.1023274396], - [11.7519646491, 48.1019439006], - [11.751668265, 48.1013753038], - [11.7515422012, 48.1011379108], - [11.751410773, 48.1008871385], - [11.7512431349, 48.1005666182], - [11.750936022, 48.1000019806], - [11.7507066931, 48.0995808633], - [11.7504813875, 48.0991758643], - [11.7504076268, 48.0990417409], - [11.7501970734, 48.0986608643], - [11.7500535752, 48.0984127668], - [11.7498054709, 48.0979782575], - [11.7497263457, 48.0978481615], - [11.7495707776, 48.097591999], - [11.7493950929, 48.0972942981], - [11.7491469886, 48.0968839069], - [11.7489444818, 48.0965513259] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Stationary traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.7594024147, 48.142529753], - [11.7597095277, 48.1425284107], - [11.7603237535, 48.1425082756], - [11.7604136075, 48.1425055909], - [11.7608038689, 48.1424962505], - [11.7610184457, 48.1424922235], - [11.7612008359, 48.1424908811], - [11.7613832261, 48.1424922235], - [11.7615642752, 48.1424814848], - [11.7622428741, 48.1424559803], - [11.7635356988, 48.1424130813], - [11.7643738891, 48.1423983156], - [11.7651436831, 48.1424036849], - [11.7653542365, 48.142407712], - [11.765629163, 48.142419793], - [11.7659402992, 48.1424573226] - ] - } - }, - { - "type": "Feature", - "properties": { - "iconCategory": 6, - "events": [ - { - "description": "Slow traffic" - } - ] - }, - "geometry": { - "type": "LineString", - "coordinates": [ - [11.753696015, 48.1427751766], - [11.7537536825, 48.1427738342], - [11.7541667427, 48.1427590686], - [11.7546186949, 48.1427456453], - [11.7549325134, 48.1427349625], - [11.7553656902, 48.1427215392], - [11.7557894792, 48.1427081159], - [11.7561515774, 48.1426973772], - [11.7569119837, 48.1426705865], - [11.7571520414, 48.1426705865], - [11.7574148978, 48.1426692441], - [11.7575718071, 48.1426679018], - [11.7576656844, 48.1426679018], - [11.7580438759, 48.1426625325], - [11.7581632342, 48.1426598478], - [11.7582812514, 48.1426571631], - [11.7584073152, 48.1426531361], - [11.7587345447, 48.1426437398], - [11.7590631153, 48.1426330011], - [11.7600434627, 48.142604868], - [11.761125734, 48.1425726519], - [11.7613939549, 48.1425699672], - [11.7618539538, 48.1425404917], - [11.7624400164, 48.1425203567], - [11.7649331297, 48.1424613497], - [11.7649921383, 48.1424613497], - [11.7659402992, 48.1424573226], - [11.7663037385, 48.1424465839], - [11.7669286932, 48.1424613497], - [11.7670105006, 48.1424653767], - [11.7671714331, 48.1424747731], - [11.7674021031, 48.1424788001], - [11.7677749302, 48.1425015639], - [11.7680739965, 48.142521699], - [11.7682054247, 48.1425324377], - [11.7683006431, 48.1425418341], - [11.7684964444, 48.1425552574], - [11.7689296212, 48.1425981563], - [11.7689980175, 48.142604868], - [11.7694218065, 48.1426531361], - [11.7697624471, 48.1426973772], - [11.7701232042, 48.1427456453], - [11.7703967895, 48.1427872576], - [11.7705402877, 48.1428086789], - [11.7710083331, 48.1428891628], - [11.7712202277, 48.142930719], - [11.7716507222, 48.1430152297], - [11.771943083, 48.1430755783], - [11.7722622659, 48.1431480078], - [11.7724875714, 48.1431989601], - [11.7729287948, 48.1433075761], - [11.7733069863, 48.1434122209], - [11.7736637201, 48.1435114402], - [11.7739440109, 48.1435946076], - [11.7742591705, 48.1436897997], - [11.7745086159, 48.1437702821], - [11.7751013841, 48.1439754867], - [11.775420567, 48.1440948394], - [11.7758684959, 48.1442705123], - [11.7763271536, 48.1444596074], - [11.7766677942, 48.1446111738], - [11.7768367733, 48.1446875721], - [11.7772860433, 48.1449021689], - [11.7777004446, 48.1451046844], - [11.7783227171, 48.1454225219], - [11.7789087798, 48.145732304], - [11.779425105, 48.1460045572], - [11.7800245787, 48.1463223892], - [11.7806146647, 48.1466255105], - [11.7811081912, 48.1468789679], - [11.7813737299, 48.1470103938], - [11.7816848661, 48.1471632949], - [11.7821059729, 48.1473617749], - [11.7830206062, 48.1477721545], - [11.7835262026, 48.1479827118], - [11.7841565217, 48.1482307937], - [11.7845601942, 48.1483810068], - [11.7848230507, 48.1484708213], - [11.7853326704, 48.1486519038], - [11.7863908018, 48.1489885097], - [11.7866402473, 48.1490569044], - [11.786803862, 48.1491091929], - [11.786944678, 48.1491508001], - [11.787329575, 48.1492540348], - [11.787573656, 48.1493184026], - [11.7878740634, 48.1493935077], - [11.7882777359, 48.14949814], - [11.7885137703, 48.1495544546], - [11.7886545863, 48.1495880084], - [11.788882574, 48.1496389543], - [11.7892151679, 48.1497100324], - [11.7894914355, 48.1497676889], - [11.789793184, 48.1498266875], - [11.7901284601, 48.1498923968], - [11.7902344074, 48.1499125289], - [11.7905146982, 48.1499594481], - [11.790896913, 48.1500291836], - [11.7915688063, 48.1501311303], - [11.7917686309, 48.1501619995], - [11.7920931782, 48.150204892], - [11.7922299709, 48.1502223398], - [11.7923225071, 48.150234419], - [11.792885771, 48.1503054963], - [11.7935107257, 48.1503725471], - [11.7941209282, 48.1504221501], - [11.7946278657, 48.1504610719], - [11.7954459395, 48.1505039641], - [11.7959341015, 48.1505254382], - [11.7963739838, 48.1505361752], - [11.7967079188, 48.1505468563], - [11.7970941569, 48.1505522248], - [11.7974696662, 48.1505549091], - [11.79781433, 48.1505575933], - [11.7981254663, 48.150553567], - [11.7985733952, 48.1505616197], - [11.7990897204, 48.1505562512], - [11.7994786407, 48.1505522248], - [11.7999238874, 48.1505522248], - [11.8002497758, 48.1505562512], - [11.8005890753, 48.150553567], - [11.8010262753, 48.1505602776], - [11.8013521637, 48.1505656461], - [11.8015707638, 48.1505696725], - [11.8019435908, 48.1505804095], - [11.8024558927, 48.1506005414], - [11.8027844633, 48.1506192753], - [11.8031224217, 48.1506340387], - [11.8033772315, 48.1506514863], - [11.8038278427, 48.1506890099], - [11.804294547, 48.1507306157], - [11.8047894146, 48.1507788762], - [11.8051313962, 48.1508137714], - [11.805513611, 48.1508606897], - [11.805910578, 48.1509089501], - [11.8062498774, 48.1509586085], - [11.8066897597, 48.1510229742], - [11.8070974554, 48.1510913661], - [11.8074796702, 48.1511530474], - [11.8078377451, 48.1512214392], - [11.8080885317, 48.1512670709], - [11.8084358777, 48.1513381468], - [11.8087912704, 48.1514119067], - [11.8092418815, 48.1515070843], - [11.8096173908, 48.1515956071], - [11.8099593725, 48.1516801035], - [11.8102410044, 48.1517484946], - [11.8105803038, 48.1518410432], - [11.8110403027, 48.1519684302], - [11.8113326635, 48.1520502418], - [11.8116183187, 48.1521387637], - [11.8120058979, 48.1522581534], - [11.8124001827, 48.1523815131], - [11.8125986661, 48.1524485611], - [11.8127716686, 48.1525062146], - [11.8130278196, 48.1525960777], - [11.8134261276, 48.1527341994], - [11.8136742319, 48.1528267463], - [11.8139773216, 48.1529353979], - [11.8142495658, 48.1530413091], - [11.8144480492, 48.1531164087], - [11.8147846665, 48.1532438484], - [11.8150904383, 48.1533631796], - [11.8153278138, 48.1534584095], - [11.8156805243, 48.1535938447], - [11.8161847796, 48.1537923557], - [11.816510668, 48.1539170538], - [11.8170725908, 48.1541370361], - [11.8180730547, 48.1545098407], - [11.8182621505, 48.1545916483], - [11.8184606339, 48.1546774817], - [11.8190064635, 48.1548866687], - [11.8196501936, 48.1551361151], - [11.8202939238, 48.1553842183], - [11.8207566049, 48.1555585665], - [11.8212273325, 48.1557409659], - [11.8214982356, 48.1558429014], - [11.821861675, 48.1559796723], - [11.8226904776, 48.1562774247], - [11.8227240052, 48.1562895025] - ] - } - } - ] -} \ No newline at end of file diff --git a/common/data/src/main/res/raw/vh.gpx b/common/data/src/main/res/raw/vh.gpx deleted file mode 100644 index 978df5f..0000000 --- a/common/data/src/main/res/raw/vh.gpx +++ /dev/null @@ -1,678 +0,0 @@ - - - - - - - - - - - - - - - -GPS Logger 20260101-113817 -Vh - -car - - - - Track 20260101-113817 - - 500.4491.56024 - 490.4494.69020 - 488.4493.14020 - 486.4493.89013 - 486.4493.75013 - 488.4494.87017 - 493.4492.52018 - 497.4484.19014 - 499.4485.71020 - 497.4486.86023 - 496.4487.36014 - 496.4488.11014 - 497.4487.29017 - 497.4486.71019 - 498.4488.50018 - 498.4487.38019 - 500.4485.75018 - 501.4483.59021 - 501.4485.58020 - 501.4486.41021 - 501.4487.98018 - 500.4498.59019 - 500.4498.47016 - 498.4498.77019 - 497.4496.98014 - 497.4498.29015 - 496.4508.20014 - 495.4508.28014 - 494.4507.83014 - 494.4507.66018 - 493.4507.36018 - 493.4507.79016 - 493.4518.87014 - 493.4518.87016 - 493.4518.86013 - 494.4518.81015 - 494.4518.03017 - 494.4526.94015 - 493.4526.27014 - 494.4526.50018 - 494.4528.45017 - 494.4528.41017 - 494.4527.22023 - 494.4535.20016 - 494.4533.16022 - 495.4535.09019 - 495.4539.18017 - 495.45310.11017 - 495.45311.46017 - 495.45312.68018 - 495.45313.25020 - 495.45313.54017 - 496.45314.22021 - 496.45315.06020 - 496.45315.11020 - 497.45415.11018 - 497.45413.93019 - 496.45413.28021 - 496.45412.13021 - 495.45411.19019 - 495.45410.10018 - 494.4548.43019 - 493.4546.58015 - 492.4543.50018 - 491.4540.01018 - 491.4540.00018 - 491.4540.00016 - 491.4540.24015 - 491.4548.20018 - 492.45411.59019 - 492.45412.66016 - 492.45413.62017 - 492.45414.57018 - 492.45414.23018 - 492.45514.33019 - 492.45516.24018 - 492.45516.57020 - 493.45515.25018 - 493.45513.63019 - 494.45514.29018 - 494.45514.38018 - 494.45514.71020 - 494.45510.96021 - 494.45510.63014 - 494.4559.98017 - 494.4558.62016 - 494.4556.47015 - 493.4555.31014 - 493.4550.02015 - 493.4550.00014 - 493.4550.00018 - 492.4550.21018 - 493.4568.30016 - 492.45610.80018 - 492.45611.34022 - 491.45612.56019 - 491.45612.77016 - 491.45613.57017 - 490.45613.85017 - 490.45614.12018 - 491.45614.03018 - 490.45613.93018 - 490.45614.16022 - 491.45614.54019 - 492.45614.93019 - 493.45614.71019 - 494.45615.12021 - 495.45715.22019 - 495.45714.95018 - 496.45714.76020 - 496.45714.43017 - 496.45714.00022 - 496.45713.98019 - 496.45714.11020 - 496.45713.44019 - 496.45713.06020 - 497.45712.98022 - 497.45712.71020 - 497.45711.89021 - 497.45711.60024 - 497.45710.45026 - 497.4577.56026 - 498.4584.53022 - 499.4580.02019 - 499.4580.00021 - 499.4580.01021 - 498.4585.77021 - 499.4588.16022 - 499.4587.28019 - 499.4585.31019 - 500.4582.90024 - 501.4584.26023 - 500.4587.69024 - 499.4589.71021 - 498.45811.52021 - 497.45812.59019 - 496.45913.05022 - 495.45913.37022 - 494.45913.66021 - 493.45913.86013 - 493.45914.15014 - 493.45914.25014 - 493.46014.34015 - 492.46014.43014 - 492.46014.34011 - 492.46014.3609 - 491.46014.2708 - 491.46014.1308 - 491.46114.0707 - 491.46113.7709 - 490.46113.3709 - 490.46113.0309 - 490.46112.9509 - 490.46113.2709 - 489.46214.36012 - 489.46215.53011 - 489.46216.1909 - 489.46215.70013 - 489.46215.0309 - 489.46214.99015 - 488.46315.00013 - 488.46315.80015 - 487.46316.55014 - 488.46316.47011 - 489.46316.28011 - 488.46416.08015 - 488.46416.06013 - 488.46415.87012 - 488.46415.93013 - 487.46416.19016 - 486.46416.56016 - 485.46516.50015 - 485.46516.34013 - 485.46516.13020 - 484.46515.98013 - 484.46515.72013 - 483.46615.69014 - 483.46615.36015 - 483.46615.21017 - 483.46615.06014 - 483.46615.45014 - 482.46615.73015 - 483.46716.03014 - 483.46716.20012 - 483.46716.39016 - 483.46716.53012 - 482.46716.57012 - 482.46816.64013 - 481.46816.64015 - 480.46816.73016 - 480.46817.00018 - 480.46817.31015 - 480.46917.59017 - 481.46917.63015 - 480.46917.56016 - 481.46917.55011 - 481.46917.3207 - 481.46916.9705 - 481.47016.550 - 481.47016.370 - 481.47016.4108 - 482.47016.9307 - 483.47016.44012 - 483.47116.42015 - 483.47116.33015 - 484.47116.24016 - 485.47116.04015 - 485.47115.81016 - 484.47215.70014 - 485.47215.56013 - 484.47215.71014 - 484.47215.43013 - 484.47215.10015 - 484.47215.17016 - 485.47214.99014 - 485.47214.68016 - 486.47314.60015 - 486.47314.77017 - 487.47314.91017 - 487.47315.26016 - 487.47315.62017 - 487.47315.79017 - 488.47315.79018 - 488.47315.81015 - 489.47315.90018 - 489.47315.95016 - 489.47315.99017 - 490.47316.13012 - 490.47316.12016 - 490.47216.12016 - 491.47215.97015 - 490.47215.71017 - 490.47215.79016 - 491.47215.79018 - 491.47215.69015 - 492.47215.47018 - 492.47215.19013 - 492.47215.24017 - 492.47215.31018 - 493.47215.19018 - 493.47215.06018 - 494.47215.10018 - 494.47215.31017 - 493.47215.53018 - 494.47215.65017 - 494.47215.84019 - 493.47215.83017 - 493.47215.87016 - 493.47216.00018 - 492.47215.96019 - 492.47215.94019 - 491.47215.90019 - 491.47215.69017 - 491.47215.63017 - 491.47215.48012 - 491.47215.41012 - 491.47215.30011 - 491.47215.1304 - 491.47214.880 - 491.47214.720 - 491.47214.760 - 492.47214.850 - 492.47214.940 - 492.47215.140 - 492.47215.310 - 492.47215.490 - 492.47215.640 - 493.47215.720 - 496.47315.72021 - 497.47315.81020 - 498.47415.89024 - 499.47415.94023 - 499.47416.09023 - 499.47416.14024 - 499.47416.22021 - 499.47416.28027 - 499.47516.40024 - 499.47516.50018 - 499.47516.50021 - 498.47516.39017 - 498.47516.12022 - 498.47516.01018 - 498.47615.93016 - 498.47615.92019 - 498.47615.91018 - 498.47615.78016 - 499.47615.80012 - 499.47615.30015 - 499.47714.45015 - 499.47714.33016 - 499.47714.79017 - 499.47715.57013 - 499.47716.06018 - 500.47716.15012 - 500.47816.31016 - 500.47816.52015 - 500.47816.36014 - 500.47816.24014 - 500.47816.23014 - 499.47816.32015 - 499.47916.48013 - 500.47916.69017 - 500.47916.78015 - 500.47916.83021 - 501.47916.84015 - 501.47916.92013 - 500.47917.21015 - 501.48017.30016 - 501.48017.48019 - 500.48017.34018 - 501.48017.14017 - 501.48016.97014 - 502.48016.89016 - 501.48016.81017 - 501.48116.77016 - 501.48116.85015 - 501.48116.97016 - 502.48116.95018 - 502.48116.88014 - 502.48116.91015 - 502.48216.99017 - 502.48217.12016 - 501.48217.04020 - 501.48217.06022 - 501.48217.08022 - 501.48316.98011 - 501.48316.73019 - 501.48316.72015 - 501.48316.56016 - 501.48316.50018 - 500.48416.47015 - 501.48416.50017 - 500.48416.59021 - 500.48416.65020 - 500.48416.66019 - 500.48416.72020 - 499.48516.81022 - 499.48516.70022 - 500.48516.68016 - 499.48516.66013 - 499.48516.63016 - 499.48616.48015 - 499.48616.61016 - 499.48616.62013 - 499.48616.44015 - 499.48616.24011 - 499.48716.22016 - 498.48716.20016 - 498.48716.16015 - 498.48716.14019 - 498.48716.07017 - 498.48715.94014 - 498.48815.85019 - 497.48815.87016 - 497.48815.92016 - 497.48815.77019 - 497.48815.64014 - 497.48915.85013 - 498.48916.10013 - 498.48916.23018 - 499.48916.25014 - 499.48916.25014 - 500.48916.19011 - 500.49015.96017 - 500.49015.83019 - 501.49015.53016 - 501.49015.39011 - 501.49015.32011 - 501.49015.60011 - 502.49115.76021 - 502.49115.86019 - 502.49116.00024 - 501.49115.99022 - 500.49115.93011 - 500.49115.90015 - 500.49216.05013 - 500.49215.97013 - 500.49216.11014 - 500.49216.09014 - 500.49216.0105 - 499.49215.9001 - 499.49315.5901 - 500.49315.370 - 500.49315.410 - 501.49315.19011 - 502.49315.0208 - 503.49315.3509 - 505.49415.34011 - 506.49414.83012 - 507.49415.60014 - 508.49414.98014 - 509.49414.79014 - 508.49414.83014 - 508.49414.69013 - 508.49414.66017 - 508.49414.68016 - 508.49514.80016 - 508.49514.83013 - 508.49514.96013 - 506.49515.02013 - 506.49515.22010 - 505.49515.51013 - 503.49515.88012 - 503.49516.19011 - 502.49516.33012 - 502.49516.4505 - 502.49516.4104 - 502.49516.450 - 502.49516.600 - 502.49516.750 - 502.49516.8901 - 503.49616.930 - 503.49616.830 - 503.49616.840 - 503.49616.720 - 503.49616.500 - 523.50117.17017 - 521.50117.03019 - 522.50117.76022 - 523.50117.00022 - 526.50116.35020 - 514.50214.48014 - 516.50214.48010 - 516.50214.40014 - 516.50213.85014 - 515.50213.67013 - 514.50213.56013 - 512.50213.30010 - 512.50313.46012 - 513.50312.63010 - 513.50313.57013 - 514.50313.70014 - 513.50313.60014 - 512.50313.83012 - 515.50313.79012 - 514.50313.73011 - 520.50315.88018 - 522.50315.81019 - 520.50315.31022 - 520.50314.88018 - 520.50314.85020 - 520.50314.87018 - 520.50314.89017 - 519.50314.98017 - 518.50314.92017 - 518.50312.94021 - 518.50310.30020 - 518.5035.72019 - 519.5030.01018 - 519.5030.00015 - 519.5030.00016 - 519.5030.02018 - 520.5037.52021 - 519.50310.38020 - 519.50311.40019 - 519.50312.38018 - 519.50312.93019 - 519.50313.29019 - 519.50313.61017 - 519.50313.72017 - 519.50313.74015 - 519.50313.80013 - 518.50313.98018 - 518.50313.98015 - 518.50313.86016 - 518.50313.62013 - 518.50312.82015 - 518.50311.81016 - 519.50310.49015 - 519.5039.27019 - 520.5037.56019 - 519.5035.08018 - 519.5033.12024 - 520.5037.62023 - 520.50311.03023 - 520.50311.91023 - 520.50312.66022 - 520.50312.85022 - 520.50413.11019 - 520.50413.40018 - 521.50413.51018 - 521.50413.37022 - 521.50413.42015 - 521.50413.38019 - 521.50413.26018 - 521.50413.08021 - 521.50412.96019 - 521.50412.95020 - 521.50412.88021 - 521.50413.09018 - 521.50413.21018 - 521.50413.29018 - 522.50413.33021 - 522.50413.45020 - 523.50413.45022 - 523.50413.23020 - 523.50412.90017 - 523.50412.59019 - 523.50412.26020 - 523.50411.88015 - 523.50411.09016 - 523.50410.16016 - 524.5058.31019 - 523.5055.33016 - 523.5050.01016 - 523.5050.00017 - 523.5050.02017 - 525.5055.28022 - 525.5055.41023 - 525.5058.10020 - 525.5049.84022 - 525.50410.58021 - 524.50411.45020 - 524.50411.98020 - 524.50412.23017 - 524.50412.41017 - 524.50412.40016 - 524.50312.34019 - 524.50312.35021 - 524.50312.37024 - 524.50312.45022 - 524.50312.61021 - 524.50312.78020 - 524.50312.86022 - 524.50212.85020 - 524.50212.88021 - 524.50212.77017 - 524.50212.75017 - 524.50212.75017 - 524.50212.88017 - 524.50213.05021 - 525.50213.22017 - 525.50113.25019 - 525.50113.22013 - 525.50113.53020 - 525.50113.98019 - 525.50114.16016 - 526.50114.32020 - 526.50114.45018 - 526.50014.51019 - 526.50014.48013 - 526.50014.16017 - 526.50013.77017 - 527.50013.46021 - 527.50013.26022 - 527.50013.19019 - 527.49912.85018 - 527.49912.77020 - 527.49912.91025 - 527.49913.13022 - 526.49913.30022 - 526.49913.27020 - 527.49913.41023 - 526.49913.49019 - 526.49913.50019 - 526.49913.42019 - 526.49813.28023 - 525.49813.17020 - 525.49813.18021 - 525.49813.27020 - 525.49813.29020 - 525.49813.34020 - 525.49813.39014 - 525.49813.27015 - 525.49713.18019 - 525.49713.20016 - 525.49713.03013 - 525.49712.82019 - 525.49712.76017 - 525.49712.76020 - 525.49712.78022 - 526.49712.74020 - 525.49712.66017 - 526.49612.52018 - 526.49612.31017 - 526.49612.04018 - 526.49611.39019 - 526.49610.37019 - 526.4967.66014 - 527.4964.72013 - 528.4960.02020 - 528.4960.00019 - 528.4960.02020 - 528.4960.01021 - 528.4960.00021 - 528.4960.00020 - 528.4960.01018 - 528.4960.01020 - 528.4960.00020 - 528.4960.00020 - 528.4960.01019 - 528.4960.00020 - 528.4960.03019 - 528.4967.59020 - 528.49510.48023 - 528.49511.13023 - 528.49511.87020 - 528.49512.21018 - 528.49512.23018 - 528.49512.25018 - 528.49512.37019 - 528.49512.65017 - 529.49512.94018 - 529.49413.05018 - 528.49413.19015 - 528.49413.24014 - 529.49413.26016 - 529.49413.23016 - 529.49413.18016 - 529.49413.40017 - 529.49413.52019 - 529.49313.61018 - 529.49313.75018 - 528.49313.98018 - 528.49314.08017 - 528.49314.19014 - 527.49314.33017 - 526.49314.49018 - 526.49314.50018 - 526.49314.29018 - 527.49214.15018 - 527.49214.19013 - 528.49214.04018 - 528.49213.88013 - 529.49213.57014 - 529.49212.92015 - 530.49211.57016 - 530.4929.78018 - 531.4925.89022 - 531.4914.55017 - 531.4926.33019 - 531.4927.89011 - 533.4928.87020 - 534.4928.81021 - 535.49210.0409 - 535.49210.12020 - 537.4929.43025 - 539.4929.74023 - 540.4929.89020 - 541.4928.8709 - 542.4926.7709 - 543.4922.69015 - 534.4920.07017 - 534.4920.00014 - 534.4920.68017 - - - - - \ No newline at end of file